LLVM
8.0.1
|
#include "Target/ARM/ARMTargetMachine.h"
Public Types | |
enum | ARMABI { ARM_ABI_UNKNOWN, ARM_ABI_APCS, ARM_ABI_AAPCS, ARM_ABI_AAPCS16 } |
Public Types inherited from llvm::TargetMachine | |
enum | CodeGenFileType { CGFT_AssemblyFile, CGFT_ObjectFile, CGFT_Null } |
These enums are meant to be passed into addPassesToEmitFile to indicate what type of file to emit, and returned by it to indicate what type of file could actually be made. More... | |
Public Member Functions | |
ARMBaseTargetMachine (const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional< Reloc::Model > RM, Optional< CodeModel::Model > CM, CodeGenOpt::Level OL, bool isLittle) | |
Create an ARM architecture model. More... | |
~ARMBaseTargetMachine () override | |
const ARMSubtarget * | getSubtargetImpl (const Function &F) const override |
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInfo-derived member variable. More... | |
const ARMSubtarget * | getSubtargetImpl () const =delete |
bool | isLittleEndian () const |
TargetTransformInfo | getTargetTransformInfo (const Function &F) override |
Get a TargetTransformInfo implementation for the target. More... | |
TargetPassConfig * | createPassConfig (PassManagerBase &PM) override |
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of CodeGen passes. More... | |
TargetLoweringObjectFile * | getObjFileLowering () const override |
bool | isTargetHardFloat () const |
Public Member Functions inherited from llvm::LLVMTargetMachine | |
bool | addPassesToEmitFile (PassManagerBase &PM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, bool DisableVerify=true, MachineModuleInfo *MMI=nullptr) override |
Add passes to the specified pass manager to get the specified file emitted. More... | |
bool | addPassesToEmitMC (PassManagerBase &PM, MCContext *&Ctx, raw_pwrite_stream &Out, bool DisableVerify=true) override |
Add passes to the specified pass manager to get machine code emitted with the MCJIT. More... | |
virtual bool | isMachineVerifierClean () const |
Returns true if the target is expected to pass all machine verifier checks. More... | |
bool | addAsmPrinter (PassManagerBase &PM, raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileTYpe, MCContext &Context) |
Adds an AsmPrinter pass to the pipeline that prints assembly or machine code from the MI representation. More... | |
virtual bool | usesPhysRegsForPEI () const |
True if the target uses physical regs at Prolog/Epilog insertion time. More... | |
virtual bool | useIPRA () const |
True if the target wants to use interprocedural register allocation by default. More... | |
Public Member Functions inherited from llvm::TargetMachine | |
TargetMachine (const TargetMachine &)=delete | |
void | operator= (const TargetMachine &)=delete |
virtual | ~TargetMachine () |
const Target & | getTarget () const |
const Triple & | getTargetTriple () const |
StringRef | getTargetCPU () const |
StringRef | getTargetFeatureString () const |
template<typename STC > | |
const STC & | getSubtarget (const Function &F) const |
This method returns a pointer to the specified type of TargetSubtargetInfo. More... | |
const DataLayout | createDataLayout () const |
Create a DataLayout. More... | |
bool | isCompatibleDataLayout (const DataLayout &Candidate) const |
Test if a DataLayout if compatible with the CodeGen for this target. More... | |
unsigned | getPointerSize (unsigned AS) const |
Get the pointer size for this target. More... | |
unsigned | getPointerSizeInBits (unsigned AS) const |
unsigned | getProgramPointerSize () const |
unsigned | getAllocaPointerSize () const |
void | resetTargetOptions (const Function &F) const |
Reset the target options based on the function's attributes. More... | |
const MCAsmInfo * | getMCAsmInfo () const |
Return target specific asm information. More... | |
const MCRegisterInfo * | getMCRegisterInfo () const |
const MCInstrInfo * | getMCInstrInfo () const |
const MCSubtargetInfo * | getMCSubtargetInfo () const |
virtual const TargetIntrinsicInfo * | getIntrinsicInfo () const |
If intrinsic information is available, return it. If not, return null. More... | |
bool | requiresStructuredCFG () const |
void | setRequiresStructuredCFG (bool Value) |
Reloc::Model | getRelocationModel () const |
Returns the code generation relocation model. More... | |
CodeModel::Model | getCodeModel () const |
Returns the code model. More... | |
bool | isPositionIndependent () const |
bool | shouldAssumeDSOLocal (const Module &M, const GlobalValue *GV) const |
bool | useEmulatedTLS () const |
Returns true if this target uses emulated TLS. More... | |
TLSModel::Model | getTLSModel (const GlobalValue *GV) const |
Returns the TLS model which should be used for the given global variable. More... | |
CodeGenOpt::Level | getOptLevel () const |
Returns the optimization level: None, Less, Default, or Aggressive. More... | |
void | setOptLevel (CodeGenOpt::Level Level) |
Overrides the optimization level. More... | |
void | setFastISel (bool Enable) |
bool | getO0WantsFastISel () |
void | setO0WantsFastISel (bool Enable) |
void | setGlobalISel (bool Enable) |
void | setGlobalISelAbort (GlobalISelAbortMode Mode) |
void | setMachineOutliner (bool Enable) |
void | setSupportsDefaultOutlining (bool Enable) |
bool | shouldPrintMachineCode () const |
bool | getUniqueSectionNames () const |
bool | getDataSections () const |
Return true if data objects should be emitted into their own section, corresponds to -fdata-sections. More... | |
bool | getFunctionSections () const |
Return true if functions should be emitted into their own section, corresponding to -ffunction-sections. More... | |
TargetIRAnalysis | getTargetIRAnalysis () |
Get a TargetIRAnalysis appropriate for the target. More... | |
virtual void | adjustPassManager (PassManagerBuilder &) |
Allow the target to modify the pass manager, e.g. More... | |
virtual bool | targetSchedulesPostRAScheduling () const |
True if subtarget inserts the final scheduling pass on its own. More... | |
void | getNameWithPrefix (SmallVectorImpl< char > &Name, const GlobalValue *GV, Mangler &Mang, bool MayAlwaysUsePrivate=false) const |
MCSymbol * | getSymbol (const GlobalValue *GV) const |
Public Attributes | |
enum llvm::ARMBaseTargetMachine::ARMABI | TargetABI |
Public Attributes inherited from llvm::TargetMachine | |
const TargetOptions | DefaultOptions |
TargetOptions | Options |
Protected Attributes | |
std::unique_ptr< TargetLoweringObjectFile > | TLOF |
bool | isLittle |
StringMap< std::unique_ptr< ARMSubtarget > > | SubtargetMap |
Protected Attributes inherited from llvm::TargetMachine | |
const Target & | TheTarget |
The Target that this machine was created for. More... | |
const DataLayout | DL |
DataLayout for the target: keep ABI type size and alignment. More... | |
Triple | TargetTriple |
Triple string, CPU name, and target feature strings the TargetMachine instance is created with. More... | |
std::string | TargetCPU |
std::string | TargetFS |
Reloc::Model | RM = Reloc::Static |
CodeModel::Model | CMModel = CodeModel::Small |
CodeGenOpt::Level | OptLevel = CodeGenOpt::Default |
std::unique_ptr< const MCAsmInfo > | AsmInfo |
Contains target specific asm information. More... | |
std::unique_ptr< const MCRegisterInfo > | MRI |
std::unique_ptr< const MCInstrInfo > | MII |
std::unique_ptr< const MCSubtargetInfo > | STI |
unsigned | RequireStructuredCFG: 1 |
unsigned | O0WantsFastISel: 1 |
Additional Inherited Members | |
Protected Member Functions inherited from llvm::LLVMTargetMachine | |
LLVMTargetMachine (const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) | |
void | initAsmInfo () |
Protected Member Functions inherited from llvm::TargetMachine | |
TargetMachine (const Target &T, StringRef DataLayoutString, const Triple &TargetTriple, StringRef CPU, StringRef FS, const TargetOptions &Options) | |
Definition at line 28 of file ARMTargetMachine.h.
Enumerator | |
---|---|
ARM_ABI_UNKNOWN | |
ARM_ABI_APCS | |
ARM_ABI_AAPCS | |
ARM_ABI_AAPCS16 |
Definition at line 30 of file ARMTargetMachine.h.
ARMBaseTargetMachine::ARMBaseTargetMachine | ( | const Target & | T, |
const Triple & | TT, | ||
StringRef | CPU, | ||
StringRef | FS, | ||
const TargetOptions & | Options, | ||
Optional< Reloc::Model > | RM, | ||
Optional< CodeModel::Model > | CM, | ||
CodeGenOpt::Level | OL, | ||
bool | isLittle | ||
) |
Create an ARM architecture model.
Definition at line 199 of file ARMTargetMachine.cpp.
References llvm::FloatABI::Default, llvm::Default, llvm::EABI5, llvm::TargetOptions::EABIVersion, llvm::TargetOptions::FloatABIType, llvm::Triple::getEnvironment(), llvm::GNU, llvm::Triple::GNUEABI, llvm::Triple::GNUEABIHF, llvm::FloatABI::Hard, llvm::LLVMTargetMachine::initAsmInfo(), llvm::Triple::isOSBinFormatMachO(), llvm::Triple::isOSDarwin(), llvm::Triple::isOSWindows(), isTargetHardFloat(), llvm::Triple::MuslEABI, llvm::Triple::MuslEABIHF, llvm::TargetOptions::NoTrapAfterNoreturn, llvm::FloatABI::Soft, llvm::TargetMachine::TargetTriple, llvm::TargetOptions::TrapUnreachable, llvm::Unknown, and ~ARMBaseTargetMachine().
|
overridedefault |
Referenced by ARMBaseTargetMachine().
|
overridevirtual |
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of CodeGen passes.
createPassConfig - Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of CodeGen passes.
Targets may override this to extend TargetPassConfig.
Reimplemented from llvm::LLVMTargetMachine.
Definition at line 374 of file ARMTargetMachine.cpp.
References llvm::TargetPassConfig::addCodeGenPrepare(), llvm::TargetPassConfig::addIRPasses(), llvm::CodeGenOpt::Aggressive, llvm::cl::BOU_TRUE, llvm::cl::BOU_UNSET, llvm::createA15SDOptimizerPass(), llvm::createARMCodeGenPreparePass(), llvm::createARMConstantIslandPass(), llvm::createARMExpandPseudoPass(), llvm::createARMISelDag(), llvm::createARMLoadStoreOptimizationPass(), llvm::createARMOptimizeBarriersPass(), llvm::createARMParallelDSPPass(), llvm::createAtomicExpandPass(), llvm::createBreakFalseDeps(), llvm::createCFGSimplificationPass(), llvm::createGlobalMergePass(), llvm::createIfConverter(), llvm::createInterleavedAccessPass(), llvm::createLowerAtomicPass(), llvm::createMLxExpansionPass(), llvm::createThumb2ITBlockPass(), llvm::createThumb2SizeReductionPass(), llvm::createUnpackMachineBundles(), DisableA15SDOptimization, EnableARMLoadStoreOpt, EnableAtomicTidy, EnableGlobalMerge, F(), llvm::TargetMachine::getOptLevel(), llvm::MachineFunction::getSubtarget(), llvm::CodeGenOpt::None, llvm::ThreadModel::Single, llvm::ARM_MB::ST, and llvm::SystemZISD::TM.
Referenced by isLittleEndian().
|
inlineoverridevirtual |
Reimplemented from llvm::TargetMachine.
Definition at line 61 of file ARMTargetMachine.h.
|
overridevirtual |
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInfo-derived member variable.
Reimplemented from llvm::TargetMachine.
Definition at line 244 of file ARMTargetMachine.cpp.
References llvm::LLVMContext::emitError(), llvm::StringRef::empty(), llvm::Function::getContext(), llvm::Function::getFnAttribute(), llvm::Value::getName(), llvm::Attribute::getValueAsString(), llvm::Attribute::hasAttribute(), I, isLittle, llvm::Attribute::None, llvm::TargetMachine::resetTargetOptions(), llvm::StringRef::str(), SubtargetMap, llvm::TargetMachine::TargetCPU, llvm::TargetMachine::TargetFS, and llvm::TargetMachine::TargetTriple.
|
delete |
|
overridevirtual |
Get a TargetTransformInfo implementation for the target.
The TTI returned uses the common code generator to answer queries about the IR.
Reimplemented from llvm::LLVMTargetMachine.
Definition at line 284 of file ARMTargetMachine.cpp.
Referenced by isLittleEndian().
|
inline |
Definition at line 54 of file ARMTargetMachine.h.
References createPassConfig(), F(), getTargetTransformInfo(), and isLittle.
Referenced by checkFunctionsAttributeConsistency(), and llvm::ARMAsmPrinter::PrintAsmOperand().
|
inline |
Definition at line 65 of file ARMTargetMachine.h.
References ARM_ABI_AAPCS16, llvm::Triple::ARMSubArch_v7em, llvm::Triple::EABIHF, llvm::Triple::getEnvironment(), llvm::Triple::getSubArch(), llvm::Triple::GNUEABIHF, llvm::Triple::isOSBinFormatMachO(), llvm::Triple::isOSWindows(), llvm::Triple::MuslEABIHF, and llvm::TargetMachine::TargetTriple.
Referenced by ARMBaseTargetMachine(), and llvm::ARMSubtarget::isTargetHardFloat().
|
protected |
Definition at line 39 of file ARMTargetMachine.h.
Referenced by getSubtargetImpl(), and isLittleEndian().
|
mutableprotected |
Definition at line 40 of file ARMTargetMachine.h.
Referenced by getSubtargetImpl().
enum llvm::ARMBaseTargetMachine::ARMABI llvm::ARMBaseTargetMachine::TargetABI |
|
protected |
Definition at line 38 of file ARMTargetMachine.h.