LLVM 22.0.0git
VETargetMachine.cpp
Go to the documentation of this file.
1//===-- VETargetMachine.cpp - Define TargetMachine for VE -----------------===//
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 "VETargetMachine.h"
14#include "VE.h"
17#include "llvm/CodeGen/Passes.h"
23#include <optional>
24
25using namespace llvm;
26
27#define DEBUG_TYPE "ve"
28
37
38static std::string computeDataLayout(const Triple &T) {
39 // Aurora VE is little endian
40 std::string Ret = "e";
41
42 // Use ELF mangling
43 Ret += "-m:e";
44
45 // Alignments for 64 bit integers.
46 Ret += "-i64:64";
47
48 // VE supports 32 bit and 64 bits integer on registers
49 Ret += "-n32:64";
50
51 // Stack alignment is 128 bits
52 Ret += "-S128";
53
54 // Vector alignments are 64 bits
55 // Need to define all of them. Otherwise, each alignment becomes
56 // the size of each data by default.
57 Ret += "-v64:64:64"; // for v2f32
58 Ret += "-v128:64:64";
59 Ret += "-v256:64:64";
60 Ret += "-v512:64:64";
61 Ret += "-v1024:64:64";
62 Ret += "-v2048:64:64";
63 Ret += "-v4096:64:64";
64 Ret += "-v8192:64:64";
65 Ret += "-v16384:64:64"; // for v256f64
66
67 return Ret;
68}
69
70static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
71 return RM.value_or(Reloc::Static);
72}
73
74namespace {
75class VEELFTargetObjectFile : public TargetLoweringObjectFileELF {
76 void Initialize(MCContext &Ctx, const TargetMachine &TM) override {
78 InitializeELF(TM.Options.UseInitArray);
79 }
80};
81} // namespace
82
83static std::unique_ptr<TargetLoweringObjectFile> createTLOF() {
84 return std::make_unique<VEELFTargetObjectFile>();
85}
86
87/// Create an Aurora VE architecture model
89 StringRef CPU, StringRef FS,
91 std::optional<Reloc::Model> RM,
92 std::optional<CodeModel::Model> CM,
93 CodeGenOptLevel OL, bool JIT)
96 getEffectiveCodeModel(CM, CodeModel::Small), OL),
97 TLOF(createTLOF()),
98 Subtarget(TT, std::string(CPU), std::string(FS), *this) {
100}
101
103
106 return TargetTransformInfo(std::make_unique<VETTIImpl>(this, F));
107}
108
115
116namespace {
117/// VE Code Generator Pass Configuration Options.
118class VEPassConfig : public TargetPassConfig {
119public:
120 VEPassConfig(VETargetMachine &TM, PassManagerBase &PM)
121 : TargetPassConfig(TM, PM) {}
122
123 VETargetMachine &getVETargetMachine() const {
124 return getTM<VETargetMachine>();
125 }
126
127 void addIRPasses() override;
128 bool addInstSelector() override;
129 void addPreEmitPass() override;
130};
131} // namespace
132
134 return new VEPassConfig(*this, PM);
135}
136
137void VEPassConfig::addIRPasses() {
138 // VE requires atomic expand pass.
141}
142
143bool VEPassConfig::addInstSelector() {
144 addPass(createVEISelDag(getVETargetMachine()));
145 return false;
146}
147
148void VEPassConfig::addPreEmitPass() {
149 // LVLGen should be called after scheduling and register allocation
150 addPass(createLVLGenPass());
151}
static std::string computeDataLayout(const Triple &TT, const MCTargetOptions &Options, bool LittleEndian)
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
#define LLVM_ABI
Definition Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
static std::string computeDataLayout()
#define F(x, y, z)
Definition MD5.cpp:55
#define T
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Target-Independent Code Generator Pass Configuration Options pass.
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeVETarget()
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
This file a TargetTransformInfoImplBase conforming object specific to the VE target machine.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
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...
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
void Initialize(MCContext &Ctx, const TargetMachine &TM) override
This method must be called before any actual lowering is done.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
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:47
~VETargetMachine() override
VETargetMachine(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 Aurora VE architecture model.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
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.
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.
void initializeVEDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createLVLGenPass()
Definition LVLGen.cpp:36
FunctionPass * createVEISelDag(VETargetMachine &TM)
createVEISelDag - This pass converts a legalized DAG into a VE-specific DAG, ready for instruction sc...
Target & getTheVETarget()
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.
BumpPtrAllocatorImpl BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
void initializeVEAsmPrinterPass(PassRegistry &)
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:851
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,...