LLVM  8.0.1
Public Types | Public Member Functions | Friends | List of all members
llvm::Target Class Reference

Target - Wrapper for Target specific information. More...

#include "llvm/Support/TargetRegistry.h"

Public Types

using ArchMatchFnTy = bool(*)(Triple::ArchType Arch)
 
using MCAsmInfoCtorFnTy = MCAsmInfo *(*)(const MCRegisterInfo &MRI, const Triple &TT)
 
using MCInstrInfoCtorFnTy = MCInstrInfo *(*)()
 
using MCInstrAnalysisCtorFnTy = MCInstrAnalysis *(*)(const MCInstrInfo *Info)
 
using MCRegInfoCtorFnTy = MCRegisterInfo *(*)(const Triple &TT)
 
using MCSubtargetInfoCtorFnTy = MCSubtargetInfo *(*)(const Triple &TT, StringRef CPU, StringRef Features)
 
using TargetMachineCtorTy = TargetMachine *(*)(const Target &T, const Triple &TT, StringRef CPU, StringRef Features, const TargetOptions &Options, Optional< Reloc::Model > RM, Optional< CodeModel::Model > CM, CodeGenOpt::Level OL, bool JIT)
 
using AsmPrinterCtorTy = AsmPrinter *(*)(TargetMachine &TM, std::unique_ptr< MCStreamer > &&Streamer)
 
