27#define DEBUG_TYPE "ve"
40 std::string Ret =
"e";
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";
76 void Initialize(MCContext &Ctx,
const TargetMachine &TM)
override {
78 InitializeELF(
TM.Options.UseInitArray);
83static std::unique_ptr<TargetLoweringObjectFile>
createTLOF() {
84 return std::make_unique<VEELFTargetObjectFile>();
91 std::optional<Reloc::Model>
RM,
92 std::optional<CodeModel::Model> CM,
98 Subtarget(TT,
std::string(CPU),
std::string(FS), *this) {
127 void addIRPasses()
override;
128 bool addInstSelector()
override;
129 void addPreEmitPass()
override;
134 return new VEPassConfig(*
this, PM);
137void VEPassConfig::addIRPasses() {
143bool VEPassConfig::addInstSelector() {
148void VEPassConfig::addPreEmitPass() {
static std::string computeDataLayout(const Triple &TT, const MCTargetOptions &Options, bool LittleEndian)
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
#define LLVM_EXTERNAL_VISIBILITY
static std::string computeDataLayout()
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()
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.
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
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.
~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()
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.
CodeGenOptLevel
Code generation optimization level.
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.
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,...