2007-04-22 06:23:29 +00:00
|
|
|
//===- BitcodeReader.h - Internal BitcodeReader impl ------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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-04-22 06:23:29 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header defines the BitcodeReader class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef BITCODE_READER_H
|
|
|
|
#define BITCODE_READER_H
|
|
|
|
|
|
|
|
#include "llvm/ModuleProvider.h"
|
2008-03-12 17:45:29 +00:00
|
|
|
#include "llvm/ParameterAttributes.h"
|
2007-04-24 05:48:56 +00:00
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/User.h"
|
2007-05-01 04:59:48 +00:00
|
|
|
#include "llvm/Bitcode/BitstreamReader.h"
|
2007-04-23 01:01:37 +00:00
|
|
|
#include "llvm/Bitcode/LLVMBitCodes.h"
|
2007-05-01 04:59:48 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2007-04-22 06:23:29 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
2007-04-29 07:54:31 +00:00
|
|
|
class MemoryBuffer;
|
2007-04-24 05:48:56 +00:00
|
|
|
|
|
|
|
class BitcodeReaderValueList : public User {
|
|
|
|
std::vector<Use> Uses;
|
|
|
|
public:
|
|
|
|
BitcodeReaderValueList() : User(Type::VoidTy, Value::ArgumentVal, 0, 0) {}
|
|
|
|
|
|
|
|
// vector compatibility methods
|
|
|
|
unsigned size() const { return getNumOperands(); }
|
|
|
|
void push_back(Value *V) {
|
|
|
|
Uses.push_back(Use(V, this));
|
|
|
|
OperandList = &Uses[0];
|
|
|
|
++NumOperands;
|
|
|
|
}
|
|
|
|
|
2007-05-18 04:02:46 +00:00
|
|
|
void clear() {
|
|
|
|
std::vector<Use>().swap(Uses);
|
|
|
|
}
|
|
|
|
|
2007-04-24 05:48:56 +00:00
|
|
|
Value *operator[](unsigned i) const { return getOperand(i); }
|
|
|
|
|
|
|
|
Value *back() const { return Uses.back(); }
|
|
|
|
void pop_back() { Uses.pop_back(); --NumOperands; }
|
|
|
|
bool empty() const { return NumOperands == 0; }
|
2007-04-26 03:27:58 +00:00
|
|
|
void shrinkTo(unsigned N) {
|
2007-05-01 05:52:21 +00:00
|
|
|
assert(N <= NumOperands && "Invalid shrinkTo request!");
|
2007-04-26 03:27:58 +00:00
|
|
|
Uses.resize(N);
|
|
|
|
NumOperands = N;
|
|
|
|
}
|
2007-04-24 05:48:56 +00:00
|
|
|
virtual void print(std::ostream&) const {}
|
|
|
|
|
|
|
|
Constant *getConstantFwdRef(unsigned Idx, const Type *Ty);
|
2007-05-01 07:01:57 +00:00
|
|
|
Value *getValueFwdRef(unsigned Idx, const Type *Ty);
|
|
|
|
|
|
|
|
void AssignValue(Value *V, unsigned Idx) {
|
|
|
|
if (Idx == size()) {
|
|
|
|
push_back(V);
|
|
|
|
} else if (Value *OldV = getOperand(Idx)) {
|
|
|
|
// If there was a forward reference to this value, replace it.
|
|
|
|
setOperand(Idx, V);
|
|
|
|
OldV->replaceAllUsesWith(V);
|
|
|
|
delete OldV;
|
|
|
|
} else {
|
|
|
|
initVal(Idx, V);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2007-04-24 05:48:56 +00:00
|
|
|
void initVal(unsigned Idx, Value *V) {
|
|
|
|
assert(Uses[Idx] == 0 && "Cannot init an already init'd Use!");
|
|
|
|
Uses[Idx].init(V, this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-04-22 06:23:29 +00:00
|
|
|
|
|
|
|
class BitcodeReader : public ModuleProvider {
|
2007-04-29 07:54:31 +00:00
|
|
|
MemoryBuffer *Buffer;
|
2007-05-01 04:59:48 +00:00
|
|
|
BitstreamReader Stream;
|
|
|
|
|
2007-04-22 06:23:29 +00:00
|
|
|
const char *ErrorString;
|
|
|
|
|
|
|
|
std::vector<PATypeHolder> TypeList;
|
2007-04-24 05:48:56 +00:00
|
|
|
BitcodeReaderValueList ValueList;
|
2007-04-24 03:30:34 +00:00
|
|
|
std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInits;
|
2007-04-26 02:46:40 +00:00
|
|
|
std::vector<std::pair<GlobalAlias*, unsigned> > AliasInits;
|
2007-05-01 04:59:48 +00:00
|
|
|
|
2007-05-04 03:30:17 +00:00
|
|
|
/// ParamAttrs - The set of parameter attributes by index. Index zero in the
|
|
|
|
/// file is for null, and is thus not represented here. As such all indices
|
|
|
|
/// are off by one.
|
2008-03-12 17:45:29 +00:00
|
|
|
std::vector<PAListPtr> ParamAttrs;
|
2007-05-04 03:30:17 +00:00
|
|
|
|
2007-05-01 05:52:21 +00:00
|
|
|
/// FunctionBBs - While parsing a function body, this is a list of the basic
|
|
|
|
/// blocks for the function.
|
|
|
|
std::vector<BasicBlock*> FunctionBBs;
|
|
|
|
|
2007-05-01 04:59:48 +00:00
|
|
|
// When reading the module header, this list is populated with functions that
|
|
|
|
// have bodies later in the file.
|
|
|
|
std::vector<Function*> FunctionsWithBodies;
|
2007-08-04 01:51:18 +00:00
|
|
|
|
|
|
|
// When intrinsic functions are encountered which require upgrading they are
|
|
|
|
// stored here with their replacement function.
|
|
|
|
typedef std::vector<std::pair<Function*, Function*> > UpgradedIntrinsicMap;
|
|
|
|
UpgradedIntrinsicMap UpgradedIntrinsics;
|
2007-05-01 04:59:48 +00:00
|
|
|
|
|
|
|
// After the module header has been read, the FunctionsWithBodies list is
|
|
|
|
// reversed. This keeps track of whether we've done this yet.
|
|
|
|
bool HasReversedFunctionsWithBodies;
|
|
|
|
|
|
|
|
/// DeferredFunctionInfo - When function bodies are initially scanned, this
|
|
|
|
/// map contains info about where to find deferred function body (in the
|
|
|
|
/// stream) and what linkage the original function had.
|
|
|
|
DenseMap<Function*, std::pair<uint64_t, unsigned> > DeferredFunctionInfo;
|
2007-04-22 06:23:29 +00:00
|
|
|
public:
|
2008-03-25 22:06:05 +00:00
|
|
|
explicit BitcodeReader(MemoryBuffer *buffer)
|
|
|
|
: Buffer(buffer), ErrorString(0) {
|
2007-05-01 04:59:48 +00:00
|
|
|
HasReversedFunctionsWithBodies = false;
|
|
|
|
}
|
2007-05-18 04:02:46 +00:00
|
|
|
~BitcodeReader() {
|
|
|
|
FreeState();
|
|
|
|
}
|
2007-04-22 06:23:29 +00:00
|
|
|
|
2007-05-18 04:02:46 +00:00
|
|
|
void FreeState();
|
2007-04-29 07:54:31 +00:00
|
|
|
|
|
|
|
/// releaseMemoryBuffer - This causes the reader to completely forget about
|
|
|
|
/// the memory buffer it contains, which prevents the buffer from being
|
|
|
|
/// destroyed when it is deleted.
|
|
|
|
void releaseMemoryBuffer() {
|
|
|
|
Buffer = 0;
|
|
|
|
}
|
2007-04-22 06:23:29 +00:00
|
|
|
|
2007-05-01 04:59:48 +00:00
|
|
|
virtual bool materializeFunction(Function *F, std::string *ErrInfo = 0);
|
2007-05-01 05:52:21 +00:00
|
|
|
virtual Module *materializeModule(std::string *ErrInfo = 0);
|
2007-05-15 06:29:44 +00:00
|
|
|
virtual void dematerializeFunction(Function *F);
|
2007-05-18 04:02:46 +00:00
|
|
|
virtual Module *releaseModule(std::string *ErrInfo = 0);
|
2007-05-15 06:29:44 +00:00
|
|
|
|
2007-04-22 06:23:29 +00:00
|
|
|
bool Error(const char *Str) {
|
|
|
|
ErrorString = Str;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
const char *getErrorString() const { return ErrorString; }
|
|
|
|
|
|
|
|
/// @brief Main interface to parsing a bitcode buffer.
|
|
|
|
/// @returns true if an error occurred.
|
2007-04-29 07:54:31 +00:00
|
|
|
bool ParseBitcode();
|
2007-04-22 06:23:29 +00:00
|
|
|
private:
|
|
|
|
const Type *getTypeByID(unsigned ID, bool isTypeTable = false);
|
2007-05-01 07:01:57 +00:00
|
|
|
Value *getFnValueByID(unsigned ID, const Type *Ty) {
|
|
|
|
return ValueList.getValueFwdRef(ID, Ty);
|
|
|
|
}
|
2007-05-02 05:46:45 +00:00
|
|
|
BasicBlock *getBasicBlock(unsigned ID) const {
|
|
|
|
if (ID >= FunctionBBs.size()) return 0; // Invalid ID
|
|
|
|
return FunctionBBs[ID];
|
|
|
|
}
|
2008-03-12 17:45:29 +00:00
|
|
|
PAListPtr getParamAttrs(unsigned i) const {
|
2007-05-04 03:30:17 +00:00
|
|
|
if (i-1 < ParamAttrs.size())
|
|
|
|
return ParamAttrs[i-1];
|
2008-03-12 17:45:29 +00:00
|
|
|
return PAListPtr();
|
2007-05-04 03:30:17 +00:00
|
|
|
}
|
2007-05-06 00:00:00 +00:00
|
|
|
|
|
|
|
/// getValueTypePair - Read a value/type pair out of the specified record from
|
|
|
|
/// slot 'Slot'. Increment Slot past the number of slots used in the record.
|
|
|
|
/// Return true on failure.
|
|
|
|
bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot,
|
|
|
|
unsigned InstNum, Value *&ResVal) {
|
|
|
|
if (Slot == Record.size()) return true;
|
2007-05-06 03:23:14 +00:00
|
|
|
unsigned ValNo = (unsigned)Record[Slot++];
|
2007-05-06 00:00:00 +00:00
|
|
|
if (ValNo < InstNum) {
|
|
|
|
// If this is not a forward reference, just return the value we already
|
|
|
|
// have.
|
|
|
|
ResVal = getFnValueByID(ValNo, 0);
|
|
|
|
return ResVal == 0;
|
|
|
|
} else if (Slot == Record.size()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-05-06 03:23:14 +00:00
|
|
|
unsigned TypeNo = (unsigned)Record[Slot++];
|
2007-05-06 00:00:00 +00:00
|
|
|
ResVal = getFnValueByID(ValNo, getTypeByID(TypeNo));
|
|
|
|
return ResVal == 0;
|
|
|
|
}
|
|
|
|
bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot,
|
|
|
|
const Type *Ty, Value *&ResVal) {
|
|
|
|
if (Slot == Record.size()) return true;
|
2007-05-06 03:23:14 +00:00
|
|
|
unsigned ValNo = (unsigned)Record[Slot++];
|
2007-05-06 00:00:00 +00:00
|
|
|
ResVal = getFnValueByID(ValNo, Ty);
|
|
|
|
return ResVal == 0;
|
|
|
|
}
|
2007-05-04 03:30:17 +00:00
|
|
|
|
2007-04-22 06:23:29 +00:00
|
|
|
|
2007-05-01 05:01:34 +00:00
|
|
|
bool ParseModule(const std::string &ModuleID);
|
2007-05-04 03:30:17 +00:00
|
|
|
bool ParseParamAttrBlock();
|
2007-05-01 05:01:34 +00:00
|
|
|
bool ParseTypeTable();
|
|
|
|
bool ParseTypeSymbolTable();
|
|
|
|
bool ParseValueSymbolTable();
|
|
|
|
bool ParseConstants();
|
2007-05-01 05:52:21 +00:00
|
|
|
bool RememberAndSkipFunctionBody();
|
|
|
|
bool ParseFunctionBody(Function *F);
|
2007-04-26 02:46:40 +00:00
|
|
|
bool ResolveGlobalAndAliasInits();
|
2007-04-22 06:23:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|