blob: 9f064468cad66c577e1a1cdb85f1cde47c5a2f60 [file] [log] [blame]
Chris Lattnerd6b65252001-10-24 01:15:12 +00001//===- Reader.cpp - Code to read bytecode files ---------------------------===//
Misha Brukman8a96c532005-04-21 21:44:41 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Misha Brukman8a96c532005-04-21 21:44:41 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Bytecode/Reader.h
11//
Misha Brukman8a96c532005-04-21 21:44:41 +000012// Note that this library should be as fast as possible, reentrant, and
Chris Lattner00950542001-06-06 20:29:01 +000013// 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"
Reid Spencer0b118202006-01-16 21:12:35 +000020#include "llvm/Assembly/AutoUpgrade.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000021#include "llvm/Bytecode/BytecodeHandler.h"
22#include "llvm/BasicBlock.h"
Chris Lattnerdee199f2005-05-06 22:34:01 +000023#include "llvm/CallingConv.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000024#include "llvm/Constants.h"
Chris Lattner3bc5a602006-01-25 23:08:15 +000025#include "llvm/InlineAsm.h"
Reid Spencer04cde2c2004-07-04 11:33:49 +000026#include "llvm/Instructions.h"
27#include "llvm/SymbolTable.h"
Chris Lattner00950542001-06-06 20:29:01 +000028#include "llvm/Bytecode/Format.h"
Chris Lattnerdee199f2005-05-06 22:34:01 +000029#include "llvm/Config/alloca.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Reid Spencer17f52c52004-11-06 23:17:23 +000031#include "llvm/Support/Compressor.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/ADT/StringExtras.h"
Reid Spencer060d25d2004-06-29 23:29:38 +000034#include <sstream>
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000035#include <algorithm>
Chris Lattner29b789b2003-11-19 17:27:18 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Reid Spencer46b002c2004-07-11 17:28:43 +000038namespace {
Chris Lattnercad28bd2005-01-29 00:36:19 +000039 /// @brief A class for maintaining the slot number definition
40 /// as a placeholder for the actual definition for forward constants defs.
41 class ConstantPlaceHolder : public ConstantExpr {
42 ConstantPlaceHolder(); // DO NOT IMPLEMENT
43 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
44 public:
Chris Lattner61323322005-01-31 01:11:13 +000045 Use Op;
Misha Brukman8a96c532005-04-21 21:44:41 +000046 ConstantPlaceHolder(const Type *Ty)
Chris Lattner61323322005-01-31 01:11:13 +000047 : ConstantExpr(Ty, Instruction::UserOp1, &Op, 1),
48 Op(UndefValue::get(Type::IntTy), this) {
49 }
Chris Lattnercad28bd2005-01-29 00:36:19 +000050 };
Reid Spencer46b002c2004-07-11 17:28:43 +000051}
Reid Spencer060d25d2004-06-29 23:29:38 +000052
Reid Spencer24399722004-07-09 22:21:33 +000053// Provide some details on error
54inline void BytecodeReader::error(std::string err) {
55 err += " (Vers=" ;
56 err += itostr(RevisionNum) ;
57 err += ", Pos=" ;
58 err += itostr(At-MemStart);
59 err += ")";
60 throw err;
61}
62
Reid Spencer060d25d2004-06-29 23:29:38 +000063//===----------------------------------------------------------------------===//
64// Bytecode Reading Methods
65//===----------------------------------------------------------------------===//
66
Reid Spencer04cde2c2004-07-04 11:33:49 +000067/// Determine if the current block being read contains any more data.
Reid Spencer060d25d2004-06-29 23:29:38 +000068inline bool BytecodeReader::moreInBlock() {
69 return At < BlockEnd;
Chris Lattner00950542001-06-06 20:29:01 +000070}
71
Reid Spencer04cde2c2004-07-04 11:33:49 +000072/// Throw an error if we've read past the end of the current block
Reid Spencer060d25d2004-06-29 23:29:38 +000073inline void BytecodeReader::checkPastBlockEnd(const char * block_name) {
Reid Spencer46b002c2004-07-11 17:28:43 +000074 if (At > BlockEnd)
Chris Lattnera79e7cc2004-10-16 18:18:16 +000075 error(std::string("Attempt to read past the end of ") + block_name +
76 " block.");
Reid Spencer060d25d2004-06-29 23:29:38 +000077}
Chris Lattner36392bc2003-10-08 21:18:57 +000078
Reid Spencer04cde2c2004-07-04 11:33:49 +000079/// Align the buffer position to a 32 bit boundary
Reid Spencer060d25d2004-06-29 23:29:38 +000080inline void BytecodeReader::align32() {
Reid Spencer38d54be2004-08-17 07:45:14 +000081 if (hasAlignment) {
82 BufPtr Save = At;
Jeff Cohen05ebc8d2006-01-25 17:18:50 +000083 At = (const unsigned char *)((intptr_t)(At+3) & (~3UL));
Misha Brukman8a96c532005-04-21 21:44:41 +000084 if (At > Save)
Reid Spencer38d54be2004-08-17 07:45:14 +000085 if (Handler) Handler->handleAlignment(At - Save);
Misha Brukman8a96c532005-04-21 21:44:41 +000086 if (At > BlockEnd)
Reid Spencer38d54be2004-08-17 07:45:14 +000087 error("Ran out of data while aligning!");
88 }
Reid Spencer060d25d2004-06-29 23:29:38 +000089}
90
Reid Spencer04cde2c2004-07-04 11:33:49 +000091/// Read a whole unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +000092inline unsigned BytecodeReader::read_uint() {
Misha Brukman8a96c532005-04-21 21:44:41 +000093 if (At+4 > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +000094 error("Ran out of data reading uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +000095 At += 4;
96 return At[-4] | (At[-3] << 8) | (At[-2] << 16) | (At[-1] << 24);
97}
98
Reid Spencer04cde2c2004-07-04 11:33:49 +000099/// Read a variable-bit-rate encoded unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +0000100inline unsigned BytecodeReader::read_vbr_uint() {
101 unsigned Shift = 0;
102 unsigned Result = 0;
103 BufPtr Save = At;
Misha Brukman8a96c532005-04-21 21:44:41 +0000104
Reid Spencer060d25d2004-06-29 23:29:38 +0000105 do {
Misha Brukman8a96c532005-04-21 21:44:41 +0000106 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000107 error("Ran out of data reading vbr_uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000108 Result |= (unsigned)((*At++) & 0x7F) << Shift;
109 Shift += 7;
110 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000111 if (Handler) Handler->handleVBR32(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000112 return Result;
113}
114
Reid Spencer04cde2c2004-07-04 11:33:49 +0000115/// Read a variable-bit-rate encoded unsigned 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000116inline uint64_t BytecodeReader::read_vbr_uint64() {
117 unsigned Shift = 0;
118 uint64_t Result = 0;
119 BufPtr Save = At;
Misha Brukman8a96c532005-04-21 21:44:41 +0000120
Reid Spencer060d25d2004-06-29 23:29:38 +0000121 do {
Misha Brukman8a96c532005-04-21 21:44:41 +0000122 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000123 error("Ran out of data reading vbr_uint64!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000124 Result |= (uint64_t)((*At++) & 0x7F) << Shift;
125 Shift += 7;
126 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000127 if (Handler) Handler->handleVBR64(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000128 return Result;
129}
130
Reid Spencer04cde2c2004-07-04 11:33:49 +0000131/// Read a variable-bit-rate encoded signed 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000132inline int64_t BytecodeReader::read_vbr_int64() {
133 uint64_t R = read_vbr_uint64();
134 if (R & 1) {
135 if (R != 1)
136 return -(int64_t)(R >> 1);
137 else // There is no such thing as -0 with integers. "-0" really means
138 // 0x8000000000000000.
139 return 1LL << 63;
140 } else
141 return (int64_t)(R >> 1);
142}
143
Reid Spencer04cde2c2004-07-04 11:33:49 +0000144/// Read a pascal-style string (length followed by text)
Reid Spencer060d25d2004-06-29 23:29:38 +0000145inline std::string BytecodeReader::read_str() {
146 unsigned Size = read_vbr_uint();
147 const unsigned char *OldAt = At;
148 At += Size;
149 if (At > BlockEnd) // Size invalid?
Reid Spencer24399722004-07-09 22:21:33 +0000150 error("Ran out of data reading a string!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000151 return std::string((char*)OldAt, Size);
152}
153
Reid Spencer04cde2c2004-07-04 11:33:49 +0000154/// Read an arbitrary block of data
Reid Spencer060d25d2004-06-29 23:29:38 +0000155inline void BytecodeReader::read_data(void *Ptr, void *End) {
156 unsigned char *Start = (unsigned char *)Ptr;
157 unsigned Amount = (unsigned char *)End - Start;
Misha Brukman8a96c532005-04-21 21:44:41 +0000158 if (At+Amount > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000159 error("Ran out of data!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000160 std::copy(At, At+Amount, Start);
161 At += Amount;
162}
163
Reid Spencer46b002c2004-07-11 17:28:43 +0000164/// Read a float value in little-endian order
165inline void BytecodeReader::read_float(float& FloatVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000166 /// FIXME: This isn't optimal, it has size problems on some platforms
167 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000168 FloatVal = BitsToFloat(At[0] | (At[1] << 8) | (At[2] << 16) | (At[3] << 24));
Reid Spencerada16182004-07-25 21:36:26 +0000169 At+=sizeof(uint32_t);
Reid Spencer46b002c2004-07-11 17:28:43 +0000170}
171
172/// Read a double value in little-endian order
173inline void BytecodeReader::read_double(double& DoubleVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000174 /// FIXME: This isn't optimal, it has size problems on some platforms
175 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000176 DoubleVal = BitsToDouble((uint64_t(At[0]) << 0) | (uint64_t(At[1]) << 8) |
177 (uint64_t(At[2]) << 16) | (uint64_t(At[3]) << 24) |
178 (uint64_t(At[4]) << 32) | (uint64_t(At[5]) << 40) |
179 (uint64_t(At[6]) << 48) | (uint64_t(At[7]) << 56));
Reid Spencerada16182004-07-25 21:36:26 +0000180 At+=sizeof(uint64_t);
Reid Spencer46b002c2004-07-11 17:28:43 +0000181}
182
Reid Spencer04cde2c2004-07-04 11:33:49 +0000183/// Read a block header and obtain its type and size
Reid Spencer060d25d2004-06-29 23:29:38 +0000184inline void BytecodeReader::read_block(unsigned &Type, unsigned &Size) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000185 if ( hasLongBlockHeaders ) {
186 Type = read_uint();
187 Size = read_uint();
188 switch (Type) {
Misha Brukman8a96c532005-04-21 21:44:41 +0000189 case BytecodeFormat::Reserved_DoNotUse :
Reid Spencerad89bd62004-07-25 18:07:36 +0000190 error("Reserved_DoNotUse used as Module Type?");
Reid Spencer5b472d92004-08-21 20:49:23 +0000191 Type = BytecodeFormat::ModuleBlockID; break;
Misha Brukman8a96c532005-04-21 21:44:41 +0000192 case BytecodeFormat::Module:
Reid Spencerad89bd62004-07-25 18:07:36 +0000193 Type = BytecodeFormat::ModuleBlockID; break;
194 case BytecodeFormat::Function:
195 Type = BytecodeFormat::FunctionBlockID; break;
196 case BytecodeFormat::ConstantPool:
197 Type = BytecodeFormat::ConstantPoolBlockID; break;
198 case BytecodeFormat::SymbolTable:
199 Type = BytecodeFormat::SymbolTableBlockID; break;
200 case BytecodeFormat::ModuleGlobalInfo:
201 Type = BytecodeFormat::ModuleGlobalInfoBlockID; break;
202 case BytecodeFormat::GlobalTypePlane:
203 Type = BytecodeFormat::GlobalTypePlaneBlockID; break;
204 case BytecodeFormat::InstructionList:
205 Type = BytecodeFormat::InstructionListBlockID; break;
206 case BytecodeFormat::CompactionTable:
207 Type = BytecodeFormat::CompactionTableBlockID; break;
208 case BytecodeFormat::BasicBlock:
209 /// This block type isn't used after version 1.1. However, we have to
210 /// still allow the value in case this is an old bc format file.
211 /// We just let its value creep thru.
212 break;
213 default:
Reid Spencer5b472d92004-08-21 20:49:23 +0000214 error("Invalid block id found: " + utostr(Type));
Reid Spencerad89bd62004-07-25 18:07:36 +0000215 break;
216 }
217 } else {
218 Size = read_uint();
219 Type = Size & 0x1F; // mask low order five bits
220 Size >>= 5; // get rid of five low order bits, leaving high 27
221 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000222 BlockStart = At;
Reid Spencer46b002c2004-07-11 17:28:43 +0000223 if (At + Size > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000224 error("Attempt to size a block past end of memory");
Reid Spencer060d25d2004-06-29 23:29:38 +0000225 BlockEnd = At + Size;
Reid Spencer46b002c2004-07-11 17:28:43 +0000226 if (Handler) Handler->handleBlock(Type, BlockStart, Size);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000227}
228
229
230/// In LLVM 1.2 and before, Types were derived from Value and so they were
231/// written as part of the type planes along with any other Value. In LLVM
232/// 1.3 this changed so that Type does not derive from Value. Consequently,
233/// the BytecodeReader's containers for Values can't contain Types because
234/// there's no inheritance relationship. This means that the "Type Type"
Misha Brukman8a96c532005-04-21 21:44:41 +0000235/// plane is defunct along with the Type::TypeTyID TypeID. In LLVM 1.3
236/// whenever a bytecode construct must have both types and values together,
Reid Spencer04cde2c2004-07-04 11:33:49 +0000237/// the types are always read/written first and then the Values. Furthermore
238/// since Type::TypeTyID no longer exists, its value (12) now corresponds to
239/// Type::LabelTyID. In order to overcome this we must "sanitize" all the
240/// type TypeIDs we encounter. For LLVM 1.3 bytecode files, there's no change.
241/// For LLVM 1.2 and before, this function will decrement the type id by
242/// one to account for the missing Type::TypeTyID enumerator if the value is
243/// larger than 12 (Type::LabelTyID). If the value is exactly 12, then this
244/// function returns true, otherwise false. This helps detect situations
245/// where the pre 1.3 bytecode is indicating that what follows is a type.
Misha Brukman8a96c532005-04-21 21:44:41 +0000246/// @returns true iff type id corresponds to pre 1.3 "type type"
Reid Spencer46b002c2004-07-11 17:28:43 +0000247inline bool BytecodeReader::sanitizeTypeId(unsigned &TypeId) {
248 if (hasTypeDerivedFromValue) { /// do nothing if 1.3 or later
249 if (TypeId == Type::LabelTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +0000250 TypeId = Type::VoidTyID; // sanitize it
251 return true; // indicate we got TypeTyID in pre 1.3 bytecode
Reid Spencer46b002c2004-07-11 17:28:43 +0000252 } else if (TypeId > Type::LabelTyID)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000253 --TypeId; // shift all planes down because type type plane is missing
254 }
255 return false;
256}
257
258/// Reads a vbr uint to read in a type id and does the necessary
259/// conversion on it by calling sanitizeTypeId.
260/// @returns true iff \p TypeId read corresponds to a pre 1.3 "type type"
261/// @see sanitizeTypeId
262inline bool BytecodeReader::read_typeid(unsigned &TypeId) {
263 TypeId = read_vbr_uint();
Reid Spencerad89bd62004-07-25 18:07:36 +0000264 if ( !has32BitTypes )
265 if ( TypeId == 0x00FFFFFF )
266 TypeId = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000267 return sanitizeTypeId(TypeId);
Reid Spencer060d25d2004-06-29 23:29:38 +0000268}
269
270//===----------------------------------------------------------------------===//
271// IR Lookup Methods
272//===----------------------------------------------------------------------===//
273
Reid Spencer04cde2c2004-07-04 11:33:49 +0000274/// Determine if a type id has an implicit null value
Reid Spencer46b002c2004-07-11 17:28:43 +0000275inline bool BytecodeReader::hasImplicitNull(unsigned TyID) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000276 if (!hasExplicitPrimitiveZeros)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000277 return TyID != Type::LabelTyID && TyID != Type::VoidTyID;
Reid Spencer060d25d2004-06-29 23:29:38 +0000278 return TyID >= Type::FirstDerivedTyID;
279}
280
Reid Spencer04cde2c2004-07-04 11:33:49 +0000281/// Obtain a type given a typeid and account for things like compaction tables,
282/// function level vs module level, and the offsetting for the primitive types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000283const Type *BytecodeReader::getType(unsigned ID) {
Chris Lattner89e02532004-01-18 21:08:15 +0000284 if (ID < Type::FirstDerivedTyID)
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000285 if (const Type *T = Type::getPrimitiveType((Type::TypeID)ID))
Chris Lattner927b1852003-10-09 20:22:47 +0000286 return T; // Asked for a primitive type...
Chris Lattner36392bc2003-10-08 21:18:57 +0000287
288 // Otherwise, derived types need offset...
Chris Lattner89e02532004-01-18 21:08:15 +0000289 ID -= Type::FirstDerivedTyID;
290
Reid Spencer060d25d2004-06-29 23:29:38 +0000291 if (!CompactionTypes.empty()) {
292 if (ID >= CompactionTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000293 error("Type ID out of range for compaction table!");
Chris Lattner45b5dd22004-08-03 23:41:28 +0000294 return CompactionTypes[ID].first;
Chris Lattner89e02532004-01-18 21:08:15 +0000295 }
Chris Lattner36392bc2003-10-08 21:18:57 +0000296
297 // Is it a module-level type?
Reid Spencer46b002c2004-07-11 17:28:43 +0000298 if (ID < ModuleTypes.size())
299 return ModuleTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000300
Reid Spencer46b002c2004-07-11 17:28:43 +0000301 // Nope, is it a function-level type?
302 ID -= ModuleTypes.size();
303 if (ID < FunctionTypes.size())
304 return FunctionTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000305
Reid Spencer46b002c2004-07-11 17:28:43 +0000306 error("Illegal type reference!");
307 return Type::VoidTy;
Chris Lattner00950542001-06-06 20:29:01 +0000308}
309
Reid Spencer04cde2c2004-07-04 11:33:49 +0000310/// Get a sanitized type id. This just makes sure that the \p ID
311/// is both sanitized and not the "type type" of pre-1.3 bytecode.
312/// @see sanitizeTypeId
313inline const Type* BytecodeReader::getSanitizedType(unsigned& ID) {
Reid Spencer46b002c2004-07-11 17:28:43 +0000314 if (sanitizeTypeId(ID))
Reid Spencer24399722004-07-09 22:21:33 +0000315 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000316 return getType(ID);
317}
318
319/// This method just saves some coding. It uses read_typeid to read
Reid Spencer24399722004-07-09 22:21:33 +0000320/// in a sanitized type id, errors that its not the type type, and
Reid Spencer04cde2c2004-07-04 11:33:49 +0000321/// then calls getType to return the type value.
322inline const Type* BytecodeReader::readSanitizedType() {
323 unsigned ID;
Reid Spencer46b002c2004-07-11 17:28:43 +0000324 if (read_typeid(ID))
325 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000326 return getType(ID);
327}
328
329/// Get the slot number associated with a type accounting for primitive
330/// types, compaction tables, and function level vs module level.
Reid Spencer060d25d2004-06-29 23:29:38 +0000331unsigned BytecodeReader::getTypeSlot(const Type *Ty) {
332 if (Ty->isPrimitiveType())
333 return Ty->getTypeID();
334
335 // Scan the compaction table for the type if needed.
336 if (!CompactionTypes.empty()) {
Chris Lattner45b5dd22004-08-03 23:41:28 +0000337 for (unsigned i = 0, e = CompactionTypes.size(); i != e; ++i)
338 if (CompactionTypes[i].first == Ty)
Misha Brukman8a96c532005-04-21 21:44:41 +0000339 return Type::FirstDerivedTyID + i;
Reid Spencer060d25d2004-06-29 23:29:38 +0000340
Chris Lattner45b5dd22004-08-03 23:41:28 +0000341 error("Couldn't find type specified in compaction table!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000342 }
343
344 // Check the function level types first...
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000345 TypeListTy::iterator I = std::find(FunctionTypes.begin(),
346 FunctionTypes.end(), Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +0000347
348 if (I != FunctionTypes.end())
Misha Brukman8a96c532005-04-21 21:44:41 +0000349 return Type::FirstDerivedTyID + ModuleTypes.size() +
Reid Spencer46b002c2004-07-11 17:28:43 +0000350 (&*I - &FunctionTypes[0]);
Reid Spencer060d25d2004-06-29 23:29:38 +0000351
Chris Lattnereebac5f2005-10-03 21:26:53 +0000352 // If we don't have our cache yet, build it now.
353 if (ModuleTypeIDCache.empty()) {
354 unsigned N = 0;
355 ModuleTypeIDCache.reserve(ModuleTypes.size());
356 for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end();
357 I != E; ++I, ++N)
358 ModuleTypeIDCache.push_back(std::make_pair(*I, N));
359
360 std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end());
361 }
362
363 // Binary search the cache for the entry.
364 std::vector<std::pair<const Type*, unsigned> >::iterator IT =
365 std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(),
366 std::make_pair(Ty, 0U));
367 if (IT == ModuleTypeIDCache.end() || IT->first != Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000368 error("Didn't find type in ModuleTypes.");
Chris Lattnereebac5f2005-10-03 21:26:53 +0000369
370 return Type::FirstDerivedTyID + IT->second;
Chris Lattner80b97342004-01-17 23:25:43 +0000371}
372
Reid Spencer04cde2c2004-07-04 11:33:49 +0000373/// This is just like getType, but when a compaction table is in use, it is
374/// ignored. It also ignores function level types.
375/// @see getType
Reid Spencer060d25d2004-06-29 23:29:38 +0000376const Type *BytecodeReader::getGlobalTableType(unsigned Slot) {
377 if (Slot < Type::FirstDerivedTyID) {
378 const Type *Ty = Type::getPrimitiveType((Type::TypeID)Slot);
Reid Spencer46b002c2004-07-11 17:28:43 +0000379 if (!Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000380 error("Not a primitive type ID?");
Reid Spencer060d25d2004-06-29 23:29:38 +0000381 return Ty;
382 }
383 Slot -= Type::FirstDerivedTyID;
384 if (Slot >= ModuleTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000385 error("Illegal compaction table type reference!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000386 return ModuleTypes[Slot];
Chris Lattner52e20b02003-03-19 20:54:26 +0000387}
388
Reid Spencer04cde2c2004-07-04 11:33:49 +0000389/// This is just like getTypeSlot, but when a compaction table is in use, it
390/// is ignored. It also ignores function level types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000391unsigned BytecodeReader::getGlobalTableTypeSlot(const Type *Ty) {
392 if (Ty->isPrimitiveType())
393 return Ty->getTypeID();
Chris Lattnereebac5f2005-10-03 21:26:53 +0000394
395 // If we don't have our cache yet, build it now.
396 if (ModuleTypeIDCache.empty()) {
397 unsigned N = 0;
398 ModuleTypeIDCache.reserve(ModuleTypes.size());
399 for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end();
400 I != E; ++I, ++N)
401 ModuleTypeIDCache.push_back(std::make_pair(*I, N));
402
403 std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end());
404 }
405
406 // Binary search the cache for the entry.
407 std::vector<std::pair<const Type*, unsigned> >::iterator IT =
408 std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(),
409 std::make_pair(Ty, 0U));
410 if (IT == ModuleTypeIDCache.end() || IT->first != Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000411 error("Didn't find type in ModuleTypes.");
Chris Lattnereebac5f2005-10-03 21:26:53 +0000412
413 return Type::FirstDerivedTyID + IT->second;
Reid Spencer060d25d2004-06-29 23:29:38 +0000414}
415
Misha Brukman8a96c532005-04-21 21:44:41 +0000416/// Retrieve a value of a given type and slot number, possibly creating
417/// it if it doesn't already exist.
Reid Spencer060d25d2004-06-29 23:29:38 +0000418Value * BytecodeReader::getValue(unsigned type, unsigned oNum, bool Create) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +0000419 assert(type != Type::LabelTyID && "getValue() cannot get blocks!");
Chris Lattner00950542001-06-06 20:29:01 +0000420 unsigned Num = oNum;
Chris Lattner00950542001-06-06 20:29:01 +0000421
Chris Lattner89e02532004-01-18 21:08:15 +0000422 // If there is a compaction table active, it defines the low-level numbers.
423 // If not, the module values define the low-level numbers.
Reid Spencer060d25d2004-06-29 23:29:38 +0000424 if (CompactionValues.size() > type && !CompactionValues[type].empty()) {
425 if (Num < CompactionValues[type].size())
426 return CompactionValues[type][Num];
427 Num -= CompactionValues[type].size();
Chris Lattner89e02532004-01-18 21:08:15 +0000428 } else {
Reid Spencer060d25d2004-06-29 23:29:38 +0000429 // By default, the global type id is the type id passed in
Chris Lattner52f86d62004-01-20 00:54:06 +0000430 unsigned GlobalTyID = type;
Reid Spencer060d25d2004-06-29 23:29:38 +0000431
Chris Lattner45b5dd22004-08-03 23:41:28 +0000432 // If the type plane was compactified, figure out the global type ID by
433 // adding the derived type ids and the distance.
434 if (!CompactionTypes.empty() && type >= Type::FirstDerivedTyID)
435 GlobalTyID = CompactionTypes[type-Type::FirstDerivedTyID].second;
Chris Lattner00950542001-06-06 20:29:01 +0000436
Reid Spencer060d25d2004-06-29 23:29:38 +0000437 if (hasImplicitNull(GlobalTyID)) {
Chris Lattneraba5ff52005-05-05 20:57:00 +0000438 const Type *Ty = getType(type);
439 if (!isa<OpaqueType>(Ty)) {
440 if (Num == 0)
441 return Constant::getNullValue(Ty);
442 --Num;
443 }
Chris Lattner89e02532004-01-18 21:08:15 +0000444 }
445
Chris Lattner52f86d62004-01-20 00:54:06 +0000446 if (GlobalTyID < ModuleValues.size() && ModuleValues[GlobalTyID]) {
447 if (Num < ModuleValues[GlobalTyID]->size())
Reid Spencer04cde2c2004-07-04 11:33:49 +0000448 return ModuleValues[GlobalTyID]->getOperand(Num);
Chris Lattner52f86d62004-01-20 00:54:06 +0000449 Num -= ModuleValues[GlobalTyID]->size();
Chris Lattner89e02532004-01-18 21:08:15 +0000450 }
Chris Lattner52e20b02003-03-19 20:54:26 +0000451 }
452
Misha Brukman8a96c532005-04-21 21:44:41 +0000453 if (FunctionValues.size() > type &&
454 FunctionValues[type] &&
Reid Spencer060d25d2004-06-29 23:29:38 +0000455 Num < FunctionValues[type]->size())
456 return FunctionValues[type]->getOperand(Num);
Chris Lattner00950542001-06-06 20:29:01 +0000457
Chris Lattner74734132002-08-17 22:01:27 +0000458 if (!Create) return 0; // Do not create a placeholder?
Chris Lattner00950542001-06-06 20:29:01 +0000459
Reid Spencer551ccae2004-09-01 22:55:40 +0000460 // Did we already create a place holder?
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000461 std::pair<unsigned,unsigned> KeyValue(type, oNum);
Reid Spencer060d25d2004-06-29 23:29:38 +0000462 ForwardReferenceMap::iterator I = ForwardReferences.lower_bound(KeyValue);
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000463 if (I != ForwardReferences.end() && I->first == KeyValue)
464 return I->second; // We have already created this placeholder
465
Reid Spencer551ccae2004-09-01 22:55:40 +0000466 // If the type exists (it should)
467 if (const Type* Ty = getType(type)) {
468 // Create the place holder
469 Value *Val = new Argument(Ty);
470 ForwardReferences.insert(I, std::make_pair(KeyValue, Val));
471 return Val;
472 }
473 throw "Can't create placeholder for value of type slot #" + utostr(type);
Chris Lattner00950542001-06-06 20:29:01 +0000474}
475
Misha Brukman8a96c532005-04-21 21:44:41 +0000476/// This is just like getValue, but when a compaction table is in use, it
477/// is ignored. Also, no forward references or other fancy features are
Reid Spencer04cde2c2004-07-04 11:33:49 +0000478/// supported.
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000479Value* BytecodeReader::getGlobalTableValue(unsigned TyID, unsigned SlotNo) {
480 if (SlotNo == 0)
481 return Constant::getNullValue(getType(TyID));
482
483 if (!CompactionTypes.empty() && TyID >= Type::FirstDerivedTyID) {
484 TyID -= Type::FirstDerivedTyID;
485 if (TyID >= CompactionTypes.size())
486 error("Type ID out of range for compaction table!");
487 TyID = CompactionTypes[TyID].second;
Reid Spencer060d25d2004-06-29 23:29:38 +0000488 }
489
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000490 --SlotNo;
491
Reid Spencer060d25d2004-06-29 23:29:38 +0000492 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0 ||
493 SlotNo >= ModuleValues[TyID]->size()) {
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000494 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0)
495 error("Corrupt compaction table entry!"
Misha Brukman8a96c532005-04-21 21:44:41 +0000496 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000497 + utostr(ModuleValues.size()));
Misha Brukman8a96c532005-04-21 21:44:41 +0000498 else
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000499 error("Corrupt compaction table entry!"
Misha Brukman8a96c532005-04-21 21:44:41 +0000500 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000501 + utostr(ModuleValues.size()) + ", "
Reid Spencer9a7e0c52004-08-04 22:56:46 +0000502 + utohexstr(reinterpret_cast<uint64_t>(((void*)ModuleValues[TyID])))
503 + ", "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000504 + utostr(ModuleValues[TyID]->size()));
Reid Spencer060d25d2004-06-29 23:29:38 +0000505 }
506 return ModuleValues[TyID]->getOperand(SlotNo);
507}
508
Reid Spencer04cde2c2004-07-04 11:33:49 +0000509/// Just like getValue, except that it returns a null pointer
510/// only on error. It always returns a constant (meaning that if the value is
511/// defined, but is not a constant, that is an error). If the specified
Misha Brukman8a96c532005-04-21 21:44:41 +0000512/// constant hasn't been parsed yet, a placeholder is defined and used.
Reid Spencer04cde2c2004-07-04 11:33:49 +0000513/// Later, after the real value is parsed, the placeholder is eliminated.
Reid Spencer060d25d2004-06-29 23:29:38 +0000514Constant* BytecodeReader::getConstantValue(unsigned TypeSlot, unsigned Slot) {
515 if (Value *V = getValue(TypeSlot, Slot, false))
516 if (Constant *C = dyn_cast<Constant>(V))
517 return C; // If we already have the value parsed, just return it
Reid Spencer060d25d2004-06-29 23:29:38 +0000518 else
Misha Brukman8a96c532005-04-21 21:44:41 +0000519 error("Value for slot " + utostr(Slot) +
Reid Spencera86037e2004-07-18 00:12:03 +0000520 " is expected to be a constant!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000521
Chris Lattner389bd042004-12-09 06:19:44 +0000522 std::pair<unsigned, unsigned> Key(TypeSlot, Slot);
Reid Spencer060d25d2004-06-29 23:29:38 +0000523 ConstantRefsType::iterator I = ConstantFwdRefs.lower_bound(Key);
524
525 if (I != ConstantFwdRefs.end() && I->first == Key) {
526 return I->second;
527 } else {
528 // Create a placeholder for the constant reference and
529 // keep track of the fact that we have a forward ref to recycle it
Chris Lattner389bd042004-12-09 06:19:44 +0000530 Constant *C = new ConstantPlaceHolder(getType(TypeSlot));
Misha Brukman8a96c532005-04-21 21:44:41 +0000531
Reid Spencer060d25d2004-06-29 23:29:38 +0000532 // Keep track of the fact that we have a forward ref to recycle it
533 ConstantFwdRefs.insert(I, std::make_pair(Key, C));
534 return C;
535 }
536}
537
538//===----------------------------------------------------------------------===//
539// IR Construction Methods
540//===----------------------------------------------------------------------===//
541
Reid Spencer04cde2c2004-07-04 11:33:49 +0000542/// As values are created, they are inserted into the appropriate place
543/// with this method. The ValueTable argument must be one of ModuleValues
544/// or FunctionValues data members of this class.
Misha Brukman8a96c532005-04-21 21:44:41 +0000545unsigned BytecodeReader::insertValue(Value *Val, unsigned type,
Reid Spencer46b002c2004-07-11 17:28:43 +0000546 ValueTable &ValueTab) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000547 if (ValueTab.size() <= type)
548 ValueTab.resize(type+1);
549
550 if (!ValueTab[type]) ValueTab[type] = new ValueList();
551
552 ValueTab[type]->push_back(Val);
553
Chris Lattneraba5ff52005-05-05 20:57:00 +0000554 bool HasOffset = hasImplicitNull(type) && !isa<OpaqueType>(Val->getType());
Reid Spencer060d25d2004-06-29 23:29:38 +0000555 return ValueTab[type]->size()-1 + HasOffset;
556}
557
Reid Spencer04cde2c2004-07-04 11:33:49 +0000558/// Insert the arguments of a function as new values in the reader.
Reid Spencer46b002c2004-07-11 17:28:43 +0000559void BytecodeReader::insertArguments(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000560 const FunctionType *FT = F->getFunctionType();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000561 Function::arg_iterator AI = F->arg_begin();
Reid Spencer060d25d2004-06-29 23:29:38 +0000562 for (FunctionType::param_iterator It = FT->param_begin();
563 It != FT->param_end(); ++It, ++AI)
564 insertValue(AI, getTypeSlot(AI->getType()), FunctionValues);
565}
566
567//===----------------------------------------------------------------------===//
568// Bytecode Parsing Methods
569//===----------------------------------------------------------------------===//
570
Reid Spencer04cde2c2004-07-04 11:33:49 +0000571/// This method parses a single instruction. The instruction is
572/// inserted at the end of the \p BB provided. The arguments of
Misha Brukman44666b12004-09-28 16:57:46 +0000573/// the instruction are provided in the \p Oprnds vector.
Reid Spencer060d25d2004-06-29 23:29:38 +0000574void BytecodeReader::ParseInstruction(std::vector<unsigned> &Oprnds,
Reid Spencer46b002c2004-07-11 17:28:43 +0000575 BasicBlock* BB) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000576 BufPtr SaveAt = At;
577
578 // Clear instruction data
579 Oprnds.clear();
580 unsigned iType = 0;
581 unsigned Opcode = 0;
582 unsigned Op = read_uint();
583
584 // bits Instruction format: Common to all formats
585 // --------------------------
586 // 01-00: Opcode type, fixed to 1.
587 // 07-02: Opcode
588 Opcode = (Op >> 2) & 63;
589 Oprnds.resize((Op >> 0) & 03);
590
591 // Extract the operands
592 switch (Oprnds.size()) {
593 case 1:
594 // bits Instruction format:
595 // --------------------------
596 // 19-08: Resulting type plane
597 // 31-20: Operand #1 (if set to (2^12-1), then zero operands)
598 //
599 iType = (Op >> 8) & 4095;
600 Oprnds[0] = (Op >> 20) & 4095;
601 if (Oprnds[0] == 4095) // Handle special encoding for 0 operands...
602 Oprnds.resize(0);
603 break;
604 case 2:
605 // bits Instruction format:
606 // --------------------------
607 // 15-08: Resulting type plane
608 // 23-16: Operand #1
Misha Brukman8a96c532005-04-21 21:44:41 +0000609 // 31-24: Operand #2
Reid Spencer060d25d2004-06-29 23:29:38 +0000610 //
611 iType = (Op >> 8) & 255;
612 Oprnds[0] = (Op >> 16) & 255;
613 Oprnds[1] = (Op >> 24) & 255;
614 break;
615 case 3:
616 // bits Instruction format:
617 // --------------------------
618 // 13-08: Resulting type plane
619 // 19-14: Operand #1
620 // 25-20: Operand #2
621 // 31-26: Operand #3
622 //
623 iType = (Op >> 8) & 63;
624 Oprnds[0] = (Op >> 14) & 63;
625 Oprnds[1] = (Op >> 20) & 63;
626 Oprnds[2] = (Op >> 26) & 63;
627 break;
628 case 0:
629 At -= 4; // Hrm, try this again...
630 Opcode = read_vbr_uint();
631 Opcode >>= 2;
632 iType = read_vbr_uint();
633
634 unsigned NumOprnds = read_vbr_uint();
635 Oprnds.resize(NumOprnds);
636
637 if (NumOprnds == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000638 error("Zero-argument instruction found; this is invalid.");
Reid Spencer060d25d2004-06-29 23:29:38 +0000639
640 for (unsigned i = 0; i != NumOprnds; ++i)
641 Oprnds[i] = read_vbr_uint();
642 align32();
643 break;
644 }
645
Reid Spencer04cde2c2004-07-04 11:33:49 +0000646 const Type *InstTy = getSanitizedType(iType);
Reid Spencer060d25d2004-06-29 23:29:38 +0000647
Reid Spencer46b002c2004-07-11 17:28:43 +0000648 // We have enough info to inform the handler now.
Reid Spencer04cde2c2004-07-04 11:33:49 +0000649 if (Handler) Handler->handleInstruction(Opcode, InstTy, Oprnds, At-SaveAt);
Reid Spencer060d25d2004-06-29 23:29:38 +0000650
651 // Declare the resulting instruction we'll build.
652 Instruction *Result = 0;
653
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000654 // If this is a bytecode format that did not include the unreachable
655 // instruction, bump up all opcodes numbers to make space.
656 if (hasNoUnreachableInst) {
657 if (Opcode >= Instruction::Unreachable &&
658 Opcode < 62) {
659 ++Opcode;
660 }
661 }
662
Reid Spencer060d25d2004-06-29 23:29:38 +0000663 // Handle binary operators
664 if (Opcode >= Instruction::BinaryOpsBegin &&
665 Opcode < Instruction::BinaryOpsEnd && Oprnds.size() == 2)
666 Result = BinaryOperator::create((Instruction::BinaryOps)Opcode,
667 getValue(iType, Oprnds[0]),
668 getValue(iType, Oprnds[1]));
669
Reid Spencere1e96c02006-01-19 07:02:16 +0000670 bool isCall = false;
Reid Spencer060d25d2004-06-29 23:29:38 +0000671 switch (Opcode) {
Misha Brukman8a96c532005-04-21 21:44:41 +0000672 default:
673 if (Result == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000674 error("Illegal instruction read!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000675 break;
676 case Instruction::VAArg:
Misha Brukman8a96c532005-04-21 21:44:41 +0000677 Result = new VAArgInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000678 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000679 break;
Andrew Lenharth558bc882005-06-18 18:34:52 +0000680 case 32: { //VANext_old
681 const Type* ArgTy = getValue(iType, Oprnds[0])->getType();
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000682 Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy,
683 (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000684
685 //b = vanext a, t ->
686 //foo = alloca 1 of t
687 //bar = vacopy a
688 //store bar -> foo
689 //tmp = vaarg foo, t
690 //b = load foo
691 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vanext.fix");
692 BB->getInstList().push_back(foo);
693 CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0]));
694 BB->getInstList().push_back(bar);
695 BB->getInstList().push_back(new StoreInst(bar, foo));
696 Instruction* tmp = new VAArgInst(foo, getSanitizedType(Oprnds[1]));
697 BB->getInstList().push_back(tmp);
698 Result = new LoadInst(foo);
Reid Spencer060d25d2004-06-29 23:29:38 +0000699 break;
Andrew Lenharth558bc882005-06-18 18:34:52 +0000700 }
701 case 33: { //VAArg_old
702 const Type* ArgTy = getValue(iType, Oprnds[0])->getType();
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000703 Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy,
704 (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000705
Jeff Cohen00b168892005-07-27 06:12:32 +0000706 //b = vaarg a, t ->
Andrew Lenharth558bc882005-06-18 18:34:52 +0000707 //foo = alloca 1 of t
Jeff Cohen00b168892005-07-27 06:12:32 +0000708 //bar = vacopy a
Andrew Lenharth558bc882005-06-18 18:34:52 +0000709 //store bar -> foo
710 //b = vaarg foo, t
711 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vaarg.fix");
712 BB->getInstList().push_back(foo);
713 CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0]));
714 BB->getInstList().push_back(bar);
715 BB->getInstList().push_back(new StoreInst(bar, foo));
716 Result = new VAArgInst(foo, getSanitizedType(Oprnds[1]));
717 break;
718 }
Robert Bocchinofee31b32006-01-10 19:04:39 +0000719 case Instruction::ExtractElement: {
720 if (Oprnds.size() != 2)
721 throw std::string("Invalid extractelement instruction!");
722 Result = new ExtractElementInst(getValue(iType, Oprnds[0]),
723 getValue(Type::UIntTyID, Oprnds[1]));
724 break;
725 }
Robert Bocchinob1f240b2006-01-17 20:06:35 +0000726 case Instruction::InsertElement: {
727 const PackedType *PackedTy = dyn_cast<PackedType>(InstTy);
728 if (!PackedTy || Oprnds.size() != 3)
729 throw std::string("Invalid insertelement instruction!");
730 Result =
731 new InsertElementInst(getValue(iType, Oprnds[0]),
732 getValue(getTypeSlot(PackedTy->getElementType()),
733 Oprnds[1]),
734 getValue(Type::UIntTyID, Oprnds[2]));
735 break;
736 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000737 case Instruction::Cast:
Misha Brukman8a96c532005-04-21 21:44:41 +0000738 Result = new CastInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000739 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000740 break;
741 case Instruction::Select:
742 Result = new SelectInst(getValue(Type::BoolTyID, Oprnds[0]),
743 getValue(iType, Oprnds[1]),
744 getValue(iType, Oprnds[2]));
745 break;
746 case Instruction::PHI: {
747 if (Oprnds.size() == 0 || (Oprnds.size() & 1))
Reid Spencer24399722004-07-09 22:21:33 +0000748 error("Invalid phi node encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000749
750 PHINode *PN = new PHINode(InstTy);
Chris Lattnercad28bd2005-01-29 00:36:19 +0000751 PN->reserveOperandSpace(Oprnds.size());
Reid Spencer060d25d2004-06-29 23:29:38 +0000752 for (unsigned i = 0, e = Oprnds.size(); i != e; i += 2)
753 PN->addIncoming(getValue(iType, Oprnds[i]), getBasicBlock(Oprnds[i+1]));
754 Result = PN;
755 break;
756 }
757
758 case Instruction::Shl:
759 case Instruction::Shr:
760 Result = new ShiftInst((Instruction::OtherOps)Opcode,
761 getValue(iType, Oprnds[0]),
762 getValue(Type::UByteTyID, Oprnds[1]));
763 break;
764 case Instruction::Ret:
765 if (Oprnds.size() == 0)
766 Result = new ReturnInst();
767 else if (Oprnds.size() == 1)
768 Result = new ReturnInst(getValue(iType, Oprnds[0]));
769 else
Reid Spencer24399722004-07-09 22:21:33 +0000770 error("Unrecognized instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000771 break;
772
773 case Instruction::Br:
774 if (Oprnds.size() == 1)
775 Result = new BranchInst(getBasicBlock(Oprnds[0]));
776 else if (Oprnds.size() == 3)
Misha Brukman8a96c532005-04-21 21:44:41 +0000777 Result = new BranchInst(getBasicBlock(Oprnds[0]),
Reid Spencer04cde2c2004-07-04 11:33:49 +0000778 getBasicBlock(Oprnds[1]), getValue(Type::BoolTyID , Oprnds[2]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000779 else
Reid Spencer24399722004-07-09 22:21:33 +0000780 error("Invalid number of operands for a 'br' instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000781 break;
782 case Instruction::Switch: {
783 if (Oprnds.size() & 1)
Reid Spencer24399722004-07-09 22:21:33 +0000784 error("Switch statement with odd number of arguments!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000785
786 SwitchInst *I = new SwitchInst(getValue(iType, Oprnds[0]),
Chris Lattnercad28bd2005-01-29 00:36:19 +0000787 getBasicBlock(Oprnds[1]),
788 Oprnds.size()/2-1);
Reid Spencer060d25d2004-06-29 23:29:38 +0000789 for (unsigned i = 2, e = Oprnds.size(); i != e; i += 2)
Chris Lattner7e618232005-02-24 05:26:04 +0000790 I->addCase(cast<ConstantInt>(getValue(iType, Oprnds[i])),
Reid Spencer060d25d2004-06-29 23:29:38 +0000791 getBasicBlock(Oprnds[i+1]));
792 Result = I;
793 break;
794 }
795
Chris Lattnerdee199f2005-05-06 22:34:01 +0000796 case 58: // Call with extra operand for calling conv
797 case 59: // tail call, Fast CC
798 case 60: // normal call, Fast CC
799 case 61: // tail call, C Calling Conv
800 case Instruction::Call: { // Normal Call, C Calling Convention
Reid Spencer060d25d2004-06-29 23:29:38 +0000801 if (Oprnds.size() == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000802 error("Invalid call instruction encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000803
804 Value *F = getValue(iType, Oprnds[0]);
805
Chris Lattnerdee199f2005-05-06 22:34:01 +0000806 unsigned CallingConv = CallingConv::C;
807 bool isTailCall = false;
808
809 if (Opcode == 61 || Opcode == 59)
810 isTailCall = true;
811
Reid Spencer060d25d2004-06-29 23:29:38 +0000812 // Check to make sure we have a pointer to function type
813 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Reid Spencer24399722004-07-09 22:21:33 +0000814 if (PTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000815 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Reid Spencer24399722004-07-09 22:21:33 +0000816 if (FTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000817
818 std::vector<Value *> Params;
819 if (!FTy->isVarArg()) {
820 FunctionType::param_iterator It = FTy->param_begin();
821
Chris Lattnerdee199f2005-05-06 22:34:01 +0000822 if (Opcode == 58) {
823 isTailCall = Oprnds.back() & 1;
824 CallingConv = Oprnds.back() >> 1;
825 Oprnds.pop_back();
826 } else if (Opcode == 59 || Opcode == 60)
827 CallingConv = CallingConv::Fast;
828
Reid Spencer060d25d2004-06-29 23:29:38 +0000829 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
830 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000831 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000832 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
833 }
834 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000835 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000836 } else {
837 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
838
839 unsigned FirstVariableOperand;
840 if (Oprnds.size() < FTy->getNumParams())
Reid Spencer24399722004-07-09 22:21:33 +0000841 error("Call instruction missing operands!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000842
843 // Read all of the fixed arguments
844 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
845 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i)),Oprnds[i]));
Misha Brukman8a96c532005-04-21 21:44:41 +0000846
Reid Spencer060d25d2004-06-29 23:29:38 +0000847 FirstVariableOperand = FTy->getNumParams();
848
Misha Brukman8a96c532005-04-21 21:44:41 +0000849 if ((Oprnds.size()-FirstVariableOperand) & 1)
Chris Lattner4a242b32004-10-14 01:39:18 +0000850 error("Invalid call instruction!"); // Must be pairs of type/value
Misha Brukman8a96c532005-04-21 21:44:41 +0000851
852 for (unsigned i = FirstVariableOperand, e = Oprnds.size();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000853 i != e; i += 2)
Reid Spencer060d25d2004-06-29 23:29:38 +0000854 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
855 }
856
857 Result = new CallInst(F, Params);
Chris Lattnerdee199f2005-05-06 22:34:01 +0000858 if (isTailCall) cast<CallInst>(Result)->setTailCall();
859 if (CallingConv) cast<CallInst>(Result)->setCallingConv(CallingConv);
Reid Spencer060d25d2004-06-29 23:29:38 +0000860 break;
861 }
Chris Lattnerdee199f2005-05-06 22:34:01 +0000862 case 56: // Invoke with encoded CC
863 case 57: // Invoke Fast CC
864 case Instruction::Invoke: { // Invoke C CC
Misha Brukman8a96c532005-04-21 21:44:41 +0000865 if (Oprnds.size() < 3)
Reid Spencer24399722004-07-09 22:21:33 +0000866 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000867 Value *F = getValue(iType, Oprnds[0]);
868
869 // Check to make sure we have a pointer to function type
870 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Misha Brukman8a96c532005-04-21 21:44:41 +0000871 if (PTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000872 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000873 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Misha Brukman8a96c532005-04-21 21:44:41 +0000874 if (FTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000875 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000876
877 std::vector<Value *> Params;
878 BasicBlock *Normal, *Except;
Chris Lattnerdee199f2005-05-06 22:34:01 +0000879 unsigned CallingConv = CallingConv::C;
880
881 if (Opcode == 57)
882 CallingConv = CallingConv::Fast;
883 else if (Opcode == 56) {
884 CallingConv = Oprnds.back();
885 Oprnds.pop_back();
886 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000887
888 if (!FTy->isVarArg()) {
889 Normal = getBasicBlock(Oprnds[1]);
890 Except = getBasicBlock(Oprnds[2]);
891
892 FunctionType::param_iterator It = FTy->param_begin();
893 for (unsigned i = 3, e = Oprnds.size(); i != e; ++i) {
894 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000895 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000896 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
897 }
898 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000899 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000900 } else {
901 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
902
903 Normal = getBasicBlock(Oprnds[0]);
904 Except = getBasicBlock(Oprnds[1]);
Misha Brukman8a96c532005-04-21 21:44:41 +0000905
Reid Spencer060d25d2004-06-29 23:29:38 +0000906 unsigned FirstVariableArgument = FTy->getNumParams()+2;
907 for (unsigned i = 2; i != FirstVariableArgument; ++i)
908 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i-2)),
909 Oprnds[i]));
Misha Brukman8a96c532005-04-21 21:44:41 +0000910
Reid Spencer060d25d2004-06-29 23:29:38 +0000911 if (Oprnds.size()-FirstVariableArgument & 1) // Must be type/value pairs
Reid Spencer24399722004-07-09 22:21:33 +0000912 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000913
914 for (unsigned i = FirstVariableArgument; i < Oprnds.size(); i += 2)
915 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
916 }
917
918 Result = new InvokeInst(F, Normal, Except, Params);
Chris Lattnerdee199f2005-05-06 22:34:01 +0000919 if (CallingConv) cast<InvokeInst>(Result)->setCallingConv(CallingConv);
Reid Spencer060d25d2004-06-29 23:29:38 +0000920 break;
921 }
Chris Lattner42ba6b42005-11-05 22:08:14 +0000922 case Instruction::Malloc: {
923 unsigned Align = 0;
924 if (Oprnds.size() == 2)
925 Align = (1 << Oprnds[1]) >> 1;
926 else if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000927 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000928 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000929 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000930
931 Result = new MallocInst(cast<PointerType>(InstTy)->getElementType(),
Chris Lattner42ba6b42005-11-05 22:08:14 +0000932 getValue(Type::UIntTyID, Oprnds[0]), Align);
Reid Spencer060d25d2004-06-29 23:29:38 +0000933 break;
Chris Lattner42ba6b42005-11-05 22:08:14 +0000934 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000935
Chris Lattner42ba6b42005-11-05 22:08:14 +0000936 case Instruction::Alloca: {
937 unsigned Align = 0;
938 if (Oprnds.size() == 2)
939 Align = (1 << Oprnds[1]) >> 1;
940 else if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000941 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000942 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000943 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000944
945 Result = new AllocaInst(cast<PointerType>(InstTy)->getElementType(),
Chris Lattner42ba6b42005-11-05 22:08:14 +0000946 getValue(Type::UIntTyID, Oprnds[0]), Align);
Reid Spencer060d25d2004-06-29 23:29:38 +0000947 break;
Chris Lattner42ba6b42005-11-05 22:08:14 +0000948 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000949 case Instruction::Free:
950 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000951 error("Invalid free instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000952 Result = new FreeInst(getValue(iType, Oprnds[0]));
953 break;
954 case Instruction::GetElementPtr: {
955 if (Oprnds.size() == 0 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000956 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000957
958 std::vector<Value*> Idx;
959
960 const Type *NextTy = InstTy;
961 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
962 const CompositeType *TopTy = dyn_cast_or_null<CompositeType>(NextTy);
Misha Brukman8a96c532005-04-21 21:44:41 +0000963 if (!TopTy)
964 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000965
966 unsigned ValIdx = Oprnds[i];
967 unsigned IdxTy = 0;
968 if (!hasRestrictedGEPTypes) {
969 // Struct indices are always uints, sequential type indices can be any
970 // of the 32 or 64-bit integer types. The actual choice of type is
971 // encoded in the low two bits of the slot number.
972 if (isa<StructType>(TopTy))
973 IdxTy = Type::UIntTyID;
974 else {
975 switch (ValIdx & 3) {
976 default:
977 case 0: IdxTy = Type::UIntTyID; break;
978 case 1: IdxTy = Type::IntTyID; break;
979 case 2: IdxTy = Type::ULongTyID; break;
980 case 3: IdxTy = Type::LongTyID; break;
981 }
982 ValIdx >>= 2;
983 }
984 } else {
985 IdxTy = isa<StructType>(TopTy) ? Type::UByteTyID : Type::LongTyID;
986 }
987
988 Idx.push_back(getValue(IdxTy, ValIdx));
989
990 // Convert ubyte struct indices into uint struct indices.
991 if (isa<StructType>(TopTy) && hasRestrictedGEPTypes)
992 if (ConstantUInt *C = dyn_cast<ConstantUInt>(Idx.back()))
993 Idx[Idx.size()-1] = ConstantExpr::getCast(C, Type::UIntTy);
994
995 NextTy = GetElementPtrInst::getIndexedType(InstTy, Idx, true);
996 }
997
998 Result = new GetElementPtrInst(getValue(iType, Oprnds[0]), Idx);
999 break;
1000 }
1001
1002 case 62: // volatile load
1003 case Instruction::Load:
1004 if (Oprnds.size() != 1 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +00001005 error("Invalid load instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001006 Result = new LoadInst(getValue(iType, Oprnds[0]), "", Opcode == 62);
1007 break;
1008
Misha Brukman8a96c532005-04-21 21:44:41 +00001009 case 63: // volatile store
Reid Spencer060d25d2004-06-29 23:29:38 +00001010 case Instruction::Store: {
1011 if (!isa<PointerType>(InstTy) || Oprnds.size() != 2)
Reid Spencer24399722004-07-09 22:21:33 +00001012 error("Invalid store instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001013
1014 Value *Ptr = getValue(iType, Oprnds[1]);
1015 const Type *ValTy = cast<PointerType>(Ptr->getType())->getElementType();
1016 Result = new StoreInst(getValue(getTypeSlot(ValTy), Oprnds[0]), Ptr,
1017 Opcode == 63);
1018 break;
1019 }
1020 case Instruction::Unwind:
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001021 if (Oprnds.size() != 0) error("Invalid unwind instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001022 Result = new UnwindInst();
1023 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001024 case Instruction::Unreachable:
1025 if (Oprnds.size() != 0) error("Invalid unreachable instruction!");
1026 Result = new UnreachableInst();
1027 break;
Misha Brukman8a96c532005-04-21 21:44:41 +00001028 } // end switch(Opcode)
Reid Spencer060d25d2004-06-29 23:29:38 +00001029
Reid Spencere1e96c02006-01-19 07:02:16 +00001030 BB->getInstList().push_back(Result);
1031
Reid Spencer060d25d2004-06-29 23:29:38 +00001032 unsigned TypeSlot;
1033 if (Result->getType() == InstTy)
1034 TypeSlot = iType;
1035 else
1036 TypeSlot = getTypeSlot(Result->getType());
1037
1038 insertValue(Result, TypeSlot, FunctionValues);
Reid Spencer060d25d2004-06-29 23:29:38 +00001039}
1040
Reid Spencer04cde2c2004-07-04 11:33:49 +00001041/// Get a particular numbered basic block, which might be a forward reference.
1042/// This works together with ParseBasicBlock to handle these forward references
Chris Lattner4a242b32004-10-14 01:39:18 +00001043/// in a clean manner. This function is used when constructing phi, br, switch,
1044/// and other instructions that reference basic blocks. Blocks are numbered
Reid Spencer04cde2c2004-07-04 11:33:49 +00001045/// sequentially as they appear in the function.
Reid Spencer060d25d2004-06-29 23:29:38 +00001046BasicBlock *BytecodeReader::getBasicBlock(unsigned ID) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001047 // Make sure there is room in the table...
1048 if (ParsedBasicBlocks.size() <= ID) ParsedBasicBlocks.resize(ID+1);
1049
1050 // First check to see if this is a backwards reference, i.e., ParseBasicBlock
1051 // has already created this block, or if the forward reference has already
1052 // been created.
1053 if (ParsedBasicBlocks[ID])
1054 return ParsedBasicBlocks[ID];
1055
1056 // Otherwise, the basic block has not yet been created. Do so and add it to
1057 // the ParsedBasicBlocks list.
1058 return ParsedBasicBlocks[ID] = new BasicBlock();
1059}
1060
Misha Brukman8a96c532005-04-21 21:44:41 +00001061/// In LLVM 1.0 bytecode files, we used to output one basicblock at a time.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001062/// This method reads in one of the basicblock packets. This method is not used
1063/// for bytecode files after LLVM 1.0
1064/// @returns The basic block constructed.
Reid Spencer46b002c2004-07-11 17:28:43 +00001065BasicBlock *BytecodeReader::ParseBasicBlock(unsigned BlockNo) {
1066 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Reid Spencer060d25d2004-06-29 23:29:38 +00001067
1068 BasicBlock *BB = 0;
1069
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001070 if (ParsedBasicBlocks.size() == BlockNo)
1071 ParsedBasicBlocks.push_back(BB = new BasicBlock());
1072 else if (ParsedBasicBlocks[BlockNo] == 0)
1073 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
1074 else
1075 BB = ParsedBasicBlocks[BlockNo];
Chris Lattner00950542001-06-06 20:29:01 +00001076
Reid Spencer060d25d2004-06-29 23:29:38 +00001077 std::vector<unsigned> Operands;
Reid Spencer46b002c2004-07-11 17:28:43 +00001078 while (moreInBlock())
Reid Spencer060d25d2004-06-29 23:29:38 +00001079 ParseInstruction(Operands, BB);
Chris Lattner00950542001-06-06 20:29:01 +00001080
Reid Spencer46b002c2004-07-11 17:28:43 +00001081 if (Handler) Handler->handleBasicBlockEnd(BlockNo);
Misha Brukman12c29d12003-09-22 23:38:23 +00001082 return BB;
Chris Lattner00950542001-06-06 20:29:01 +00001083}
1084
Reid Spencer04cde2c2004-07-04 11:33:49 +00001085/// Parse all of the BasicBlock's & Instruction's in the body of a function.
Misha Brukman8a96c532005-04-21 21:44:41 +00001086/// In post 1.0 bytecode files, we no longer emit basic block individually,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001087/// in order to avoid per-basic-block overhead.
1088/// @returns Rhe number of basic blocks encountered.
Reid Spencer060d25d2004-06-29 23:29:38 +00001089unsigned BytecodeReader::ParseInstructionList(Function* F) {
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001090 unsigned BlockNo = 0;
1091 std::vector<unsigned> Args;
1092
Reid Spencer46b002c2004-07-11 17:28:43 +00001093 while (moreInBlock()) {
1094 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001095 BasicBlock *BB;
1096 if (ParsedBasicBlocks.size() == BlockNo)
1097 ParsedBasicBlocks.push_back(BB = new BasicBlock());
1098 else if (ParsedBasicBlocks[BlockNo] == 0)
1099 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
1100 else
1101 BB = ParsedBasicBlocks[BlockNo];
1102 ++BlockNo;
1103 F->getBasicBlockList().push_back(BB);
1104
1105 // Read instructions into this basic block until we get to a terminator
Reid Spencer46b002c2004-07-11 17:28:43 +00001106 while (moreInBlock() && !BB->getTerminator())
Reid Spencer060d25d2004-06-29 23:29:38 +00001107 ParseInstruction(Args, BB);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001108
1109 if (!BB->getTerminator())
Reid Spencer24399722004-07-09 22:21:33 +00001110 error("Non-terminated basic block found!");
Reid Spencer5c15fe52004-07-05 00:57:50 +00001111
Reid Spencer46b002c2004-07-11 17:28:43 +00001112 if (Handler) Handler->handleBasicBlockEnd(BlockNo-1);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001113 }
1114
1115 return BlockNo;
1116}
1117
Reid Spencer04cde2c2004-07-04 11:33:49 +00001118/// Parse a symbol table. This works for both module level and function
1119/// level symbol tables. For function level symbol tables, the CurrentFunction
1120/// parameter must be non-zero and the ST parameter must correspond to
1121/// CurrentFunction's symbol table. For Module level symbol tables, the
1122/// CurrentFunction argument must be zero.
Reid Spencer060d25d2004-06-29 23:29:38 +00001123void BytecodeReader::ParseSymbolTable(Function *CurrentFunction,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001124 SymbolTable *ST) {
1125 if (Handler) Handler->handleSymbolTableBegin(CurrentFunction,ST);
Reid Spencer060d25d2004-06-29 23:29:38 +00001126
Chris Lattner39cacce2003-10-10 05:43:47 +00001127 // Allow efficient basic block lookup by number.
1128 std::vector<BasicBlock*> BBMap;
1129 if (CurrentFunction)
1130 for (Function::iterator I = CurrentFunction->begin(),
1131 E = CurrentFunction->end(); I != E; ++I)
1132 BBMap.push_back(I);
1133
Reid Spencer04cde2c2004-07-04 11:33:49 +00001134 /// In LLVM 1.3 we write types separately from values so
1135 /// The types are always first in the symbol table. This is
1136 /// because Type no longer derives from Value.
Reid Spencer46b002c2004-07-11 17:28:43 +00001137 if (!hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001138 // Symtab block header: [num entries]
1139 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001140 for (unsigned i = 0; i < NumEntries; ++i) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001141 // Symtab entry: [def slot #][name]
1142 unsigned slot = read_vbr_uint();
1143 std::string Name = read_str();
1144 const Type* T = getType(slot);
1145 ST->insert(Name, T);
1146 }
1147 }
1148
Reid Spencer46b002c2004-07-11 17:28:43 +00001149 while (moreInBlock()) {
Chris Lattner00950542001-06-06 20:29:01 +00001150 // Symtab block header: [num entries][type id number]
Reid Spencer060d25d2004-06-29 23:29:38 +00001151 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001152 unsigned Typ = 0;
1153 bool isTypeType = read_typeid(Typ);
Chris Lattner00950542001-06-06 20:29:01 +00001154 const Type *Ty = getType(Typ);
Chris Lattner1d670cc2001-09-07 16:37:43 +00001155
Chris Lattner7dc3a2e2003-10-13 14:57:53 +00001156 for (unsigned i = 0; i != NumEntries; ++i) {
Chris Lattner00950542001-06-06 20:29:01 +00001157 // Symtab entry: [def slot #][name]
Reid Spencer060d25d2004-06-29 23:29:38 +00001158 unsigned slot = read_vbr_uint();
1159 std::string Name = read_str();
Chris Lattner00950542001-06-06 20:29:01 +00001160
Reid Spencer04cde2c2004-07-04 11:33:49 +00001161 // if we're reading a pre 1.3 bytecode file and the type plane
1162 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001163 if (isTypeType) {
1164 const Type* T = getType(slot);
1165 if (T == 0)
1166 error("Failed type look-up for name '" + Name + "'");
1167 ST->insert(Name, T);
1168 continue; // code below must be short circuited
Chris Lattner39cacce2003-10-10 05:43:47 +00001169 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001170 Value *V = 0;
1171 if (Typ == Type::LabelTyID) {
1172 if (slot < BBMap.size())
1173 V = BBMap[slot];
1174 } else {
1175 V = getValue(Typ, slot, false); // Find mapping...
1176 }
1177 if (V == 0)
1178 error("Failed value look-up for name '" + Name + "'");
Chris Lattner7acff252005-03-05 19:05:20 +00001179 V->setName(Name);
Chris Lattner39cacce2003-10-10 05:43:47 +00001180 }
Chris Lattner00950542001-06-06 20:29:01 +00001181 }
1182 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001183 checkPastBlockEnd("Symbol Table");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001184 if (Handler) Handler->handleSymbolTableEnd();
Chris Lattner00950542001-06-06 20:29:01 +00001185}
1186
Misha Brukman8a96c532005-04-21 21:44:41 +00001187/// Read in the types portion of a compaction table.
Reid Spencer46b002c2004-07-11 17:28:43 +00001188void BytecodeReader::ParseCompactionTypes(unsigned NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001189 for (unsigned i = 0; i != NumEntries; ++i) {
1190 unsigned TypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001191 if (read_typeid(TypeSlot))
Reid Spencer24399722004-07-09 22:21:33 +00001192 error("Invalid type in compaction table: type type");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001193 const Type *Typ = getGlobalTableType(TypeSlot);
Chris Lattner45b5dd22004-08-03 23:41:28 +00001194 CompactionTypes.push_back(std::make_pair(Typ, TypeSlot));
Reid Spencer46b002c2004-07-11 17:28:43 +00001195 if (Handler) Handler->handleCompactionTableType(i, TypeSlot, Typ);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001196 }
1197}
1198
1199/// Parse a compaction table.
Reid Spencer060d25d2004-06-29 23:29:38 +00001200void BytecodeReader::ParseCompactionTable() {
1201
Reid Spencer46b002c2004-07-11 17:28:43 +00001202 // Notify handler that we're beginning a compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001203 if (Handler) Handler->handleCompactionTableBegin();
1204
Misha Brukman8a96c532005-04-21 21:44:41 +00001205 // In LLVM 1.3 Type no longer derives from Value. So,
Reid Spencer46b002c2004-07-11 17:28:43 +00001206 // we always write them first in the compaction table
1207 // because they can't occupy a "type plane" where the
1208 // Values reside.
1209 if (! hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001210 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001211 ParseCompactionTypes(NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001212 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001213
Reid Spencer46b002c2004-07-11 17:28:43 +00001214 // Compaction tables live in separate blocks so we have to loop
1215 // until we've read the whole thing.
1216 while (moreInBlock()) {
1217 // Read the number of Value* entries in the compaction table
Reid Spencer060d25d2004-06-29 23:29:38 +00001218 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001219 unsigned Ty = 0;
1220 unsigned isTypeType = false;
Reid Spencer060d25d2004-06-29 23:29:38 +00001221
Reid Spencer46b002c2004-07-11 17:28:43 +00001222 // Decode the type from value read in. Most compaction table
1223 // planes will have one or two entries in them. If that's the
1224 // case then the length is encoded in the bottom two bits and
1225 // the higher bits encode the type. This saves another VBR value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001226 if ((NumEntries & 3) == 3) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001227 // In this case, both low-order bits are set (value 3). This
1228 // is a signal that the typeid follows.
Reid Spencer060d25d2004-06-29 23:29:38 +00001229 NumEntries >>= 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001230 isTypeType = read_typeid(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001231 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001232 // In this case, the low-order bits specify the number of entries
1233 // and the high order bits specify the type.
Reid Spencer060d25d2004-06-29 23:29:38 +00001234 Ty = NumEntries >> 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001235 isTypeType = sanitizeTypeId(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001236 NumEntries &= 3;
1237 }
1238
Reid Spencer04cde2c2004-07-04 11:33:49 +00001239 // if we're reading a pre 1.3 bytecode file and the type plane
1240 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001241 if (isTypeType) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001242 ParseCompactionTypes(NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001243 } else {
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001244 // Make sure we have enough room for the plane.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001245 if (Ty >= CompactionValues.size())
Reid Spencer46b002c2004-07-11 17:28:43 +00001246 CompactionValues.resize(Ty+1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001247
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001248 // Make sure the plane is empty or we have some kind of error.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001249 if (!CompactionValues[Ty].empty())
Reid Spencer46b002c2004-07-11 17:28:43 +00001250 error("Compaction table plane contains multiple entries!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001251
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001252 // Notify handler about the plane.
Reid Spencer46b002c2004-07-11 17:28:43 +00001253 if (Handler) Handler->handleCompactionTablePlane(Ty, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001254
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001255 // Push the implicit zero.
1256 CompactionValues[Ty].push_back(Constant::getNullValue(getType(Ty)));
Reid Spencer46b002c2004-07-11 17:28:43 +00001257
1258 // Read in each of the entries, put them in the compaction table
1259 // and notify the handler that we have a new compaction table value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001260 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001261 unsigned ValSlot = read_vbr_uint();
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001262 Value *V = getGlobalTableValue(Ty, ValSlot);
Reid Spencer46b002c2004-07-11 17:28:43 +00001263 CompactionValues[Ty].push_back(V);
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001264 if (Handler) Handler->handleCompactionTableValue(i, Ty, ValSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001265 }
1266 }
1267 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001268 // Notify handler that the compaction table is done.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001269 if (Handler) Handler->handleCompactionTableEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001270}
Misha Brukman8a96c532005-04-21 21:44:41 +00001271
Reid Spencer46b002c2004-07-11 17:28:43 +00001272// Parse a single type. The typeid is read in first. If its a primitive type
1273// then nothing else needs to be read, we know how to instantiate it. If its
Misha Brukman8a96c532005-04-21 21:44:41 +00001274// a derived type, then additional data is read to fill out the type
Reid Spencer46b002c2004-07-11 17:28:43 +00001275// definition.
1276const Type *BytecodeReader::ParseType() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001277 unsigned PrimType = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001278 if (read_typeid(PrimType))
Reid Spencer24399722004-07-09 22:21:33 +00001279 error("Invalid type (type type) in type constants!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001280
1281 const Type *Result = 0;
1282 if ((Result = Type::getPrimitiveType((Type::TypeID)PrimType)))
1283 return Result;
Misha Brukman8a96c532005-04-21 21:44:41 +00001284
Reid Spencer060d25d2004-06-29 23:29:38 +00001285 switch (PrimType) {
1286 case Type::FunctionTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001287 const Type *RetType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001288
1289 unsigned NumParams = read_vbr_uint();
1290
1291 std::vector<const Type*> Params;
Misha Brukman8a96c532005-04-21 21:44:41 +00001292 while (NumParams--)
Reid Spencer04cde2c2004-07-04 11:33:49 +00001293 Params.push_back(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001294
1295 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1296 if (isVarArg) Params.pop_back();
1297
1298 Result = FunctionType::get(RetType, Params, isVarArg);
1299 break;
1300 }
1301 case Type::ArrayTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001302 const Type *ElementType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001303 unsigned NumElements = read_vbr_uint();
Reid Spencer060d25d2004-06-29 23:29:38 +00001304 Result = ArrayType::get(ElementType, NumElements);
1305 break;
1306 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001307 case Type::PackedTyID: {
1308 const Type *ElementType = readSanitizedType();
1309 unsigned NumElements = read_vbr_uint();
1310 Result = PackedType::get(ElementType, NumElements);
1311 break;
1312 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001313 case Type::StructTyID: {
1314 std::vector<const Type*> Elements;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001315 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001316 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001317 error("Invalid element type (type type) for structure!");
1318
Reid Spencer060d25d2004-06-29 23:29:38 +00001319 while (Typ) { // List is terminated by void/0 typeid
1320 Elements.push_back(getType(Typ));
Reid Spencer46b002c2004-07-11 17:28:43 +00001321 if (read_typeid(Typ))
1322 error("Invalid element type (type type) for structure!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001323 }
1324
1325 Result = StructType::get(Elements);
1326 break;
1327 }
1328 case Type::PointerTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001329 Result = PointerType::get(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001330 break;
1331 }
1332
1333 case Type::OpaqueTyID: {
1334 Result = OpaqueType::get();
1335 break;
1336 }
1337
1338 default:
Reid Spencer24399722004-07-09 22:21:33 +00001339 error("Don't know how to deserialize primitive type " + utostr(PrimType));
Reid Spencer060d25d2004-06-29 23:29:38 +00001340 break;
1341 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001342 if (Handler) Handler->handleType(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001343 return Result;
1344}
1345
Reid Spencer5b472d92004-08-21 20:49:23 +00001346// ParseTypes - We have to use this weird code to handle recursive
Reid Spencer060d25d2004-06-29 23:29:38 +00001347// types. We know that recursive types will only reference the current slab of
1348// values in the type plane, but they can forward reference types before they
1349// have been read. For example, Type #0 might be '{ Ty#1 }' and Type #1 might
1350// be 'Ty#0*'. When reading Type #0, type number one doesn't exist. To fix
1351// this ugly problem, we pessimistically insert an opaque type for each type we
1352// are about to read. This means that forward references will resolve to
1353// something and when we reread the type later, we can replace the opaque type
1354// with a new resolved concrete type.
1355//
Reid Spencer46b002c2004-07-11 17:28:43 +00001356void BytecodeReader::ParseTypes(TypeListTy &Tab, unsigned NumEntries){
Reid Spencer060d25d2004-06-29 23:29:38 +00001357 assert(Tab.size() == 0 && "should not have read type constants in before!");
1358
1359 // Insert a bunch of opaque types to be resolved later...
1360 Tab.reserve(NumEntries);
1361 for (unsigned i = 0; i != NumEntries; ++i)
1362 Tab.push_back(OpaqueType::get());
1363
Misha Brukman8a96c532005-04-21 21:44:41 +00001364 if (Handler)
Reid Spencer5b472d92004-08-21 20:49:23 +00001365 Handler->handleTypeList(NumEntries);
1366
Chris Lattnereebac5f2005-10-03 21:26:53 +00001367 // If we are about to resolve types, make sure the type cache is clear.
1368 if (NumEntries)
1369 ModuleTypeIDCache.clear();
1370
Reid Spencer060d25d2004-06-29 23:29:38 +00001371 // Loop through reading all of the types. Forward types will make use of the
1372 // opaque types just inserted.
1373 //
1374 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001375 const Type* NewTy = ParseType();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001376 const Type* OldTy = Tab[i].get();
Misha Brukman8a96c532005-04-21 21:44:41 +00001377 if (NewTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +00001378 error("Couldn't parse type!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001379
Misha Brukman8a96c532005-04-21 21:44:41 +00001380 // Don't directly push the new type on the Tab. Instead we want to replace
Reid Spencer060d25d2004-06-29 23:29:38 +00001381 // the opaque type we previously inserted with the new concrete value. This
1382 // approach helps with forward references to types. The refinement from the
1383 // abstract (opaque) type to the new type causes all uses of the abstract
1384 // type to use the concrete type (NewTy). This will also cause the opaque
1385 // type to be deleted.
1386 cast<DerivedType>(const_cast<Type*>(OldTy))->refineAbstractTypeTo(NewTy);
1387
1388 // This should have replaced the old opaque type with the new type in the
1389 // value table... or with a preexisting type that was already in the system.
1390 // Let's just make sure it did.
1391 assert(Tab[i] != OldTy && "refineAbstractType didn't work!");
1392 }
1393}
1394
Reid Spencer04cde2c2004-07-04 11:33:49 +00001395/// Parse a single constant value
Chris Lattner3bc5a602006-01-25 23:08:15 +00001396Value *BytecodeReader::ParseConstantPoolValue(unsigned TypeID) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001397 // We must check for a ConstantExpr before switching by type because
1398 // a ConstantExpr can be of any type, and has no explicit value.
Misha Brukman8a96c532005-04-21 21:44:41 +00001399 //
Reid Spencer060d25d2004-06-29 23:29:38 +00001400 // 0 if not expr; numArgs if is expr
1401 unsigned isExprNumArgs = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001402
Reid Spencer060d25d2004-06-29 23:29:38 +00001403 if (isExprNumArgs) {
Chris Lattner3bc5a602006-01-25 23:08:15 +00001404 if (!hasNoUndefValue) {
1405 // 'undef' is encoded with 'exprnumargs' == 1.
1406 if (isExprNumArgs == 1)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001407 return UndefValue::get(getType(TypeID));
Misha Brukman8a96c532005-04-21 21:44:41 +00001408
Chris Lattner3bc5a602006-01-25 23:08:15 +00001409 // Inline asm is encoded with exprnumargs == ~0U.
1410 if (isExprNumArgs == ~0U) {
1411 std::string AsmStr = read_str();
1412 std::string ConstraintStr = read_str();
1413 unsigned Flags = read_vbr_uint();
1414
1415 const PointerType *PTy = dyn_cast<PointerType>(getType(TypeID));
1416 const FunctionType *FTy =
1417 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
1418
1419 if (!FTy || !InlineAsm::Verify(FTy, ConstraintStr))
1420 error("Invalid constraints for inline asm");
1421 if (Flags & ~1U)
1422 error("Invalid flags for inline asm");
1423 bool HasSideEffects = Flags & 1;
1424 return InlineAsm::get(FTy, AsmStr, ConstraintStr, HasSideEffects);
1425 }
1426
1427 --isExprNumArgs;
1428 }
1429
Reid Spencer060d25d2004-06-29 23:29:38 +00001430 // FIXME: Encoding of constant exprs could be much more compact!
1431 std::vector<Constant*> ArgVec;
1432 ArgVec.reserve(isExprNumArgs);
1433 unsigned Opcode = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001434
1435 // Bytecode files before LLVM 1.4 need have a missing terminator inst.
1436 if (hasNoUnreachableInst) Opcode++;
Misha Brukman8a96c532005-04-21 21:44:41 +00001437
Reid Spencer060d25d2004-06-29 23:29:38 +00001438 // Read the slot number and types of each of the arguments
1439 for (unsigned i = 0; i != isExprNumArgs; ++i) {
1440 unsigned ArgValSlot = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001441 unsigned ArgTypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001442 if (read_typeid(ArgTypeSlot))
1443 error("Invalid argument type (type type) for constant value");
Misha Brukman8a96c532005-04-21 21:44:41 +00001444
Reid Spencer060d25d2004-06-29 23:29:38 +00001445 // Get the arg value from its slot if it exists, otherwise a placeholder
1446 ArgVec.push_back(getConstantValue(ArgTypeSlot, ArgValSlot));
1447 }
Misha Brukman8a96c532005-04-21 21:44:41 +00001448
Reid Spencer060d25d2004-06-29 23:29:38 +00001449 // Construct a ConstantExpr of the appropriate kind
1450 if (isExprNumArgs == 1) { // All one-operand expressions
Reid Spencer46b002c2004-07-11 17:28:43 +00001451 if (Opcode != Instruction::Cast)
Chris Lattner02dce162004-12-04 05:28:27 +00001452 error("Only cast instruction has one argument for ConstantExpr");
Reid Spencer46b002c2004-07-11 17:28:43 +00001453
Reid Spencer060d25d2004-06-29 23:29:38 +00001454 Constant* Result = ConstantExpr::getCast(ArgVec[0], getType(TypeID));
Reid Spencer04cde2c2004-07-04 11:33:49 +00001455 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001456 return Result;
1457 } else if (Opcode == Instruction::GetElementPtr) { // GetElementPtr
1458 std::vector<Constant*> IdxList(ArgVec.begin()+1, ArgVec.end());
1459
1460 if (hasRestrictedGEPTypes) {
1461 const Type *BaseTy = ArgVec[0]->getType();
1462 generic_gep_type_iterator<std::vector<Constant*>::iterator>
1463 GTI = gep_type_begin(BaseTy, IdxList.begin(), IdxList.end()),
1464 E = gep_type_end(BaseTy, IdxList.begin(), IdxList.end());
1465 for (unsigned i = 0; GTI != E; ++GTI, ++i)
1466 if (isa<StructType>(*GTI)) {
1467 if (IdxList[i]->getType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001468 error("Invalid index for getelementptr!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001469 IdxList[i] = ConstantExpr::getCast(IdxList[i], Type::UIntTy);
1470 }
1471 }
1472
1473 Constant* Result = ConstantExpr::getGetElementPtr(ArgVec[0], IdxList);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001474 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001475 return Result;
1476 } else if (Opcode == Instruction::Select) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001477 if (ArgVec.size() != 3)
1478 error("Select instruction must have three arguments.");
Misha Brukman8a96c532005-04-21 21:44:41 +00001479 Constant* Result = ConstantExpr::getSelect(ArgVec[0], ArgVec[1],
Reid Spencer04cde2c2004-07-04 11:33:49 +00001480 ArgVec[2]);
1481 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001482 return Result;
Robert Bocchinofee31b32006-01-10 19:04:39 +00001483 } else if (Opcode == Instruction::ExtractElement) {
1484 if (ArgVec.size() != 2)
1485 error("ExtractElement instruction must have two arguments.");
1486 Constant* Result = ConstantExpr::getExtractElement(ArgVec[0], ArgVec[1]);
1487 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
1488 return Result;
Robert Bocchinob1f240b2006-01-17 20:06:35 +00001489 } else if (Opcode == Instruction::InsertElement) {
1490 if (ArgVec.size() != 3)
1491 error("InsertElement instruction must have three arguments.");
1492 Constant* Result =
1493 ConstantExpr::getInsertElement(ArgVec[0], ArgVec[1], ArgVec[2]);
1494 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
1495 return Result;
Reid Spencer060d25d2004-06-29 23:29:38 +00001496 } else { // All other 2-operand expressions
1497 Constant* Result = ConstantExpr::get(Opcode, ArgVec[0], ArgVec[1]);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001498 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001499 return Result;
1500 }
1501 }
Misha Brukman8a96c532005-04-21 21:44:41 +00001502
Reid Spencer060d25d2004-06-29 23:29:38 +00001503 // Ok, not an ConstantExpr. We now know how to read the given type...
1504 const Type *Ty = getType(TypeID);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001505 Constant *Result = 0;
Reid Spencer060d25d2004-06-29 23:29:38 +00001506 switch (Ty->getTypeID()) {
1507 case Type::BoolTyID: {
1508 unsigned Val = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001509 if (Val != 0 && Val != 1)
Reid Spencer24399722004-07-09 22:21:33 +00001510 error("Invalid boolean value read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001511 Result = ConstantBool::get(Val == 1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001512 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001513 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001514 }
1515
1516 case Type::UByteTyID: // Unsigned integer types...
1517 case Type::UShortTyID:
1518 case Type::UIntTyID: {
1519 unsigned Val = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001520 if (!ConstantUInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001521 error("Invalid unsigned byte/short/int read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001522 Result = ConstantUInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001523 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001524 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001525 }
1526
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001527 case Type::ULongTyID:
1528 Result = ConstantUInt::get(Ty, read_vbr_uint64());
Reid Spencer04cde2c2004-07-04 11:33:49 +00001529 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001530 break;
1531
Reid Spencer060d25d2004-06-29 23:29:38 +00001532 case Type::SByteTyID: // Signed integer types...
1533 case Type::ShortTyID:
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001534 case Type::IntTyID:
1535 case Type::LongTyID: {
Reid Spencer060d25d2004-06-29 23:29:38 +00001536 int64_t Val = read_vbr_int64();
Misha Brukman8a96c532005-04-21 21:44:41 +00001537 if (!ConstantSInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001538 error("Invalid signed byte/short/int/long read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001539 Result = ConstantSInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001540 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001541 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001542 }
1543
1544 case Type::FloatTyID: {
Reid Spencer46b002c2004-07-11 17:28:43 +00001545 float Val;
1546 read_float(Val);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001547 Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001548 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001549 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001550 }
1551
1552 case Type::DoubleTyID: {
1553 double Val;
Reid Spencer46b002c2004-07-11 17:28:43 +00001554 read_double(Val);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001555 Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001556 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001557 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001558 }
1559
Reid Spencer060d25d2004-06-29 23:29:38 +00001560 case Type::ArrayTyID: {
1561 const ArrayType *AT = cast<ArrayType>(Ty);
1562 unsigned NumElements = AT->getNumElements();
1563 unsigned TypeSlot = getTypeSlot(AT->getElementType());
1564 std::vector<Constant*> Elements;
1565 Elements.reserve(NumElements);
1566 while (NumElements--) // Read all of the elements of the constant.
1567 Elements.push_back(getConstantValue(TypeSlot,
1568 read_vbr_uint()));
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001569 Result = ConstantArray::get(AT, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001570 if (Handler) Handler->handleConstantArray(AT, Elements, TypeSlot, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001571 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001572 }
1573
1574 case Type::StructTyID: {
1575 const StructType *ST = cast<StructType>(Ty);
1576
1577 std::vector<Constant *> Elements;
1578 Elements.reserve(ST->getNumElements());
1579 for (unsigned i = 0; i != ST->getNumElements(); ++i)
1580 Elements.push_back(getConstantValue(ST->getElementType(i),
1581 read_vbr_uint()));
1582
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001583 Result = ConstantStruct::get(ST, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001584 if (Handler) Handler->handleConstantStruct(ST, Elements, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001585 break;
Misha Brukman8a96c532005-04-21 21:44:41 +00001586 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001587
Brian Gaeke715c90b2004-08-20 06:00:58 +00001588 case Type::PackedTyID: {
1589 const PackedType *PT = cast<PackedType>(Ty);
1590 unsigned NumElements = PT->getNumElements();
1591 unsigned TypeSlot = getTypeSlot(PT->getElementType());
1592 std::vector<Constant*> Elements;
1593 Elements.reserve(NumElements);
1594 while (NumElements--) // Read all of the elements of the constant.
1595 Elements.push_back(getConstantValue(TypeSlot,
1596 read_vbr_uint()));
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001597 Result = ConstantPacked::get(PT, Elements);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001598 if (Handler) Handler->handleConstantPacked(PT, Elements, TypeSlot, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001599 break;
Brian Gaeke715c90b2004-08-20 06:00:58 +00001600 }
1601
Chris Lattner638c3812004-11-19 16:24:05 +00001602 case Type::PointerTyID: { // ConstantPointerRef value (backwards compat).
Reid Spencer060d25d2004-06-29 23:29:38 +00001603 const PointerType *PT = cast<PointerType>(Ty);
1604 unsigned Slot = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001605
Reid Spencer060d25d2004-06-29 23:29:38 +00001606 // Check to see if we have already read this global variable...
1607 Value *Val = getValue(TypeID, Slot, false);
Reid Spencer060d25d2004-06-29 23:29:38 +00001608 if (Val) {
Chris Lattnerbcb11cf2004-07-27 02:34:49 +00001609 GlobalValue *GV = dyn_cast<GlobalValue>(Val);
1610 if (!GV) error("GlobalValue not in ValueTable!");
1611 if (Handler) Handler->handleConstantPointer(PT, Slot, GV);
1612 return GV;
Reid Spencer060d25d2004-06-29 23:29:38 +00001613 } else {
Reid Spencer24399722004-07-09 22:21:33 +00001614 error("Forward references are not allowed here.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001615 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001616 }
1617
1618 default:
Reid Spencer24399722004-07-09 22:21:33 +00001619 error("Don't know how to deserialize constant value of type '" +
Reid Spencer060d25d2004-06-29 23:29:38 +00001620 Ty->getDescription());
1621 break;
1622 }
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001623
1624 // Check that we didn't read a null constant if they are implicit for this
1625 // type plane. Do not do this check for constantexprs, as they may be folded
1626 // to a null value in a way that isn't predicted when a .bc file is initially
1627 // produced.
1628 assert((!isa<Constant>(Result) || !cast<Constant>(Result)->isNullValue()) ||
1629 !hasImplicitNull(TypeID) &&
1630 "Cannot read null values from bytecode!");
1631 return Result;
Reid Spencer060d25d2004-06-29 23:29:38 +00001632}
1633
Misha Brukman8a96c532005-04-21 21:44:41 +00001634/// Resolve references for constants. This function resolves the forward
1635/// referenced constants in the ConstantFwdRefs map. It uses the
Reid Spencer04cde2c2004-07-04 11:33:49 +00001636/// replaceAllUsesWith method of Value class to substitute the placeholder
1637/// instance with the actual instance.
Chris Lattner389bd042004-12-09 06:19:44 +00001638void BytecodeReader::ResolveReferencesToConstant(Constant *NewV, unsigned Typ,
1639 unsigned Slot) {
Chris Lattner29b789b2003-11-19 17:27:18 +00001640 ConstantRefsType::iterator I =
Chris Lattner389bd042004-12-09 06:19:44 +00001641 ConstantFwdRefs.find(std::make_pair(Typ, Slot));
Chris Lattner29b789b2003-11-19 17:27:18 +00001642 if (I == ConstantFwdRefs.end()) return; // Never forward referenced?
Chris Lattner00950542001-06-06 20:29:01 +00001643
Chris Lattner29b789b2003-11-19 17:27:18 +00001644 Value *PH = I->second; // Get the placeholder...
1645 PH->replaceAllUsesWith(NewV);
1646 delete PH; // Delete the old placeholder
1647 ConstantFwdRefs.erase(I); // Remove the map entry for it
Vikram S. Advec1e4a812002-07-14 23:04:18 +00001648}
1649
Reid Spencer04cde2c2004-07-04 11:33:49 +00001650/// Parse the constant strings section.
Reid Spencer060d25d2004-06-29 23:29:38 +00001651void BytecodeReader::ParseStringConstants(unsigned NumEntries, ValueTable &Tab){
1652 for (; NumEntries; --NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001653 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001654 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001655 error("Invalid type (type type) for string constant");
Reid Spencer060d25d2004-06-29 23:29:38 +00001656 const Type *Ty = getType(Typ);
1657 if (!isa<ArrayType>(Ty))
Reid Spencer24399722004-07-09 22:21:33 +00001658 error("String constant data invalid!");
Misha Brukman8a96c532005-04-21 21:44:41 +00001659
Reid Spencer060d25d2004-06-29 23:29:38 +00001660 const ArrayType *ATy = cast<ArrayType>(Ty);
1661 if (ATy->getElementType() != Type::SByteTy &&
1662 ATy->getElementType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001663 error("String constant data invalid!");
Misha Brukman8a96c532005-04-21 21:44:41 +00001664
Reid Spencer060d25d2004-06-29 23:29:38 +00001665 // Read character data. The type tells us how long the string is.
Misha Brukman8a96c532005-04-21 21:44:41 +00001666 char *Data = reinterpret_cast<char *>(alloca(ATy->getNumElements()));
Reid Spencer060d25d2004-06-29 23:29:38 +00001667 read_data(Data, Data+ATy->getNumElements());
Chris Lattner52e20b02003-03-19 20:54:26 +00001668
Reid Spencer060d25d2004-06-29 23:29:38 +00001669 std::vector<Constant*> Elements(ATy->getNumElements());
1670 if (ATy->getElementType() == Type::SByteTy)
1671 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1672 Elements[i] = ConstantSInt::get(Type::SByteTy, (signed char)Data[i]);
1673 else
1674 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1675 Elements[i] = ConstantUInt::get(Type::UByteTy, (unsigned char)Data[i]);
Misha Brukman12c29d12003-09-22 23:38:23 +00001676
Reid Spencer060d25d2004-06-29 23:29:38 +00001677 // Create the constant, inserting it as needed.
1678 Constant *C = ConstantArray::get(ATy, Elements);
1679 unsigned Slot = insertValue(C, Typ, Tab);
Chris Lattner389bd042004-12-09 06:19:44 +00001680 ResolveReferencesToConstant(C, Typ, Slot);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001681 if (Handler) Handler->handleConstantString(cast<ConstantArray>(C));
Reid Spencer060d25d2004-06-29 23:29:38 +00001682 }
Misha Brukman12c29d12003-09-22 23:38:23 +00001683}
1684
Reid Spencer04cde2c2004-07-04 11:33:49 +00001685/// Parse the constant pool.
Misha Brukman8a96c532005-04-21 21:44:41 +00001686void BytecodeReader::ParseConstantPool(ValueTable &Tab,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001687 TypeListTy &TypeTab,
Reid Spencer46b002c2004-07-11 17:28:43 +00001688 bool isFunction) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001689 if (Handler) Handler->handleGlobalConstantsBegin();
1690
1691 /// In LLVM 1.3 Type does not derive from Value so the types
1692 /// do not occupy a plane. Consequently, we read the types
1693 /// first in the constant pool.
Reid Spencer46b002c2004-07-11 17:28:43 +00001694 if (isFunction && !hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001695 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001696 ParseTypes(TypeTab, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001697 }
1698
Reid Spencer46b002c2004-07-11 17:28:43 +00001699 while (moreInBlock()) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001700 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001701 unsigned Typ = 0;
1702 bool isTypeType = read_typeid(Typ);
1703
1704 /// In LLVM 1.2 and before, Types were written to the
1705 /// bytecode file in the "Type Type" plane (#12).
1706 /// In 1.3 plane 12 is now the label plane. Handle this here.
Reid Spencer46b002c2004-07-11 17:28:43 +00001707 if (isTypeType) {
1708 ParseTypes(TypeTab, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001709 } else if (Typ == Type::VoidTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001710 /// Use of Type::VoidTyID is a misnomer. It actually means
1711 /// that the following plane is constant strings
Reid Spencer060d25d2004-06-29 23:29:38 +00001712 assert(&Tab == &ModuleValues && "Cannot read strings in functions!");
1713 ParseStringConstants(NumEntries, Tab);
1714 } else {
1715 for (unsigned i = 0; i < NumEntries; ++i) {
Chris Lattner3bc5a602006-01-25 23:08:15 +00001716 Value *V = ParseConstantPoolValue(Typ);
1717 assert(V && "ParseConstantPoolValue returned NULL!");
1718 unsigned Slot = insertValue(V, Typ, Tab);
Chris Lattner29b789b2003-11-19 17:27:18 +00001719
Reid Spencer060d25d2004-06-29 23:29:38 +00001720 // If we are reading a function constant table, make sure that we adjust
1721 // the slot number to be the real global constant number.
1722 //
1723 if (&Tab != &ModuleValues && Typ < ModuleValues.size() &&
1724 ModuleValues[Typ])
1725 Slot += ModuleValues[Typ]->size();
Chris Lattner3bc5a602006-01-25 23:08:15 +00001726 if (Constant *C = dyn_cast<Constant>(V))
1727 ResolveReferencesToConstant(C, Typ, Slot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001728 }
1729 }
1730 }
Chris Lattner02dce162004-12-04 05:28:27 +00001731
1732 // After we have finished parsing the constant pool, we had better not have
1733 // any dangling references left.
Reid Spencer3c391272004-12-04 22:19:53 +00001734 if (!ConstantFwdRefs.empty()) {
Reid Spencer3c391272004-12-04 22:19:53 +00001735 ConstantRefsType::const_iterator I = ConstantFwdRefs.begin();
Reid Spencer3c391272004-12-04 22:19:53 +00001736 Constant* missingConst = I->second;
Misha Brukman8a96c532005-04-21 21:44:41 +00001737 error(utostr(ConstantFwdRefs.size()) +
1738 " unresolved constant reference exist. First one is '" +
1739 missingConst->getName() + "' of type '" +
Chris Lattner389bd042004-12-09 06:19:44 +00001740 missingConst->getType()->getDescription() + "'.");
Reid Spencer3c391272004-12-04 22:19:53 +00001741 }
Chris Lattner02dce162004-12-04 05:28:27 +00001742
Reid Spencer060d25d2004-06-29 23:29:38 +00001743 checkPastBlockEnd("Constant Pool");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001744 if (Handler) Handler->handleGlobalConstantsEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001745}
Chris Lattner00950542001-06-06 20:29:01 +00001746
Reid Spencer04cde2c2004-07-04 11:33:49 +00001747/// Parse the contents of a function. Note that this function can be
1748/// called lazily by materializeFunction
1749/// @see materializeFunction
Reid Spencer46b002c2004-07-11 17:28:43 +00001750void BytecodeReader::ParseFunctionBody(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001751
1752 unsigned FuncSize = BlockEnd - At;
Chris Lattnere3869c82003-04-16 21:16:05 +00001753 GlobalValue::LinkageTypes Linkage = GlobalValue::ExternalLinkage;
1754
Reid Spencer060d25d2004-06-29 23:29:38 +00001755 unsigned LinkageType = read_vbr_uint();
Chris Lattnerc08912f2004-01-14 16:44:44 +00001756 switch (LinkageType) {
1757 case 0: Linkage = GlobalValue::ExternalLinkage; break;
1758 case 1: Linkage = GlobalValue::WeakLinkage; break;
1759 case 2: Linkage = GlobalValue::AppendingLinkage; break;
1760 case 3: Linkage = GlobalValue::InternalLinkage; break;
1761 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001762 default:
Reid Spencer24399722004-07-09 22:21:33 +00001763 error("Invalid linkage type for Function.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001764 Linkage = GlobalValue::InternalLinkage;
1765 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00001766 }
Chris Lattnerd23b1d32001-11-26 18:56:10 +00001767
Reid Spencer46b002c2004-07-11 17:28:43 +00001768 F->setLinkage(Linkage);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001769 if (Handler) Handler->handleFunctionBegin(F,FuncSize);
Chris Lattner00950542001-06-06 20:29:01 +00001770
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001771 // Keep track of how many basic blocks we have read in...
1772 unsigned BlockNum = 0;
Chris Lattner89e02532004-01-18 21:08:15 +00001773 bool InsertedArguments = false;
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001774
Reid Spencer060d25d2004-06-29 23:29:38 +00001775 BufPtr MyEnd = BlockEnd;
Reid Spencer46b002c2004-07-11 17:28:43 +00001776 while (At < MyEnd) {
Chris Lattner00950542001-06-06 20:29:01 +00001777 unsigned Type, Size;
Reid Spencer060d25d2004-06-29 23:29:38 +00001778 BufPtr OldAt = At;
1779 read_block(Type, Size);
Chris Lattner00950542001-06-06 20:29:01 +00001780
1781 switch (Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001782 case BytecodeFormat::ConstantPoolBlockID:
Chris Lattner89e02532004-01-18 21:08:15 +00001783 if (!InsertedArguments) {
1784 // Insert arguments into the value table before we parse the first basic
1785 // block in the function, but after we potentially read in the
1786 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001787 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001788 InsertedArguments = true;
1789 }
1790
Reid Spencer04cde2c2004-07-04 11:33:49 +00001791 ParseConstantPool(FunctionValues, FunctionTypes, true);
Chris Lattner00950542001-06-06 20:29:01 +00001792 break;
1793
Reid Spencerad89bd62004-07-25 18:07:36 +00001794 case BytecodeFormat::CompactionTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001795 ParseCompactionTable();
Chris Lattner89e02532004-01-18 21:08:15 +00001796 break;
1797
Chris Lattner00950542001-06-06 20:29:01 +00001798 case BytecodeFormat::BasicBlock: {
Chris Lattner89e02532004-01-18 21:08:15 +00001799 if (!InsertedArguments) {
1800 // Insert arguments into the value table before we parse the first basic
1801 // block in the function, but after we potentially read in the
1802 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001803 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001804 InsertedArguments = true;
1805 }
1806
Reid Spencer060d25d2004-06-29 23:29:38 +00001807 BasicBlock *BB = ParseBasicBlock(BlockNum++);
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001808 F->getBasicBlockList().push_back(BB);
Chris Lattner00950542001-06-06 20:29:01 +00001809 break;
1810 }
1811
Reid Spencerad89bd62004-07-25 18:07:36 +00001812 case BytecodeFormat::InstructionListBlockID: {
Chris Lattner89e02532004-01-18 21:08:15 +00001813 // Insert arguments into the value table before we parse the instruction
1814 // list for the function, but after we potentially read in the compaction
1815 // table.
1816 if (!InsertedArguments) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001817 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001818 InsertedArguments = true;
1819 }
1820
Misha Brukman8a96c532005-04-21 21:44:41 +00001821 if (BlockNum)
Reid Spencer24399722004-07-09 22:21:33 +00001822 error("Already parsed basic blocks!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001823 BlockNum = ParseInstructionList(F);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001824 break;
1825 }
1826
Reid Spencerad89bd62004-07-25 18:07:36 +00001827 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001828 ParseSymbolTable(F, &F->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00001829 break;
1830
1831 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00001832 At += Size;
Misha Brukman8a96c532005-04-21 21:44:41 +00001833 if (OldAt > At)
Reid Spencer24399722004-07-09 22:21:33 +00001834 error("Wrapped around reading bytecode.");
Chris Lattner00950542001-06-06 20:29:01 +00001835 break;
1836 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001837 BlockEnd = MyEnd;
Chris Lattner1d670cc2001-09-07 16:37:43 +00001838
Misha Brukman12c29d12003-09-22 23:38:23 +00001839 // Malformed bc file if read past end of block.
Reid Spencer060d25d2004-06-29 23:29:38 +00001840 align32();
Chris Lattner00950542001-06-06 20:29:01 +00001841 }
1842
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001843 // Make sure there were no references to non-existant basic blocks.
1844 if (BlockNum != ParsedBasicBlocks.size())
Reid Spencer24399722004-07-09 22:21:33 +00001845 error("Illegal basic block operand reference");
Reid Spencer060d25d2004-06-29 23:29:38 +00001846
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001847 ParsedBasicBlocks.clear();
1848
Chris Lattner97330cf2003-10-09 23:10:14 +00001849 // Resolve forward references. Replace any uses of a forward reference value
1850 // with the real value.
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001851 while (!ForwardReferences.empty()) {
Chris Lattnerc4d69162004-12-09 04:51:50 +00001852 std::map<std::pair<unsigned,unsigned>, Value*>::iterator
1853 I = ForwardReferences.begin();
1854 Value *V = getValue(I->first.first, I->first.second, false);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001855 Value *PlaceHolder = I->second;
Chris Lattnerc4d69162004-12-09 04:51:50 +00001856 PlaceHolder->replaceAllUsesWith(V);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001857 ForwardReferences.erase(I);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001858 delete PlaceHolder;
Chris Lattner6e448022003-10-08 21:51:46 +00001859 }
Chris Lattner00950542001-06-06 20:29:01 +00001860
Reid Spencere2a5fb02006-01-27 11:49:27 +00001861 // If upgraded intrinsic functions were detected during reading of the
1862 // module information, then we need to look for instructions that need to
1863 // be upgraded. This can't be done while the instructions are read in because
1864 // additional instructions inserted mess up the slot numbering.
1865 if (!upgradedFunctions.empty()) {
1866 for (Function::iterator BI = F->begin(), BE = F->end(); BI != BE; ++BI)
1867 for (BasicBlock::iterator II = BI->begin(), IE = BI->end();
Jim Laskeyf4321a32006-03-13 13:07:37 +00001868 II != IE;)
1869 if (CallInst* CI = dyn_cast<CallInst>(II++)) {
Reid Spencere2a5fb02006-01-27 11:49:27 +00001870 std::map<Function*,Function*>::iterator FI =
1871 upgradedFunctions.find(CI->getCalledFunction());
Chris Lattnerbad08002006-03-02 23:59:12 +00001872 if (FI != upgradedFunctions.end())
1873 UpgradeIntrinsicCall(CI, FI->second);
Reid Spencere2a5fb02006-01-27 11:49:27 +00001874 }
1875 }
1876
Misha Brukman12c29d12003-09-22 23:38:23 +00001877 // Clear out function-level types...
Reid Spencer060d25d2004-06-29 23:29:38 +00001878 FunctionTypes.clear();
1879 CompactionTypes.clear();
1880 CompactionValues.clear();
1881 freeTable(FunctionValues);
1882
Reid Spencer04cde2c2004-07-04 11:33:49 +00001883 if (Handler) Handler->handleFunctionEnd(F);
Chris Lattner00950542001-06-06 20:29:01 +00001884}
1885
Reid Spencer04cde2c2004-07-04 11:33:49 +00001886/// This function parses LLVM functions lazily. It obtains the type of the
1887/// function and records where the body of the function is in the bytecode
Misha Brukman8a96c532005-04-21 21:44:41 +00001888/// buffer. The caller can then use the ParseNextFunction and
Reid Spencer04cde2c2004-07-04 11:33:49 +00001889/// ParseAllFunctionBodies to get handler events for the functions.
Reid Spencer060d25d2004-06-29 23:29:38 +00001890void BytecodeReader::ParseFunctionLazily() {
1891 if (FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00001892 error("FunctionSignatureList empty!");
Chris Lattner89e02532004-01-18 21:08:15 +00001893
Reid Spencer060d25d2004-06-29 23:29:38 +00001894 Function *Func = FunctionSignatureList.back();
1895 FunctionSignatureList.pop_back();
Chris Lattner24102432004-01-18 22:35:34 +00001896
Reid Spencer060d25d2004-06-29 23:29:38 +00001897 // Save the information for future reading of the function
1898 LazyFunctionLoadMap[Func] = LazyFunctionInfo(BlockStart, BlockEnd);
Chris Lattner89e02532004-01-18 21:08:15 +00001899
Misha Brukmana3e6ad62004-11-14 21:02:55 +00001900 // This function has a body but it's not loaded so it appears `External'.
1901 // Mark it as a `Ghost' instead to notify the users that it has a body.
1902 Func->setLinkage(GlobalValue::GhostLinkage);
1903
Reid Spencer060d25d2004-06-29 23:29:38 +00001904 // Pretend we've `parsed' this function
1905 At = BlockEnd;
1906}
Chris Lattner89e02532004-01-18 21:08:15 +00001907
Misha Brukman8a96c532005-04-21 21:44:41 +00001908/// The ParserFunction method lazily parses one function. Use this method to
1909/// casue the parser to parse a specific function in the module. Note that
1910/// this will remove the function from what is to be included by
Reid Spencer04cde2c2004-07-04 11:33:49 +00001911/// ParseAllFunctionBodies.
1912/// @see ParseAllFunctionBodies
1913/// @see ParseBytecode
Reid Spencer060d25d2004-06-29 23:29:38 +00001914void BytecodeReader::ParseFunction(Function* Func) {
1915 // Find {start, end} pointers and slot in the map. If not there, we're done.
1916 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.find(Func);
Chris Lattner89e02532004-01-18 21:08:15 +00001917
Reid Spencer060d25d2004-06-29 23:29:38 +00001918 // Make sure we found it
Reid Spencer46b002c2004-07-11 17:28:43 +00001919 if (Fi == LazyFunctionLoadMap.end()) {
Reid Spencer24399722004-07-09 22:21:33 +00001920 error("Unrecognized function of type " + Func->getType()->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00001921 return;
Chris Lattner89e02532004-01-18 21:08:15 +00001922 }
1923
Reid Spencer060d25d2004-06-29 23:29:38 +00001924 BlockStart = At = Fi->second.Buf;
1925 BlockEnd = Fi->second.EndBuf;
Reid Spencer24399722004-07-09 22:21:33 +00001926 assert(Fi->first == Func && "Found wrong function?");
Reid Spencer060d25d2004-06-29 23:29:38 +00001927
1928 LazyFunctionLoadMap.erase(Fi);
1929
Reid Spencer46b002c2004-07-11 17:28:43 +00001930 this->ParseFunctionBody(Func);
Chris Lattner89e02532004-01-18 21:08:15 +00001931}
1932
Reid Spencer04cde2c2004-07-04 11:33:49 +00001933/// The ParseAllFunctionBodies method parses through all the previously
1934/// unparsed functions in the bytecode file. If you want to completely parse
1935/// a bytecode file, this method should be called after Parsebytecode because
1936/// Parsebytecode only records the locations in the bytecode file of where
1937/// the function definitions are located. This function uses that information
1938/// to materialize the functions.
1939/// @see ParseBytecode
Reid Spencer060d25d2004-06-29 23:29:38 +00001940void BytecodeReader::ParseAllFunctionBodies() {
1941 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.begin();
1942 LazyFunctionMap::iterator Fe = LazyFunctionLoadMap.end();
Chris Lattner89e02532004-01-18 21:08:15 +00001943
Reid Spencer46b002c2004-07-11 17:28:43 +00001944 while (Fi != Fe) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001945 Function* Func = Fi->first;
1946 BlockStart = At = Fi->second.Buf;
1947 BlockEnd = Fi->second.EndBuf;
Chris Lattnerb52f1c22005-02-13 17:48:18 +00001948 ParseFunctionBody(Func);
Reid Spencer060d25d2004-06-29 23:29:38 +00001949 ++Fi;
1950 }
Chris Lattnerb52f1c22005-02-13 17:48:18 +00001951 LazyFunctionLoadMap.clear();
Reid Spencere2a5fb02006-01-27 11:49:27 +00001952
Reid Spencer060d25d2004-06-29 23:29:38 +00001953}
Chris Lattner89e02532004-01-18 21:08:15 +00001954
Reid Spencer04cde2c2004-07-04 11:33:49 +00001955/// Parse the global type list
Reid Spencer060d25d2004-06-29 23:29:38 +00001956void BytecodeReader::ParseGlobalTypes() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001957 // Read the number of types
1958 unsigned NumEntries = read_vbr_uint();
Reid Spencer011bed52004-07-09 21:13:53 +00001959
1960 // Ignore the type plane identifier for types if the bc file is pre 1.3
1961 if (hasTypeDerivedFromValue)
1962 read_vbr_uint();
1963
Reid Spencer46b002c2004-07-11 17:28:43 +00001964 ParseTypes(ModuleTypes, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001965}
1966
Reid Spencer04cde2c2004-07-04 11:33:49 +00001967/// Parse the Global info (types, global vars, constants)
Reid Spencer060d25d2004-06-29 23:29:38 +00001968void BytecodeReader::ParseModuleGlobalInfo() {
1969
Reid Spencer04cde2c2004-07-04 11:33:49 +00001970 if (Handler) Handler->handleModuleGlobalsBegin();
Chris Lattner00950542001-06-06 20:29:01 +00001971
Chris Lattner404cddf2005-11-12 01:33:40 +00001972 // SectionID - If a global has an explicit section specified, this map
1973 // remembers the ID until we can translate it into a string.
1974 std::map<GlobalValue*, unsigned> SectionID;
1975
Chris Lattner70cc3392001-09-10 07:58:01 +00001976 // Read global variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00001977 unsigned VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00001978 while (VarType != Type::VoidTyID) { // List is terminated by Void
Chris Lattner9dd87702004-04-03 23:43:42 +00001979 // VarType Fields: bit0 = isConstant, bit1 = hasInitializer, bit2,3,4 =
1980 // Linkage, bit4+ = slot#
1981 unsigned SlotNo = VarType >> 5;
Reid Spencer46b002c2004-07-11 17:28:43 +00001982 if (sanitizeTypeId(SlotNo))
Reid Spencer24399722004-07-09 22:21:33 +00001983 error("Invalid type (type type) for global var!");
Chris Lattner9dd87702004-04-03 23:43:42 +00001984 unsigned LinkageID = (VarType >> 2) & 7;
Reid Spencer060d25d2004-06-29 23:29:38 +00001985 bool isConstant = VarType & 1;
Chris Lattnerce5e04e2005-11-06 08:23:17 +00001986 bool hasInitializer = (VarType & 2) != 0;
Chris Lattner8eb52dd2005-11-06 07:11:04 +00001987 unsigned Alignment = 0;
Chris Lattner404cddf2005-11-12 01:33:40 +00001988 unsigned GlobalSectionID = 0;
Chris Lattner8eb52dd2005-11-06 07:11:04 +00001989
1990 // An extension word is present when linkage = 3 (internal) and hasinit = 0.
1991 if (LinkageID == 3 && !hasInitializer) {
1992 unsigned ExtWord = read_vbr_uint();
1993 // The extension word has this format: bit 0 = has initializer, bit 1-3 =
1994 // linkage, bit 4-8 = alignment (log2), bits 10+ = future use.
1995 hasInitializer = ExtWord & 1;
1996 LinkageID = (ExtWord >> 1) & 7;
1997 Alignment = (1 << ((ExtWord >> 4) & 31)) >> 1;
Chris Lattner404cddf2005-11-12 01:33:40 +00001998
1999 if (ExtWord & (1 << 9)) // Has a section ID.
2000 GlobalSectionID = read_vbr_uint();
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002001 }
Chris Lattnere3869c82003-04-16 21:16:05 +00002002
Chris Lattnerce5e04e2005-11-06 08:23:17 +00002003 GlobalValue::LinkageTypes Linkage;
Chris Lattnerc08912f2004-01-14 16:44:44 +00002004 switch (LinkageID) {
Chris Lattnerc08912f2004-01-14 16:44:44 +00002005 case 0: Linkage = GlobalValue::ExternalLinkage; break;
2006 case 1: Linkage = GlobalValue::WeakLinkage; break;
2007 case 2: Linkage = GlobalValue::AppendingLinkage; break;
2008 case 3: Linkage = GlobalValue::InternalLinkage; break;
2009 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Misha Brukman8a96c532005-04-21 21:44:41 +00002010 default:
Reid Spencer24399722004-07-09 22:21:33 +00002011 error("Unknown linkage type: " + utostr(LinkageID));
Reid Spencer060d25d2004-06-29 23:29:38 +00002012 Linkage = GlobalValue::InternalLinkage;
2013 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00002014 }
2015
2016 const Type *Ty = getType(SlotNo);
Chris Lattnere73bd452005-11-06 07:43:39 +00002017 if (!Ty)
Reid Spencer24399722004-07-09 22:21:33 +00002018 error("Global has no type! SlotNo=" + utostr(SlotNo));
Reid Spencer060d25d2004-06-29 23:29:38 +00002019
Chris Lattnere73bd452005-11-06 07:43:39 +00002020 if (!isa<PointerType>(Ty))
Reid Spencer24399722004-07-09 22:21:33 +00002021 error("Global not a pointer type! Ty= " + Ty->getDescription());
Chris Lattner70cc3392001-09-10 07:58:01 +00002022
Chris Lattner52e20b02003-03-19 20:54:26 +00002023 const Type *ElTy = cast<PointerType>(Ty)->getElementType();
Chris Lattnerd70684f2001-09-18 04:01:05 +00002024
Chris Lattner70cc3392001-09-10 07:58:01 +00002025 // Create the global variable...
Reid Spencer060d25d2004-06-29 23:29:38 +00002026 GlobalVariable *GV = new GlobalVariable(ElTy, isConstant, Linkage,
Chris Lattner52e20b02003-03-19 20:54:26 +00002027 0, "", TheModule);
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002028 GV->setAlignment(Alignment);
Chris Lattner29b789b2003-11-19 17:27:18 +00002029 insertValue(GV, SlotNo, ModuleValues);
Chris Lattner05950c32001-10-13 06:47:01 +00002030
Chris Lattner404cddf2005-11-12 01:33:40 +00002031 if (GlobalSectionID != 0)
2032 SectionID[GV] = GlobalSectionID;
2033
Reid Spencer060d25d2004-06-29 23:29:38 +00002034 unsigned initSlot = 0;
Misha Brukman8a96c532005-04-21 21:44:41 +00002035 if (hasInitializer) {
Reid Spencer060d25d2004-06-29 23:29:38 +00002036 initSlot = read_vbr_uint();
2037 GlobalInits.push_back(std::make_pair(GV, initSlot));
2038 }
2039
2040 // Notify handler about the global value.
Chris Lattner4a242b32004-10-14 01:39:18 +00002041 if (Handler)
2042 Handler->handleGlobalVariable(ElTy, isConstant, Linkage, SlotNo,initSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00002043
2044 // Get next item
2045 VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00002046 }
2047
Chris Lattner52e20b02003-03-19 20:54:26 +00002048 // Read the function objects for all of the functions that are coming
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002049 unsigned FnSignature = read_vbr_uint();
Reid Spencer24399722004-07-09 22:21:33 +00002050
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002051 if (hasNoFlagsForFunctions)
2052 FnSignature = (FnSignature << 5) + 1;
2053
2054 // List is terminated by VoidTy.
Chris Lattnere73bd452005-11-06 07:43:39 +00002055 while (((FnSignature & (~0U >> 1)) >> 5) != Type::VoidTyID) {
2056 const Type *Ty = getType((FnSignature & (~0U >> 1)) >> 5);
Chris Lattner927b1852003-10-09 20:22:47 +00002057 if (!isa<PointerType>(Ty) ||
Reid Spencer060d25d2004-06-29 23:29:38 +00002058 !isa<FunctionType>(cast<PointerType>(Ty)->getElementType())) {
Misha Brukman8a96c532005-04-21 21:44:41 +00002059 error("Function not a pointer to function type! Ty = " +
Reid Spencer46b002c2004-07-11 17:28:43 +00002060 Ty->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00002061 }
Chris Lattner8cdc6b72002-10-23 00:51:54 +00002062
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002063 // We create functions by passing the underlying FunctionType to create...
Misha Brukman8a96c532005-04-21 21:44:41 +00002064 const FunctionType* FTy =
Reid Spencer060d25d2004-06-29 23:29:38 +00002065 cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
Chris Lattner00950542001-06-06 20:29:01 +00002066
Chris Lattner18549c22004-11-15 21:43:03 +00002067 // Insert the place holder.
Chris Lattner404cddf2005-11-12 01:33:40 +00002068 Function *Func = new Function(FTy, GlobalValue::ExternalLinkage,
Reid Spencer04cde2c2004-07-04 11:33:49 +00002069 "", TheModule);
Reid Spencere1e96c02006-01-19 07:02:16 +00002070
Chris Lattnere73bd452005-11-06 07:43:39 +00002071 insertValue(Func, (FnSignature & (~0U >> 1)) >> 5, ModuleValues);
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002072
2073 // Flags are not used yet.
Chris Lattner97fbc502004-11-15 22:38:52 +00002074 unsigned Flags = FnSignature & 31;
Chris Lattner00950542001-06-06 20:29:01 +00002075
Chris Lattner97fbc502004-11-15 22:38:52 +00002076 // Save this for later so we know type of lazily instantiated functions.
2077 // Note that known-external functions do not have FunctionInfo blocks, so we
2078 // do not add them to the FunctionSignatureList.
2079 if ((Flags & (1 << 4)) == 0)
2080 FunctionSignatureList.push_back(Func);
Chris Lattner52e20b02003-03-19 20:54:26 +00002081
Chris Lattnere73bd452005-11-06 07:43:39 +00002082 // Get the calling convention from the low bits.
2083 unsigned CC = Flags & 15;
2084 unsigned Alignment = 0;
2085 if (FnSignature & (1 << 31)) { // Has extension word?
2086 unsigned ExtWord = read_vbr_uint();
2087 Alignment = (1 << (ExtWord & 31)) >> 1;
2088 CC |= ((ExtWord >> 5) & 15) << 4;
Chris Lattner404cddf2005-11-12 01:33:40 +00002089
2090 if (ExtWord & (1 << 10)) // Has a section ID.
2091 SectionID[Func] = read_vbr_uint();
Chris Lattnere73bd452005-11-06 07:43:39 +00002092 }
2093
Chris Lattner54b369e2005-11-06 07:46:13 +00002094 Func->setCallingConv(CC-1);
Chris Lattnere73bd452005-11-06 07:43:39 +00002095 Func->setAlignment(Alignment);
Chris Lattner479ffeb2005-05-06 20:42:57 +00002096
Reid Spencer04cde2c2004-07-04 11:33:49 +00002097 if (Handler) Handler->handleFunctionDeclaration(Func);
Reid Spencer060d25d2004-06-29 23:29:38 +00002098
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002099 // Get the next function signature.
2100 FnSignature = read_vbr_uint();
2101 if (hasNoFlagsForFunctions)
2102 FnSignature = (FnSignature << 5) + 1;
Chris Lattner00950542001-06-06 20:29:01 +00002103 }
2104
Misha Brukman8a96c532005-04-21 21:44:41 +00002105 // Now that the function signature list is set up, reverse it so that we can
Chris Lattner74734132002-08-17 22:01:27 +00002106 // remove elements efficiently from the back of the vector.
2107 std::reverse(FunctionSignatureList.begin(), FunctionSignatureList.end());
Chris Lattner00950542001-06-06 20:29:01 +00002108
Chris Lattner404cddf2005-11-12 01:33:40 +00002109 /// SectionNames - This contains the list of section names encoded in the
2110 /// moduleinfoblock. Functions and globals with an explicit section index
2111 /// into this to get their section name.
2112 std::vector<std::string> SectionNames;
2113
2114 if (hasInconsistentModuleGlobalInfo) {
2115 align32();
2116 } else if (!hasNoDependentLibraries) {
2117 // If this bytecode format has dependent library information in it, read in
2118 // the number of dependent library items that follow.
Reid Spencerad89bd62004-07-25 18:07:36 +00002119 unsigned num_dep_libs = read_vbr_uint();
2120 std::string dep_lib;
Chris Lattner404cddf2005-11-12 01:33:40 +00002121 while (num_dep_libs--) {
Reid Spencerad89bd62004-07-25 18:07:36 +00002122 dep_lib = read_str();
Reid Spencerada16182004-07-25 21:36:26 +00002123 TheModule->addLibrary(dep_lib);
Reid Spencer5b472d92004-08-21 20:49:23 +00002124 if (Handler)
2125 Handler->handleDependentLibrary(dep_lib);
Reid Spencerad89bd62004-07-25 18:07:36 +00002126 }
2127
Chris Lattner404cddf2005-11-12 01:33:40 +00002128 // Read target triple and place into the module.
Reid Spencerad89bd62004-07-25 18:07:36 +00002129 std::string triple = read_str();
2130 TheModule->setTargetTriple(triple);
Reid Spencer5b472d92004-08-21 20:49:23 +00002131 if (Handler)
2132 Handler->handleTargetTriple(triple);
Chris Lattner404cddf2005-11-12 01:33:40 +00002133
Chris Lattner7e6db762006-01-23 23:43:17 +00002134 if (!hasAlignment && At != BlockEnd) {
Chris Lattner404cddf2005-11-12 01:33:40 +00002135 // If the file has section info in it, read the section names now.
2136 unsigned NumSections = read_vbr_uint();
2137 while (NumSections--)
2138 SectionNames.push_back(read_str());
2139 }
Chris Lattner7e6db762006-01-23 23:43:17 +00002140
2141 // If the file has module-level inline asm, read it now.
2142 if (!hasAlignment && At != BlockEnd)
Chris Lattner66316012006-01-24 04:14:29 +00002143 TheModule->setModuleInlineAsm(read_str());
Reid Spencerad89bd62004-07-25 18:07:36 +00002144 }
2145
Chris Lattner404cddf2005-11-12 01:33:40 +00002146 // If any globals are in specified sections, assign them now.
2147 for (std::map<GlobalValue*, unsigned>::iterator I = SectionID.begin(), E =
2148 SectionID.end(); I != E; ++I)
2149 if (I->second) {
2150 if (I->second > SectionID.size())
2151 error("SectionID out of range for global!");
2152 I->first->setSection(SectionNames[I->second-1]);
2153 }
Reid Spencerad89bd62004-07-25 18:07:36 +00002154
Chris Lattner00950542001-06-06 20:29:01 +00002155 // This is for future proofing... in the future extra fields may be added that
2156 // we don't understand, so we transparently ignore them.
2157 //
Reid Spencer060d25d2004-06-29 23:29:38 +00002158 At = BlockEnd;
2159
Reid Spencer04cde2c2004-07-04 11:33:49 +00002160 if (Handler) Handler->handleModuleGlobalsEnd();
Chris Lattner00950542001-06-06 20:29:01 +00002161}
2162
Reid Spencer04cde2c2004-07-04 11:33:49 +00002163/// Parse the version information and decode it by setting flags on the
2164/// Reader that enable backward compatibility of the reader.
Reid Spencer060d25d2004-06-29 23:29:38 +00002165void BytecodeReader::ParseVersionInfo() {
2166 unsigned Version = read_vbr_uint();
Chris Lattner036b8aa2003-03-06 17:55:45 +00002167
2168 // Unpack version number: low four bits are for flags, top bits = version
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002169 Module::Endianness Endianness;
2170 Module::PointerSize PointerSize;
2171 Endianness = (Version & 1) ? Module::BigEndian : Module::LittleEndian;
2172 PointerSize = (Version & 2) ? Module::Pointer64 : Module::Pointer32;
2173
2174 bool hasNoEndianness = Version & 4;
2175 bool hasNoPointerSize = Version & 8;
Misha Brukman8a96c532005-04-21 21:44:41 +00002176
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002177 RevisionNum = Version >> 4;
Chris Lattnere3869c82003-04-16 21:16:05 +00002178
2179 // Default values for the current bytecode version
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002180 hasInconsistentModuleGlobalInfo = false;
Chris Lattner80b97342004-01-17 23:25:43 +00002181 hasExplicitPrimitiveZeros = false;
Chris Lattner5fa428f2004-04-05 01:27:26 +00002182 hasRestrictedGEPTypes = false;
Reid Spencer04cde2c2004-07-04 11:33:49 +00002183 hasTypeDerivedFromValue = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00002184 hasLongBlockHeaders = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00002185 has32BitTypes = false;
2186 hasNoDependentLibraries = false;
Reid Spencer38d54be2004-08-17 07:45:14 +00002187 hasAlignment = false;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002188 hasNoUndefValue = false;
2189 hasNoFlagsForFunctions = false;
2190 hasNoUnreachableInst = false;
Chris Lattner036b8aa2003-03-06 17:55:45 +00002191
2192 switch (RevisionNum) {
Reid Spencer5b472d92004-08-21 20:49:23 +00002193 case 0: // LLVM 1.0, 1.1 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00002194 // Base LLVM 1.0 bytecode format.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002195 hasInconsistentModuleGlobalInfo = true;
Chris Lattner80b97342004-01-17 23:25:43 +00002196 hasExplicitPrimitiveZeros = true;
Reid Spencer04cde2c2004-07-04 11:33:49 +00002197
Chris Lattner80b97342004-01-17 23:25:43 +00002198 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002199
2200 case 1: // LLVM 1.2 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00002201 // LLVM 1.2 added explicit support for emitting strings efficiently.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002202
2203 // Also, it fixed the problem where the size of the ModuleGlobalInfo block
2204 // included the size for the alignment at the end, where the rest of the
2205 // blocks did not.
Chris Lattner5fa428f2004-04-05 01:27:26 +00002206
2207 // LLVM 1.2 and before required that GEP indices be ubyte constants for
2208 // structures and longs for sequential types.
2209 hasRestrictedGEPTypes = true;
2210
Reid Spencer04cde2c2004-07-04 11:33:49 +00002211 // LLVM 1.2 and before had the Type class derive from Value class. This
2212 // changed in release 1.3 and consequently LLVM 1.3 bytecode files are
Misha Brukman8a96c532005-04-21 21:44:41 +00002213 // written differently because Types can no longer be part of the
Reid Spencer04cde2c2004-07-04 11:33:49 +00002214 // type planes for Values.
2215 hasTypeDerivedFromValue = true;
2216
Chris Lattner5fa428f2004-04-05 01:27:26 +00002217 // FALL THROUGH
Misha Brukman8a96c532005-04-21 21:44:41 +00002218
Reid Spencer5b472d92004-08-21 20:49:23 +00002219 case 2: // 1.2.5 (Not Released)
Reid Spencerad89bd62004-07-25 18:07:36 +00002220
Reid Spencer5b472d92004-08-21 20:49:23 +00002221 // LLVM 1.2 and earlier had two-word block headers. This is a bit wasteful,
Chris Lattner4a242b32004-10-14 01:39:18 +00002222 // especially for small files where the 8 bytes per block is a large
2223 // fraction of the total block size. In LLVM 1.3, the block type and length
2224 // are compressed into a single 32-bit unsigned integer. 27 bits for length,
2225 // 5 bits for block type.
Reid Spencerad89bd62004-07-25 18:07:36 +00002226 hasLongBlockHeaders = true;
2227
Reid Spencer5b472d92004-08-21 20:49:23 +00002228 // LLVM 1.2 and earlier wrote type slot numbers as vbr_uint32. In LLVM 1.3
Chris Lattner4a242b32004-10-14 01:39:18 +00002229 // this has been reduced to vbr_uint24. It shouldn't make much difference
2230 // since we haven't run into a module with > 24 million types, but for
2231 // safety the 24-bit restriction has been enforced in 1.3 to free some bits
2232 // in various places and to ensure consistency.
Reid Spencerad89bd62004-07-25 18:07:36 +00002233 has32BitTypes = true;
2234
Misha Brukman8a96c532005-04-21 21:44:41 +00002235 // LLVM 1.2 and earlier did not provide a target triple nor a list of
Reid Spencer5b472d92004-08-21 20:49:23 +00002236 // libraries on which the bytecode is dependent. LLVM 1.3 provides these
2237 // features, for use in future versions of LLVM.
Reid Spencerad89bd62004-07-25 18:07:36 +00002238 hasNoDependentLibraries = true;
2239
2240 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002241
2242 case 3: // LLVM 1.3 (Released)
2243 // LLVM 1.3 and earlier caused alignment bytes to be written on some block
Misha Brukman8a96c532005-04-21 21:44:41 +00002244 // boundaries and at the end of some strings. In extreme cases (e.g. lots
Reid Spencer5b472d92004-08-21 20:49:23 +00002245 // of GEP references to a constant array), this can increase the file size
2246 // by 30% or more. In version 1.4 alignment is done away with completely.
Reid Spencer38d54be2004-08-17 07:45:14 +00002247 hasAlignment = true;
2248
2249 // FALL THROUGH
Misha Brukman8a96c532005-04-21 21:44:41 +00002250
Reid Spencer5b472d92004-08-21 20:49:23 +00002251 case 4: // 1.3.1 (Not Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002252 // In version 4, we did not support the 'undef' constant.
2253 hasNoUndefValue = true;
2254
2255 // In version 4 and above, we did not include space for flags for functions
2256 // in the module info block.
2257 hasNoFlagsForFunctions = true;
2258
2259 // In version 4 and above, we did not include the 'unreachable' instruction
2260 // in the opcode numbering in the bytecode file.
2261 hasNoUnreachableInst = true;
Chris Lattner2e7ec122004-10-16 18:56:02 +00002262 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002263
2264 // FALL THROUGH
2265
Chris Lattnerdee199f2005-05-06 22:34:01 +00002266 case 5: // 1.4 (Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002267 break;
2268
Chris Lattner036b8aa2003-03-06 17:55:45 +00002269 default:
Reid Spencer24399722004-07-09 22:21:33 +00002270 error("Unknown bytecode version number: " + itostr(RevisionNum));
Chris Lattner036b8aa2003-03-06 17:55:45 +00002271 }
2272
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002273 if (hasNoEndianness) Endianness = Module::AnyEndianness;
2274 if (hasNoPointerSize) PointerSize = Module::AnyPointerSize;
Chris Lattner76e38962003-04-22 18:15:10 +00002275
Brian Gaekefe2102b2004-07-14 20:33:13 +00002276 TheModule->setEndianness(Endianness);
2277 TheModule->setPointerSize(PointerSize);
2278
Reid Spencer46b002c2004-07-11 17:28:43 +00002279 if (Handler) Handler->handleVersionInfo(RevisionNum, Endianness, PointerSize);
Chris Lattner036b8aa2003-03-06 17:55:45 +00002280}
2281
Reid Spencer04cde2c2004-07-04 11:33:49 +00002282/// Parse a whole module.
Reid Spencer060d25d2004-06-29 23:29:38 +00002283void BytecodeReader::ParseModule() {
Chris Lattner00950542001-06-06 20:29:01 +00002284 unsigned Type, Size;
Chris Lattner00950542001-06-06 20:29:01 +00002285
Reid Spencer060d25d2004-06-29 23:29:38 +00002286 FunctionSignatureList.clear(); // Just in case...
Chris Lattner00950542001-06-06 20:29:01 +00002287
2288 // Read into instance variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00002289 ParseVersionInfo();
Reid Spencerad89bd62004-07-25 18:07:36 +00002290 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002291
Reid Spencer060d25d2004-06-29 23:29:38 +00002292 bool SeenModuleGlobalInfo = false;
2293 bool SeenGlobalTypePlane = false;
2294 BufPtr MyEnd = BlockEnd;
2295 while (At < MyEnd) {
2296 BufPtr OldAt = At;
2297 read_block(Type, Size);
2298
Chris Lattner00950542001-06-06 20:29:01 +00002299 switch (Type) {
Reid Spencer060d25d2004-06-29 23:29:38 +00002300
Reid Spencerad89bd62004-07-25 18:07:36 +00002301 case BytecodeFormat::GlobalTypePlaneBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002302 if (SeenGlobalTypePlane)
Reid Spencer24399722004-07-09 22:21:33 +00002303 error("Two GlobalTypePlane Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002304
Reid Spencer5b472d92004-08-21 20:49:23 +00002305 if (Size > 0)
2306 ParseGlobalTypes();
Reid Spencer060d25d2004-06-29 23:29:38 +00002307 SeenGlobalTypePlane = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002308 break;
2309
Misha Brukman8a96c532005-04-21 21:44:41 +00002310 case BytecodeFormat::ModuleGlobalInfoBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002311 if (SeenModuleGlobalInfo)
Reid Spencer24399722004-07-09 22:21:33 +00002312 error("Two ModuleGlobalInfo Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002313 ParseModuleGlobalInfo();
2314 SeenModuleGlobalInfo = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002315 break;
2316
Reid Spencerad89bd62004-07-25 18:07:36 +00002317 case BytecodeFormat::ConstantPoolBlockID:
Reid Spencer04cde2c2004-07-04 11:33:49 +00002318 ParseConstantPool(ModuleValues, ModuleTypes,false);
Chris Lattner00950542001-06-06 20:29:01 +00002319 break;
2320
Reid Spencerad89bd62004-07-25 18:07:36 +00002321 case BytecodeFormat::FunctionBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002322 ParseFunctionLazily();
Chris Lattner00950542001-06-06 20:29:01 +00002323 break;
Chris Lattner00950542001-06-06 20:29:01 +00002324
Reid Spencerad89bd62004-07-25 18:07:36 +00002325 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002326 ParseSymbolTable(0, &TheModule->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00002327 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00002328
Chris Lattner00950542001-06-06 20:29:01 +00002329 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00002330 At += Size;
2331 if (OldAt > At) {
Reid Spencer46b002c2004-07-11 17:28:43 +00002332 error("Unexpected Block of Type #" + utostr(Type) + " encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002333 }
Chris Lattner00950542001-06-06 20:29:01 +00002334 break;
2335 }
Reid Spencer060d25d2004-06-29 23:29:38 +00002336 BlockEnd = MyEnd;
2337 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002338 }
2339
Chris Lattner52e20b02003-03-19 20:54:26 +00002340 // After the module constant pool has been read, we can safely initialize
2341 // global variables...
2342 while (!GlobalInits.empty()) {
2343 GlobalVariable *GV = GlobalInits.back().first;
2344 unsigned Slot = GlobalInits.back().second;
2345 GlobalInits.pop_back();
2346
2347 // Look up the initializer value...
Chris Lattner29b789b2003-11-19 17:27:18 +00002348 // FIXME: Preserve this type ID!
Reid Spencer060d25d2004-06-29 23:29:38 +00002349
2350 const llvm::PointerType* GVType = GV->getType();
2351 unsigned TypeSlot = getTypeSlot(GVType->getElementType());
Chris Lattner93361992004-01-15 18:45:25 +00002352 if (Constant *CV = getConstantValue(TypeSlot, Slot)) {
Misha Brukman8a96c532005-04-21 21:44:41 +00002353 if (GV->hasInitializer())
Reid Spencer24399722004-07-09 22:21:33 +00002354 error("Global *already* has an initializer?!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00002355 if (Handler) Handler->handleGlobalInitializer(GV,CV);
Chris Lattner93361992004-01-15 18:45:25 +00002356 GV->setInitializer(CV);
Chris Lattner52e20b02003-03-19 20:54:26 +00002357 } else
Reid Spencer24399722004-07-09 22:21:33 +00002358 error("Cannot find initializer value.");
Chris Lattner52e20b02003-03-19 20:54:26 +00002359 }
2360
Chris Lattneraba5ff52005-05-05 20:57:00 +00002361 if (!ConstantFwdRefs.empty())
2362 error("Use of undefined constants in a module");
2363
Reid Spencer060d25d2004-06-29 23:29:38 +00002364 /// Make sure we pulled them all out. If we didn't then there's a declaration
2365 /// but a missing body. That's not allowed.
Misha Brukman12c29d12003-09-22 23:38:23 +00002366 if (!FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00002367 error("Function declared, but bytecode stream ended before definition");
Chris Lattner00950542001-06-06 20:29:01 +00002368}
2369
Reid Spencer04cde2c2004-07-04 11:33:49 +00002370/// This function completely parses a bytecode buffer given by the \p Buf
2371/// and \p Length parameters.
Misha Brukman8a96c532005-04-21 21:44:41 +00002372void BytecodeReader::ParseBytecode(BufPtr Buf, unsigned Length,
Reid Spencer5b472d92004-08-21 20:49:23 +00002373 const std::string &ModuleID) {
Misha Brukmane0dd0d42003-09-23 16:15:29 +00002374
Reid Spencer060d25d2004-06-29 23:29:38 +00002375 try {
Chris Lattner3af4b4f2004-11-30 16:58:18 +00002376 RevisionNum = 0;
Reid Spencer060d25d2004-06-29 23:29:38 +00002377 At = MemStart = BlockStart = Buf;
2378 MemEnd = BlockEnd = Buf + Length;
Misha Brukmane0dd0d42003-09-23 16:15:29 +00002379
Reid Spencer060d25d2004-06-29 23:29:38 +00002380 // Create the module
2381 TheModule = new Module(ModuleID);
Chris Lattner00950542001-06-06 20:29:01 +00002382
Reid Spencer04cde2c2004-07-04 11:33:49 +00002383 if (Handler) Handler->handleStart(TheModule, Length);
Reid Spencer060d25d2004-06-29 23:29:38 +00002384
Reid Spencerf0c977c2004-11-07 18:20:55 +00002385 // Read the four bytes of the signature.
2386 unsigned Sig = read_uint();
Reid Spencer17f52c52004-11-06 23:17:23 +00002387
Reid Spencerf0c977c2004-11-07 18:20:55 +00002388 // If this is a compressed file
2389 if (Sig == ('l' | ('l' << 8) | ('v' << 16) | ('c' << 24))) {
Reid Spencer17f52c52004-11-06 23:17:23 +00002390
Reid Spencerf0c977c2004-11-07 18:20:55 +00002391 // Invoke the decompression of the bytecode. Note that we have to skip the
2392 // file's magic number which is not part of the compressed block. Hence,
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002393 // the Buf+4 and Length-4. The result goes into decompressedBlock, a data
2394 // member for retention until BytecodeReader is destructed.
2395 unsigned decompressedLength = Compressor::decompressToNewBuffer(
2396 (char*)Buf+4,Length-4,decompressedBlock);
Reid Spencerf0c977c2004-11-07 18:20:55 +00002397
2398 // We must adjust the buffer pointers used by the bytecode reader to point
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002399 // into the new decompressed block. After decompression, the
2400 // decompressedBlock will point to a contiguous memory area that has
Reid Spencerf0c977c2004-11-07 18:20:55 +00002401 // the decompressed data.
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002402 At = MemStart = BlockStart = Buf = (BufPtr) decompressedBlock;
Reid Spencerf0c977c2004-11-07 18:20:55 +00002403 MemEnd = BlockEnd = Buf + decompressedLength;
Reid Spencer17f52c52004-11-06 23:17:23 +00002404
Reid Spencerf0c977c2004-11-07 18:20:55 +00002405 // else if this isn't a regular (uncompressed) bytecode file, then its
2406 // and error, generate that now.
2407 } else if (Sig != ('l' | ('l' << 8) | ('v' << 16) | ('m' << 24))) {
2408 error("Invalid bytecode signature: " + utohexstr(Sig));
Reid Spencer060d25d2004-06-29 23:29:38 +00002409 }
2410
Reid Spencer060d25d2004-06-29 23:29:38 +00002411 // Tell the handler we're starting a module
Reid Spencer04cde2c2004-07-04 11:33:49 +00002412 if (Handler) Handler->handleModuleBegin(ModuleID);
Reid Spencer060d25d2004-06-29 23:29:38 +00002413
Reid Spencerad89bd62004-07-25 18:07:36 +00002414 // Get the module block and size and verify. This is handled specially
2415 // because the module block/size is always written in long format. Other
2416 // blocks are written in short format so the read_block method is used.
Reid Spencer060d25d2004-06-29 23:29:38 +00002417 unsigned Type, Size;
Reid Spencerad89bd62004-07-25 18:07:36 +00002418 Type = read_uint();
2419 Size = read_uint();
2420 if (Type != BytecodeFormat::ModuleBlockID) {
Misha Brukman8a96c532005-04-21 21:44:41 +00002421 error("Expected Module Block! Type:" + utostr(Type) + ", Size:"
Reid Spencer46b002c2004-07-11 17:28:43 +00002422 + utostr(Size));
Reid Spencer060d25d2004-06-29 23:29:38 +00002423 }
Chris Lattner56bc8942004-09-27 16:59:06 +00002424
2425 // It looks like the darwin ranlib program is broken, and adds trailing
2426 // garbage to the end of some bytecode files. This hack allows the bc
2427 // reader to ignore trailing garbage on bytecode files.
2428 if (At + Size < MemEnd)
2429 MemEnd = BlockEnd = At+Size;
2430
2431 if (At + Size != MemEnd)
Reid Spencer24399722004-07-09 22:21:33 +00002432 error("Invalid Top Level Block Length! Type:" + utostr(Type)
Reid Spencer46b002c2004-07-11 17:28:43 +00002433 + ", Size:" + utostr(Size));
Reid Spencer060d25d2004-06-29 23:29:38 +00002434
2435 // Parse the module contents
2436 this->ParseModule();
2437
Reid Spencer060d25d2004-06-29 23:29:38 +00002438 // Check for missing functions
Reid Spencer46b002c2004-07-11 17:28:43 +00002439 if (hasFunctions())
Reid Spencer24399722004-07-09 22:21:33 +00002440 error("Function expected, but bytecode stream ended!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002441
Reid Spencere2a5fb02006-01-27 11:49:27 +00002442 // Look for intrinsic functions to upgrade, upgrade them, and save the
2443 // mapping from old function to new for use later when instructions are
2444 // converted.
2445 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
2446 FI != FE; ++FI)
2447 if (Function* newF = UpgradeIntrinsicFunction(FI)) {
Chris Lattnerbad08002006-03-02 23:59:12 +00002448 upgradedFunctions.insert(std::make_pair(FI, newF));
Reid Spencere2a5fb02006-01-27 11:49:27 +00002449 FI->setName("");
2450 }
2451
Reid Spencer5c15fe52004-07-05 00:57:50 +00002452 // Tell the handler we're done with the module
Misha Brukman8a96c532005-04-21 21:44:41 +00002453 if (Handler)
Reid Spencer5c15fe52004-07-05 00:57:50 +00002454 Handler->handleModuleEnd(ModuleID);
2455
2456 // Tell the handler we're finished the parse
Reid Spencer04cde2c2004-07-04 11:33:49 +00002457 if (Handler) Handler->handleFinish();
Reid Spencer060d25d2004-06-29 23:29:38 +00002458
Reid Spencer46b002c2004-07-11 17:28:43 +00002459 } catch (std::string& errstr) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00002460 if (Handler) Handler->handleError(errstr);
Reid Spencer060d25d2004-06-29 23:29:38 +00002461 freeState();
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002462 delete TheModule;
2463 TheModule = 0;
Chris Lattner3bdad692004-11-15 21:55:33 +00002464 if (decompressedBlock != 0 ) {
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002465 ::free(decompressedBlock);
Chris Lattner3bdad692004-11-15 21:55:33 +00002466 decompressedBlock = 0;
2467 }
Chris Lattnerb0b7c0d2003-09-26 14:44:52 +00002468 throw;
Reid Spencer060d25d2004-06-29 23:29:38 +00002469 } catch (...) {
2470 std::string msg("Unknown Exception Occurred");
Reid Spencer04cde2c2004-07-04 11:33:49 +00002471 if (Handler) Handler->handleError(msg);
Reid Spencer060d25d2004-06-29 23:29:38 +00002472 freeState();
2473 delete TheModule;
2474 TheModule = 0;
Chris Lattner3bdad692004-11-15 21:55:33 +00002475 if (decompressedBlock != 0) {
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002476 ::free(decompressedBlock);
Chris Lattner3bdad692004-11-15 21:55:33 +00002477 decompressedBlock = 0;
2478 }
Reid Spencer060d25d2004-06-29 23:29:38 +00002479 throw msg;
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002480 }
Chris Lattner00950542001-06-06 20:29:01 +00002481}
Reid Spencer060d25d2004-06-29 23:29:38 +00002482
2483//===----------------------------------------------------------------------===//
2484//=== Default Implementations of Handler Methods
2485//===----------------------------------------------------------------------===//
2486
2487BytecodeHandler::~BytecodeHandler() {}
Reid Spencer060d25d2004-06-29 23:29:38 +00002488