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"
|
2015-02-03 00:49:57 +00:00
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2013-05-01 20:59:00 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2007-12-11 00:20:48 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2015-02-03 00:49:57 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-02-20 11:08:44 +00:00
|
|
|
#include <cstring>
|
2012-12-03 16:50:05 +00:00
|
|
|
#include <string>
|
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) {
|
2010-02-15 21:08:22 +00:00
|
|
|
return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
|
|
|
|
OutMessage);
|
2009-07-02 07:17:57 +00:00
|
|
|
}
|
|
|
|
|
2010-01-09 22:27:07 +00:00
|
|
|
LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule,
|
|
|
|
char **OutMessage) {
|
2015-02-03 00:49:57 +00:00
|
|
|
MemoryBufferRef Buf = unwrap(MemBuf)->getMemBufferRef();
|
|
|
|
LLVMContext &Ctx = *unwrap(ContextRef);
|
|
|
|
|
|
|
|
std::string Message;
|
|
|
|
raw_string_ostream Stream(Message);
|
|
|
|
DiagnosticPrinterRawOStream DP(Stream);
|
|
|
|
|
2015-06-16 22:27:55 +00:00
|
|
|
ErrorOr<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(
|
2015-02-03 00:49:57 +00:00
|
|
|
Buf, Ctx, [&](const DiagnosticInfo &DI) { DI.print(DP); });
|
2015-02-03 01:53:03 +00:00
|
|
|
if (ModuleOrErr.getError()) {
|
|
|
|
if (OutMessage) {
|
|
|
|
Stream.flush();
|
|
|
|
*OutMessage = strdup(Message.c_str());
|
|
|
|
}
|
2014-04-15 06:32:26 +00:00
|
|
|
*OutModule = wrap((Module*)nullptr);
|
2007-12-11 00:20:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2015-06-16 22:27:55 +00:00
|
|
|
*OutModule = wrap(ModuleOrErr.get().release());
|
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.
|
2012-11-25 15:23:39 +00:00
|
|
|
Optionally returns a human-readable error message via OutMessage. */
|
2010-03-02 23:58:54 +00:00
|
|
|
LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutM,
|
|
|
|
char **OutMessage) {
|
2007-12-19 22:30:40 +00:00
|
|
|
std::string Message;
|
2014-08-26 22:00:09 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf));
|
|
|
|
|
2015-06-16 22:27:55 +00:00
|
|
|
ErrorOr<std::unique_ptr<Module>> ModuleOrErr =
|
2014-09-03 17:31:46 +00:00
|
|
|
getLazyBitcodeModule(std::move(Owner), *unwrap(ContextRef));
|
2014-08-26 22:00:09 +00:00
|
|
|
Owner.release();
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2014-06-13 02:24:39 +00:00
|
|
|
if (std::error_code EC = ModuleOrErr.getError()) {
|
2014-04-15 06:32:26 +00:00
|
|
|
*OutM = wrap((Module *)nullptr);
|
2007-12-11 00:20:48 +00:00
|
|
|
if (OutMessage)
|
2014-01-13 18:31:04 +00:00
|
|
|
*OutMessage = strdup(EC.message().c_str());
|
2007-12-11 00:20:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2015-06-16 22:27:55 +00:00
|
|
|
*OutM = wrap(ModuleOrErr.get().release());
|
2014-01-13 18:31:04 +00:00
|
|
|
|
2007-12-11 00:20:48 +00:00
|
|
|
return 0;
|
2010-03-02 23:58:54 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
|
|
|
|
char **OutMessage) {
|
|
|
|
return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
|
|
|
|
OutMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deprecated: Use LLVMGetBitcodeModuleInContext instead. */
|
|
|
|
LLVMBool LLVMGetBitcodeModuleProviderInContext(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleProviderRef *OutMP,
|
|
|
|
char **OutMessage) {
|
|
|
|
return LLVMGetBitcodeModuleInContext(ContextRef, MemBuf,
|
|
|
|
reinterpret_cast<LLVMModuleRef*>(OutMP),
|
|
|
|
OutMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deprecated: Use LLVMGetBitcodeModule instead. */
|
|
|
|
LLVMBool LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleProviderRef *OutMP,
|
|
|
|
char **OutMessage) {
|
|
|
|
return LLVMGetBitcodeModuleProviderInContext(LLVMGetGlobalContext(), MemBuf,
|
|
|
|
OutMP, OutMessage);
|
2007-12-11 00:20:48 +00:00
|
|
|
}
|