Home
last modified time | relevance | path

Searched refs:LLVMTargetMachineRef (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DTargetMachine.h28 typedef struct LLVMOpaqueTargetMachine *LLVMTargetMachineRef; typedef
96 LLVMTargetMachineRef LLVMCreateTargetMachine(LLVMTargetRef T,
102 void LLVMDisposeTargetMachine(LLVMTargetMachineRef T);
105 LLVMTargetRef LLVMGetTargetMachineTarget(LLVMTargetMachineRef T);
110 char *LLVMGetTargetMachineTriple(LLVMTargetMachineRef T);
115 char *LLVMGetTargetMachineCPU(LLVMTargetMachineRef T);
120 char *LLVMGetTargetMachineFeatureString(LLVMTargetMachineRef T);
123 LLVMTargetDataRef LLVMCreateTargetDataLayout(LLVMTargetMachineRef T);
126 void LLVMSetTargetMachineAsmVerbosity(LLVMTargetMachineRef T,
132 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
[all …]
DOrcBindings.h48 LLVMOrcJITStackRef LLVMOrcCreateInstance(LLVMTargetMachineRef TM);
DExecutionEngine.h140 LLVMTargetMachineRef
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTargetMachineC.cpp34 static TargetMachine *unwrap(LLVMTargetMachineRef P) { in unwrap()
40 static LLVMTargetMachineRef wrap(const TargetMachine *P) { in wrap()
41 return reinterpret_cast<LLVMTargetMachineRef>(const_cast<TargetMachine *>(P)); in wrap()
102 LLVMTargetMachineRef LLVMCreateTargetMachine(LLVMTargetRef T, in LLVMCreateTargetMachine()
154 void LLVMDisposeTargetMachine(LLVMTargetMachineRef T) { delete unwrap(T); } in LLVMDisposeTargetMachine()
156 LLVMTargetRef LLVMGetTargetMachineTarget(LLVMTargetMachineRef T) { in LLVMGetTargetMachineTarget()
161 char* LLVMGetTargetMachineTriple(LLVMTargetMachineRef T) { in LLVMGetTargetMachineTriple()
166 char* LLVMGetTargetMachineCPU(LLVMTargetMachineRef T) { in LLVMGetTargetMachineCPU()
171 char* LLVMGetTargetMachineFeatureString(LLVMTargetMachineRef T) { in LLVMGetTargetMachineFeatureString()
176 void LLVMSetTargetMachineAsmVerbosity(LLVMTargetMachineRef T, in LLVMSetTargetMachineAsmVerbosity()
[all …]
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_util.h82 LLVMTargetMachineRef tm;
88 LLVMTargetMachineRef low_opt_tm; /* uses -O1 instead of -O2 */
94 bool ac_is_llvm_processor_supported(LLVMTargetMachineRef tm, const char *processor);
103 LLVMModuleRef ac_create_module(LLVMTargetMachineRef tm, LLVMContextRef ctx);
128 struct ac_compiler_passes *ac_create_llvm_passes(LLVMTargetMachineRef tm);
Dac_llvm_helper.cpp48 bool ac_is_llvm_processor_supported(LLVMTargetMachineRef tm, const char *processor) in ac_is_llvm_processor_supported()
79 LLVMModuleRef ac_create_module(LLVMTargetMachineRef tm, LLVMContextRef ctx) in ac_create_module()
226 struct ac_compiler_passes *ac_create_llvm_passes(LLVMTargetMachineRef tm) in ac_create_llvm_passes()
Dac_llvm_util.c193 static LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, in ac_create_target_machine()
203 LLVMTargetMachineRef tm = in ac_create_target_machine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DExecutionEngineBindings.cpp33 static LLVMTargetMachineRef wrap(const TargetMachine *P) { in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
35 reinterpret_cast<LLVMTargetMachineRef>(const_cast<TargetMachine*>(P)); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
287 LLVMTargetMachineRef
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcCBindings.cpp15 LLVMOrcJITStackRef LLVMOrcCreateInstance(LLVMTargetMachineRef TM) { in LLVMOrcCreateInstance()
DOrcCBindingsStack.h47 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(TargetMachine, LLVMTargetMachineRef) in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
/third_party/mesa3d/docs/relnotes/
D10.5.3.rst92 - radeonsi: Cache LLVMTargetMachineRef in context instead of in screen
/third_party/mesa3d/src/amd/compiler/
Daco_print_asm.cpp423 LLVMTargetMachineRef tm = LLVMCreateTargetMachine( in check_print_asm_support()
/third_party/flutter/skia/src/sksl/
DSkSLJIT.cpp1892 LLVMTargetMachineRef targetMachine = LLVMCreateTargetMachine(target, in optimize()