|
LLVMTargetRef | LLVMGetFirstTarget (void) |
|
LLVMTargetRef | LLVMGetNextTarget (LLVMTargetRef T) |
|
LLVMTargetRef | LLVMGetTargetFromName (const char *Name) |
|
LLVMBool | LLVMGetTargetFromTriple (const char *Triple, LLVMTargetRef *T, char **ErrorMessage) |
|
const char * | LLVMGetTargetName (LLVMTargetRef T) |
|
const char * | LLVMGetTargetDescription (LLVMTargetRef T) |
|
LLVMBool | LLVMTargetHasJIT (LLVMTargetRef T) |
|
LLVMBool | LLVMTargetHasTargetMachine (LLVMTargetRef T) |
|
LLVMBool | LLVMTargetHasAsmBackend (LLVMTargetRef T) |
|
LLVMTargetMachineOptionsRef | LLVMCreateTargetMachineOptions (void) |
|
void | LLVMDisposeTargetMachineOptions (LLVMTargetMachineOptionsRef Options) |
|
void | LLVMTargetMachineOptionsSetCPU (LLVMTargetMachineOptionsRef Options, const char *CPU) |
|
void | LLVMTargetMachineOptionsSetFeatures (LLVMTargetMachineOptionsRef Options, const char *Features) |
|
void | LLVMTargetMachineOptionsSetABI (LLVMTargetMachineOptionsRef Options, const char *ABI) |
|
void | LLVMTargetMachineOptionsSetCodeGenOptLevel (LLVMTargetMachineOptionsRef Options, LLVMCodeGenOptLevel Level) |
|
void | LLVMTargetMachineOptionsSetRelocMode (LLVMTargetMachineOptionsRef Options, LLVMRelocMode Reloc) |
|
void | LLVMTargetMachineOptionsSetCodeModel (LLVMTargetMachineOptionsRef Options, LLVMCodeModel CodeModel) |
|
LLVMTargetMachineRef | LLVMCreateTargetMachineWithOptions (LLVMTargetRef T, const char *Triple, LLVMTargetMachineOptionsRef Options) |
|
LLVMTargetMachineRef | LLVMCreateTargetMachine (LLVMTargetRef T, const char *Triple, const char *CPU, const char *Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) |
|
void | LLVMDisposeTargetMachine (LLVMTargetMachineRef T) |
|
LLVMTargetRef | LLVMGetTargetMachineTarget (LLVMTargetMachineRef T) |
|
char * | LLVMGetTargetMachineTriple (LLVMTargetMachineRef T) |
|
char * | LLVMGetTargetMachineCPU (LLVMTargetMachineRef T) |
|
char * | LLVMGetTargetMachineFeatureString (LLVMTargetMachineRef T) |
|
LLVMTargetDataRef | LLVMCreateTargetDataLayout (LLVMTargetMachineRef T) |
|
void | LLVMSetTargetMachineAsmVerbosity (LLVMTargetMachineRef T, LLVMBool VerboseAsm) |
|
void | LLVMSetTargetMachineFastISel (LLVMTargetMachineRef T, LLVMBool Enable) |
|
void | LLVMSetTargetMachineGlobalISel (LLVMTargetMachineRef T, LLVMBool Enable) |
|
void | LLVMSetTargetMachineGlobalISelAbort (LLVMTargetMachineRef T, LLVMGlobalISelAbortMode Mode) |
|
void | LLVMSetTargetMachineMachineOutliner (LLVMTargetMachineRef T, LLVMBool Enable) |
|
LLVMBool | LLVMTargetMachineEmitToFile (LLVMTargetMachineRef T, LLVMModuleRef M, const char *Filename, LLVMCodeGenFileType codegen, char **ErrorMessage) |
|
LLVMBool | LLVMTargetMachineEmitToMemoryBuffer (LLVMTargetMachineRef T, LLVMModuleRef M, LLVMCodeGenFileType codegen, char **ErrorMessage, LLVMMemoryBufferRef *OutMemBuf) |
|
char * | LLVMGetDefaultTargetTriple (void) |
|
char * | LLVMNormalizeTargetTriple (const char *triple) |
|
char * | LLVMGetHostCPUName (void) |
|
char * | LLVMGetHostCPUFeatures (void) |
|
void | LLVMAddAnalysisPasses (LLVMTargetMachineRef T, LLVMPassManagerRef PM) |
|