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

  /external/llvm/include/llvm-c/
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);
BitReader.h 39 LLVMModuleRef *OutModule, char **OutMessage);
43 LLVMModuleRef *OutModule, char **OutMessage);
50 LLVMModuleRef *OutM,
53 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
Analysis.h 45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
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);
Core.h 92 typedef struct LLVMOpaqueModule *LLVMModuleRef;
426 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
434 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
443 void LLVMDisposeModule(LLVMModuleRef M);
450 const char *LLVMGetDataLayout(LLVMModuleRef M);
457 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
464 const char *LLVMGetTarget(LLVMModuleRef M);
471 void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
478 void LLVMDumpModule(LLVMModuleRef M);
485 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm)
    [all...]
TargetMachine.h 113 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
30 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
38 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) {
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 23 LLVMModuleRef *OutModule, char **OutMessage) {
30 LLVMModuleRef *OutModule,
50 LLVMModuleRef *OutM,
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
78 reinterpret_cast<LLVMModuleRef*>(OutMP),
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader.cpp 23 LLVMModuleRef *OutModule, char **OutMessage) {
30 LLVMModuleRef *OutModule,
50 LLVMModuleRef *OutM,
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
78 reinterpret_cast<LLVMModuleRef*>(OutMP),
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader.cpp 23 LLVMModuleRef *OutModule, char **OutMessage) {
30 LLVMModuleRef *OutModule,
50 LLVMModuleRef *OutM,
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
78 reinterpret_cast<LLVMModuleRef*>(OutMP),
  /external/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c 28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path));
43 res = LLVMWriteBitcodeToFD((LLVMModuleRef) M, Int_val(FD), 0, Unbuffered);
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 25 CAMLprim value llvm_verify_module(LLVMModuleRef M) {
51 CAMLprim value llvm_assert_valid_module(LLVMModuleRef M) {
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 89 LLVMModuleRef M,
104 LLVMModuleRef M,
119 LLVMModuleRef M,
140 reinterpret_cast<LLVMModuleRef>(MP),
149 reinterpret_cast<LLVMModuleRef>(MP),
159 reinterpret_cast<LLVMModuleRef>(MP),
203 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){
209 LLVMAddModule(EE, reinterpret_cast<LLVMModuleRef>(MP));
212 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
213 LLVMModuleRef *OutMod, char **OutError)
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
bcc_internal.h 48 BCC_OPAQUE_TYPE_CONVERSION(llvm::Module *, LLVMModuleRef);
bcc.cpp 89 LLVMModuleRef module,
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 54 LLVMModuleRef M;
66 LLVMModuleRef M;
  /frameworks/compile/libbcc/include/bcc/
bcc.h 34 typedef struct LLVMOpaqueModule *LLVMModuleRef;
93 LLVMModuleRef module,
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 172 CAMLprim LLVMExecutionEngineRef llvm_ee_create(LLVMModuleRef M) {
182 llvm_ee_create_interpreter(LLVMModuleRef M) {
192 llvm_ee_create_jit(LLVMModuleRef M, value OptLevel) {
207 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) {
213 CAMLprim LLVMModuleRef llvm_ee_remove_module(LLVMModuleRef M,
215 LLVMModuleRef RemovedModule;
  /external/llvm/lib/Analysis/
Analysis.cpp 78 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 123 CAMLprim LLVMModuleRef llvm_create_module(LLVMContextRef C, value ModuleID) {
128 CAMLprim value llvm_dispose_module(LLVMModuleRef M) {
134 CAMLprim value llvm_target_triple(LLVMModuleRef M) {
139 CAMLprim value llvm_set_target_triple(value Trip, LLVMModuleRef M) {
145 CAMLprim value llvm_data_layout(LLVMModuleRef M) {
150 CAMLprim value llvm_set_data_layout(value Layout, LLVMModuleRef M) {
156 CAMLprim value llvm_dump_module(LLVMModuleRef M) {
162 CAMLprim value llvm_set_module_inline_asm(LLVMModuleRef M, value Asm) {
389 CAMLprim value llvm_type_by_name(LLVMModuleRef M, value Name)
593 CAMLprim value llvm_get_namedmd(LLVMModuleRef M, value name
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp 83 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
87 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
92 void LLVMDisposeModule(LLVMModuleRef M) {
97 const char * LLVMGetDataLayout(LLVMModuleRef M) {
101 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
106 const char * LLVMGetTarget(LLVMModuleRef M) {
110 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
114 void LLVMDumpModule(LLVMModuleRef M) {
119 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
125 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M)
    [all...]
  /external/llvm/lib/Target/
TargetMachineC.cpp 152 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
  /external/mesa3d/src/pixelflinger2/
shader.cpp 396 result = bccReadModule(script, "glsl", (LLVMModuleRef)instance->module, 0);
    [all...]

Completed in 495 milliseconds