1 //===- ARCTargetMachine.cpp - Define TargetMachine for ARC ------*- C++ -*-===// 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 "ARCTargetMachine.h" 13 #include "ARC.h" 14 #include "ARCMachineFunctionInfo.h" 15 #include "ARCTargetTransformInfo.h" 16 #include "TargetInfo/ARCTargetInfo.h" 17 #include "llvm/CodeGen/Passes.h" 18 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" 19 #include "llvm/CodeGen/TargetPassConfig.h" 20 #include "llvm/MC/TargetRegistry.h" 21 #include <optional> 22 23 using namespace llvm; 24 25 static Reloc::Model getRelocModel(std::optional<Reloc::Model> RM) { 26 return RM.value_or(Reloc::Static); 27 } 28 29 /// ARCTargetMachine ctor - Create an ILP32 architecture model 30 ARCTargetMachine::ARCTargetMachine(const Target &T, const Triple &TT, 31 StringRef CPU, StringRef FS, 32 const TargetOptions &Options, 33 std::optional<Reloc::Model> RM, 34 std::optional<CodeModel::Model> CM, 35 CodeGenOpt::Level OL, bool JIT) 36 : LLVMTargetMachine(T, 37 "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-" 38 "f32:32:32-i64:32-f64:32-a:0:32-n32", 39 TT, CPU, FS, Options, getRelocModel(RM), 40 getEffectiveCodeModel(CM, CodeModel::Small), OL), 41 TLOF(std::make_unique<TargetLoweringObjectFileELF>()), 42 Subtarget(TT, std::string(CPU), std::string(FS), *this) { 43 initAsmInfo(); 44 } 45 46 ARCTargetMachine::~ARCTargetMachine() = default; 47 48 namespace { 49 50 /// ARC Code Generator Pass Configuration Options. 51 class ARCPassConfig : public TargetPassConfig { 52 public: 53 ARCPassConfig(ARCTargetMachine &TM, PassManagerBase &PM) 54 : TargetPassConfig(TM, PM) {} 55 56 ARCTargetMachine &getARCTargetMachine() const { 57 return getTM<ARCTargetMachine>(); 58 } 59 60 bool addInstSelector() override; 61 void addPreEmitPass() override; 62 void addPreRegAlloc() override; 63 }; 64 65 } // end anonymous namespace 66 67 TargetPassConfig *ARCTargetMachine::createPassConfig(PassManagerBase &PM) { 68 return new ARCPassConfig(*this, PM); 69 } 70 71 bool ARCPassConfig::addInstSelector() { 72 addPass(createARCISelDag(getARCTargetMachine(), getOptLevel())); 73 return false; 74 } 75 76 void ARCPassConfig::addPreEmitPass() { addPass(createARCBranchFinalizePass()); } 77 78 void ARCPassConfig::addPreRegAlloc() { 79 addPass(createARCExpandPseudosPass()); 80 addPass(createARCOptAddrMode()); 81 } 82 83 MachineFunctionInfo *ARCTargetMachine::createMachineFunctionInfo( 84 BumpPtrAllocator &Allocator, const Function &F, 85 const TargetSubtargetInfo *STI) const { 86 return ARCFunctionInfo::create<ARCFunctionInfo>(Allocator, F, STI); 87 } 88 89 // Force static initialization. 90 extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeARCTarget() { 91 RegisterTargetMachine<ARCTargetMachine> X(getTheARCTarget()); 92 PassRegistry &PR = *PassRegistry::getPassRegistry(); 93 initializeARCDAGToDAGISelPass(PR); 94 } 95 96 TargetTransformInfo 97 ARCTargetMachine::getTargetTransformInfo(const Function &F) const { 98 return TargetTransformInfo(ARCTTIImpl(this, F)); 99 } 100