LLVM 19.0.0git
XCoreTargetMachine.cpp
Go to the documentation of this file.
1//===-- XCoreTargetMachine.cpp - Define TargetMachine for XCore -----------===//
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//
10//===----------------------------------------------------------------------===//
11
12#include "XCoreTargetMachine.h"
15#include "XCore.h"
19#include "llvm/ADT/STLExtras.h"
21#include "llvm/CodeGen/Passes.h"
25#include <optional>
26
27using namespace llvm;
28
29static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
30 return RM.value_or(Reloc::Static);
31}
32
34getEffectiveXCoreCodeModel(std::optional<CodeModel::Model> CM) {
35 if (CM) {
36 if (*CM != CodeModel::Small && *CM != CodeModel::Large)
37 report_fatal_error("Target only supports CodeModel Small or Large");
38 return *CM;
39 }
40 return CodeModel::Small;
41}
42
43/// Create an ILP32 architecture model
44///
46 StringRef CPU, StringRef FS,
48 std::optional<Reloc::Model> RM,
49 std::optional<CodeModel::Model> CM,
50 CodeGenOptLevel OL, bool JIT)
52 T, "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32",
53 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
55 TLOF(std::make_unique<XCoreTargetObjectFile>()),
56 Subtarget(TT, std::string(CPU), std::string(FS), *this) {
58}
59
61
62namespace {
63
64/// XCore Code Generator Pass Configuration Options.
65class XCorePassConfig : public TargetPassConfig {
66public:
67 XCorePassConfig(XCoreTargetMachine &TM, PassManagerBase &PM)
68 : TargetPassConfig(TM, PM) {}
69
70 XCoreTargetMachine &getXCoreTargetMachine() const {
71 return getTM<XCoreTargetMachine>();
72 }
73
74 void addIRPasses() override;
75 bool addPreISel() override;
76 bool addInstSelector() override;
77 void addPreEmitPass() override;
78};
79
80} // end anonymous namespace
81
83 return new XCorePassConfig(*this, PM);
84}
85
86void XCorePassConfig::addIRPasses() {
88
90}
91
92bool XCorePassConfig::addPreISel() {
94 return false;
95}
96
97bool XCorePassConfig::addInstSelector() {
98 addPass(createXCoreISelDag(getXCoreTargetMachine(), getOptLevel()));
99 return false;
100}
101
102void XCorePassConfig::addPreEmitPass() {
104}
105
106// Force static initialization.
111}
112
115 return TargetTransformInfo(XCoreTTIImpl(this, F));
116}
117
119 BumpPtrAllocator &Allocator, const Function &F,
120 const TargetSubtargetInfo *STI) const {
121 return XCoreFunctionInfo::create<XCoreFunctionInfo>(Allocator, F, STI);
122}
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static LVOptions Options
Definition: LVOptions.cpp:25
#define F(x, y, z)
Definition: MD5.cpp:55
const char LLVMTargetMachineRef TM
Basic Register Allocator
This file contains some templates that are useful if you are working with the STL at all.
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeXCoreTarget()
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
static CodeModel::Model getEffectiveXCoreCodeModel(std::optional< CodeModel::Model > CM)
This file a TargetTransformInfo::Concept conforming object specific to the XCore target machine.
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
This class describes a target machine that is implemented with the LLVM target-independent code gener...
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
Definition: PassRegistry.h:37
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::unique_ptr< const MCSubtargetInfo > STI
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:44
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
XCoreTargetMachine(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)
Create an ILP32 architecture model.
~XCoreTargetMachine() override
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.
Definition: AddressRanges.h:18
FunctionPass * createXCoreFrameToArgsOffsetEliminationPass()
createXCoreFrameToArgsOffsetEliminationPass - returns an instance of the Frame to args offset elimina...
Target & getTheXCoreTarget()
void initializeXCoreDAGToDAGISelPass(PassRegistry &)
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
ModulePass * createXCoreLowerThreadLocalPass()
FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
FunctionPass * createXCoreISelDag(XCoreTargetMachine &TM, CodeGenOptLevel OptLevel)
createXCoreISelDag - This pass converts a legalized DAG into a XCore-specific DAG,...
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
RegisterTargetMachine - Helper template for registering a target machine implementation,...