- LLVMGetBitcodeModule
LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutM, char** OutMessage)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- LLVMGetBitcodeModule2
LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutM)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- LLVMGetBitcodeModuleInContext
LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef, LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutM, char** OutMessage)
Reads a module from the specified path, returning via the OutMP parameter
a module provider which performs lazy deserialization. Returns 0 on success.
Optionally returns a human-readable error message via OutMessage.
This is deprecated. Use LLVMGetBitcodeModuleInContext2.
- LLVMGetBitcodeModuleInContext2
LLVMBool LLVMGetBitcodeModuleInContext2(LLVMContextRef ContextRef, LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutM)
Reads a module from the specified path, returning via the OutMP parameter a
* module provider which performs lazy deserialization. Returns 0 on success.
- LLVMParseBitcode
LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutModule, char** OutMessage)
@defgroup LLVMCBitReader Bit Reader
@ingroup LLVMC
- LLVMParseBitcode2
LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutModule)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- LLVMParseBitcodeInContext
LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef, LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutModule, char** OutMessage)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- LLVMParseBitcodeInContext2
LLVMBool LLVMParseBitcodeInContext2(LLVMContextRef ContextRef, LLVMMemoryBufferRef MemBuf, LLVMModuleRef* OutModule)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.