blob: b94b791dcea0ad6798794120918cc7b113b250e5 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===-- ReaderInternals.h - Definitions internal to the reader ---*- C++ -*--=//
2//
3// This header file defines various stuff that is used by the bytecode reader.
4//
5//===----------------------------------------------------------------------===//
6
7#ifndef READER_INTERNALS_H
8#define READER_INTERNALS_H
9
10#include "llvm/Bytecode/Primitives.h"
11#include "llvm/SymTabValue.h"
12#include "llvm/Method.h"
13#include "llvm/Instruction.h"
14#include <map>
15#include <utility>
16
Chris Lattner1d670cc2001-09-07 16:37:43 +000017// Enable to trace to figure out what the heck is going on when parsing fails
18#define TRACE_LEVEL 0
19
20#if TRACE_LEVEL // ByteCodeReading_TRACEer
21#include "llvm/Assembly/Writer.h"
22#define BCR_TRACE(n, X) if (n < TRACE_LEVEL) cerr << string(n*2, ' ') << X
23#else
24#define BCR_TRACE(n, X)
25#endif
26
Chris Lattner00950542001-06-06 20:29:01 +000027class BasicBlock;
28class Method;
29class Module;
30class Type;
31
32typedef unsigned char uchar;
33
34struct RawInst { // The raw fields out of the bytecode stream...
35 unsigned NumOperands;
36 unsigned Opcode;
37 const Type *Ty;
38 unsigned Arg1, Arg2;
39 union {
40 unsigned Arg3;
41 vector<unsigned> *VarArgs; // Contains arg #3,4,5... if NumOperands > 3
42 };
43};
44
Chris Lattner1d670cc2001-09-07 16:37:43 +000045class BytecodeParser : public AbstractTypeUser {
Chris Lattner00950542001-06-06 20:29:01 +000046public:
47 BytecodeParser() {
48 // Define this in case we don't see a ModuleGlobalInfo block.
49 FirstDerivedTyID = Type::FirstDerivedTyID;
50 }
51
52 Module *ParseBytecode(const uchar *Buf, const uchar *EndBuf);
53private: // All of this data is transient across calls to ParseBytecode
54 typedef vector<Value *> ValueList;
55 typedef vector<ValueList> ValueTable;
Chris Lattner00950542001-06-06 20:29:01 +000056 ValueTable Values, LateResolveValues;
57 ValueTable ModuleValues, LateResolveModuleValues;
Chris Lattner1d670cc2001-09-07 16:37:43 +000058
59 // TypesLoaded - This vector mirrors the Values[TypeTyID] plane. It is used
60 // to deal with forward references to types.
61 //
62 typedef vector<PATypeHandle<Type> > TypeValuesListTy;
63 TypeValuesListTy ModuleTypeValues;
64 TypeValuesListTy MethodTypeValues;
Chris Lattner00950542001-06-06 20:29:01 +000065
66 // Information read from the ModuleGlobalInfo section of the file...
67 unsigned FirstDerivedTyID;
68
69 // When the ModuleGlobalInfo section is read, we load the type of each method
70 // and the 'ModuleValues' slot that it lands in. We then load a placeholder
71 // into its slot to reserve it. When the method is loaded, this placeholder
72 // is replaced.
73 //
74 list<pair<const MethodType *, unsigned> > MethodSignatureList;
75
76private:
77 bool ParseModule (const uchar * Buf, const uchar *End, Module *&);
78 bool ParseModuleGlobalInfo (const uchar *&Buf, const uchar *End, Module *);
Chris Lattner1d670cc2001-09-07 16:37:43 +000079 bool ParseSymbolTable (const uchar *&Buf, const uchar *End, SymbolTable *);
80 bool ParseMethod (const uchar *&Buf, const uchar *End, Module *);
Chris Lattner00950542001-06-06 20:29:01 +000081 bool ParseBasicBlock (const uchar *&Buf, const uchar *End, BasicBlock *&);
82 bool ParseInstruction (const uchar *&Buf, const uchar *End, Instruction *&);
83 bool ParseRawInst (const uchar *&Buf, const uchar *End, RawInst &);
84
85 bool ParseConstantPool(const uchar *&Buf, const uchar *EndBuf,
Chris Lattner1d670cc2001-09-07 16:37:43 +000086 ValueTable &Tab, TypeValuesListTy &TypeTab);
Chris Lattner00950542001-06-06 20:29:01 +000087 bool parseConstPoolValue(const uchar *&Buf, const uchar *End,
88 const Type *Ty, ConstPoolVal *&V);
Chris Lattner1d670cc2001-09-07 16:37:43 +000089 bool parseTypeConstants(const uchar *&Buf, const uchar *EndBuf,
90 TypeValuesListTy &Tab, unsigned NumEntries);
91 const Type *parseTypeConstant(const uchar *&Buf, const uchar *EndBuf);
Chris Lattner00950542001-06-06 20:29:01 +000092
93 Value *getValue(const Type *Ty, unsigned num, bool Create = true);
94 const Type *getType(unsigned ID);
95
96 bool insertValue(Value *D, vector<ValueList> &D);
97 bool postResolveValues(ValueTable &ValTab);
98
99 bool getTypeSlot(const Type *Ty, unsigned &Slot);
Chris Lattner1d670cc2001-09-07 16:37:43 +0000100
101
102 // refineAbstractType - The callback method is invoked when one of the
103 // elements of TypeValues becomes more concrete...
104 //
105 virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
Chris Lattner00950542001-06-06 20:29:01 +0000106};
107
108template<class SuperType>
109class PlaceholderDef : public SuperType {
110 unsigned ID;
111public:
112 PlaceholderDef(const Type *Ty, unsigned id) : SuperType(Ty), ID(id) {}
113 unsigned getID() { return ID; }
114};
115
116struct InstPlaceHolderHelper : public Instruction {
117 InstPlaceHolderHelper(const Type *Ty) : Instruction(Ty, UserOp1, "") {}
Chris Lattnera41f50d2001-07-07 19:24:15 +0000118 virtual const char *getOpcodeName() const { return "placeholder"; }
Chris Lattner00950542001-06-06 20:29:01 +0000119
120 virtual Instruction *clone() const { abort(); return 0; }
Chris Lattner00950542001-06-06 20:29:01 +0000121};
122
123struct BBPlaceHolderHelper : public BasicBlock {
124 BBPlaceHolderHelper(const Type *Ty) : BasicBlock() {
125 assert(Ty->isLabelType());
126 }
127};
128
129struct MethPlaceHolderHelper : public Method {
130 MethPlaceHolderHelper(const Type *Ty)
131 : Method((const MethodType*)Ty) {
132 assert(Ty->isMethodType() && "Method placeholders must be method types!");
133 }
134};
135
136typedef PlaceholderDef<InstPlaceHolderHelper> DefPHolder;
137typedef PlaceholderDef<BBPlaceHolderHelper> BBPHolder;
138typedef PlaceholderDef<MethPlaceHolderHelper> MethPHolder;
139
140static inline unsigned getValueIDNumberFromPlaceHolder(Value *Def) {
141 switch (Def->getType()->getPrimitiveID()) {
142 case Type::LabelTyID: return ((BBPHolder*)Def)->getID();
143 case Type::MethodTyID: return ((MethPHolder*)Def)->getID();
144 default: return ((DefPHolder*)Def)->getID();
145 }
146}
147
148static inline bool readBlock(const uchar *&Buf, const uchar *EndBuf,
149 unsigned &Type, unsigned &Size) {
150#if DEBUG_OUTPUT
151 bool Result = read(Buf, EndBuf, Type) || read(Buf, EndBuf, Size);
152 cerr << "StartLoc = " << ((unsigned)Buf & 4095)
153 << " Type = " << Type << " Size = " << Size << endl;
154 return Result;
155#else
156 return read(Buf, EndBuf, Type) || read(Buf, EndBuf, Size);
157#endif
158}
159
Chris Lattner3d3f2892001-07-28 17:50:18 +0000160
161// failure Template - This template function is used as a place to put
162// breakpoints in to debug failures of the bytecode parser.
163//
164template <typename X>
165static X failure(X Value) {
166 return Value;
167}
168
Chris Lattner00950542001-06-06 20:29:01 +0000169#endif