10b57cec5SDimitry Andric //===-- SystemZTargetMachine.cpp - Define TargetMachine for SystemZ -------===//
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 #include "SystemZTargetMachine.h"
100b57cec5SDimitry Andric #include "MCTargetDesc/SystemZMCTargetDesc.h"
110b57cec5SDimitry Andric #include "SystemZ.h"
12bdd1243dSDimitry Andric #include "SystemZMachineFunctionInfo.h"
130b57cec5SDimitry Andric #include "SystemZMachineScheduler.h"
14*0fca6ea1SDimitry Andric #include "SystemZTargetObjectFile.h"
150b57cec5SDimitry Andric #include "SystemZTargetTransformInfo.h"
160b57cec5SDimitry Andric #include "TargetInfo/SystemZTargetInfo.h"
170b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h"
180b57cec5SDimitry Andric #include "llvm/Analysis/TargetTransformInfo.h"
190b57cec5SDimitry Andric #include "llvm/CodeGen/Passes.h"
200b57cec5SDimitry Andric #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
210b57cec5SDimitry Andric #include "llvm/CodeGen/TargetPassConfig.h"
220b57cec5SDimitry Andric #include "llvm/IR/DataLayout.h"
23349cc55cSDimitry Andric #include "llvm/MC/TargetRegistry.h"
240b57cec5SDimitry Andric #include "llvm/Support/CodeGen.h"
250b57cec5SDimitry Andric #include "llvm/Target/TargetLoweringObjectFile.h"
260b57cec5SDimitry Andric #include "llvm/Transforms/Scalar.h"
275f757f3fSDimitry Andric #include <memory>
28bdd1243dSDimitry Andric #include <optional>
290b57cec5SDimitry Andric #include <string>
300b57cec5SDimitry Andric
310b57cec5SDimitry Andric using namespace llvm;
320b57cec5SDimitry Andric
33*0fca6ea1SDimitry Andric static cl::opt<bool> EnableMachineCombinerPass(
34*0fca6ea1SDimitry Andric "systemz-machine-combiner",
35*0fca6ea1SDimitry Andric cl::desc("Enable the machine combiner pass"),
36*0fca6ea1SDimitry Andric cl::init(true), cl::Hidden);
37*0fca6ea1SDimitry Andric
385f757f3fSDimitry Andric // NOLINTNEXTLINE(readability-identifier-naming)
LLVMInitializeSystemZTarget()39480093f4SDimitry Andric extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSystemZTarget() {
400b57cec5SDimitry Andric // Register the target.
410b57cec5SDimitry Andric RegisterTargetMachine<SystemZTargetMachine> X(getTheSystemZTarget());
4204eeddc0SDimitry Andric auto &PR = *PassRegistry::getPassRegistry();
4304eeddc0SDimitry Andric initializeSystemZElimComparePass(PR);
4404eeddc0SDimitry Andric initializeSystemZShortenInstPass(PR);
4504eeddc0SDimitry Andric initializeSystemZLongBranchPass(PR);
4604eeddc0SDimitry Andric initializeSystemZLDCleanupPass(PR);
4704eeddc0SDimitry Andric initializeSystemZShortenInstPass(PR);
4804eeddc0SDimitry Andric initializeSystemZPostRewritePass(PR);
4904eeddc0SDimitry Andric initializeSystemZTDCPassPass(PR);
50*0fca6ea1SDimitry Andric initializeSystemZDAGToDAGISelLegacyPass(PR);
510b57cec5SDimitry Andric }
520b57cec5SDimitry Andric
computeDataLayout(const Triple & TT)53bdd1243dSDimitry Andric static std::string computeDataLayout(const Triple &TT) {
540b57cec5SDimitry Andric std::string Ret;
550b57cec5SDimitry Andric
560b57cec5SDimitry Andric // Big endian.
570b57cec5SDimitry Andric Ret += "E";
580b57cec5SDimitry Andric
590b57cec5SDimitry Andric // Data mangling.
600b57cec5SDimitry Andric Ret += DataLayout::getManglingComponent(TT);
610b57cec5SDimitry Andric
620b57cec5SDimitry Andric // Make sure that global data has at least 16 bits of alignment by
630b57cec5SDimitry Andric // default, so that we can refer to it using LARL. We don't have any
640b57cec5SDimitry Andric // special requirements for stack variables though.
650b57cec5SDimitry Andric Ret += "-i1:8:16-i8:8:16";
660b57cec5SDimitry Andric
670b57cec5SDimitry Andric // 64-bit integers are naturally aligned.
680b57cec5SDimitry Andric Ret += "-i64:64";
690b57cec5SDimitry Andric
700b57cec5SDimitry Andric // 128-bit floats are aligned only to 64 bits.
710b57cec5SDimitry Andric Ret += "-f128:64";
720b57cec5SDimitry Andric
73bdd1243dSDimitry Andric // The DataLayout string always holds a vector alignment of 64 bits, see
74bdd1243dSDimitry Andric // comment in clang/lib/Basic/Targets/SystemZ.h.
750b57cec5SDimitry Andric Ret += "-v128:64";
760b57cec5SDimitry Andric
770b57cec5SDimitry Andric // We prefer 16 bits of aligned for all globals; see above.
780b57cec5SDimitry Andric Ret += "-a:8:16";
790b57cec5SDimitry Andric
800b57cec5SDimitry Andric // Integer registers are 32 or 64 bits.
810b57cec5SDimitry Andric Ret += "-n32:64";
820b57cec5SDimitry Andric
830b57cec5SDimitry Andric return Ret;
840b57cec5SDimitry Andric }
850b57cec5SDimitry Andric
createTLOF(const Triple & TT)86fe6060f1SDimitry Andric static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
87fe6060f1SDimitry Andric if (TT.isOSzOS())
88fe6060f1SDimitry Andric return std::make_unique<TargetLoweringObjectFileGOFF>();
89fe6060f1SDimitry Andric
90fe6060f1SDimitry Andric // Note: Some times run with -triple s390x-unknown.
91fe6060f1SDimitry Andric // In this case, default to ELF unless z/OS specifically provided.
92*0fca6ea1SDimitry Andric return std::make_unique<SystemZELFTargetObjectFile>();
93fe6060f1SDimitry Andric }
94fe6060f1SDimitry Andric
getEffectiveRelocModel(std::optional<Reloc::Model> RM)95bdd1243dSDimitry Andric static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
960b57cec5SDimitry Andric // Static code is suitable for use in a dynamic executable; there is no
970b57cec5SDimitry Andric // separate DynamicNoPIC model.
9881ad6265SDimitry Andric if (!RM || *RM == Reloc::DynamicNoPIC)
990b57cec5SDimitry Andric return Reloc::Static;
1000b57cec5SDimitry Andric return *RM;
1010b57cec5SDimitry Andric }
1020b57cec5SDimitry Andric
1030b57cec5SDimitry Andric // For SystemZ we define the models as follows:
1040b57cec5SDimitry Andric //
1050b57cec5SDimitry Andric // Small: BRASL can call any function and will use a stub if necessary.
1060b57cec5SDimitry Andric // Locally-binding symbols will always be in range of LARL.
1070b57cec5SDimitry Andric //
1080b57cec5SDimitry Andric // Medium: BRASL can call any function and will use a stub if necessary.
1090b57cec5SDimitry Andric // GOT slots and locally-defined text will always be in range
1100b57cec5SDimitry Andric // of LARL, but other symbols might not be.
1110b57cec5SDimitry Andric //
1120b57cec5SDimitry Andric // Large: Equivalent to Medium for now.
1130b57cec5SDimitry Andric //
1140b57cec5SDimitry Andric // Kernel: Equivalent to Medium for now.
1150b57cec5SDimitry Andric //
1160b57cec5SDimitry Andric // This means that any PIC module smaller than 4GB meets the
1170b57cec5SDimitry Andric // requirements of Small, so Small seems like the best default there.
1180b57cec5SDimitry Andric //
1190b57cec5SDimitry Andric // All symbols bind locally in a non-PIC module, so the choice is less
1200b57cec5SDimitry Andric // obvious. There are two cases:
1210b57cec5SDimitry Andric //
1220b57cec5SDimitry Andric // - When creating an executable, PLTs and copy relocations allow
1230b57cec5SDimitry Andric // us to treat external symbols as part of the executable.
1240b57cec5SDimitry Andric // Any executable smaller than 4GB meets the requirements of Small,
1250b57cec5SDimitry Andric // so that seems like the best default.
1260b57cec5SDimitry Andric //
1270b57cec5SDimitry Andric // - When creating JIT code, stubs will be in range of BRASL if the
1280b57cec5SDimitry Andric // image is less than 4GB in size. GOT entries will likewise be
1290b57cec5SDimitry Andric // in range of LARL. However, the JIT environment has no equivalent
1300b57cec5SDimitry Andric // of copy relocs, so locally-binding data symbols might not be in
1310b57cec5SDimitry Andric // the range of LARL. We need the Medium model in that case.
1320b57cec5SDimitry Andric static CodeModel::Model
getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM,Reloc::Model RM,bool JIT)133bdd1243dSDimitry Andric getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM,
134bdd1243dSDimitry Andric Reloc::Model RM, bool JIT) {
1350b57cec5SDimitry Andric if (CM) {
1360b57cec5SDimitry Andric if (*CM == CodeModel::Tiny)
1370b57cec5SDimitry Andric report_fatal_error("Target does not support the tiny CodeModel", false);
1380b57cec5SDimitry Andric if (*CM == CodeModel::Kernel)
1390b57cec5SDimitry Andric report_fatal_error("Target does not support the kernel CodeModel", false);
1400b57cec5SDimitry Andric return *CM;
1410b57cec5SDimitry Andric }
1420b57cec5SDimitry Andric if (JIT)
1430b57cec5SDimitry Andric return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
1440b57cec5SDimitry Andric return CodeModel::Small;
1450b57cec5SDimitry Andric }
1460b57cec5SDimitry Andric
SystemZTargetMachine(const Target & T,const Triple & TT,StringRef CPU,StringRef FS,const TargetOptions & Options,std::optional<Reloc::Model> RM,std::optional<CodeModel::Model> CM,CodeGenOptLevel OL,bool JIT)1470b57cec5SDimitry Andric SystemZTargetMachine::SystemZTargetMachine(const Target &T, const Triple &TT,
1480b57cec5SDimitry Andric StringRef CPU, StringRef FS,
1490b57cec5SDimitry Andric const TargetOptions &Options,
150bdd1243dSDimitry Andric std::optional<Reloc::Model> RM,
151bdd1243dSDimitry Andric std::optional<CodeModel::Model> CM,
1525f757f3fSDimitry Andric CodeGenOptLevel OL, bool JIT)
1530b57cec5SDimitry Andric : LLVMTargetMachine(
154bdd1243dSDimitry Andric T, computeDataLayout(TT), TT, CPU, FS, Options,
1550b57cec5SDimitry Andric getEffectiveRelocModel(RM),
1560b57cec5SDimitry Andric getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT),
1570b57cec5SDimitry Andric OL),
158fe6060f1SDimitry Andric TLOF(createTLOF(getTargetTriple())) {
1590b57cec5SDimitry Andric initAsmInfo();
1600b57cec5SDimitry Andric }
1610b57cec5SDimitry Andric
1620b57cec5SDimitry Andric SystemZTargetMachine::~SystemZTargetMachine() = default;
1630b57cec5SDimitry Andric
1645ffd83dbSDimitry Andric const SystemZSubtarget *
getSubtargetImpl(const Function & F) const1655ffd83dbSDimitry Andric SystemZTargetMachine::getSubtargetImpl(const Function &F) const {
1665ffd83dbSDimitry Andric Attribute CPUAttr = F.getFnAttribute("target-cpu");
16781ad6265SDimitry Andric Attribute TuneAttr = F.getFnAttribute("tune-cpu");
1685ffd83dbSDimitry Andric Attribute FSAttr = F.getFnAttribute("target-features");
1695ffd83dbSDimitry Andric
170e8d8bef9SDimitry Andric std::string CPU =
171e8d8bef9SDimitry Andric CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
17281ad6265SDimitry Andric std::string TuneCPU =
17381ad6265SDimitry Andric TuneAttr.isValid() ? TuneAttr.getValueAsString().str() : CPU;
174e8d8bef9SDimitry Andric std::string FS =
175e8d8bef9SDimitry Andric FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
1765ffd83dbSDimitry Andric
1775ffd83dbSDimitry Andric // FIXME: This is related to the code below to reset the target options,
1785f757f3fSDimitry Andric // we need to know whether the soft float and backchain flags are set on the
1795f757f3fSDimitry Andric // function, so we can enable them as subtarget features.
1805f757f3fSDimitry Andric bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
1815f757f3fSDimitry Andric if (SoftFloat)
1825ffd83dbSDimitry Andric FS += FS.empty() ? "+soft-float" : ",+soft-float";
1835f757f3fSDimitry Andric bool BackChain = F.hasFnAttribute("backchain");
1845f757f3fSDimitry Andric if (BackChain)
1855f757f3fSDimitry Andric FS += FS.empty() ? "+backchain" : ",+backchain";
1865ffd83dbSDimitry Andric
18781ad6265SDimitry Andric auto &I = SubtargetMap[CPU + TuneCPU + FS];
1885ffd83dbSDimitry Andric if (!I) {
1895ffd83dbSDimitry Andric // This needs to be done before we create a new subtarget since any
1905ffd83dbSDimitry Andric // creation will depend on the TM and the code generation flags on the
1915ffd83dbSDimitry Andric // function that reside in TargetOptions.
1925ffd83dbSDimitry Andric resetTargetOptions(F);
19381ad6265SDimitry Andric I = std::make_unique<SystemZSubtarget>(TargetTriple, CPU, TuneCPU, FS,
19481ad6265SDimitry Andric *this);
1955ffd83dbSDimitry Andric }
1965ffd83dbSDimitry Andric
1975ffd83dbSDimitry Andric return I.get();
1985ffd83dbSDimitry Andric }
1995ffd83dbSDimitry Andric
2000b57cec5SDimitry Andric namespace {
2010b57cec5SDimitry Andric
2020b57cec5SDimitry Andric /// SystemZ Code Generator Pass Configuration Options.
2030b57cec5SDimitry Andric class SystemZPassConfig : public TargetPassConfig {
2040b57cec5SDimitry Andric public:
SystemZPassConfig(SystemZTargetMachine & TM,PassManagerBase & PM)2050b57cec5SDimitry Andric SystemZPassConfig(SystemZTargetMachine &TM, PassManagerBase &PM)
2060b57cec5SDimitry Andric : TargetPassConfig(TM, PM) {}
2070b57cec5SDimitry Andric
getSystemZTargetMachine() const2080b57cec5SDimitry Andric SystemZTargetMachine &getSystemZTargetMachine() const {
2090b57cec5SDimitry Andric return getTM<SystemZTargetMachine>();
2100b57cec5SDimitry Andric }
2110b57cec5SDimitry Andric
2120b57cec5SDimitry Andric ScheduleDAGInstrs *
createPostMachineScheduler(MachineSchedContext * C) const2130b57cec5SDimitry Andric createPostMachineScheduler(MachineSchedContext *C) const override {
2140b57cec5SDimitry Andric return new ScheduleDAGMI(C,
2158bcb0991SDimitry Andric std::make_unique<SystemZPostRASchedStrategy>(C),
2160b57cec5SDimitry Andric /*RemoveKillFlags=*/true);
2170b57cec5SDimitry Andric }
2180b57cec5SDimitry Andric
2190b57cec5SDimitry Andric void addIRPasses() override;
2200b57cec5SDimitry Andric bool addInstSelector() override;
2210b57cec5SDimitry Andric bool addILPOpts() override;
2225ffd83dbSDimitry Andric void addPreRegAlloc() override;
2230b57cec5SDimitry Andric void addPostRewrite() override;
2248bcb0991SDimitry Andric void addPostRegAlloc() override;
2250b57cec5SDimitry Andric void addPreSched2() override;
2260b57cec5SDimitry Andric void addPreEmitPass() override;
2270b57cec5SDimitry Andric };
2280b57cec5SDimitry Andric
2290b57cec5SDimitry Andric } // end anonymous namespace
2300b57cec5SDimitry Andric
addIRPasses()2310b57cec5SDimitry Andric void SystemZPassConfig::addIRPasses() {
2325f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None) {
2330b57cec5SDimitry Andric addPass(createSystemZTDCPass());
2340b57cec5SDimitry Andric addPass(createLoopDataPrefetchPass());
2350b57cec5SDimitry Andric }
2360b57cec5SDimitry Andric
237*0fca6ea1SDimitry Andric addPass(createAtomicExpandLegacyPass());
2385f757f3fSDimitry Andric
2390b57cec5SDimitry Andric TargetPassConfig::addIRPasses();
2400b57cec5SDimitry Andric }
2410b57cec5SDimitry Andric
addInstSelector()2420b57cec5SDimitry Andric bool SystemZPassConfig::addInstSelector() {
2430b57cec5SDimitry Andric addPass(createSystemZISelDag(getSystemZTargetMachine(), getOptLevel()));
2440b57cec5SDimitry Andric
2455f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None)
2460b57cec5SDimitry Andric addPass(createSystemZLDCleanupPass(getSystemZTargetMachine()));
2470b57cec5SDimitry Andric
2480b57cec5SDimitry Andric return false;
2490b57cec5SDimitry Andric }
2500b57cec5SDimitry Andric
addILPOpts()2510b57cec5SDimitry Andric bool SystemZPassConfig::addILPOpts() {
2520b57cec5SDimitry Andric addPass(&EarlyIfConverterID);
253*0fca6ea1SDimitry Andric
254*0fca6ea1SDimitry Andric if (EnableMachineCombinerPass)
255*0fca6ea1SDimitry Andric addPass(&MachineCombinerID);
256*0fca6ea1SDimitry Andric
2570b57cec5SDimitry Andric return true;
2580b57cec5SDimitry Andric }
2590b57cec5SDimitry Andric
addPreRegAlloc()2605ffd83dbSDimitry Andric void SystemZPassConfig::addPreRegAlloc() {
2615ffd83dbSDimitry Andric addPass(createSystemZCopyPhysRegsPass(getSystemZTargetMachine()));
2625ffd83dbSDimitry Andric }
2635ffd83dbSDimitry Andric
addPostRewrite()2640b57cec5SDimitry Andric void SystemZPassConfig::addPostRewrite() {
2650b57cec5SDimitry Andric addPass(createSystemZPostRewritePass(getSystemZTargetMachine()));
2660b57cec5SDimitry Andric }
2670b57cec5SDimitry Andric
addPostRegAlloc()2688bcb0991SDimitry Andric void SystemZPassConfig::addPostRegAlloc() {
2690b57cec5SDimitry Andric // PostRewrite needs to be run at -O0 also (in which case addPostRewrite()
2700b57cec5SDimitry Andric // is not called).
2715f757f3fSDimitry Andric if (getOptLevel() == CodeGenOptLevel::None)
2720b57cec5SDimitry Andric addPass(createSystemZPostRewritePass(getSystemZTargetMachine()));
2738bcb0991SDimitry Andric }
2740b57cec5SDimitry Andric
addPreSched2()2758bcb0991SDimitry Andric void SystemZPassConfig::addPreSched2() {
2765f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None)
2770b57cec5SDimitry Andric addPass(&IfConverterID);
2780b57cec5SDimitry Andric }
2790b57cec5SDimitry Andric
addPreEmitPass()2800b57cec5SDimitry Andric void SystemZPassConfig::addPreEmitPass() {
2810b57cec5SDimitry Andric // Do instruction shortening before compare elimination because some
2820b57cec5SDimitry Andric // vector instructions will be shortened into opcodes that compare
2830b57cec5SDimitry Andric // elimination recognizes.
2845f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None)
285349cc55cSDimitry Andric addPass(createSystemZShortenInstPass(getSystemZTargetMachine()));
2860b57cec5SDimitry Andric
2870b57cec5SDimitry Andric // We eliminate comparisons here rather than earlier because some
2880b57cec5SDimitry Andric // transformations can change the set of available CC values and we
2890b57cec5SDimitry Andric // generally want those transformations to have priority. This is
2900b57cec5SDimitry Andric // especially true in the commonest case where the result of the comparison
2910b57cec5SDimitry Andric // is used by a single in-range branch instruction, since we will then
2920b57cec5SDimitry Andric // be able to fuse the compare and the branch instead.
2930b57cec5SDimitry Andric //
2940b57cec5SDimitry Andric // For example, two-address NILF can sometimes be converted into
2950b57cec5SDimitry Andric // three-address RISBLG. NILF produces a CC value that indicates whether
2960b57cec5SDimitry Andric // the low word is zero, but RISBLG does not modify CC at all. On the
2970b57cec5SDimitry Andric // other hand, 64-bit ANDs like NILL can sometimes be converted to RISBG.
2980b57cec5SDimitry Andric // The CC value produced by NILL isn't useful for our purposes, but the
2990b57cec5SDimitry Andric // value produced by RISBG can be used for any comparison with zero
3000b57cec5SDimitry Andric // (not just equality). So there are some transformations that lose
3010b57cec5SDimitry Andric // CC values (while still being worthwhile) and others that happen to make
3020b57cec5SDimitry Andric // the CC result more useful than it was originally.
3030b57cec5SDimitry Andric //
3040b57cec5SDimitry Andric // Another reason is that we only want to use BRANCH ON COUNT in cases
3050b57cec5SDimitry Andric // where we know that the count register is not going to be spilled.
3060b57cec5SDimitry Andric //
3070b57cec5SDimitry Andric // Doing it so late makes it more likely that a register will be reused
3080b57cec5SDimitry Andric // between the comparison and the branch, but it isn't clear whether
3090b57cec5SDimitry Andric // preventing that would be a win or not.
3105f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None)
311349cc55cSDimitry Andric addPass(createSystemZElimComparePass(getSystemZTargetMachine()));
3120b57cec5SDimitry Andric addPass(createSystemZLongBranchPass(getSystemZTargetMachine()));
3130b57cec5SDimitry Andric
3140b57cec5SDimitry Andric // Do final scheduling after all other optimizations, to get an
3150b57cec5SDimitry Andric // optimal input for the decoder (branch relaxation must happen
3160b57cec5SDimitry Andric // after block placement).
3175f757f3fSDimitry Andric if (getOptLevel() != CodeGenOptLevel::None)
3180b57cec5SDimitry Andric addPass(&PostMachineSchedulerID);
3190b57cec5SDimitry Andric }
3200b57cec5SDimitry Andric
createPassConfig(PassManagerBase & PM)3210b57cec5SDimitry Andric TargetPassConfig *SystemZTargetMachine::createPassConfig(PassManagerBase &PM) {
3220b57cec5SDimitry Andric return new SystemZPassConfig(*this, PM);
3230b57cec5SDimitry Andric }
3240b57cec5SDimitry Andric
3250b57cec5SDimitry Andric TargetTransformInfo
getTargetTransformInfo(const Function & F) const32681ad6265SDimitry Andric SystemZTargetMachine::getTargetTransformInfo(const Function &F) const {
3270b57cec5SDimitry Andric return TargetTransformInfo(SystemZTTIImpl(this, F));
3280b57cec5SDimitry Andric }
329bdd1243dSDimitry Andric
createMachineFunctionInfo(BumpPtrAllocator & Allocator,const Function & F,const TargetSubtargetInfo * STI) const330bdd1243dSDimitry Andric MachineFunctionInfo *SystemZTargetMachine::createMachineFunctionInfo(
331bdd1243dSDimitry Andric BumpPtrAllocator &Allocator, const Function &F,
332bdd1243dSDimitry Andric const TargetSubtargetInfo *STI) const {
333bdd1243dSDimitry Andric return SystemZMachineFunctionInfo::create<SystemZMachineFunctionInfo>(
334bdd1243dSDimitry Andric Allocator, F, STI);
335bdd1243dSDimitry Andric }
336