/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 89 LLVMModuleRef M, in LLVMCreateExecutionEngineForModule() 104 LLVMModuleRef M, in LLVMCreateInterpreterForModule() 119 LLVMModuleRef M, in LLVMCreateJITCompilerForModule() 140 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateExecutionEngine() 149 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateInterpreter() 159 reinterpret_cast<LLVMModuleRef>(MP), in LLVMCreateJITCompiler() 203 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule() 209 LLVMAddModule(EE, reinterpret_cast<LLVMModuleRef>(MP)); in LLVMAddModuleProvider() 212 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule() 213 LLVMModuleRef *OutMod, char **OutError) { in LLVMRemoveModule() [all …]
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 66 LLVMModuleRef M, 70 LLVMModuleRef M, 74 LLVMModuleRef M, 110 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M); 115 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, 116 LLVMModuleRef *OutMod, char **OutError); 121 LLVMModuleRef *OutMod, char **OutError);
|
D | BitReader.h | 39 LLVMModuleRef *OutModule, char **OutMessage); 43 LLVMModuleRef *OutModule, char **OutMessage); 50 LLVMModuleRef *OutM, 53 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
|
D | BitWriter.h | 38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path); 41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, 46 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
|
D | Core.h | 92 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef 432 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID); 440 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, 449 void LLVMDisposeModule(LLVMModuleRef M); 456 const char *LLVMGetDataLayout(LLVMModuleRef M); 463 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple); 470 const char *LLVMGetTarget(LLVMModuleRef M); 477 void LLVMSetTarget(LLVMModuleRef M, const char *Triple); 484 void LLVMDumpModule(LLVMModuleRef M); 492 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, [all …]
|
D | Linker.h | 35 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
|
D | Analysis.h | 45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
|
D | TargetMachine.h | 114 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitReader.cpp | 23 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/ |
D | BitWriter.cpp | 18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile() 29 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD() 37 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
|
/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 175 CAMLprim LLVMExecutionEngineRef llvm_ee_create(LLVMModuleRef M) { in llvm_ee_create() 185 llvm_ee_create_interpreter(LLVMModuleRef M) { in llvm_ee_create_interpreter() 195 llvm_ee_create_jit(LLVMModuleRef M, value OptLevel) { in llvm_ee_create_jit() 210 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() 216 CAMLprim LLVMModuleRef llvm_ee_remove_module(LLVMModuleRef M, in llvm_ee_remove_module() 218 LLVMModuleRef RemovedModule; in llvm_ee_remove_module()
|
/external/llvm/bindings/ocaml/bitwriter/ |
D | bitwriter_ocaml.c | 28 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/ |
D | analysis_ocaml.c | 25 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/ |
D | bitreader_ocaml.c | 54 LLVMModuleRef M; in llvm_get_module() 66 LLVMModuleRef M; in llvm_parse_bitcode()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 123 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() 389 CAMLprim value llvm_type_by_name(LLVMModuleRef M, value Name) in llvm_type_by_name() 593 CAMLprim value llvm_get_namedmd(LLVMModuleRef M, value name) in llvm_get_namedmd() [all …]
|
/external/llvm/lib/IR/ |
D | Core.cpp | 90 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName() 94 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext() 99 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule() 104 const char * LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout() 108 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { in LLVMSetDataLayout() 113 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget() 117 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { in LLVMSetTarget() 121 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule() 125 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, in LLVMPrintModuleToFile() 145 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) { in LLVMSetModuleInlineAsm() [all …]
|
/external/llvm/lib/Analysis/ |
D | Analysis.cpp | 80 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
|
/external/llvm/lib/Target/ |
D | TargetMachineC.cpp | 152 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M, in LLVMTargetMachineEmitToFile()
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 1314 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, in LLVMLinkModules()
|