HomeSort by relevance Sort by last modified time
    Searched refs:LLVMTargetRef (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm-c/
TargetMachine.h 29 typedef struct LLVMTarget *LLVMTargetRef;
60 LLVMTargetRef LLVMGetFirstTarget();
62 LLVMTargetRef LLVMGetNextTarget(LLVMTargetRef T);
66 const char *LLVMGetTargetName(LLVMTargetRef T);
69 const char *LLVMGetTargetDescription(LLVMTargetRef T);
72 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T);
75 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T);
78 LLVMBool LLVMTargetHasAsmBackend(LLVMTargetRef T);
82 LLVMTargetMachineRef LLVMCreateTargetMachine(LLVMTargetRef T, char *Triple
    [all...]
  /external/llvm/lib/Target/
TargetMachineC.cpp 51 inline Target *unwrap(LLVMTargetRef P) {
58 inline LLVMTargetRef wrap(const Target * P) {
59 return reinterpret_cast<LLVMTargetRef>(const_cast<Target*>(P));
62 LLVMTargetRef LLVMGetFirstTarget() {
66 LLVMTargetRef LLVMGetNextTarget(LLVMTargetRef T) {
70 const char * LLVMGetTargetName(LLVMTargetRef T) {
74 const char * LLVMGetTargetDescription(LLVMTargetRef T) {
78 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T) {
82 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T)
    [all...]

Completed in 516 milliseconds