blob: 7b42fee9154bdf6428a74db351e73ff24c0631dd [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
Reid Spencer233fe722006-08-22 16:09:19 +000054inline void BytecodeReader::error(const std::string& err) {
55 ErrorMsg = err + " (Vers=" + itostr(RevisionNum) + ", Pos="
56 + itostr(At-MemStart) + ")";
57 longjmp(context,1);
Reid Spencer24399722004-07-09 22:21:33 +000058}
59
Reid Spencer060d25d2004-06-29 23:29:38 +000060//===----------------------------------------------------------------------===//
61// Bytecode Reading Methods
62//===----------------------------------------------------------------------===//
63
Reid Spencer04cde2c2004-07-04 11:33:49 +000064/// Determine if the current block being read contains any more data.
Reid Spencer060d25d2004-06-29 23:29:38 +000065inline bool BytecodeReader::moreInBlock() {
66 return At < BlockEnd;
Chris Lattner00950542001-06-06 20:29:01 +000067}
68
Reid Spencer04cde2c2004-07-04 11:33:49 +000069/// Throw an error if we've read past the end of the current block
Reid Spencer060d25d2004-06-29 23:29:38 +000070inline void BytecodeReader::checkPastBlockEnd(const char * block_name) {
Reid Spencer46b002c2004-07-11 17:28:43 +000071 if (At > BlockEnd)
Chris Lattnera79e7cc2004-10-16 18:18:16 +000072 error(std::string("Attempt to read past the end of ") + block_name +
73 " block.");
Reid Spencer060d25d2004-06-29 23:29:38 +000074}
Chris Lattner36392bc2003-10-08 21:18:57 +000075
Reid Spencer04cde2c2004-07-04 11:33:49 +000076/// Align the buffer position to a 32 bit boundary
Reid Spencer060d25d2004-06-29 23:29:38 +000077inline void BytecodeReader::align32() {
Reid Spencer38d54be2004-08-17 07:45:14 +000078 if (hasAlignment) {
79 BufPtr Save = At;
Jeff Cohen05ebc8d2006-01-25 17:18:50 +000080 At = (const unsigned char *)((intptr_t)(At+3) & (~3UL));
Misha Brukman8a96c532005-04-21 21:44:41 +000081 if (At > Save)
Reid Spencer38d54be2004-08-17 07:45:14 +000082 if (Handler) Handler->handleAlignment(At - Save);
Misha Brukman8a96c532005-04-21 21:44:41 +000083 if (At > BlockEnd)
Reid Spencer38d54be2004-08-17 07:45:14 +000084 error("Ran out of data while aligning!");
85 }
Reid Spencer060d25d2004-06-29 23:29:38 +000086}
87
Reid Spencer04cde2c2004-07-04 11:33:49 +000088/// Read a whole unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +000089inline unsigned BytecodeReader::read_uint() {
Misha Brukman8a96c532005-04-21 21:44:41 +000090 if (At+4 > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +000091 error("Ran out of data reading uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +000092 At += 4;
93 return At[-4] | (At[-3] << 8) | (At[-2] << 16) | (At[-1] << 24);
94}
95
Reid Spencer04cde2c2004-07-04 11:33:49 +000096/// Read a variable-bit-rate encoded unsigned integer
Reid Spencer060d25d2004-06-29 23:29:38 +000097inline unsigned BytecodeReader::read_vbr_uint() {
98 unsigned Shift = 0;
99 unsigned Result = 0;
100 BufPtr Save = At;
Misha Brukman8a96c532005-04-21 21:44:41 +0000101
Reid Spencer060d25d2004-06-29 23:29:38 +0000102 do {
Misha Brukman8a96c532005-04-21 21:44:41 +0000103 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000104 error("Ran out of data reading vbr_uint!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000105 Result |= (unsigned)((*At++) & 0x7F) << Shift;
106 Shift += 7;
107 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000108 if (Handler) Handler->handleVBR32(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000109 return Result;
110}
111
Reid Spencer04cde2c2004-07-04 11:33:49 +0000112/// Read a variable-bit-rate encoded unsigned 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000113inline uint64_t BytecodeReader::read_vbr_uint64() {
114 unsigned Shift = 0;
115 uint64_t Result = 0;
116 BufPtr Save = At;
Misha Brukman8a96c532005-04-21 21:44:41 +0000117
Reid Spencer060d25d2004-06-29 23:29:38 +0000118 do {
Misha Brukman8a96c532005-04-21 21:44:41 +0000119 if (At == BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000120 error("Ran out of data reading vbr_uint64!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000121 Result |= (uint64_t)((*At++) & 0x7F) << Shift;
122 Shift += 7;
123 } while (At[-1] & 0x80);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000124 if (Handler) Handler->handleVBR64(At-Save);
Reid Spencer060d25d2004-06-29 23:29:38 +0000125 return Result;
126}
127
Reid Spencer04cde2c2004-07-04 11:33:49 +0000128/// Read a variable-bit-rate encoded signed 64-bit integer.
Reid Spencer060d25d2004-06-29 23:29:38 +0000129inline int64_t BytecodeReader::read_vbr_int64() {
130 uint64_t R = read_vbr_uint64();
131 if (R & 1) {
132 if (R != 1)
133 return -(int64_t)(R >> 1);
134 else // There is no such thing as -0 with integers. "-0" really means
135 // 0x8000000000000000.
136 return 1LL << 63;
137 } else
138 return (int64_t)(R >> 1);
139}
140
Reid Spencer04cde2c2004-07-04 11:33:49 +0000141/// Read a pascal-style string (length followed by text)
Reid Spencer060d25d2004-06-29 23:29:38 +0000142inline std::string BytecodeReader::read_str() {
143 unsigned Size = read_vbr_uint();
144 const unsigned char *OldAt = At;
145 At += Size;
146 if (At > BlockEnd) // Size invalid?
Reid Spencer24399722004-07-09 22:21:33 +0000147 error("Ran out of data reading a string!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000148 return std::string((char*)OldAt, Size);
149}
150
Reid Spencer04cde2c2004-07-04 11:33:49 +0000151/// Read an arbitrary block of data
Reid Spencer060d25d2004-06-29 23:29:38 +0000152inline void BytecodeReader::read_data(void *Ptr, void *End) {
153 unsigned char *Start = (unsigned char *)Ptr;
154 unsigned Amount = (unsigned char *)End - Start;
Misha Brukman8a96c532005-04-21 21:44:41 +0000155 if (At+Amount > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000156 error("Ran out of data!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000157 std::copy(At, At+Amount, Start);
158 At += Amount;
159}
160
Reid Spencer46b002c2004-07-11 17:28:43 +0000161/// Read a float value in little-endian order
162inline void BytecodeReader::read_float(float& FloatVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000163 /// FIXME: This isn't optimal, it has size problems on some platforms
164 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000165 FloatVal = BitsToFloat(At[0] | (At[1] << 8) | (At[2] << 16) | (At[3] << 24));
Reid Spencerada16182004-07-25 21:36:26 +0000166 At+=sizeof(uint32_t);
Reid Spencer46b002c2004-07-11 17:28:43 +0000167}
168
169/// Read a double value in little-endian order
170inline void BytecodeReader::read_double(double& DoubleVal) {
Reid Spencerada16182004-07-25 21:36:26 +0000171 /// FIXME: This isn't optimal, it has size problems on some platforms
172 /// where FP is not IEEE.
Jim Laskeycb6682f2005-08-17 19:34:49 +0000173 DoubleVal = BitsToDouble((uint64_t(At[0]) << 0) | (uint64_t(At[1]) << 8) |
174 (uint64_t(At[2]) << 16) | (uint64_t(At[3]) << 24) |
175 (uint64_t(At[4]) << 32) | (uint64_t(At[5]) << 40) |
176 (uint64_t(At[6]) << 48) | (uint64_t(At[7]) << 56));
Reid Spencerada16182004-07-25 21:36:26 +0000177 At+=sizeof(uint64_t);
Reid Spencer46b002c2004-07-11 17:28:43 +0000178}
179
Reid Spencer04cde2c2004-07-04 11:33:49 +0000180/// Read a block header and obtain its type and size
Reid Spencer060d25d2004-06-29 23:29:38 +0000181inline void BytecodeReader::read_block(unsigned &Type, unsigned &Size) {
Reid Spencerad89bd62004-07-25 18:07:36 +0000182 if ( hasLongBlockHeaders ) {
183 Type = read_uint();
184 Size = read_uint();
185 switch (Type) {
Misha Brukman8a96c532005-04-21 21:44:41 +0000186 case BytecodeFormat::Reserved_DoNotUse :
Reid Spencerad89bd62004-07-25 18:07:36 +0000187 error("Reserved_DoNotUse used as Module Type?");
Reid Spencer5b472d92004-08-21 20:49:23 +0000188 Type = BytecodeFormat::ModuleBlockID; break;
Misha Brukman8a96c532005-04-21 21:44:41 +0000189 case BytecodeFormat::Module:
Reid Spencerad89bd62004-07-25 18:07:36 +0000190 Type = BytecodeFormat::ModuleBlockID; break;
191 case BytecodeFormat::Function:
192 Type = BytecodeFormat::FunctionBlockID; break;
193 case BytecodeFormat::ConstantPool:
194 Type = BytecodeFormat::ConstantPoolBlockID; break;
195 case BytecodeFormat::SymbolTable:
196 Type = BytecodeFormat::SymbolTableBlockID; break;
197 case BytecodeFormat::ModuleGlobalInfo:
198 Type = BytecodeFormat::ModuleGlobalInfoBlockID; break;
199 case BytecodeFormat::GlobalTypePlane:
200 Type = BytecodeFormat::GlobalTypePlaneBlockID; break;
201 case BytecodeFormat::InstructionList:
202 Type = BytecodeFormat::InstructionListBlockID; break;
203 case BytecodeFormat::CompactionTable:
204 Type = BytecodeFormat::CompactionTableBlockID; break;
205 case BytecodeFormat::BasicBlock:
206 /// This block type isn't used after version 1.1. However, we have to
207 /// still allow the value in case this is an old bc format file.
208 /// We just let its value creep thru.
209 break;
210 default:
Reid Spencer5b472d92004-08-21 20:49:23 +0000211 error("Invalid block id found: " + utostr(Type));
Reid Spencerad89bd62004-07-25 18:07:36 +0000212 break;
213 }
214 } else {
215 Size = read_uint();
216 Type = Size & 0x1F; // mask low order five bits
217 Size >>= 5; // get rid of five low order bits, leaving high 27
218 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000219 BlockStart = At;
Reid Spencer46b002c2004-07-11 17:28:43 +0000220 if (At + Size > BlockEnd)
Reid Spencer24399722004-07-09 22:21:33 +0000221 error("Attempt to size a block past end of memory");
Reid Spencer060d25d2004-06-29 23:29:38 +0000222 BlockEnd = At + Size;
Reid Spencer46b002c2004-07-11 17:28:43 +0000223 if (Handler) Handler->handleBlock(Type, BlockStart, Size);
Reid Spencer04cde2c2004-07-04 11:33:49 +0000224}
225
226
227/// In LLVM 1.2 and before, Types were derived from Value and so they were
228/// written as part of the type planes along with any other Value. In LLVM
229/// 1.3 this changed so that Type does not derive from Value. Consequently,
230/// the BytecodeReader's containers for Values can't contain Types because
231/// there's no inheritance relationship. This means that the "Type Type"
Misha Brukman8a96c532005-04-21 21:44:41 +0000232/// plane is defunct along with the Type::TypeTyID TypeID. In LLVM 1.3
233/// whenever a bytecode construct must have both types and values together,
Reid Spencer04cde2c2004-07-04 11:33:49 +0000234/// the types are always read/written first and then the Values. Furthermore
235/// since Type::TypeTyID no longer exists, its value (12) now corresponds to
236/// Type::LabelTyID. In order to overcome this we must "sanitize" all the
237/// type TypeIDs we encounter. For LLVM 1.3 bytecode files, there's no change.
238/// For LLVM 1.2 and before, this function will decrement the type id by
239/// one to account for the missing Type::TypeTyID enumerator if the value is
240/// larger than 12 (Type::LabelTyID). If the value is exactly 12, then this
241/// function returns true, otherwise false. This helps detect situations
242/// where the pre 1.3 bytecode is indicating that what follows is a type.
Misha Brukman8a96c532005-04-21 21:44:41 +0000243/// @returns true iff type id corresponds to pre 1.3 "type type"
Reid Spencer46b002c2004-07-11 17:28:43 +0000244inline bool BytecodeReader::sanitizeTypeId(unsigned &TypeId) {
245 if (hasTypeDerivedFromValue) { /// do nothing if 1.3 or later
246 if (TypeId == Type::LabelTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +0000247 TypeId = Type::VoidTyID; // sanitize it
248 return true; // indicate we got TypeTyID in pre 1.3 bytecode
Reid Spencer46b002c2004-07-11 17:28:43 +0000249 } else if (TypeId > Type::LabelTyID)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000250 --TypeId; // shift all planes down because type type plane is missing
251 }
252 return false;
253}
254
255/// Reads a vbr uint to read in a type id and does the necessary
256/// conversion on it by calling sanitizeTypeId.
257/// @returns true iff \p TypeId read corresponds to a pre 1.3 "type type"
258/// @see sanitizeTypeId
259inline bool BytecodeReader::read_typeid(unsigned &TypeId) {
260 TypeId = read_vbr_uint();
Reid Spencerad89bd62004-07-25 18:07:36 +0000261 if ( !has32BitTypes )
262 if ( TypeId == 0x00FFFFFF )
263 TypeId = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000264 return sanitizeTypeId(TypeId);
Reid Spencer060d25d2004-06-29 23:29:38 +0000265}
266
267//===----------------------------------------------------------------------===//
268// IR Lookup Methods
269//===----------------------------------------------------------------------===//
270
Reid Spencer04cde2c2004-07-04 11:33:49 +0000271/// Determine if a type id has an implicit null value
Reid Spencer46b002c2004-07-11 17:28:43 +0000272inline bool BytecodeReader::hasImplicitNull(unsigned TyID) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000273 if (!hasExplicitPrimitiveZeros)
Reid Spencer04cde2c2004-07-04 11:33:49 +0000274 return TyID != Type::LabelTyID && TyID != Type::VoidTyID;
Reid Spencer060d25d2004-06-29 23:29:38 +0000275 return TyID >= Type::FirstDerivedTyID;
276}
277
Reid Spencer04cde2c2004-07-04 11:33:49 +0000278/// Obtain a type given a typeid and account for things like compaction tables,
279/// function level vs module level, and the offsetting for the primitive types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000280const Type *BytecodeReader::getType(unsigned ID) {
Chris Lattner89e02532004-01-18 21:08:15 +0000281 if (ID < Type::FirstDerivedTyID)
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000282 if (const Type *T = Type::getPrimitiveType((Type::TypeID)ID))
Chris Lattner927b1852003-10-09 20:22:47 +0000283 return T; // Asked for a primitive type...
Chris Lattner36392bc2003-10-08 21:18:57 +0000284
285 // Otherwise, derived types need offset...
Chris Lattner89e02532004-01-18 21:08:15 +0000286 ID -= Type::FirstDerivedTyID;
287
Reid Spencer060d25d2004-06-29 23:29:38 +0000288 if (!CompactionTypes.empty()) {
289 if (ID >= CompactionTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000290 error("Type ID out of range for compaction table!");
Chris Lattner45b5dd22004-08-03 23:41:28 +0000291 return CompactionTypes[ID].first;
Chris Lattner89e02532004-01-18 21:08:15 +0000292 }
Chris Lattner36392bc2003-10-08 21:18:57 +0000293
294 // Is it a module-level type?
Reid Spencer46b002c2004-07-11 17:28:43 +0000295 if (ID < ModuleTypes.size())
296 return ModuleTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000297
Reid Spencer46b002c2004-07-11 17:28:43 +0000298 // Nope, is it a function-level type?
299 ID -= ModuleTypes.size();
300 if (ID < FunctionTypes.size())
301 return FunctionTypes[ID].get();
Chris Lattner36392bc2003-10-08 21:18:57 +0000302
Reid Spencer46b002c2004-07-11 17:28:43 +0000303 error("Illegal type reference!");
304 return Type::VoidTy;
Chris Lattner00950542001-06-06 20:29:01 +0000305}
306
Reid Spencer04cde2c2004-07-04 11:33:49 +0000307/// Get a sanitized type id. This just makes sure that the \p ID
308/// is both sanitized and not the "type type" of pre-1.3 bytecode.
309/// @see sanitizeTypeId
310inline const Type* BytecodeReader::getSanitizedType(unsigned& ID) {
Reid Spencer46b002c2004-07-11 17:28:43 +0000311 if (sanitizeTypeId(ID))
Reid Spencer24399722004-07-09 22:21:33 +0000312 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000313 return getType(ID);
314}
315
316/// This method just saves some coding. It uses read_typeid to read
Reid Spencer24399722004-07-09 22:21:33 +0000317/// in a sanitized type id, errors that its not the type type, and
Reid Spencer04cde2c2004-07-04 11:33:49 +0000318/// then calls getType to return the type value.
319inline const Type* BytecodeReader::readSanitizedType() {
320 unsigned ID;
Reid Spencer46b002c2004-07-11 17:28:43 +0000321 if (read_typeid(ID))
322 error("Invalid type id encountered");
Reid Spencer04cde2c2004-07-04 11:33:49 +0000323 return getType(ID);
324}
325
326/// Get the slot number associated with a type accounting for primitive
327/// types, compaction tables, and function level vs module level.
Reid Spencer060d25d2004-06-29 23:29:38 +0000328unsigned BytecodeReader::getTypeSlot(const Type *Ty) {
329 if (Ty->isPrimitiveType())
330 return Ty->getTypeID();
331
332 // Scan the compaction table for the type if needed.
333 if (!CompactionTypes.empty()) {
Chris Lattner45b5dd22004-08-03 23:41:28 +0000334 for (unsigned i = 0, e = CompactionTypes.size(); i != e; ++i)
335 if (CompactionTypes[i].first == Ty)
Misha Brukman8a96c532005-04-21 21:44:41 +0000336 return Type::FirstDerivedTyID + i;
Reid Spencer060d25d2004-06-29 23:29:38 +0000337
Chris Lattner45b5dd22004-08-03 23:41:28 +0000338 error("Couldn't find type specified in compaction table!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000339 }
340
341 // Check the function level types first...
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000342 TypeListTy::iterator I = std::find(FunctionTypes.begin(),
343 FunctionTypes.end(), Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +0000344
345 if (I != FunctionTypes.end())
Misha Brukman8a96c532005-04-21 21:44:41 +0000346 return Type::FirstDerivedTyID + ModuleTypes.size() +
Reid Spencer46b002c2004-07-11 17:28:43 +0000347 (&*I - &FunctionTypes[0]);
Reid Spencer060d25d2004-06-29 23:29:38 +0000348
Chris Lattnereebac5f2005-10-03 21:26:53 +0000349 // If we don't have our cache yet, build it now.
350 if (ModuleTypeIDCache.empty()) {
351 unsigned N = 0;
352 ModuleTypeIDCache.reserve(ModuleTypes.size());
353 for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end();
354 I != E; ++I, ++N)
355 ModuleTypeIDCache.push_back(std::make_pair(*I, N));
356
357 std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end());
358 }
359
360 // Binary search the cache for the entry.
361 std::vector<std::pair<const Type*, unsigned> >::iterator IT =
362 std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(),
363 std::make_pair(Ty, 0U));
364 if (IT == ModuleTypeIDCache.end() || IT->first != Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000365 error("Didn't find type in ModuleTypes.");
Chris Lattnereebac5f2005-10-03 21:26:53 +0000366
367 return Type::FirstDerivedTyID + IT->second;
Chris Lattner80b97342004-01-17 23:25:43 +0000368}
369
Reid Spencer04cde2c2004-07-04 11:33:49 +0000370/// This is just like getType, but when a compaction table is in use, it is
371/// ignored. It also ignores function level types.
372/// @see getType
Reid Spencer060d25d2004-06-29 23:29:38 +0000373const Type *BytecodeReader::getGlobalTableType(unsigned Slot) {
374 if (Slot < Type::FirstDerivedTyID) {
375 const Type *Ty = Type::getPrimitiveType((Type::TypeID)Slot);
Reid Spencer46b002c2004-07-11 17:28:43 +0000376 if (!Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000377 error("Not a primitive type ID?");
Reid Spencer060d25d2004-06-29 23:29:38 +0000378 return Ty;
379 }
380 Slot -= Type::FirstDerivedTyID;
381 if (Slot >= ModuleTypes.size())
Reid Spencer24399722004-07-09 22:21:33 +0000382 error("Illegal compaction table type reference!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000383 return ModuleTypes[Slot];
Chris Lattner52e20b02003-03-19 20:54:26 +0000384}
385
Reid Spencer04cde2c2004-07-04 11:33:49 +0000386/// This is just like getTypeSlot, but when a compaction table is in use, it
387/// is ignored. It also ignores function level types.
Reid Spencer060d25d2004-06-29 23:29:38 +0000388unsigned BytecodeReader::getGlobalTableTypeSlot(const Type *Ty) {
389 if (Ty->isPrimitiveType())
390 return Ty->getTypeID();
Chris Lattnereebac5f2005-10-03 21:26:53 +0000391
392 // If we don't have our cache yet, build it now.
393 if (ModuleTypeIDCache.empty()) {
394 unsigned N = 0;
395 ModuleTypeIDCache.reserve(ModuleTypes.size());
396 for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end();
397 I != E; ++I, ++N)
398 ModuleTypeIDCache.push_back(std::make_pair(*I, N));
399
400 std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end());
401 }
402
403 // Binary search the cache for the entry.
404 std::vector<std::pair<const Type*, unsigned> >::iterator IT =
405 std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(),
406 std::make_pair(Ty, 0U));
407 if (IT == ModuleTypeIDCache.end() || IT->first != Ty)
Reid Spencer24399722004-07-09 22:21:33 +0000408 error("Didn't find type in ModuleTypes.");
Chris Lattnereebac5f2005-10-03 21:26:53 +0000409
410 return Type::FirstDerivedTyID + IT->second;
Reid Spencer060d25d2004-06-29 23:29:38 +0000411}
412
Misha Brukman8a96c532005-04-21 21:44:41 +0000413/// Retrieve a value of a given type and slot number, possibly creating
414/// it if it doesn't already exist.
Reid Spencer060d25d2004-06-29 23:29:38 +0000415Value * BytecodeReader::getValue(unsigned type, unsigned oNum, bool Create) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +0000416 assert(type != Type::LabelTyID && "getValue() cannot get blocks!");
Chris Lattner00950542001-06-06 20:29:01 +0000417 unsigned Num = oNum;
Chris Lattner00950542001-06-06 20:29:01 +0000418
Chris Lattner89e02532004-01-18 21:08:15 +0000419 // If there is a compaction table active, it defines the low-level numbers.
420 // If not, the module values define the low-level numbers.
Reid Spencer060d25d2004-06-29 23:29:38 +0000421 if (CompactionValues.size() > type && !CompactionValues[type].empty()) {
422 if (Num < CompactionValues[type].size())
423 return CompactionValues[type][Num];
424 Num -= CompactionValues[type].size();
Chris Lattner89e02532004-01-18 21:08:15 +0000425 } else {
Reid Spencer060d25d2004-06-29 23:29:38 +0000426 // By default, the global type id is the type id passed in
Chris Lattner52f86d62004-01-20 00:54:06 +0000427 unsigned GlobalTyID = type;
Reid Spencer060d25d2004-06-29 23:29:38 +0000428
Chris Lattner45b5dd22004-08-03 23:41:28 +0000429 // If the type plane was compactified, figure out the global type ID by
430 // adding the derived type ids and the distance.
431 if (!CompactionTypes.empty() && type >= Type::FirstDerivedTyID)
432 GlobalTyID = CompactionTypes[type-Type::FirstDerivedTyID].second;
Chris Lattner00950542001-06-06 20:29:01 +0000433
Reid Spencer060d25d2004-06-29 23:29:38 +0000434 if (hasImplicitNull(GlobalTyID)) {
Chris Lattneraba5ff52005-05-05 20:57:00 +0000435 const Type *Ty = getType(type);
436 if (!isa<OpaqueType>(Ty)) {
437 if (Num == 0)
438 return Constant::getNullValue(Ty);
439 --Num;
440 }
Chris Lattner89e02532004-01-18 21:08:15 +0000441 }
442
Chris Lattner52f86d62004-01-20 00:54:06 +0000443 if (GlobalTyID < ModuleValues.size() && ModuleValues[GlobalTyID]) {
444 if (Num < ModuleValues[GlobalTyID]->size())
Reid Spencer04cde2c2004-07-04 11:33:49 +0000445 return ModuleValues[GlobalTyID]->getOperand(Num);
Chris Lattner52f86d62004-01-20 00:54:06 +0000446 Num -= ModuleValues[GlobalTyID]->size();
Chris Lattner89e02532004-01-18 21:08:15 +0000447 }
Chris Lattner52e20b02003-03-19 20:54:26 +0000448 }
449
Misha Brukman8a96c532005-04-21 21:44:41 +0000450 if (FunctionValues.size() > type &&
451 FunctionValues[type] &&
Reid Spencer060d25d2004-06-29 23:29:38 +0000452 Num < FunctionValues[type]->size())
453 return FunctionValues[type]->getOperand(Num);
Chris Lattner00950542001-06-06 20:29:01 +0000454
Chris Lattner74734132002-08-17 22:01:27 +0000455 if (!Create) return 0; // Do not create a placeholder?
Chris Lattner00950542001-06-06 20:29:01 +0000456
Reid Spencer551ccae2004-09-01 22:55:40 +0000457 // Did we already create a place holder?
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000458 std::pair<unsigned,unsigned> KeyValue(type, oNum);
Reid Spencer060d25d2004-06-29 23:29:38 +0000459 ForwardReferenceMap::iterator I = ForwardReferences.lower_bound(KeyValue);
Chris Lattner8eb10ce2003-10-09 06:05:40 +0000460 if (I != ForwardReferences.end() && I->first == KeyValue)
461 return I->second; // We have already created this placeholder
462
Reid Spencer551ccae2004-09-01 22:55:40 +0000463 // If the type exists (it should)
464 if (const Type* Ty = getType(type)) {
465 // Create the place holder
466 Value *Val = new Argument(Ty);
467 ForwardReferences.insert(I, std::make_pair(KeyValue, Val));
468 return Val;
469 }
Reid Spencer233fe722006-08-22 16:09:19 +0000470 error("Can't create placeholder for value of type slot #" + utostr(type));
471 return 0; // just silence warning, error calls longjmp
Chris Lattner00950542001-06-06 20:29:01 +0000472}
473
Misha Brukman8a96c532005-04-21 21:44:41 +0000474/// This is just like getValue, but when a compaction table is in use, it
475/// is ignored. Also, no forward references or other fancy features are
Reid Spencer04cde2c2004-07-04 11:33:49 +0000476/// supported.
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000477Value* BytecodeReader::getGlobalTableValue(unsigned TyID, unsigned SlotNo) {
478 if (SlotNo == 0)
479 return Constant::getNullValue(getType(TyID));
480
481 if (!CompactionTypes.empty() && TyID >= Type::FirstDerivedTyID) {
482 TyID -= Type::FirstDerivedTyID;
483 if (TyID >= CompactionTypes.size())
484 error("Type ID out of range for compaction table!");
485 TyID = CompactionTypes[TyID].second;
Reid Spencer060d25d2004-06-29 23:29:38 +0000486 }
487
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000488 --SlotNo;
489
Reid Spencer060d25d2004-06-29 23:29:38 +0000490 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0 ||
491 SlotNo >= ModuleValues[TyID]->size()) {
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000492 if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0)
493 error("Corrupt compaction table entry!"
Misha Brukman8a96c532005-04-21 21:44:41 +0000494 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000495 + utostr(ModuleValues.size()));
Misha Brukman8a96c532005-04-21 21:44:41 +0000496 else
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000497 error("Corrupt compaction table entry!"
Misha Brukman8a96c532005-04-21 21:44:41 +0000498 + utostr(TyID) + ", " + utostr(SlotNo) + ": "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000499 + utostr(ModuleValues.size()) + ", "
Reid Spencer9a7e0c52004-08-04 22:56:46 +0000500 + utohexstr(reinterpret_cast<uint64_t>(((void*)ModuleValues[TyID])))
501 + ", "
Chris Lattner2c6c14d2004-08-04 00:19:23 +0000502 + utostr(ModuleValues[TyID]->size()));
Reid Spencer060d25d2004-06-29 23:29:38 +0000503 }
504 return ModuleValues[TyID]->getOperand(SlotNo);
505}
506
Reid Spencer04cde2c2004-07-04 11:33:49 +0000507/// Just like getValue, except that it returns a null pointer
508/// only on error. It always returns a constant (meaning that if the value is
509/// defined, but is not a constant, that is an error). If the specified
Misha Brukman8a96c532005-04-21 21:44:41 +0000510/// constant hasn't been parsed yet, a placeholder is defined and used.
Reid Spencer04cde2c2004-07-04 11:33:49 +0000511/// Later, after the real value is parsed, the placeholder is eliminated.
Reid Spencer060d25d2004-06-29 23:29:38 +0000512Constant* BytecodeReader::getConstantValue(unsigned TypeSlot, unsigned Slot) {
513 if (Value *V = getValue(TypeSlot, Slot, false))
514 if (Constant *C = dyn_cast<Constant>(V))
515 return C; // If we already have the value parsed, just return it
Reid Spencer060d25d2004-06-29 23:29:38 +0000516 else
Misha Brukman8a96c532005-04-21 21:44:41 +0000517 error("Value for slot " + utostr(Slot) +
Reid Spencera86037e2004-07-18 00:12:03 +0000518 " is expected to be a constant!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000519
Chris Lattner389bd042004-12-09 06:19:44 +0000520 std::pair<unsigned, unsigned> Key(TypeSlot, Slot);
Reid Spencer060d25d2004-06-29 23:29:38 +0000521 ConstantRefsType::iterator I = ConstantFwdRefs.lower_bound(Key);
522
523 if (I != ConstantFwdRefs.end() && I->first == Key) {
524 return I->second;
525 } else {
526 // Create a placeholder for the constant reference and
527 // keep track of the fact that we have a forward ref to recycle it
Chris Lattner389bd042004-12-09 06:19:44 +0000528 Constant *C = new ConstantPlaceHolder(getType(TypeSlot));
Misha Brukman8a96c532005-04-21 21:44:41 +0000529
Reid Spencer060d25d2004-06-29 23:29:38 +0000530 // Keep track of the fact that we have a forward ref to recycle it
531 ConstantFwdRefs.insert(I, std::make_pair(Key, C));
532 return C;
533 }
534}
535
536//===----------------------------------------------------------------------===//
537// IR Construction Methods
538//===----------------------------------------------------------------------===//
539
Reid Spencer04cde2c2004-07-04 11:33:49 +0000540/// As values are created, they are inserted into the appropriate place
541/// with this method. The ValueTable argument must be one of ModuleValues
542/// or FunctionValues data members of this class.
Misha Brukman8a96c532005-04-21 21:44:41 +0000543unsigned BytecodeReader::insertValue(Value *Val, unsigned type,
Reid Spencer46b002c2004-07-11 17:28:43 +0000544 ValueTable &ValueTab) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000545 if (ValueTab.size() <= type)
546 ValueTab.resize(type+1);
547
548 if (!ValueTab[type]) ValueTab[type] = new ValueList();
549
550 ValueTab[type]->push_back(Val);
551
Chris Lattneraba5ff52005-05-05 20:57:00 +0000552 bool HasOffset = hasImplicitNull(type) && !isa<OpaqueType>(Val->getType());
Reid Spencer060d25d2004-06-29 23:29:38 +0000553 return ValueTab[type]->size()-1 + HasOffset;
554}
555
Reid Spencer04cde2c2004-07-04 11:33:49 +0000556/// Insert the arguments of a function as new values in the reader.
Reid Spencer46b002c2004-07-11 17:28:43 +0000557void BytecodeReader::insertArguments(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000558 const FunctionType *FT = F->getFunctionType();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000559 Function::arg_iterator AI = F->arg_begin();
Reid Spencer060d25d2004-06-29 23:29:38 +0000560 for (FunctionType::param_iterator It = FT->param_begin();
561 It != FT->param_end(); ++It, ++AI)
562 insertValue(AI, getTypeSlot(AI->getType()), FunctionValues);
563}
564
565//===----------------------------------------------------------------------===//
566// Bytecode Parsing Methods
567//===----------------------------------------------------------------------===//
568
Reid Spencer04cde2c2004-07-04 11:33:49 +0000569/// This method parses a single instruction. The instruction is
570/// inserted at the end of the \p BB provided. The arguments of
Misha Brukman44666b12004-09-28 16:57:46 +0000571/// the instruction are provided in the \p Oprnds vector.
Reid Spencer060d25d2004-06-29 23:29:38 +0000572void BytecodeReader::ParseInstruction(std::vector<unsigned> &Oprnds,
Reid Spencer46b002c2004-07-11 17:28:43 +0000573 BasicBlock* BB) {
Reid Spencer060d25d2004-06-29 23:29:38 +0000574 BufPtr SaveAt = At;
575
576 // Clear instruction data
577 Oprnds.clear();
578 unsigned iType = 0;
579 unsigned Opcode = 0;
580 unsigned Op = read_uint();
581
582 // bits Instruction format: Common to all formats
583 // --------------------------
584 // 01-00: Opcode type, fixed to 1.
585 // 07-02: Opcode
586 Opcode = (Op >> 2) & 63;
587 Oprnds.resize((Op >> 0) & 03);
588
589 // Extract the operands
590 switch (Oprnds.size()) {
591 case 1:
592 // bits Instruction format:
593 // --------------------------
594 // 19-08: Resulting type plane
595 // 31-20: Operand #1 (if set to (2^12-1), then zero operands)
596 //
597 iType = (Op >> 8) & 4095;
598 Oprnds[0] = (Op >> 20) & 4095;
599 if (Oprnds[0] == 4095) // Handle special encoding for 0 operands...
600 Oprnds.resize(0);
601 break;
602 case 2:
603 // bits Instruction format:
604 // --------------------------
605 // 15-08: Resulting type plane
606 // 23-16: Operand #1
Misha Brukman8a96c532005-04-21 21:44:41 +0000607 // 31-24: Operand #2
Reid Spencer060d25d2004-06-29 23:29:38 +0000608 //
609 iType = (Op >> 8) & 255;
610 Oprnds[0] = (Op >> 16) & 255;
611 Oprnds[1] = (Op >> 24) & 255;
612 break;
613 case 3:
614 // bits Instruction format:
615 // --------------------------
616 // 13-08: Resulting type plane
617 // 19-14: Operand #1
618 // 25-20: Operand #2
619 // 31-26: Operand #3
620 //
621 iType = (Op >> 8) & 63;
622 Oprnds[0] = (Op >> 14) & 63;
623 Oprnds[1] = (Op >> 20) & 63;
624 Oprnds[2] = (Op >> 26) & 63;
625 break;
626 case 0:
627 At -= 4; // Hrm, try this again...
628 Opcode = read_vbr_uint();
629 Opcode >>= 2;
630 iType = read_vbr_uint();
631
632 unsigned NumOprnds = read_vbr_uint();
633 Oprnds.resize(NumOprnds);
634
635 if (NumOprnds == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000636 error("Zero-argument instruction found; this is invalid.");
Reid Spencer060d25d2004-06-29 23:29:38 +0000637
638 for (unsigned i = 0; i != NumOprnds; ++i)
639 Oprnds[i] = read_vbr_uint();
640 align32();
641 break;
642 }
643
Reid Spencer04cde2c2004-07-04 11:33:49 +0000644 const Type *InstTy = getSanitizedType(iType);
Reid Spencer060d25d2004-06-29 23:29:38 +0000645
Reid Spencer46b002c2004-07-11 17:28:43 +0000646 // We have enough info to inform the handler now.
Reid Spencer04cde2c2004-07-04 11:33:49 +0000647 if (Handler) Handler->handleInstruction(Opcode, InstTy, Oprnds, At-SaveAt);
Reid Spencer060d25d2004-06-29 23:29:38 +0000648
649 // Declare the resulting instruction we'll build.
650 Instruction *Result = 0;
651
Chris Lattnera79e7cc2004-10-16 18:18:16 +0000652 // If this is a bytecode format that did not include the unreachable
653 // instruction, bump up all opcodes numbers to make space.
654 if (hasNoUnreachableInst) {
655 if (Opcode >= Instruction::Unreachable &&
656 Opcode < 62) {
657 ++Opcode;
658 }
659 }
660
Reid Spencer060d25d2004-06-29 23:29:38 +0000661 // Handle binary operators
662 if (Opcode >= Instruction::BinaryOpsBegin &&
663 Opcode < Instruction::BinaryOpsEnd && Oprnds.size() == 2)
664 Result = BinaryOperator::create((Instruction::BinaryOps)Opcode,
665 getValue(iType, Oprnds[0]),
666 getValue(iType, Oprnds[1]));
667
Reid Spencere1e96c02006-01-19 07:02:16 +0000668 bool isCall = false;
Reid Spencer060d25d2004-06-29 23:29:38 +0000669 switch (Opcode) {
Misha Brukman8a96c532005-04-21 21:44:41 +0000670 default:
671 if (Result == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000672 error("Illegal instruction read!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000673 break;
674 case Instruction::VAArg:
Misha Brukman8a96c532005-04-21 21:44:41 +0000675 Result = new VAArgInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000676 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000677 break;
Andrew Lenharth558bc882005-06-18 18:34:52 +0000678 case 32: { //VANext_old
679 const Type* ArgTy = getValue(iType, Oprnds[0])->getType();
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000680 Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy,
681 (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000682
683 //b = vanext a, t ->
684 //foo = alloca 1 of t
685 //bar = vacopy a
686 //store bar -> foo
687 //tmp = vaarg foo, t
688 //b = load foo
689 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vanext.fix");
690 BB->getInstList().push_back(foo);
691 CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0]));
692 BB->getInstList().push_back(bar);
693 BB->getInstList().push_back(new StoreInst(bar, foo));
694 Instruction* tmp = new VAArgInst(foo, getSanitizedType(Oprnds[1]));
695 BB->getInstList().push_back(tmp);
696 Result = new LoadInst(foo);
Reid Spencer060d25d2004-06-29 23:29:38 +0000697 break;
Andrew Lenharth558bc882005-06-18 18:34:52 +0000698 }
699 case 33: { //VAArg_old
700 const Type* ArgTy = getValue(iType, Oprnds[0])->getType();
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000701 Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy,
702 (Type *)0);
Andrew Lenharth558bc882005-06-18 18:34:52 +0000703
Jeff Cohen00b168892005-07-27 06:12:32 +0000704 //b = vaarg a, t ->
Andrew Lenharth558bc882005-06-18 18:34:52 +0000705 //foo = alloca 1 of t
Jeff Cohen00b168892005-07-27 06:12:32 +0000706 //bar = vacopy a
Andrew Lenharth558bc882005-06-18 18:34:52 +0000707 //store bar -> foo
708 //b = vaarg foo, t
709 AllocaInst* foo = new AllocaInst(ArgTy, 0, "vaarg.fix");
710 BB->getInstList().push_back(foo);
711 CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0]));
712 BB->getInstList().push_back(bar);
713 BB->getInstList().push_back(new StoreInst(bar, foo));
714 Result = new VAArgInst(foo, getSanitizedType(Oprnds[1]));
715 break;
716 }
Robert Bocchinofee31b32006-01-10 19:04:39 +0000717 case Instruction::ExtractElement: {
718 if (Oprnds.size() != 2)
Reid Spencer233fe722006-08-22 16:09:19 +0000719 error("Invalid extractelement instruction!");
Chris Lattner59fecec2006-04-08 04:09:19 +0000720 Value *V1 = getValue(iType, Oprnds[0]);
721 Value *V2 = getValue(Type::UIntTyID, Oprnds[1]);
722
723 if (!ExtractElementInst::isValidOperands(V1, V2))
Reid Spencer233fe722006-08-22 16:09:19 +0000724 error("Invalid extractelement instruction!");
Chris Lattner59fecec2006-04-08 04:09:19 +0000725
726 Result = new ExtractElementInst(V1, V2);
Robert Bocchinofee31b32006-01-10 19:04:39 +0000727 break;
728 }
Robert Bocchinob1f240b2006-01-17 20:06:35 +0000729 case Instruction::InsertElement: {
730 const PackedType *PackedTy = dyn_cast<PackedType>(InstTy);
731 if (!PackedTy || Oprnds.size() != 3)
Reid Spencer233fe722006-08-22 16:09:19 +0000732 error("Invalid insertelement instruction!");
Chris Lattner59fecec2006-04-08 04:09:19 +0000733
734 Value *V1 = getValue(iType, Oprnds[0]);
735 Value *V2 = getValue(getTypeSlot(PackedTy->getElementType()), Oprnds[1]);
736 Value *V3 = getValue(Type::UIntTyID, Oprnds[2]);
737
738 if (!InsertElementInst::isValidOperands(V1, V2, V3))
Reid Spencer233fe722006-08-22 16:09:19 +0000739 error("Invalid insertelement instruction!");
Chris Lattner59fecec2006-04-08 04:09:19 +0000740 Result = new InsertElementInst(V1, V2, V3);
Robert Bocchinob1f240b2006-01-17 20:06:35 +0000741 break;
742 }
Chris Lattner30b44b62006-04-08 01:17:59 +0000743 case Instruction::ShuffleVector: {
744 const PackedType *PackedTy = dyn_cast<PackedType>(InstTy);
745 if (!PackedTy || Oprnds.size() != 3)
Reid Spencer233fe722006-08-22 16:09:19 +0000746 error("Invalid shufflevector instruction!");
Chris Lattner30b44b62006-04-08 01:17:59 +0000747 Value *V1 = getValue(iType, Oprnds[0]);
748 Value *V2 = getValue(iType, Oprnds[1]);
749 const PackedType *EltTy =
750 PackedType::get(Type::UIntTy, PackedTy->getNumElements());
751 Value *V3 = getValue(getTypeSlot(EltTy), Oprnds[2]);
752 if (!ShuffleVectorInst::isValidOperands(V1, V2, V3))
Reid Spencer233fe722006-08-22 16:09:19 +0000753 error("Invalid shufflevector instruction!");
Chris Lattner30b44b62006-04-08 01:17:59 +0000754 Result = new ShuffleVectorInst(V1, V2, V3);
755 break;
756 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000757 case Instruction::Cast:
Misha Brukman8a96c532005-04-21 21:44:41 +0000758 Result = new CastInst(getValue(iType, Oprnds[0]),
Reid Spencer46b002c2004-07-11 17:28:43 +0000759 getSanitizedType(Oprnds[1]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000760 break;
761 case Instruction::Select:
762 Result = new SelectInst(getValue(Type::BoolTyID, Oprnds[0]),
763 getValue(iType, Oprnds[1]),
764 getValue(iType, Oprnds[2]));
765 break;
766 case Instruction::PHI: {
767 if (Oprnds.size() == 0 || (Oprnds.size() & 1))
Reid Spencer24399722004-07-09 22:21:33 +0000768 error("Invalid phi node encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000769
770 PHINode *PN = new PHINode(InstTy);
Chris Lattnercad28bd2005-01-29 00:36:19 +0000771 PN->reserveOperandSpace(Oprnds.size());
Reid Spencer060d25d2004-06-29 23:29:38 +0000772 for (unsigned i = 0, e = Oprnds.size(); i != e; i += 2)
773 PN->addIncoming(getValue(iType, Oprnds[i]), getBasicBlock(Oprnds[i+1]));
774 Result = PN;
775 break;
776 }
777
778 case Instruction::Shl:
779 case Instruction::Shr:
780 Result = new ShiftInst((Instruction::OtherOps)Opcode,
781 getValue(iType, Oprnds[0]),
782 getValue(Type::UByteTyID, Oprnds[1]));
783 break;
784 case Instruction::Ret:
785 if (Oprnds.size() == 0)
786 Result = new ReturnInst();
787 else if (Oprnds.size() == 1)
788 Result = new ReturnInst(getValue(iType, Oprnds[0]));
789 else
Reid Spencer24399722004-07-09 22:21:33 +0000790 error("Unrecognized instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000791 break;
792
793 case Instruction::Br:
794 if (Oprnds.size() == 1)
795 Result = new BranchInst(getBasicBlock(Oprnds[0]));
796 else if (Oprnds.size() == 3)
Misha Brukman8a96c532005-04-21 21:44:41 +0000797 Result = new BranchInst(getBasicBlock(Oprnds[0]),
Reid Spencer04cde2c2004-07-04 11:33:49 +0000798 getBasicBlock(Oprnds[1]), getValue(Type::BoolTyID , Oprnds[2]));
Reid Spencer060d25d2004-06-29 23:29:38 +0000799 else
Reid Spencer24399722004-07-09 22:21:33 +0000800 error("Invalid number of operands for a 'br' instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000801 break;
802 case Instruction::Switch: {
803 if (Oprnds.size() & 1)
Reid Spencer24399722004-07-09 22:21:33 +0000804 error("Switch statement with odd number of arguments!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000805
806 SwitchInst *I = new SwitchInst(getValue(iType, Oprnds[0]),
Chris Lattnercad28bd2005-01-29 00:36:19 +0000807 getBasicBlock(Oprnds[1]),
808 Oprnds.size()/2-1);
Reid Spencer060d25d2004-06-29 23:29:38 +0000809 for (unsigned i = 2, e = Oprnds.size(); i != e; i += 2)
Chris Lattner7e618232005-02-24 05:26:04 +0000810 I->addCase(cast<ConstantInt>(getValue(iType, Oprnds[i])),
Reid Spencer060d25d2004-06-29 23:29:38 +0000811 getBasicBlock(Oprnds[i+1]));
812 Result = I;
813 break;
814 }
815
Chris Lattnerdee199f2005-05-06 22:34:01 +0000816 case 58: // Call with extra operand for calling conv
817 case 59: // tail call, Fast CC
818 case 60: // normal call, Fast CC
819 case 61: // tail call, C Calling Conv
820 case Instruction::Call: { // Normal Call, C Calling Convention
Reid Spencer060d25d2004-06-29 23:29:38 +0000821 if (Oprnds.size() == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000822 error("Invalid call instruction encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000823
824 Value *F = getValue(iType, Oprnds[0]);
825
Chris Lattnerdee199f2005-05-06 22:34:01 +0000826 unsigned CallingConv = CallingConv::C;
827 bool isTailCall = false;
828
829 if (Opcode == 61 || Opcode == 59)
830 isTailCall = true;
Chris Lattnera65371e2006-05-26 18:42:34 +0000831
832 if (Opcode == 58) {
833 isTailCall = Oprnds.back() & 1;
834 CallingConv = Oprnds.back() >> 1;
835 Oprnds.pop_back();
836 } else if (Opcode == 59 || Opcode == 60) {
837 CallingConv = CallingConv::Fast;
838 }
839
Reid Spencer060d25d2004-06-29 23:29:38 +0000840 // Check to make sure we have a pointer to function type
841 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Reid Spencer24399722004-07-09 22:21:33 +0000842 if (PTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000843 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Reid Spencer24399722004-07-09 22:21:33 +0000844 if (FTy == 0) error("Call to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000845
846 std::vector<Value *> Params;
847 if (!FTy->isVarArg()) {
848 FunctionType::param_iterator It = FTy->param_begin();
849
850 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
851 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000852 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000853 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
854 }
855 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000856 error("Invalid call instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000857 } else {
858 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
859
860 unsigned FirstVariableOperand;
861 if (Oprnds.size() < FTy->getNumParams())
Reid Spencer24399722004-07-09 22:21:33 +0000862 error("Call instruction missing operands!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000863
864 // Read all of the fixed arguments
865 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
866 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i)),Oprnds[i]));
Misha Brukman8a96c532005-04-21 21:44:41 +0000867
Reid Spencer060d25d2004-06-29 23:29:38 +0000868 FirstVariableOperand = FTy->getNumParams();
869
Misha Brukman8a96c532005-04-21 21:44:41 +0000870 if ((Oprnds.size()-FirstVariableOperand) & 1)
Chris Lattner4a242b32004-10-14 01:39:18 +0000871 error("Invalid call instruction!"); // Must be pairs of type/value
Misha Brukman8a96c532005-04-21 21:44:41 +0000872
873 for (unsigned i = FirstVariableOperand, e = Oprnds.size();
Reid Spencer04cde2c2004-07-04 11:33:49 +0000874 i != e; i += 2)
Reid Spencer060d25d2004-06-29 23:29:38 +0000875 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
876 }
877
878 Result = new CallInst(F, Params);
Chris Lattnerdee199f2005-05-06 22:34:01 +0000879 if (isTailCall) cast<CallInst>(Result)->setTailCall();
880 if (CallingConv) cast<CallInst>(Result)->setCallingConv(CallingConv);
Reid Spencer060d25d2004-06-29 23:29:38 +0000881 break;
882 }
Chris Lattnerdee199f2005-05-06 22:34:01 +0000883 case 56: // Invoke with encoded CC
884 case 57: // Invoke Fast CC
885 case Instruction::Invoke: { // Invoke C CC
Misha Brukman8a96c532005-04-21 21:44:41 +0000886 if (Oprnds.size() < 3)
Reid Spencer24399722004-07-09 22:21:33 +0000887 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000888 Value *F = getValue(iType, Oprnds[0]);
889
890 // Check to make sure we have a pointer to function type
891 const PointerType *PTy = dyn_cast<PointerType>(F->getType());
Misha Brukman8a96c532005-04-21 21:44:41 +0000892 if (PTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000893 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000894 const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
Misha Brukman8a96c532005-04-21 21:44:41 +0000895 if (FTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +0000896 error("Invoke to non function pointer value!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000897
898 std::vector<Value *> Params;
899 BasicBlock *Normal, *Except;
Chris Lattnerdee199f2005-05-06 22:34:01 +0000900 unsigned CallingConv = CallingConv::C;
901
902 if (Opcode == 57)
903 CallingConv = CallingConv::Fast;
904 else if (Opcode == 56) {
905 CallingConv = Oprnds.back();
906 Oprnds.pop_back();
907 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000908
909 if (!FTy->isVarArg()) {
910 Normal = getBasicBlock(Oprnds[1]);
911 Except = getBasicBlock(Oprnds[2]);
912
913 FunctionType::param_iterator It = FTy->param_begin();
914 for (unsigned i = 3, e = Oprnds.size(); i != e; ++i) {
915 if (It == FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000916 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000917 Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i]));
918 }
919 if (It != FTy->param_end())
Reid Spencer24399722004-07-09 22:21:33 +0000920 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000921 } else {
922 Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1);
923
924 Normal = getBasicBlock(Oprnds[0]);
925 Except = getBasicBlock(Oprnds[1]);
Misha Brukman8a96c532005-04-21 21:44:41 +0000926
Reid Spencer060d25d2004-06-29 23:29:38 +0000927 unsigned FirstVariableArgument = FTy->getNumParams()+2;
928 for (unsigned i = 2; i != FirstVariableArgument; ++i)
929 Params.push_back(getValue(getTypeSlot(FTy->getParamType(i-2)),
930 Oprnds[i]));
Misha Brukman8a96c532005-04-21 21:44:41 +0000931
Reid Spencer060d25d2004-06-29 23:29:38 +0000932 if (Oprnds.size()-FirstVariableArgument & 1) // Must be type/value pairs
Reid Spencer24399722004-07-09 22:21:33 +0000933 error("Invalid invoke instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000934
935 for (unsigned i = FirstVariableArgument; i < Oprnds.size(); i += 2)
936 Params.push_back(getValue(Oprnds[i], Oprnds[i+1]));
937 }
938
939 Result = new InvokeInst(F, Normal, Except, Params);
Chris Lattnerdee199f2005-05-06 22:34:01 +0000940 if (CallingConv) cast<InvokeInst>(Result)->setCallingConv(CallingConv);
Reid Spencer060d25d2004-06-29 23:29:38 +0000941 break;
942 }
Chris Lattner42ba6b42005-11-05 22:08:14 +0000943 case Instruction::Malloc: {
944 unsigned Align = 0;
945 if (Oprnds.size() == 2)
946 Align = (1 << Oprnds[1]) >> 1;
947 else if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000948 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000949 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000950 error("Invalid malloc instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000951
952 Result = new MallocInst(cast<PointerType>(InstTy)->getElementType(),
Chris Lattner42ba6b42005-11-05 22:08:14 +0000953 getValue(Type::UIntTyID, Oprnds[0]), Align);
Reid Spencer060d25d2004-06-29 23:29:38 +0000954 break;
Chris Lattner42ba6b42005-11-05 22:08:14 +0000955 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000956
Chris Lattner42ba6b42005-11-05 22:08:14 +0000957 case Instruction::Alloca: {
958 unsigned Align = 0;
959 if (Oprnds.size() == 2)
960 Align = (1 << Oprnds[1]) >> 1;
961 else if (Oprnds.size() > 2)
Reid Spencer24399722004-07-09 22:21:33 +0000962 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000963 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000964 error("Invalid alloca instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000965
966 Result = new AllocaInst(cast<PointerType>(InstTy)->getElementType(),
Chris Lattner42ba6b42005-11-05 22:08:14 +0000967 getValue(Type::UIntTyID, Oprnds[0]), Align);
Reid Spencer060d25d2004-06-29 23:29:38 +0000968 break;
Chris Lattner42ba6b42005-11-05 22:08:14 +0000969 }
Reid Spencer060d25d2004-06-29 23:29:38 +0000970 case Instruction::Free:
971 if (!isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000972 error("Invalid free instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000973 Result = new FreeInst(getValue(iType, Oprnds[0]));
974 break;
975 case Instruction::GetElementPtr: {
976 if (Oprnds.size() == 0 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +0000977 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000978
979 std::vector<Value*> Idx;
980
981 const Type *NextTy = InstTy;
982 for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) {
983 const CompositeType *TopTy = dyn_cast_or_null<CompositeType>(NextTy);
Misha Brukman8a96c532005-04-21 21:44:41 +0000984 if (!TopTy)
985 error("Invalid getelementptr instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +0000986
987 unsigned ValIdx = Oprnds[i];
988 unsigned IdxTy = 0;
989 if (!hasRestrictedGEPTypes) {
990 // Struct indices are always uints, sequential type indices can be any
991 // of the 32 or 64-bit integer types. The actual choice of type is
992 // encoded in the low two bits of the slot number.
993 if (isa<StructType>(TopTy))
994 IdxTy = Type::UIntTyID;
995 else {
996 switch (ValIdx & 3) {
997 default:
998 case 0: IdxTy = Type::UIntTyID; break;
999 case 1: IdxTy = Type::IntTyID; break;
1000 case 2: IdxTy = Type::ULongTyID; break;
1001 case 3: IdxTy = Type::LongTyID; break;
1002 }
1003 ValIdx >>= 2;
1004 }
1005 } else {
1006 IdxTy = isa<StructType>(TopTy) ? Type::UByteTyID : Type::LongTyID;
1007 }
1008
1009 Idx.push_back(getValue(IdxTy, ValIdx));
1010
1011 // Convert ubyte struct indices into uint struct indices.
1012 if (isa<StructType>(TopTy) && hasRestrictedGEPTypes)
1013 if (ConstantUInt *C = dyn_cast<ConstantUInt>(Idx.back()))
1014 Idx[Idx.size()-1] = ConstantExpr::getCast(C, Type::UIntTy);
1015
1016 NextTy = GetElementPtrInst::getIndexedType(InstTy, Idx, true);
1017 }
1018
1019 Result = new GetElementPtrInst(getValue(iType, Oprnds[0]), Idx);
1020 break;
1021 }
1022
1023 case 62: // volatile load
1024 case Instruction::Load:
1025 if (Oprnds.size() != 1 || !isa<PointerType>(InstTy))
Reid Spencer24399722004-07-09 22:21:33 +00001026 error("Invalid load instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001027 Result = new LoadInst(getValue(iType, Oprnds[0]), "", Opcode == 62);
1028 break;
1029
Misha Brukman8a96c532005-04-21 21:44:41 +00001030 case 63: // volatile store
Reid Spencer060d25d2004-06-29 23:29:38 +00001031 case Instruction::Store: {
1032 if (!isa<PointerType>(InstTy) || Oprnds.size() != 2)
Reid Spencer24399722004-07-09 22:21:33 +00001033 error("Invalid store instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001034
1035 Value *Ptr = getValue(iType, Oprnds[1]);
1036 const Type *ValTy = cast<PointerType>(Ptr->getType())->getElementType();
1037 Result = new StoreInst(getValue(getTypeSlot(ValTy), Oprnds[0]), Ptr,
1038 Opcode == 63);
1039 break;
1040 }
1041 case Instruction::Unwind:
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001042 if (Oprnds.size() != 0) error("Invalid unwind instruction!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001043 Result = new UnwindInst();
1044 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001045 case Instruction::Unreachable:
1046 if (Oprnds.size() != 0) error("Invalid unreachable instruction!");
1047 Result = new UnreachableInst();
1048 break;
Misha Brukman8a96c532005-04-21 21:44:41 +00001049 } // end switch(Opcode)
Reid Spencer060d25d2004-06-29 23:29:38 +00001050
Reid Spencere1e96c02006-01-19 07:02:16 +00001051 BB->getInstList().push_back(Result);
1052
Reid Spencer060d25d2004-06-29 23:29:38 +00001053 unsigned TypeSlot;
1054 if (Result->getType() == InstTy)
1055 TypeSlot = iType;
1056 else
1057 TypeSlot = getTypeSlot(Result->getType());
1058
1059 insertValue(Result, TypeSlot, FunctionValues);
Reid Spencer060d25d2004-06-29 23:29:38 +00001060}
1061
Reid Spencer04cde2c2004-07-04 11:33:49 +00001062/// Get a particular numbered basic block, which might be a forward reference.
1063/// This works together with ParseBasicBlock to handle these forward references
Chris Lattner4a242b32004-10-14 01:39:18 +00001064/// in a clean manner. This function is used when constructing phi, br, switch,
1065/// and other instructions that reference basic blocks. Blocks are numbered
Reid Spencer04cde2c2004-07-04 11:33:49 +00001066/// sequentially as they appear in the function.
Reid Spencer060d25d2004-06-29 23:29:38 +00001067BasicBlock *BytecodeReader::getBasicBlock(unsigned ID) {
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001068 // Make sure there is room in the table...
1069 if (ParsedBasicBlocks.size() <= ID) ParsedBasicBlocks.resize(ID+1);
1070
1071 // First check to see if this is a backwards reference, i.e., ParseBasicBlock
1072 // has already created this block, or if the forward reference has already
1073 // been created.
1074 if (ParsedBasicBlocks[ID])
1075 return ParsedBasicBlocks[ID];
1076
1077 // Otherwise, the basic block has not yet been created. Do so and add it to
1078 // the ParsedBasicBlocks list.
1079 return ParsedBasicBlocks[ID] = new BasicBlock();
1080}
1081
Misha Brukman8a96c532005-04-21 21:44:41 +00001082/// In LLVM 1.0 bytecode files, we used to output one basicblock at a time.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001083/// This method reads in one of the basicblock packets. This method is not used
1084/// for bytecode files after LLVM 1.0
1085/// @returns The basic block constructed.
Reid Spencer46b002c2004-07-11 17:28:43 +00001086BasicBlock *BytecodeReader::ParseBasicBlock(unsigned BlockNo) {
1087 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Reid Spencer060d25d2004-06-29 23:29:38 +00001088
1089 BasicBlock *BB = 0;
1090
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001091 if (ParsedBasicBlocks.size() == BlockNo)
1092 ParsedBasicBlocks.push_back(BB = new BasicBlock());
1093 else if (ParsedBasicBlocks[BlockNo] == 0)
1094 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
1095 else
1096 BB = ParsedBasicBlocks[BlockNo];
Chris Lattner00950542001-06-06 20:29:01 +00001097
Reid Spencer060d25d2004-06-29 23:29:38 +00001098 std::vector<unsigned> Operands;
Reid Spencer46b002c2004-07-11 17:28:43 +00001099 while (moreInBlock())
Reid Spencer060d25d2004-06-29 23:29:38 +00001100 ParseInstruction(Operands, BB);
Chris Lattner00950542001-06-06 20:29:01 +00001101
Reid Spencer46b002c2004-07-11 17:28:43 +00001102 if (Handler) Handler->handleBasicBlockEnd(BlockNo);
Misha Brukman12c29d12003-09-22 23:38:23 +00001103 return BB;
Chris Lattner00950542001-06-06 20:29:01 +00001104}
1105
Reid Spencer04cde2c2004-07-04 11:33:49 +00001106/// Parse all of the BasicBlock's & Instruction's in the body of a function.
Misha Brukman8a96c532005-04-21 21:44:41 +00001107/// In post 1.0 bytecode files, we no longer emit basic block individually,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001108/// in order to avoid per-basic-block overhead.
1109/// @returns Rhe number of basic blocks encountered.
Reid Spencer060d25d2004-06-29 23:29:38 +00001110unsigned BytecodeReader::ParseInstructionList(Function* F) {
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001111 unsigned BlockNo = 0;
1112 std::vector<unsigned> Args;
1113
Reid Spencer46b002c2004-07-11 17:28:43 +00001114 while (moreInBlock()) {
1115 if (Handler) Handler->handleBasicBlockBegin(BlockNo);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001116 BasicBlock *BB;
1117 if (ParsedBasicBlocks.size() == BlockNo)
1118 ParsedBasicBlocks.push_back(BB = new BasicBlock());
1119 else if (ParsedBasicBlocks[BlockNo] == 0)
1120 BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
1121 else
1122 BB = ParsedBasicBlocks[BlockNo];
1123 ++BlockNo;
1124 F->getBasicBlockList().push_back(BB);
1125
1126 // Read instructions into this basic block until we get to a terminator
Reid Spencer46b002c2004-07-11 17:28:43 +00001127 while (moreInBlock() && !BB->getTerminator())
Reid Spencer060d25d2004-06-29 23:29:38 +00001128 ParseInstruction(Args, BB);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001129
1130 if (!BB->getTerminator())
Reid Spencer24399722004-07-09 22:21:33 +00001131 error("Non-terminated basic block found!");
Reid Spencer5c15fe52004-07-05 00:57:50 +00001132
Reid Spencer46b002c2004-07-11 17:28:43 +00001133 if (Handler) Handler->handleBasicBlockEnd(BlockNo-1);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001134 }
1135
1136 return BlockNo;
1137}
1138
Reid Spencer04cde2c2004-07-04 11:33:49 +00001139/// Parse a symbol table. This works for both module level and function
1140/// level symbol tables. For function level symbol tables, the CurrentFunction
1141/// parameter must be non-zero and the ST parameter must correspond to
1142/// CurrentFunction's symbol table. For Module level symbol tables, the
1143/// CurrentFunction argument must be zero.
Reid Spencer060d25d2004-06-29 23:29:38 +00001144void BytecodeReader::ParseSymbolTable(Function *CurrentFunction,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001145 SymbolTable *ST) {
1146 if (Handler) Handler->handleSymbolTableBegin(CurrentFunction,ST);
Reid Spencer060d25d2004-06-29 23:29:38 +00001147
Chris Lattner39cacce2003-10-10 05:43:47 +00001148 // Allow efficient basic block lookup by number.
1149 std::vector<BasicBlock*> BBMap;
1150 if (CurrentFunction)
1151 for (Function::iterator I = CurrentFunction->begin(),
1152 E = CurrentFunction->end(); I != E; ++I)
1153 BBMap.push_back(I);
1154
Reid Spencer04cde2c2004-07-04 11:33:49 +00001155 /// In LLVM 1.3 we write types separately from values so
1156 /// The types are always first in the symbol table. This is
1157 /// because Type no longer derives from Value.
Reid Spencer46b002c2004-07-11 17:28:43 +00001158 if (!hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001159 // Symtab block header: [num entries]
1160 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001161 for (unsigned i = 0; i < NumEntries; ++i) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001162 // Symtab entry: [def slot #][name]
1163 unsigned slot = read_vbr_uint();
1164 std::string Name = read_str();
1165 const Type* T = getType(slot);
1166 ST->insert(Name, T);
1167 }
1168 }
1169
Reid Spencer46b002c2004-07-11 17:28:43 +00001170 while (moreInBlock()) {
Chris Lattner00950542001-06-06 20:29:01 +00001171 // Symtab block header: [num entries][type id number]
Reid Spencer060d25d2004-06-29 23:29:38 +00001172 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001173 unsigned Typ = 0;
1174 bool isTypeType = read_typeid(Typ);
Chris Lattner00950542001-06-06 20:29:01 +00001175 const Type *Ty = getType(Typ);
Chris Lattner1d670cc2001-09-07 16:37:43 +00001176
Chris Lattner7dc3a2e2003-10-13 14:57:53 +00001177 for (unsigned i = 0; i != NumEntries; ++i) {
Chris Lattner00950542001-06-06 20:29:01 +00001178 // Symtab entry: [def slot #][name]
Reid Spencer060d25d2004-06-29 23:29:38 +00001179 unsigned slot = read_vbr_uint();
1180 std::string Name = read_str();
Chris Lattner00950542001-06-06 20:29:01 +00001181
Reid Spencer04cde2c2004-07-04 11:33:49 +00001182 // if we're reading a pre 1.3 bytecode file and the type plane
1183 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001184 if (isTypeType) {
1185 const Type* T = getType(slot);
1186 if (T == 0)
1187 error("Failed type look-up for name '" + Name + "'");
1188 ST->insert(Name, T);
1189 continue; // code below must be short circuited
Chris Lattner39cacce2003-10-10 05:43:47 +00001190 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001191 Value *V = 0;
1192 if (Typ == Type::LabelTyID) {
1193 if (slot < BBMap.size())
1194 V = BBMap[slot];
1195 } else {
1196 V = getValue(Typ, slot, false); // Find mapping...
1197 }
1198 if (V == 0)
1199 error("Failed value look-up for name '" + Name + "'");
Chris Lattner7acff252005-03-05 19:05:20 +00001200 V->setName(Name);
Chris Lattner39cacce2003-10-10 05:43:47 +00001201 }
Chris Lattner00950542001-06-06 20:29:01 +00001202 }
1203 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001204 checkPastBlockEnd("Symbol Table");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001205 if (Handler) Handler->handleSymbolTableEnd();
Chris Lattner00950542001-06-06 20:29:01 +00001206}
1207
Misha Brukman8a96c532005-04-21 21:44:41 +00001208/// Read in the types portion of a compaction table.
Reid Spencer46b002c2004-07-11 17:28:43 +00001209void BytecodeReader::ParseCompactionTypes(unsigned NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001210 for (unsigned i = 0; i != NumEntries; ++i) {
1211 unsigned TypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001212 if (read_typeid(TypeSlot))
Reid Spencer24399722004-07-09 22:21:33 +00001213 error("Invalid type in compaction table: type type");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001214 const Type *Typ = getGlobalTableType(TypeSlot);
Chris Lattner45b5dd22004-08-03 23:41:28 +00001215 CompactionTypes.push_back(std::make_pair(Typ, TypeSlot));
Reid Spencer46b002c2004-07-11 17:28:43 +00001216 if (Handler) Handler->handleCompactionTableType(i, TypeSlot, Typ);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001217 }
1218}
1219
1220/// Parse a compaction table.
Reid Spencer060d25d2004-06-29 23:29:38 +00001221void BytecodeReader::ParseCompactionTable() {
1222
Reid Spencer46b002c2004-07-11 17:28:43 +00001223 // Notify handler that we're beginning a compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001224 if (Handler) Handler->handleCompactionTableBegin();
1225
Misha Brukman8a96c532005-04-21 21:44:41 +00001226 // In LLVM 1.3 Type no longer derives from Value. So,
Reid Spencer46b002c2004-07-11 17:28:43 +00001227 // we always write them first in the compaction table
1228 // because they can't occupy a "type plane" where the
1229 // Values reside.
1230 if (! hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001231 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001232 ParseCompactionTypes(NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001233 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001234
Reid Spencer46b002c2004-07-11 17:28:43 +00001235 // Compaction tables live in separate blocks so we have to loop
1236 // until we've read the whole thing.
1237 while (moreInBlock()) {
1238 // Read the number of Value* entries in the compaction table
Reid Spencer060d25d2004-06-29 23:29:38 +00001239 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001240 unsigned Ty = 0;
1241 unsigned isTypeType = false;
Reid Spencer060d25d2004-06-29 23:29:38 +00001242
Reid Spencer46b002c2004-07-11 17:28:43 +00001243 // Decode the type from value read in. Most compaction table
1244 // planes will have one or two entries in them. If that's the
1245 // case then the length is encoded in the bottom two bits and
1246 // the higher bits encode the type. This saves another VBR value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001247 if ((NumEntries & 3) == 3) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001248 // In this case, both low-order bits are set (value 3). This
1249 // is a signal that the typeid follows.
Reid Spencer060d25d2004-06-29 23:29:38 +00001250 NumEntries >>= 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001251 isTypeType = read_typeid(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001252 } else {
Reid Spencer46b002c2004-07-11 17:28:43 +00001253 // In this case, the low-order bits specify the number of entries
1254 // and the high order bits specify the type.
Reid Spencer060d25d2004-06-29 23:29:38 +00001255 Ty = NumEntries >> 2;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001256 isTypeType = sanitizeTypeId(Ty);
Reid Spencer060d25d2004-06-29 23:29:38 +00001257 NumEntries &= 3;
1258 }
1259
Reid Spencer04cde2c2004-07-04 11:33:49 +00001260 // if we're reading a pre 1.3 bytecode file and the type plane
1261 // is the "type type", handle it here
Reid Spencer46b002c2004-07-11 17:28:43 +00001262 if (isTypeType) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001263 ParseCompactionTypes(NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001264 } else {
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001265 // Make sure we have enough room for the plane.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001266 if (Ty >= CompactionValues.size())
Reid Spencer46b002c2004-07-11 17:28:43 +00001267 CompactionValues.resize(Ty+1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001268
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001269 // Make sure the plane is empty or we have some kind of error.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001270 if (!CompactionValues[Ty].empty())
Reid Spencer46b002c2004-07-11 17:28:43 +00001271 error("Compaction table plane contains multiple entries!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001272
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001273 // Notify handler about the plane.
Reid Spencer46b002c2004-07-11 17:28:43 +00001274 if (Handler) Handler->handleCompactionTablePlane(Ty, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001275
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001276 // Push the implicit zero.
1277 CompactionValues[Ty].push_back(Constant::getNullValue(getType(Ty)));
Reid Spencer46b002c2004-07-11 17:28:43 +00001278
1279 // Read in each of the entries, put them in the compaction table
1280 // and notify the handler that we have a new compaction table value.
Reid Spencer060d25d2004-06-29 23:29:38 +00001281 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001282 unsigned ValSlot = read_vbr_uint();
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001283 Value *V = getGlobalTableValue(Ty, ValSlot);
Reid Spencer46b002c2004-07-11 17:28:43 +00001284 CompactionValues[Ty].push_back(V);
Chris Lattner2c6c14d2004-08-04 00:19:23 +00001285 if (Handler) Handler->handleCompactionTableValue(i, Ty, ValSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001286 }
1287 }
1288 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001289 // Notify handler that the compaction table is done.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001290 if (Handler) Handler->handleCompactionTableEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001291}
Misha Brukman8a96c532005-04-21 21:44:41 +00001292
Reid Spencer46b002c2004-07-11 17:28:43 +00001293// Parse a single type. The typeid is read in first. If its a primitive type
1294// then nothing else needs to be read, we know how to instantiate it. If its
Misha Brukman8a96c532005-04-21 21:44:41 +00001295// a derived type, then additional data is read to fill out the type
Reid Spencer46b002c2004-07-11 17:28:43 +00001296// definition.
1297const Type *BytecodeReader::ParseType() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001298 unsigned PrimType = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001299 if (read_typeid(PrimType))
Reid Spencer24399722004-07-09 22:21:33 +00001300 error("Invalid type (type type) in type constants!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001301
1302 const Type *Result = 0;
1303 if ((Result = Type::getPrimitiveType((Type::TypeID)PrimType)))
1304 return Result;
Misha Brukman8a96c532005-04-21 21:44:41 +00001305
Reid Spencer060d25d2004-06-29 23:29:38 +00001306 switch (PrimType) {
1307 case Type::FunctionTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001308 const Type *RetType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001309
1310 unsigned NumParams = read_vbr_uint();
1311
1312 std::vector<const Type*> Params;
Misha Brukman8a96c532005-04-21 21:44:41 +00001313 while (NumParams--)
Reid Spencer04cde2c2004-07-04 11:33:49 +00001314 Params.push_back(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001315
1316 bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1317 if (isVarArg) Params.pop_back();
1318
1319 Result = FunctionType::get(RetType, Params, isVarArg);
1320 break;
1321 }
1322 case Type::ArrayTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001323 const Type *ElementType = readSanitizedType();
Reid Spencer060d25d2004-06-29 23:29:38 +00001324 unsigned NumElements = read_vbr_uint();
Reid Spencer060d25d2004-06-29 23:29:38 +00001325 Result = ArrayType::get(ElementType, NumElements);
1326 break;
1327 }
Brian Gaeke715c90b2004-08-20 06:00:58 +00001328 case Type::PackedTyID: {
1329 const Type *ElementType = readSanitizedType();
1330 unsigned NumElements = read_vbr_uint();
1331 Result = PackedType::get(ElementType, NumElements);
1332 break;
1333 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001334 case Type::StructTyID: {
1335 std::vector<const Type*> Elements;
Reid Spencer04cde2c2004-07-04 11:33:49 +00001336 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001337 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001338 error("Invalid element type (type type) for structure!");
1339
Reid Spencer060d25d2004-06-29 23:29:38 +00001340 while (Typ) { // List is terminated by void/0 typeid
1341 Elements.push_back(getType(Typ));
Reid Spencer46b002c2004-07-11 17:28:43 +00001342 if (read_typeid(Typ))
1343 error("Invalid element type (type type) for structure!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001344 }
1345
1346 Result = StructType::get(Elements);
1347 break;
1348 }
1349 case Type::PointerTyID: {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001350 Result = PointerType::get(readSanitizedType());
Reid Spencer060d25d2004-06-29 23:29:38 +00001351 break;
1352 }
1353
1354 case Type::OpaqueTyID: {
1355 Result = OpaqueType::get();
1356 break;
1357 }
1358
1359 default:
Reid Spencer24399722004-07-09 22:21:33 +00001360 error("Don't know how to deserialize primitive type " + utostr(PrimType));
Reid Spencer060d25d2004-06-29 23:29:38 +00001361 break;
1362 }
Reid Spencer46b002c2004-07-11 17:28:43 +00001363 if (Handler) Handler->handleType(Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001364 return Result;
1365}
1366
Reid Spencer5b472d92004-08-21 20:49:23 +00001367// ParseTypes - We have to use this weird code to handle recursive
Reid Spencer060d25d2004-06-29 23:29:38 +00001368// types. We know that recursive types will only reference the current slab of
1369// values in the type plane, but they can forward reference types before they
1370// have been read. For example, Type #0 might be '{ Ty#1 }' and Type #1 might
1371// be 'Ty#0*'. When reading Type #0, type number one doesn't exist. To fix
1372// this ugly problem, we pessimistically insert an opaque type for each type we
1373// are about to read. This means that forward references will resolve to
1374// something and when we reread the type later, we can replace the opaque type
1375// with a new resolved concrete type.
1376//
Reid Spencer46b002c2004-07-11 17:28:43 +00001377void BytecodeReader::ParseTypes(TypeListTy &Tab, unsigned NumEntries){
Reid Spencer060d25d2004-06-29 23:29:38 +00001378 assert(Tab.size() == 0 && "should not have read type constants in before!");
1379
1380 // Insert a bunch of opaque types to be resolved later...
1381 Tab.reserve(NumEntries);
1382 for (unsigned i = 0; i != NumEntries; ++i)
1383 Tab.push_back(OpaqueType::get());
1384
Misha Brukman8a96c532005-04-21 21:44:41 +00001385 if (Handler)
Reid Spencer5b472d92004-08-21 20:49:23 +00001386 Handler->handleTypeList(NumEntries);
1387
Chris Lattnereebac5f2005-10-03 21:26:53 +00001388 // If we are about to resolve types, make sure the type cache is clear.
1389 if (NumEntries)
1390 ModuleTypeIDCache.clear();
1391
Reid Spencer060d25d2004-06-29 23:29:38 +00001392 // Loop through reading all of the types. Forward types will make use of the
1393 // opaque types just inserted.
1394 //
1395 for (unsigned i = 0; i != NumEntries; ++i) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001396 const Type* NewTy = ParseType();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001397 const Type* OldTy = Tab[i].get();
Misha Brukman8a96c532005-04-21 21:44:41 +00001398 if (NewTy == 0)
Reid Spencer24399722004-07-09 22:21:33 +00001399 error("Couldn't parse type!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001400
Misha Brukman8a96c532005-04-21 21:44:41 +00001401 // Don't directly push the new type on the Tab. Instead we want to replace
Reid Spencer060d25d2004-06-29 23:29:38 +00001402 // the opaque type we previously inserted with the new concrete value. This
1403 // approach helps with forward references to types. The refinement from the
1404 // abstract (opaque) type to the new type causes all uses of the abstract
1405 // type to use the concrete type (NewTy). This will also cause the opaque
1406 // type to be deleted.
1407 cast<DerivedType>(const_cast<Type*>(OldTy))->refineAbstractTypeTo(NewTy);
1408
1409 // This should have replaced the old opaque type with the new type in the
1410 // value table... or with a preexisting type that was already in the system.
1411 // Let's just make sure it did.
1412 assert(Tab[i] != OldTy && "refineAbstractType didn't work!");
1413 }
1414}
1415
Reid Spencer04cde2c2004-07-04 11:33:49 +00001416/// Parse a single constant value
Chris Lattner3bc5a602006-01-25 23:08:15 +00001417Value *BytecodeReader::ParseConstantPoolValue(unsigned TypeID) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001418 // We must check for a ConstantExpr before switching by type because
1419 // a ConstantExpr can be of any type, and has no explicit value.
Misha Brukman8a96c532005-04-21 21:44:41 +00001420 //
Reid Spencer060d25d2004-06-29 23:29:38 +00001421 // 0 if not expr; numArgs if is expr
1422 unsigned isExprNumArgs = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001423
Reid Spencer060d25d2004-06-29 23:29:38 +00001424 if (isExprNumArgs) {
Chris Lattner3bc5a602006-01-25 23:08:15 +00001425 if (!hasNoUndefValue) {
1426 // 'undef' is encoded with 'exprnumargs' == 1.
1427 if (isExprNumArgs == 1)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001428 return UndefValue::get(getType(TypeID));
Misha Brukman8a96c532005-04-21 21:44:41 +00001429
Chris Lattner3bc5a602006-01-25 23:08:15 +00001430 // Inline asm is encoded with exprnumargs == ~0U.
1431 if (isExprNumArgs == ~0U) {
1432 std::string AsmStr = read_str();
1433 std::string ConstraintStr = read_str();
1434 unsigned Flags = read_vbr_uint();
1435
1436 const PointerType *PTy = dyn_cast<PointerType>(getType(TypeID));
1437 const FunctionType *FTy =
1438 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
1439
1440 if (!FTy || !InlineAsm::Verify(FTy, ConstraintStr))
1441 error("Invalid constraints for inline asm");
1442 if (Flags & ~1U)
1443 error("Invalid flags for inline asm");
1444 bool HasSideEffects = Flags & 1;
1445 return InlineAsm::get(FTy, AsmStr, ConstraintStr, HasSideEffects);
1446 }
1447
1448 --isExprNumArgs;
1449 }
1450
Reid Spencer060d25d2004-06-29 23:29:38 +00001451 // FIXME: Encoding of constant exprs could be much more compact!
1452 std::vector<Constant*> ArgVec;
1453 ArgVec.reserve(isExprNumArgs);
1454 unsigned Opcode = read_vbr_uint();
Chris Lattnera79e7cc2004-10-16 18:18:16 +00001455
1456 // Bytecode files before LLVM 1.4 need have a missing terminator inst.
1457 if (hasNoUnreachableInst) Opcode++;
Misha Brukman8a96c532005-04-21 21:44:41 +00001458
Reid Spencer060d25d2004-06-29 23:29:38 +00001459 // Read the slot number and types of each of the arguments
1460 for (unsigned i = 0; i != isExprNumArgs; ++i) {
1461 unsigned ArgValSlot = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001462 unsigned ArgTypeSlot = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001463 if (read_typeid(ArgTypeSlot))
1464 error("Invalid argument type (type type) for constant value");
Misha Brukman8a96c532005-04-21 21:44:41 +00001465
Reid Spencer060d25d2004-06-29 23:29:38 +00001466 // Get the arg value from its slot if it exists, otherwise a placeholder
1467 ArgVec.push_back(getConstantValue(ArgTypeSlot, ArgValSlot));
1468 }
Misha Brukman8a96c532005-04-21 21:44:41 +00001469
Reid Spencer060d25d2004-06-29 23:29:38 +00001470 // Construct a ConstantExpr of the appropriate kind
1471 if (isExprNumArgs == 1) { // All one-operand expressions
Reid Spencer46b002c2004-07-11 17:28:43 +00001472 if (Opcode != Instruction::Cast)
Chris Lattner02dce162004-12-04 05:28:27 +00001473 error("Only cast instruction has one argument for ConstantExpr");
Reid Spencer46b002c2004-07-11 17:28:43 +00001474
Reid Spencer060d25d2004-06-29 23:29:38 +00001475 Constant* Result = ConstantExpr::getCast(ArgVec[0], getType(TypeID));
Reid Spencer04cde2c2004-07-04 11:33:49 +00001476 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001477 return Result;
1478 } else if (Opcode == Instruction::GetElementPtr) { // GetElementPtr
1479 std::vector<Constant*> IdxList(ArgVec.begin()+1, ArgVec.end());
1480
1481 if (hasRestrictedGEPTypes) {
1482 const Type *BaseTy = ArgVec[0]->getType();
1483 generic_gep_type_iterator<std::vector<Constant*>::iterator>
1484 GTI = gep_type_begin(BaseTy, IdxList.begin(), IdxList.end()),
1485 E = gep_type_end(BaseTy, IdxList.begin(), IdxList.end());
1486 for (unsigned i = 0; GTI != E; ++GTI, ++i)
1487 if (isa<StructType>(*GTI)) {
1488 if (IdxList[i]->getType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001489 error("Invalid index for getelementptr!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001490 IdxList[i] = ConstantExpr::getCast(IdxList[i], Type::UIntTy);
1491 }
1492 }
1493
1494 Constant* Result = ConstantExpr::getGetElementPtr(ArgVec[0], IdxList);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001495 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001496 return Result;
1497 } else if (Opcode == Instruction::Select) {
Reid Spencer46b002c2004-07-11 17:28:43 +00001498 if (ArgVec.size() != 3)
1499 error("Select instruction must have three arguments.");
Misha Brukman8a96c532005-04-21 21:44:41 +00001500 Constant* Result = ConstantExpr::getSelect(ArgVec[0], ArgVec[1],
Reid Spencer04cde2c2004-07-04 11:33:49 +00001501 ArgVec[2]);
1502 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001503 return Result;
Robert Bocchinofee31b32006-01-10 19:04:39 +00001504 } else if (Opcode == Instruction::ExtractElement) {
Chris Lattner59fecec2006-04-08 04:09:19 +00001505 if (ArgVec.size() != 2 ||
1506 !ExtractElementInst::isValidOperands(ArgVec[0], ArgVec[1]))
1507 error("Invalid extractelement constand expr arguments");
Robert Bocchinofee31b32006-01-10 19:04:39 +00001508 Constant* Result = ConstantExpr::getExtractElement(ArgVec[0], ArgVec[1]);
1509 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
1510 return Result;
Robert Bocchinob1f240b2006-01-17 20:06:35 +00001511 } else if (Opcode == Instruction::InsertElement) {
Chris Lattner59fecec2006-04-08 04:09:19 +00001512 if (ArgVec.size() != 3 ||
1513 !InsertElementInst::isValidOperands(ArgVec[0], ArgVec[1], ArgVec[2]))
1514 error("Invalid insertelement constand expr arguments");
1515
1516 Constant *Result =
Robert Bocchinob1f240b2006-01-17 20:06:35 +00001517 ConstantExpr::getInsertElement(ArgVec[0], ArgVec[1], ArgVec[2]);
1518 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
1519 return Result;
Chris Lattner30b44b62006-04-08 01:17:59 +00001520 } else if (Opcode == Instruction::ShuffleVector) {
1521 if (ArgVec.size() != 3 ||
1522 !ShuffleVectorInst::isValidOperands(ArgVec[0], ArgVec[1], ArgVec[2]))
Chris Lattner59fecec2006-04-08 04:09:19 +00001523 error("Invalid shufflevector constant expr arguments.");
Chris Lattner30b44b62006-04-08 01:17:59 +00001524 Constant *Result =
1525 ConstantExpr::getShuffleVector(ArgVec[0], ArgVec[1], ArgVec[2]);
1526 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
1527 return Result;
Reid Spencer060d25d2004-06-29 23:29:38 +00001528 } else { // All other 2-operand expressions
1529 Constant* Result = ConstantExpr::get(Opcode, ArgVec[0], ArgVec[1]);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001530 if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result);
Reid Spencer060d25d2004-06-29 23:29:38 +00001531 return Result;
1532 }
1533 }
Misha Brukman8a96c532005-04-21 21:44:41 +00001534
Reid Spencer060d25d2004-06-29 23:29:38 +00001535 // Ok, not an ConstantExpr. We now know how to read the given type...
1536 const Type *Ty = getType(TypeID);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001537 Constant *Result = 0;
Reid Spencer060d25d2004-06-29 23:29:38 +00001538 switch (Ty->getTypeID()) {
1539 case Type::BoolTyID: {
1540 unsigned Val = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001541 if (Val != 0 && Val != 1)
Reid Spencer24399722004-07-09 22:21:33 +00001542 error("Invalid boolean value read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001543 Result = ConstantBool::get(Val == 1);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001544 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001545 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001546 }
1547
1548 case Type::UByteTyID: // Unsigned integer types...
1549 case Type::UShortTyID:
1550 case Type::UIntTyID: {
1551 unsigned Val = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001552 if (!ConstantUInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001553 error("Invalid unsigned byte/short/int read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001554 Result = ConstantUInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001555 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001556 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001557 }
1558
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001559 case Type::ULongTyID:
1560 Result = ConstantUInt::get(Ty, read_vbr_uint64());
Reid Spencer04cde2c2004-07-04 11:33:49 +00001561 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001562 break;
1563
Reid Spencer060d25d2004-06-29 23:29:38 +00001564 case Type::SByteTyID: // Signed integer types...
1565 case Type::ShortTyID:
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001566 case Type::IntTyID:
1567 case Type::LongTyID: {
Reid Spencer060d25d2004-06-29 23:29:38 +00001568 int64_t Val = read_vbr_int64();
Misha Brukman8a96c532005-04-21 21:44:41 +00001569 if (!ConstantSInt::isValueValidForType(Ty, Val))
Reid Spencer24399722004-07-09 22:21:33 +00001570 error("Invalid signed byte/short/int/long read.");
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001571 Result = ConstantSInt::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001572 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001573 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001574 }
1575
1576 case Type::FloatTyID: {
Reid Spencer46b002c2004-07-11 17:28:43 +00001577 float Val;
1578 read_float(Val);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001579 Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001580 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001581 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001582 }
1583
1584 case Type::DoubleTyID: {
1585 double Val;
Reid Spencer46b002c2004-07-11 17:28:43 +00001586 read_double(Val);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001587 Result = ConstantFP::get(Ty, Val);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001588 if (Handler) Handler->handleConstantValue(Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001589 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001590 }
1591
Reid Spencer060d25d2004-06-29 23:29:38 +00001592 case Type::ArrayTyID: {
1593 const ArrayType *AT = cast<ArrayType>(Ty);
1594 unsigned NumElements = AT->getNumElements();
1595 unsigned TypeSlot = getTypeSlot(AT->getElementType());
1596 std::vector<Constant*> Elements;
1597 Elements.reserve(NumElements);
1598 while (NumElements--) // Read all of the elements of the constant.
1599 Elements.push_back(getConstantValue(TypeSlot,
1600 read_vbr_uint()));
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001601 Result = ConstantArray::get(AT, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001602 if (Handler) Handler->handleConstantArray(AT, Elements, TypeSlot, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001603 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001604 }
1605
1606 case Type::StructTyID: {
1607 const StructType *ST = cast<StructType>(Ty);
1608
1609 std::vector<Constant *> Elements;
1610 Elements.reserve(ST->getNumElements());
1611 for (unsigned i = 0; i != ST->getNumElements(); ++i)
1612 Elements.push_back(getConstantValue(ST->getElementType(i),
1613 read_vbr_uint()));
1614
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001615 Result = ConstantStruct::get(ST, Elements);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001616 if (Handler) Handler->handleConstantStruct(ST, Elements, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001617 break;
Misha Brukman8a96c532005-04-21 21:44:41 +00001618 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001619
Brian Gaeke715c90b2004-08-20 06:00:58 +00001620 case Type::PackedTyID: {
1621 const PackedType *PT = cast<PackedType>(Ty);
1622 unsigned NumElements = PT->getNumElements();
1623 unsigned TypeSlot = getTypeSlot(PT->getElementType());
1624 std::vector<Constant*> Elements;
1625 Elements.reserve(NumElements);
1626 while (NumElements--) // Read all of the elements of the constant.
1627 Elements.push_back(getConstantValue(TypeSlot,
1628 read_vbr_uint()));
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001629 Result = ConstantPacked::get(PT, Elements);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001630 if (Handler) Handler->handleConstantPacked(PT, Elements, TypeSlot, Result);
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001631 break;
Brian Gaeke715c90b2004-08-20 06:00:58 +00001632 }
1633
Chris Lattner638c3812004-11-19 16:24:05 +00001634 case Type::PointerTyID: { // ConstantPointerRef value (backwards compat).
Reid Spencer060d25d2004-06-29 23:29:38 +00001635 const PointerType *PT = cast<PointerType>(Ty);
1636 unsigned Slot = read_vbr_uint();
Misha Brukman8a96c532005-04-21 21:44:41 +00001637
Reid Spencer060d25d2004-06-29 23:29:38 +00001638 // Check to see if we have already read this global variable...
1639 Value *Val = getValue(TypeID, Slot, false);
Reid Spencer060d25d2004-06-29 23:29:38 +00001640 if (Val) {
Chris Lattnerbcb11cf2004-07-27 02:34:49 +00001641 GlobalValue *GV = dyn_cast<GlobalValue>(Val);
1642 if (!GV) error("GlobalValue not in ValueTable!");
1643 if (Handler) Handler->handleConstantPointer(PT, Slot, GV);
1644 return GV;
Reid Spencer060d25d2004-06-29 23:29:38 +00001645 } else {
Reid Spencer24399722004-07-09 22:21:33 +00001646 error("Forward references are not allowed here.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001647 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001648 }
1649
1650 default:
Reid Spencer24399722004-07-09 22:21:33 +00001651 error("Don't know how to deserialize constant value of type '" +
Reid Spencer060d25d2004-06-29 23:29:38 +00001652 Ty->getDescription());
1653 break;
1654 }
Chris Lattnerd2cfb7a2006-04-07 05:00:02 +00001655
1656 // Check that we didn't read a null constant if they are implicit for this
1657 // type plane. Do not do this check for constantexprs, as they may be folded
1658 // to a null value in a way that isn't predicted when a .bc file is initially
1659 // produced.
1660 assert((!isa<Constant>(Result) || !cast<Constant>(Result)->isNullValue()) ||
1661 !hasImplicitNull(TypeID) &&
1662 "Cannot read null values from bytecode!");
1663 return Result;
Reid Spencer060d25d2004-06-29 23:29:38 +00001664}
1665
Misha Brukman8a96c532005-04-21 21:44:41 +00001666/// Resolve references for constants. This function resolves the forward
1667/// referenced constants in the ConstantFwdRefs map. It uses the
Reid Spencer04cde2c2004-07-04 11:33:49 +00001668/// replaceAllUsesWith method of Value class to substitute the placeholder
1669/// instance with the actual instance.
Chris Lattner389bd042004-12-09 06:19:44 +00001670void BytecodeReader::ResolveReferencesToConstant(Constant *NewV, unsigned Typ,
1671 unsigned Slot) {
Chris Lattner29b789b2003-11-19 17:27:18 +00001672 ConstantRefsType::iterator I =
Chris Lattner389bd042004-12-09 06:19:44 +00001673 ConstantFwdRefs.find(std::make_pair(Typ, Slot));
Chris Lattner29b789b2003-11-19 17:27:18 +00001674 if (I == ConstantFwdRefs.end()) return; // Never forward referenced?
Chris Lattner00950542001-06-06 20:29:01 +00001675
Chris Lattner29b789b2003-11-19 17:27:18 +00001676 Value *PH = I->second; // Get the placeholder...
1677 PH->replaceAllUsesWith(NewV);
1678 delete PH; // Delete the old placeholder
1679 ConstantFwdRefs.erase(I); // Remove the map entry for it
Vikram S. Advec1e4a812002-07-14 23:04:18 +00001680}
1681
Reid Spencer04cde2c2004-07-04 11:33:49 +00001682/// Parse the constant strings section.
Reid Spencer060d25d2004-06-29 23:29:38 +00001683void BytecodeReader::ParseStringConstants(unsigned NumEntries, ValueTable &Tab){
1684 for (; NumEntries; --NumEntries) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001685 unsigned Typ = 0;
Reid Spencer46b002c2004-07-11 17:28:43 +00001686 if (read_typeid(Typ))
Reid Spencer24399722004-07-09 22:21:33 +00001687 error("Invalid type (type type) for string constant");
Reid Spencer060d25d2004-06-29 23:29:38 +00001688 const Type *Ty = getType(Typ);
1689 if (!isa<ArrayType>(Ty))
Reid Spencer24399722004-07-09 22:21:33 +00001690 error("String constant data invalid!");
Misha Brukman8a96c532005-04-21 21:44:41 +00001691
Reid Spencer060d25d2004-06-29 23:29:38 +00001692 const ArrayType *ATy = cast<ArrayType>(Ty);
1693 if (ATy->getElementType() != Type::SByteTy &&
1694 ATy->getElementType() != Type::UByteTy)
Reid Spencer24399722004-07-09 22:21:33 +00001695 error("String constant data invalid!");
Misha Brukman8a96c532005-04-21 21:44:41 +00001696
Reid Spencer060d25d2004-06-29 23:29:38 +00001697 // Read character data. The type tells us how long the string is.
Misha Brukman8a96c532005-04-21 21:44:41 +00001698 char *Data = reinterpret_cast<char *>(alloca(ATy->getNumElements()));
Reid Spencer060d25d2004-06-29 23:29:38 +00001699 read_data(Data, Data+ATy->getNumElements());
Chris Lattner52e20b02003-03-19 20:54:26 +00001700
Reid Spencer060d25d2004-06-29 23:29:38 +00001701 std::vector<Constant*> Elements(ATy->getNumElements());
1702 if (ATy->getElementType() == Type::SByteTy)
1703 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1704 Elements[i] = ConstantSInt::get(Type::SByteTy, (signed char)Data[i]);
1705 else
1706 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
1707 Elements[i] = ConstantUInt::get(Type::UByteTy, (unsigned char)Data[i]);
Misha Brukman12c29d12003-09-22 23:38:23 +00001708
Reid Spencer060d25d2004-06-29 23:29:38 +00001709 // Create the constant, inserting it as needed.
1710 Constant *C = ConstantArray::get(ATy, Elements);
1711 unsigned Slot = insertValue(C, Typ, Tab);
Chris Lattner389bd042004-12-09 06:19:44 +00001712 ResolveReferencesToConstant(C, Typ, Slot);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001713 if (Handler) Handler->handleConstantString(cast<ConstantArray>(C));
Reid Spencer060d25d2004-06-29 23:29:38 +00001714 }
Misha Brukman12c29d12003-09-22 23:38:23 +00001715}
1716
Reid Spencer04cde2c2004-07-04 11:33:49 +00001717/// Parse the constant pool.
Misha Brukman8a96c532005-04-21 21:44:41 +00001718void BytecodeReader::ParseConstantPool(ValueTable &Tab,
Reid Spencer04cde2c2004-07-04 11:33:49 +00001719 TypeListTy &TypeTab,
Reid Spencer46b002c2004-07-11 17:28:43 +00001720 bool isFunction) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001721 if (Handler) Handler->handleGlobalConstantsBegin();
1722
1723 /// In LLVM 1.3 Type does not derive from Value so the types
1724 /// do not occupy a plane. Consequently, we read the types
1725 /// first in the constant pool.
Reid Spencer46b002c2004-07-11 17:28:43 +00001726 if (isFunction && !hasTypeDerivedFromValue) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001727 unsigned NumEntries = read_vbr_uint();
Reid Spencer46b002c2004-07-11 17:28:43 +00001728 ParseTypes(TypeTab, NumEntries);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001729 }
1730
Reid Spencer46b002c2004-07-11 17:28:43 +00001731 while (moreInBlock()) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001732 unsigned NumEntries = read_vbr_uint();
Reid Spencer04cde2c2004-07-04 11:33:49 +00001733 unsigned Typ = 0;
1734 bool isTypeType = read_typeid(Typ);
1735
1736 /// In LLVM 1.2 and before, Types were written to the
1737 /// bytecode file in the "Type Type" plane (#12).
1738 /// In 1.3 plane 12 is now the label plane. Handle this here.
Reid Spencer46b002c2004-07-11 17:28:43 +00001739 if (isTypeType) {
1740 ParseTypes(TypeTab, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00001741 } else if (Typ == Type::VoidTyID) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001742 /// Use of Type::VoidTyID is a misnomer. It actually means
1743 /// that the following plane is constant strings
Reid Spencer060d25d2004-06-29 23:29:38 +00001744 assert(&Tab == &ModuleValues && "Cannot read strings in functions!");
1745 ParseStringConstants(NumEntries, Tab);
1746 } else {
1747 for (unsigned i = 0; i < NumEntries; ++i) {
Chris Lattner3bc5a602006-01-25 23:08:15 +00001748 Value *V = ParseConstantPoolValue(Typ);
1749 assert(V && "ParseConstantPoolValue returned NULL!");
1750 unsigned Slot = insertValue(V, Typ, Tab);
Chris Lattner29b789b2003-11-19 17:27:18 +00001751
Reid Spencer060d25d2004-06-29 23:29:38 +00001752 // If we are reading a function constant table, make sure that we adjust
1753 // the slot number to be the real global constant number.
1754 //
1755 if (&Tab != &ModuleValues && Typ < ModuleValues.size() &&
1756 ModuleValues[Typ])
1757 Slot += ModuleValues[Typ]->size();
Chris Lattner3bc5a602006-01-25 23:08:15 +00001758 if (Constant *C = dyn_cast<Constant>(V))
1759 ResolveReferencesToConstant(C, Typ, Slot);
Reid Spencer060d25d2004-06-29 23:29:38 +00001760 }
1761 }
1762 }
Chris Lattner02dce162004-12-04 05:28:27 +00001763
1764 // After we have finished parsing the constant pool, we had better not have
1765 // any dangling references left.
Reid Spencer3c391272004-12-04 22:19:53 +00001766 if (!ConstantFwdRefs.empty()) {
Reid Spencer3c391272004-12-04 22:19:53 +00001767 ConstantRefsType::const_iterator I = ConstantFwdRefs.begin();
Reid Spencer3c391272004-12-04 22:19:53 +00001768 Constant* missingConst = I->second;
Misha Brukman8a96c532005-04-21 21:44:41 +00001769 error(utostr(ConstantFwdRefs.size()) +
1770 " unresolved constant reference exist. First one is '" +
1771 missingConst->getName() + "' of type '" +
Chris Lattner389bd042004-12-09 06:19:44 +00001772 missingConst->getType()->getDescription() + "'.");
Reid Spencer3c391272004-12-04 22:19:53 +00001773 }
Chris Lattner02dce162004-12-04 05:28:27 +00001774
Reid Spencer060d25d2004-06-29 23:29:38 +00001775 checkPastBlockEnd("Constant Pool");
Reid Spencer04cde2c2004-07-04 11:33:49 +00001776 if (Handler) Handler->handleGlobalConstantsEnd();
Reid Spencer060d25d2004-06-29 23:29:38 +00001777}
Chris Lattner00950542001-06-06 20:29:01 +00001778
Reid Spencer04cde2c2004-07-04 11:33:49 +00001779/// Parse the contents of a function. Note that this function can be
1780/// called lazily by materializeFunction
1781/// @see materializeFunction
Reid Spencer46b002c2004-07-11 17:28:43 +00001782void BytecodeReader::ParseFunctionBody(Function* F) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001783
1784 unsigned FuncSize = BlockEnd - At;
Chris Lattnere3869c82003-04-16 21:16:05 +00001785 GlobalValue::LinkageTypes Linkage = GlobalValue::ExternalLinkage;
1786
Reid Spencer060d25d2004-06-29 23:29:38 +00001787 unsigned LinkageType = read_vbr_uint();
Chris Lattnerc08912f2004-01-14 16:44:44 +00001788 switch (LinkageType) {
1789 case 0: Linkage = GlobalValue::ExternalLinkage; break;
1790 case 1: Linkage = GlobalValue::WeakLinkage; break;
1791 case 2: Linkage = GlobalValue::AppendingLinkage; break;
1792 case 3: Linkage = GlobalValue::InternalLinkage; break;
1793 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Reid Spencer060d25d2004-06-29 23:29:38 +00001794 default:
Reid Spencer24399722004-07-09 22:21:33 +00001795 error("Invalid linkage type for Function.");
Reid Spencer060d25d2004-06-29 23:29:38 +00001796 Linkage = GlobalValue::InternalLinkage;
1797 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00001798 }
Chris Lattnerd23b1d32001-11-26 18:56:10 +00001799
Reid Spencer46b002c2004-07-11 17:28:43 +00001800 F->setLinkage(Linkage);
Reid Spencer04cde2c2004-07-04 11:33:49 +00001801 if (Handler) Handler->handleFunctionBegin(F,FuncSize);
Chris Lattner00950542001-06-06 20:29:01 +00001802
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001803 // Keep track of how many basic blocks we have read in...
1804 unsigned BlockNum = 0;
Chris Lattner89e02532004-01-18 21:08:15 +00001805 bool InsertedArguments = false;
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001806
Reid Spencer060d25d2004-06-29 23:29:38 +00001807 BufPtr MyEnd = BlockEnd;
Reid Spencer46b002c2004-07-11 17:28:43 +00001808 while (At < MyEnd) {
Chris Lattner00950542001-06-06 20:29:01 +00001809 unsigned Type, Size;
Reid Spencer060d25d2004-06-29 23:29:38 +00001810 BufPtr OldAt = At;
1811 read_block(Type, Size);
Chris Lattner00950542001-06-06 20:29:01 +00001812
1813 switch (Type) {
Reid Spencerad89bd62004-07-25 18:07:36 +00001814 case BytecodeFormat::ConstantPoolBlockID:
Chris Lattner89e02532004-01-18 21:08:15 +00001815 if (!InsertedArguments) {
1816 // Insert arguments into the value table before we parse the first basic
1817 // block in the function, but after we potentially read in the
1818 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001819 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001820 InsertedArguments = true;
1821 }
1822
Reid Spencer04cde2c2004-07-04 11:33:49 +00001823 ParseConstantPool(FunctionValues, FunctionTypes, true);
Chris Lattner00950542001-06-06 20:29:01 +00001824 break;
1825
Reid Spencerad89bd62004-07-25 18:07:36 +00001826 case BytecodeFormat::CompactionTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001827 ParseCompactionTable();
Chris Lattner89e02532004-01-18 21:08:15 +00001828 break;
1829
Chris Lattner00950542001-06-06 20:29:01 +00001830 case BytecodeFormat::BasicBlock: {
Chris Lattner89e02532004-01-18 21:08:15 +00001831 if (!InsertedArguments) {
1832 // Insert arguments into the value table before we parse the first basic
1833 // block in the function, but after we potentially read in the
1834 // compaction table.
Reid Spencer04cde2c2004-07-04 11:33:49 +00001835 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001836 InsertedArguments = true;
1837 }
1838
Reid Spencer060d25d2004-06-29 23:29:38 +00001839 BasicBlock *BB = ParseBasicBlock(BlockNum++);
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001840 F->getBasicBlockList().push_back(BB);
Chris Lattner00950542001-06-06 20:29:01 +00001841 break;
1842 }
1843
Reid Spencerad89bd62004-07-25 18:07:36 +00001844 case BytecodeFormat::InstructionListBlockID: {
Chris Lattner89e02532004-01-18 21:08:15 +00001845 // Insert arguments into the value table before we parse the instruction
1846 // list for the function, but after we potentially read in the compaction
1847 // table.
1848 if (!InsertedArguments) {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001849 insertArguments(F);
Chris Lattner89e02532004-01-18 21:08:15 +00001850 InsertedArguments = true;
1851 }
1852
Misha Brukman8a96c532005-04-21 21:44:41 +00001853 if (BlockNum)
Reid Spencer24399722004-07-09 22:21:33 +00001854 error("Already parsed basic blocks!");
Reid Spencer060d25d2004-06-29 23:29:38 +00001855 BlockNum = ParseInstructionList(F);
Chris Lattner8d1dbd22003-12-01 07:05:31 +00001856 break;
1857 }
1858
Reid Spencerad89bd62004-07-25 18:07:36 +00001859 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00001860 ParseSymbolTable(F, &F->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00001861 break;
1862
1863 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00001864 At += Size;
Misha Brukman8a96c532005-04-21 21:44:41 +00001865 if (OldAt > At)
Reid Spencer24399722004-07-09 22:21:33 +00001866 error("Wrapped around reading bytecode.");
Chris Lattner00950542001-06-06 20:29:01 +00001867 break;
1868 }
Reid Spencer060d25d2004-06-29 23:29:38 +00001869 BlockEnd = MyEnd;
Chris Lattner1d670cc2001-09-07 16:37:43 +00001870
Misha Brukman12c29d12003-09-22 23:38:23 +00001871 // Malformed bc file if read past end of block.
Reid Spencer060d25d2004-06-29 23:29:38 +00001872 align32();
Chris Lattner00950542001-06-06 20:29:01 +00001873 }
1874
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001875 // Make sure there were no references to non-existant basic blocks.
1876 if (BlockNum != ParsedBasicBlocks.size())
Reid Spencer24399722004-07-09 22:21:33 +00001877 error("Illegal basic block operand reference");
Reid Spencer060d25d2004-06-29 23:29:38 +00001878
Chris Lattner4ee8ef22003-10-08 22:52:54 +00001879 ParsedBasicBlocks.clear();
1880
Chris Lattner97330cf2003-10-09 23:10:14 +00001881 // Resolve forward references. Replace any uses of a forward reference value
1882 // with the real value.
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001883 while (!ForwardReferences.empty()) {
Chris Lattnerc4d69162004-12-09 04:51:50 +00001884 std::map<std::pair<unsigned,unsigned>, Value*>::iterator
1885 I = ForwardReferences.begin();
1886 Value *V = getValue(I->first.first, I->first.second, false);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001887 Value *PlaceHolder = I->second;
Chris Lattnerc4d69162004-12-09 04:51:50 +00001888 PlaceHolder->replaceAllUsesWith(V);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001889 ForwardReferences.erase(I);
Chris Lattner8eb10ce2003-10-09 06:05:40 +00001890 delete PlaceHolder;
Chris Lattner6e448022003-10-08 21:51:46 +00001891 }
Chris Lattner00950542001-06-06 20:29:01 +00001892
Reid Spencere2a5fb02006-01-27 11:49:27 +00001893 // If upgraded intrinsic functions were detected during reading of the
1894 // module information, then we need to look for instructions that need to
1895 // be upgraded. This can't be done while the instructions are read in because
1896 // additional instructions inserted mess up the slot numbering.
1897 if (!upgradedFunctions.empty()) {
1898 for (Function::iterator BI = F->begin(), BE = F->end(); BI != BE; ++BI)
1899 for (BasicBlock::iterator II = BI->begin(), IE = BI->end();
Jim Laskeyf4321a32006-03-13 13:07:37 +00001900 II != IE;)
1901 if (CallInst* CI = dyn_cast<CallInst>(II++)) {
Reid Spencere2a5fb02006-01-27 11:49:27 +00001902 std::map<Function*,Function*>::iterator FI =
1903 upgradedFunctions.find(CI->getCalledFunction());
Chris Lattnerbad08002006-03-02 23:59:12 +00001904 if (FI != upgradedFunctions.end())
1905 UpgradeIntrinsicCall(CI, FI->second);
Reid Spencere2a5fb02006-01-27 11:49:27 +00001906 }
1907 }
1908
Misha Brukman12c29d12003-09-22 23:38:23 +00001909 // Clear out function-level types...
Reid Spencer060d25d2004-06-29 23:29:38 +00001910 FunctionTypes.clear();
1911 CompactionTypes.clear();
1912 CompactionValues.clear();
1913 freeTable(FunctionValues);
1914
Reid Spencer04cde2c2004-07-04 11:33:49 +00001915 if (Handler) Handler->handleFunctionEnd(F);
Chris Lattner00950542001-06-06 20:29:01 +00001916}
1917
Reid Spencer04cde2c2004-07-04 11:33:49 +00001918/// This function parses LLVM functions lazily. It obtains the type of the
1919/// function and records where the body of the function is in the bytecode
Misha Brukman8a96c532005-04-21 21:44:41 +00001920/// buffer. The caller can then use the ParseNextFunction and
Reid Spencer04cde2c2004-07-04 11:33:49 +00001921/// ParseAllFunctionBodies to get handler events for the functions.
Reid Spencer060d25d2004-06-29 23:29:38 +00001922void BytecodeReader::ParseFunctionLazily() {
1923 if (FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00001924 error("FunctionSignatureList empty!");
Chris Lattner89e02532004-01-18 21:08:15 +00001925
Reid Spencer060d25d2004-06-29 23:29:38 +00001926 Function *Func = FunctionSignatureList.back();
1927 FunctionSignatureList.pop_back();
Chris Lattner24102432004-01-18 22:35:34 +00001928
Reid Spencer060d25d2004-06-29 23:29:38 +00001929 // Save the information for future reading of the function
1930 LazyFunctionLoadMap[Func] = LazyFunctionInfo(BlockStart, BlockEnd);
Chris Lattner89e02532004-01-18 21:08:15 +00001931
Misha Brukmana3e6ad62004-11-14 21:02:55 +00001932 // This function has a body but it's not loaded so it appears `External'.
1933 // Mark it as a `Ghost' instead to notify the users that it has a body.
1934 Func->setLinkage(GlobalValue::GhostLinkage);
1935
Reid Spencer060d25d2004-06-29 23:29:38 +00001936 // Pretend we've `parsed' this function
1937 At = BlockEnd;
1938}
Chris Lattner89e02532004-01-18 21:08:15 +00001939
Misha Brukman8a96c532005-04-21 21:44:41 +00001940/// The ParserFunction method lazily parses one function. Use this method to
1941/// casue the parser to parse a specific function in the module. Note that
1942/// this will remove the function from what is to be included by
Reid Spencer04cde2c2004-07-04 11:33:49 +00001943/// ParseAllFunctionBodies.
1944/// @see ParseAllFunctionBodies
1945/// @see ParseBytecode
Reid Spencer99655e12006-08-25 19:54:53 +00001946bool BytecodeReader::ParseFunction(Function* Func, std::string* ErrMsg) {
1947
1948 if (setjmp(context))
1949 return true;
1950
Reid Spencer060d25d2004-06-29 23:29:38 +00001951 // Find {start, end} pointers and slot in the map. If not there, we're done.
1952 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.find(Func);
Chris Lattner89e02532004-01-18 21:08:15 +00001953
Reid Spencer060d25d2004-06-29 23:29:38 +00001954 // Make sure we found it
Reid Spencer46b002c2004-07-11 17:28:43 +00001955 if (Fi == LazyFunctionLoadMap.end()) {
Reid Spencer24399722004-07-09 22:21:33 +00001956 error("Unrecognized function of type " + Func->getType()->getDescription());
Reid Spencer99655e12006-08-25 19:54:53 +00001957 return true;
Chris Lattner89e02532004-01-18 21:08:15 +00001958 }
1959
Reid Spencer060d25d2004-06-29 23:29:38 +00001960 BlockStart = At = Fi->second.Buf;
1961 BlockEnd = Fi->second.EndBuf;
Reid Spencer24399722004-07-09 22:21:33 +00001962 assert(Fi->first == Func && "Found wrong function?");
Reid Spencer060d25d2004-06-29 23:29:38 +00001963
1964 LazyFunctionLoadMap.erase(Fi);
1965
Reid Spencer46b002c2004-07-11 17:28:43 +00001966 this->ParseFunctionBody(Func);
Reid Spencer99655e12006-08-25 19:54:53 +00001967 return false;
Chris Lattner89e02532004-01-18 21:08:15 +00001968}
1969
Reid Spencer04cde2c2004-07-04 11:33:49 +00001970/// The ParseAllFunctionBodies method parses through all the previously
1971/// unparsed functions in the bytecode file. If you want to completely parse
1972/// a bytecode file, this method should be called after Parsebytecode because
1973/// Parsebytecode only records the locations in the bytecode file of where
1974/// the function definitions are located. This function uses that information
1975/// to materialize the functions.
1976/// @see ParseBytecode
Reid Spencer99655e12006-08-25 19:54:53 +00001977bool BytecodeReader::ParseAllFunctionBodies(std::string* ErrMsg) {
1978 if (setjmp(context))
1979 return true;
1980
Reid Spencer060d25d2004-06-29 23:29:38 +00001981 LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.begin();
1982 LazyFunctionMap::iterator Fe = LazyFunctionLoadMap.end();
Chris Lattner89e02532004-01-18 21:08:15 +00001983
Reid Spencer46b002c2004-07-11 17:28:43 +00001984 while (Fi != Fe) {
Reid Spencer060d25d2004-06-29 23:29:38 +00001985 Function* Func = Fi->first;
1986 BlockStart = At = Fi->second.Buf;
1987 BlockEnd = Fi->second.EndBuf;
Chris Lattnerb52f1c22005-02-13 17:48:18 +00001988 ParseFunctionBody(Func);
Reid Spencer060d25d2004-06-29 23:29:38 +00001989 ++Fi;
1990 }
Chris Lattnerb52f1c22005-02-13 17:48:18 +00001991 LazyFunctionLoadMap.clear();
Reid Spencer99655e12006-08-25 19:54:53 +00001992 return false;
Reid Spencer060d25d2004-06-29 23:29:38 +00001993}
Chris Lattner89e02532004-01-18 21:08:15 +00001994
Reid Spencer04cde2c2004-07-04 11:33:49 +00001995/// Parse the global type list
Reid Spencer060d25d2004-06-29 23:29:38 +00001996void BytecodeReader::ParseGlobalTypes() {
Reid Spencer04cde2c2004-07-04 11:33:49 +00001997 // Read the number of types
1998 unsigned NumEntries = read_vbr_uint();
Reid Spencer011bed52004-07-09 21:13:53 +00001999
2000 // Ignore the type plane identifier for types if the bc file is pre 1.3
2001 if (hasTypeDerivedFromValue)
2002 read_vbr_uint();
2003
Reid Spencer46b002c2004-07-11 17:28:43 +00002004 ParseTypes(ModuleTypes, NumEntries);
Reid Spencer060d25d2004-06-29 23:29:38 +00002005}
2006
Reid Spencer04cde2c2004-07-04 11:33:49 +00002007/// Parse the Global info (types, global vars, constants)
Reid Spencer060d25d2004-06-29 23:29:38 +00002008void BytecodeReader::ParseModuleGlobalInfo() {
2009
Reid Spencer04cde2c2004-07-04 11:33:49 +00002010 if (Handler) Handler->handleModuleGlobalsBegin();
Chris Lattner00950542001-06-06 20:29:01 +00002011
Chris Lattner404cddf2005-11-12 01:33:40 +00002012 // SectionID - If a global has an explicit section specified, this map
2013 // remembers the ID until we can translate it into a string.
2014 std::map<GlobalValue*, unsigned> SectionID;
2015
Chris Lattner70cc3392001-09-10 07:58:01 +00002016 // Read global variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00002017 unsigned VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00002018 while (VarType != Type::VoidTyID) { // List is terminated by Void
Chris Lattner9dd87702004-04-03 23:43:42 +00002019 // VarType Fields: bit0 = isConstant, bit1 = hasInitializer, bit2,3,4 =
2020 // Linkage, bit4+ = slot#
2021 unsigned SlotNo = VarType >> 5;
Reid Spencer46b002c2004-07-11 17:28:43 +00002022 if (sanitizeTypeId(SlotNo))
Reid Spencer24399722004-07-09 22:21:33 +00002023 error("Invalid type (type type) for global var!");
Chris Lattner9dd87702004-04-03 23:43:42 +00002024 unsigned LinkageID = (VarType >> 2) & 7;
Reid Spencer060d25d2004-06-29 23:29:38 +00002025 bool isConstant = VarType & 1;
Chris Lattnerce5e04e2005-11-06 08:23:17 +00002026 bool hasInitializer = (VarType & 2) != 0;
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002027 unsigned Alignment = 0;
Chris Lattner404cddf2005-11-12 01:33:40 +00002028 unsigned GlobalSectionID = 0;
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002029
2030 // An extension word is present when linkage = 3 (internal) and hasinit = 0.
2031 if (LinkageID == 3 && !hasInitializer) {
2032 unsigned ExtWord = read_vbr_uint();
2033 // The extension word has this format: bit 0 = has initializer, bit 1-3 =
2034 // linkage, bit 4-8 = alignment (log2), bits 10+ = future use.
2035 hasInitializer = ExtWord & 1;
2036 LinkageID = (ExtWord >> 1) & 7;
2037 Alignment = (1 << ((ExtWord >> 4) & 31)) >> 1;
Chris Lattner404cddf2005-11-12 01:33:40 +00002038
2039 if (ExtWord & (1 << 9)) // Has a section ID.
2040 GlobalSectionID = read_vbr_uint();
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002041 }
Chris Lattnere3869c82003-04-16 21:16:05 +00002042
Chris Lattnerce5e04e2005-11-06 08:23:17 +00002043 GlobalValue::LinkageTypes Linkage;
Chris Lattnerc08912f2004-01-14 16:44:44 +00002044 switch (LinkageID) {
Chris Lattnerc08912f2004-01-14 16:44:44 +00002045 case 0: Linkage = GlobalValue::ExternalLinkage; break;
2046 case 1: Linkage = GlobalValue::WeakLinkage; break;
2047 case 2: Linkage = GlobalValue::AppendingLinkage; break;
2048 case 3: Linkage = GlobalValue::InternalLinkage; break;
2049 case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
Misha Brukman8a96c532005-04-21 21:44:41 +00002050 default:
Reid Spencer24399722004-07-09 22:21:33 +00002051 error("Unknown linkage type: " + utostr(LinkageID));
Reid Spencer060d25d2004-06-29 23:29:38 +00002052 Linkage = GlobalValue::InternalLinkage;
2053 break;
Chris Lattnere3869c82003-04-16 21:16:05 +00002054 }
2055
2056 const Type *Ty = getType(SlotNo);
Chris Lattnere73bd452005-11-06 07:43:39 +00002057 if (!Ty)
Reid Spencer24399722004-07-09 22:21:33 +00002058 error("Global has no type! SlotNo=" + utostr(SlotNo));
Reid Spencer060d25d2004-06-29 23:29:38 +00002059
Chris Lattnere73bd452005-11-06 07:43:39 +00002060 if (!isa<PointerType>(Ty))
Reid Spencer24399722004-07-09 22:21:33 +00002061 error("Global not a pointer type! Ty= " + Ty->getDescription());
Chris Lattner70cc3392001-09-10 07:58:01 +00002062
Chris Lattner52e20b02003-03-19 20:54:26 +00002063 const Type *ElTy = cast<PointerType>(Ty)->getElementType();
Chris Lattnerd70684f2001-09-18 04:01:05 +00002064
Chris Lattner70cc3392001-09-10 07:58:01 +00002065 // Create the global variable...
Reid Spencer060d25d2004-06-29 23:29:38 +00002066 GlobalVariable *GV = new GlobalVariable(ElTy, isConstant, Linkage,
Chris Lattner52e20b02003-03-19 20:54:26 +00002067 0, "", TheModule);
Chris Lattner8eb52dd2005-11-06 07:11:04 +00002068 GV->setAlignment(Alignment);
Chris Lattner29b789b2003-11-19 17:27:18 +00002069 insertValue(GV, SlotNo, ModuleValues);
Chris Lattner05950c32001-10-13 06:47:01 +00002070
Chris Lattner404cddf2005-11-12 01:33:40 +00002071 if (GlobalSectionID != 0)
2072 SectionID[GV] = GlobalSectionID;
2073
Reid Spencer060d25d2004-06-29 23:29:38 +00002074 unsigned initSlot = 0;
Misha Brukman8a96c532005-04-21 21:44:41 +00002075 if (hasInitializer) {
Reid Spencer060d25d2004-06-29 23:29:38 +00002076 initSlot = read_vbr_uint();
2077 GlobalInits.push_back(std::make_pair(GV, initSlot));
2078 }
2079
2080 // Notify handler about the global value.
Chris Lattner4a242b32004-10-14 01:39:18 +00002081 if (Handler)
2082 Handler->handleGlobalVariable(ElTy, isConstant, Linkage, SlotNo,initSlot);
Reid Spencer060d25d2004-06-29 23:29:38 +00002083
2084 // Get next item
2085 VarType = read_vbr_uint();
Chris Lattner70cc3392001-09-10 07:58:01 +00002086 }
2087
Chris Lattner52e20b02003-03-19 20:54:26 +00002088 // Read the function objects for all of the functions that are coming
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002089 unsigned FnSignature = read_vbr_uint();
Reid Spencer24399722004-07-09 22:21:33 +00002090
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002091 if (hasNoFlagsForFunctions)
2092 FnSignature = (FnSignature << 5) + 1;
2093
2094 // List is terminated by VoidTy.
Chris Lattnere73bd452005-11-06 07:43:39 +00002095 while (((FnSignature & (~0U >> 1)) >> 5) != Type::VoidTyID) {
2096 const Type *Ty = getType((FnSignature & (~0U >> 1)) >> 5);
Chris Lattner927b1852003-10-09 20:22:47 +00002097 if (!isa<PointerType>(Ty) ||
Reid Spencer060d25d2004-06-29 23:29:38 +00002098 !isa<FunctionType>(cast<PointerType>(Ty)->getElementType())) {
Misha Brukman8a96c532005-04-21 21:44:41 +00002099 error("Function not a pointer to function type! Ty = " +
Reid Spencer46b002c2004-07-11 17:28:43 +00002100 Ty->getDescription());
Reid Spencer060d25d2004-06-29 23:29:38 +00002101 }
Chris Lattner8cdc6b72002-10-23 00:51:54 +00002102
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002103 // We create functions by passing the underlying FunctionType to create...
Misha Brukman8a96c532005-04-21 21:44:41 +00002104 const FunctionType* FTy =
Reid Spencer060d25d2004-06-29 23:29:38 +00002105 cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
Chris Lattner00950542001-06-06 20:29:01 +00002106
Chris Lattner18549c22004-11-15 21:43:03 +00002107 // Insert the place holder.
Chris Lattner404cddf2005-11-12 01:33:40 +00002108 Function *Func = new Function(FTy, GlobalValue::ExternalLinkage,
Reid Spencer04cde2c2004-07-04 11:33:49 +00002109 "", TheModule);
Reid Spencere1e96c02006-01-19 07:02:16 +00002110
Chris Lattnere73bd452005-11-06 07:43:39 +00002111 insertValue(Func, (FnSignature & (~0U >> 1)) >> 5, ModuleValues);
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002112
2113 // Flags are not used yet.
Chris Lattner97fbc502004-11-15 22:38:52 +00002114 unsigned Flags = FnSignature & 31;
Chris Lattner00950542001-06-06 20:29:01 +00002115
Chris Lattner97fbc502004-11-15 22:38:52 +00002116 // Save this for later so we know type of lazily instantiated functions.
2117 // Note that known-external functions do not have FunctionInfo blocks, so we
2118 // do not add them to the FunctionSignatureList.
2119 if ((Flags & (1 << 4)) == 0)
2120 FunctionSignatureList.push_back(Func);
Chris Lattner52e20b02003-03-19 20:54:26 +00002121
Chris Lattnere73bd452005-11-06 07:43:39 +00002122 // Get the calling convention from the low bits.
2123 unsigned CC = Flags & 15;
2124 unsigned Alignment = 0;
2125 if (FnSignature & (1 << 31)) { // Has extension word?
2126 unsigned ExtWord = read_vbr_uint();
2127 Alignment = (1 << (ExtWord & 31)) >> 1;
2128 CC |= ((ExtWord >> 5) & 15) << 4;
Chris Lattner404cddf2005-11-12 01:33:40 +00002129
2130 if (ExtWord & (1 << 10)) // Has a section ID.
2131 SectionID[Func] = read_vbr_uint();
Chris Lattnere73bd452005-11-06 07:43:39 +00002132 }
2133
Chris Lattner54b369e2005-11-06 07:46:13 +00002134 Func->setCallingConv(CC-1);
Chris Lattnere73bd452005-11-06 07:43:39 +00002135 Func->setAlignment(Alignment);
Chris Lattner479ffeb2005-05-06 20:42:57 +00002136
Reid Spencer04cde2c2004-07-04 11:33:49 +00002137 if (Handler) Handler->handleFunctionDeclaration(Func);
Reid Spencer060d25d2004-06-29 23:29:38 +00002138
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002139 // Get the next function signature.
2140 FnSignature = read_vbr_uint();
2141 if (hasNoFlagsForFunctions)
2142 FnSignature = (FnSignature << 5) + 1;
Chris Lattner00950542001-06-06 20:29:01 +00002143 }
2144
Misha Brukman8a96c532005-04-21 21:44:41 +00002145 // Now that the function signature list is set up, reverse it so that we can
Chris Lattner74734132002-08-17 22:01:27 +00002146 // remove elements efficiently from the back of the vector.
2147 std::reverse(FunctionSignatureList.begin(), FunctionSignatureList.end());
Chris Lattner00950542001-06-06 20:29:01 +00002148
Chris Lattner404cddf2005-11-12 01:33:40 +00002149 /// SectionNames - This contains the list of section names encoded in the
2150 /// moduleinfoblock. Functions and globals with an explicit section index
2151 /// into this to get their section name.
2152 std::vector<std::string> SectionNames;
2153
2154 if (hasInconsistentModuleGlobalInfo) {
2155 align32();
2156 } else if (!hasNoDependentLibraries) {
2157 // If this bytecode format has dependent library information in it, read in
2158 // the number of dependent library items that follow.
Reid Spencerad89bd62004-07-25 18:07:36 +00002159 unsigned num_dep_libs = read_vbr_uint();
2160 std::string dep_lib;
Chris Lattner404cddf2005-11-12 01:33:40 +00002161 while (num_dep_libs--) {
Reid Spencerad89bd62004-07-25 18:07:36 +00002162 dep_lib = read_str();
Reid Spencerada16182004-07-25 21:36:26 +00002163 TheModule->addLibrary(dep_lib);
Reid Spencer5b472d92004-08-21 20:49:23 +00002164 if (Handler)
2165 Handler->handleDependentLibrary(dep_lib);
Reid Spencerad89bd62004-07-25 18:07:36 +00002166 }
2167
Chris Lattner404cddf2005-11-12 01:33:40 +00002168 // Read target triple and place into the module.
Reid Spencerad89bd62004-07-25 18:07:36 +00002169 std::string triple = read_str();
2170 TheModule->setTargetTriple(triple);
Reid Spencer5b472d92004-08-21 20:49:23 +00002171 if (Handler)
2172 Handler->handleTargetTriple(triple);
Chris Lattner404cddf2005-11-12 01:33:40 +00002173
Chris Lattner7e6db762006-01-23 23:43:17 +00002174 if (!hasAlignment && At != BlockEnd) {
Chris Lattner404cddf2005-11-12 01:33:40 +00002175 // If the file has section info in it, read the section names now.
2176 unsigned NumSections = read_vbr_uint();
2177 while (NumSections--)
2178 SectionNames.push_back(read_str());
2179 }
Chris Lattner7e6db762006-01-23 23:43:17 +00002180
2181 // If the file has module-level inline asm, read it now.
2182 if (!hasAlignment && At != BlockEnd)
Chris Lattner66316012006-01-24 04:14:29 +00002183 TheModule->setModuleInlineAsm(read_str());
Reid Spencerad89bd62004-07-25 18:07:36 +00002184 }
2185
Chris Lattner404cddf2005-11-12 01:33:40 +00002186 // If any globals are in specified sections, assign them now.
2187 for (std::map<GlobalValue*, unsigned>::iterator I = SectionID.begin(), E =
2188 SectionID.end(); I != E; ++I)
2189 if (I->second) {
2190 if (I->second > SectionID.size())
2191 error("SectionID out of range for global!");
2192 I->first->setSection(SectionNames[I->second-1]);
2193 }
Reid Spencerad89bd62004-07-25 18:07:36 +00002194
Chris Lattner00950542001-06-06 20:29:01 +00002195 // This is for future proofing... in the future extra fields may be added that
2196 // we don't understand, so we transparently ignore them.
2197 //
Reid Spencer060d25d2004-06-29 23:29:38 +00002198 At = BlockEnd;
2199
Reid Spencer04cde2c2004-07-04 11:33:49 +00002200 if (Handler) Handler->handleModuleGlobalsEnd();
Chris Lattner00950542001-06-06 20:29:01 +00002201}
2202
Reid Spencer04cde2c2004-07-04 11:33:49 +00002203/// Parse the version information and decode it by setting flags on the
2204/// Reader that enable backward compatibility of the reader.
Reid Spencer060d25d2004-06-29 23:29:38 +00002205void BytecodeReader::ParseVersionInfo() {
2206 unsigned Version = read_vbr_uint();
Chris Lattner036b8aa2003-03-06 17:55:45 +00002207
2208 // Unpack version number: low four bits are for flags, top bits = version
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002209 Module::Endianness Endianness;
2210 Module::PointerSize PointerSize;
2211 Endianness = (Version & 1) ? Module::BigEndian : Module::LittleEndian;
2212 PointerSize = (Version & 2) ? Module::Pointer64 : Module::Pointer32;
2213
2214 bool hasNoEndianness = Version & 4;
2215 bool hasNoPointerSize = Version & 8;
Misha Brukman8a96c532005-04-21 21:44:41 +00002216
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002217 RevisionNum = Version >> 4;
Chris Lattnere3869c82003-04-16 21:16:05 +00002218
2219 // Default values for the current bytecode version
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002220 hasInconsistentModuleGlobalInfo = false;
Chris Lattner80b97342004-01-17 23:25:43 +00002221 hasExplicitPrimitiveZeros = false;
Chris Lattner5fa428f2004-04-05 01:27:26 +00002222 hasRestrictedGEPTypes = false;
Reid Spencer04cde2c2004-07-04 11:33:49 +00002223 hasTypeDerivedFromValue = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00002224 hasLongBlockHeaders = false;
Reid Spencerad89bd62004-07-25 18:07:36 +00002225 has32BitTypes = false;
2226 hasNoDependentLibraries = false;
Reid Spencer38d54be2004-08-17 07:45:14 +00002227 hasAlignment = false;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002228 hasNoUndefValue = false;
2229 hasNoFlagsForFunctions = false;
2230 hasNoUnreachableInst = false;
Chris Lattner036b8aa2003-03-06 17:55:45 +00002231
2232 switch (RevisionNum) {
Reid Spencer5b472d92004-08-21 20:49:23 +00002233 case 0: // LLVM 1.0, 1.1 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00002234 // Base LLVM 1.0 bytecode format.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002235 hasInconsistentModuleGlobalInfo = true;
Chris Lattner80b97342004-01-17 23:25:43 +00002236 hasExplicitPrimitiveZeros = true;
Reid Spencer04cde2c2004-07-04 11:33:49 +00002237
Chris Lattner80b97342004-01-17 23:25:43 +00002238 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002239
2240 case 1: // LLVM 1.2 (Released)
Chris Lattner9e893e82004-01-14 23:35:21 +00002241 // LLVM 1.2 added explicit support for emitting strings efficiently.
Chris Lattner44d0eeb2004-01-15 17:55:01 +00002242
2243 // Also, it fixed the problem where the size of the ModuleGlobalInfo block
2244 // included the size for the alignment at the end, where the rest of the
2245 // blocks did not.
Chris Lattner5fa428f2004-04-05 01:27:26 +00002246
2247 // LLVM 1.2 and before required that GEP indices be ubyte constants for
2248 // structures and longs for sequential types.
2249 hasRestrictedGEPTypes = true;
2250
Reid Spencer04cde2c2004-07-04 11:33:49 +00002251 // LLVM 1.2 and before had the Type class derive from Value class. This
2252 // changed in release 1.3 and consequently LLVM 1.3 bytecode files are
Misha Brukman8a96c532005-04-21 21:44:41 +00002253 // written differently because Types can no longer be part of the
Reid Spencer04cde2c2004-07-04 11:33:49 +00002254 // type planes for Values.
2255 hasTypeDerivedFromValue = true;
2256
Chris Lattner5fa428f2004-04-05 01:27:26 +00002257 // FALL THROUGH
Misha Brukman8a96c532005-04-21 21:44:41 +00002258
Reid Spencer5b472d92004-08-21 20:49:23 +00002259 case 2: // 1.2.5 (Not Released)
Reid Spencerad89bd62004-07-25 18:07:36 +00002260
Reid Spencer5b472d92004-08-21 20:49:23 +00002261 // LLVM 1.2 and earlier had two-word block headers. This is a bit wasteful,
Chris Lattner4a242b32004-10-14 01:39:18 +00002262 // especially for small files where the 8 bytes per block is a large
2263 // fraction of the total block size. In LLVM 1.3, the block type and length
2264 // are compressed into a single 32-bit unsigned integer. 27 bits for length,
2265 // 5 bits for block type.
Reid Spencerad89bd62004-07-25 18:07:36 +00002266 hasLongBlockHeaders = true;
2267
Reid Spencer5b472d92004-08-21 20:49:23 +00002268 // LLVM 1.2 and earlier wrote type slot numbers as vbr_uint32. In LLVM 1.3
Chris Lattner4a242b32004-10-14 01:39:18 +00002269 // this has been reduced to vbr_uint24. It shouldn't make much difference
2270 // since we haven't run into a module with > 24 million types, but for
2271 // safety the 24-bit restriction has been enforced in 1.3 to free some bits
2272 // in various places and to ensure consistency.
Reid Spencerad89bd62004-07-25 18:07:36 +00002273 has32BitTypes = true;
2274
Misha Brukman8a96c532005-04-21 21:44:41 +00002275 // LLVM 1.2 and earlier did not provide a target triple nor a list of
Reid Spencer5b472d92004-08-21 20:49:23 +00002276 // libraries on which the bytecode is dependent. LLVM 1.3 provides these
2277 // features, for use in future versions of LLVM.
Reid Spencerad89bd62004-07-25 18:07:36 +00002278 hasNoDependentLibraries = true;
2279
2280 // FALL THROUGH
Reid Spencer5b472d92004-08-21 20:49:23 +00002281
2282 case 3: // LLVM 1.3 (Released)
2283 // LLVM 1.3 and earlier caused alignment bytes to be written on some block
Misha Brukman8a96c532005-04-21 21:44:41 +00002284 // boundaries and at the end of some strings. In extreme cases (e.g. lots
Reid Spencer5b472d92004-08-21 20:49:23 +00002285 // of GEP references to a constant array), this can increase the file size
2286 // by 30% or more. In version 1.4 alignment is done away with completely.
Reid Spencer38d54be2004-08-17 07:45:14 +00002287 hasAlignment = true;
2288
2289 // FALL THROUGH
Misha Brukman8a96c532005-04-21 21:44:41 +00002290
Reid Spencer5b472d92004-08-21 20:49:23 +00002291 case 4: // 1.3.1 (Not Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002292 // In version 4, we did not support the 'undef' constant.
2293 hasNoUndefValue = true;
2294
2295 // In version 4 and above, we did not include space for flags for functions
2296 // in the module info block.
2297 hasNoFlagsForFunctions = true;
2298
2299 // In version 4 and above, we did not include the 'unreachable' instruction
2300 // in the opcode numbering in the bytecode file.
2301 hasNoUnreachableInst = true;
Chris Lattner2e7ec122004-10-16 18:56:02 +00002302 break;
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002303
2304 // FALL THROUGH
2305
Chris Lattnerdee199f2005-05-06 22:34:01 +00002306 case 5: // 1.4 (Released)
Chris Lattnera79e7cc2004-10-16 18:18:16 +00002307 break;
2308
Chris Lattner036b8aa2003-03-06 17:55:45 +00002309 default:
Reid Spencer24399722004-07-09 22:21:33 +00002310 error("Unknown bytecode version number: " + itostr(RevisionNum));
Chris Lattner036b8aa2003-03-06 17:55:45 +00002311 }
2312
Chris Lattnerd445c6b2003-08-24 13:47:36 +00002313 if (hasNoEndianness) Endianness = Module::AnyEndianness;
2314 if (hasNoPointerSize) PointerSize = Module::AnyPointerSize;
Chris Lattner76e38962003-04-22 18:15:10 +00002315
Brian Gaekefe2102b2004-07-14 20:33:13 +00002316 TheModule->setEndianness(Endianness);
2317 TheModule->setPointerSize(PointerSize);
2318
Reid Spencer46b002c2004-07-11 17:28:43 +00002319 if (Handler) Handler->handleVersionInfo(RevisionNum, Endianness, PointerSize);
Chris Lattner036b8aa2003-03-06 17:55:45 +00002320}
2321
Reid Spencer04cde2c2004-07-04 11:33:49 +00002322/// Parse a whole module.
Reid Spencer060d25d2004-06-29 23:29:38 +00002323void BytecodeReader::ParseModule() {
Chris Lattner00950542001-06-06 20:29:01 +00002324 unsigned Type, Size;
Chris Lattner00950542001-06-06 20:29:01 +00002325
Reid Spencer060d25d2004-06-29 23:29:38 +00002326 FunctionSignatureList.clear(); // Just in case...
Chris Lattner00950542001-06-06 20:29:01 +00002327
2328 // Read into instance variables...
Reid Spencer060d25d2004-06-29 23:29:38 +00002329 ParseVersionInfo();
Reid Spencerad89bd62004-07-25 18:07:36 +00002330 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002331
Reid Spencer060d25d2004-06-29 23:29:38 +00002332 bool SeenModuleGlobalInfo = false;
2333 bool SeenGlobalTypePlane = false;
2334 BufPtr MyEnd = BlockEnd;
2335 while (At < MyEnd) {
2336 BufPtr OldAt = At;
2337 read_block(Type, Size);
2338
Chris Lattner00950542001-06-06 20:29:01 +00002339 switch (Type) {
Reid Spencer060d25d2004-06-29 23:29:38 +00002340
Reid Spencerad89bd62004-07-25 18:07:36 +00002341 case BytecodeFormat::GlobalTypePlaneBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002342 if (SeenGlobalTypePlane)
Reid Spencer24399722004-07-09 22:21:33 +00002343 error("Two GlobalTypePlane Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002344
Reid Spencer5b472d92004-08-21 20:49:23 +00002345 if (Size > 0)
2346 ParseGlobalTypes();
Reid Spencer060d25d2004-06-29 23:29:38 +00002347 SeenGlobalTypePlane = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002348 break;
2349
Misha Brukman8a96c532005-04-21 21:44:41 +00002350 case BytecodeFormat::ModuleGlobalInfoBlockID:
Reid Spencer46b002c2004-07-11 17:28:43 +00002351 if (SeenModuleGlobalInfo)
Reid Spencer24399722004-07-09 22:21:33 +00002352 error("Two ModuleGlobalInfo Blocks Encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002353 ParseModuleGlobalInfo();
2354 SeenModuleGlobalInfo = true;
Chris Lattner52e20b02003-03-19 20:54:26 +00002355 break;
2356
Reid Spencerad89bd62004-07-25 18:07:36 +00002357 case BytecodeFormat::ConstantPoolBlockID:
Reid Spencer04cde2c2004-07-04 11:33:49 +00002358 ParseConstantPool(ModuleValues, ModuleTypes,false);
Chris Lattner00950542001-06-06 20:29:01 +00002359 break;
2360
Reid Spencerad89bd62004-07-25 18:07:36 +00002361 case BytecodeFormat::FunctionBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002362 ParseFunctionLazily();
Chris Lattner00950542001-06-06 20:29:01 +00002363 break;
Chris Lattner00950542001-06-06 20:29:01 +00002364
Reid Spencerad89bd62004-07-25 18:07:36 +00002365 case BytecodeFormat::SymbolTableBlockID:
Reid Spencer060d25d2004-06-29 23:29:38 +00002366 ParseSymbolTable(0, &TheModule->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +00002367 break;
Reid Spencer060d25d2004-06-29 23:29:38 +00002368
Chris Lattner00950542001-06-06 20:29:01 +00002369 default:
Reid Spencer060d25d2004-06-29 23:29:38 +00002370 At += Size;
2371 if (OldAt > At) {
Reid Spencer46b002c2004-07-11 17:28:43 +00002372 error("Unexpected Block of Type #" + utostr(Type) + " encountered!");
Reid Spencer060d25d2004-06-29 23:29:38 +00002373 }
Chris Lattner00950542001-06-06 20:29:01 +00002374 break;
2375 }
Reid Spencer060d25d2004-06-29 23:29:38 +00002376 BlockEnd = MyEnd;
2377 align32();
Chris Lattner00950542001-06-06 20:29:01 +00002378 }
2379
Chris Lattner52e20b02003-03-19 20:54:26 +00002380 // After the module constant pool has been read, we can safely initialize
2381 // global variables...
2382 while (!GlobalInits.empty()) {
2383 GlobalVariable *GV = GlobalInits.back().first;
2384 unsigned Slot = GlobalInits.back().second;
2385 GlobalInits.pop_back();
2386
2387 // Look up the initializer value...
Chris Lattner29b789b2003-11-19 17:27:18 +00002388 // FIXME: Preserve this type ID!
Reid Spencer060d25d2004-06-29 23:29:38 +00002389
2390 const llvm::PointerType* GVType = GV->getType();
2391 unsigned TypeSlot = getTypeSlot(GVType->getElementType());
Chris Lattner93361992004-01-15 18:45:25 +00002392 if (Constant *CV = getConstantValue(TypeSlot, Slot)) {
Misha Brukman8a96c532005-04-21 21:44:41 +00002393 if (GV->hasInitializer())
Reid Spencer24399722004-07-09 22:21:33 +00002394 error("Global *already* has an initializer?!");
Reid Spencer04cde2c2004-07-04 11:33:49 +00002395 if (Handler) Handler->handleGlobalInitializer(GV,CV);
Chris Lattner93361992004-01-15 18:45:25 +00002396 GV->setInitializer(CV);
Chris Lattner52e20b02003-03-19 20:54:26 +00002397 } else
Reid Spencer24399722004-07-09 22:21:33 +00002398 error("Cannot find initializer value.");
Chris Lattner52e20b02003-03-19 20:54:26 +00002399 }
2400
Chris Lattneraba5ff52005-05-05 20:57:00 +00002401 if (!ConstantFwdRefs.empty())
2402 error("Use of undefined constants in a module");
2403
Reid Spencer060d25d2004-06-29 23:29:38 +00002404 /// Make sure we pulled them all out. If we didn't then there's a declaration
2405 /// but a missing body. That's not allowed.
Misha Brukman12c29d12003-09-22 23:38:23 +00002406 if (!FunctionSignatureList.empty())
Reid Spencer24399722004-07-09 22:21:33 +00002407 error("Function declared, but bytecode stream ended before definition");
Chris Lattner00950542001-06-06 20:29:01 +00002408}
2409
Reid Spencer04cde2c2004-07-04 11:33:49 +00002410/// This function completely parses a bytecode buffer given by the \p Buf
2411/// and \p Length parameters.
Reid Spencer233fe722006-08-22 16:09:19 +00002412bool BytecodeReader::ParseBytecode(BufPtr Buf, unsigned Length,
2413 const std::string &ModuleID,
2414 std::string* ErrMsg) {
Misha Brukmane0dd0d42003-09-23 16:15:29 +00002415
Reid Spencer233fe722006-08-22 16:09:19 +00002416 /// We handle errors by
2417 if (setjmp(context)) {
2418 // Cleanup after error
2419 if (Handler) Handler->handleError(ErrorMsg);
Reid Spencer060d25d2004-06-29 23:29:38 +00002420 freeState();
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002421 delete TheModule;
2422 TheModule = 0;
Chris Lattner3bdad692004-11-15 21:55:33 +00002423 if (decompressedBlock != 0 ) {
Reid Spencer61aaf2e2004-11-14 21:59:21 +00002424 ::free(decompressedBlock);
Chris Lattner3bdad692004-11-15 21:55:33 +00002425 decompressedBlock = 0;
2426 }
Reid Spencer233fe722006-08-22 16:09:19 +00002427 // Set caller's error message, if requested
2428 if (ErrMsg)
2429 *ErrMsg = ErrorMsg;
2430 // Indicate an error occurred
2431 return true;
Chris Lattner2a7b6ba2003-03-06 17:15:19 +00002432 }
Reid Spencer233fe722006-08-22 16:09:19 +00002433
2434 RevisionNum = 0;
2435 At = MemStart = BlockStart = Buf;
2436 MemEnd = BlockEnd = Buf + Length;
2437
2438 // Create the module
2439 TheModule = new Module(ModuleID);
2440
2441 if (Handler) Handler->handleStart(TheModule, Length);
2442
2443 // Read the four bytes of the signature.
2444 unsigned Sig = read_uint();
2445
2446 // If this is a compressed file
2447 if (Sig == ('l' | ('l' << 8) | ('v' << 16) | ('c' << 24))) {
2448
2449 // Invoke the decompression of the bytecode. Note that we have to skip the
2450 // file's magic number which is not part of the compressed block. Hence,
2451 // the Buf+4 and Length-4. The result goes into decompressedBlock, a data
2452 // member for retention until BytecodeReader is destructed.
2453 unsigned decompressedLength = Compressor::decompressToNewBuffer(
2454 (char*)Buf+4,Length-4,decompressedBlock);
2455
2456 // We must adjust the buffer pointers used by the bytecode reader to point
2457 // into the new decompressed block. After decompression, the
2458 // decompressedBlock will point to a contiguous memory area that has
2459 // the decompressed data.
2460 At = MemStart = BlockStart = Buf = (BufPtr) decompressedBlock;
2461 MemEnd = BlockEnd = Buf + decompressedLength;
2462
2463 // else if this isn't a regular (uncompressed) bytecode file, then its
2464 // and error, generate that now.
2465 } else if (Sig != ('l' | ('l' << 8) | ('v' << 16) | ('m' << 24))) {
2466 error("Invalid bytecode signature: " + utohexstr(Sig));
2467 }
2468
2469 // Tell the handler we're starting a module
2470 if (Handler) Handler->handleModuleBegin(ModuleID);
2471
2472 // Get the module block and size and verify. This is handled specially
2473 // because the module block/size is always written in long format. Other
2474 // blocks are written in short format so the read_block method is used.
2475 unsigned Type, Size;
2476 Type = read_uint();
2477 Size = read_uint();
2478 if (Type != BytecodeFormat::ModuleBlockID) {
2479 error("Expected Module Block! Type:" + utostr(Type) + ", Size:"
2480 + utostr(Size));
2481 }
2482
2483 // It looks like the darwin ranlib program is broken, and adds trailing
2484 // garbage to the end of some bytecode files. This hack allows the bc
2485 // reader to ignore trailing garbage on bytecode files.
2486 if (At + Size < MemEnd)
2487 MemEnd = BlockEnd = At+Size;
2488
2489 if (At + Size != MemEnd)
2490 error("Invalid Top Level Block Length! Type:" + utostr(Type)
2491 + ", Size:" + utostr(Size));
2492
2493 // Parse the module contents
2494 this->ParseModule();
2495
2496 // Check for missing functions
2497 if (hasFunctions())
2498 error("Function expected, but bytecode stream ended!");
2499
2500 // Look for intrinsic functions to upgrade, upgrade them, and save the
2501 // mapping from old function to new for use later when instructions are
2502 // converted.
2503 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
2504 FI != FE; ++FI)
2505 if (Function* newF = UpgradeIntrinsicFunction(FI)) {
2506 upgradedFunctions.insert(std::make_pair(FI, newF));
2507 FI->setName("");
2508 }
2509
2510 // Tell the handler we're done with the module
2511 if (Handler)
2512 Handler->handleModuleEnd(ModuleID);
2513
2514 // Tell the handler we're finished the parse
2515 if (Handler) Handler->handleFinish();
2516
2517 return false;
2518
Chris Lattner00950542001-06-06 20:29:01 +00002519}
Reid Spencer060d25d2004-06-29 23:29:38 +00002520
2521//===----------------------------------------------------------------------===//
2522//=== Default Implementations of Handler Methods
2523//===----------------------------------------------------------------------===//
2524
2525BytecodeHandler::~BytecodeHandler() {}
Reid Spencer060d25d2004-06-29 23:29:38 +00002526