| /freebsd-12.1/contrib/llvm/include/llvm-c/ |
| H A D | BitReader.h | 40 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);
|
| H A D | ExecutionEngine.h | 76 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);
|
| H A D | Core.h | 657 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M); 665 void LLVMDisposeModule(LLVMModuleRef M); 717 const char *LLVMGetDataLayoutStr(LLVMModuleRef M); 718 const char *LLVMGetDataLayout(LLVMModuleRef M); 732 const char *LLVMGetTarget(LLVMModuleRef M); 786 LLVMMetadataRef LLVMGetModuleFlag(LLVMModuleRef M, 804 void LLVMDumpModule(LLVMModuleRef M); 821 char *LLVMPrintModuleToString(LLVMModuleRef M); 1021 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M); 2279 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M); [all …]
|
| H A D | 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); 49 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M);
|
| H A D | Linker.h | 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
|
| H A D | OrcBindings.h | 97 LLVMModuleRef Mod, 106 LLVMModuleRef Mod,
|
| H A D | TargetMachine.h | 132 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M, 136 LLVMBool LLVMTargetMachineEmitToMemoryBuffer(LLVMTargetMachineRef T, LLVMModuleRef M,
|
| H A D | Target.h | 191 LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M); 198 void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL);
|
| H A D | IRReader.h | 33 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
|
| H A D | DebugInfo.h | 181 unsigned LLVMGetModuleDebugMetadataVersion(LLVMModuleRef Module); 189 LLVMBool LLVMStripModuleDebugInfo(LLVMModuleRef Module); 195 LLVMDIBuilderRef LLVMCreateDIBuilderDisallowUnresolved(LLVMModuleRef M); 202 LLVMDIBuilderRef LLVMCreateDIBuilder(LLVMModuleRef M);
|
| H A D | Analysis.h | 45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
|
| H A D | Comdat.h | 41 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name);
|
| H A D | Types.h | 62 typedef struct LLVMOpaqueModule *LLVMModuleRef; typedef
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitReader.cpp | 25 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()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/ |
| H A D | BitWriter.cpp | 21 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()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngineBindings.cpp | 105 LLVMModuleRef M, in LLVMCreateExecutionEngineForModule() 120 LLVMModuleRef M, in LLVMCreateInterpreterForModule() 135 LLVMModuleRef M, in LLVMCreateJITCompilerForModule() 162 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M, in LLVMCreateMCJITCompilerForModule() 258 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule() 262 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule() 263 LLVMModuleRef *OutMod, char **OutError) { in LLVMRemoveModule()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Core.cpp | 231 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule() 256 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) { in LLVMGetDataLayoutStr() 260 const char *LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout() 269 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget() 368 LLVMMetadataRef LLVMGetModuleFlag(LLVMModuleRef M, in LLVMGetModuleFlag() 382 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule() 409 char *LLVMPrintModuleToString(LLVMModuleRef M) { in LLVMPrintModuleToString() 460 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) { in LLVMGetModuleContext() 2062 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) { in LLVMGetFirstGlobal() 2070 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) { in LLVMGetLastGlobal() [all …]
|
| H A D | Comdat.cpp | 29 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name) { in LLVMGetOrInsertComdat()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ |
| H A D | TargetMachineC.cpp | 186 static LLVMBool LLVMTargetMachineEmit(LLVMTargetMachineRef T, LLVMModuleRef M, in LLVMTargetMachineEmit() 220 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M, in LLVMTargetMachineEmitToFile() 234 LLVMModuleRef M, LLVMCodeGenFileType codegen, char** ErrorMessage, in LLVMTargetMachineEmitToMemoryBuffer()
|
| H A D | Target.cpp | 48 LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M) { in LLVMGetModuleDataLayout() 52 void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL) { in LLVMSetModuleDataLayout()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/ |
| H A D | OrcCBindings.cpp | 72 LLVMModuleRef Mod, in LLVMOrcAddEagerlyCompiledIR() 87 LLVMModuleRef Mod, in LLVMOrcAddLazilyCompiledIR()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | CloneModule.cpp | 199 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M) { in LLVMCloneModule()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | Analysis.cpp | 98 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, in LLVMVerifyModule()
|
| /freebsd-12.1/contrib/llvm/lib/IRReader/ |
| H A D | IRReader.cpp | 117 LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM, in LLVMParseIRInContext()
|
| /freebsd-12.1/contrib/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 602 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src) { in LLVMLinkModules2()
|