LLVM 22.0.0git
XtensaTargetMachine.cpp
Go to the documentation of this file.
1//===- XtensaTargetMachine.cpp - Define TargetMachine for Xtensa ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6// See https://llvm.org/LICENSE.txt for license information.
7// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8//
9//===----------------------------------------------------------------------===//
10//
11// Implements the info about Xtensa target spec.
12//
13//===----------------------------------------------------------------------===//
14
15#include "XtensaTargetMachine.h"
18#include "llvm/CodeGen/Passes.h"
22#include "llvm/PassRegistry.h"
24#include <optional>
25
26using namespace llvm;
27
29 // Register the target.
33}
34
35static std::string computeDataLayout(const Triple &TT, StringRef CPU,
37 bool IsLittle) {
38 std::string Ret = "e-m:e-p:32:32-i8:8:32-i16:16:32-i64:64-n32";
39 return Ret;
40}
41
43 std::optional<Reloc::Model> RM) {
44 if (!RM || JIT)
45 return Reloc::Static;
46 return *RM;
47}
48
50 StringRef CPU, StringRef FS,
52 std::optional<Reloc::Model> RM,
53 std::optional<CodeModel::Model> CM,
54 CodeGenOptLevel OL, bool JIT,
55 bool IsLittle)
57 TT, CPU, FS, Options,
59 getEffectiveCodeModel(CM, CodeModel::Small), OL),
60 TLOF(std::make_unique<TargetLoweringObjectFileELF>()) {
62}
63
65 StringRef CPU, StringRef FS,
67 std::optional<Reloc::Model> RM,
68 std::optional<CodeModel::Model> CM,
69 CodeGenOptLevel OL, bool JIT)
70 : XtensaTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
71
72const XtensaSubtarget *
74 Attribute CPUAttr = F.getFnAttribute("target-cpu");
75 Attribute FSAttr = F.getFnAttribute("target-features");
76
77 auto CPU = CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
78 auto FS = FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
79
80 auto &I = SubtargetMap[CPU + FS];
81 if (!I) {
82 // This needs to be done before we create a new subtarget since any
83 // creation will depend on the TM and the code generation flags on the
84 // function that reside in TargetOptions.
86 I = std::make_unique<XtensaSubtarget>(TargetTriple, CPU, FS, *this);
87 }
88 return I.get();
89}
90
92 BumpPtrAllocator &Allocator, const Function &F,
93 const TargetSubtargetInfo *STI) const {
94 return XtensaMachineFunctionInfo::create<XtensaMachineFunctionInfo>(Allocator,
95 F, STI);
96}
97
98namespace {
99/// Xtensa Code Generator Pass Configuration Options.
100class XtensaPassConfig : public TargetPassConfig {
101public:
102 XtensaPassConfig(XtensaTargetMachine &TM, PassManagerBase &PM)
103 : TargetPassConfig(TM, PM) {}
104
105 XtensaTargetMachine &getXtensaTargetMachine() const {
106 return getTM<XtensaTargetMachine>();
107 }
108
109 bool addInstSelector() override;
110 void addIRPasses() override;
111 void addPreEmitPass() override;
112};
113} // end anonymous namespace
114
115bool XtensaPassConfig::addInstSelector() {
116 addPass(createXtensaISelDag(getXtensaTargetMachine(), getOptLevel()));
117 return false;
118}
119
120void XtensaPassConfig::addIRPasses() {
123}
124
125void XtensaPassConfig::addPreEmitPass() { addPass(&BranchRelaxationPassID); }
126
128 return new XtensaPassConfig(*this, PM);
129}
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:132
static LVOptions Options
Definition: LVOptions.cpp:25
static std::string computeDataLayout()
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
Basic Register Allocator
Target-Independent Code Generator Pass Configuration Options pass.
static Reloc::Model getEffectiveRelocModel(bool JIT, std::optional< Reloc::Model > RM)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeXtensaTarget()
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:400
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition: Attributes.h:223
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:67
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:38
static LLVM_ABI 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:55
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:233
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
std::string TargetFS
std::string TargetCPU
std::unique_ptr< const MCSubtargetInfo > STI
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
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.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:47
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
StringMap< std::unique_ptr< XtensaSubtarget > > SubtargetMap
XtensaTargetMachine(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, bool isLittle)
const XtensaSubtarget * getSubtargetImpl(const Function &F) const override
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
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 * createXtensaISelDag(XtensaTargetMachine &TM, CodeGenOptLevel OptLevel)
void initializeXtensaAsmPrinterPass(PassRegistry &)
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.
LLVM_ABI char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
Target & getTheXtensaTarget()
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:82
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:856
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,...