2007-04-22 06:22:05 +00:00
|
|
|
//===-- llvm/Bitcode/ReaderWriter.h - Bitcode reader/writers ----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-04-22 06:22:05 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header defines interfaces to read and write LLVM bitcode files/streams.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_BITCODE_READERWRITER_H
|
|
|
|
#define LLVM_BITCODE_READERWRITER_H
|
2007-04-22 06:22:05 +00:00
|
|
|
|
2015-01-10 00:07:30 +00:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
2014-01-13 18:31:04 +00:00
|
|
|
#include "llvm/Support/ErrorOr.h"
|
2014-08-26 21:49:01 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2014-08-26 22:00:09 +00:00
|
|
|
#include <memory>
|
2007-04-22 06:22:05 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
2008-12-19 18:37:59 +00:00
|
|
|
class BitstreamWriter;
|
2012-02-06 22:30:29 +00:00
|
|
|
class DataStreamer;
|
2009-08-11 17:45:13 +00:00
|
|
|
class LLVMContext;
|
2012-02-06 22:30:29 +00:00
|
|
|
class Module;
|
|
|
|
class ModulePass;
|
2008-10-22 17:39:14 +00:00
|
|
|
class raw_ostream;
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2014-01-13 18:31:04 +00:00
|
|
|
/// Read the header of the specified bitcode buffer and prepare for lazy
|
2015-03-13 19:24:30 +00:00
|
|
|
/// deserialization of function bodies. If ShouldLazyLoadMetadata is true,
|
|
|
|
/// lazily load metadata as well. If successful, this moves Buffer. On
|
2014-09-03 17:31:46 +00:00
|
|
|
/// error, this *does not* move Buffer.
|
2015-01-10 00:07:30 +00:00
|
|
|
ErrorOr<Module *>
|
|
|
|
getLazyBitcodeModule(std::unique_ptr<MemoryBuffer> &&Buffer,
|
|
|
|
LLVMContext &Context,
|
2015-03-13 19:24:30 +00:00
|
|
|
DiagnosticHandlerFunction DiagnosticHandler = nullptr,
|
|
|
|
bool ShouldLazyLoadMetadata = false);
|
2007-04-22 06:22:05 +00:00
|
|
|
|
2014-12-18 05:08:43 +00:00
|
|
|
/// Read the header of the specified stream and prepare for lazy
|
|
|
|
/// deserialization and streaming of function bodies.
|
2015-01-10 00:07:30 +00:00
|
|
|
ErrorOr<std::unique_ptr<Module>> getStreamedBitcodeModule(
|
|
|
|
StringRef Name, DataStreamer *Streamer, LLVMContext &Context,
|
|
|
|
DiagnosticHandlerFunction DiagnosticHandler = nullptr);
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2014-07-04 13:30:13 +00:00
|
|
|
/// Read the header of the specified bitcode buffer and extract just the
|
2014-08-26 21:49:01 +00:00
|
|
|
/// triple information. If successful, this returns a string. On error, this
|
|
|
|
/// returns "".
|
2015-01-10 00:07:30 +00:00
|
|
|
std::string
|
|
|
|
getBitcodeTargetTriple(MemoryBufferRef Buffer, LLVMContext &Context,
|
|
|
|
DiagnosticHandlerFunction DiagnosticHandler = nullptr);
|
2010-10-06 01:22:42 +00:00
|
|
|
|
2014-01-15 01:08:23 +00:00
|
|
|
/// Read the specified bitcode file, returning the module.
|
2015-01-10 00:07:30 +00:00
|
|
|
ErrorOr<Module *>
|
|
|
|
parseBitcodeFile(MemoryBufferRef Buffer, LLVMContext &Context,
|
|
|
|
DiagnosticHandlerFunction DiagnosticHandler = nullptr);
|
2009-02-20 23:04:06 +00:00
|
|
|
|
2015-04-15 00:10:50 +00:00
|
|
|
/// \brief Write the specified module to the specified raw output stream.
|
|
|
|
///
|
|
|
|
/// For streams where it matters, the given stream should be in "binary"
|
|
|
|
/// mode.
|
|
|
|
///
|
|
|
|
/// If \c ShouldPreserveUseListOrder, encode the use-list order for each \a
|
|
|
|
/// Value in \c M. These will be reconstructed exactly when \a M is
|
|
|
|
/// deserialized.
|
|
|
|
void WriteBitcodeToFile(const Module *M, raw_ostream &Out,
|
|
|
|
bool ShouldPreserveUseListOrder = false);
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2009-09-02 17:21:29 +00:00
|
|
|
/// isBitcodeWrapper - Return true if the given bytes are the magic bytes
|
|
|
|
/// for an LLVM IR bitcode wrapper.
|
|
|
|
///
|
2012-06-20 08:39:33 +00:00
|
|
|
inline bool isBitcodeWrapper(const unsigned char *BufPtr,
|
|
|
|
const unsigned char *BufEnd) {
|
2009-09-02 17:21:29 +00:00
|
|
|
// See if you can find the hidden message in the magic bytes :-).
|
|
|
|
// (Hint: it's a little-endian encoding.)
|
|
|
|
return BufPtr != BufEnd &&
|
|
|
|
BufPtr[0] == 0xDE &&
|
|
|
|
BufPtr[1] == 0xC0 &&
|
|
|
|
BufPtr[2] == 0x17 &&
|
|
|
|
BufPtr[3] == 0x0B;
|
2009-04-06 20:54:32 +00:00
|
|
|
}
|
2009-09-02 17:21:29 +00:00
|
|
|
|
|
|
|
/// isRawBitcode - Return true if the given bytes are the magic bytes for
|
|
|
|
/// raw LLVM IR bitcode (without a wrapper).
|
|
|
|
///
|
2012-06-20 08:39:33 +00:00
|
|
|
inline bool isRawBitcode(const unsigned char *BufPtr,
|
|
|
|
const unsigned char *BufEnd) {
|
2009-09-02 17:21:29 +00:00
|
|
|
// These bytes sort of have a hidden message, but it's not in
|
|
|
|
// little-endian this time, and it's a little redundant.
|
|
|
|
return BufPtr != BufEnd &&
|
|
|
|
BufPtr[0] == 'B' &&
|
|
|
|
BufPtr[1] == 'C' &&
|
|
|
|
BufPtr[2] == 0xc0 &&
|
|
|
|
BufPtr[3] == 0xde;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isBitcode - Return true if the given bytes are the magic bytes for
|
|
|
|
/// LLVM IR bitcode, either with or without a wrapper.
|
|
|
|
///
|
2012-06-20 08:39:33 +00:00
|
|
|
inline bool isBitcode(const unsigned char *BufPtr,
|
|
|
|
const unsigned char *BufEnd) {
|
2009-09-02 17:21:29 +00:00
|
|
|
return isBitcodeWrapper(BufPtr, BufEnd) ||
|
|
|
|
isRawBitcode(BufPtr, BufEnd);
|
|
|
|
}
|
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
/// SkipBitcodeWrapperHeader - Some systems wrap bc files with a special
|
|
|
|
/// header for padding or other reasons. The format of this header is:
|
|
|
|
///
|
|
|
|
/// struct bc_header {
|
|
|
|
/// uint32_t Magic; // 0x0B17C0DE
|
|
|
|
/// uint32_t Version; // Version, currently always 0.
|
|
|
|
/// uint32_t BitcodeOffset; // Offset to traditional bitcode file.
|
|
|
|
/// uint32_t BitcodeSize; // Size of traditional bitcode file.
|
|
|
|
/// ... potentially other gunk ...
|
|
|
|
/// };
|
2012-02-06 22:30:29 +00:00
|
|
|
///
|
2009-04-06 20:54:32 +00:00
|
|
|
/// This function is called when we find a file with a matching magic number.
|
|
|
|
/// In this case, skip down to the subsection of the file that is actually a
|
|
|
|
/// BC file.
|
2012-02-06 22:30:29 +00:00
|
|
|
/// If 'VerifyBufferSize' is true, check that the buffer is large enough to
|
|
|
|
/// contain the whole bitcode file.
|
2012-06-20 08:39:33 +00:00
|
|
|
inline bool SkipBitcodeWrapperHeader(const unsigned char *&BufPtr,
|
|
|
|
const unsigned char *&BufEnd,
|
|
|
|
bool VerifyBufferSize) {
|
2009-04-06 20:54:32 +00:00
|
|
|
enum {
|
|
|
|
KnownHeaderSize = 4*4, // Size of header we read.
|
|
|
|
OffsetField = 2*4, // Offset in bytes to Offset field.
|
|
|
|
SizeField = 3*4 // Offset in bytes to Size field.
|
|
|
|
};
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
// Must contain the header!
|
|
|
|
if (BufEnd-BufPtr < KnownHeaderSize) return true;
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
unsigned Offset = ( BufPtr[OffsetField ] |
|
|
|
|
(BufPtr[OffsetField+1] << 8) |
|
|
|
|
(BufPtr[OffsetField+2] << 16) |
|
|
|
|
(BufPtr[OffsetField+3] << 24));
|
|
|
|
unsigned Size = ( BufPtr[SizeField ] |
|
|
|
|
(BufPtr[SizeField +1] << 8) |
|
|
|
|
(BufPtr[SizeField +2] << 16) |
|
|
|
|
(BufPtr[SizeField +3] << 24));
|
2012-02-06 22:30:29 +00:00
|
|
|
|
2009-04-06 20:54:32 +00:00
|
|
|
// Verify that Offset+Size fits in the file.
|
2012-02-06 22:30:29 +00:00
|
|
|
if (VerifyBufferSize && Offset+Size > unsigned(BufEnd-BufPtr))
|
2009-04-06 20:54:32 +00:00
|
|
|
return true;
|
|
|
|
BufPtr += Offset;
|
|
|
|
BufEnd = BufPtr+Size;
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-29 20:22:46 +00:00
|
|
|
|
|
|
|
const std::error_category &BitcodeErrorCategory();
|
2015-01-10 00:07:30 +00:00
|
|
|
enum class BitcodeError { InvalidBitcodeSignature, CorruptedBitcode };
|
2014-07-29 20:22:46 +00:00
|
|
|
inline std::error_code make_error_code(BitcodeError E) {
|
|
|
|
return std::error_code(static_cast<int>(E), BitcodeErrorCategory());
|
|
|
|
}
|
|
|
|
|
2015-01-10 00:07:30 +00:00
|
|
|
class BitcodeDiagnosticInfo : public DiagnosticInfo {
|
|
|
|
const Twine &Msg;
|
|
|
|
std::error_code EC;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BitcodeDiagnosticInfo(std::error_code EC, DiagnosticSeverity Severity,
|
|
|
|
const Twine &Msg);
|
|
|
|
void print(DiagnosticPrinter &DP) const override;
|
|
|
|
std::error_code getError() const { return EC; };
|
|
|
|
|
|
|
|
static bool classof(const DiagnosticInfo *DI) {
|
|
|
|
return DI->getKind() == DK_Bitcode;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2014-07-29 20:22:46 +00:00
|
|
|
namespace std {
|
|
|
|
template <> struct is_error_code_enum<llvm::BitcodeError> : std::true_type {};
|
|
|
|
}
|
|
|
|
|
2007-04-22 06:22:05 +00:00
|
|
|
#endif
|