Home
last modified time | relevance | path

Searched refs:LLVMModuleRef (Results 1 – 16 of 16) sorted by relevance

/external/llvm/lib/ExecutionEngine/
DExecutionEngineBindings.cpp91 LLVMModuleRef M, in LLVMCreateExecutionEngineForModule()
106 LLVMModuleRef M, in LLVMCreateInterpreterForModule()
121 LLVMModuleRef M, in LLVMCreateJITCompilerForModule()
142 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateExecutionEngine()
151 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateInterpreter()
161 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateJITCompiler()
205 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
211 LLVMAddModule(EE, reinterpret_cast<LLVMModuleRef>(MP)); in LLVMAddModuleProvider()
214 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
215 LLVMModuleRef *OutMod, char **OutError) { in LLVMRemoveModule()
[all …]
/external/llvm/include/llvm-c/
DExecutionEngine.h59 LLVMModuleRef M,
63 LLVMModuleRef M,
67 LLVMModuleRef M,
103 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
108 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
109 LLVMModuleRef *OutMod, char **OutError);
114 LLVMModuleRef *OutMod, char **OutError);
DBitReader.h33 LLVMModuleRef *OutModule, char **OutMessage);
37 LLVMModuleRef *OutModule, char **OutMessage);
44 LLVMModuleRef *OutM,
47 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
DBitWriter.h32 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
35 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
40 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
DCore.h63 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef
300 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
301 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
305 void LLVMDisposeModule(LLVMModuleRef M);
308 const char *LLVMGetDataLayout(LLVMModuleRef M);
309 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
312 const char *LLVMGetTarget(LLVMModuleRef M);
313 void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
316 void LLVMDumpModule(LLVMModuleRef M);
319 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm);
[all …]
DAnalysis.h39 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
/external/llvm/lib/Bitcode/Reader/
DBitReader.cpp23 LLVMModuleRef *OutModule, char **OutMessage) { in LLVMParseBitcode()
30 LLVMModuleRef *OutModule, in LLVMParseBitcodeInContext()
50 LLVMModuleRef *OutM, in LLVMGetBitcodeModuleInContext()
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMGetBitcodeModule()
78 reinterpret_cast<LLVMModuleRef*>(OutMP), in LLVMGetBitcodeModuleProviderInContext()
/external/llvm/lib/Bitcode/Writer/
DBitWriter.cpp18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
30 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
38 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
/external/llvm/bindings/ocaml/executionengine/
Dexecutionengine_ocaml.c172 CAMLprim LLVMExecutionEngineRef llvm_ee_create(LLVMModuleRef M) { in llvm_ee_create()
182 llvm_ee_create_interpreter(LLVMModuleRef M) { in llvm_ee_create_interpreter()
192 llvm_ee_create_jit(LLVMModuleRef M, value OptLevel) { in llvm_ee_create_jit()
207 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module()
213 CAMLprim LLVMModuleRef llvm_ee_remove_module(LLVMModuleRef M, in llvm_ee_remove_module()
215 LLVMModuleRef RemovedModule; in llvm_ee_remove_module()
/external/llvm/bindings/ocaml/bitwriter/
Dbitwriter_ocaml.c28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path)); in llvm_write_bitcode_file()
43 res = LLVMWriteBitcodeToFD((LLVMModuleRef) M, Int_val(FD), 0, Unbuffered); in llvm_write_bitcode_to_fd()
/external/llvm/bindings/ocaml/analysis/
Danalysis_ocaml.c25 CAMLprim value llvm_verify_module(LLVMModuleRef M) { in llvm_verify_module()
51 CAMLprim value llvm_assert_valid_module(LLVMModuleRef M) { in llvm_assert_valid_module()
/external/llvm/bindings/ocaml/bitreader/
Dbitreader_ocaml.c54 LLVMModuleRef M; in llvm_get_module()
66 LLVMModuleRef M; in llvm_parse_bitcode()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c123 CAMLprim LLVMModuleRef llvm_create_module(LLVMContextRef C, value ModuleID) { in llvm_create_module()
128 CAMLprim value llvm_dispose_module(LLVMModuleRef M) { in llvm_dispose_module()
134 CAMLprim value llvm_target_triple(LLVMModuleRef M) { in llvm_target_triple()
139 CAMLprim value llvm_set_target_triple(value Trip, LLVMModuleRef M) { in llvm_set_target_triple()
145 CAMLprim value llvm_data_layout(LLVMModuleRef M) { in llvm_data_layout()
150 CAMLprim value llvm_set_data_layout(value Layout, LLVMModuleRef M) { in llvm_set_data_layout()
156 CAMLprim value llvm_dump_module(LLVMModuleRef M) { in llvm_dump_module()
162 CAMLprim value llvm_set_module_inline_asm(LLVMModuleRef M, value Asm) { in llvm_set_module_inline_asm()
692 DEFINE_ITERATORS(global, Global, LLVMModuleRef, LLVMValueRef, in DEFINE_ITERATORS() argument
697 LLVMModuleRef M) { in DEFINE_ITERATORS()
[all …]
/external/llvm/lib/VMCore/
DCore.cpp82 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName()
86 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
91 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
96 const char * LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
100 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { in LLVMSetDataLayout()
105 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget()
109 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { in LLVMSetTarget()
113 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule()
118 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) { in LLVMSetModuleInlineAsm()
124 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) { in LLVMGetModuleContext()
[all …]
/external/llvm/lib/Analysis/
DAnalysis.cpp77 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
/external/mesa3d/src/pixelflinger2/
Dshader.cpp396 result = bccReadModule(script, "glsl", (LLVMModuleRef)instance->module, 0); in CodeGen()