2007-12-11 00:20:48 +00:00
|
|
|
//===-- BitReader.cpp -----------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-12-11 00:20:48 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm-c/BitReader.h"
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2009-07-02 07:17:57 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2007-12-11 00:20:48 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include <string>
|
2008-02-20 11:08:44 +00:00
|
|
|
#include <cstring>
|
2007-12-11 00:20:48 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/* Builds a module from the bitcode in the specified memory buffer, returning a
|
|
|
|
reference to the module via the OutModule parameter. Returns 0 on success.
|
2010-01-09 22:27:07 +00:00
|
|
|
Optionally returns a human-readable error message via OutMessage. */
|
|
|
|
LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule, char **OutMessage) {
|
2007-12-11 00:20:48 +00:00
|
|
|
std::string Message;
|
|
|
|
|
2009-07-02 07:17:57 +00:00
|
|
|
*OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), getGlobalContext(),
|
|
|
|
&Message));
|
|
|
|
if (!*OutModule) {
|
|
|
|
if (OutMessage)
|
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-09 22:27:07 +00:00
|
|
|
LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule,
|
|
|
|
char **OutMessage) {
|
2009-07-02 07:17:57 +00:00
|
|
|
std::string Message;
|
|
|
|
|
2009-08-11 07:46:16 +00:00
|
|
|
*OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
|
2009-07-01 16:58:40 +00:00
|
|
|
&Message));
|
2007-12-19 22:30:40 +00:00
|
|
|
if (!*OutModule) {
|
|
|
|
if (OutMessage)
|
2007-12-11 00:20:48 +00:00
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reads a module from the specified path, returning via the OutModule parameter
|
|
|
|
a module provider which performs lazy deserialization. Returns 0 on success.
|
|
|
|
Optionally returns a human-readable error message via OutMessage. */
|
2010-01-09 22:27:07 +00:00
|
|
|
LLVMBool LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleProviderRef *OutMP,
|
|
|
|
char **OutMessage) {
|
2009-07-02 07:17:57 +00:00
|
|
|
std::string Message;
|
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
*OutMP = reinterpret_cast<LLVMModuleProviderRef>(
|
|
|
|
getLazyBitcodeModule(unwrap(MemBuf), getGlobalContext(), &Message));
|
2009-07-02 07:17:57 +00:00
|
|
|
|
|
|
|
if (!*OutMP) {
|
|
|
|
if (OutMessage)
|
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-09 22:27:07 +00:00
|
|
|
LLVMBool LLVMGetBitcodeModuleProviderInContext(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleProviderRef *OutMP,
|
|
|
|
char **OutMessage) {
|
2007-12-19 22:30:40 +00:00
|
|
|
std::string Message;
|
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
*OutMP = reinterpret_cast<LLVMModuleProviderRef>(
|
|
|
|
getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef), &Message));
|
2007-12-19 22:30:40 +00:00
|
|
|
if (!*OutMP) {
|
2007-12-11 00:20:48 +00:00
|
|
|
if (OutMessage)
|
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|