LLVM 20.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"
14#include "XCore.h"
19#include "llvm/CodeGen/Passes.h"
23#include <optional>
24
25using namespace llvm;
26
27static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
28 return RM.value_or(Reloc::Static);
29}
30
32getEffectiveXCoreCodeModel(std::optional<CodeModel::Model> CM) {
33 if (CM) {
34 if (*CM != CodeModel::Small && *CM != CodeModel::Large)
35 report_fatal_error("Target only supports CodeModel Small or Large");
36 return *CM;
37 }
38 return CodeModel::Small;
39}
40
41/// Create an ILP32 architecture model
42///
44 StringRef CPU, StringRef FS,
46 std::optional<Reloc::Model> RM,
47 std::optional<CodeModel::Model> CM,
48 CodeGenOptLevel OL, bool JIT)
50 T, "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32",
51 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
53 TLOF(std::make_unique<XCoreTargetObjectFile>()),
54 Subtarget(TT, std::string(CPU), std::string(FS), *this) {
56}
57
59
60namespace {
61
62/// XCore Code Generator Pass Configuration Options.
63class XCorePassConfig : public TargetPassConfig {
64public:
65 XCorePassConfig(XCoreTargetMachine &TM, PassManagerBase &PM)
66 : TargetPassConfig(TM, PM) {}
67
68 XCoreTargetMachine &getXCoreTargetMachine() const {
69 return getTM<XCoreTargetMachine>();
70 }
71
72 void addIRPasses() override;
73 bool addPreISel() override;
74 bool addInstSelector() override;
75 void addPreEmitPass() override;
76};
77
78} // end anonymous namespace
79
81 return new XCorePassConfig(*this, PM);
82}
83
84void XCorePassConfig::addIRPasses() {
86
88}
89
90bool XCorePassConfig::addPreISel() {
92 return false;
93}
94
95bool XCorePassConfig::addInstSelector() {
96 addPass(createXCoreISelDag(getXCoreTargetMachine(), getOptLevel()));
97 return false;
98}
99
100void XCorePassConfig::addPreEmitPass() {
102}
103
104// Force static initialization.
109}
110
113 return TargetTransformInfo(XCoreTTIImpl(this, F));
114}
115
117 BumpPtrAllocator &Allocator, const Function &F,
118 const TargetSubtargetInfo *STI) const {
119 return XCoreFunctionInfo::create<XCoreFunctionInfo>(Allocator, F, STI);
120}
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:128
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
Basic Register Allocator
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
implements a set of functionality in the TargetMachine class for targets that make use of the indepen...
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:51
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 initializeXCoreDAGToDAGISelLegacyPass(PassRegistry &)
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167
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,...