Home
last modified time | relevance | path

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

12

/freebsd-14.2/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 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 DCore.h737 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
745 void LLVMDisposeModule(LLVMModuleRef M);
797 const char *LLVMGetDataLayoutStr(LLVMModuleRef M);
798 const char *LLVMGetDataLayout(LLVMModuleRef M);
812 const char *LLVMGetTarget(LLVMModuleRef M);
866 LLVMMetadataRef LLVMGetModuleFlag(LLVMModuleRef M,
884 void LLVMDumpModule(LLVMModuleRef M);
901 char *LLVMPrintModuleToString(LLVMModuleRef M);
2476 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M);
2477 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M);
[all …]
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.h213 unsigned LLVMGetModuleDebugMetadataVersion(LLVMModuleRef Module);
221 LLVMBool LLVMStripModuleDebugInfo(LLVMModuleRef Module);
227 LLVMDIBuilderRef LLVMCreateDIBuilderDisallowUnresolved(LLVMModuleRef M);
234 LLVMDIBuilderRef LLVMCreateDIBuilder(LLVMModuleRef M);
H A DOrc.h389 void *Ctx, LLVMModuleRef M);
1105 LLVMOrcCreateNewThreadSafeModule(LLVMModuleRef M,
/freebsd-14.2/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-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp258 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
283 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) { in LLVMGetDataLayoutStr()
287 const char *LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
296 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget()
395 LLVMMetadataRef LLVMGetModuleFlag(LLVMModuleRef M, in LLVMGetModuleFlag()
409 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule()
436 char *LLVMPrintModuleToString(LLVMModuleRef M) { in LLVMPrintModuleToString()
2087 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) { in LLVMGetFirstGlobal()
2095 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) { in LLVMGetLastGlobal()
2273 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) { in LLVMGetLastFunction()
[all …]
H A DComdat.cpp34 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name) { in LLVMGetOrInsertComdat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/
H A DTarget.cpp42 LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M) { in LLVMGetModuleDataLayout()
46 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-14.2/contrib/llvm-project/llvm/include/llvm-c/Transforms/
H A DPassBuilder.h49 LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp220 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M) { in LLVMCloneModule()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DAnalysis.cpp68 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderBindings.cpp46 LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes, in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp113 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMParseIRInContext()

12