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"
|
|
|
|
#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.
|
|
|
|
Optionally returns a human-readable error message via OutMessage. */
|
|
|
|
int LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule, char **OutMessage) {
|
2007-12-11 00:20:48 +00:00
|
|
|
std::string Message;
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
*OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), &Message));
|
|
|
|
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. */
|
|
|
|
int LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleProviderRef *OutMP,
|
|
|
|
char **OutMessage) {
|
|
|
|
std::string Message;
|
|
|
|
|
|
|
|
*OutMP = wrap(getBitcodeModuleProvider(unwrap(MemBuf), &Message));
|
|
|
|
if (!*OutMP) {
|
2007-12-11 00:20:48 +00:00
|
|
|
if (OutMessage)
|
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|