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.h39 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
45 LLVMModuleRef *OutModule);
50 LLVMModuleRef *OutModule, char **OutMessage);
54 LLVMModuleRef *OutModule);
62 LLVMModuleRef *OutM, char **OutMessage);
73 LLVMModuleRef *OutM);
76 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
79 LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM);
H A DExecutionEngine.h75 LLVMModuleRef M,
79 LLVMModuleRef M,
83 LLVMModuleRef M,
108 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
128 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
130 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
131 LLVMModuleRef *OutMod, char **OutError);
H A DCore.h755 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
763 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
768 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
776 void LLVMDisposeModule(LLVMModuleRef M);
786 LLVMBool LLVMIsNewDbgInfoFormat(LLVMModuleRef M);
794 void LLVMSetIsNewDbgInfoFormat(LLVMModuleRef M, LLVMBool UseNewFormat);
804 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len);
814 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len);
824 const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len);
835 void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name, size_t Len);
[all …]
H A DBitWriter.h37 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
40 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
45 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int Handle);
48 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M);
H A DLinker.h41 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
H A DTargetMachine.h209 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
215 LLVMBool LLVMTargetMachineEmitToMemoryBuffer(LLVMTargetMachineRef T, LLVMModuleRef M,
H A DTarget.h186 LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M);
193 void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL);
H A DIRReader.h39 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
H A DAnalysis.h44 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
H A DComdat.h46 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name);
H A DTypes.h61 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef
H A DDebugInfo.h226 unsigned LLVMGetModuleDebugMetadataVersion(LLVMModuleRef Module);
234 LLVMBool LLVMStripModuleDebugInfo(LLVMModuleRef Module);
240 LLVMDIBuilderRef LLVMCreateDIBuilderDisallowUnresolved(LLVMModuleRef M);
247 LLVMDIBuilderRef LLVMCreateDIBuilder(LLVMModuleRef M);
H A DOrc.h398 void *Ctx, LLVMModuleRef M);
1096 LLVMOrcCreateNewThreadSafeModule(LLVMModuleRef M,
/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.cpp105 LLVMModuleRef M, in LLVMCreateExecutionEngineForModule()
120 LLVMModuleRef M, in LLVMCreateInterpreterForModule()
135 LLVMModuleRef M, in LLVMCreateJITCompilerForModule()
162 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M, in LLVMCreateMCJITCompilerForModule()
257 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
261 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
262 LLVMModuleRef *OutMod, char **OutError) { in LLVMRemoveModule()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp269 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName()
273 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
278 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
282 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len) { in LLVMGetModuleIdentifier()
288 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len) { in LLVMSetModuleIdentifier()
292 const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len) { in LLVMGetSourceFileName()
298 void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name, size_t Len) { in LLVMSetSourceFileName()
303 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) { in LLVMGetDataLayoutStr()
307 const char *LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
311 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.h49 LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes,
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAnalysis.cpp67 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderBindings.cpp47 LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes, in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
/freebsd/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp113 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMParseIRInContext()

12