LLVM 24.0.0git
LanaiTargetMachine.cpp
Go to the documentation of this file.
1//===-- LanaiTargetMachine.cpp - Define TargetMachine for Lanai ---------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Implements the info about Lanai target spec.
10//
11//===----------------------------------------------------------------------===//
12
13#include "LanaiTargetMachine.h"
14
15#include "Lanai.h"
21#include "llvm/CodeGen/Passes.h"
26#include <optional>
27
28using namespace llvm;
29
39
40static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
41 return RM.value_or(Reloc::PIC_);
42}
43
45 const Target &T, const Triple &TT, StringRef Cpu, StringRef FeatureString,
46 const TargetOptions &Options, std::optional<Reloc::Model> RM,
47 std::optional<CodeModel::Model> CodeModel, CodeGenOptLevel OptLevel,
48 bool JIT)
50 T, TT, Cpu, FeatureString, Options, getEffectiveRelocModel(RM),
52 Subtarget(TT, Cpu, FeatureString, *this, Options, getCodeModel(),
53 OptLevel),
54 TLOF(new LanaiTargetObjectFile()) {
56}
57
60 return TargetTransformInfo(std::make_unique<LanaiTTIImpl>(this, F));
61}
62
69
70namespace {
71// Lanai Code Generator Pass Configuration Options.
72class LanaiPassConfig : public TargetPassConfig {
73public:
76
77 LanaiTargetMachine &getLanaiTargetMachine() const {
79 }
80
81 void addIRPasses() override;
82 bool addInstSelector() override;
83 void addPreSched2() override;
84 void addPreEmitPass() override;
85};
86} // namespace
87
90 return new LanaiPassConfig(*this, &PassManager);
91}
92
93void LanaiPassConfig::addIRPasses() {
95
97}
98
99// Install an instruction selector pass.
100bool LanaiPassConfig::addInstSelector() {
101 addPass(createLanaiISelDagLegacyPass(getLanaiTargetMachine()));
102 return false;
103}
104
105// Implemented by targets that want to run passes immediately before
106// machine code is emitted.
107void LanaiPassConfig::addPreEmitPass() {
108 addPass(createLanaiDelaySlotFillerLegacyPass(getLanaiTargetMachine()));
109}
110
111// Run passes after prolog-epilog insertion and before the second instruction
112// scheduling pass.
113void LanaiPassConfig::addPreSched2() {
115}
static Reloc::Model getEffectiveRelocModel()
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeLanaiTarget()
#define F(x, y, z)
Definition MD5.cpp:54
#define T
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
CodeGenTargetMachineImpl(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
TargetPassConfig * createPassConfig(PassManagerBase &pass_manager) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
LanaiTargetMachine(const Target &TheTarget, const Triple &TargetTriple, StringRef Cpu, StringRef FeatureString, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CodeModel, CodeGenOptLevel OptLevel, bool JIT)
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
Manages a sequence of passes over a particular unit of IR.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
CodeModel::Model getCodeModel() const
Returns the code model.
CodeGenOptLevel OptLevel
Target-Independent Code Generator Pass Configuration Options.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
This is an optimization pass for GlobalISel generic memory operations.
Target & getTheLanaiTarget()
FunctionPass * createLanaiMemAluCombinerLegacyPass()
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:227
FunctionPass * createLanaiDelaySlotFillerLegacyPass(const LanaiTargetMachine &TM)
void initializeLanaiDAGToDAGISelLegacyPass(PassRegistry &)
void initializeLanaiMemAluCombinerLegacyPass(PassRegistry &)
FunctionPass * createLanaiISelDagLegacyPass(LanaiTargetMachine &TM)
void initializeLanaiAsmPrinterPass(PassRegistry &)
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
static FuncInfoTy * create(BumpPtrAllocator &Allocator, const Function &F, const SubtargetTy *STI)
Factory function: default behavior is to call new using the supplied allocator.
RegisterTargetMachine - Helper template for registering a target machine implementation,...