blob: 0e407697aa30deae9eb3ba4dc41a443c5de49193 [file] [log] [blame]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001//===- BitcodeReader.h - Internal BitcodeReader impl ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This header defines the BitcodeReader class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef BITCODE_READER_H
15#define BITCODE_READER_H
16
Chris Lattnercaee0dc2007-04-22 06:23:29 +000017#include "llvm/ModuleProvider.h"
Chris Lattner522b7b12007-04-24 05:48:56 +000018#include "llvm/Type.h"
19#include "llvm/User.h"
Chris Lattner48f84872007-05-01 04:59:48 +000020#include "llvm/Bitcode/BitstreamReader.h"
Chris Lattner47f96bf2007-04-23 01:01:37 +000021#include "llvm/Bitcode/LLVMBitCodes.h"
Chris Lattner48f84872007-05-01 04:59:48 +000022#include "llvm/ADT/DenseMap.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000023#include <vector>
24
25namespace llvm {
Chris Lattnerc453f762007-04-29 07:54:31 +000026 class MemoryBuffer;
Chris Lattner522b7b12007-04-24 05:48:56 +000027
28class BitcodeReaderValueList : public User {
29 std::vector<Use> Uses;
30public:
31 BitcodeReaderValueList() : User(Type::VoidTy, Value::ArgumentVal, 0, 0) {}
32
33 // vector compatibility methods
34 unsigned size() const { return getNumOperands(); }
35 void push_back(Value *V) {
36 Uses.push_back(Use(V, this));
37 OperandList = &Uses[0];
38 ++NumOperands;
39 }
40
41 Value *operator[](unsigned i) const { return getOperand(i); }
42
43 Value *back() const { return Uses.back(); }
44 void pop_back() { Uses.pop_back(); --NumOperands; }
45 bool empty() const { return NumOperands == 0; }
Chris Lattner198f34a2007-04-26 03:27:58 +000046 void shrinkTo(unsigned N) {
47 assert(N < NumOperands && "Invalid shrinkTo request!");
48 Uses.resize(N);
49 NumOperands = N;
50 }
Chris Lattner522b7b12007-04-24 05:48:56 +000051 virtual void print(std::ostream&) const {}
52
53 Constant *getConstantFwdRef(unsigned Idx, const Type *Ty);
54 void initVal(unsigned Idx, Value *V) {
55 assert(Uses[Idx] == 0 && "Cannot init an already init'd Use!");
56 Uses[Idx].init(V, this);
57 }
58};
59
Chris Lattnercaee0dc2007-04-22 06:23:29 +000060
61class BitcodeReader : public ModuleProvider {
Chris Lattnerc453f762007-04-29 07:54:31 +000062 MemoryBuffer *Buffer;
Chris Lattner48f84872007-05-01 04:59:48 +000063 BitstreamReader Stream;
64
Chris Lattnercaee0dc2007-04-22 06:23:29 +000065 const char *ErrorString;
66
67 std::vector<PATypeHolder> TypeList;
Chris Lattner522b7b12007-04-24 05:48:56 +000068 BitcodeReaderValueList ValueList;
Chris Lattnere16504e2007-04-24 03:30:34 +000069 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInits;
Chris Lattner07d98b42007-04-26 02:46:40 +000070 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInits;
Chris Lattner48f84872007-05-01 04:59:48 +000071
72 // When reading the module header, this list is populated with functions that
73 // have bodies later in the file.
74 std::vector<Function*> FunctionsWithBodies;
75
76 // After the module header has been read, the FunctionsWithBodies list is
77 // reversed. This keeps track of whether we've done this yet.
78 bool HasReversedFunctionsWithBodies;
79
80 /// DeferredFunctionInfo - When function bodies are initially scanned, this
81 /// map contains info about where to find deferred function body (in the
82 /// stream) and what linkage the original function had.
83 DenseMap<Function*, std::pair<uint64_t, unsigned> > DeferredFunctionInfo;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000084public:
Chris Lattner48f84872007-05-01 04:59:48 +000085 BitcodeReader(MemoryBuffer *buffer) : Buffer(buffer), ErrorString(0) {
86 HasReversedFunctionsWithBodies = false;
87 }
Chris Lattnerc453f762007-04-29 07:54:31 +000088 ~BitcodeReader();
Chris Lattnercaee0dc2007-04-22 06:23:29 +000089
Chris Lattnerc453f762007-04-29 07:54:31 +000090
91 /// releaseMemoryBuffer - This causes the reader to completely forget about
92 /// the memory buffer it contains, which prevents the buffer from being
93 /// destroyed when it is deleted.
94 void releaseMemoryBuffer() {
95 Buffer = 0;
96 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +000097
Chris Lattner48f84872007-05-01 04:59:48 +000098 virtual bool materializeFunction(Function *F, std::string *ErrInfo = 0);
Chris Lattnercaee0dc2007-04-22 06:23:29 +000099
100 virtual Module *materializeModule(std::string *ErrInfo = 0) {
101 // FIXME: TODO
102 //if (ParseAllFunctionBodies(ErrMsg))
103 // return 0;
104 return TheModule;
105 }
106
107 bool Error(const char *Str) {
108 ErrorString = Str;
109 return true;
110 }
111 const char *getErrorString() const { return ErrorString; }
112
113 /// @brief Main interface to parsing a bitcode buffer.
114 /// @returns true if an error occurred.
Chris Lattnerc453f762007-04-29 07:54:31 +0000115 bool ParseBitcode();
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000116private:
117 const Type *getTypeByID(unsigned ID, bool isTypeTable = false);
118
Chris Lattner86697142007-05-01 05:01:34 +0000119 bool ParseModule(const std::string &ModuleID);
120 bool ParseTypeTable();
121 bool ParseTypeSymbolTable();
122 bool ParseValueSymbolTable();
123 bool ParseConstants();
124 bool ParseFunction();
Chris Lattner07d98b42007-04-26 02:46:40 +0000125 bool ResolveGlobalAndAliasInits();
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000126};
127
128} // End llvm namespace
129
130#endif