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"
|
2015-12-18 01:46:52 +00:00
|
|
|
#include "llvm-c/Core.h"
|
2007-12-11 00:20:48 +00:00
|
|
|
#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. */
|
2015-12-18 14:06:34 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-12-18 23:46:42 +00:00
|
|
|
LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule) {
|
|
|
|
return LLVMParseBitcodeInContext2(wrap(&getGlobalContext()), MemBuf,
|
|
|
|
OutModule);
|
|
|
|
}
|
|
|
|
|
2015-12-14 23:17:03 +00:00
|
|
|
static void diagnosticHandler(const DiagnosticInfo &DI, void *C) {
|
|
|
|
auto *Message = reinterpret_cast<std::string *>(C);
|
|
|
|
raw_string_ostream Stream(*Message);
|
|
|
|
DiagnosticPrinterRawOStream DP(Stream);
|
|
|
|
DI.print(DP);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2015-12-14 23:17:03 +00:00
|
|
|
LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler =
|
|
|
|
Ctx.getDiagnosticHandler();
|
|
|
|
void *OldDiagnosticContext = Ctx.getDiagnosticContext();
|
2015-02-03 00:49:57 +00:00
|
|
|
std::string Message;
|
2015-12-14 23:17:03 +00:00
|
|
|
Ctx.setDiagnosticHandler(diagnosticHandler, &Message, true);
|
|
|
|
|
|
|
|
ErrorOr<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(Buf, Ctx);
|
|
|
|
|
|
|
|
Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext, true);
|
2015-02-03 00:49:57 +00:00
|
|
|
|
2015-02-03 01:53:03 +00:00
|
|
|
if (ModuleOrErr.getError()) {
|
2015-12-14 23:17:03 +00:00
|
|
|
if (OutMessage)
|
2015-02-03 01:53:03 +00:00
|
|
|
*OutMessage = strdup(Message.c_str());
|
2015-12-18 14:06:34 +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;
|
|
|
|
}
|
|
|
|
|
2015-12-18 23:46:42 +00:00
|
|
|
LLVMBool LLVMParseBitcodeInContext2(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutModule) {
|
|
|
|
MemoryBufferRef Buf = unwrap(MemBuf)->getMemBufferRef();
|
|
|
|
LLVMContext &Ctx = *unwrap(ContextRef);
|
|
|
|
|
|
|
|
ErrorOr<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(Buf, Ctx);
|
|
|
|
if (ModuleOrErr.getError()) {
|
|
|
|
*OutModule = wrap((Module *)nullptr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*OutModule = wrap(ModuleOrErr.get().release());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/* 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,
|
2015-12-18 14:06:34 +00:00
|
|
|
LLVMModuleRef *OutM, char **OutMessage) {
|
2015-12-18 13:58:05 +00:00
|
|
|
LLVMContext &Ctx = *unwrap(ContextRef);
|
|
|
|
LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler =
|
|
|
|
Ctx.getDiagnosticHandler();
|
|
|
|
void *OldDiagnosticContext = Ctx.getDiagnosticContext();
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
std::string Message;
|
2015-12-18 13:58:05 +00:00
|
|
|
Ctx.setDiagnosticHandler(diagnosticHandler, &Message, true);
|
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 =
|
2015-12-18 13:58:05 +00:00
|
|
|
getLazyBitcodeModule(std::move(Owner), Ctx);
|
2014-08-26 22:00:09 +00:00
|
|
|
Owner.release();
|
2015-12-18 13:58:05 +00:00
|
|
|
Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext, true);
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2015-12-18 13:58:05 +00:00
|
|
|
if (ModuleOrErr.getError()) {
|
2014-04-15 06:32:26 +00:00
|
|
|
*OutM = wrap((Module *)nullptr);
|
2007-12-11 00:20:48 +00:00
|
|
|
if (OutMessage)
|
2015-12-18 13:58:05 +00:00
|
|
|
*OutMessage = strdup(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
|
|
|
}
|
|
|
|
|
2015-12-18 23:46:42 +00:00
|
|
|
LLVMBool LLVMGetBitcodeModuleInContext2(LLVMContextRef ContextRef,
|
|
|
|
LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutM) {
|
|
|
|
LLVMContext &Ctx = *unwrap(ContextRef);
|
|
|
|
std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf));
|
|
|
|
|
|
|
|
ErrorOr<std::unique_ptr<Module>> ModuleOrErr =
|
|
|
|
getLazyBitcodeModule(std::move(Owner), Ctx);
|
|
|
|
Owner.release();
|
|
|
|
|
|
|
|
if (ModuleOrErr.getError()) {
|
|
|
|
*OutM = wrap((Module *)nullptr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*OutM = wrap(ModuleOrErr.get().release());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-02 23:58:54 +00:00
|
|
|
LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
|
|
|
|
char **OutMessage) {
|
|
|
|
return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
|
|
|
|
OutMessage);
|
|
|
|
}
|
2015-12-18 23:46:42 +00:00
|
|
|
|
|
|
|
LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf,
|
|
|
|
LLVMModuleRef *OutM) {
|
|
|
|
return LLVMGetBitcodeModuleInContext2(LLVMGetGlobalContext(), MemBuf, OutM);
|
|
|
|
}
|