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
|
|
|
|
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
|
2014-09-03 17:31:46 +00:00
|
|
|
/// deserialization of function bodies. If successful, this moves Buffer. On
|
|
|
|
/// error, this *does not* move Buffer.
|
|
|
|
ErrorOr<Module *> getLazyBitcodeModule(std::unique_ptr<MemoryBuffer> &&Buffer,
|
2014-06-23 21:53:12 +00:00
|
|
|
LLVMContext &Context);
|
2007-04-22 06:22:05 +00:00
|
|
|
|
2012-02-06 22:30:29 +00:00
|
|
|
/// getStreamedBitcodeModule - Read the header of the specified stream
|
|
|
|
/// and prepare for lazy deserialization and streaming of function bodies.
|
|
|
|
/// On error, this returns null, and fills in *ErrMsg with an error
|
|
|
|
/// description if ErrMsg is non-null.
|
|
|
|
Module *getStreamedBitcodeModule(const std::string &name,
|
|
|
|
DataStreamer *streamer,
|
|
|
|
LLVMContext &Context,
|
2014-04-09 06:08:46 +00:00
|
|
|
std::string *ErrMsg = 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 "".
|
|
|
|
std::string getBitcodeTargetTriple(MemoryBufferRef Buffer,
|
2014-07-04 20:02:42 +00:00
|
|
|
LLVMContext &Context);
|
2010-10-06 01:22:42 +00:00
|
|
|
|
2014-01-15 01:08:23 +00:00
|
|
|
/// Read the specified bitcode file, returning the module.
|
2014-08-26 21:49:01 +00:00
|
|
|
ErrorOr<Module *> parseBitcodeFile(MemoryBufferRef Buffer,
|
2014-01-15 01:08:23 +00:00
|
|
|
LLVMContext &Context);
|
2009-02-20 23:04:06 +00:00
|
|
|
|
2008-10-22 17:39:14 +00:00
|
|
|
/// WriteBitcodeToFile - Write the specified module to the specified
|
2010-05-27 20:06:51 +00:00
|
|
|
/// raw output stream. For streams where it matters, the given stream
|
|
|
|
/// should be in "binary" mode.
|
2008-10-22 17:39:14 +00:00
|
|
|
void WriteBitcodeToFile(const Module *M, raw_ostream &Out);
|
|
|
|
|
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();
|
|
|
|
enum class BitcodeError {
|
|
|
|
ConflictingMETADATA_KINDRecords,
|
|
|
|
CouldNotFindFunctionInStream,
|
|
|
|
ExpectedConstant,
|
|
|
|
InsufficientFunctionProtos,
|
|
|
|
InvalidBitcodeSignature,
|
|
|
|
InvalidBitcodeWrapperHeader,
|
|
|
|
InvalidConstantReference,
|
|
|
|
InvalidID, // A read identifier is not found in the table it should be in.
|
|
|
|
InvalidInstructionWithNoBB,
|
|
|
|
InvalidRecord, // A read record doesn't have the expected size or structure
|
|
|
|
InvalidTypeForValue, // Type read OK, but is invalid for its use
|
|
|
|
InvalidTYPETable,
|
|
|
|
InvalidType, // We were unable to read a type
|
|
|
|
MalformedBlock, // We are unable to advance in the stream.
|
|
|
|
MalformedGlobalInitializerSet,
|
|
|
|
InvalidMultipleBlocks, // We found multiple blocks of a kind that should
|
|
|
|
// have only one
|
|
|
|
NeverResolvedValueFoundInFunction,
|
2014-08-01 21:11:34 +00:00
|
|
|
NeverResolvedFunctionFromBlockAddress,
|
2014-07-29 20:22:46 +00:00
|
|
|
InvalidValue // Invalid version, inst number, attr number, etc
|
|
|
|
};
|
|
|
|
inline std::error_code make_error_code(BitcodeError E) {
|
|
|
|
return std::error_code(static_cast<int>(E), BitcodeErrorCategory());
|
|
|
|
}
|
|
|
|
|
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
|