Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DBitReader.h41 LLVMModuleRef *OutModule,
47 LLVMModuleRef *OutModule);
52 LLVMModuleRef *OutModule,
57 LLVMModuleRef *OutModule);
65 LLVMModuleRef *OutM,
77 LLVMModuleRef *OutM);
81 LLVMModuleRef *OutM,
85 LLVMModuleRef *OutM);
H A DBitWriter.h38 LLVM_C_ABI int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
41 LLVM_C_ABI int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
46 LLVM_C_ABI int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
49 LLVM_C_ABI LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M);
H A DExecutionEngine.h86 LLVMExecutionEngineRef *OutEE, LLVMModuleRef M, char **OutError);
89 LLVMExecutionEngineRef *OutInterp, LLVMModuleRef M, char **OutError);
92 LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
117 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
138 LLVM_C_ABI void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
140 LLVM_C_ABI LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
141 LLVMModuleRef *OutMod, char **OutError);
H A DCore.h776 LLVM_C_ABI LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
784 LLVM_C_ABI LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
789 LLVM_C_ABI LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
797 LLVM_C_ABI void LLVMDisposeModule(LLVMModuleRef M);
807 LLVM_C_ABI LLVMBool LLVMIsNewDbgInfoFormat(LLVMModuleRef M);
815 LLVM_C_ABI void LLVMSetIsNewDbgInfoFormat(LLVMModuleRef M,
826 LLVM_C_ABI const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len);
836 LLVM_C_ABI void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident,
847 LLVM_C_ABI const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len);
858 LLVM_C_ABI void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name,
[all …]
H A DLinker.h42 LLVM_C_ABI LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
H A DTargetMachine.h221 LLVMModuleRef M,
228 LLVMTargetMachineRef T, LLVMModuleRef M, LLVMCodeGenFileType codegen,
H A DTarget.h188 LLVM_C_ABI LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M);
195 LLVM_C_ABI void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL);
H A DIRReader.h41 LLVMModuleRef *OutM,
H A DAnalysis.h45 LLVM_C_ABI LLVMBool LLVMVerifyModule(LLVMModuleRef M,
H A DComdat.h47 LLVM_C_ABI LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M,
H A DTypes.h61 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef
H A DDebugInfo.h232 LLVM_C_ABI unsigned LLVMGetModuleDebugMetadataVersion(LLVMModuleRef Module);
240 LLVM_C_ABI LLVMBool LLVMStripModuleDebugInfo(LLVMModuleRef Module);
247 LLVMCreateDIBuilderDisallowUnresolved(LLVMModuleRef M);
254 LLVM_C_ABI LLVMDIBuilderRef LLVMCreateDIBuilder(LLVMModuleRef M);
H A DOrc.h399 void *Ctx, LLVMModuleRef M);
1119 LLVMModuleRef M, LLVMOrcThreadSafeContextRef TSCtx);
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp23 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule, in LLVMParseBitcode()
30 LLVMModuleRef *OutModule) { in LLVMParseBitcode2()
36 LLVMModuleRef *OutModule, in LLVMParseBitcodeInContext()
59 LLVMModuleRef *OutModule) { in LLVMParseBitcodeInContext2()
79 LLVMModuleRef *OutM, char **OutMessage) { in LLVMGetBitcodeModuleInContext()
106 LLVMModuleRef *OutM) { in LLVMGetBitcodeModuleInContext2()
123 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMGetBitcodeModule()
130 LLVMModuleRef *OutM) { in LLVMGetBitcodeModule2()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A 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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp104 LLVMModuleRef M, in LLVMCreateExecutionEngineForModule()
119 LLVMModuleRef M, in LLVMCreateInterpreterForModule()
134 LLVMModuleRef M, in LLVMCreateJITCompilerForModule()
161 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M, in LLVMCreateMCJITCompilerForModule()
256 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
260 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
261 LLVMModuleRef *OutMod, char **OutError) { in LLVMRemoveModule()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp276 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName()
280 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
285 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
289 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len) { in LLVMGetModuleIdentifier()
295 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len) { in LLVMSetModuleIdentifier()
299 const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len) { in LLVMGetSourceFileName()
305 void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name, size_t Len) { in LLVMSetSourceFileName()
310 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) { in LLVMGetDataLayoutStr()
314 const char *LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
318 void LLVMSetDataLayout(LLVMModuleRef M, const char *DataLayoutStr) { in LLVMSetDataLayout()
[all …]
H A DComdat.cpp34 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name) { in LLVMGetOrInsertComdat()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTarget.cpp43 LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M) { in LLVMGetModuleDataLayout()
47 void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL) { in LLVMSetModuleDataLayout()
H A DTargetMachineC.cpp290 static LLVMBool LLVMTargetMachineEmit(LLVMTargetMachineRef T, LLVMModuleRef M, in LLVMTargetMachineEmit()
324 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M, in LLVMTargetMachineEmitToFile()
340 LLVMModuleRef M, LLVMCodeGenFileType codegen, char** ErrorMessage, in LLVMTargetMachineEmitToMemoryBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp220 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M) { in LLVMCloneModule()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/Transforms/
H A DPassBuilder.h50 LLVM_C_ABI LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes,
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAnalysis.cpp80 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
/freebsd/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp113 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMParseIRInContext()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderBindings.cpp101 LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes, in LLVMRunPasses()

12