using MCAsmBackendCtorTy = MCAsmBackend *(*)(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
 
using MCAsmParserCtorTy = MCTargetAsmParser *(*)(const MCSubtargetInfo &STI, MCAsmParser &P, const MCInstrInfo &MII, const MCTargetOptions &Options)
 
using MCDisassemblerCtorTy = MCDisassembler *(*)(const Target &T, const MCSubtargetInfo &STI, MCContext &Ctx)
 
using MCInstPrinterCtorTy = MCInstPrinter *(*)(const Triple &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
 
using MCCodeEmitterCtorTy = MCCodeEmitter *(*)(const MCInstrInfo &II, const MCRegisterInfo &MRI, MCContext &Ctx)
 
using ELFStreamerCtorTy = MCStreamer *(*)(const Triple &T, MCContext &Ctx, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter, bool RelaxAll)
 
using MachOStreamerCtorTy = MCStreamer *(*)(MCContext &Ctx, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter, bool RelaxAll, bool DWARFMustBeAtTheEnd)
 
using COFFStreamerCtorTy = MCStreamer *(*)(MCContext &Ctx, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter, bool RelaxAll, bool IncrementalLinkerCompatible)
 
using WasmStreamerCtorTy = MCStreamer *(*)(const Triple &T, MCContext &Ctx, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter, bool RelaxAll)
 
using NullTargetStreamerCtorTy = MCTargetStreamer *(*)(MCStreamer &S)
 
using AsmTargetStreamerCtorTy = MCTargetStreamer *(*)(MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *InstPrint, bool IsVerboseAsm)
 
using ObjectTargetStreamerCtorTy = MCTargetStreamer *(*)(MCStreamer &S, const MCSubtargetInfo &STI)
 
using MCRelocationInfoCtorTy = MCRelocationInfo *(*)(const Triple &TT, MCContext &Ctx)
 
using MCSymbolizerCtorTy = MCSymbolizer *(*)(const Triple &TT, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo, MCContext *Ctx, std::unique_ptr< MCRelocationInfo > &&RelInfo)
 

Public Member Functions

 Target ()=default
 
Target Information
const TargetgetNext () const
 
const chargetName () const
 getName - Get the target name. More...
 
const chargetShortDescription () const
 getShortDescription - Get a short description of the target. More...
 
const chargetBackendName () const
 getBackendName - Get the backend name. More...
 
Feature Predicates
bool hasJIT () const
 hasJIT - Check if this targets supports the just-in-time compilation. More...
 
bool hasTargetMachine () const
 hasTargetMachine - Check if this target supports code generation. More...
 
bool hasMCAsmBackend () const
 hasMCAsmBackend - Check if this target supports .o generation. More...
 
bool hasMCAsmParser () const
 hasMCAsmParser - Check if this target supports assembly parsing. More...
 
Feature Constructors
MCAsmInfocreateMCAsmInfo (const MCRegisterInfo &MRI, StringRef TheTriple) const
 createMCAsmInfo - Create a MCAsmInfo implementation for the specified target triple. More...
 
MCInstrInfocreateMCInstrInfo () const
 createMCInstrInfo - Create a MCInstrInfo implementation. More...
 
MCInstrAnalysiscreateMCInstrAnalysis (const MCInstrInfo *Info) const
 createMCInstrAnalysis - Create a MCInstrAnalysis implementation. More...
 
MCRegisterInfocreateMCRegInfo (StringRef TT) const
 createMCRegInfo - Create a MCRegisterInfo implementation. More...
 
MCSubtargetInfocreateMCSubtargetInfo (StringRef TheTriple, StringRef CPU, StringRef Features) const
 createMCSubtargetInfo - Create a MCSubtargetInfo implementation. More...
 
TargetMachinecreateTargetMachine (StringRef TT, StringRef CPU, StringRef Features, const TargetOptions &Options, Optional< Reloc::Model > RM, Optional< CodeModel::Model > CM=None, CodeGenOpt::Level OL=CodeGenOpt::Default, bool JIT=false) const
 createTargetMachine - Create a target specific machine implementation for the specified Triple. More...
 
MCAsmBackendcreateMCAsmBackend (const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) const
 createMCAsmBackend - Create a target specific assembly parser. More...
 
MCTargetAsmParsercreateMCAsmParser (const MCSubtargetInfo &STI, MCAsmParser &Parser, const MCInstrInfo &MII, const MCTargetOptions &Options) const
 createMCAsmParser - Create a target specific assembly parser. More...
 
AsmPrintercreateAsmPrinter (TargetMachine &TM, std::unique_ptr< MCStreamer > &&Streamer) const
 createAsmPrinter - Create a target specific assembly printer pass. More...
 
MCDisassemblercreateMCDisassembler (const MCSubtargetInfo &STI, MCContext &Ctx) const
 
MCInstPrintercreateMCInstPrinter (const Triple &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI) const
 
MCCodeEmittercreateMCCodeEmitter (const MCInstrInfo &II, const MCRegisterInfo &MRI, MCContext &Ctx) const
 createMCCodeEmitter - Create a target specific code emitter. More...
 
MCStreamercreateMCObjectStreamer (const Triple &T, MCContext &Ctx, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter, const MCSubtargetInfo &STI, bool RelaxAll, bool IncrementalLinkerCompatible, bool DWARFMustBeAtTheEnd) const
 Create a target specific MCStreamer. More...
 
MCStreamercreateAsmStreamer (MCContext &Ctx, std::unique_ptr< formatted_raw_ostream > OS, bool IsVerboseAsm, bool UseDwarfDirectory, MCInstPrinter *InstPrint, std::unique_ptr< MCCodeEmitter > &&CE, std::unique_ptr< MCAsmBackend > &&TAB, bool ShowInst) const
 
MCTargetStreamercreateAsmTargetStreamer (MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *InstPrint, bool IsVerboseAsm) const
 
MCStreamercreateNullStreamer (MCContext &Ctx) const
 
MCTargetStreamercreateNullTargetStreamer (MCStreamer &S) const
 
MCRelocationInfocreateMCRelocationInfo (StringRef TT, MCContext &Ctx) const
 createMCRelocationInfo - Create a target specific MCRelocationInfo. More...
 
MCSymbolizercreateMCSymbolizer (StringRef TT, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo, MCContext *Ctx, std::unique_ptr< MCRelocationInfo > &&RelInfo) const
 createMCSymbolizer - Create a target specific MCSymbolizer. More...
 

Friends

struct TargetRegistry
 

Detailed Description

Target - Wrapper for Target specific information.

For registration purposes, this is a POD type so that targets can be registered without the use of static constructors.

Targets should implement a single global instance of this class (which will be zero initialized), and pass that instance to the TargetRegistry as part of their initialization.

Definition at line 120 of file TargetRegistry.h.

Member Typedef Documentation

◆ ArchMatchFnTy

Definition at line 124 of file TargetRegistry.h.

◆ AsmPrinterCtorTy

using llvm::Target::AsmPrinterCtorTy = AsmPrinter *(*)( TargetMachine &TM, std::unique_ptr<MCStreamer> &&Streamer)

Definition at line 142 of file TargetRegistry.h.

◆ AsmTargetStreamerCtorTy

Definition at line 184 of file TargetRegistry.h.

◆ COFFStreamerCtorTy

using llvm::Target::COFFStreamerCtorTy = MCStreamer *(*)(MCContext &Ctx, std::unique_ptr<MCAsmBackend> &&TAB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&Emitter, bool RelaxAll, bool IncrementalLinkerCompatible)

Definition at line 175 of file TargetRegistry.h.

◆ ELFStreamerCtorTy

using llvm::Target::ELFStreamerCtorTy = MCStreamer *(*)(const Triple &T, MCContext &Ctx, std::unique_ptr<MCAsmBackend> &&TAB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&Emitter, bool RelaxAll)

Definition at line 165 of file TargetRegistry.h.

◆ MachOStreamerCtorTy

using llvm::Target::MachOStreamerCtorTy = MCStreamer *(*)(MCContext &Ctx, std::unique_ptr<MCAsmBackend> &&TAB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&Emitter, bool RelaxAll, bool DWARFMustBeAtTheEnd)

Definition at line 170 of file TargetRegistry.h.

◆ MCAsmBackendCtorTy

Definition at line 146 of file TargetRegistry.h.

◆ MCAsmInfoCtorFnTy

Definition at line 127 of file TargetRegistry.h.

◆ MCAsmParserCtorTy

Definition at line 149 of file TargetRegistry.h.

◆ MCCodeEmitterCtorTy

Definition at line 160 of file TargetRegistry.h.

◆ MCDisassemblerCtorTy

Definition at line 152 of file TargetRegistry.h.

◆ MCInstPrinterCtorTy

Definition at line 157 of file TargetRegistry.h.

◆ MCInstrAnalysisCtorFnTy

Definition at line 129 of file TargetRegistry.h.

◆ MCInstrInfoCtorFnTy

Definition at line 128 of file TargetRegistry.h.

◆ MCRegInfoCtorFnTy

Definition at line 130 of file TargetRegistry.h.

◆ MCRelocationInfoCtorTy

Definition at line 188 of file TargetRegistry.h.

◆ MCSubtargetInfoCtorFnTy

Definition at line 133 of file TargetRegistry.h.

◆ MCSymbolizerCtorTy

using llvm::Target::MCSymbolizerCtorTy = MCSymbolizer *(*)( const Triple &TT, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo, MCContext *Ctx, std::unique_ptr<MCRelocationInfo> &&RelInfo)

Definition at line 192 of file TargetRegistry.h.

◆ NullTargetStreamerCtorTy

Definition at line 181 of file TargetRegistry.h.

◆ ObjectTargetStreamerCtorTy

Definition at line 186 of file TargetRegistry.h.

◆ TargetMachineCtorTy

Definition at line 137 of file TargetRegistry.h.

◆ WasmStreamerCtorTy

using llvm::Target::WasmStreamerCtorTy = MCStreamer *(*)(const Triple &T, MCContext &Ctx, std::unique_ptr<MCAsmBackend> &&TAB, std::unique_ptr<MCObjectWriter> &&OW, std::unique_ptr<MCCodeEmitter> &&Emitter, bool RelaxAll)

Definition at line 180 of file TargetRegistry.h.

Constructor & Destructor Documentation

◆ Target()

llvm::Target::Target ( )
default

Member Function Documentation

◆ createAsmPrinter()

AsmPrinter* llvm::Target::createAsmPrinter ( TargetMachine TM,
std::unique_ptr< MCStreamer > &&  Streamer 
) const
inline

createAsmPrinter - Create a target specific assembly printer pass.

This takes ownership of the MCStreamer object.

Definition at line 425 of file TargetRegistry.h.

Referenced by llvm::LLVMTargetMachine::addAsmPrinter(), and llvm::LLVMTargetMachine::addPassesToEmitMC().

◆ createAsmStreamer()

MCStreamer* llvm::Target::createAsmStreamer ( MCContext Ctx,
std::unique_ptr< formatted_raw_ostream OS,
bool  IsVerboseAsm,
bool  UseDwarfDirectory,
MCInstPrinter InstPrint,
std::unique_ptr< MCCodeEmitter > &&  CE,
std::unique_ptr< MCAsmBackend > &&  TAB,
bool  ShowInst 
) const
inline

◆ createAsmTargetStreamer()

MCTargetStreamer* llvm::Target::createAsmTargetStreamer ( MCStreamer S,
formatted_raw_ostream OS,
MCInstPrinter InstPrint,
bool  IsVerboseAsm 
) const
inline

Definition at line 529 of file TargetRegistry.h.

Referenced by createAsmStreamer().

◆ createMCAsmBackend()

MCAsmBackend* llvm::Target::createMCAsmBackend ( const MCSubtargetInfo STI,
const MCRegisterInfo MRI,
const MCTargetOptions Options 
) const
inline

createMCAsmBackend - Create a target specific assembly parser.

Definition at line 402 of file TargetRegistry.h.

Referenced by llvm::LLVMTargetMachine::addAsmPrinter(), and llvm::LLVMTargetMachine::addPassesToEmitMC().

◆ createMCAsmInfo()

MCAsmInfo* llvm::Target::createMCAsmInfo ( const MCRegisterInfo MRI,
StringRef  TheTriple 
) const
inline

createMCAsmInfo - Create a MCAsmInfo implementation for the specified target triple.

Parameters
TheTripleThis argument is used to determine the target machine feature set; it should always be provided. Generally this should be either the target triple from the module, or the target triple of the host if that does not exist.

Definition at line 334 of file TargetRegistry.h.

Referenced by llvm::LLVMTargetMachine::initAsmInfo(), and LLVMCreateDisasmCPUFeatures().

◆ createMCAsmParser()

MCTargetAsmParser* llvm::Target::createMCAsmParser ( const MCSubtargetInfo STI,
MCAsmParser Parser,
const MCInstrInfo MII,
const MCTargetOptions Options 
) const
inline

createMCAsmParser - Create a target specific assembly parser.

Parameters
ParserThe target independent parser implementation to use for parsing and lexing.

Definition at line 414 of file TargetRegistry.h.

Referenced by srcMgrDiagHandler().

◆ createMCCodeEmitter()

MCCodeEmitter* llvm::Target::createMCCodeEmitter ( const MCInstrInfo II,
const MCRegisterInfo MRI,
MCContext Ctx 
) const
inline

createMCCodeEmitter - Create a target specific code emitter.

Definition at line 449 of file TargetRegistry.h.

Referenced by llvm::LLVMTargetMachine::addAsmPrinter(), llvm::LLVMTargetMachine::addPassesToEmitMC(), and llvm::X86AsmPrinter::runOnMachineFunction().

◆ createMCDisassembler()

MCDisassembler* llvm::Target::createMCDisassembler ( const MCSubtargetInfo STI,
MCContext Ctx 
) const
inline

Definition at line 432 of file TargetRegistry.h.

Referenced by LLVMCreateDisasmCPUFeatures().

◆ createMCInstPrinter()

MCInstPrinter* llvm::Target::createMCInstPrinter ( const Triple T,
unsigned  SyntaxVariant,
const MCAsmInfo MAI,
const MCInstrInfo MII,
const MCRegisterInfo MRI 
) const
inline

◆ createMCInstrAnalysis()

MCInstrAnalysis* llvm::Target::createMCInstrAnalysis ( const MCInstrInfo Info) const
inline

createMCInstrAnalysis - Create a MCInstrAnalysis implementation.

Definition at line 351 of file TargetRegistry.h.

◆ createMCInstrInfo()

MCInstrInfo* llvm::Target::createMCInstrInfo ( ) const
inline

◆ createMCObjectStreamer()

MCStreamer* llvm::Target::createMCObjectStreamer ( const Triple T,
MCContext Ctx,
std::unique_ptr< MCAsmBackend > &&  TAB,
std::unique_ptr< MCObjectWriter > &&  OW,
std::unique_ptr< MCCodeEmitter > &&  Emitter,
const MCSubtargetInfo STI,
bool  RelaxAll,
bool  IncrementalLinkerCompatible,
bool  DWARFMustBeAtTheEnd 
) const
inline

Create a target specific MCStreamer.

Parameters
TThe target triple.
CtxThe target context.
TABThe target assembler backend object. Takes ownership.
OWThe stream object.
EmitterThe target independent assembler object.Takes ownership.
RelaxAllRelax all fixups?

Definition at line 465 of file TargetRegistry.h.

References assert(), llvm::Triple::COFF, llvm::createELFStreamer(), llvm::createMachOStreamer(), llvm::createWasmStreamer(), llvm::Triple::ELF, llvm::Triple::getObjectFormat(), llvm::Triple::isOSWindows(), llvm_unreachable, llvm::Triple::MachO, and llvm::Triple::Wasm.

◆ createMCRegInfo()

MCRegisterInfo* llvm::Target::createMCRegInfo ( StringRef  TT) const
inline

createMCRegInfo - Create a MCRegisterInfo implementation.

Definition at line 359 of file TargetRegistry.h.

Referenced by llvm::LLVMTargetMachine::initAsmInfo(), LLVMCreateDisasmCPUFeatures(), and llvm::DWARFContext::loadRegisterInfo().

◆ createMCRelocationInfo()

MCRelocationInfo* llvm::Target::createMCRelocationInfo ( StringRef  TT,
MCContext Ctx 
) const
inline

createMCRelocationInfo - Create a target specific MCRelocationInfo.

Parameters
TTThe target triple.
CtxThe target context.

Definition at line 554 of file TargetRegistry.h.

References llvm::createMCRelocationInfo().

Referenced by LLVMCreateDisasmCPUFeatures().

◆ createMCSubtargetInfo()

MCSubtargetInfo* llvm::Target::createMCSubtargetInfo ( StringRef  TheTriple,
StringRef  CPU,
StringRef  Features 
) const
inline

createMCSubtargetInfo - Create a MCSubtargetInfo implementation.

Parameters
TheTripleThis argument is used to determine the target machine feature set; it should always be provided. Generally this should be either the target triple from the module, or the target triple of the host if that does not exist.
CPUThis specifies the name of the target CPU.
FeaturesThis specifies the string representation of the additional target features.

Definition at line 374 of file TargetRegistry.h.

Referenced by llvm::AsmPrinter::doInitialization(), llvm::MipsAsmPrinter::EmitStartOfAsmFile(), llvm::LLVMTargetMachine::initAsmInfo(), and LLVMCreateDisasmCPUFeatures().

◆ createMCSymbolizer()

MCSymbolizer* llvm::Target::createMCSymbolizer ( StringRef  TT,
LLVMOpInfoCallback  GetOpInfo,
LLVMSymbolLookupCallback  SymbolLookUp,
void *  DisInfo,
MCContext Ctx,
std::unique_ptr< MCRelocationInfo > &&  RelInfo 
) const
inline

createMCSymbolizer - Create a target specific MCSymbolizer.

Parameters
TTThe target triple.
GetOpInfoThe function to get the symbolic information for operands.
SymbolLookUpThe function to lookup a symbol name.
DisInfoThe pointer to the block of symbolic information for above call back.
CtxThe target context.
RelInfoThe relocation information for this target. Takes ownership.

Definition at line 574 of file TargetRegistry.h.

References llvm::createMCSymbolizer().

Referenced by LLVMCreateDisasmCPUFeatures().

◆ createNullStreamer()

MCStreamer* llvm::Target::createNullStreamer ( MCContext Ctx) const
inline

Definition at line 538 of file TargetRegistry.h.

References llvm::createNullStreamer(), and createNullTargetStreamer().

◆ createNullTargetStreamer()

MCTargetStreamer* llvm::Target::createNullTargetStreamer ( MCStreamer S) const
inline

Definition at line 544 of file TargetRegistry.h.

Referenced by createNullStreamer().

◆ createTargetMachine()

TargetMachine* llvm::Target::createTargetMachine ( StringRef  TT,
StringRef  CPU,
StringRef  Features,
const TargetOptions Options,
Optional< Reloc::Model RM,
Optional< CodeModel::Model CM = None,
CodeGenOpt::Level  OL = CodeGenOpt::Default,
bool  JIT = false 
) const
inline

createTargetMachine - Create a target specific machine implementation for the specified Triple.

Parameters
TTThis argument is used to determine the target machine feature set; it should always be provided. Generally this should be either the target triple from the module, or the target triple of the host if that does not exist.

Definition at line 388 of file TargetRegistry.h.

References llvm::EngineKind::JIT.

Referenced by llvm::lto::Config::addSaveTemps(), llvm::LTOCodeGenerator::compile(), llvm::TargetMachineBuilder::create(), parseBitcodeFileImpl(), and llvm::EngineBuilder::selectTarget().

◆ getBackendName()

const char* llvm::Target::getBackendName ( ) const
inline

getBackendName - Get the backend name.

Definition at line 305 of file TargetRegistry.h.

◆ getName()

const char* llvm::Target::getName ( ) const
inline

◆ getNext()

const Target* llvm::Target::getNext ( ) const
inline

Definition at line 296 of file TargetRegistry.h.

Referenced by llvm::TargetRegistry::iterator::operator++().

◆ getShortDescription()

const char* llvm::Target::getShortDescription ( ) const
inline

getShortDescription - Get a short description of the target.

Definition at line 302 of file TargetRegistry.h.

◆ hasJIT()

bool llvm::Target::hasJIT ( ) const
inline

hasJIT - Check if this targets supports the just-in-time compilation.

Definition at line 312 of file TargetRegistry.h.

Referenced by llvm::EngineBuilder::create().

◆ hasMCAsmBackend()

bool llvm::Target::hasMCAsmBackend ( ) const
inline

hasMCAsmBackend - Check if this target supports .o generation.

Definition at line 318 of file TargetRegistry.h.

◆ hasMCAsmParser()

bool llvm::Target::hasMCAsmParser ( ) const
inline

hasMCAsmParser - Check if this target supports assembly parsing.

Definition at line 321 of file TargetRegistry.h.

◆ hasTargetMachine()

bool llvm::Target::hasTargetMachine ( ) const
inline

hasTargetMachine - Check if this target supports code generation.

Definition at line 315 of file TargetRegistry.h.

Friends And Related Function Documentation

◆ TargetRegistry

friend struct TargetRegistry
friend

Definition at line 122 of file TargetRegistry.h.


The documentation for this class was generated from the following file: