xref: /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp (revision 349cc55c9796c4596a5b9904cd3281af295f878f)
10b57cec5SDimitry Andric //===-- PPCTargetMachine.cpp - Define TargetMachine for PowerPC -----------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // Top-level implementation for the PowerPC target.
100b57cec5SDimitry Andric //
110b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
120b57cec5SDimitry Andric 
130b57cec5SDimitry Andric #include "PPCTargetMachine.h"
140b57cec5SDimitry Andric #include "MCTargetDesc/PPCMCTargetDesc.h"
150b57cec5SDimitry Andric #include "PPC.h"
160b57cec5SDimitry Andric #include "PPCMachineScheduler.h"
175ffd83dbSDimitry Andric #include "PPCMacroFusion.h"
180b57cec5SDimitry Andric #include "PPCSubtarget.h"
190b57cec5SDimitry Andric #include "PPCTargetObjectFile.h"
200b57cec5SDimitry Andric #include "PPCTargetTransformInfo.h"
210b57cec5SDimitry Andric #include "TargetInfo/PowerPCTargetInfo.h"
220b57cec5SDimitry Andric #include "llvm/ADT/Optional.h"
230b57cec5SDimitry Andric #include "llvm/ADT/STLExtras.h"
240b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h"
250b57cec5SDimitry Andric #include "llvm/ADT/Triple.h"
260b57cec5SDimitry Andric #include "llvm/Analysis/TargetTransformInfo.h"
27e8d8bef9SDimitry Andric #include "llvm/CodeGen/GlobalISel/IRTranslator.h"
28e8d8bef9SDimitry Andric #include "llvm/CodeGen/GlobalISel/InstructionSelect.h"
29e8d8bef9SDimitry Andric #include "llvm/CodeGen/GlobalISel/Legalizer.h"
30e8d8bef9SDimitry Andric #include "llvm/CodeGen/GlobalISel/Localizer.h"
31e8d8bef9SDimitry Andric #include "llvm/CodeGen/GlobalISel/RegBankSelect.h"
32e8d8bef9SDimitry Andric #include "llvm/CodeGen/MachineScheduler.h"
330b57cec5SDimitry Andric #include "llvm/CodeGen/Passes.h"
340b57cec5SDimitry Andric #include "llvm/CodeGen/TargetPassConfig.h"
350b57cec5SDimitry Andric #include "llvm/IR/Attributes.h"
360b57cec5SDimitry Andric #include "llvm/IR/DataLayout.h"
370b57cec5SDimitry Andric #include "llvm/IR/Function.h"
38e8d8bef9SDimitry Andric #include "llvm/InitializePasses.h"
39*349cc55cSDimitry Andric #include "llvm/MC/TargetRegistry.h"
400b57cec5SDimitry Andric #include "llvm/Pass.h"
410b57cec5SDimitry Andric #include "llvm/Support/CodeGen.h"
420b57cec5SDimitry Andric #include "llvm/Support/CommandLine.h"
430b57cec5SDimitry Andric #include "llvm/Target/TargetLoweringObjectFile.h"
440b57cec5SDimitry Andric #include "llvm/Target/TargetOptions.h"
450b57cec5SDimitry Andric #include "llvm/Transforms/Scalar.h"
460b57cec5SDimitry Andric #include <cassert>
470b57cec5SDimitry Andric #include <memory>
480b57cec5SDimitry Andric #include <string>
490b57cec5SDimitry Andric 
500b57cec5SDimitry Andric using namespace llvm;
510b57cec5SDimitry Andric 
520b57cec5SDimitry Andric 
530b57cec5SDimitry Andric static cl::opt<bool>
540b57cec5SDimitry Andric     EnableBranchCoalescing("enable-ppc-branch-coalesce", cl::Hidden,
550b57cec5SDimitry Andric                            cl::desc("enable coalescing of duplicate branches for PPC"));
560b57cec5SDimitry Andric static cl::
570b57cec5SDimitry Andric opt<bool> DisableCTRLoops("disable-ppc-ctrloops", cl::Hidden,
580b57cec5SDimitry Andric                         cl::desc("Disable CTR loops for PPC"));
590b57cec5SDimitry Andric 
600b57cec5SDimitry Andric static cl::
61480093f4SDimitry Andric opt<bool> DisableInstrFormPrep("disable-ppc-instr-form-prep", cl::Hidden,
62480093f4SDimitry Andric                             cl::desc("Disable PPC loop instr form prep"));
630b57cec5SDimitry Andric 
640b57cec5SDimitry Andric static cl::opt<bool>
650b57cec5SDimitry Andric VSXFMAMutateEarly("schedule-ppc-vsx-fma-mutation-early",
660b57cec5SDimitry Andric   cl::Hidden, cl::desc("Schedule VSX FMA instruction mutation early"));
670b57cec5SDimitry Andric 
680b57cec5SDimitry Andric static cl::
690b57cec5SDimitry Andric opt<bool> DisableVSXSwapRemoval("disable-ppc-vsx-swap-removal", cl::Hidden,
700b57cec5SDimitry Andric                                 cl::desc("Disable VSX Swap Removal for PPC"));
710b57cec5SDimitry Andric 
720b57cec5SDimitry Andric static cl::
730b57cec5SDimitry Andric opt<bool> DisableMIPeephole("disable-ppc-peephole", cl::Hidden,
740b57cec5SDimitry Andric                             cl::desc("Disable machine peepholes for PPC"));
750b57cec5SDimitry Andric 
760b57cec5SDimitry Andric static cl::opt<bool>
770b57cec5SDimitry Andric EnableGEPOpt("ppc-gep-opt", cl::Hidden,
780b57cec5SDimitry Andric              cl::desc("Enable optimizations on complex GEPs"),
790b57cec5SDimitry Andric              cl::init(true));
800b57cec5SDimitry Andric 
810b57cec5SDimitry Andric static cl::opt<bool>
820b57cec5SDimitry Andric EnablePrefetch("enable-ppc-prefetching",
83480093f4SDimitry Andric                   cl::desc("enable software prefetching on PPC"),
840b57cec5SDimitry Andric                   cl::init(false), cl::Hidden);
850b57cec5SDimitry Andric 
860b57cec5SDimitry Andric static cl::opt<bool>
870b57cec5SDimitry Andric EnableExtraTOCRegDeps("enable-ppc-extra-toc-reg-deps",
880b57cec5SDimitry Andric                       cl::desc("Add extra TOC register dependencies"),
890b57cec5SDimitry Andric                       cl::init(true), cl::Hidden);
900b57cec5SDimitry Andric 
910b57cec5SDimitry Andric static cl::opt<bool>
920b57cec5SDimitry Andric EnableMachineCombinerPass("ppc-machine-combiner",
930b57cec5SDimitry Andric                           cl::desc("Enable the machine combiner pass"),
940b57cec5SDimitry Andric                           cl::init(true), cl::Hidden);
950b57cec5SDimitry Andric 
960b57cec5SDimitry Andric static cl::opt<bool>
970b57cec5SDimitry Andric   ReduceCRLogical("ppc-reduce-cr-logicals",
980b57cec5SDimitry Andric                   cl::desc("Expand eligible cr-logical binary ops to branches"),
998bcb0991SDimitry Andric                   cl::init(true), cl::Hidden);
100480093f4SDimitry Andric extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializePowerPCTarget() {
1010b57cec5SDimitry Andric   // Register the targets
1020b57cec5SDimitry Andric   RegisterTargetMachine<PPCTargetMachine> A(getThePPC32Target());
103e8d8bef9SDimitry Andric   RegisterTargetMachine<PPCTargetMachine> B(getThePPC32LETarget());
104e8d8bef9SDimitry Andric   RegisterTargetMachine<PPCTargetMachine> C(getThePPC64Target());
105e8d8bef9SDimitry Andric   RegisterTargetMachine<PPCTargetMachine> D(getThePPC64LETarget());
1060b57cec5SDimitry Andric 
1070b57cec5SDimitry Andric   PassRegistry &PR = *PassRegistry::getPassRegistry();
1080b57cec5SDimitry Andric #ifndef NDEBUG
1090b57cec5SDimitry Andric   initializePPCCTRLoopsVerifyPass(PR);
1100b57cec5SDimitry Andric #endif
111480093f4SDimitry Andric   initializePPCLoopInstrFormPrepPass(PR);
1120b57cec5SDimitry Andric   initializePPCTOCRegDepsPass(PR);
1130b57cec5SDimitry Andric   initializePPCEarlyReturnPass(PR);
1140b57cec5SDimitry Andric   initializePPCVSXCopyPass(PR);
1150b57cec5SDimitry Andric   initializePPCVSXFMAMutatePass(PR);
1160b57cec5SDimitry Andric   initializePPCVSXSwapRemovalPass(PR);
1170b57cec5SDimitry Andric   initializePPCReduceCRLogicalsPass(PR);
1180b57cec5SDimitry Andric   initializePPCBSelPass(PR);
1190b57cec5SDimitry Andric   initializePPCBranchCoalescingPass(PR);
1200b57cec5SDimitry Andric   initializePPCBoolRetToIntPass(PR);
1210b57cec5SDimitry Andric   initializePPCExpandISELPass(PR);
1220b57cec5SDimitry Andric   initializePPCPreEmitPeepholePass(PR);
1230b57cec5SDimitry Andric   initializePPCTLSDynamicCallPass(PR);
1240b57cec5SDimitry Andric   initializePPCMIPeepholePass(PR);
125480093f4SDimitry Andric   initializePPCLowerMASSVEntriesPass(PR);
126fe6060f1SDimitry Andric   initializePPCExpandAtomicPseudoPass(PR);
127e8d8bef9SDimitry Andric   initializeGlobalISel(PR);
1280b57cec5SDimitry Andric }
1290b57cec5SDimitry Andric 
130fe6060f1SDimitry Andric static bool isLittleEndianTriple(const Triple &T) {
131fe6060f1SDimitry Andric   return T.getArch() == Triple::ppc64le || T.getArch() == Triple::ppcle;
132fe6060f1SDimitry Andric }
133fe6060f1SDimitry Andric 
1340b57cec5SDimitry Andric /// Return the datalayout string of a subtarget.
1350b57cec5SDimitry Andric static std::string getDataLayoutString(const Triple &T) {
1360b57cec5SDimitry Andric   bool is64Bit = T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le;
1370b57cec5SDimitry Andric   std::string Ret;
1380b57cec5SDimitry Andric 
139e8d8bef9SDimitry Andric   // Most PPC* platforms are big endian, PPC(64)LE is little endian.
140fe6060f1SDimitry Andric   if (isLittleEndianTriple(T))
1410b57cec5SDimitry Andric     Ret = "e";
1420b57cec5SDimitry Andric   else
1430b57cec5SDimitry Andric     Ret = "E";
1440b57cec5SDimitry Andric 
1450b57cec5SDimitry Andric   Ret += DataLayout::getManglingComponent(T);
1460b57cec5SDimitry Andric 
1470b57cec5SDimitry Andric   // PPC32 has 32 bit pointers. The PS3 (OS Lv2) is a PPC64 machine with 32 bit
1480b57cec5SDimitry Andric   // pointers.
1490b57cec5SDimitry Andric   if (!is64Bit || T.getOS() == Triple::Lv2)
1500b57cec5SDimitry Andric     Ret += "-p:32:32";
1510b57cec5SDimitry Andric 
1520b57cec5SDimitry Andric   // Note, the alignment values for f64 and i64 on ppc64 in Darwin
1530b57cec5SDimitry Andric   // documentation are wrong; these are correct (i.e. "what gcc does").
1540b57cec5SDimitry Andric   Ret += "-i64:64";
1550b57cec5SDimitry Andric 
1560b57cec5SDimitry Andric   // PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones.
1570b57cec5SDimitry Andric   if (is64Bit)
1580b57cec5SDimitry Andric     Ret += "-n32:64";
1590b57cec5SDimitry Andric   else
1600b57cec5SDimitry Andric     Ret += "-n32";
1610b57cec5SDimitry Andric 
162e8d8bef9SDimitry Andric   // Specify the vector alignment explicitly. For v256i1 and v512i1, the
163e8d8bef9SDimitry Andric   // calculated alignment would be 256*alignment(i1) and 512*alignment(i1),
164e8d8bef9SDimitry Andric   // which is 256 and 512 bytes - way over aligned.
165fe6060f1SDimitry Andric   if (is64Bit && (T.isOSAIX() || T.isOSLinux()))
166fe6060f1SDimitry Andric     Ret += "-S128-v256:256:256-v512:512:512";
167e8d8bef9SDimitry Andric 
1680b57cec5SDimitry Andric   return Ret;
1690b57cec5SDimitry Andric }
1700b57cec5SDimitry Andric 
1710b57cec5SDimitry Andric static std::string computeFSAdditions(StringRef FS, CodeGenOpt::Level OL,
1720b57cec5SDimitry Andric                                       const Triple &TT) {
1735ffd83dbSDimitry Andric   std::string FullFS = std::string(FS);
1740b57cec5SDimitry Andric 
1750b57cec5SDimitry Andric   // Make sure 64-bit features are available when CPUname is generic
1760b57cec5SDimitry Andric   if (TT.getArch() == Triple::ppc64 || TT.getArch() == Triple::ppc64le) {
1770b57cec5SDimitry Andric     if (!FullFS.empty())
1780b57cec5SDimitry Andric       FullFS = "+64bit," + FullFS;
1790b57cec5SDimitry Andric     else
1800b57cec5SDimitry Andric       FullFS = "+64bit";
1810b57cec5SDimitry Andric   }
1820b57cec5SDimitry Andric 
1830b57cec5SDimitry Andric   if (OL >= CodeGenOpt::Default) {
1840b57cec5SDimitry Andric     if (!FullFS.empty())
1850b57cec5SDimitry Andric       FullFS = "+crbits," + FullFS;
1860b57cec5SDimitry Andric     else
1870b57cec5SDimitry Andric       FullFS = "+crbits";
1880b57cec5SDimitry Andric   }
1890b57cec5SDimitry Andric 
1900b57cec5SDimitry Andric   if (OL != CodeGenOpt::None) {
1910b57cec5SDimitry Andric     if (!FullFS.empty())
1920b57cec5SDimitry Andric       FullFS = "+invariant-function-descriptors," + FullFS;
1930b57cec5SDimitry Andric     else
1940b57cec5SDimitry Andric       FullFS = "+invariant-function-descriptors";
1950b57cec5SDimitry Andric   }
1960b57cec5SDimitry Andric 
197e8d8bef9SDimitry Andric   if (TT.isOSAIX()) {
198e8d8bef9SDimitry Andric     if (!FullFS.empty())
199e8d8bef9SDimitry Andric       FullFS = "+aix," + FullFS;
200e8d8bef9SDimitry Andric     else
201e8d8bef9SDimitry Andric       FullFS = "+aix";
202e8d8bef9SDimitry Andric   }
203e8d8bef9SDimitry Andric 
2040b57cec5SDimitry Andric   return FullFS;
2050b57cec5SDimitry Andric }
2060b57cec5SDimitry Andric 
2070b57cec5SDimitry Andric static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
2088bcb0991SDimitry Andric   if (TT.isOSAIX())
2098bcb0991SDimitry Andric     return std::make_unique<TargetLoweringObjectFileXCOFF>();
2108bcb0991SDimitry Andric 
2118bcb0991SDimitry Andric   return std::make_unique<PPC64LinuxTargetObjectFile>();
2120b57cec5SDimitry Andric }
2130b57cec5SDimitry Andric 
2140b57cec5SDimitry Andric static PPCTargetMachine::PPCABI computeTargetABI(const Triple &TT,
2150b57cec5SDimitry Andric                                                  const TargetOptions &Options) {
2160b57cec5SDimitry Andric   if (Options.MCOptions.getABIName().startswith("elfv1"))
2170b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_ELFv1;
2180b57cec5SDimitry Andric   else if (Options.MCOptions.getABIName().startswith("elfv2"))
2190b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_ELFv2;
2200b57cec5SDimitry Andric 
2210b57cec5SDimitry Andric   assert(Options.MCOptions.getABIName().empty() &&
2220b57cec5SDimitry Andric          "Unknown target-abi option!");
2230b57cec5SDimitry Andric 
2240b57cec5SDimitry Andric   if (TT.isMacOSX())
2250b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_UNKNOWN;
2260b57cec5SDimitry Andric 
2270b57cec5SDimitry Andric   switch (TT.getArch()) {
2280b57cec5SDimitry Andric   case Triple::ppc64le:
2290b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_ELFv2;
2300b57cec5SDimitry Andric   case Triple::ppc64:
2310b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_ELFv1;
2320b57cec5SDimitry Andric   default:
2330b57cec5SDimitry Andric     return PPCTargetMachine::PPC_ABI_UNKNOWN;
2340b57cec5SDimitry Andric   }
2350b57cec5SDimitry Andric }
2360b57cec5SDimitry Andric 
2370b57cec5SDimitry Andric static Reloc::Model getEffectiveRelocModel(const Triple &TT,
2380b57cec5SDimitry Andric                                            Optional<Reloc::Model> RM) {
2395ffd83dbSDimitry Andric   assert((!TT.isOSAIX() || !RM.hasValue() || *RM == Reloc::PIC_) &&
2405ffd83dbSDimitry Andric          "Invalid relocation model for AIX.");
2415ffd83dbSDimitry Andric 
2420b57cec5SDimitry Andric   if (RM.hasValue())
2430b57cec5SDimitry Andric     return *RM;
2440b57cec5SDimitry Andric 
2455ffd83dbSDimitry Andric   // Big Endian PPC and AIX default to PIC.
2465ffd83dbSDimitry Andric   if (TT.getArch() == Triple::ppc64 || TT.isOSAIX())
2470b57cec5SDimitry Andric     return Reloc::PIC_;
2480b57cec5SDimitry Andric 
2490b57cec5SDimitry Andric   // Rest are static by default.
2500b57cec5SDimitry Andric   return Reloc::Static;
2510b57cec5SDimitry Andric }
2520b57cec5SDimitry Andric 
2530b57cec5SDimitry Andric static CodeModel::Model getEffectivePPCCodeModel(const Triple &TT,
2540b57cec5SDimitry Andric                                                  Optional<CodeModel::Model> CM,
2550b57cec5SDimitry Andric                                                  bool JIT) {
2560b57cec5SDimitry Andric   if (CM) {
2570b57cec5SDimitry Andric     if (*CM == CodeModel::Tiny)
2580b57cec5SDimitry Andric       report_fatal_error("Target does not support the tiny CodeModel", false);
2590b57cec5SDimitry Andric     if (*CM == CodeModel::Kernel)
2600b57cec5SDimitry Andric       report_fatal_error("Target does not support the kernel CodeModel", false);
2610b57cec5SDimitry Andric     return *CM;
2620b57cec5SDimitry Andric   }
2638bcb0991SDimitry Andric 
2648bcb0991SDimitry Andric   if (JIT)
2650b57cec5SDimitry Andric     return CodeModel::Small;
2668bcb0991SDimitry Andric   if (TT.isOSAIX())
2678bcb0991SDimitry Andric     return CodeModel::Small;
2688bcb0991SDimitry Andric 
2698bcb0991SDimitry Andric   assert(TT.isOSBinFormatELF() && "All remaining PPC OSes are ELF based.");
2708bcb0991SDimitry Andric 
2718bcb0991SDimitry Andric   if (TT.isArch32Bit())
2728bcb0991SDimitry Andric     return CodeModel::Small;
2738bcb0991SDimitry Andric 
2748bcb0991SDimitry Andric   assert(TT.isArch64Bit() && "Unsupported PPC architecture.");
2758bcb0991SDimitry Andric   return CodeModel::Medium;
2760b57cec5SDimitry Andric }
2770b57cec5SDimitry Andric 
2780b57cec5SDimitry Andric 
2790b57cec5SDimitry Andric static ScheduleDAGInstrs *createPPCMachineScheduler(MachineSchedContext *C) {
2800b57cec5SDimitry Andric   const PPCSubtarget &ST = C->MF->getSubtarget<PPCSubtarget>();
2810b57cec5SDimitry Andric   ScheduleDAGMILive *DAG =
2820b57cec5SDimitry Andric     new ScheduleDAGMILive(C, ST.usePPCPreRASchedStrategy() ?
2838bcb0991SDimitry Andric                           std::make_unique<PPCPreRASchedStrategy>(C) :
2848bcb0991SDimitry Andric                           std::make_unique<GenericScheduler>(C));
2850b57cec5SDimitry Andric   // add DAG Mutations here.
2860b57cec5SDimitry Andric   DAG->addMutation(createCopyConstrainDAGMutation(DAG->TII, DAG->TRI));
287e8d8bef9SDimitry Andric   if (ST.hasStoreFusion())
288e8d8bef9SDimitry Andric     DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
2895ffd83dbSDimitry Andric   if (ST.hasFusion())
2905ffd83dbSDimitry Andric     DAG->addMutation(createPowerPCMacroFusionDAGMutation());
2915ffd83dbSDimitry Andric 
2920b57cec5SDimitry Andric   return DAG;
2930b57cec5SDimitry Andric }
2940b57cec5SDimitry Andric 
2950b57cec5SDimitry Andric static ScheduleDAGInstrs *createPPCPostMachineScheduler(
2960b57cec5SDimitry Andric   MachineSchedContext *C) {
2970b57cec5SDimitry Andric   const PPCSubtarget &ST = C->MF->getSubtarget<PPCSubtarget>();
2980b57cec5SDimitry Andric   ScheduleDAGMI *DAG =
2990b57cec5SDimitry Andric     new ScheduleDAGMI(C, ST.usePPCPostRASchedStrategy() ?
3008bcb0991SDimitry Andric                       std::make_unique<PPCPostRASchedStrategy>(C) :
3018bcb0991SDimitry Andric                       std::make_unique<PostGenericScheduler>(C), true);
3020b57cec5SDimitry Andric   // add DAG Mutations here.
303e8d8bef9SDimitry Andric   if (ST.hasStoreFusion())
304e8d8bef9SDimitry Andric     DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
3055ffd83dbSDimitry Andric   if (ST.hasFusion())
3065ffd83dbSDimitry Andric     DAG->addMutation(createPowerPCMacroFusionDAGMutation());
3070b57cec5SDimitry Andric   return DAG;
3080b57cec5SDimitry Andric }
3090b57cec5SDimitry Andric 
3100b57cec5SDimitry Andric // The FeatureString here is a little subtle. We are modifying the feature
3110b57cec5SDimitry Andric // string with what are (currently) non-function specific overrides as it goes
3120b57cec5SDimitry Andric // into the LLVMTargetMachine constructor and then using the stored value in the
3130b57cec5SDimitry Andric // Subtarget constructor below it.
3140b57cec5SDimitry Andric PPCTargetMachine::PPCTargetMachine(const Target &T, const Triple &TT,
3150b57cec5SDimitry Andric                                    StringRef CPU, StringRef FS,
3160b57cec5SDimitry Andric                                    const TargetOptions &Options,
3170b57cec5SDimitry Andric                                    Optional<Reloc::Model> RM,
3180b57cec5SDimitry Andric                                    Optional<CodeModel::Model> CM,
3190b57cec5SDimitry Andric                                    CodeGenOpt::Level OL, bool JIT)
3200b57cec5SDimitry Andric     : LLVMTargetMachine(T, getDataLayoutString(TT), TT, CPU,
3210b57cec5SDimitry Andric                         computeFSAdditions(FS, OL, TT), Options,
3220b57cec5SDimitry Andric                         getEffectiveRelocModel(TT, RM),
3230b57cec5SDimitry Andric                         getEffectivePPCCodeModel(TT, CM, JIT), OL),
3240b57cec5SDimitry Andric       TLOF(createTLOF(getTargetTriple())),
325fe6060f1SDimitry Andric       TargetABI(computeTargetABI(TT, Options)),
326fe6060f1SDimitry Andric       Endianness(isLittleEndianTriple(TT) ? Endian::LITTLE : Endian::BIG) {
3270b57cec5SDimitry Andric   initAsmInfo();
3280b57cec5SDimitry Andric }
3290b57cec5SDimitry Andric 
3300b57cec5SDimitry Andric PPCTargetMachine::~PPCTargetMachine() = default;
3310b57cec5SDimitry Andric 
3320b57cec5SDimitry Andric const PPCSubtarget *
3330b57cec5SDimitry Andric PPCTargetMachine::getSubtargetImpl(const Function &F) const {
3340b57cec5SDimitry Andric   Attribute CPUAttr = F.getFnAttribute("target-cpu");
3350b57cec5SDimitry Andric   Attribute FSAttr = F.getFnAttribute("target-features");
3360b57cec5SDimitry Andric 
337e8d8bef9SDimitry Andric   std::string CPU =
338e8d8bef9SDimitry Andric       CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
339e8d8bef9SDimitry Andric   std::string FS =
340e8d8bef9SDimitry Andric       FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
3410b57cec5SDimitry Andric 
3420b57cec5SDimitry Andric   // FIXME: This is related to the code below to reset the target options,
3430b57cec5SDimitry Andric   // we need to know whether or not the soft float flag is set on the
3440b57cec5SDimitry Andric   // function before we can generate a subtarget. We also need to use
3450b57cec5SDimitry Andric   // it as a key for the subtarget since that can be the only difference
3460b57cec5SDimitry Andric   // between two functions.
347fe6060f1SDimitry Andric   bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
3480b57cec5SDimitry Andric   // If the soft float attribute is set on the function turn on the soft float
3490b57cec5SDimitry Andric   // subtarget feature.
3500b57cec5SDimitry Andric   if (SoftFloat)
3510b57cec5SDimitry Andric     FS += FS.empty() ? "-hard-float" : ",-hard-float";
3520b57cec5SDimitry Andric 
3530b57cec5SDimitry Andric   auto &I = SubtargetMap[CPU + FS];
3540b57cec5SDimitry Andric   if (!I) {
3550b57cec5SDimitry Andric     // This needs to be done before we create a new subtarget since any
3560b57cec5SDimitry Andric     // creation will depend on the TM and the code generation flags on the
3570b57cec5SDimitry Andric     // function that reside in TargetOptions.
3580b57cec5SDimitry Andric     resetTargetOptions(F);
3598bcb0991SDimitry Andric     I = std::make_unique<PPCSubtarget>(
3600b57cec5SDimitry Andric         TargetTriple, CPU,
3610b57cec5SDimitry Andric         // FIXME: It would be good to have the subtarget additions here
3620b57cec5SDimitry Andric         // not necessary. Anything that turns them on/off (overrides) ends
3630b57cec5SDimitry Andric         // up being put at the end of the feature string, but the defaults
3640b57cec5SDimitry Andric         // shouldn't require adding them. Fixing this means pulling Feature64Bit
3650b57cec5SDimitry Andric         // out of most of the target cpus in the .td file and making it set only
3660b57cec5SDimitry Andric         // as part of initialization via the TargetTriple.
3670b57cec5SDimitry Andric         computeFSAdditions(FS, getOptLevel(), getTargetTriple()), *this);
3680b57cec5SDimitry Andric   }
3690b57cec5SDimitry Andric   return I.get();
3700b57cec5SDimitry Andric }
3710b57cec5SDimitry Andric 
3720b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
3730b57cec5SDimitry Andric // Pass Pipeline Configuration
3740b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
3750b57cec5SDimitry Andric 
3760b57cec5SDimitry Andric namespace {
3770b57cec5SDimitry Andric 
3780b57cec5SDimitry Andric /// PPC Code Generator Pass Configuration Options.
3790b57cec5SDimitry Andric class PPCPassConfig : public TargetPassConfig {
3800b57cec5SDimitry Andric public:
3810b57cec5SDimitry Andric   PPCPassConfig(PPCTargetMachine &TM, PassManagerBase &PM)
3820b57cec5SDimitry Andric     : TargetPassConfig(TM, PM) {
3830b57cec5SDimitry Andric     // At any optimization level above -O0 we use the Machine Scheduler and not
3840b57cec5SDimitry Andric     // the default Post RA List Scheduler.
3850b57cec5SDimitry Andric     if (TM.getOptLevel() != CodeGenOpt::None)
3860b57cec5SDimitry Andric       substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
3870b57cec5SDimitry Andric   }
3880b57cec5SDimitry Andric 
3890b57cec5SDimitry Andric   PPCTargetMachine &getPPCTargetMachine() const {
3900b57cec5SDimitry Andric     return getTM<PPCTargetMachine>();
3910b57cec5SDimitry Andric   }
3920b57cec5SDimitry Andric 
3930b57cec5SDimitry Andric   void addIRPasses() override;
3940b57cec5SDimitry Andric   bool addPreISel() override;
3950b57cec5SDimitry Andric   bool addILPOpts() override;
3960b57cec5SDimitry Andric   bool addInstSelector() override;
3970b57cec5SDimitry Andric   void addMachineSSAOptimization() override;
3980b57cec5SDimitry Andric   void addPreRegAlloc() override;
3990b57cec5SDimitry Andric   void addPreSched2() override;
4000b57cec5SDimitry Andric   void addPreEmitPass() override;
401fe6060f1SDimitry Andric   void addPreEmitPass2() override;
402e8d8bef9SDimitry Andric   // GlobalISEL
403e8d8bef9SDimitry Andric   bool addIRTranslator() override;
404e8d8bef9SDimitry Andric   bool addLegalizeMachineIR() override;
405e8d8bef9SDimitry Andric   bool addRegBankSelect() override;
406e8d8bef9SDimitry Andric   bool addGlobalInstructionSelect() override;
407e8d8bef9SDimitry Andric 
4080b57cec5SDimitry Andric   ScheduleDAGInstrs *
4090b57cec5SDimitry Andric   createMachineScheduler(MachineSchedContext *C) const override {
4100b57cec5SDimitry Andric     return createPPCMachineScheduler(C);
4110b57cec5SDimitry Andric   }
4120b57cec5SDimitry Andric   ScheduleDAGInstrs *
4130b57cec5SDimitry Andric   createPostMachineScheduler(MachineSchedContext *C) const override {
4140b57cec5SDimitry Andric     return createPPCPostMachineScheduler(C);
4150b57cec5SDimitry Andric   }
4160b57cec5SDimitry Andric };
4170b57cec5SDimitry Andric 
4180b57cec5SDimitry Andric } // end anonymous namespace
4190b57cec5SDimitry Andric 
4200b57cec5SDimitry Andric TargetPassConfig *PPCTargetMachine::createPassConfig(PassManagerBase &PM) {
4210b57cec5SDimitry Andric   return new PPCPassConfig(*this, PM);
4220b57cec5SDimitry Andric }
4230b57cec5SDimitry Andric 
4240b57cec5SDimitry Andric void PPCPassConfig::addIRPasses() {
4250b57cec5SDimitry Andric   if (TM->getOptLevel() != CodeGenOpt::None)
4260b57cec5SDimitry Andric     addPass(createPPCBoolRetToIntPass());
4270b57cec5SDimitry Andric   addPass(createAtomicExpandPass());
4280b57cec5SDimitry Andric 
429480093f4SDimitry Andric   // Lower generic MASSV routines to PowerPC subtarget-specific entries.
430480093f4SDimitry Andric   addPass(createPPCLowerMASSVEntriesPass());
431480093f4SDimitry Andric 
432e8d8bef9SDimitry Andric   // If explicitly requested, add explicit data prefetch intrinsics.
4330b57cec5SDimitry Andric   if (EnablePrefetch.getNumOccurrences() > 0)
4340b57cec5SDimitry Andric     addPass(createLoopDataPrefetchPass());
4350b57cec5SDimitry Andric 
4360b57cec5SDimitry Andric   if (TM->getOptLevel() >= CodeGenOpt::Default && EnableGEPOpt) {
4370b57cec5SDimitry Andric     // Call SeparateConstOffsetFromGEP pass to extract constants within indices
4380b57cec5SDimitry Andric     // and lower a GEP with multiple indices to either arithmetic operations or
4390b57cec5SDimitry Andric     // multiple GEPs with single index.
4400b57cec5SDimitry Andric     addPass(createSeparateConstOffsetFromGEPPass(true));
4410b57cec5SDimitry Andric     // Call EarlyCSE pass to find and remove subexpressions in the lowered
4420b57cec5SDimitry Andric     // result.
4430b57cec5SDimitry Andric     addPass(createEarlyCSEPass());
4440b57cec5SDimitry Andric     // Do loop invariant code motion in case part of the lowered result is
4450b57cec5SDimitry Andric     // invariant.
4460b57cec5SDimitry Andric     addPass(createLICMPass());
4470b57cec5SDimitry Andric   }
4480b57cec5SDimitry Andric 
4490b57cec5SDimitry Andric   TargetPassConfig::addIRPasses();
4500b57cec5SDimitry Andric }
4510b57cec5SDimitry Andric 
4520b57cec5SDimitry Andric bool PPCPassConfig::addPreISel() {
453480093f4SDimitry Andric   if (!DisableInstrFormPrep && getOptLevel() != CodeGenOpt::None)
454480093f4SDimitry Andric     addPass(createPPCLoopInstrFormPrepPass(getPPCTargetMachine()));
4550b57cec5SDimitry Andric 
4560b57cec5SDimitry Andric   if (!DisableCTRLoops && getOptLevel() != CodeGenOpt::None)
4570b57cec5SDimitry Andric     addPass(createHardwareLoopsPass());
4580b57cec5SDimitry Andric 
4590b57cec5SDimitry Andric   return false;
4600b57cec5SDimitry Andric }
4610b57cec5SDimitry Andric 
4620b57cec5SDimitry Andric bool PPCPassConfig::addILPOpts() {
4630b57cec5SDimitry Andric   addPass(&EarlyIfConverterID);
4640b57cec5SDimitry Andric 
4650b57cec5SDimitry Andric   if (EnableMachineCombinerPass)
4660b57cec5SDimitry Andric     addPass(&MachineCombinerID);
4670b57cec5SDimitry Andric 
4680b57cec5SDimitry Andric   return true;
4690b57cec5SDimitry Andric }
4700b57cec5SDimitry Andric 
4710b57cec5SDimitry Andric bool PPCPassConfig::addInstSelector() {
4720b57cec5SDimitry Andric   // Install an instruction selector.
4730b57cec5SDimitry Andric   addPass(createPPCISelDag(getPPCTargetMachine(), getOptLevel()));
4740b57cec5SDimitry Andric 
4750b57cec5SDimitry Andric #ifndef NDEBUG
4760b57cec5SDimitry Andric   if (!DisableCTRLoops && getOptLevel() != CodeGenOpt::None)
4770b57cec5SDimitry Andric     addPass(createPPCCTRLoopsVerify());
4780b57cec5SDimitry Andric #endif
4790b57cec5SDimitry Andric 
4800b57cec5SDimitry Andric   addPass(createPPCVSXCopyPass());
4810b57cec5SDimitry Andric   return false;
4820b57cec5SDimitry Andric }
4830b57cec5SDimitry Andric 
4840b57cec5SDimitry Andric void PPCPassConfig::addMachineSSAOptimization() {
4850b57cec5SDimitry Andric   // PPCBranchCoalescingPass need to be done before machine sinking
4860b57cec5SDimitry Andric   // since it merges empty blocks.
4870b57cec5SDimitry Andric   if (EnableBranchCoalescing && getOptLevel() != CodeGenOpt::None)
4880b57cec5SDimitry Andric     addPass(createPPCBranchCoalescingPass());
4890b57cec5SDimitry Andric   TargetPassConfig::addMachineSSAOptimization();
4900b57cec5SDimitry Andric   // For little endian, remove where possible the vector swap instructions
4910b57cec5SDimitry Andric   // introduced at code generation to normalize vector element order.
4920b57cec5SDimitry Andric   if (TM->getTargetTriple().getArch() == Triple::ppc64le &&
4930b57cec5SDimitry Andric       !DisableVSXSwapRemoval)
4940b57cec5SDimitry Andric     addPass(createPPCVSXSwapRemovalPass());
4950b57cec5SDimitry Andric   // Reduce the number of cr-logical ops.
4960b57cec5SDimitry Andric   if (ReduceCRLogical && getOptLevel() != CodeGenOpt::None)
4970b57cec5SDimitry Andric     addPass(createPPCReduceCRLogicalsPass());
4980b57cec5SDimitry Andric   // Target-specific peephole cleanups performed after instruction
4990b57cec5SDimitry Andric   // selection.
5000b57cec5SDimitry Andric   if (!DisableMIPeephole) {
5010b57cec5SDimitry Andric     addPass(createPPCMIPeepholePass());
5020b57cec5SDimitry Andric     addPass(&DeadMachineInstructionElimID);
5030b57cec5SDimitry Andric   }
5040b57cec5SDimitry Andric }
5050b57cec5SDimitry Andric 
5060b57cec5SDimitry Andric void PPCPassConfig::addPreRegAlloc() {
5070b57cec5SDimitry Andric   if (getOptLevel() != CodeGenOpt::None) {
5080b57cec5SDimitry Andric     initializePPCVSXFMAMutatePass(*PassRegistry::getPassRegistry());
5090b57cec5SDimitry Andric     insertPass(VSXFMAMutateEarly ? &RegisterCoalescerID : &MachineSchedulerID,
5100b57cec5SDimitry Andric                &PPCVSXFMAMutateID);
5110b57cec5SDimitry Andric   }
5120b57cec5SDimitry Andric 
5130b57cec5SDimitry Andric   // FIXME: We probably don't need to run these for -fPIE.
5140b57cec5SDimitry Andric   if (getPPCTargetMachine().isPositionIndependent()) {
5150b57cec5SDimitry Andric     // FIXME: LiveVariables should not be necessary here!
5160b57cec5SDimitry Andric     // PPCTLSDynamicCallPass uses LiveIntervals which previously dependent on
5170b57cec5SDimitry Andric     // LiveVariables. This (unnecessary) dependency has been removed now,
5180b57cec5SDimitry Andric     // however a stage-2 clang build fails without LiveVariables computed here.
5195ffd83dbSDimitry Andric     addPass(&LiveVariablesID);
5200b57cec5SDimitry Andric     addPass(createPPCTLSDynamicCallPass());
5210b57cec5SDimitry Andric   }
5220b57cec5SDimitry Andric   if (EnableExtraTOCRegDeps)
5230b57cec5SDimitry Andric     addPass(createPPCTOCRegDepsPass());
5240b57cec5SDimitry Andric 
5250b57cec5SDimitry Andric   if (getOptLevel() != CodeGenOpt::None)
5260b57cec5SDimitry Andric     addPass(&MachinePipelinerID);
5270b57cec5SDimitry Andric }
5280b57cec5SDimitry Andric 
5290b57cec5SDimitry Andric void PPCPassConfig::addPreSched2() {
530e8d8bef9SDimitry Andric   if (getOptLevel() != CodeGenOpt::None)
5310b57cec5SDimitry Andric     addPass(&IfConverterID);
5320b57cec5SDimitry Andric }
5330b57cec5SDimitry Andric 
5340b57cec5SDimitry Andric void PPCPassConfig::addPreEmitPass() {
5350b57cec5SDimitry Andric   addPass(createPPCPreEmitPeepholePass());
5360b57cec5SDimitry Andric   addPass(createPPCExpandISELPass());
5370b57cec5SDimitry Andric 
5380b57cec5SDimitry Andric   if (getOptLevel() != CodeGenOpt::None)
5395ffd83dbSDimitry Andric     addPass(createPPCEarlyReturnPass());
540fe6060f1SDimitry Andric }
541fe6060f1SDimitry Andric 
542fe6060f1SDimitry Andric void PPCPassConfig::addPreEmitPass2() {
543fe6060f1SDimitry Andric   // Schedule the expansion of AMOs at the last possible moment, avoiding the
544fe6060f1SDimitry Andric   // possibility for other passes to break the requirements for forward
545fe6060f1SDimitry Andric   // progress in the LL/SC block.
546fe6060f1SDimitry Andric   addPass(createPPCExpandAtomicPseudoPass());
5470b57cec5SDimitry Andric   // Must run branch selection immediately preceding the asm printer.
5485ffd83dbSDimitry Andric   addPass(createPPCBranchSelectionPass());
5490b57cec5SDimitry Andric }
5500b57cec5SDimitry Andric 
5510b57cec5SDimitry Andric TargetTransformInfo
5520b57cec5SDimitry Andric PPCTargetMachine::getTargetTransformInfo(const Function &F) {
5530b57cec5SDimitry Andric   return TargetTransformInfo(PPCTTIImpl(this, F));
5540b57cec5SDimitry Andric }
5550b57cec5SDimitry Andric 
556fe6060f1SDimitry Andric bool PPCTargetMachine::isLittleEndian() const {
557fe6060f1SDimitry Andric   assert(Endianness != Endian::NOT_DETECTED &&
558fe6060f1SDimitry Andric          "Unable to determine endianness");
559fe6060f1SDimitry Andric   return Endianness == Endian::LITTLE;
560fe6060f1SDimitry Andric }
561fe6060f1SDimitry Andric 
5620b57cec5SDimitry Andric static MachineSchedRegistry
5630b57cec5SDimitry Andric PPCPreRASchedRegistry("ppc-prera",
5640b57cec5SDimitry Andric                       "Run PowerPC PreRA specific scheduler",
5650b57cec5SDimitry Andric                       createPPCMachineScheduler);
5660b57cec5SDimitry Andric 
5670b57cec5SDimitry Andric static MachineSchedRegistry
5680b57cec5SDimitry Andric PPCPostRASchedRegistry("ppc-postra",
5690b57cec5SDimitry Andric                        "Run PowerPC PostRA specific scheduler",
5700b57cec5SDimitry Andric                        createPPCPostMachineScheduler);
571e8d8bef9SDimitry Andric 
572e8d8bef9SDimitry Andric // Global ISEL
573e8d8bef9SDimitry Andric bool PPCPassConfig::addIRTranslator() {
574e8d8bef9SDimitry Andric   addPass(new IRTranslator());
575e8d8bef9SDimitry Andric   return false;
576e8d8bef9SDimitry Andric }
577e8d8bef9SDimitry Andric 
578e8d8bef9SDimitry Andric bool PPCPassConfig::addLegalizeMachineIR() {
579e8d8bef9SDimitry Andric   addPass(new Legalizer());
580e8d8bef9SDimitry Andric   return false;
581e8d8bef9SDimitry Andric }
582e8d8bef9SDimitry Andric 
583e8d8bef9SDimitry Andric bool PPCPassConfig::addRegBankSelect() {
584e8d8bef9SDimitry Andric   addPass(new RegBankSelect());
585e8d8bef9SDimitry Andric   return false;
586e8d8bef9SDimitry Andric }
587e8d8bef9SDimitry Andric 
588e8d8bef9SDimitry Andric bool PPCPassConfig::addGlobalInstructionSelect() {
589fe6060f1SDimitry Andric   addPass(new InstructionSelect(getOptLevel()));
590e8d8bef9SDimitry Andric   return false;
591e8d8bef9SDimitry Andric }
592