blob: 3501d8775860dd1713d2a547729d56cbe02da683 [file] [log] [blame]
Chris Lattnerd6b65252001-10-24 01:15:12 +00001//===- Reader.cpp - Code to read bytecode files ---------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Bytecode/Reader.h
11//
12// Note that this library should be as fast as possible, reentrant, and
13// threadsafe!!
14//
Chris Lattner00950542001-06-06 20:29:01 +000015// TODO: Allow passing in an option to ignore the symbol table
16//
Chris Lattnerd6b65252001-10-24 01:15:12 +000017//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +000018
Reid Spencer060d25d2004-06-29 23:29:38 +000019#include "Reader.h"
20#include "llvm/Bytecode/BytecodeHandler.h"
21#include "llvm/BasicBlock.h"
22#include "llvm/Constants.h"
Reid Spencer04cde2c2004-07-04 11:33:49 +000023#include "llvm/Instructions.h"
24#include "llvm/SymbolTable.h"
Chris Lattner00950542001-06-06 20:29:01 +000025#include "llvm/Bytecode/Format.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000026#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/ADT/StringExtras.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000028#include <sstream>
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000029#include <algorithm>
Chris Lattner29b789b2003-11-19 17:27:18 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Reid Spencer46b002c2004-07-11 17:28:43 +000032namespace {
33
Reid Spencer060d25d2004-06-29 23:29:38 +000034/// @brief A class for maintaining the slot number definition
Reid Spencer46b002c2004-07-11 17:28:43 +000035/// as a placeholder for the actual definition for forward constants defs.
36class ConstantPlaceHolder : public ConstantExpr {
Reid Spencer060d25d2004-06-29 23:29:38 +000037 unsigned ID;
Reid Spencer46b002c2004-07-11 17:28:43 +000038 ConstantPlaceHolder(); // DO NOT IMPLEMENT
39 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Reid Spencer060d25d2004-06-29 23:29:38 +000040public:
Reid Spencer46b002c2004-07-11 17:28:43 +000041 ConstantPlaceHolder(const Type *Ty, unsigned id)
42 : ConstantExpr(Instruction::UserOp1, Constant::getNullValue(Ty), Ty),
43 ID(id) {}
Reid Spencer060d25d2004-06-29 23:29:38 +000044 unsigned getID() { return ID; }
45};
Chris Lattner9e460f22003-10-04 20:00:03 +000046
Reid Spencer46b002c2004-07-11 17:28:43 +000047}
Reid Spencer060d25d2004-06-29 23:29:38 +000048
Reid Spencer24399722004-07-09 22:21:33 +000049// Provide some details on error
50inline void BytecodeReader::error(std::string err) {
51 err += " (Vers=" ;
52 err += itostr(RevisionNum) ;
53 err += ", Pos=" ;
54 err += itostr(At-MemStart);
55 err += ")";
56 throw err;
57}
58
Reid Spencer060d25d2004-06-29 23:29:38 +000059//===----------------------------------------------------------------------===//
60// Bytecode Reading Methods
61//===----------------------------------------------------------------------===//
62
Reid Spencer04cde2c2004-07-04 11:33:49 +000063/// Determine if the current block being read contains any more data.
Reid Spencer060d25d2004-06-29 23:29:38 +000064inline bool BytecodeReader::moreInBlock() {
65 return At < BlockEnd;
Chris Lattner00950542001-06-06 20:29:01 +000066}
67
Reid Spencer04cde2c2004-07-04 11:33:49 +000068/// Throw an error if we've read past the end of the current block
Reid Spencer060d25d2004-06-29 23:29:38 +000069inline void BytecodeReader::checkPastBlockEnd(const char * block_name) {
Reid Spencer46b002c2004-07-11 17:28:43 +000070 if (At > BlockEnd)
Chris Lattnera79e7cc2004-10-16 18:18:16 +000071 error(std::string("Attempt to read past the end of ") + block_name +
72 " block.");
Reid Spencer060d25d2004-06-29 23:29:38 +000073}
Chris Lattner36392bc2003-10-08 21:18:57 +000074
Reid Spencer04cde2c2004-07-04 11:33:49 +000075/// Align the buffer position to a 32 bit boundary
Reid Spencer060d25d2004-06-29 23:29:38 +000076inline void BytecodeReader::align32() {
Reid Spencer38d54be2004-08-17 07:45:14 +000077 if (hasAlignment) {
78 BufPtr Save = At;
79 At = (const unsigned char *)((unsigned long)(At+3) & (~3UL));
80 if (At > Save)
81 if (Handler) Handler->handleAlignment(At - Save);
82 if (At > BlockEnd)
83 error("Ran out of data while aligning!");
84 }
Reid Spencer060d25d2004-06-29 23:29:38 +000085}
86
Reid Spencer04cde2c2004-07-04 11:33:49 +000087/// Read a whole unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +000088inline unsigned BytecodeReader::read_uint() {
89 if (At+4 > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +000090 error("Ran out of data reading uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +000091 At += 4;
92 return At[-4] | (At[-3] << 8) | (At[-2] << 16) | (At[-1] << 24);
93}
94
Reid Spencer04cde2c2004-07-04 11:33:49 +000095/// Read a variable-bit-rate encoded unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +000096inline unsigned BytecodeReader::read_vbr_uint() {
97 unsigned Shift = 0;
98 unsigned Result = 0;
99 BufPtr Save = At;
100
101 do {
102 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000103 error("Ran out of data reading vbr_uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000104 Result |= (unsigned)((*At++) & 0x7F) << Shift;
105 Shift += 7;
106 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000107 if (Handler) Handler->handleVBR32(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000108 return Result;
109}
110
Reid Spencer04cde2c2004-07-04 11:33:49 +0000111/// Read a variable-bit-rate encoded unsigned 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000112inline uint64_t BytecodeReader::read_vbr_uint64() {
113 unsigned Shift = 0;
114 uint64_t Result = 0;
115 BufPtr Save = At;
116
117 do {
118 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000119 error("Ran out of data reading vbr_uint64!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000120 Result |= (uint64_t)((*At++) & 0x7F) << Shift;
121 Shift += 7;
122 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000123 if (Handler) Handler->handleVBR64(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000124 return Result;
125}
126
Reid Spencer04cde2c2004-07-04 11:33:49 +0000127/// Read a variable-bit-rate encoded signed 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000128inline int64_t BytecodeReader::read_vbr_int64() {
129 uint64_t R = read_vbr_uint64();
130 if (R & 1) {
131 if (R != 1)
132 return -(int64_t)(R >> 1);
133 else // There is no such thing as -0 with integers. "-0" really means
134 // 0x8000000000000000.
135 return 1LL << 63;
136 } else
137 return (int64_t)(R >> 1);
138}
139
Reid Spencer04cde2c2004-07-04 11:33:49 +0000140/// Read a pascal-style string (length followed by text)
Reid Spencer060d25d2004-06-29 23:29:38 +0000141inline std::string BytecodeReader::read_str() {
142 unsigned Size = read_vbr_uint();
143 const unsigned char *OldAt = At;
144 At += Size;
145 if (At > BlockEnd) // Size invalid?
Reid Spencer24399722004-07-09 22:21:33 +0000146 error("Ran out of data reading a string!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000147 return std::string((char*)OldAt, Size);
148}
149
Reid Spencer04cde2c2004-07-04 11:33:49 +0000150/// Read an arbitrary block of data
Reid Spencer060d25d2004-06-29 23:29:38 +0000151inline void BytecodeReader::read_data(void *Ptr, void *End) {
152 unsigned char *Start = (unsigned char *)Ptr;
153 unsigned Amount = (unsigned char *)End - Start;
154 if (At+Amount > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000155 error("Ran out of data!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000156 std::copy(At, At+Amount, Start);
157 At += Amount;
158}
159
Reid Spencer46b002c2004-07-11 17:28:43 +0000160/// Read a float value in little-endian order
161inline void BytecodeReader::read_float(float& FloatVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000162 /// FIXME: This isn't optimal, it has size problems on some platforms
163 /// where FP is not IEEE.
164 union {
165 float f;
166 uint32_t i;
167 } FloatUnion;
168 FloatUnion.i = At[0] | (At[1] << 8) | (At[2] << 16) | (At[3] << 24);
169 At+=sizeof(uint32_t);
170 FloatVal = FloatUnion.f;
Reid Spencer46b002c2004-07-11 17:28:43 +0000171}
172
173/// Read a double value in little-endian order
174inline void BytecodeReader::read_double(double& DoubleVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000175 /// FIXME: This isn't optimal, it has size problems on some platforms
176 /// where FP is not IEEE.
177 union {
178 double d;
179 uint64_t i;
180 } DoubleUnion;
Chris Lattner1d785162004-07-25 23:15:44 +0000181 DoubleUnion.i = (uint64_t(At[0]) << 0) | (uint64_t(At[1]) << 8) |
182 (uint64_t(At[2]) << 16) | (uint64_t(At[3]) << 24) |
Reid Spencerada16182004-07-25 21:36:26 +0000183 (uint64_t(At[4]) << 32) | (uint64_t(At[5]) << 40) |
184 (uint64_t(At[6]) << 48) | (uint64_t(At[7]) << 56);
185 At+=sizeof(uint64_t);
186 DoubleVal = DoubleUnion.d;
Reid Spencer46b002c2004-07-11 17:28:43 +0000187}
188
Reid Spencer04cde2c2004-07-04 11:33:49 +0000189/// Read a block header and obtain its type and size
Reid Spencer060d25d2004-06-29 23:29:38 +0000190inline void BytecodeReader::read_block(unsigned &Type, unsigned &Size) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000191 if ( hasLongBlockHeaders ) {
192 Type = read_uint();
193 Size = read_uint();
194 switch (Type) {
195 case BytecodeFormat::Reserved_DoNotUse :
196 error("Reserved_DoNotUse used as Module Type?");
Reid Spencer5b472d92004-08-21 20:49:23 +0000197 Type = BytecodeFormat::ModuleBlockID; break;
Reid Spencerad89bd62004-07-25 18:07:36 +0000198 case BytecodeFormat::Module:
199 Type = BytecodeFormat::ModuleBlockID; break;
200 case BytecodeFormat::Function:
201 Type = BytecodeFormat::FunctionBlockID; break;
202 case BytecodeFormat::ConstantPool:
203 Type = BytecodeFormat::ConstantPoolBlockID; break;
204 case BytecodeFormat::SymbolTable:
205 Type = BytecodeFormat::SymbolTableBlockID; break;
206 case BytecodeFormat::ModuleGlobalInfo:
207 Type = BytecodeFormat::ModuleGlobalInfoBlockID; break;
208 case BytecodeFormat::GlobalTypePlane:
209 Type = BytecodeFormat::GlobalTypePlaneBlockID; break;
210 case BytecodeFormat::InstructionList:
211 Type = BytecodeFormat::InstructionListBlockID; break;
212 case BytecodeFormat::CompactionTable:
213 Type = BytecodeFormat::CompactionTableBlockID; break;
214 case BytecodeFormat::BasicBlock:
215 /// This block type isn't used after version 1.1. However, we have to
216 /// still allow the value in case this is an old bc format file.
217 /// We just let its value creep thru.
218 break;
219 default:
Reid Spencer5b472d92004-08-21 20:49:23 +0000220 error("Invalid block id found: " + utostr(Type));
Reid Spencerad89bd62004-07-25 18:07:36 +0000221 break;
222 }
223 } else {
224 Size = read_uint();
225 Type = Size & 0x1F; // mask low order five bits
226 Size >>= 5; // get rid of five low order bits, leaving high 27
227 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000228 BlockStart = At;
Reid Spencer46b002c2004-07-11 17:28:43 +0000229 if (At + Size > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000230 error("Attempt to size a block past end of memory");
Reid Spencer060d25d2004-06-29 23:29:38 +0000231 BlockEnd = At + Size;
Reid Spencer46b002c2004-07-11 17:28:43 +0000232 if (Handler) Handler->handleBlock(Type, BlockStart, Size);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000233}
234
235
236/// In LLVM 1.2 and before, Types were derived from Value and so they were
237/// written as part of the type planes along with any other Value. In LLVM
238/// 1.3 this changed so that Type does not derive from Value. Consequently,
239/// the BytecodeReader's containers for Values can't contain Types because
240/// there's no inheritance relationship. This means that the "Type Type"
241/// plane is defunct along with the Type::TypeTyID TypeID. In LLVM 1.3
242/// whenever a bytecode construct must have both types and values together,
243/// the types are always read/written first and then the Values. Furthermore
244/// since Type::TypeTyID no longer exists, its value (12) now corresponds to
245/// Type::LabelTyID. In order to overcome this we must "sanitize" all the
246/// type TypeIDs we encounter. For LLVM 1.3 bytecode files, there's no change.
247/// For LLVM 1.2 and before, this function will decrement the type id by
248/// one to account for the missing Type::TypeTyID enumerator if the value is
249/// larger than 12 (Type::LabelTyID). If the value is exactly 12, then this
250/// function returns true, otherwise false. This helps detect situations
251/// where the pre 1.3 bytecode is indicating that what follows is a type.
252/// @returns true iff type id corresponds to pre 1.3 "type type"
Reid Spencer46b002c2004-07-11 17:28:43 +0000253inline bool BytecodeReader::sanitizeTypeId(unsigned &TypeId) {
254 if (hasTypeDerivedFromValue) { /// do nothing if 1.3 or later
255 if (TypeId == Type::LabelTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +0000256 TypeId = Type::VoidTyID; // sanitize it
257 return true; // indicate we got TypeTyID in pre 1.3 bytecode
Reid Spencer46b002c2004-07-11 17:28:43 +0000258 } else if (TypeId > Type::LabelTyID)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000259 --TypeId; // shift all planes down because type type plane is missing
260 }
261 return false;
262}
263
264/// Reads a vbr uint to read in a type id and does the necessary
265/// conversion on it by calling sanitizeTypeId.
266/// @returns true iff \p TypeId read corresponds to a pre 1.3 "type type"
267/// @see sanitizeTypeId
268inline bool BytecodeReader::read_typeid(unsigned &TypeId) {
269 TypeId = read_vbr_uint();
Reid Spencerad89bd62004-07-25 18:07:36 +0000270 if ( !has32BitTypes )
271 if ( TypeId == 0x00FFFFFF )
272 TypeId = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000273 return sanitizeTypeId(TypeId);
Reid Spencer060d25d2004-06-29 23:29:38 +0000274}
275
276//===----------------------------------------------------------------------===//
277// IR Lookup Methods
278//===----------------------------------------------------------------------===//
279
Reid Spencer04cde2c2004-07-04 11:33:49 +0000280/// Determine if a type id has an implicit null value
Reid Spencer46b002c2004-07-11 17:28:43 +0000281inline bool BytecodeReader::hasImplicitNull(unsigned TyID) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000282 if (!hasExplicitPrimitiveZeros)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000283 return TyID != Type::LabelTyID && TyID != Type::VoidTyID;
Reid Spencer060d25d2004-06-29 23:29:38 +0000284 return TyID >= Type::FirstDerivedTyID;
285}
286
Reid Spencer04cde2c2004-07-04 11:33:49 +0000287/// Obtain a type given a typeid and account for things like compaction tables,
288/// function level vs module level, and the offsetting for the primitive types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000289const Type *BytecodeReader::getType(unsigned ID) {
Chris Lattner89e02532004-01-18 21:08:15 +0000290 if (ID < Type::FirstDerivedTyID)
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000291 if (const Type *T = Type::getPrimitiveType((Type::TypeID)ID))
Chris Lattner927b1852003-10-09 20:22:47 +0000292 return T; // Asked for a primitive type...
Chris Lattner36392bc2003-10-08 21:18:57 +0000293
294 // Otherwise, derived types need offset...
Chris Lattner89e02532004-01-18 21:08:15 +0000295 ID -= Type::FirstDerivedTyID;
296
Reid Spencer060d25d2004-06-29 23:29:38 +0000297 if (!CompactionTypes.empty()) {
298 if (ID >= CompactionTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000299 error("Type ID out of range for compaction table!");
Chris Lattner45b5dd22004-08-03 23:41:28 +0000300 return CompactionTypes[ID].first;
Chris Lattner89e02532004-01-18 21:08:15 +0000301 }
Chris Lattner36392bc2003-10-08 21:18:57 +0000302
303 // Is it a module-level type?
Reid Spencer46b002c2004-07-11 17:28:43 +0000304 if (ID < ModuleTypes.size())
305 return ModuleTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000306
Reid Spencer46b002c2004-07-11 17:28:43 +0000307 // Nope, is it a function-level type?
308 ID -= ModuleTypes.size();
309 if (ID < FunctionTypes.size())
310 return FunctionTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000311
Reid Spencer46b002c2004-07-11 17:28:43 +0000312 error("Illegal type reference!");
313 return Type::VoidTy;
Chris Lattner00950542001-06-06 20:29:01 +0000314}
315
Reid Spencer04cde2c2004-07-04 11:33:49 +0000316/// Get a sanitized type id. This just makes sure that the \p ID
317/// is both sanitized and not the "type type" of pre-1.3 bytecode.
318/// @see sanitizeTypeId
319inline const Type* BytecodeReader::getSanitizedType(unsigned& ID) {
Reid Spencer46b002c2004-07-11 17:28:43 +0000320 if (sanitizeTypeId(ID))
Reid Spencer24399722004-07-09 22:21:33 +0000321 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000322 return getType(ID);
323}
324
325/// This method just saves some coding. It uses read_typeid to read
Reid Spencer24399722004-07-09 22:21:33 +0000326/// in a sanitized type id, errors that its not the type type, and
Reid Spencer04cde2c2004-07-04 11:33:49 +0000327/// then calls getType to return the type value.
328inline const Type* BytecodeReader::readSanitizedType() {
329 unsigned ID;
Reid Spencer46b002c2004-07-11 17:28:43 +0000330 if (read_typeid(ID))
331 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000332 return getType(ID);
333}
334
335/// Get the slot number associated with a type accounting for primitive
336/// types, compaction tables, and function level vs module level.
Reid Spencer060d25d2004-06-29 23:29:38 +0000337unsigned BytecodeReader::getTypeSlot(const Type *Ty) {
338 if (Ty->isPrimitiveType())
339 return Ty->getTypeID();
340
341 // Scan the compaction table for the type if needed.
342 if (!CompactionTypes.empty()) {
Chris Lattner45b5dd22004-08-03 23:41:28 +0000343 for (unsigned i = 0, e = CompactionTypes.size(); i != e; ++i)
344 if (CompactionTypes[i].first == Ty)
345 return Type::FirstDerivedTyID + i;
Reid Spencer060d25d2004-06-29 23:29:38 +0000346
Chris Lattner45b5dd22004-08-03 23:41:28 +0000347 error("Couldn't find type specified in compaction table!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000348 }
349
350 // Check the function level types first...
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000351 TypeListTy::iterator I = std::find(FunctionTypes.begin(),
352 FunctionTypes.end(), Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +0000353
354 if (I != FunctionTypes.end())
Reid Spencer46b002c2004-07-11 17:28:43 +0000355 return Type::FirstDerivedTyID + ModuleTypes.size() +
356 (&*I - &FunctionTypes[0]);
Reid Spencer060d25d2004-06-29 23:29:38 +0000357
358 // Check the module level types now...
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000359 I = std::find(ModuleTypes.begin(), ModuleTypes.end(), Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +0000360 if (I == ModuleTypes.end())
Reid Spencer24399722004-07-09 22:21:33 +0000361 error("Didn't find type in ModuleTypes.");
Reid Spencer060d25d2004-06-29 23:29:38 +0000362 return Type::FirstDerivedTyID + (&*I - &ModuleTypes[0]);
Chris Lattner80b97342004-01-17 23:25:43 +0000363}
364
Reid Spencer04cde2c2004-07-04 11:33:49 +0000365/// This is just like getType, but when a compaction table is in use, it is
366/// ignored. It also ignores function level types.
367/// @see getType
Reid Spencer060d25d2004-06-29 23:29:38 +0000368const Type *BytecodeReader::getGlobalTableType(unsigned Slot) {
369 if (Slot < Type::FirstDerivedTyID) {
370 const Type *Ty = Type::getPrimitiveType((Type::TypeID)Slot);
Reid Spencer46b002c2004-07-11 17:28:43 +0000371 if (!Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000372 error("Not a primitive type ID?");
Reid Spencer060d25d2004-06-29 23:29:38 +0000373 return Ty;
374 }
375 Slot -= Type::FirstDerivedTyID;
376 if (Slot >= ModuleTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000377 error("Illegal compaction table type reference!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000378 return ModuleTypes[Slot];
Chris Lattner52e20b02003-03-19 20:54:26 +0000379}
380
Reid Spencer04cde2c2004-07-04 11:33:49 +0000381/// This is just like getTypeSlot, but when a compaction table is in use, it
382/// is ignored. It also ignores function level types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000383unsigned BytecodeReader::getGlobalTableTypeSlot(const Type *Ty) {
384 if (Ty->isPrimitiveType())
385 return Ty->getTypeID();
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000386 TypeListTy::iterator I = std::find(ModuleTypes.begin(),
Reid Spencer04cde2c2004-07-04 11:33:49 +0000387 ModuleTypes.end(), Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +0000388 if (I == ModuleTypes.end())
Reid Spencer24399722004-07-09 22:21:33 +0000389 error("Didn't find type in ModuleTypes.");
Reid Spencer060d25d2004-06-29 23:29:38 +0000390 return Type::FirstDerivedTyID + (&*I - &ModuleTypes[0]);
391}
392
Reid Spencer04cde2c2004-07-04 11:33:49 +0000393/// Retrieve a value of a given type and slot number, possibly creating
394/// it if it doesn't already exist.
Reid Spencer060d25d2004-06-29 23:29:38 +0000395Value * BytecodeReader::getValue(unsigned type, unsigned oNum, bool Create) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +0000396 assert(type != Type::LabelTyID && "getValue() cannot get blocks!");
Chris Lattner00950542001-06-06 20:29:01 +0000397 unsigned Num = oNum;
Chris Lattner00950542001-06-06 20:29:01 +0000398
Chris Lattner89e02532004-01-18 21:08:15 +0000399 // If there is a compaction table active, it defines the low-level numbers.
400 // If not, the module values define the low-level numbers.
Reid Spencer060d25d2004-06-29 23:29:38 +0000401 if (CompactionValues.size() > type && !CompactionValues[type].empty()) {
402 if (Num < CompactionValues[type].size())
403 return CompactionValues[type][Num];
404 Num -= CompactionValues[type].size();
Chris Lattner89e02532004-01-18 21:08:15 +0000405 } else {
Reid Spencer060d25d2004-06-29 23:29:38 +0000406 // By default, the global type id is the type id passed in
Chris Lattner52f86d62004-01-20 00:54:06 +0000407 unsigned GlobalTyID = type;
Reid Spencer060d25d2004-06-29 23:29:38 +0000408
Chris Lattner45b5dd22004-08-03 23:41:28 +0000409 // If the type plane was compactified, figure out the global type ID by
410 // adding the derived type ids and the distance.
411 if (!CompactionTypes.empty() && type >= Type::FirstDerivedTyID)
412 GlobalTyID = CompactionTypes[type-Type::FirstDerivedTyID].second;
Chris Lattner00950542001-06-06 20:29:01 +0000413
Reid Spencer060d25d2004-06-29 23:29:38 +0000414 if (hasImplicitNull(GlobalTyID)) {
Chris Lattner89e02532004-01-18 21:08:15 +0000415 if (Num == 0)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000416 return Constant::getNullValue(getType(type));
Chris Lattner89e02532004-01-18 21:08:15 +0000417 --Num;
418 }
419
Chris Lattner52f86d62004-01-20 00:54:06 +0000420 if (GlobalTyID < ModuleValues.size() && ModuleValues[GlobalTyID]) {
421 if (Num < ModuleValues[GlobalTyID]->size())
Reid Spencer04cde2c2004-07-04 11:33:49 +0000422 return ModuleValues[GlobalTyID]->getOperand(Num);
Chris Lattner52f86d62004-01-20 00:54:06 +0000423 Num -= ModuleValues[GlobalTyID]->size();
Chris Lattner89e02532004-01-18 21:08:15 +0000424 }
Chris Lattner52e20b02003-03-19 20:54:26 +0000425 }
426
Reid Spencer060d25d2004-06-29 23:29:38 +0000427 if (FunctionValues.size() > type &&
428 FunctionValues[type] &&
429 Num < FunctionValues[type]->size())
430 return FunctionValues[type]->getOperand(Num);
Chris Lattner00950542001-06-06 20:29:01 +0000431
Chris Lattner74734132002-08-17 22:01:27 +0000432 if (!Create) return 0; // Do not create a placeholder?
Chris Lattner00950542001-06-06 20:29:01 +0000433
Reid Spencer551ccae2004-09-01 22:55:40 +0000434 // Did we already create a place holder?
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000435 std::pair<unsigned,unsigned> KeyValue(type, oNum);
Reid Spencer060d25d2004-06-29 23:29:38 +0000436 ForwardReferenceMap::iterator I = ForwardReferences.lower_bound(KeyValue);
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000437 if (I != ForwardReferences.end() && I->first == KeyValue)
438 return I->second; // We have already created this placeholder
439
Reid Spencer551ccae2004-09-01 22:55:40 +0000440 // If the type exists (it should)
441 if (const Type* Ty = getType(type)) {
442 // Create the place holder
443 Value *Val = new Argument(Ty);
444 ForwardReferences.insert(I, std::make_pair(KeyValue, Val));
445 return Val;
446 }
447 throw "Can't create placeholder for value of type slot #" + utostr(type);
Chris Lattner00950542001-06-06 20:29:01 +0000448}
449
Reid Spencer04cde2c2004-07-04 11:33:49 +0000450/// This is just like getValue, but when a compaction table is in use, it
451/// is ignored. Also, no forward references or other fancy features are
452/// supported.
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000453Value* BytecodeReader::getGlobalTableValue(unsigned TyID, unsigned SlotNo) {
454 if (SlotNo == 0)
455 return Constant::getNullValue(getType(TyID));
456
457 if (!CompactionTypes.empty() && TyID >= Type::FirstDerivedTyID) {
458 TyID -= Type::FirstDerivedTyID;
459 if (TyID >= CompactionTypes.size())
460 error("Type ID out of range for compaction table!");
461 TyID = CompactionTypes[TyID].second;
Reid Spencer060d25d2004-06-29 23:29:38 +0000462 }
463
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000464 --SlotNo;
465
Reid Spencer060d25d2004-06-29 23:29:38 +0000466 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0 ||
467 SlotNo >= ModuleValues[TyID]->size()) {
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000468 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0)
469 error("Corrupt compaction table entry!"
470 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
471 + utostr(ModuleValues.size()));
472 else
473 error("Corrupt compaction table entry!"
474 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
475 + utostr(ModuleValues.size()) + ", "
Reid Spencer9a7e0c52004-08-04 22:56:46 +0000476 + utohexstr(reinterpret_cast<uint64_t>(((void*)ModuleValues[TyID])))
477 + ", "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000478 + utostr(ModuleValues[TyID]->size()));
Reid Spencer060d25d2004-06-29 23:29:38 +0000479 }
480 return ModuleValues[TyID]->getOperand(SlotNo);
481}
482
Reid Spencer04cde2c2004-07-04 11:33:49 +0000483/// Just like getValue, except that it returns a null pointer
484/// only on error. It always returns a constant (meaning that if the value is
485/// defined, but is not a constant, that is an error). If the specified
486/// constant hasn't been parsed yet, a placeholder is defined and used.
487/// Later, after the real value is parsed, the placeholder is eliminated.
Reid Spencer060d25d2004-06-29 23:29:38 +0000488Constant* BytecodeReader::getConstantValue(unsigned TypeSlot, unsigned Slot) {
489 if (Value *V = getValue(TypeSlot, Slot, false))
490 if (Constant *C = dyn_cast<Constant>(V))
491 return C; // If we already have the value parsed, just return it
Reid Spencer060d25d2004-06-29 23:29:38 +0000492 else
Reid Spencera86037e2004-07-18 00:12:03 +0000493 error("Value for slot " + utostr(Slot) +
494 " is expected to be a constant!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000495
496 const Type *Ty = getType(TypeSlot);
497 std::pair<const Type*, unsigned> Key(Ty, Slot);
498 ConstantRefsType::iterator I = ConstantFwdRefs.lower_bound(Key);
499
500 if (I != ConstantFwdRefs.end() && I->first == Key) {
501 return I->second;
502 } else {
503 // Create a placeholder for the constant reference and
504 // keep track of the fact that we have a forward ref to recycle it
Reid Spencer46b002c2004-07-11 17:28:43 +0000505 Constant *C = new ConstantPlaceHolder(Ty, Slot);
Reid Spencer060d25d2004-06-29 23:29:38 +0000506
507 // Keep track of the fact that we have a forward ref to recycle it
508 ConstantFwdRefs.insert(I, std::make_pair(Key, C));
509 return C;
510 }
511}
512
513//===----------------------------------------------------------------------===//
514// IR Construction Methods
515//===----------------------------------------------------------------------===//
516
Reid Spencer04cde2c2004-07-04 11:33:49 +0000517/// As values are created, they are inserted into the appropriate place
518/// with this method. The ValueTable argument must be one of ModuleValues
519/// or FunctionValues data members of this class.
Reid Spencer46b002c2004-07-11 17:28:43 +0000520unsigned BytecodeReader::insertValue(Value *Val, unsigned type,
521 ValueTable &ValueTab) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000522 assert((!isa<Constant>(Val) || !cast<Constant>(Val)->isNullValue()) ||
Reid Spencer04cde2c2004-07-04 11:33:49 +0000523 !hasImplicitNull(type) &&
524 "Cannot read null values from bytecode!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000525
526 if (ValueTab.size() <= type)
527 ValueTab.resize(type+1);
528
529 if (!ValueTab[type]) ValueTab[type] = new ValueList();
530
531 ValueTab[type]->push_back(Val);
532
533 bool HasOffset = hasImplicitNull(type);
534 return ValueTab[type]->size()-1 + HasOffset;
535}
536
Reid Spencer04cde2c2004-07-04 11:33:49 +0000537/// Insert the arguments of a function as new values in the reader.
Reid Spencer46b002c2004-07-11 17:28:43 +0000538void BytecodeReader::insertArguments(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000539 const FunctionType *FT = F->getFunctionType();
540 Function::aiterator AI = F->abegin();
541 for (FunctionType::param_iterator It = FT->param_begin();
542 It != FT->param_end(); ++It, ++AI)
543 insertValue(AI, getTypeSlot(AI->getType()), FunctionValues);
544}
545
546//===----------------------------------------------------------------------===//
547// Bytecode Parsing Methods
548//===----------------------------------------------------------------------===//
549
Reid Spencer04cde2c2004-07-04 11:33:49 +0000550/// This method parses a single instruction. The instruction is
551/// inserted at the end of the \p BB provided. The arguments of
Misha Brukman44666b12004-09-28 16:57:46 +0000552/// the instruction are provided in the \p Oprnds vector.
Reid Spencer060d25d2004-06-29 23:29:38 +0000553void BytecodeReader::ParseInstruction(std::vector<unsigned> &Oprnds,
Reid Spencer46b002c2004-07-11 17:28:43 +0000554 BasicBlock* BB) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000555 BufPtr SaveAt = At;
556
557 // Clear instruction data
558 Oprnds.clear();
559 unsigned iType = 0;
560 unsigned Opcode = 0;
561 unsigned Op = read_uint();
562
563 // bits Instruction format: Common to all formats
564 // --------------------------
565 // 01-00: Opcode type, fixed to 1.
566 // 07-02: Opcode
567 Opcode = (Op >> 2) & 63;
568 Oprnds.resize((Op >> 0) & 03);
569
570 // Extract the operands
571 switch (Oprnds.size()) {
572 case 1:
573 // bits Instruction format:
574 // --------------------------
575 // 19-08: Resulting type plane
576 // 31-20: Operand #1 (if set to (2^12-1), then zero operands)
577 //
578 iType = (Op >> 8) & 4095;
579 Oprnds[0] = (Op >> 20) & 4095;
580 if (Oprnds[0] == 4095) // Handle special encoding for 0 operands...
581 Oprnds.resize(0);
582 break;
583 case 2:
584 // bits Instruction format:
585 // --------------------------
586 // 15-08: Resulting type plane
587 // 23-16: Operand #1
588 // 31-24: Operand #2
589 //
590 iType = (Op >> 8) & 255;
591 Oprnds[0] = (Op >> 16) & 255;
592 Oprnds[1] = (Op >> 24) & 255;
593 break;
594 case 3:
595 // bits Instruction format:
596 // --------------------------
597 // 13-08: Resulting type plane
598 // 19-14: Operand #1
599 // 25-20: Operand #2
600 // 31-26: Operand #3
601 //
602 iType = (Op >> 8) & 63;
603 Oprnds[0] = (Op >> 14) & 63;
604 Oprnds[1] = (Op >> 20) & 63;
605 Oprnds[2] = (Op >> 26) & 63;
606 break;
607 case 0:
608 At -= 4; // Hrm, try this again...
609 Opcode = read_vbr_uint();
610 Opcode >>= 2;
611 iType = read_vbr_uint();
612
613 unsigned NumOprnds = read_vbr_uint();
614 Oprnds.resize(NumOprnds);
615
616 if (NumOprnds == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000617 error("Zero-argument instruction found; this is invalid.");
Reid Spencer060d25d2004-06-29 23:29:38 +0000618
619 for (unsigned i = 0; i != NumOprnds; ++i)
620 Oprnds[i] = read_vbr_uint();
621 align32();
622 break;
623 }
624
Reid Spencer04cde2c2004-07-04 11:33:49 +0000625 const Type *InstTy = getSanitizedType(iType);
Reid Spencer060d25d2004-06-29 23:29:38 +0000626
Reid Spencer46b002c2004-07-11 17:28:43 +0000627 // We have enough info to inform the handler now.
Reid Spencer04cde2c2004-07-04 11:33:49 +0000628 if (Handler) Handler->handleInstruction(Opcode, InstTy, Oprnds, At-SaveAt);
Reid Spencer060d25d2004-06-29 23:29:38 +0000629
630 // Declare the resulting instruction we'll build.
631 Instruction *Result = 0;
632
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000633 // If this is a bytecode format that did not include the unreachable
634 // instruction, bump up all opcodes numbers to make space.
635 if (hasNoUnreachableInst) {
636 if (Opcode >= Instruction::Unreachable &&
637 Opcode < 62) {
638 ++Opcode;
639 }
640 }
641
Reid Spencer060d25d2004-06-29 23:29:38 +0000642 // Handle binary operators
643 if (Opcode >= Instruction::BinaryOpsBegin &&
644 Opcode < Instruction::BinaryOpsEnd && Oprnds.size() == 2)
645 Result = BinaryOperator::create((Instruction::BinaryOps)Opcode,
646 getValue(iType, Oprnds[0]),
647 getValue(iType, Oprnds[1]));
648
649 switch (Opcode) {
650 default:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000651 if (Result == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000652 error("Illegal instruction read!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000653 break;
654 case Instruction::VAArg:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000655 Result = new VAArgInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000656 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000657 break;
658 case Instruction::VANext:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000659 Result = new VANextInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000660 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000661 break;
662 case Instruction::Cast:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000663 Result = new CastInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000664 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000665 break;
666 case Instruction::Select:
667 Result = new SelectInst(getValue(Type::BoolTyID, Oprnds[0]),
668 getValue(iType, Oprnds[1]),
669 getValue(iType, Oprnds[2]));
670 break;
671 case Instruction::PHI: {
672 if (Oprnds.size() == 0 || (Oprnds.size() & 1))
Reid Spencer24399722004-07-09 22:21:33 +0000673 error("Invalid phi node encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000674
675 PHINode *PN = new PHINode(InstTy);
676 PN->op_reserve(Oprnds.size());
677 for (unsigned i = 0, e = Oprnds.size(); i != e; i += 2)
678 PN->addIncoming(getValue(iType, Oprnds[i]), getBasicBlock(Oprnds[i+1]));
679 Result = PN;
680 break;
681 }
682
683 case Instruction::Shl:
684 case Instruction::Shr:
685 Result = new ShiftInst((Instruction::OtherOps)Opcode,
686 getValue(iType, Oprnds[0]),
687 getValue(Type::UByteTyID, Oprnds[1]));
688 break;
689 case Instruction::Ret:
690 if (Oprnds.size() == 0)
691 Result = new ReturnInst();
692 else if (Oprnds.size() == 1)
693 Result = new ReturnInst(getValue(iType, Oprnds[0]));
694 else
Reid Spencer24399722004-07-09 22:21:33 +0000695 error("Unrecognized instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000696 break;
697
698 case Instruction::Br:
699 if (Oprnds.size() == 1)
700 Result = new BranchInst(getBasicBlock(Oprnds[0]));
701 else if (Oprnds.size() == 3)
702 Result = new BranchInst(getBasicBlock(Oprnds[0]),
Reid Spencer04cde2c2004-07-04 11:33:49 +0000703 getBasicBlock(Oprnds[1]), getValue(Type::BoolTyID , Oprnds[2]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000704 else
Reid Spencer24399722004-07-09 22:21:33 +0000705 error("Invalid number of operands for a 'br' instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000706 break;
707 case Instruction::Switch: {
708 if (Oprnds.size() & 1)
Reid Spencer24399722004-07-09 22:21:33 +0000709 error("Switch statement with odd number of arguments!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000710
711 SwitchInst *I = new SwitchInst(getValue(iType, Oprnds[0]),
712 getBasicBlock(Oprnds[1]));
713 for (unsigned i = 2, e = Oprnds.size(); i != e; i += 2)
714 I->addCase(cast<Constant>(getValue(iType, Oprnds[i])),
715 getBasicBlock(Oprnds[i+1]));
716 Result = I;
717 break;
718 }
719
720 case Instruction::Call: {
721 if (Oprnds.size() == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000722 error("Invalid call instruction encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000723
724 Value *F = getValue(iType, Oprnds[0]);
725
726 // Check to make sure we have a pointer to function type
727 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Reid Spencer24399722004-07-09 22:21:33 +0000728 if (PTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000729 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Reid Spencer24399722004-07-09 22:21:33 +0000730 if (FTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000731
732 std::vector<Value *> Params;
733 if (!FTy->isVarArg()) {
734 FunctionType::param_iterator It = FTy->param_begin();
735
736 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
737 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000738 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000739 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
740 }
741 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000742 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000743 } else {
744 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
745
746 unsigned FirstVariableOperand;
747 if (Oprnds.size() < FTy->getNumParams())
Reid Spencer24399722004-07-09 22:21:33 +0000748 error("Call instruction missing operands!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000749
750 // Read all of the fixed arguments
751 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
752 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i)),Oprnds[i]));
753
754 FirstVariableOperand = FTy->getNumParams();
755
Chris Lattner4a242b32004-10-14 01:39:18 +0000756 if ((Oprnds.size()-FirstVariableOperand) & 1)
757 error("Invalid call instruction!"); // Must be pairs of type/value
Reid Spencer060d25d2004-06-29 23:29:38 +0000758
759 for (unsigned i = FirstVariableOperand, e = Oprnds.size();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000760 i != e; i += 2)
Reid Spencer060d25d2004-06-29 23:29:38 +0000761 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
762 }
763
764 Result = new CallInst(F, Params);
765 break;
766 }
767 case Instruction::Invoke: {
Reid Spencer04cde2c2004-07-04 11:33:49 +0000768 if (Oprnds.size() < 3)
Reid Spencer24399722004-07-09 22:21:33 +0000769 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000770 Value *F = getValue(iType, Oprnds[0]);
771
772 // Check to make sure we have a pointer to function type
773 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Reid Spencer04cde2c2004-07-04 11:33:49 +0000774 if (PTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000775 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000776 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Reid Spencer04cde2c2004-07-04 11:33:49 +0000777 if (FTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000778 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000779
780 std::vector<Value *> Params;
781 BasicBlock *Normal, *Except;
782
783 if (!FTy->isVarArg()) {
784 Normal = getBasicBlock(Oprnds[1]);
785 Except = getBasicBlock(Oprnds[2]);
786
787 FunctionType::param_iterator It = FTy->param_begin();
788 for (unsigned i = 3, e = Oprnds.size(); i != e; ++i) {
789 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000790 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000791 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
792 }
793 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000794 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000795 } else {
796 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
797
798 Normal = getBasicBlock(Oprnds[0]);
799 Except = getBasicBlock(Oprnds[1]);
800
801 unsigned FirstVariableArgument = FTy->getNumParams()+2;
802 for (unsigned i = 2; i != FirstVariableArgument; ++i)
803 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i-2)),
804 Oprnds[i]));
805
806 if (Oprnds.size()-FirstVariableArgument & 1) // Must be type/value pairs
Reid Spencer24399722004-07-09 22:21:33 +0000807 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000808
809 for (unsigned i = FirstVariableArgument; i < Oprnds.size(); i += 2)
810 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
811 }
812
813 Result = new InvokeInst(F, Normal, Except, Params);
814 break;
815 }
816 case Instruction::Malloc:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000817 if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000818 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000819 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000820 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000821
822 Result = new MallocInst(cast<PointerType>(InstTy)->getElementType(),
823 Oprnds.size() ? getValue(Type::UIntTyID,
824 Oprnds[0]) : 0);
825 break;
826
827 case Instruction::Alloca:
Reid Spencer04cde2c2004-07-04 11:33:49 +0000828 if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000829 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000830 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000831 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000832
833 Result = new AllocaInst(cast<PointerType>(InstTy)->getElementType(),
834 Oprnds.size() ? getValue(Type::UIntTyID,
Reid Spencer04cde2c2004-07-04 11:33:49 +0000835 Oprnds[0]) :0);
Reid Spencer060d25d2004-06-29 23:29:38 +0000836 break;
837 case Instruction::Free:
838 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000839 error("Invalid free instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000840 Result = new FreeInst(getValue(iType, Oprnds[0]));
841 break;
842 case Instruction::GetElementPtr: {
843 if (Oprnds.size() == 0 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000844 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000845
846 std::vector<Value*> Idx;
847
848 const Type *NextTy = InstTy;
849 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
850 const CompositeType *TopTy = dyn_cast_or_null<CompositeType>(NextTy);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000851 if (!TopTy)
Reid Spencer46b002c2004-07-11 17:28:43 +0000852 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000853
854 unsigned ValIdx = Oprnds[i];
855 unsigned IdxTy = 0;
856 if (!hasRestrictedGEPTypes) {
857 // Struct indices are always uints, sequential type indices can be any
858 // of the 32 or 64-bit integer types. The actual choice of type is
859 // encoded in the low two bits of the slot number.
860 if (isa<StructType>(TopTy))
861 IdxTy = Type::UIntTyID;
862 else {
863 switch (ValIdx & 3) {
864 default:
865 case 0: IdxTy = Type::UIntTyID; break;
866 case 1: IdxTy = Type::IntTyID; break;
867 case 2: IdxTy = Type::ULongTyID; break;
868 case 3: IdxTy = Type::LongTyID; break;
869 }
870 ValIdx >>= 2;
871 }
872 } else {
873 IdxTy = isa<StructType>(TopTy) ? Type::UByteTyID : Type::LongTyID;
874 }
875
876 Idx.push_back(getValue(IdxTy, ValIdx));
877
878 // Convert ubyte struct indices into uint struct indices.
879 if (isa<StructType>(TopTy) && hasRestrictedGEPTypes)
880 if (ConstantUInt *C = dyn_cast<ConstantUInt>(Idx.back()))
881 Idx[Idx.size()-1] = ConstantExpr::getCast(C, Type::UIntTy);
882
883 NextTy = GetElementPtrInst::getIndexedType(InstTy, Idx, true);
884 }
885
886 Result = new GetElementPtrInst(getValue(iType, Oprnds[0]), Idx);
887 break;
888 }
889
890 case 62: // volatile load
891 case Instruction::Load:
892 if (Oprnds.size() != 1 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000893 error("Invalid load instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000894 Result = new LoadInst(getValue(iType, Oprnds[0]), "", Opcode == 62);
895 break;
896
897 case 63: // volatile store
898 case Instruction::Store: {
899 if (!isa<PointerType>(InstTy) || Oprnds.size() != 2)
Reid Spencer24399722004-07-09 22:21:33 +0000900 error("Invalid store instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000901
902 Value *Ptr = getValue(iType, Oprnds[1]);
903 const Type *ValTy = cast<PointerType>(Ptr->getType())->getElementType();
904 Result = new StoreInst(getValue(getTypeSlot(ValTy), Oprnds[0]), Ptr,
905 Opcode == 63);
906 break;
907 }
908 case Instruction::Unwind:
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000909 if (Oprnds.size() != 0) error("Invalid unwind instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000910 Result = new UnwindInst();
911 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000912 case Instruction::Unreachable:
913 if (Oprnds.size() != 0) error("Invalid unreachable instruction!");
914 Result = new UnreachableInst();
915 break;
Reid Spencer060d25d2004-06-29 23:29:38 +0000916 } // end switch(Opcode)
917
918 unsigned TypeSlot;
919 if (Result->getType() == InstTy)
920 TypeSlot = iType;
921 else
922 TypeSlot = getTypeSlot(Result->getType());
923
924 insertValue(Result, TypeSlot, FunctionValues);
925 BB->getInstList().push_back(Result);
926}
927
Reid Spencer04cde2c2004-07-04 11:33:49 +0000928/// Get a particular numbered basic block, which might be a forward reference.
929/// This works together with ParseBasicBlock to handle these forward references
Chris Lattner4a242b32004-10-14 01:39:18 +0000930/// in a clean manner. This function is used when constructing phi, br, switch,
931/// and other instructions that reference basic blocks. Blocks are numbered
Reid Spencer04cde2c2004-07-04 11:33:49 +0000932/// sequentially as they appear in the function.
Reid Spencer060d25d2004-06-29 23:29:38 +0000933BasicBlock *BytecodeReader::getBasicBlock(unsigned ID) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +0000934 // Make sure there is room in the table...
935 if (ParsedBasicBlocks.size() <= ID) ParsedBasicBlocks.resize(ID+1);
936
937 // First check to see if this is a backwards reference, i.e., ParseBasicBlock
938 // has already created this block, or if the forward reference has already
939 // been created.
940 if (ParsedBasicBlocks[ID])
941 return ParsedBasicBlocks[ID];
942
943 // Otherwise, the basic block has not yet been created. Do so and add it to
944 // the ParsedBasicBlocks list.
945 return ParsedBasicBlocks[ID] = new BasicBlock();
946}
947
Reid Spencer04cde2c2004-07-04 11:33:49 +0000948/// In LLVM 1.0 bytecode files, we used to output one basicblock at a time.
949/// This method reads in one of the basicblock packets. This method is not used
950/// for bytecode files after LLVM 1.0
951/// @returns The basic block constructed.
Reid Spencer46b002c2004-07-11 17:28:43 +0000952BasicBlock *BytecodeReader::ParseBasicBlock(unsigned BlockNo) {
953 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Reid Spencer060d25d2004-06-29 23:29:38 +0000954
955 BasicBlock *BB = 0;
956
Chris Lattner4ee8ef22003-10-08 22:52:54 +0000957 if (ParsedBasicBlocks.size() == BlockNo)
958 ParsedBasicBlocks.push_back(BB = new BasicBlock());
959 else if (ParsedBasicBlocks[BlockNo] == 0)
960 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
961 else
962 BB = ParsedBasicBlocks[BlockNo];
Chris Lattner00950542001-06-06 20:29:01 +0000963
Reid Spencer060d25d2004-06-29 23:29:38 +0000964 std::vector<unsigned> Operands;
Reid Spencer46b002c2004-07-11 17:28:43 +0000965 while (moreInBlock())
Reid Spencer060d25d2004-06-29 23:29:38 +0000966 ParseInstruction(Operands, BB);
Chris Lattner00950542001-06-06 20:29:01 +0000967
Reid Spencer46b002c2004-07-11 17:28:43 +0000968 if (Handler) Handler->handleBasicBlockEnd(BlockNo);
Misha Brukman12c29d12003-09-22 23:38:23 +0000969 return BB;
Chris Lattner00950542001-06-06 20:29:01 +0000970}
971
Reid Spencer04cde2c2004-07-04 11:33:49 +0000972/// Parse all of the BasicBlock's & Instruction's in the body of a function.
973/// In post 1.0 bytecode files, we no longer emit basic block individually,
974/// in order to avoid per-basic-block overhead.
975/// @returns Rhe number of basic blocks encountered.
Reid Spencer060d25d2004-06-29 23:29:38 +0000976unsigned BytecodeReader::ParseInstructionList(Function* F) {
Chris Lattner8d1dbd22003-12-01 07:05:31 +0000977 unsigned BlockNo = 0;
978 std::vector<unsigned> Args;
979
Reid Spencer46b002c2004-07-11 17:28:43 +0000980 while (moreInBlock()) {
981 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Chris Lattner8d1dbd22003-12-01 07:05:31 +0000982 BasicBlock *BB;
983 if (ParsedBasicBlocks.size() == BlockNo)
984 ParsedBasicBlocks.push_back(BB = new BasicBlock());
985 else if (ParsedBasicBlocks[BlockNo] == 0)
986 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
987 else
988 BB = ParsedBasicBlocks[BlockNo];
989 ++BlockNo;
990 F->getBasicBlockList().push_back(BB);
991
992 // Read instructions into this basic block until we get to a terminator
Reid Spencer46b002c2004-07-11 17:28:43 +0000993 while (moreInBlock() && !BB->getTerminator())
Reid Spencer060d25d2004-06-29 23:29:38 +0000994 ParseInstruction(Args, BB);
Chris Lattner8d1dbd22003-12-01 07:05:31 +0000995
996 if (!BB->getTerminator())
Reid Spencer24399722004-07-09 22:21:33 +0000997 error("Non-terminated basic block found!");
Reid Spencer5c15fe52004-07-05 00:57:50 +0000998
Reid Spencer46b002c2004-07-11 17:28:43 +0000999 if (Handler) Handler->handleBasicBlockEnd(BlockNo-1);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001000 }
1001
1002 return BlockNo;
1003}
1004
Reid Spencer04cde2c2004-07-04 11:33:49 +00001005/// Parse a symbol table. This works for both module level and function
1006/// level symbol tables. For function level symbol tables, the CurrentFunction
1007/// parameter must be non-zero and the ST parameter must correspond to
1008/// CurrentFunction's symbol table. For Module level symbol tables, the
1009/// CurrentFunction argument must be zero.
Reid Spencer060d25d2004-06-29 23:29:38 +00001010void BytecodeReader::ParseSymbolTable(Function *CurrentFunction,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001011 SymbolTable *ST) {
1012 if (Handler) Handler->handleSymbolTableBegin(CurrentFunction,ST);
Reid Spencer060d25d2004-06-29 23:29:38 +00001013
Chris Lattner39cacce2003-10-10 05:43:47 +00001014 // Allow efficient basic block lookup by number.
1015 std::vector<BasicBlock*> BBMap;
1016 if (CurrentFunction)
1017 for (Function::iterator I = CurrentFunction->begin(),
1018 E = CurrentFunction->end(); I != E; ++I)
1019 BBMap.push_back(I);
1020
Reid Spencer04cde2c2004-07-04 11:33:49 +00001021 /// In LLVM 1.3 we write types separately from values so
1022 /// The types are always first in the symbol table. This is
1023 /// because Type no longer derives from Value.
Reid Spencer46b002c2004-07-11 17:28:43 +00001024 if (!hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001025 // Symtab block header: [num entries]
1026 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001027 for (unsigned i = 0; i < NumEntries; ++i) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001028 // Symtab entry: [def slot #][name]
1029 unsigned slot = read_vbr_uint();
1030 std::string Name = read_str();
1031 const Type* T = getType(slot);
1032 ST->insert(Name, T);
1033 }
1034 }
1035
Reid Spencer46b002c2004-07-11 17:28:43 +00001036 while (moreInBlock()) {
Chris Lattner00950542001-06-06 20:29:01 +00001037 // Symtab block header: [num entries][type id number]
Reid Spencer060d25d2004-06-29 23:29:38 +00001038 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001039 unsigned Typ = 0;
1040 bool isTypeType = read_typeid(Typ);
Chris Lattner00950542001-06-06 20:29:01 +00001041 const Type *Ty = getType(Typ);
Chris Lattner1d670cc2001-09-07 16:37:43 +00001042
Chris Lattner7dc3a2e2003-10-13 14:57:53 +00001043 for (unsigned i = 0; i != NumEntries; ++i) {
Chris Lattner00950542001-06-06 20:29:01 +00001044 // Symtab entry: [def slot #][name]
Reid Spencer060d25d2004-06-29 23:29:38 +00001045 unsigned slot = read_vbr_uint();
1046 std::string Name = read_str();
Chris Lattner00950542001-06-06 20:29:01 +00001047
Reid Spencer04cde2c2004-07-04 11:33:49 +00001048 // if we're reading a pre 1.3 bytecode file and the type plane
1049 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001050 if (isTypeType) {
1051 const Type* T = getType(slot);
1052 if (T == 0)
1053 error("Failed type look-up for name '" + Name + "'");
1054 ST->insert(Name, T);
1055 continue; // code below must be short circuited
Chris Lattner39cacce2003-10-10 05:43:47 +00001056 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001057 Value *V = 0;
1058 if (Typ == Type::LabelTyID) {
1059 if (slot < BBMap.size())
1060 V = BBMap[slot];
1061 } else {
1062 V = getValue(Typ, slot, false); // Find mapping...
1063 }
1064 if (V == 0)
1065 error("Failed value look-up for name '" + Name + "'");
1066 V->setName(Name, ST);
Chris Lattner39cacce2003-10-10 05:43:47 +00001067 }
Chris Lattner00950542001-06-06 20:29:01 +00001068 }
1069 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001070 checkPastBlockEnd("Symbol Table");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001071 if (Handler) Handler->handleSymbolTableEnd();
Chris Lattner00950542001-06-06 20:29:01 +00001072}
1073
Reid Spencer04cde2c2004-07-04 11:33:49 +00001074/// Read in the types portion of a compaction table.
Reid Spencer46b002c2004-07-11 17:28:43 +00001075void BytecodeReader::ParseCompactionTypes(unsigned NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001076 for (unsigned i = 0; i != NumEntries; ++i) {
1077 unsigned TypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001078 if (read_typeid(TypeSlot))
Reid Spencer24399722004-07-09 22:21:33 +00001079 error("Invalid type in compaction table: type type");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001080 const Type *Typ = getGlobalTableType(TypeSlot);
Chris Lattner45b5dd22004-08-03 23:41:28 +00001081 CompactionTypes.push_back(std::make_pair(Typ, TypeSlot));
Reid Spencer46b002c2004-07-11 17:28:43 +00001082 if (Handler) Handler->handleCompactionTableType(i, TypeSlot, Typ);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001083 }
1084}
1085
1086/// Parse a compaction table.
Reid Spencer060d25d2004-06-29 23:29:38 +00001087void BytecodeReader::ParseCompactionTable() {
1088
Reid Spencer46b002c2004-07-11 17:28:43 +00001089 // Notify handler that we're beginning a compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001090 if (Handler) Handler->handleCompactionTableBegin();
1091
Reid Spencer46b002c2004-07-11 17:28:43 +00001092 // In LLVM 1.3 Type no longer derives from Value. So,
1093 // we always write them first in the compaction table
1094 // because they can't occupy a "type plane" where the
1095 // Values reside.
1096 if (! hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001097 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001098 ParseCompactionTypes(NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001099 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001100
Reid Spencer46b002c2004-07-11 17:28:43 +00001101 // Compaction tables live in separate blocks so we have to loop
1102 // until we've read the whole thing.
1103 while (moreInBlock()) {
1104 // Read the number of Value* entries in the compaction table
Reid Spencer060d25d2004-06-29 23:29:38 +00001105 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001106 unsigned Ty = 0;
1107 unsigned isTypeType = false;
Reid Spencer060d25d2004-06-29 23:29:38 +00001108
Reid Spencer46b002c2004-07-11 17:28:43 +00001109 // Decode the type from value read in. Most compaction table
1110 // planes will have one or two entries in them. If that's the
1111 // case then the length is encoded in the bottom two bits and
1112 // the higher bits encode the type. This saves another VBR value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001113 if ((NumEntries & 3) == 3) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001114 // In this case, both low-order bits are set (value 3). This
1115 // is a signal that the typeid follows.
Reid Spencer060d25d2004-06-29 23:29:38 +00001116 NumEntries >>= 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001117 isTypeType = read_typeid(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001118 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001119 // In this case, the low-order bits specify the number of entries
1120 // and the high order bits specify the type.
Reid Spencer060d25d2004-06-29 23:29:38 +00001121 Ty = NumEntries >> 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001122 isTypeType = sanitizeTypeId(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001123 NumEntries &= 3;
1124 }
1125
Reid Spencer04cde2c2004-07-04 11:33:49 +00001126 // if we're reading a pre 1.3 bytecode file and the type plane
1127 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001128 if (isTypeType) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001129 ParseCompactionTypes(NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001130 } else {
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001131 // Make sure we have enough room for the plane.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001132 if (Ty >= CompactionValues.size())
Reid Spencer46b002c2004-07-11 17:28:43 +00001133 CompactionValues.resize(Ty+1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001134
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001135 // Make sure the plane is empty or we have some kind of error.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001136 if (!CompactionValues[Ty].empty())
Reid Spencer46b002c2004-07-11 17:28:43 +00001137 error("Compaction table plane contains multiple entries!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001138
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001139 // Notify handler about the plane.
Reid Spencer46b002c2004-07-11 17:28:43 +00001140 if (Handler) Handler->handleCompactionTablePlane(Ty, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001141
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001142 // Push the implicit zero.
1143 CompactionValues[Ty].push_back(Constant::getNullValue(getType(Ty)));
Reid Spencer46b002c2004-07-11 17:28:43 +00001144
1145 // Read in each of the entries, put them in the compaction table
1146 // and notify the handler that we have a new compaction table value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001147 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001148 unsigned ValSlot = read_vbr_uint();
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001149 Value *V = getGlobalTableValue(Ty, ValSlot);
Reid Spencer46b002c2004-07-11 17:28:43 +00001150 CompactionValues[Ty].push_back(V);
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001151 if (Handler) Handler->handleCompactionTableValue(i, Ty, ValSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001152 }
1153 }
1154 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001155 // Notify handler that the compaction table is done.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001156 if (Handler) Handler->handleCompactionTableEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001157}
1158
Reid Spencer46b002c2004-07-11 17:28:43 +00001159// Parse a single type. The typeid is read in first. If its a primitive type
1160// then nothing else needs to be read, we know how to instantiate it. If its
1161// a derived type, then additional data is read to fill out the type
1162// definition.
1163const Type *BytecodeReader::ParseType() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001164 unsigned PrimType = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001165 if (read_typeid(PrimType))
Reid Spencer24399722004-07-09 22:21:33 +00001166 error("Invalid type (type type) in type constants!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001167
1168 const Type *Result = 0;
1169 if ((Result = Type::getPrimitiveType((Type::TypeID)PrimType)))
1170 return Result;
1171
1172 switch (PrimType) {
1173 case Type::FunctionTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001174 const Type *RetType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001175
1176 unsigned NumParams = read_vbr_uint();
1177
1178 std::vector<const Type*> Params;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001179 while (NumParams--)
1180 Params.push_back(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001181
1182 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1183 if (isVarArg) Params.pop_back();
1184
1185 Result = FunctionType::get(RetType, Params, isVarArg);
1186 break;
1187 }
1188 case Type::ArrayTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001189 const Type *ElementType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001190 unsigned NumElements = read_vbr_uint();
Reid Spencer060d25d2004-06-29 23:29:38 +00001191 Result = ArrayType::get(ElementType, NumElements);
1192 break;
1193 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001194 case Type::PackedTyID: {
1195 const Type *ElementType = readSanitizedType();
1196 unsigned NumElements = read_vbr_uint();
1197 Result = PackedType::get(ElementType, NumElements);
1198 break;
1199 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001200 case Type::StructTyID: {
1201 std::vector<const Type*> Elements;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001202 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001203 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001204 error("Invalid element type (type type) for structure!");
1205
Reid Spencer060d25d2004-06-29 23:29:38 +00001206 while (Typ) { // List is terminated by void/0 typeid
1207 Elements.push_back(getType(Typ));
Reid Spencer46b002c2004-07-11 17:28:43 +00001208 if (read_typeid(Typ))
1209 error("Invalid element type (type type) for structure!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001210 }
1211
1212 Result = StructType::get(Elements);
1213 break;
1214 }
1215 case Type::PointerTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001216 Result = PointerType::get(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001217 break;
1218 }
1219
1220 case Type::OpaqueTyID: {
1221 Result = OpaqueType::get();
1222 break;
1223 }
1224
1225 default:
Reid Spencer24399722004-07-09 22:21:33 +00001226 error("Don't know how to deserialize primitive type " + utostr(PrimType));
Reid Spencer060d25d2004-06-29 23:29:38 +00001227 break;
1228 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001229 if (Handler) Handler->handleType(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001230 return Result;
1231}
1232
Reid Spencer5b472d92004-08-21 20:49:23 +00001233// ParseTypes - We have to use this weird code to handle recursive
Reid Spencer060d25d2004-06-29 23:29:38 +00001234// types. We know that recursive types will only reference the current slab of
1235// values in the type plane, but they can forward reference types before they
1236// have been read. For example, Type #0 might be '{ Ty#1 }' and Type #1 might
1237// be 'Ty#0*'. When reading Type #0, type number one doesn't exist. To fix
1238// this ugly problem, we pessimistically insert an opaque type for each type we
1239// are about to read. This means that forward references will resolve to
1240// something and when we reread the type later, we can replace the opaque type
1241// with a new resolved concrete type.
1242//
Reid Spencer46b002c2004-07-11 17:28:43 +00001243void BytecodeReader::ParseTypes(TypeListTy &Tab, unsigned NumEntries){
Reid Spencer060d25d2004-06-29 23:29:38 +00001244 assert(Tab.size() == 0 && "should not have read type constants in before!");
1245
1246 // Insert a bunch of opaque types to be resolved later...
1247 Tab.reserve(NumEntries);
1248 for (unsigned i = 0; i != NumEntries; ++i)
1249 Tab.push_back(OpaqueType::get());
1250
Reid Spencer5b472d92004-08-21 20:49:23 +00001251 if (Handler)
1252 Handler->handleTypeList(NumEntries);
1253
Reid Spencer060d25d2004-06-29 23:29:38 +00001254 // Loop through reading all of the types. Forward types will make use of the
1255 // opaque types just inserted.
1256 //
1257 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001258 const Type* NewTy = ParseType();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001259 const Type* OldTy = Tab[i].get();
1260 if (NewTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +00001261 error("Couldn't parse type!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001262
1263 // Don't directly push the new type on the Tab. Instead we want to replace
1264 // the opaque type we previously inserted with the new concrete value. This
1265 // approach helps with forward references to types. The refinement from the
1266 // abstract (opaque) type to the new type causes all uses of the abstract
1267 // type to use the concrete type (NewTy). This will also cause the opaque
1268 // type to be deleted.
1269 cast<DerivedType>(const_cast<Type*>(OldTy))->refineAbstractTypeTo(NewTy);
1270
1271 // This should have replaced the old opaque type with the new type in the
1272 // value table... or with a preexisting type that was already in the system.
1273 // Let's just make sure it did.
1274 assert(Tab[i] != OldTy && "refineAbstractType didn't work!");
1275 }
1276}
1277
Reid Spencer04cde2c2004-07-04 11:33:49 +00001278/// Parse a single constant value
Reid Spencer46b002c2004-07-11 17:28:43 +00001279Constant *BytecodeReader::ParseConstantValue(unsigned TypeID) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001280 // We must check for a ConstantExpr before switching by type because
1281 // a ConstantExpr can be of any type, and has no explicit value.
1282 //
1283 // 0 if not expr; numArgs if is expr
1284 unsigned isExprNumArgs = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001285
Reid Spencer060d25d2004-06-29 23:29:38 +00001286 if (isExprNumArgs) {
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001287 // 'undef' is encoded with 'exprnumargs' == 1.
1288 if (!hasNoUndefValue)
1289 if (--isExprNumArgs == 0)
1290 return UndefValue::get(getType(TypeID));
1291
Reid Spencer060d25d2004-06-29 23:29:38 +00001292 // FIXME: Encoding of constant exprs could be much more compact!
1293 std::vector<Constant*> ArgVec;
1294 ArgVec.reserve(isExprNumArgs);
1295 unsigned Opcode = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001296
1297 // Bytecode files before LLVM 1.4 need have a missing terminator inst.
1298 if (hasNoUnreachableInst) Opcode++;
Reid Spencer060d25d2004-06-29 23:29:38 +00001299
1300 // Read the slot number and types of each of the arguments
1301 for (unsigned i = 0; i != isExprNumArgs; ++i) {
1302 unsigned ArgValSlot = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001303 unsigned ArgTypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001304 if (read_typeid(ArgTypeSlot))
1305 error("Invalid argument type (type type) for constant value");
Reid Spencer060d25d2004-06-29 23:29:38 +00001306
1307 // Get the arg value from its slot if it exists, otherwise a placeholder
1308 ArgVec.push_back(getConstantValue(ArgTypeSlot, ArgValSlot));
1309 }
1310
1311 // Construct a ConstantExpr of the appropriate kind
1312 if (isExprNumArgs == 1) { // All one-operand expressions
Reid Spencer46b002c2004-07-11 17:28:43 +00001313 if (Opcode != Instruction::Cast)
1314 error("Only Cast instruction has one argument for ConstantExpr");
1315
Reid Spencer060d25d2004-06-29 23:29:38 +00001316 Constant* Result = ConstantExpr::getCast(ArgVec[0], getType(TypeID));
Reid Spencer04cde2c2004-07-04 11:33:49 +00001317 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001318 return Result;
1319 } else if (Opcode == Instruction::GetElementPtr) { // GetElementPtr
1320 std::vector<Constant*> IdxList(ArgVec.begin()+1, ArgVec.end());
1321
1322 if (hasRestrictedGEPTypes) {
1323 const Type *BaseTy = ArgVec[0]->getType();
1324 generic_gep_type_iterator<std::vector<Constant*>::iterator>
1325 GTI = gep_type_begin(BaseTy, IdxList.begin(), IdxList.end()),
1326 E = gep_type_end(BaseTy, IdxList.begin(), IdxList.end());
1327 for (unsigned i = 0; GTI != E; ++GTI, ++i)
1328 if (isa<StructType>(*GTI)) {
1329 if (IdxList[i]->getType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001330 error("Invalid index for getelementptr!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001331 IdxList[i] = ConstantExpr::getCast(IdxList[i], Type::UIntTy);
1332 }
1333 }
1334
1335 Constant* Result = ConstantExpr::getGetElementPtr(ArgVec[0], IdxList);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001336 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001337 return Result;
1338 } else if (Opcode == Instruction::Select) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001339 if (ArgVec.size() != 3)
1340 error("Select instruction must have three arguments.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001341 Constant* Result = ConstantExpr::getSelect(ArgVec[0], ArgVec[1],
Reid Spencer04cde2c2004-07-04 11:33:49 +00001342 ArgVec[2]);
1343 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001344 return Result;
1345 } else { // All other 2-operand expressions
1346 Constant* Result = ConstantExpr::get(Opcode, ArgVec[0], ArgVec[1]);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001347 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001348 return Result;
1349 }
1350 }
1351
1352 // Ok, not an ConstantExpr. We now know how to read the given type...
1353 const Type *Ty = getType(TypeID);
1354 switch (Ty->getTypeID()) {
1355 case Type::BoolTyID: {
1356 unsigned Val = read_vbr_uint();
1357 if (Val != 0 && Val != 1)
Reid Spencer24399722004-07-09 22:21:33 +00001358 error("Invalid boolean value read.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001359 Constant* Result = ConstantBool::get(Val == 1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001360 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001361 return Result;
1362 }
1363
1364 case Type::UByteTyID: // Unsigned integer types...
1365 case Type::UShortTyID:
1366 case Type::UIntTyID: {
1367 unsigned Val = read_vbr_uint();
1368 if (!ConstantUInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001369 error("Invalid unsigned byte/short/int read.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001370 Constant* Result = ConstantUInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001371 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001372 return Result;
1373 }
1374
1375 case Type::ULongTyID: {
1376 Constant* Result = ConstantUInt::get(Ty, read_vbr_uint64());
Reid Spencer04cde2c2004-07-04 11:33:49 +00001377 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001378 return Result;
1379 }
1380
1381 case Type::SByteTyID: // Signed integer types...
1382 case Type::ShortTyID:
1383 case Type::IntTyID: {
1384 case Type::LongTyID:
1385 int64_t Val = read_vbr_int64();
1386 if (!ConstantSInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001387 error("Invalid signed byte/short/int/long read.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001388 Constant* Result = ConstantSInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001389 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001390 return Result;
1391 }
1392
1393 case Type::FloatTyID: {
Reid Spencer46b002c2004-07-11 17:28:43 +00001394 float Val;
1395 read_float(Val);
1396 Constant* Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001397 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001398 return Result;
1399 }
1400
1401 case Type::DoubleTyID: {
1402 double Val;
Reid Spencer46b002c2004-07-11 17:28:43 +00001403 read_double(Val);
Reid Spencer060d25d2004-06-29 23:29:38 +00001404 Constant* Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001405 if (Handler) Handler->handleConstantValue(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001406 return Result;
1407 }
1408
Reid Spencer060d25d2004-06-29 23:29:38 +00001409 case Type::ArrayTyID: {
1410 const ArrayType *AT = cast<ArrayType>(Ty);
1411 unsigned NumElements = AT->getNumElements();
1412 unsigned TypeSlot = getTypeSlot(AT->getElementType());
1413 std::vector<Constant*> Elements;
1414 Elements.reserve(NumElements);
1415 while (NumElements--) // Read all of the elements of the constant.
1416 Elements.push_back(getConstantValue(TypeSlot,
1417 read_vbr_uint()));
1418 Constant* Result = ConstantArray::get(AT, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001419 if (Handler) Handler->handleConstantArray(AT, Elements, TypeSlot, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001420 return Result;
1421 }
1422
1423 case Type::StructTyID: {
1424 const StructType *ST = cast<StructType>(Ty);
1425
1426 std::vector<Constant *> Elements;
1427 Elements.reserve(ST->getNumElements());
1428 for (unsigned i = 0; i != ST->getNumElements(); ++i)
1429 Elements.push_back(getConstantValue(ST->getElementType(i),
1430 read_vbr_uint()));
1431
1432 Constant* Result = ConstantStruct::get(ST, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001433 if (Handler) Handler->handleConstantStruct(ST, Elements, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001434 return Result;
1435 }
1436
Brian Gaeke715c90b2004-08-20 06:00:58 +00001437 case Type::PackedTyID: {
1438 const PackedType *PT = cast<PackedType>(Ty);
1439 unsigned NumElements = PT->getNumElements();
1440 unsigned TypeSlot = getTypeSlot(PT->getElementType());
1441 std::vector<Constant*> Elements;
1442 Elements.reserve(NumElements);
1443 while (NumElements--) // Read all of the elements of the constant.
1444 Elements.push_back(getConstantValue(TypeSlot,
1445 read_vbr_uint()));
1446 Constant* Result = ConstantPacked::get(PT, Elements);
1447 if (Handler) Handler->handleConstantPacked(PT, Elements, TypeSlot, Result);
1448 return Result;
1449 }
1450
Reid Spencer060d25d2004-06-29 23:29:38 +00001451 case Type::PointerTyID: { // ConstantPointerRef value...
1452 const PointerType *PT = cast<PointerType>(Ty);
1453 unsigned Slot = read_vbr_uint();
1454
1455 // Check to see if we have already read this global variable...
1456 Value *Val = getValue(TypeID, Slot, false);
Reid Spencer060d25d2004-06-29 23:29:38 +00001457 if (Val) {
Chris Lattnerbcb11cf2004-07-27 02:34:49 +00001458 GlobalValue *GV = dyn_cast<GlobalValue>(Val);
1459 if (!GV) error("GlobalValue not in ValueTable!");
1460 if (Handler) Handler->handleConstantPointer(PT, Slot, GV);
1461 return GV;
Reid Spencer060d25d2004-06-29 23:29:38 +00001462 } else {
Reid Spencer24399722004-07-09 22:21:33 +00001463 error("Forward references are not allowed here.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001464 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001465 }
1466
1467 default:
Reid Spencer24399722004-07-09 22:21:33 +00001468 error("Don't know how to deserialize constant value of type '" +
Reid Spencer060d25d2004-06-29 23:29:38 +00001469 Ty->getDescription());
1470 break;
1471 }
Reid Spencer24399722004-07-09 22:21:33 +00001472 return 0;
Reid Spencer060d25d2004-06-29 23:29:38 +00001473}
1474
Reid Spencer04cde2c2004-07-04 11:33:49 +00001475/// Resolve references for constants. This function resolves the forward
1476/// referenced constants in the ConstantFwdRefs map. It uses the
1477/// replaceAllUsesWith method of Value class to substitute the placeholder
1478/// instance with the actual instance.
Reid Spencer060d25d2004-06-29 23:29:38 +00001479void BytecodeReader::ResolveReferencesToConstant(Constant *NewV, unsigned Slot){
Chris Lattner29b789b2003-11-19 17:27:18 +00001480 ConstantRefsType::iterator I =
1481 ConstantFwdRefs.find(std::make_pair(NewV->getType(), Slot));
1482 if (I == ConstantFwdRefs.end()) return; // Never forward referenced?
Chris Lattner00950542001-06-06 20:29:01 +00001483
Chris Lattner29b789b2003-11-19 17:27:18 +00001484 Value *PH = I->second; // Get the placeholder...
1485 PH->replaceAllUsesWith(NewV);
1486 delete PH; // Delete the old placeholder
1487 ConstantFwdRefs.erase(I); // Remove the map entry for it
Vikram S. Advec1e4a812002-07-14 23:04:18 +00001488}
1489
Reid Spencer04cde2c2004-07-04 11:33:49 +00001490/// Parse the constant strings section.
Reid Spencer060d25d2004-06-29 23:29:38 +00001491void BytecodeReader::ParseStringConstants(unsigned NumEntries, ValueTable &Tab){
1492 for (; NumEntries; --NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001493 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001494 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001495 error("Invalid type (type type) for string constant");
Reid Spencer060d25d2004-06-29 23:29:38 +00001496 const Type *Ty = getType(Typ);
1497 if (!isa<ArrayType>(Ty))
Reid Spencer24399722004-07-09 22:21:33 +00001498 error("String constant data invalid!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001499
1500 const ArrayType *ATy = cast<ArrayType>(Ty);
1501 if (ATy->getElementType() != Type::SByteTy &&
1502 ATy->getElementType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001503 error("String constant data invalid!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001504
1505 // Read character data. The type tells us how long the string is.
1506 char Data[ATy->getNumElements()];
1507 read_data(Data, Data+ATy->getNumElements());
Chris Lattner52e20b02003-03-19 20:54:26 +00001508
Reid Spencer060d25d2004-06-29 23:29:38 +00001509 std::vector<Constant*> Elements(ATy->getNumElements());
1510 if (ATy->getElementType() == Type::SByteTy)
1511 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1512 Elements[i] = ConstantSInt::get(Type::SByteTy, (signed char)Data[i]);
1513 else
1514 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1515 Elements[i] = ConstantUInt::get(Type::UByteTy, (unsigned char)Data[i]);
Misha Brukman12c29d12003-09-22 23:38:23 +00001516
Reid Spencer060d25d2004-06-29 23:29:38 +00001517 // Create the constant, inserting it as needed.
1518 Constant *C = ConstantArray::get(ATy, Elements);
1519 unsigned Slot = insertValue(C, Typ, Tab);
1520 ResolveReferencesToConstant(C, Slot);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001521 if (Handler) Handler->handleConstantString(cast<ConstantArray>(C));
Reid Spencer060d25d2004-06-29 23:29:38 +00001522 }
Misha Brukman12c29d12003-09-22 23:38:23 +00001523}
1524
Reid Spencer04cde2c2004-07-04 11:33:49 +00001525/// Parse the constant pool.
Reid Spencer060d25d2004-06-29 23:29:38 +00001526void BytecodeReader::ParseConstantPool(ValueTable &Tab,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001527 TypeListTy &TypeTab,
Reid Spencer46b002c2004-07-11 17:28:43 +00001528 bool isFunction) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001529 if (Handler) Handler->handleGlobalConstantsBegin();
1530
1531 /// In LLVM 1.3 Type does not derive from Value so the types
1532 /// do not occupy a plane. Consequently, we read the types
1533 /// first in the constant pool.
Reid Spencer46b002c2004-07-11 17:28:43 +00001534 if (isFunction && !hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001535 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001536 ParseTypes(TypeTab, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001537 }
1538
Reid Spencer46b002c2004-07-11 17:28:43 +00001539 while (moreInBlock()) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001540 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001541 unsigned Typ = 0;
1542 bool isTypeType = read_typeid(Typ);
1543
1544 /// In LLVM 1.2 and before, Types were written to the
1545 /// bytecode file in the "Type Type" plane (#12).
1546 /// In 1.3 plane 12 is now the label plane. Handle this here.
Reid Spencer46b002c2004-07-11 17:28:43 +00001547 if (isTypeType) {
1548 ParseTypes(TypeTab, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001549 } else if (Typ == Type::VoidTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001550 /// Use of Type::VoidTyID is a misnomer. It actually means
1551 /// that the following plane is constant strings
Reid Spencer060d25d2004-06-29 23:29:38 +00001552 assert(&Tab == &ModuleValues && "Cannot read strings in functions!");
1553 ParseStringConstants(NumEntries, Tab);
1554 } else {
1555 for (unsigned i = 0; i < NumEntries; ++i) {
1556 Constant *C = ParseConstantValue(Typ);
1557 assert(C && "ParseConstantValue returned NULL!");
1558 unsigned Slot = insertValue(C, Typ, Tab);
Chris Lattner29b789b2003-11-19 17:27:18 +00001559
Reid Spencer060d25d2004-06-29 23:29:38 +00001560 // If we are reading a function constant table, make sure that we adjust
1561 // the slot number to be the real global constant number.
1562 //
1563 if (&Tab != &ModuleValues && Typ < ModuleValues.size() &&
1564 ModuleValues[Typ])
1565 Slot += ModuleValues[Typ]->size();
1566 ResolveReferencesToConstant(C, Slot);
1567 }
1568 }
1569 }
1570 checkPastBlockEnd("Constant Pool");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001571 if (Handler) Handler->handleGlobalConstantsEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001572}
Chris Lattner00950542001-06-06 20:29:01 +00001573
Reid Spencer04cde2c2004-07-04 11:33:49 +00001574/// Parse the contents of a function. Note that this function can be
1575/// called lazily by materializeFunction
1576/// @see materializeFunction
Reid Spencer46b002c2004-07-11 17:28:43 +00001577void BytecodeReader::ParseFunctionBody(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001578
1579 unsigned FuncSize = BlockEnd - At;
Chris Lattnere3869c82003-04-16 21:16:05 +00001580 GlobalValue::LinkageTypes Linkage = GlobalValue::ExternalLinkage;
1581
Reid Spencer060d25d2004-06-29 23:29:38 +00001582 unsigned LinkageType = read_vbr_uint();
Chris Lattnerc08912f2004-01-14 16:44:44 +00001583 switch (LinkageType) {
1584 case 0: Linkage = GlobalValue::ExternalLinkage; break;
1585 case 1: Linkage = GlobalValue::WeakLinkage; break;
1586 case 2: Linkage = GlobalValue::AppendingLinkage; break;
1587 case 3: Linkage = GlobalValue::InternalLinkage; break;
1588 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001589 default:
Reid Spencer24399722004-07-09 22:21:33 +00001590 error("Invalid linkage type for Function.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001591 Linkage = GlobalValue::InternalLinkage;
1592 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00001593 }
Chris Lattnerd23b1d32001-11-26 18:56:10 +00001594
Reid Spencer46b002c2004-07-11 17:28:43 +00001595 F->setLinkage(Linkage);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001596 if (Handler) Handler->handleFunctionBegin(F,FuncSize);
Chris Lattner00950542001-06-06 20:29:01 +00001597
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001598 // Keep track of how many basic blocks we have read in...
1599 unsigned BlockNum = 0;
Chris Lattner89e02532004-01-18 21:08:15 +00001600 bool InsertedArguments = false;
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001601
Reid Spencer060d25d2004-06-29 23:29:38 +00001602 BufPtr MyEnd = BlockEnd;
Reid Spencer46b002c2004-07-11 17:28:43 +00001603 while (At < MyEnd) {
Chris Lattner00950542001-06-06 20:29:01 +00001604 unsigned Type, Size;
Reid Spencer060d25d2004-06-29 23:29:38 +00001605 BufPtr OldAt = At;
1606 read_block(Type, Size);
Chris Lattner00950542001-06-06 20:29:01 +00001607
1608 switch (Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001609 case BytecodeFormat::ConstantPoolBlockID:
Chris Lattner89e02532004-01-18 21:08:15 +00001610 if (!InsertedArguments) {
1611 // Insert arguments into the value table before we parse the first basic
1612 // block in the function, but after we potentially read in the
1613 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001614 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001615 InsertedArguments = true;
1616 }
1617
Reid Spencer04cde2c2004-07-04 11:33:49 +00001618 ParseConstantPool(FunctionValues, FunctionTypes, true);
Chris Lattner00950542001-06-06 20:29:01 +00001619 break;
1620
Reid Spencerad89bd62004-07-25 18:07:36 +00001621 case BytecodeFormat::CompactionTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001622 ParseCompactionTable();
Chris Lattner89e02532004-01-18 21:08:15 +00001623 break;
1624
Chris Lattner00950542001-06-06 20:29:01 +00001625 case BytecodeFormat::BasicBlock: {
Chris Lattner89e02532004-01-18 21:08:15 +00001626 if (!InsertedArguments) {
1627 // Insert arguments into the value table before we parse the first basic
1628 // block in the function, but after we potentially read in the
1629 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001630 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001631 InsertedArguments = true;
1632 }
1633
Reid Spencer060d25d2004-06-29 23:29:38 +00001634 BasicBlock *BB = ParseBasicBlock(BlockNum++);
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001635 F->getBasicBlockList().push_back(BB);
Chris Lattner00950542001-06-06 20:29:01 +00001636 break;
1637 }
1638
Reid Spencerad89bd62004-07-25 18:07:36 +00001639 case BytecodeFormat::InstructionListBlockID: {
Chris Lattner89e02532004-01-18 21:08:15 +00001640 // Insert arguments into the value table before we parse the instruction
1641 // list for the function, but after we potentially read in the compaction
1642 // table.
1643 if (!InsertedArguments) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001644 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001645 InsertedArguments = true;
1646 }
1647
Reid Spencer060d25d2004-06-29 23:29:38 +00001648 if (BlockNum)
Reid Spencer24399722004-07-09 22:21:33 +00001649 error("Already parsed basic blocks!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001650 BlockNum = ParseInstructionList(F);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001651 break;
1652 }
1653
Reid Spencerad89bd62004-07-25 18:07:36 +00001654 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001655 ParseSymbolTable(F, &F->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00001656 break;
1657
1658 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00001659 At += Size;
1660 if (OldAt > At)
Reid Spencer24399722004-07-09 22:21:33 +00001661 error("Wrapped around reading bytecode.");
Chris Lattner00950542001-06-06 20:29:01 +00001662 break;
1663 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001664 BlockEnd = MyEnd;
Chris Lattner1d670cc2001-09-07 16:37:43 +00001665
Misha Brukman12c29d12003-09-22 23:38:23 +00001666 // Malformed bc file if read past end of block.
Reid Spencer060d25d2004-06-29 23:29:38 +00001667 align32();
Chris Lattner00950542001-06-06 20:29:01 +00001668 }
1669
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001670 // Make sure there were no references to non-existant basic blocks.
1671 if (BlockNum != ParsedBasicBlocks.size())
Reid Spencer24399722004-07-09 22:21:33 +00001672 error("Illegal basic block operand reference");
Reid Spencer060d25d2004-06-29 23:29:38 +00001673
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001674 ParsedBasicBlocks.clear();
1675
Chris Lattner97330cf2003-10-09 23:10:14 +00001676 // Resolve forward references. Replace any uses of a forward reference value
1677 // with the real value.
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001678
Chris Lattner97330cf2003-10-09 23:10:14 +00001679 // replaceAllUsesWith is very inefficient for instructions which have a LARGE
1680 // number of operands. PHI nodes often have forward references, and can also
1681 // often have a very large number of operands.
Chris Lattner89e02532004-01-18 21:08:15 +00001682 //
1683 // FIXME: REEVALUATE. replaceAllUsesWith is _much_ faster now, and this code
1684 // should be simplified back to using it!
1685 //
Chris Lattner97330cf2003-10-09 23:10:14 +00001686 std::map<Value*, Value*> ForwardRefMapping;
1687 for (std::map<std::pair<unsigned,unsigned>, Value*>::iterator
1688 I = ForwardReferences.begin(), E = ForwardReferences.end();
1689 I != E; ++I)
1690 ForwardRefMapping[I->second] = getValue(I->first.first, I->first.second,
1691 false);
1692
1693 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1694 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1695 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Reid Spencer5b472d92004-08-21 20:49:23 +00001696 if (Value* V = I->getOperand(i))
1697 if (Argument *A = dyn_cast<Argument>(V)) {
1698 std::map<Value*, Value*>::iterator It = ForwardRefMapping.find(A);
1699 if (It != ForwardRefMapping.end()) I->setOperand(i, It->second);
1700 }
Chris Lattner97330cf2003-10-09 23:10:14 +00001701
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001702 while (!ForwardReferences.empty()) {
Chris Lattner35d2ca62003-10-09 22:39:30 +00001703 std::map<std::pair<unsigned,unsigned>, Value*>::iterator I =
1704 ForwardReferences.begin();
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001705 Value *PlaceHolder = I->second;
1706 ForwardReferences.erase(I);
Chris Lattner00950542001-06-06 20:29:01 +00001707
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001708 // Now that all the uses are gone, delete the placeholder...
1709 // If we couldn't find a def (error case), then leak a little
1710 // memory, because otherwise we can't remove all uses!
1711 delete PlaceHolder;
Chris Lattner6e448022003-10-08 21:51:46 +00001712 }
Chris Lattner00950542001-06-06 20:29:01 +00001713
Misha Brukman12c29d12003-09-22 23:38:23 +00001714 // Clear out function-level types...
Reid Spencer060d25d2004-06-29 23:29:38 +00001715 FunctionTypes.clear();
1716 CompactionTypes.clear();
1717 CompactionValues.clear();
1718 freeTable(FunctionValues);
1719
Reid Spencer04cde2c2004-07-04 11:33:49 +00001720 if (Handler) Handler->handleFunctionEnd(F);
Chris Lattner00950542001-06-06 20:29:01 +00001721}
1722
Reid Spencer04cde2c2004-07-04 11:33:49 +00001723/// This function parses LLVM functions lazily. It obtains the type of the
1724/// function and records where the body of the function is in the bytecode
1725/// buffer. The caller can then use the ParseNextFunction and
1726/// ParseAllFunctionBodies to get handler events for the functions.
Reid Spencer060d25d2004-06-29 23:29:38 +00001727void BytecodeReader::ParseFunctionLazily() {
1728 if (FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00001729 error("FunctionSignatureList empty!");
Chris Lattner89e02532004-01-18 21:08:15 +00001730
Reid Spencer060d25d2004-06-29 23:29:38 +00001731 Function *Func = FunctionSignatureList.back();
1732 FunctionSignatureList.pop_back();
Chris Lattner24102432004-01-18 22:35:34 +00001733
Reid Spencer060d25d2004-06-29 23:29:38 +00001734 // Save the information for future reading of the function
1735 LazyFunctionLoadMap[Func] = LazyFunctionInfo(BlockStart, BlockEnd);
Chris Lattner89e02532004-01-18 21:08:15 +00001736
Reid Spencer060d25d2004-06-29 23:29:38 +00001737 // Pretend we've `parsed' this function
1738 At = BlockEnd;
1739}
Chris Lattner89e02532004-01-18 21:08:15 +00001740
Reid Spencer04cde2c2004-07-04 11:33:49 +00001741/// The ParserFunction method lazily parses one function. Use this method to
1742/// casue the parser to parse a specific function in the module. Note that
1743/// this will remove the function from what is to be included by
1744/// ParseAllFunctionBodies.
1745/// @see ParseAllFunctionBodies
1746/// @see ParseBytecode
Reid Spencer060d25d2004-06-29 23:29:38 +00001747void BytecodeReader::ParseFunction(Function* Func) {
1748 // Find {start, end} pointers and slot in the map. If not there, we're done.
1749 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.find(Func);
Chris Lattner89e02532004-01-18 21:08:15 +00001750
Reid Spencer060d25d2004-06-29 23:29:38 +00001751 // Make sure we found it
Reid Spencer46b002c2004-07-11 17:28:43 +00001752 if (Fi == LazyFunctionLoadMap.end()) {
Reid Spencer24399722004-07-09 22:21:33 +00001753 error("Unrecognized function of type " + Func->getType()->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00001754 return;
Chris Lattner89e02532004-01-18 21:08:15 +00001755 }
1756
Reid Spencer060d25d2004-06-29 23:29:38 +00001757 BlockStart = At = Fi->second.Buf;
1758 BlockEnd = Fi->second.EndBuf;
Reid Spencer24399722004-07-09 22:21:33 +00001759 assert(Fi->first == Func && "Found wrong function?");
Reid Spencer060d25d2004-06-29 23:29:38 +00001760
1761 LazyFunctionLoadMap.erase(Fi);
1762
Reid Spencer46b002c2004-07-11 17:28:43 +00001763 this->ParseFunctionBody(Func);
Chris Lattner89e02532004-01-18 21:08:15 +00001764}
1765
Reid Spencer04cde2c2004-07-04 11:33:49 +00001766/// The ParseAllFunctionBodies method parses through all the previously
1767/// unparsed functions in the bytecode file. If you want to completely parse
1768/// a bytecode file, this method should be called after Parsebytecode because
1769/// Parsebytecode only records the locations in the bytecode file of where
1770/// the function definitions are located. This function uses that information
1771/// to materialize the functions.
1772/// @see ParseBytecode
Reid Spencer060d25d2004-06-29 23:29:38 +00001773void BytecodeReader::ParseAllFunctionBodies() {
1774 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.begin();
1775 LazyFunctionMap::iterator Fe = LazyFunctionLoadMap.end();
Chris Lattner89e02532004-01-18 21:08:15 +00001776
Reid Spencer46b002c2004-07-11 17:28:43 +00001777 while (Fi != Fe) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001778 Function* Func = Fi->first;
1779 BlockStart = At = Fi->second.Buf;
1780 BlockEnd = Fi->second.EndBuf;
1781 this->ParseFunctionBody(Func);
1782 ++Fi;
1783 }
1784}
Chris Lattner89e02532004-01-18 21:08:15 +00001785
Reid Spencer04cde2c2004-07-04 11:33:49 +00001786/// Parse the global type list
Reid Spencer060d25d2004-06-29 23:29:38 +00001787void BytecodeReader::ParseGlobalTypes() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001788 // Read the number of types
1789 unsigned NumEntries = read_vbr_uint();
Reid Spencer011bed52004-07-09 21:13:53 +00001790
1791 // Ignore the type plane identifier for types if the bc file is pre 1.3
1792 if (hasTypeDerivedFromValue)
1793 read_vbr_uint();
1794
Reid Spencer46b002c2004-07-11 17:28:43 +00001795 ParseTypes(ModuleTypes, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001796}
1797
Reid Spencer04cde2c2004-07-04 11:33:49 +00001798/// Parse the Global info (types, global vars, constants)
Reid Spencer060d25d2004-06-29 23:29:38 +00001799void BytecodeReader::ParseModuleGlobalInfo() {
1800
Reid Spencer04cde2c2004-07-04 11:33:49 +00001801 if (Handler) Handler->handleModuleGlobalsBegin();
Chris Lattner00950542001-06-06 20:29:01 +00001802
Chris Lattner70cc3392001-09-10 07:58:01 +00001803 // Read global variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00001804 unsigned VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00001805 while (VarType != Type::VoidTyID) { // List is terminated by Void
Chris Lattner9dd87702004-04-03 23:43:42 +00001806 // VarType Fields: bit0 = isConstant, bit1 = hasInitializer, bit2,3,4 =
1807 // Linkage, bit4+ = slot#
1808 unsigned SlotNo = VarType >> 5;
Reid Spencer46b002c2004-07-11 17:28:43 +00001809 if (sanitizeTypeId(SlotNo))
Reid Spencer24399722004-07-09 22:21:33 +00001810 error("Invalid type (type type) for global var!");
Chris Lattner9dd87702004-04-03 23:43:42 +00001811 unsigned LinkageID = (VarType >> 2) & 7;
Reid Spencer060d25d2004-06-29 23:29:38 +00001812 bool isConstant = VarType & 1;
1813 bool hasInitializer = VarType & 2;
Chris Lattnere3869c82003-04-16 21:16:05 +00001814 GlobalValue::LinkageTypes Linkage;
1815
Chris Lattnerc08912f2004-01-14 16:44:44 +00001816 switch (LinkageID) {
Chris Lattnerc08912f2004-01-14 16:44:44 +00001817 case 0: Linkage = GlobalValue::ExternalLinkage; break;
1818 case 1: Linkage = GlobalValue::WeakLinkage; break;
1819 case 2: Linkage = GlobalValue::AppendingLinkage; break;
1820 case 3: Linkage = GlobalValue::InternalLinkage; break;
1821 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001822 default:
Reid Spencer24399722004-07-09 22:21:33 +00001823 error("Unknown linkage type: " + utostr(LinkageID));
Reid Spencer060d25d2004-06-29 23:29:38 +00001824 Linkage = GlobalValue::InternalLinkage;
1825 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00001826 }
1827
1828 const Type *Ty = getType(SlotNo);
Reid Spencer46b002c2004-07-11 17:28:43 +00001829 if (!Ty) {
Reid Spencer24399722004-07-09 22:21:33 +00001830 error("Global has no type! SlotNo=" + utostr(SlotNo));
Reid Spencer060d25d2004-06-29 23:29:38 +00001831 }
1832
Reid Spencer46b002c2004-07-11 17:28:43 +00001833 if (!isa<PointerType>(Ty)) {
Reid Spencer24399722004-07-09 22:21:33 +00001834 error("Global not a pointer type! Ty= " + Ty->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00001835 }
Chris Lattner70cc3392001-09-10 07:58:01 +00001836
Chris Lattner52e20b02003-03-19 20:54:26 +00001837 const Type *ElTy = cast<PointerType>(Ty)->getElementType();
Chris Lattnerd70684f2001-09-18 04:01:05 +00001838
Chris Lattner70cc3392001-09-10 07:58:01 +00001839 // Create the global variable...
Reid Spencer060d25d2004-06-29 23:29:38 +00001840 GlobalVariable *GV = new GlobalVariable(ElTy, isConstant, Linkage,
Chris Lattner52e20b02003-03-19 20:54:26 +00001841 0, "", TheModule);
Chris Lattner29b789b2003-11-19 17:27:18 +00001842 insertValue(GV, SlotNo, ModuleValues);
Chris Lattner05950c32001-10-13 06:47:01 +00001843
Reid Spencer060d25d2004-06-29 23:29:38 +00001844 unsigned initSlot = 0;
1845 if (hasInitializer) {
1846 initSlot = read_vbr_uint();
1847 GlobalInits.push_back(std::make_pair(GV, initSlot));
1848 }
1849
1850 // Notify handler about the global value.
Chris Lattner4a242b32004-10-14 01:39:18 +00001851 if (Handler)
1852 Handler->handleGlobalVariable(ElTy, isConstant, Linkage, SlotNo,initSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001853
1854 // Get next item
1855 VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00001856 }
1857
Chris Lattner52e20b02003-03-19 20:54:26 +00001858 // Read the function objects for all of the functions that are coming
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001859 unsigned FnSignature = read_vbr_uint();
Reid Spencer24399722004-07-09 22:21:33 +00001860
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001861 if (hasNoFlagsForFunctions)
1862 FnSignature = (FnSignature << 5) + 1;
1863
1864 // List is terminated by VoidTy.
1865 while ((FnSignature >> 5) != Type::VoidTyID) {
1866 const Type *Ty = getType(FnSignature >> 5);
Chris Lattner927b1852003-10-09 20:22:47 +00001867 if (!isa<PointerType>(Ty) ||
Reid Spencer060d25d2004-06-29 23:29:38 +00001868 !isa<FunctionType>(cast<PointerType>(Ty)->getElementType())) {
Reid Spencer24399722004-07-09 22:21:33 +00001869 error("Function not a pointer to function type! Ty = " +
Reid Spencer46b002c2004-07-11 17:28:43 +00001870 Ty->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00001871 }
Chris Lattner8cdc6b72002-10-23 00:51:54 +00001872
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00001873 // We create functions by passing the underlying FunctionType to create...
Reid Spencer060d25d2004-06-29 23:29:38 +00001874 const FunctionType* FTy =
1875 cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
Chris Lattner00950542001-06-06 20:29:01 +00001876
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001877
Reid Spencer060d25d2004-06-29 23:29:38 +00001878 // Insert the place hodler
1879 Function* Func = new Function(FTy, GlobalValue::InternalLinkage,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001880 "", TheModule);
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001881 insertValue(Func, FnSignature >> 5, ModuleValues);
1882
1883 // Flags are not used yet.
1884 //unsigned Flags = FnSignature & 31;
Chris Lattner00950542001-06-06 20:29:01 +00001885
Reid Spencer060d25d2004-06-29 23:29:38 +00001886 // Save this for later so we know type of lazily instantiated functions
Chris Lattner29b789b2003-11-19 17:27:18 +00001887 FunctionSignatureList.push_back(Func);
Chris Lattner52e20b02003-03-19 20:54:26 +00001888
Reid Spencer04cde2c2004-07-04 11:33:49 +00001889 if (Handler) Handler->handleFunctionDeclaration(Func);
Reid Spencer060d25d2004-06-29 23:29:38 +00001890
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001891 // Get the next function signature.
1892 FnSignature = read_vbr_uint();
1893 if (hasNoFlagsForFunctions)
1894 FnSignature = (FnSignature << 5) + 1;
Chris Lattner00950542001-06-06 20:29:01 +00001895 }
1896
Chris Lattner74734132002-08-17 22:01:27 +00001897 // Now that the function signature list is set up, reverse it so that we can
1898 // remove elements efficiently from the back of the vector.
1899 std::reverse(FunctionSignatureList.begin(), FunctionSignatureList.end());
Chris Lattner00950542001-06-06 20:29:01 +00001900
Reid Spencerad89bd62004-07-25 18:07:36 +00001901 // If this bytecode format has dependent library information in it ..
1902 if (!hasNoDependentLibraries) {
1903 // Read in the number of dependent library items that follow
1904 unsigned num_dep_libs = read_vbr_uint();
1905 std::string dep_lib;
1906 while( num_dep_libs-- ) {
1907 dep_lib = read_str();
Reid Spencerada16182004-07-25 21:36:26 +00001908 TheModule->addLibrary(dep_lib);
Reid Spencer5b472d92004-08-21 20:49:23 +00001909 if (Handler)
1910 Handler->handleDependentLibrary(dep_lib);
Reid Spencerad89bd62004-07-25 18:07:36 +00001911 }
1912
Reid Spencer5b472d92004-08-21 20:49:23 +00001913
Reid Spencerad89bd62004-07-25 18:07:36 +00001914 // Read target triple and place into the module
1915 std::string triple = read_str();
1916 TheModule->setTargetTriple(triple);
Reid Spencer5b472d92004-08-21 20:49:23 +00001917 if (Handler)
1918 Handler->handleTargetTriple(triple);
Reid Spencerad89bd62004-07-25 18:07:36 +00001919 }
1920
1921 if (hasInconsistentModuleGlobalInfo)
1922 align32();
1923
Chris Lattner00950542001-06-06 20:29:01 +00001924 // This is for future proofing... in the future extra fields may be added that
1925 // we don't understand, so we transparently ignore them.
1926 //
Reid Spencer060d25d2004-06-29 23:29:38 +00001927 At = BlockEnd;
1928
Reid Spencer04cde2c2004-07-04 11:33:49 +00001929 if (Handler) Handler->handleModuleGlobalsEnd();
Chris Lattner00950542001-06-06 20:29:01 +00001930}
1931
Reid Spencer04cde2c2004-07-04 11:33:49 +00001932/// Parse the version information and decode it by setting flags on the
1933/// Reader that enable backward compatibility of the reader.
Reid Spencer060d25d2004-06-29 23:29:38 +00001934void BytecodeReader::ParseVersionInfo() {
1935 unsigned Version = read_vbr_uint();
Chris Lattner036b8aa2003-03-06 17:55:45 +00001936
1937 // Unpack version number: low four bits are for flags, top bits = version
Chris Lattnerd445c6b2003-08-24 13:47:36 +00001938 Module::Endianness Endianness;
1939 Module::PointerSize PointerSize;
1940 Endianness = (Version & 1) ? Module::BigEndian : Module::LittleEndian;
1941 PointerSize = (Version & 2) ? Module::Pointer64 : Module::Pointer32;
1942
1943 bool hasNoEndianness = Version & 4;
1944 bool hasNoPointerSize = Version & 8;
1945
1946 RevisionNum = Version >> 4;
Chris Lattnere3869c82003-04-16 21:16:05 +00001947
1948 // Default values for the current bytecode version
Chris Lattner44d0eeb2004-01-15 17:55:01 +00001949 hasInconsistentModuleGlobalInfo = false;
Chris Lattner80b97342004-01-17 23:25:43 +00001950 hasExplicitPrimitiveZeros = false;
Chris Lattner5fa428f2004-04-05 01:27:26 +00001951 hasRestrictedGEPTypes = false;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001952 hasTypeDerivedFromValue = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00001953 hasLongBlockHeaders = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00001954 has32BitTypes = false;
1955 hasNoDependentLibraries = false;
Reid Spencer38d54be2004-08-17 07:45:14 +00001956 hasAlignment = false;
Reid Spencer5b472d92004-08-21 20:49:23 +00001957 hasInconsistentBBSlotNums = false;
1958 hasVBRByteTypes = false;
1959 hasUnnecessaryModuleBlockId = false;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001960 hasNoUndefValue = false;
1961 hasNoFlagsForFunctions = false;
1962 hasNoUnreachableInst = false;
Chris Lattner036b8aa2003-03-06 17:55:45 +00001963
1964 switch (RevisionNum) {
Reid Spencer5b472d92004-08-21 20:49:23 +00001965 case 0: // LLVM 1.0, 1.1 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00001966 // Base LLVM 1.0 bytecode format.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00001967 hasInconsistentModuleGlobalInfo = true;
Chris Lattner80b97342004-01-17 23:25:43 +00001968 hasExplicitPrimitiveZeros = true;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001969
Chris Lattner80b97342004-01-17 23:25:43 +00001970 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00001971
1972 case 1: // LLVM 1.2 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00001973 // LLVM 1.2 added explicit support for emitting strings efficiently.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00001974
1975 // Also, it fixed the problem where the size of the ModuleGlobalInfo block
1976 // included the size for the alignment at the end, where the rest of the
1977 // blocks did not.
Chris Lattner5fa428f2004-04-05 01:27:26 +00001978
1979 // LLVM 1.2 and before required that GEP indices be ubyte constants for
1980 // structures and longs for sequential types.
1981 hasRestrictedGEPTypes = true;
1982
Reid Spencer04cde2c2004-07-04 11:33:49 +00001983 // LLVM 1.2 and before had the Type class derive from Value class. This
1984 // changed in release 1.3 and consequently LLVM 1.3 bytecode files are
1985 // written differently because Types can no longer be part of the
1986 // type planes for Values.
1987 hasTypeDerivedFromValue = true;
1988
Chris Lattner5fa428f2004-04-05 01:27:26 +00001989 // FALL THROUGH
Reid Spencerad89bd62004-07-25 18:07:36 +00001990
Reid Spencer5b472d92004-08-21 20:49:23 +00001991 case 2: // 1.2.5 (Not Released)
Reid Spencerad89bd62004-07-25 18:07:36 +00001992
Reid Spencer5b472d92004-08-21 20:49:23 +00001993 // LLVM 1.2 and earlier had two-word block headers. This is a bit wasteful,
Chris Lattner4a242b32004-10-14 01:39:18 +00001994 // especially for small files where the 8 bytes per block is a large
1995 // fraction of the total block size. In LLVM 1.3, the block type and length
1996 // are compressed into a single 32-bit unsigned integer. 27 bits for length,
1997 // 5 bits for block type.
Reid Spencerad89bd62004-07-25 18:07:36 +00001998 hasLongBlockHeaders = true;
1999
Reid Spencer5b472d92004-08-21 20:49:23 +00002000 // LLVM 1.2 and earlier wrote type slot numbers as vbr_uint32. In LLVM 1.3
Chris Lattner4a242b32004-10-14 01:39:18 +00002001 // this has been reduced to vbr_uint24. It shouldn't make much difference
2002 // since we haven't run into a module with > 24 million types, but for
2003 // safety the 24-bit restriction has been enforced in 1.3 to free some bits
2004 // in various places and to ensure consistency.
Reid Spencerad89bd62004-07-25 18:07:36 +00002005 has32BitTypes = true;
2006
Reid Spencer5b472d92004-08-21 20:49:23 +00002007 // LLVM 1.2 and earlier did not provide a target triple nor a list of
2008 // libraries on which the bytecode is dependent. LLVM 1.3 provides these
2009 // features, for use in future versions of LLVM.
Reid Spencerad89bd62004-07-25 18:07:36 +00002010 hasNoDependentLibraries = true;
2011
2012 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002013
2014 case 3: // LLVM 1.3 (Released)
2015 // LLVM 1.3 and earlier caused alignment bytes to be written on some block
2016 // boundaries and at the end of some strings. In extreme cases (e.g. lots
2017 // of GEP references to a constant array), this can increase the file size
2018 // by 30% or more. In version 1.4 alignment is done away with completely.
Reid Spencer38d54be2004-08-17 07:45:14 +00002019 hasAlignment = true;
2020
2021 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002022
2023 case 4: // 1.3.1 (Not Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002024 // In version 4, we did not support the 'undef' constant.
2025 hasNoUndefValue = true;
2026
2027 // In version 4 and above, we did not include space for flags for functions
2028 // in the module info block.
2029 hasNoFlagsForFunctions = true;
2030
2031 // In version 4 and above, we did not include the 'unreachable' instruction
2032 // in the opcode numbering in the bytecode file.
2033 hasNoUnreachableInst = true;
Chris Lattner2e7ec122004-10-16 18:56:02 +00002034 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002035
2036 // FALL THROUGH
2037
2038 case 5: // 1.x.x (Not Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002039 break;
Chris Lattner2e7ec122004-10-16 18:56:02 +00002040 // FIXME: NONE of this is implemented yet!
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002041
2042 // In version 5, basic blocks have a minimum index of 0 whereas all the
Reid Spencer5b472d92004-08-21 20:49:23 +00002043 // other primitives have a minimum index of 1 (because 0 is the "null"
2044 // value. In version 5, we made this consistent.
2045 hasInconsistentBBSlotNums = true;
Chris Lattnerc08912f2004-01-14 16:44:44 +00002046
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002047 // In version 5, the types SByte and UByte were encoded as vbr_uint so that
Reid Spencer5b472d92004-08-21 20:49:23 +00002048 // signed values > 63 and unsigned values >127 would be encoded as two
2049 // bytes. In version 5, they are encoded directly in a single byte.
2050 hasVBRByteTypes = true;
2051
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002052 // In version 5, modules begin with a "Module Block" which encodes a 4-byte
Reid Spencer5b472d92004-08-21 20:49:23 +00002053 // integer value 0x01 to identify the module block. This is unnecessary and
2054 // removed in version 5.
2055 hasUnnecessaryModuleBlockId = true;
2056
Chris Lattner036b8aa2003-03-06 17:55:45 +00002057 default:
Reid Spencer24399722004-07-09 22:21:33 +00002058 error("Unknown bytecode version number: " + itostr(RevisionNum));
Chris Lattner036b8aa2003-03-06 17:55:45 +00002059 }
2060
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002061 if (hasNoEndianness) Endianness = Module::AnyEndianness;
2062 if (hasNoPointerSize) PointerSize = Module::AnyPointerSize;
Chris Lattner76e38962003-04-22 18:15:10 +00002063
Brian Gaekefe2102b2004-07-14 20:33:13 +00002064 TheModule->setEndianness(Endianness);
2065 TheModule->setPointerSize(PointerSize);
2066
Reid Spencer46b002c2004-07-11 17:28:43 +00002067 if (Handler) Handler->handleVersionInfo(RevisionNum, Endianness, PointerSize);
Chris Lattner036b8aa2003-03-06 17:55:45 +00002068}
2069
Reid Spencer04cde2c2004-07-04 11:33:49 +00002070/// Parse a whole module.
Reid Spencer060d25d2004-06-29 23:29:38 +00002071void BytecodeReader::ParseModule() {
Chris Lattner00950542001-06-06 20:29:01 +00002072 unsigned Type, Size;
Chris Lattner00950542001-06-06 20:29:01 +00002073
Reid Spencer060d25d2004-06-29 23:29:38 +00002074 FunctionSignatureList.clear(); // Just in case...
Chris Lattner00950542001-06-06 20:29:01 +00002075
2076 // Read into instance variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00002077 ParseVersionInfo();
Reid Spencerad89bd62004-07-25 18:07:36 +00002078 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002079
Reid Spencer060d25d2004-06-29 23:29:38 +00002080 bool SeenModuleGlobalInfo = false;
2081 bool SeenGlobalTypePlane = false;
2082 BufPtr MyEnd = BlockEnd;
2083 while (At < MyEnd) {
2084 BufPtr OldAt = At;
2085 read_block(Type, Size);
2086
Chris Lattner00950542001-06-06 20:29:01 +00002087 switch (Type) {
Reid Spencer060d25d2004-06-29 23:29:38 +00002088
Reid Spencerad89bd62004-07-25 18:07:36 +00002089 case BytecodeFormat::GlobalTypePlaneBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002090 if (SeenGlobalTypePlane)
Reid Spencer24399722004-07-09 22:21:33 +00002091 error("Two GlobalTypePlane Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002092
Reid Spencer5b472d92004-08-21 20:49:23 +00002093 if (Size > 0)
2094 ParseGlobalTypes();
Reid Spencer060d25d2004-06-29 23:29:38 +00002095 SeenGlobalTypePlane = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002096 break;
2097
Reid Spencerad89bd62004-07-25 18:07:36 +00002098 case BytecodeFormat::ModuleGlobalInfoBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002099 if (SeenModuleGlobalInfo)
Reid Spencer24399722004-07-09 22:21:33 +00002100 error("Two ModuleGlobalInfo Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002101 ParseModuleGlobalInfo();
2102 SeenModuleGlobalInfo = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002103 break;
2104
Reid Spencerad89bd62004-07-25 18:07:36 +00002105 case BytecodeFormat::ConstantPoolBlockID:
Reid Spencer04cde2c2004-07-04 11:33:49 +00002106 ParseConstantPool(ModuleValues, ModuleTypes,false);
Chris Lattner00950542001-06-06 20:29:01 +00002107 break;
2108
Reid Spencerad89bd62004-07-25 18:07:36 +00002109 case BytecodeFormat::FunctionBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002110 ParseFunctionLazily();
Chris Lattner00950542001-06-06 20:29:01 +00002111 break;
Chris Lattner00950542001-06-06 20:29:01 +00002112
Reid Spencerad89bd62004-07-25 18:07:36 +00002113 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002114 ParseSymbolTable(0, &TheModule->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00002115 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00002116
Chris Lattner00950542001-06-06 20:29:01 +00002117 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00002118 At += Size;
2119 if (OldAt > At) {
Reid Spencer46b002c2004-07-11 17:28:43 +00002120 error("Unexpected Block of Type #" + utostr(Type) + " encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002121 }
Chris Lattner00950542001-06-06 20:29:01 +00002122 break;
2123 }
Reid Spencer060d25d2004-06-29 23:29:38 +00002124 BlockEnd = MyEnd;
2125 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002126 }
2127
Chris Lattner52e20b02003-03-19 20:54:26 +00002128 // After the module constant pool has been read, we can safely initialize
2129 // global variables...
2130 while (!GlobalInits.empty()) {
2131 GlobalVariable *GV = GlobalInits.back().first;
2132 unsigned Slot = GlobalInits.back().second;
2133 GlobalInits.pop_back();
2134
2135 // Look up the initializer value...
Chris Lattner29b789b2003-11-19 17:27:18 +00002136 // FIXME: Preserve this type ID!
Reid Spencer060d25d2004-06-29 23:29:38 +00002137
2138 const llvm::PointerType* GVType = GV->getType();
2139 unsigned TypeSlot = getTypeSlot(GVType->getElementType());
Chris Lattner93361992004-01-15 18:45:25 +00002140 if (Constant *CV = getConstantValue(TypeSlot, Slot)) {
Misha Brukman12c29d12003-09-22 23:38:23 +00002141 if (GV->hasInitializer())
Reid Spencer24399722004-07-09 22:21:33 +00002142 error("Global *already* has an initializer?!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00002143 if (Handler) Handler->handleGlobalInitializer(GV,CV);
Chris Lattner93361992004-01-15 18:45:25 +00002144 GV->setInitializer(CV);
Chris Lattner52e20b02003-03-19 20:54:26 +00002145 } else
Reid Spencer24399722004-07-09 22:21:33 +00002146 error("Cannot find initializer value.");
Chris Lattner52e20b02003-03-19 20:54:26 +00002147 }
2148
Reid Spencer060d25d2004-06-29 23:29:38 +00002149 /// Make sure we pulled them all out. If we didn't then there's a declaration
2150 /// but a missing body. That's not allowed.
Misha Brukman12c29d12003-09-22 23:38:23 +00002151 if (!FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00002152 error("Function declared, but bytecode stream ended before definition");
Chris Lattner00950542001-06-06 20:29:01 +00002153}
2154
Reid Spencer04cde2c2004-07-04 11:33:49 +00002155/// This function completely parses a bytecode buffer given by the \p Buf
2156/// and \p Length parameters.
Reid Spencer46b002c2004-07-11 17:28:43 +00002157void BytecodeReader::ParseBytecode(BufPtr Buf, unsigned Length,
Reid Spencer5b472d92004-08-21 20:49:23 +00002158 const std::string &ModuleID) {
Misha Brukmane0dd0d42003-09-23 16:15:29 +00002159
Reid Spencer060d25d2004-06-29 23:29:38 +00002160 try {
2161 At = MemStart = BlockStart = Buf;
2162 MemEnd = BlockEnd = Buf + Length;
Misha Brukmane0dd0d42003-09-23 16:15:29 +00002163
Reid Spencer060d25d2004-06-29 23:29:38 +00002164 // Create the module
2165 TheModule = new Module(ModuleID);
Chris Lattner00950542001-06-06 20:29:01 +00002166
Reid Spencer04cde2c2004-07-04 11:33:49 +00002167 if (Handler) Handler->handleStart(TheModule, Length);
Reid Spencer060d25d2004-06-29 23:29:38 +00002168
2169 // Read and check signature...
2170 unsigned Sig = read_uint();
2171 if (Sig != ('l' | ('l' << 8) | ('v' << 16) | ('m' << 24))) {
Reid Spencer24399722004-07-09 22:21:33 +00002172 error("Invalid bytecode signature: " + utostr(Sig));
Reid Spencer060d25d2004-06-29 23:29:38 +00002173 }
2174
Reid Spencer060d25d2004-06-29 23:29:38 +00002175 // Tell the handler we're starting a module
Reid Spencer04cde2c2004-07-04 11:33:49 +00002176 if (Handler) Handler->handleModuleBegin(ModuleID);
Reid Spencer060d25d2004-06-29 23:29:38 +00002177
Reid Spencerad89bd62004-07-25 18:07:36 +00002178 // Get the module block and size and verify. This is handled specially
2179 // because the module block/size is always written in long format. Other
2180 // blocks are written in short format so the read_block method is used.
Reid Spencer060d25d2004-06-29 23:29:38 +00002181 unsigned Type, Size;
Reid Spencerad89bd62004-07-25 18:07:36 +00002182 Type = read_uint();
2183 Size = read_uint();
2184 if (Type != BytecodeFormat::ModuleBlockID) {
Reid Spencer24399722004-07-09 22:21:33 +00002185 error("Expected Module Block! Type:" + utostr(Type) + ", Size:"
Reid Spencer46b002c2004-07-11 17:28:43 +00002186 + utostr(Size));
Reid Spencer060d25d2004-06-29 23:29:38 +00002187 }
Chris Lattner56bc8942004-09-27 16:59:06 +00002188
2189 // It looks like the darwin ranlib program is broken, and adds trailing
2190 // garbage to the end of some bytecode files. This hack allows the bc
2191 // reader to ignore trailing garbage on bytecode files.
2192 if (At + Size < MemEnd)
2193 MemEnd = BlockEnd = At+Size;
2194
2195 if (At + Size != MemEnd)
Reid Spencer24399722004-07-09 22:21:33 +00002196 error("Invalid Top Level Block Length! Type:" + utostr(Type)
Reid Spencer46b002c2004-07-11 17:28:43 +00002197 + ", Size:" + utostr(Size));
Reid Spencer060d25d2004-06-29 23:29:38 +00002198
2199 // Parse the module contents
2200 this->ParseModule();
2201
Reid Spencer060d25d2004-06-29 23:29:38 +00002202 // Check for missing functions
Reid Spencer46b002c2004-07-11 17:28:43 +00002203 if (hasFunctions())
Reid Spencer24399722004-07-09 22:21:33 +00002204 error("Function expected, but bytecode stream ended!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002205
Reid Spencer5c15fe52004-07-05 00:57:50 +00002206 // Tell the handler we're done with the module
2207 if (Handler)
2208 Handler->handleModuleEnd(ModuleID);
2209
2210 // Tell the handler we're finished the parse
Reid Spencer04cde2c2004-07-04 11:33:49 +00002211 if (Handler) Handler->handleFinish();
Reid Spencer060d25d2004-06-29 23:29:38 +00002212
Reid Spencer46b002c2004-07-11 17:28:43 +00002213 } catch (std::string& errstr) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00002214 if (Handler) Handler->handleError(errstr);
Reid Spencer060d25d2004-06-29 23:29:38 +00002215 freeState();
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002216 delete TheModule;
2217 TheModule = 0;
Chris Lattnerb0b7c0d2003-09-26 14:44:52 +00002218 throw;
Reid Spencer060d25d2004-06-29 23:29:38 +00002219 } catch (...) {
2220 std::string msg("Unknown Exception Occurred");
Reid Spencer04cde2c2004-07-04 11:33:49 +00002221 if (Handler) Handler->handleError(msg);
Reid Spencer060d25d2004-06-29 23:29:38 +00002222 freeState();
2223 delete TheModule;
2224 TheModule = 0;
2225 throw msg;
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002226 }
Chris Lattner00950542001-06-06 20:29:01 +00002227}
Reid Spencer060d25d2004-06-29 23:29:38 +00002228
2229//===----------------------------------------------------------------------===//
2230//=== Default Implementations of Handler Methods
2231//===----------------------------------------------------------------------===//
2232
2233BytecodeHandler::~BytecodeHandler() {}
Reid Spencer060d25d2004-06-29 23:29:38 +00002234
2235// vim: sw=2