Home
last modified time | relevance | path

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

123456

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DBitReader.h40 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
46 LLVMModuleRef *OutModule);
51 LLVMModuleRef *OutModule, char **OutMessage);
55 LLVMModuleRef *OutModule);
63 LLVMModuleRef *OutM, char **OutMessage);
69 LLVMModuleRef *OutM);
72 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
75 LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM);
DExecutionEngine.h76 LLVMModuleRef M,
80 LLVMModuleRef M,
84 LLVMModuleRef M,
109 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
129 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
132 LLVMModuleRef *OutMod, char **OutError);
DCore.h622 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
630 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
635 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
643 void LLVMDisposeModule(LLVMModuleRef M);
653 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len);
663 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len);
673 const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len);
684 void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name, size_t Len);
695 const char *LLVMGetDataLayoutStr(LLVMModuleRef M);
696 const char *LLVMGetDataLayout(LLVMModuleRef M);
[all …]
DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
46 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
49 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M);
/external/llvm/include/llvm-c/
DBitReader.h40 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
46 LLVMModuleRef *OutModule);
51 LLVMModuleRef *OutModule, char **OutMessage);
55 LLVMModuleRef *OutModule);
63 LLVMModuleRef *OutM, char **OutMessage);
69 LLVMModuleRef *OutM);
72 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
75 LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM);
DExecutionEngine.h76 LLVMModuleRef M,
80 LLVMModuleRef M,
84 LLVMModuleRef M,
109 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
129 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
132 LLVMModuleRef *OutMod, char **OutError);
DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
46 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
49 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M);
DCore.h570 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
578 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
583 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
591 void LLVMDisposeModule(LLVMModuleRef M);
601 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len);
611 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len);
622 const char *LLVMGetDataLayoutStr(LLVMModuleRef M);
623 const char *LLVMGetDataLayout(LLVMModuleRef M);
630 void LLVMSetDataLayout(LLVMModuleRef M, const char *DataLayoutStr);
637 const char *LLVMGetTarget(LLVMModuleRef M);
[all …]
/external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitReader.cpp25 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule, in LLVMParseBitcode()
32 LLVMModuleRef *OutModule) { in LLVMParseBitcode2()
38 LLVMModuleRef *OutModule, in LLVMParseBitcodeInContext()
61 LLVMModuleRef *OutModule) { in LLVMParseBitcodeInContext2()
81 LLVMModuleRef *OutM, char **OutMessage) { in LLVMGetBitcodeModuleInContext()
108 LLVMModuleRef *OutM) { in LLVMGetBitcodeModuleInContext2()
125 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMGetBitcodeModule()
132 LLVMModuleRef *OutM) { in LLVMGetBitcodeModule2()
/external/llvm/lib/Bitcode/Reader/
DBitReader.cpp26 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule, in LLVMParseBitcode()
33 LLVMModuleRef *OutModule) { in LLVMParseBitcode2()
46 LLVMModuleRef *OutModule, in LLVMParseBitcodeInContext()
74 LLVMModuleRef *OutModule) { in LLVMParseBitcodeInContext2()
93 LLVMModuleRef *OutM, char **OutMessage) { in LLVMGetBitcodeModuleInContext()
122 LLVMModuleRef *OutM) { in LLVMGetBitcodeModuleInContext2()
139 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMGetBitcodeModule()
146 LLVMModuleRef *OutM) { in LLVMGetBitcodeModule2()
/external/swiftshader/third_party/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,
DCore.h63 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef
320 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
321 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
325 void LLVMDisposeModule(LLVMModuleRef M);
328 const char *LLVMGetDataLayout(LLVMModuleRef M);
329 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
332 const char *LLVMGetTarget(LLVMModuleRef M);
333 void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
336 void LLVMDumpModule(LLVMModuleRef M);
339 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm);
[all …]
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);
/external/swiftshader/third_party/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/bindings/ocaml/bitreader/
Dbitreader_ocaml.c25 CAMLprim LLVMModuleRef llvm_get_module(LLVMContextRef C, LLVMMemoryBufferRef MemBuf) { in llvm_get_module()
26 LLVMModuleRef M; in llvm_get_module()
35 CAMLprim LLVMModuleRef llvm_parse_bitcode(LLVMContextRef C, LLVMMemoryBufferRef MemBuf) { in llvm_parse_bitcode()
36 LLVMModuleRef M; in llvm_parse_bitcode()
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/bitreader/
Dbitreader_ocaml.c25 CAMLprim LLVMModuleRef llvm_get_module(LLVMContextRef C, LLVMMemoryBufferRef MemBuf) { in llvm_get_module()
26 LLVMModuleRef M; in llvm_get_module()
35 CAMLprim LLVMModuleRef llvm_parse_bitcode(LLVMContextRef C, LLVMMemoryBufferRef MemBuf) { in llvm_parse_bitcode()
36 LLVMModuleRef M; in llvm_parse_bitcode()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
DBitWriter.cpp21 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
32 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
40 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
44 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M) { in LLVMWriteBitcodeToMemoryBuffer()
/external/llvm/lib/Bitcode/Writer/
DBitWriter.cpp20 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
39 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
43 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M) { in LLVMWriteBitcodeToMemoryBuffer()
/external/llvm/tools/llvm-c-test/
Dmodule.c28 LLVMModuleRef llvm_load_module(bool Lazy, bool New) { in llvm_load_module()
30 LLVMModuleRef M; in llvm_load_module()
66 LLVMModuleRef M = llvm_load_module(Lazy, New); in llvm_module_dump()
78 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_functions()
119 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_globals()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
Dmodule.c27 LLVMModuleRef llvm_load_module(bool Lazy, bool New) { in llvm_load_module()
29 LLVMModuleRef M; in llvm_load_module()
65 LLVMModuleRef M = llvm_load_module(Lazy, New); in llvm_module_dump()
77 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_functions()
118 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_globals()
/external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/bitwriter/
Dbitwriter_ocaml.c25 CAMLprim value llvm_write_bitcode_file(LLVMModuleRef M, value Path) { in llvm_write_bitcode_file()
31 CAMLprim value llvm_write_bitcode_to_fd(value U, LLVMModuleRef M, value FD) { in llvm_write_bitcode_to_fd()
46 CAMLprim LLVMMemoryBufferRef llvm_write_bitcode_to_memory_buffer(LLVMModuleRef M) { in llvm_write_bitcode_to_memory_buffer()
/external/llvm/bindings/ocaml/bitwriter/
Dbitwriter_ocaml.c25 CAMLprim value llvm_write_bitcode_file(LLVMModuleRef M, value Path) { in llvm_write_bitcode_file()
31 CAMLprim value llvm_write_bitcode_to_fd(value U, LLVMModuleRef M, value FD) { in llvm_write_bitcode_to_fd()
46 CAMLprim LLVMMemoryBufferRef llvm_write_bitcode_to_memory_buffer(LLVMModuleRef M) { in llvm_write_bitcode_to_memory_buffer()

123456