Chris Lattner | d6b6525 | 2001-10-24 01:15:12 +0000 | [diff] [blame] | 1 | //===- Reader.cpp - Code to read bytecode files ---------------------------===// |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
| 10 | // This library implements the functionality defined in llvm/Bytecode/Reader.h |
| 11 | // |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 12 | // Note that this library should be as fast as possible, reentrant, and |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 13 | // threadsafe!! |
| 14 | // |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 15 | // TODO: Allow passing in an option to ignore the symbol table |
| 16 | // |
Chris Lattner | d6b6525 | 2001-10-24 01:15:12 +0000 | [diff] [blame] | 17 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 18 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 19 | #include "Reader.h" |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 20 | #include "llvm/Assembly/AutoUpgrade.h" |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 21 | #include "llvm/Bytecode/BytecodeHandler.h" |
| 22 | #include "llvm/BasicBlock.h" |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 23 | #include "llvm/CallingConv.h" |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 24 | #include "llvm/Constants.h" |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 25 | #include "llvm/InlineAsm.h" |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 26 | #include "llvm/Instructions.h" |
| 27 | #include "llvm/SymbolTable.h" |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 28 | #include "llvm/Bytecode/Format.h" |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 29 | #include "llvm/Config/alloca.h" |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 30 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Reid Spencer | 17f52c5 | 2004-11-06 23:17:23 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Compressor.h" |
Jim Laskey | cb6682f | 2005-08-17 19:34:49 +0000 | [diff] [blame] | 32 | #include "llvm/Support/MathExtras.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringExtras.h" |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 34 | #include <sstream> |
Alkis Evlogimenos | 20aa474 | 2004-09-03 18:19:51 +0000 | [diff] [blame] | 35 | #include <algorithm> |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 36 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 37 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 38 | namespace { |
Chris Lattner | cad28bd | 2005-01-29 00:36:19 +0000 | [diff] [blame] | 39 | /// @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 Lattner | 6132332 | 2005-01-31 01:11:13 +0000 | [diff] [blame] | 45 | Use Op; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 46 | ConstantPlaceHolder(const Type *Ty) |
Chris Lattner | 6132332 | 2005-01-31 01:11:13 +0000 | [diff] [blame] | 47 | : ConstantExpr(Ty, Instruction::UserOp1, &Op, 1), |
| 48 | Op(UndefValue::get(Type::IntTy), this) { |
| 49 | } |
Chris Lattner | cad28bd | 2005-01-29 00:36:19 +0000 | [diff] [blame] | 50 | }; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 51 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 52 | |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 53 | // Provide some details on error |
| 54 | inline void BytecodeReader::error(std::string err) { |
| 55 | err += " (Vers=" ; |
| 56 | err += itostr(RevisionNum) ; |
| 57 | err += ", Pos=" ; |
| 58 | err += itostr(At-MemStart); |
| 59 | err += ")"; |
| 60 | throw err; |
| 61 | } |
| 62 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 63 | //===----------------------------------------------------------------------===// |
| 64 | // Bytecode Reading Methods |
| 65 | //===----------------------------------------------------------------------===// |
| 66 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 67 | /// Determine if the current block being read contains any more data. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 68 | inline bool BytecodeReader::moreInBlock() { |
| 69 | return At < BlockEnd; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 72 | /// Throw an error if we've read past the end of the current block |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 73 | inline void BytecodeReader::checkPastBlockEnd(const char * block_name) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 74 | if (At > BlockEnd) |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 75 | error(std::string("Attempt to read past the end of ") + block_name + |
| 76 | " block."); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 77 | } |
Chris Lattner | 36392bc | 2003-10-08 21:18:57 +0000 | [diff] [blame] | 78 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 79 | /// Align the buffer position to a 32 bit boundary |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 80 | inline void BytecodeReader::align32() { |
Reid Spencer | 38d54be | 2004-08-17 07:45:14 +0000 | [diff] [blame] | 81 | if (hasAlignment) { |
| 82 | BufPtr Save = At; |
Jeff Cohen | 05ebc8d | 2006-01-25 17:18:50 +0000 | [diff] [blame] | 83 | At = (const unsigned char *)((intptr_t)(At+3) & (~3UL)); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 84 | if (At > Save) |
Reid Spencer | 38d54be | 2004-08-17 07:45:14 +0000 | [diff] [blame] | 85 | if (Handler) Handler->handleAlignment(At - Save); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 86 | if (At > BlockEnd) |
Reid Spencer | 38d54be | 2004-08-17 07:45:14 +0000 | [diff] [blame] | 87 | error("Ran out of data while aligning!"); |
| 88 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 91 | /// Read a whole unsigned integer |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 92 | inline unsigned BytecodeReader::read_uint() { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 93 | if (At+4 > BlockEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 94 | error("Ran out of data reading uint!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 95 | At += 4; |
| 96 | return At[-4] | (At[-3] << 8) | (At[-2] << 16) | (At[-1] << 24); |
| 97 | } |
| 98 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 99 | /// Read a variable-bit-rate encoded unsigned integer |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 100 | inline unsigned BytecodeReader::read_vbr_uint() { |
| 101 | unsigned Shift = 0; |
| 102 | unsigned Result = 0; |
| 103 | BufPtr Save = At; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 104 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 105 | do { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 106 | if (At == BlockEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 107 | error("Ran out of data reading vbr_uint!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 108 | Result |= (unsigned)((*At++) & 0x7F) << Shift; |
| 109 | Shift += 7; |
| 110 | } while (At[-1] & 0x80); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 111 | if (Handler) Handler->handleVBR32(At-Save); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 112 | return Result; |
| 113 | } |
| 114 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 115 | /// Read a variable-bit-rate encoded unsigned 64-bit integer. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 116 | inline uint64_t BytecodeReader::read_vbr_uint64() { |
| 117 | unsigned Shift = 0; |
| 118 | uint64_t Result = 0; |
| 119 | BufPtr Save = At; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 120 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 121 | do { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 122 | if (At == BlockEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 123 | error("Ran out of data reading vbr_uint64!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 124 | Result |= (uint64_t)((*At++) & 0x7F) << Shift; |
| 125 | Shift += 7; |
| 126 | } while (At[-1] & 0x80); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 127 | if (Handler) Handler->handleVBR64(At-Save); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 128 | return Result; |
| 129 | } |
| 130 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 131 | /// Read a variable-bit-rate encoded signed 64-bit integer. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 132 | inline int64_t BytecodeReader::read_vbr_int64() { |
| 133 | uint64_t R = read_vbr_uint64(); |
| 134 | if (R & 1) { |
| 135 | if (R != 1) |
| 136 | return -(int64_t)(R >> 1); |
| 137 | else // There is no such thing as -0 with integers. "-0" really means |
| 138 | // 0x8000000000000000. |
| 139 | return 1LL << 63; |
| 140 | } else |
| 141 | return (int64_t)(R >> 1); |
| 142 | } |
| 143 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 144 | /// Read a pascal-style string (length followed by text) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 145 | inline std::string BytecodeReader::read_str() { |
| 146 | unsigned Size = read_vbr_uint(); |
| 147 | const unsigned char *OldAt = At; |
| 148 | At += Size; |
| 149 | if (At > BlockEnd) // Size invalid? |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 150 | error("Ran out of data reading a string!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 151 | return std::string((char*)OldAt, Size); |
| 152 | } |
| 153 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 154 | /// Read an arbitrary block of data |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 155 | inline void BytecodeReader::read_data(void *Ptr, void *End) { |
| 156 | unsigned char *Start = (unsigned char *)Ptr; |
| 157 | unsigned Amount = (unsigned char *)End - Start; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 158 | if (At+Amount > BlockEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 159 | error("Ran out of data!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 160 | std::copy(At, At+Amount, Start); |
| 161 | At += Amount; |
| 162 | } |
| 163 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 164 | /// Read a float value in little-endian order |
| 165 | inline void BytecodeReader::read_float(float& FloatVal) { |
Reid Spencer | ada1618 | 2004-07-25 21:36:26 +0000 | [diff] [blame] | 166 | /// FIXME: This isn't optimal, it has size problems on some platforms |
| 167 | /// where FP is not IEEE. |
Jim Laskey | cb6682f | 2005-08-17 19:34:49 +0000 | [diff] [blame] | 168 | FloatVal = BitsToFloat(At[0] | (At[1] << 8) | (At[2] << 16) | (At[3] << 24)); |
Reid Spencer | ada1618 | 2004-07-25 21:36:26 +0000 | [diff] [blame] | 169 | At+=sizeof(uint32_t); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /// Read a double value in little-endian order |
| 173 | inline void BytecodeReader::read_double(double& DoubleVal) { |
Reid Spencer | ada1618 | 2004-07-25 21:36:26 +0000 | [diff] [blame] | 174 | /// FIXME: This isn't optimal, it has size problems on some platforms |
| 175 | /// where FP is not IEEE. |
Jim Laskey | cb6682f | 2005-08-17 19:34:49 +0000 | [diff] [blame] | 176 | DoubleVal = BitsToDouble((uint64_t(At[0]) << 0) | (uint64_t(At[1]) << 8) | |
| 177 | (uint64_t(At[2]) << 16) | (uint64_t(At[3]) << 24) | |
| 178 | (uint64_t(At[4]) << 32) | (uint64_t(At[5]) << 40) | |
| 179 | (uint64_t(At[6]) << 48) | (uint64_t(At[7]) << 56)); |
Reid Spencer | ada1618 | 2004-07-25 21:36:26 +0000 | [diff] [blame] | 180 | At+=sizeof(uint64_t); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 183 | /// Read a block header and obtain its type and size |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 184 | inline void BytecodeReader::read_block(unsigned &Type, unsigned &Size) { |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 185 | if ( hasLongBlockHeaders ) { |
| 186 | Type = read_uint(); |
| 187 | Size = read_uint(); |
| 188 | switch (Type) { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 189 | case BytecodeFormat::Reserved_DoNotUse : |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 190 | error("Reserved_DoNotUse used as Module Type?"); |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 191 | Type = BytecodeFormat::ModuleBlockID; break; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 192 | case BytecodeFormat::Module: |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 193 | Type = BytecodeFormat::ModuleBlockID; break; |
| 194 | case BytecodeFormat::Function: |
| 195 | Type = BytecodeFormat::FunctionBlockID; break; |
| 196 | case BytecodeFormat::ConstantPool: |
| 197 | Type = BytecodeFormat::ConstantPoolBlockID; break; |
| 198 | case BytecodeFormat::SymbolTable: |
| 199 | Type = BytecodeFormat::SymbolTableBlockID; break; |
| 200 | case BytecodeFormat::ModuleGlobalInfo: |
| 201 | Type = BytecodeFormat::ModuleGlobalInfoBlockID; break; |
| 202 | case BytecodeFormat::GlobalTypePlane: |
| 203 | Type = BytecodeFormat::GlobalTypePlaneBlockID; break; |
| 204 | case BytecodeFormat::InstructionList: |
| 205 | Type = BytecodeFormat::InstructionListBlockID; break; |
| 206 | case BytecodeFormat::CompactionTable: |
| 207 | Type = BytecodeFormat::CompactionTableBlockID; break; |
| 208 | case BytecodeFormat::BasicBlock: |
| 209 | /// This block type isn't used after version 1.1. However, we have to |
| 210 | /// still allow the value in case this is an old bc format file. |
| 211 | /// We just let its value creep thru. |
| 212 | break; |
| 213 | default: |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 214 | error("Invalid block id found: " + utostr(Type)); |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 215 | break; |
| 216 | } |
| 217 | } else { |
| 218 | Size = read_uint(); |
| 219 | Type = Size & 0x1F; // mask low order five bits |
| 220 | Size >>= 5; // get rid of five low order bits, leaving high 27 |
| 221 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 222 | BlockStart = At; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 223 | if (At + Size > BlockEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 224 | error("Attempt to size a block past end of memory"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 225 | BlockEnd = At + Size; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 226 | if (Handler) Handler->handleBlock(Type, BlockStart, Size); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | |
| 230 | /// In LLVM 1.2 and before, Types were derived from Value and so they were |
| 231 | /// written as part of the type planes along with any other Value. In LLVM |
| 232 | /// 1.3 this changed so that Type does not derive from Value. Consequently, |
| 233 | /// the BytecodeReader's containers for Values can't contain Types because |
| 234 | /// there's no inheritance relationship. This means that the "Type Type" |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 235 | /// plane is defunct along with the Type::TypeTyID TypeID. In LLVM 1.3 |
| 236 | /// whenever a bytecode construct must have both types and values together, |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 237 | /// the types are always read/written first and then the Values. Furthermore |
| 238 | /// since Type::TypeTyID no longer exists, its value (12) now corresponds to |
| 239 | /// Type::LabelTyID. In order to overcome this we must "sanitize" all the |
| 240 | /// type TypeIDs we encounter. For LLVM 1.3 bytecode files, there's no change. |
| 241 | /// For LLVM 1.2 and before, this function will decrement the type id by |
| 242 | /// one to account for the missing Type::TypeTyID enumerator if the value is |
| 243 | /// larger than 12 (Type::LabelTyID). If the value is exactly 12, then this |
| 244 | /// function returns true, otherwise false. This helps detect situations |
| 245 | /// where the pre 1.3 bytecode is indicating that what follows is a type. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 246 | /// @returns true iff type id corresponds to pre 1.3 "type type" |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 247 | inline bool BytecodeReader::sanitizeTypeId(unsigned &TypeId) { |
| 248 | if (hasTypeDerivedFromValue) { /// do nothing if 1.3 or later |
| 249 | if (TypeId == Type::LabelTyID) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 250 | TypeId = Type::VoidTyID; // sanitize it |
| 251 | return true; // indicate we got TypeTyID in pre 1.3 bytecode |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 252 | } else if (TypeId > Type::LabelTyID) |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 253 | --TypeId; // shift all planes down because type type plane is missing |
| 254 | } |
| 255 | return false; |
| 256 | } |
| 257 | |
| 258 | /// Reads a vbr uint to read in a type id and does the necessary |
| 259 | /// conversion on it by calling sanitizeTypeId. |
| 260 | /// @returns true iff \p TypeId read corresponds to a pre 1.3 "type type" |
| 261 | /// @see sanitizeTypeId |
| 262 | inline bool BytecodeReader::read_typeid(unsigned &TypeId) { |
| 263 | TypeId = read_vbr_uint(); |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 264 | if ( !has32BitTypes ) |
| 265 | if ( TypeId == 0x00FFFFFF ) |
| 266 | TypeId = read_vbr_uint(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 267 | return sanitizeTypeId(TypeId); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | //===----------------------------------------------------------------------===// |
| 271 | // IR Lookup Methods |
| 272 | //===----------------------------------------------------------------------===// |
| 273 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 274 | /// Determine if a type id has an implicit null value |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 275 | inline bool BytecodeReader::hasImplicitNull(unsigned TyID) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 276 | if (!hasExplicitPrimitiveZeros) |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 277 | return TyID != Type::LabelTyID && TyID != Type::VoidTyID; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 278 | return TyID >= Type::FirstDerivedTyID; |
| 279 | } |
| 280 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 281 | /// Obtain a type given a typeid and account for things like compaction tables, |
| 282 | /// function level vs module level, and the offsetting for the primitive types. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 283 | const Type *BytecodeReader::getType(unsigned ID) { |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 284 | if (ID < Type::FirstDerivedTyID) |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 285 | if (const Type *T = Type::getPrimitiveType((Type::TypeID)ID)) |
Chris Lattner | 927b185 | 2003-10-09 20:22:47 +0000 | [diff] [blame] | 286 | return T; // Asked for a primitive type... |
Chris Lattner | 36392bc | 2003-10-08 21:18:57 +0000 | [diff] [blame] | 287 | |
| 288 | // Otherwise, derived types need offset... |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 289 | ID -= Type::FirstDerivedTyID; |
| 290 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 291 | if (!CompactionTypes.empty()) { |
| 292 | if (ID >= CompactionTypes.size()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 293 | error("Type ID out of range for compaction table!"); |
Chris Lattner | 45b5dd2 | 2004-08-03 23:41:28 +0000 | [diff] [blame] | 294 | return CompactionTypes[ID].first; |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 295 | } |
Chris Lattner | 36392bc | 2003-10-08 21:18:57 +0000 | [diff] [blame] | 296 | |
| 297 | // Is it a module-level type? |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 298 | if (ID < ModuleTypes.size()) |
| 299 | return ModuleTypes[ID].get(); |
Chris Lattner | 36392bc | 2003-10-08 21:18:57 +0000 | [diff] [blame] | 300 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 301 | // Nope, is it a function-level type? |
| 302 | ID -= ModuleTypes.size(); |
| 303 | if (ID < FunctionTypes.size()) |
| 304 | return FunctionTypes[ID].get(); |
Chris Lattner | 36392bc | 2003-10-08 21:18:57 +0000 | [diff] [blame] | 305 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 306 | error("Illegal type reference!"); |
| 307 | return Type::VoidTy; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 310 | /// Get a sanitized type id. This just makes sure that the \p ID |
| 311 | /// is both sanitized and not the "type type" of pre-1.3 bytecode. |
| 312 | /// @see sanitizeTypeId |
| 313 | inline const Type* BytecodeReader::getSanitizedType(unsigned& ID) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 314 | if (sanitizeTypeId(ID)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 315 | error("Invalid type id encountered"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 316 | return getType(ID); |
| 317 | } |
| 318 | |
| 319 | /// This method just saves some coding. It uses read_typeid to read |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 320 | /// in a sanitized type id, errors that its not the type type, and |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 321 | /// then calls getType to return the type value. |
| 322 | inline const Type* BytecodeReader::readSanitizedType() { |
| 323 | unsigned ID; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 324 | if (read_typeid(ID)) |
| 325 | error("Invalid type id encountered"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 326 | return getType(ID); |
| 327 | } |
| 328 | |
| 329 | /// Get the slot number associated with a type accounting for primitive |
| 330 | /// types, compaction tables, and function level vs module level. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 331 | unsigned BytecodeReader::getTypeSlot(const Type *Ty) { |
| 332 | if (Ty->isPrimitiveType()) |
| 333 | return Ty->getTypeID(); |
| 334 | |
| 335 | // Scan the compaction table for the type if needed. |
| 336 | if (!CompactionTypes.empty()) { |
Chris Lattner | 45b5dd2 | 2004-08-03 23:41:28 +0000 | [diff] [blame] | 337 | for (unsigned i = 0, e = CompactionTypes.size(); i != e; ++i) |
| 338 | if (CompactionTypes[i].first == Ty) |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 339 | return Type::FirstDerivedTyID + i; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 340 | |
Chris Lattner | 45b5dd2 | 2004-08-03 23:41:28 +0000 | [diff] [blame] | 341 | error("Couldn't find type specified in compaction table!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | // Check the function level types first... |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 345 | TypeListTy::iterator I = std::find(FunctionTypes.begin(), |
| 346 | FunctionTypes.end(), Ty); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 347 | |
| 348 | if (I != FunctionTypes.end()) |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 349 | return Type::FirstDerivedTyID + ModuleTypes.size() + |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 350 | (&*I - &FunctionTypes[0]); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 351 | |
Chris Lattner | eebac5f | 2005-10-03 21:26:53 +0000 | [diff] [blame] | 352 | // If we don't have our cache yet, build it now. |
| 353 | if (ModuleTypeIDCache.empty()) { |
| 354 | unsigned N = 0; |
| 355 | ModuleTypeIDCache.reserve(ModuleTypes.size()); |
| 356 | for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end(); |
| 357 | I != E; ++I, ++N) |
| 358 | ModuleTypeIDCache.push_back(std::make_pair(*I, N)); |
| 359 | |
| 360 | std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end()); |
| 361 | } |
| 362 | |
| 363 | // Binary search the cache for the entry. |
| 364 | std::vector<std::pair<const Type*, unsigned> >::iterator IT = |
| 365 | std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(), |
| 366 | std::make_pair(Ty, 0U)); |
| 367 | if (IT == ModuleTypeIDCache.end() || IT->first != Ty) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 368 | error("Didn't find type in ModuleTypes."); |
Chris Lattner | eebac5f | 2005-10-03 21:26:53 +0000 | [diff] [blame] | 369 | |
| 370 | return Type::FirstDerivedTyID + IT->second; |
Chris Lattner | 80b9734 | 2004-01-17 23:25:43 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 373 | /// This is just like getType, but when a compaction table is in use, it is |
| 374 | /// ignored. It also ignores function level types. |
| 375 | /// @see getType |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 376 | const Type *BytecodeReader::getGlobalTableType(unsigned Slot) { |
| 377 | if (Slot < Type::FirstDerivedTyID) { |
| 378 | const Type *Ty = Type::getPrimitiveType((Type::TypeID)Slot); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 379 | if (!Ty) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 380 | error("Not a primitive type ID?"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 381 | return Ty; |
| 382 | } |
| 383 | Slot -= Type::FirstDerivedTyID; |
| 384 | if (Slot >= ModuleTypes.size()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 385 | error("Illegal compaction table type reference!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 386 | return ModuleTypes[Slot]; |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 389 | /// This is just like getTypeSlot, but when a compaction table is in use, it |
| 390 | /// is ignored. It also ignores function level types. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 391 | unsigned BytecodeReader::getGlobalTableTypeSlot(const Type *Ty) { |
| 392 | if (Ty->isPrimitiveType()) |
| 393 | return Ty->getTypeID(); |
Chris Lattner | eebac5f | 2005-10-03 21:26:53 +0000 | [diff] [blame] | 394 | |
| 395 | // If we don't have our cache yet, build it now. |
| 396 | if (ModuleTypeIDCache.empty()) { |
| 397 | unsigned N = 0; |
| 398 | ModuleTypeIDCache.reserve(ModuleTypes.size()); |
| 399 | for (TypeListTy::iterator I = ModuleTypes.begin(), E = ModuleTypes.end(); |
| 400 | I != E; ++I, ++N) |
| 401 | ModuleTypeIDCache.push_back(std::make_pair(*I, N)); |
| 402 | |
| 403 | std::sort(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end()); |
| 404 | } |
| 405 | |
| 406 | // Binary search the cache for the entry. |
| 407 | std::vector<std::pair<const Type*, unsigned> >::iterator IT = |
| 408 | std::lower_bound(ModuleTypeIDCache.begin(), ModuleTypeIDCache.end(), |
| 409 | std::make_pair(Ty, 0U)); |
| 410 | if (IT == ModuleTypeIDCache.end() || IT->first != Ty) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 411 | error("Didn't find type in ModuleTypes."); |
Chris Lattner | eebac5f | 2005-10-03 21:26:53 +0000 | [diff] [blame] | 412 | |
| 413 | return Type::FirstDerivedTyID + IT->second; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 416 | /// Retrieve a value of a given type and slot number, possibly creating |
| 417 | /// it if it doesn't already exist. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 418 | Value * BytecodeReader::getValue(unsigned type, unsigned oNum, bool Create) { |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 419 | assert(type != Type::LabelTyID && "getValue() cannot get blocks!"); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 420 | unsigned Num = oNum; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 421 | |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 422 | // If there is a compaction table active, it defines the low-level numbers. |
| 423 | // If not, the module values define the low-level numbers. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 424 | if (CompactionValues.size() > type && !CompactionValues[type].empty()) { |
| 425 | if (Num < CompactionValues[type].size()) |
| 426 | return CompactionValues[type][Num]; |
| 427 | Num -= CompactionValues[type].size(); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 428 | } else { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 429 | // By default, the global type id is the type id passed in |
Chris Lattner | 52f86d6 | 2004-01-20 00:54:06 +0000 | [diff] [blame] | 430 | unsigned GlobalTyID = type; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 431 | |
Chris Lattner | 45b5dd2 | 2004-08-03 23:41:28 +0000 | [diff] [blame] | 432 | // If the type plane was compactified, figure out the global type ID by |
| 433 | // adding the derived type ids and the distance. |
| 434 | if (!CompactionTypes.empty() && type >= Type::FirstDerivedTyID) |
| 435 | GlobalTyID = CompactionTypes[type-Type::FirstDerivedTyID].second; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 436 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 437 | if (hasImplicitNull(GlobalTyID)) { |
Chris Lattner | aba5ff5 | 2005-05-05 20:57:00 +0000 | [diff] [blame] | 438 | const Type *Ty = getType(type); |
| 439 | if (!isa<OpaqueType>(Ty)) { |
| 440 | if (Num == 0) |
| 441 | return Constant::getNullValue(Ty); |
| 442 | --Num; |
| 443 | } |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 444 | } |
| 445 | |
Chris Lattner | 52f86d6 | 2004-01-20 00:54:06 +0000 | [diff] [blame] | 446 | if (GlobalTyID < ModuleValues.size() && ModuleValues[GlobalTyID]) { |
| 447 | if (Num < ModuleValues[GlobalTyID]->size()) |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 448 | return ModuleValues[GlobalTyID]->getOperand(Num); |
Chris Lattner | 52f86d6 | 2004-01-20 00:54:06 +0000 | [diff] [blame] | 449 | Num -= ModuleValues[GlobalTyID]->size(); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 450 | } |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 453 | if (FunctionValues.size() > type && |
| 454 | FunctionValues[type] && |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 455 | Num < FunctionValues[type]->size()) |
| 456 | return FunctionValues[type]->getOperand(Num); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 457 | |
Chris Lattner | 7473413 | 2002-08-17 22:01:27 +0000 | [diff] [blame] | 458 | if (!Create) return 0; // Do not create a placeholder? |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 459 | |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 460 | // Did we already create a place holder? |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 461 | std::pair<unsigned,unsigned> KeyValue(type, oNum); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 462 | ForwardReferenceMap::iterator I = ForwardReferences.lower_bound(KeyValue); |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 463 | if (I != ForwardReferences.end() && I->first == KeyValue) |
| 464 | return I->second; // We have already created this placeholder |
| 465 | |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 466 | // If the type exists (it should) |
| 467 | if (const Type* Ty = getType(type)) { |
| 468 | // Create the place holder |
| 469 | Value *Val = new Argument(Ty); |
| 470 | ForwardReferences.insert(I, std::make_pair(KeyValue, Val)); |
| 471 | return Val; |
| 472 | } |
| 473 | throw "Can't create placeholder for value of type slot #" + utostr(type); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 476 | /// This is just like getValue, but when a compaction table is in use, it |
| 477 | /// is ignored. Also, no forward references or other fancy features are |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 478 | /// supported. |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 479 | Value* BytecodeReader::getGlobalTableValue(unsigned TyID, unsigned SlotNo) { |
| 480 | if (SlotNo == 0) |
| 481 | return Constant::getNullValue(getType(TyID)); |
| 482 | |
| 483 | if (!CompactionTypes.empty() && TyID >= Type::FirstDerivedTyID) { |
| 484 | TyID -= Type::FirstDerivedTyID; |
| 485 | if (TyID >= CompactionTypes.size()) |
| 486 | error("Type ID out of range for compaction table!"); |
| 487 | TyID = CompactionTypes[TyID].second; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 488 | } |
| 489 | |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 490 | --SlotNo; |
| 491 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 492 | if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0 || |
| 493 | SlotNo >= ModuleValues[TyID]->size()) { |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 494 | if (TyID >= ModuleValues.size() || ModuleValues[TyID] == 0) |
| 495 | error("Corrupt compaction table entry!" |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 496 | + utostr(TyID) + ", " + utostr(SlotNo) + ": " |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 497 | + utostr(ModuleValues.size())); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 498 | else |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 499 | error("Corrupt compaction table entry!" |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 500 | + utostr(TyID) + ", " + utostr(SlotNo) + ": " |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 501 | + utostr(ModuleValues.size()) + ", " |
Reid Spencer | 9a7e0c5 | 2004-08-04 22:56:46 +0000 | [diff] [blame] | 502 | + utohexstr(reinterpret_cast<uint64_t>(((void*)ModuleValues[TyID]))) |
| 503 | + ", " |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 504 | + utostr(ModuleValues[TyID]->size())); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 505 | } |
| 506 | return ModuleValues[TyID]->getOperand(SlotNo); |
| 507 | } |
| 508 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 509 | /// Just like getValue, except that it returns a null pointer |
| 510 | /// only on error. It always returns a constant (meaning that if the value is |
| 511 | /// defined, but is not a constant, that is an error). If the specified |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 512 | /// constant hasn't been parsed yet, a placeholder is defined and used. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 513 | /// Later, after the real value is parsed, the placeholder is eliminated. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 514 | Constant* BytecodeReader::getConstantValue(unsigned TypeSlot, unsigned Slot) { |
| 515 | if (Value *V = getValue(TypeSlot, Slot, false)) |
| 516 | if (Constant *C = dyn_cast<Constant>(V)) |
| 517 | return C; // If we already have the value parsed, just return it |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 518 | else |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 519 | error("Value for slot " + utostr(Slot) + |
Reid Spencer | a86037e | 2004-07-18 00:12:03 +0000 | [diff] [blame] | 520 | " is expected to be a constant!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 521 | |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 522 | std::pair<unsigned, unsigned> Key(TypeSlot, Slot); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 523 | ConstantRefsType::iterator I = ConstantFwdRefs.lower_bound(Key); |
| 524 | |
| 525 | if (I != ConstantFwdRefs.end() && I->first == Key) { |
| 526 | return I->second; |
| 527 | } else { |
| 528 | // Create a placeholder for the constant reference and |
| 529 | // keep track of the fact that we have a forward ref to recycle it |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 530 | Constant *C = new ConstantPlaceHolder(getType(TypeSlot)); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 531 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 532 | // Keep track of the fact that we have a forward ref to recycle it |
| 533 | ConstantFwdRefs.insert(I, std::make_pair(Key, C)); |
| 534 | return C; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | //===----------------------------------------------------------------------===// |
| 539 | // IR Construction Methods |
| 540 | //===----------------------------------------------------------------------===// |
| 541 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 542 | /// As values are created, they are inserted into the appropriate place |
| 543 | /// with this method. The ValueTable argument must be one of ModuleValues |
| 544 | /// or FunctionValues data members of this class. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 545 | unsigned BytecodeReader::insertValue(Value *Val, unsigned type, |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 546 | ValueTable &ValueTab) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 547 | if (ValueTab.size() <= type) |
| 548 | ValueTab.resize(type+1); |
| 549 | |
| 550 | if (!ValueTab[type]) ValueTab[type] = new ValueList(); |
| 551 | |
| 552 | ValueTab[type]->push_back(Val); |
| 553 | |
Chris Lattner | aba5ff5 | 2005-05-05 20:57:00 +0000 | [diff] [blame] | 554 | bool HasOffset = hasImplicitNull(type) && !isa<OpaqueType>(Val->getType()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 555 | return ValueTab[type]->size()-1 + HasOffset; |
| 556 | } |
| 557 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 558 | /// Insert the arguments of a function as new values in the reader. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 559 | void BytecodeReader::insertArguments(Function* F) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 560 | const FunctionType *FT = F->getFunctionType(); |
Chris Lattner | e4d5c44 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 561 | Function::arg_iterator AI = F->arg_begin(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 562 | for (FunctionType::param_iterator It = FT->param_begin(); |
| 563 | It != FT->param_end(); ++It, ++AI) |
| 564 | insertValue(AI, getTypeSlot(AI->getType()), FunctionValues); |
| 565 | } |
| 566 | |
| 567 | //===----------------------------------------------------------------------===// |
| 568 | // Bytecode Parsing Methods |
| 569 | //===----------------------------------------------------------------------===// |
| 570 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 571 | /// This method parses a single instruction. The instruction is |
| 572 | /// inserted at the end of the \p BB provided. The arguments of |
Misha Brukman | 44666b1 | 2004-09-28 16:57:46 +0000 | [diff] [blame] | 573 | /// the instruction are provided in the \p Oprnds vector. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 574 | void BytecodeReader::ParseInstruction(std::vector<unsigned> &Oprnds, |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 575 | BasicBlock* BB) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 576 | BufPtr SaveAt = At; |
| 577 | |
| 578 | // Clear instruction data |
| 579 | Oprnds.clear(); |
| 580 | unsigned iType = 0; |
| 581 | unsigned Opcode = 0; |
| 582 | unsigned Op = read_uint(); |
| 583 | |
| 584 | // bits Instruction format: Common to all formats |
| 585 | // -------------------------- |
| 586 | // 01-00: Opcode type, fixed to 1. |
| 587 | // 07-02: Opcode |
| 588 | Opcode = (Op >> 2) & 63; |
| 589 | Oprnds.resize((Op >> 0) & 03); |
| 590 | |
| 591 | // Extract the operands |
| 592 | switch (Oprnds.size()) { |
| 593 | case 1: |
| 594 | // bits Instruction format: |
| 595 | // -------------------------- |
| 596 | // 19-08: Resulting type plane |
| 597 | // 31-20: Operand #1 (if set to (2^12-1), then zero operands) |
| 598 | // |
| 599 | iType = (Op >> 8) & 4095; |
| 600 | Oprnds[0] = (Op >> 20) & 4095; |
| 601 | if (Oprnds[0] == 4095) // Handle special encoding for 0 operands... |
| 602 | Oprnds.resize(0); |
| 603 | break; |
| 604 | case 2: |
| 605 | // bits Instruction format: |
| 606 | // -------------------------- |
| 607 | // 15-08: Resulting type plane |
| 608 | // 23-16: Operand #1 |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 609 | // 31-24: Operand #2 |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 610 | // |
| 611 | iType = (Op >> 8) & 255; |
| 612 | Oprnds[0] = (Op >> 16) & 255; |
| 613 | Oprnds[1] = (Op >> 24) & 255; |
| 614 | break; |
| 615 | case 3: |
| 616 | // bits Instruction format: |
| 617 | // -------------------------- |
| 618 | // 13-08: Resulting type plane |
| 619 | // 19-14: Operand #1 |
| 620 | // 25-20: Operand #2 |
| 621 | // 31-26: Operand #3 |
| 622 | // |
| 623 | iType = (Op >> 8) & 63; |
| 624 | Oprnds[0] = (Op >> 14) & 63; |
| 625 | Oprnds[1] = (Op >> 20) & 63; |
| 626 | Oprnds[2] = (Op >> 26) & 63; |
| 627 | break; |
| 628 | case 0: |
| 629 | At -= 4; // Hrm, try this again... |
| 630 | Opcode = read_vbr_uint(); |
| 631 | Opcode >>= 2; |
| 632 | iType = read_vbr_uint(); |
| 633 | |
| 634 | unsigned NumOprnds = read_vbr_uint(); |
| 635 | Oprnds.resize(NumOprnds); |
| 636 | |
| 637 | if (NumOprnds == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 638 | error("Zero-argument instruction found; this is invalid."); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 639 | |
| 640 | for (unsigned i = 0; i != NumOprnds; ++i) |
| 641 | Oprnds[i] = read_vbr_uint(); |
| 642 | align32(); |
| 643 | break; |
| 644 | } |
| 645 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 646 | const Type *InstTy = getSanitizedType(iType); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 647 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 648 | // We have enough info to inform the handler now. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 649 | if (Handler) Handler->handleInstruction(Opcode, InstTy, Oprnds, At-SaveAt); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 650 | |
| 651 | // Declare the resulting instruction we'll build. |
| 652 | Instruction *Result = 0; |
| 653 | |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 654 | // If this is a bytecode format that did not include the unreachable |
| 655 | // instruction, bump up all opcodes numbers to make space. |
| 656 | if (hasNoUnreachableInst) { |
| 657 | if (Opcode >= Instruction::Unreachable && |
| 658 | Opcode < 62) { |
| 659 | ++Opcode; |
| 660 | } |
| 661 | } |
| 662 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 663 | // Handle binary operators |
| 664 | if (Opcode >= Instruction::BinaryOpsBegin && |
| 665 | Opcode < Instruction::BinaryOpsEnd && Oprnds.size() == 2) |
| 666 | Result = BinaryOperator::create((Instruction::BinaryOps)Opcode, |
| 667 | getValue(iType, Oprnds[0]), |
| 668 | getValue(iType, Oprnds[1])); |
| 669 | |
Reid Spencer | e1e96c0 | 2006-01-19 07:02:16 +0000 | [diff] [blame] | 670 | bool isCall = false; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 671 | switch (Opcode) { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 672 | default: |
| 673 | if (Result == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 674 | error("Illegal instruction read!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 675 | break; |
| 676 | case Instruction::VAArg: |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 677 | Result = new VAArgInst(getValue(iType, Oprnds[0]), |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 678 | getSanitizedType(Oprnds[1])); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 679 | break; |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 680 | case 32: { //VANext_old |
| 681 | const Type* ArgTy = getValue(iType, Oprnds[0])->getType(); |
Jeff Cohen | 66c5fd6 | 2005-10-23 04:37:20 +0000 | [diff] [blame] | 682 | Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, |
| 683 | (Type *)0); |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 684 | |
| 685 | //b = vanext a, t -> |
| 686 | //foo = alloca 1 of t |
| 687 | //bar = vacopy a |
| 688 | //store bar -> foo |
| 689 | //tmp = vaarg foo, t |
| 690 | //b = load foo |
| 691 | AllocaInst* foo = new AllocaInst(ArgTy, 0, "vanext.fix"); |
| 692 | BB->getInstList().push_back(foo); |
| 693 | CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0])); |
| 694 | BB->getInstList().push_back(bar); |
| 695 | BB->getInstList().push_back(new StoreInst(bar, foo)); |
| 696 | Instruction* tmp = new VAArgInst(foo, getSanitizedType(Oprnds[1])); |
| 697 | BB->getInstList().push_back(tmp); |
| 698 | Result = new LoadInst(foo); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 699 | break; |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 700 | } |
| 701 | case 33: { //VAArg_old |
| 702 | const Type* ArgTy = getValue(iType, Oprnds[0])->getType(); |
Jeff Cohen | 66c5fd6 | 2005-10-23 04:37:20 +0000 | [diff] [blame] | 703 | Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, |
| 704 | (Type *)0); |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 705 | |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 706 | //b = vaarg a, t -> |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 707 | //foo = alloca 1 of t |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 708 | //bar = vacopy a |
Andrew Lenharth | 558bc88 | 2005-06-18 18:34:52 +0000 | [diff] [blame] | 709 | //store bar -> foo |
| 710 | //b = vaarg foo, t |
| 711 | AllocaInst* foo = new AllocaInst(ArgTy, 0, "vaarg.fix"); |
| 712 | BB->getInstList().push_back(foo); |
| 713 | CallInst* bar = new CallInst(NF, getValue(iType, Oprnds[0])); |
| 714 | BB->getInstList().push_back(bar); |
| 715 | BB->getInstList().push_back(new StoreInst(bar, foo)); |
| 716 | Result = new VAArgInst(foo, getSanitizedType(Oprnds[1])); |
| 717 | break; |
| 718 | } |
Robert Bocchino | fee31b3 | 2006-01-10 19:04:39 +0000 | [diff] [blame] | 719 | case Instruction::ExtractElement: { |
| 720 | if (Oprnds.size() != 2) |
| 721 | throw std::string("Invalid extractelement instruction!"); |
| 722 | Result = new ExtractElementInst(getValue(iType, Oprnds[0]), |
| 723 | getValue(Type::UIntTyID, Oprnds[1])); |
| 724 | break; |
| 725 | } |
Robert Bocchino | b1f240b | 2006-01-17 20:06:35 +0000 | [diff] [blame] | 726 | case Instruction::InsertElement: { |
| 727 | const PackedType *PackedTy = dyn_cast<PackedType>(InstTy); |
| 728 | if (!PackedTy || Oprnds.size() != 3) |
| 729 | throw std::string("Invalid insertelement instruction!"); |
| 730 | Result = |
| 731 | new InsertElementInst(getValue(iType, Oprnds[0]), |
| 732 | getValue(getTypeSlot(PackedTy->getElementType()), |
| 733 | Oprnds[1]), |
| 734 | getValue(Type::UIntTyID, Oprnds[2])); |
| 735 | break; |
| 736 | } |
Chris Lattner | 30b44b6 | 2006-04-08 01:17:59 +0000 | [diff] [blame] | 737 | case Instruction::ShuffleVector: { |
| 738 | const PackedType *PackedTy = dyn_cast<PackedType>(InstTy); |
| 739 | if (!PackedTy || Oprnds.size() != 3) |
| 740 | throw std::string("Invalid shufflevector instruction!"); |
| 741 | Value *V1 = getValue(iType, Oprnds[0]); |
| 742 | Value *V2 = getValue(iType, Oprnds[1]); |
| 743 | const PackedType *EltTy = |
| 744 | PackedType::get(Type::UIntTy, PackedTy->getNumElements()); |
| 745 | Value *V3 = getValue(getTypeSlot(EltTy), Oprnds[2]); |
| 746 | if (!ShuffleVectorInst::isValidOperands(V1, V2, V3)) |
| 747 | throw std::string("Invalid shufflevector instruction!"); |
| 748 | Result = new ShuffleVectorInst(V1, V2, V3); |
| 749 | break; |
| 750 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 751 | case Instruction::Cast: |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 752 | Result = new CastInst(getValue(iType, Oprnds[0]), |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 753 | getSanitizedType(Oprnds[1])); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 754 | break; |
| 755 | case Instruction::Select: |
| 756 | Result = new SelectInst(getValue(Type::BoolTyID, Oprnds[0]), |
| 757 | getValue(iType, Oprnds[1]), |
| 758 | getValue(iType, Oprnds[2])); |
| 759 | break; |
| 760 | case Instruction::PHI: { |
| 761 | if (Oprnds.size() == 0 || (Oprnds.size() & 1)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 762 | error("Invalid phi node encountered!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 763 | |
| 764 | PHINode *PN = new PHINode(InstTy); |
Chris Lattner | cad28bd | 2005-01-29 00:36:19 +0000 | [diff] [blame] | 765 | PN->reserveOperandSpace(Oprnds.size()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 766 | for (unsigned i = 0, e = Oprnds.size(); i != e; i += 2) |
| 767 | PN->addIncoming(getValue(iType, Oprnds[i]), getBasicBlock(Oprnds[i+1])); |
| 768 | Result = PN; |
| 769 | break; |
| 770 | } |
| 771 | |
| 772 | case Instruction::Shl: |
| 773 | case Instruction::Shr: |
| 774 | Result = new ShiftInst((Instruction::OtherOps)Opcode, |
| 775 | getValue(iType, Oprnds[0]), |
| 776 | getValue(Type::UByteTyID, Oprnds[1])); |
| 777 | break; |
| 778 | case Instruction::Ret: |
| 779 | if (Oprnds.size() == 0) |
| 780 | Result = new ReturnInst(); |
| 781 | else if (Oprnds.size() == 1) |
| 782 | Result = new ReturnInst(getValue(iType, Oprnds[0])); |
| 783 | else |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 784 | error("Unrecognized instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 785 | break; |
| 786 | |
| 787 | case Instruction::Br: |
| 788 | if (Oprnds.size() == 1) |
| 789 | Result = new BranchInst(getBasicBlock(Oprnds[0])); |
| 790 | else if (Oprnds.size() == 3) |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 791 | Result = new BranchInst(getBasicBlock(Oprnds[0]), |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 792 | getBasicBlock(Oprnds[1]), getValue(Type::BoolTyID , Oprnds[2])); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 793 | else |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 794 | error("Invalid number of operands for a 'br' instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 795 | break; |
| 796 | case Instruction::Switch: { |
| 797 | if (Oprnds.size() & 1) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 798 | error("Switch statement with odd number of arguments!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 799 | |
| 800 | SwitchInst *I = new SwitchInst(getValue(iType, Oprnds[0]), |
Chris Lattner | cad28bd | 2005-01-29 00:36:19 +0000 | [diff] [blame] | 801 | getBasicBlock(Oprnds[1]), |
| 802 | Oprnds.size()/2-1); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 803 | for (unsigned i = 2, e = Oprnds.size(); i != e; i += 2) |
Chris Lattner | 7e61823 | 2005-02-24 05:26:04 +0000 | [diff] [blame] | 804 | I->addCase(cast<ConstantInt>(getValue(iType, Oprnds[i])), |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 805 | getBasicBlock(Oprnds[i+1])); |
| 806 | Result = I; |
| 807 | break; |
| 808 | } |
| 809 | |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 810 | case 58: // Call with extra operand for calling conv |
| 811 | case 59: // tail call, Fast CC |
| 812 | case 60: // normal call, Fast CC |
| 813 | case 61: // tail call, C Calling Conv |
| 814 | case Instruction::Call: { // Normal Call, C Calling Convention |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 815 | if (Oprnds.size() == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 816 | error("Invalid call instruction encountered!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 817 | |
| 818 | Value *F = getValue(iType, Oprnds[0]); |
| 819 | |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 820 | unsigned CallingConv = CallingConv::C; |
| 821 | bool isTailCall = false; |
| 822 | |
| 823 | if (Opcode == 61 || Opcode == 59) |
| 824 | isTailCall = true; |
| 825 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 826 | // Check to make sure we have a pointer to function type |
| 827 | const PointerType *PTy = dyn_cast<PointerType>(F->getType()); |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 828 | if (PTy == 0) error("Call to non function pointer value!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 829 | const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType()); |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 830 | if (FTy == 0) error("Call to non function pointer value!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 831 | |
| 832 | std::vector<Value *> Params; |
| 833 | if (!FTy->isVarArg()) { |
| 834 | FunctionType::param_iterator It = FTy->param_begin(); |
| 835 | |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 836 | if (Opcode == 58) { |
| 837 | isTailCall = Oprnds.back() & 1; |
| 838 | CallingConv = Oprnds.back() >> 1; |
| 839 | Oprnds.pop_back(); |
| 840 | } else if (Opcode == 59 || Opcode == 60) |
| 841 | CallingConv = CallingConv::Fast; |
| 842 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 843 | for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) { |
| 844 | if (It == FTy->param_end()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 845 | error("Invalid call instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 846 | Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i])); |
| 847 | } |
| 848 | if (It != FTy->param_end()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 849 | error("Invalid call instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 850 | } else { |
| 851 | Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1); |
| 852 | |
| 853 | unsigned FirstVariableOperand; |
| 854 | if (Oprnds.size() < FTy->getNumParams()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 855 | error("Call instruction missing operands!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 856 | |
| 857 | // Read all of the fixed arguments |
| 858 | for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) |
| 859 | Params.push_back(getValue(getTypeSlot(FTy->getParamType(i)),Oprnds[i])); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 860 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 861 | FirstVariableOperand = FTy->getNumParams(); |
| 862 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 863 | if ((Oprnds.size()-FirstVariableOperand) & 1) |
Chris Lattner | 4a242b3 | 2004-10-14 01:39:18 +0000 | [diff] [blame] | 864 | error("Invalid call instruction!"); // Must be pairs of type/value |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 865 | |
| 866 | for (unsigned i = FirstVariableOperand, e = Oprnds.size(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 867 | i != e; i += 2) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 868 | Params.push_back(getValue(Oprnds[i], Oprnds[i+1])); |
| 869 | } |
| 870 | |
| 871 | Result = new CallInst(F, Params); |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 872 | if (isTailCall) cast<CallInst>(Result)->setTailCall(); |
| 873 | if (CallingConv) cast<CallInst>(Result)->setCallingConv(CallingConv); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 874 | break; |
| 875 | } |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 876 | case 56: // Invoke with encoded CC |
| 877 | case 57: // Invoke Fast CC |
| 878 | case Instruction::Invoke: { // Invoke C CC |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 879 | if (Oprnds.size() < 3) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 880 | error("Invalid invoke instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 881 | Value *F = getValue(iType, Oprnds[0]); |
| 882 | |
| 883 | // Check to make sure we have a pointer to function type |
| 884 | const PointerType *PTy = dyn_cast<PointerType>(F->getType()); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 885 | if (PTy == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 886 | error("Invoke to non function pointer value!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 887 | const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType()); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 888 | if (FTy == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 889 | error("Invoke to non function pointer value!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 890 | |
| 891 | std::vector<Value *> Params; |
| 892 | BasicBlock *Normal, *Except; |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 893 | unsigned CallingConv = CallingConv::C; |
| 894 | |
| 895 | if (Opcode == 57) |
| 896 | CallingConv = CallingConv::Fast; |
| 897 | else if (Opcode == 56) { |
| 898 | CallingConv = Oprnds.back(); |
| 899 | Oprnds.pop_back(); |
| 900 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 901 | |
| 902 | if (!FTy->isVarArg()) { |
| 903 | Normal = getBasicBlock(Oprnds[1]); |
| 904 | Except = getBasicBlock(Oprnds[2]); |
| 905 | |
| 906 | FunctionType::param_iterator It = FTy->param_begin(); |
| 907 | for (unsigned i = 3, e = Oprnds.size(); i != e; ++i) { |
| 908 | if (It == FTy->param_end()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 909 | error("Invalid invoke instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 910 | Params.push_back(getValue(getTypeSlot(*It++), Oprnds[i])); |
| 911 | } |
| 912 | if (It != FTy->param_end()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 913 | error("Invalid invoke instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 914 | } else { |
| 915 | Oprnds.erase(Oprnds.begin(), Oprnds.begin()+1); |
| 916 | |
| 917 | Normal = getBasicBlock(Oprnds[0]); |
| 918 | Except = getBasicBlock(Oprnds[1]); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 919 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 920 | unsigned FirstVariableArgument = FTy->getNumParams()+2; |
| 921 | for (unsigned i = 2; i != FirstVariableArgument; ++i) |
| 922 | Params.push_back(getValue(getTypeSlot(FTy->getParamType(i-2)), |
| 923 | Oprnds[i])); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 924 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 925 | if (Oprnds.size()-FirstVariableArgument & 1) // Must be type/value pairs |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 926 | error("Invalid invoke instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 927 | |
| 928 | for (unsigned i = FirstVariableArgument; i < Oprnds.size(); i += 2) |
| 929 | Params.push_back(getValue(Oprnds[i], Oprnds[i+1])); |
| 930 | } |
| 931 | |
| 932 | Result = new InvokeInst(F, Normal, Except, Params); |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 933 | if (CallingConv) cast<InvokeInst>(Result)->setCallingConv(CallingConv); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 934 | break; |
| 935 | } |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 936 | case Instruction::Malloc: { |
| 937 | unsigned Align = 0; |
| 938 | if (Oprnds.size() == 2) |
| 939 | Align = (1 << Oprnds[1]) >> 1; |
| 940 | else if (Oprnds.size() > 2) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 941 | error("Invalid malloc instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 942 | if (!isa<PointerType>(InstTy)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 943 | error("Invalid malloc instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 944 | |
| 945 | Result = new MallocInst(cast<PointerType>(InstTy)->getElementType(), |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 946 | getValue(Type::UIntTyID, Oprnds[0]), Align); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 947 | break; |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 948 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 949 | |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 950 | case Instruction::Alloca: { |
| 951 | unsigned Align = 0; |
| 952 | if (Oprnds.size() == 2) |
| 953 | Align = (1 << Oprnds[1]) >> 1; |
| 954 | else if (Oprnds.size() > 2) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 955 | error("Invalid alloca instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 956 | if (!isa<PointerType>(InstTy)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 957 | error("Invalid alloca instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 958 | |
| 959 | Result = new AllocaInst(cast<PointerType>(InstTy)->getElementType(), |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 960 | getValue(Type::UIntTyID, Oprnds[0]), Align); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 961 | break; |
Chris Lattner | 42ba6b4 | 2005-11-05 22:08:14 +0000 | [diff] [blame] | 962 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 963 | case Instruction::Free: |
| 964 | if (!isa<PointerType>(InstTy)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 965 | error("Invalid free instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 966 | Result = new FreeInst(getValue(iType, Oprnds[0])); |
| 967 | break; |
| 968 | case Instruction::GetElementPtr: { |
| 969 | if (Oprnds.size() == 0 || !isa<PointerType>(InstTy)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 970 | error("Invalid getelementptr instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 971 | |
| 972 | std::vector<Value*> Idx; |
| 973 | |
| 974 | const Type *NextTy = InstTy; |
| 975 | for (unsigned i = 1, e = Oprnds.size(); i != e; ++i) { |
| 976 | const CompositeType *TopTy = dyn_cast_or_null<CompositeType>(NextTy); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 977 | if (!TopTy) |
| 978 | error("Invalid getelementptr instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 979 | |
| 980 | unsigned ValIdx = Oprnds[i]; |
| 981 | unsigned IdxTy = 0; |
| 982 | if (!hasRestrictedGEPTypes) { |
| 983 | // Struct indices are always uints, sequential type indices can be any |
| 984 | // of the 32 or 64-bit integer types. The actual choice of type is |
| 985 | // encoded in the low two bits of the slot number. |
| 986 | if (isa<StructType>(TopTy)) |
| 987 | IdxTy = Type::UIntTyID; |
| 988 | else { |
| 989 | switch (ValIdx & 3) { |
| 990 | default: |
| 991 | case 0: IdxTy = Type::UIntTyID; break; |
| 992 | case 1: IdxTy = Type::IntTyID; break; |
| 993 | case 2: IdxTy = Type::ULongTyID; break; |
| 994 | case 3: IdxTy = Type::LongTyID; break; |
| 995 | } |
| 996 | ValIdx >>= 2; |
| 997 | } |
| 998 | } else { |
| 999 | IdxTy = isa<StructType>(TopTy) ? Type::UByteTyID : Type::LongTyID; |
| 1000 | } |
| 1001 | |
| 1002 | Idx.push_back(getValue(IdxTy, ValIdx)); |
| 1003 | |
| 1004 | // Convert ubyte struct indices into uint struct indices. |
| 1005 | if (isa<StructType>(TopTy) && hasRestrictedGEPTypes) |
| 1006 | if (ConstantUInt *C = dyn_cast<ConstantUInt>(Idx.back())) |
| 1007 | Idx[Idx.size()-1] = ConstantExpr::getCast(C, Type::UIntTy); |
| 1008 | |
| 1009 | NextTy = GetElementPtrInst::getIndexedType(InstTy, Idx, true); |
| 1010 | } |
| 1011 | |
| 1012 | Result = new GetElementPtrInst(getValue(iType, Oprnds[0]), Idx); |
| 1013 | break; |
| 1014 | } |
| 1015 | |
| 1016 | case 62: // volatile load |
| 1017 | case Instruction::Load: |
| 1018 | if (Oprnds.size() != 1 || !isa<PointerType>(InstTy)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1019 | error("Invalid load instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1020 | Result = new LoadInst(getValue(iType, Oprnds[0]), "", Opcode == 62); |
| 1021 | break; |
| 1022 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1023 | case 63: // volatile store |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1024 | case Instruction::Store: { |
| 1025 | if (!isa<PointerType>(InstTy) || Oprnds.size() != 2) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1026 | error("Invalid store instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1027 | |
| 1028 | Value *Ptr = getValue(iType, Oprnds[1]); |
| 1029 | const Type *ValTy = cast<PointerType>(Ptr->getType())->getElementType(); |
| 1030 | Result = new StoreInst(getValue(getTypeSlot(ValTy), Oprnds[0]), Ptr, |
| 1031 | Opcode == 63); |
| 1032 | break; |
| 1033 | } |
| 1034 | case Instruction::Unwind: |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 1035 | if (Oprnds.size() != 0) error("Invalid unwind instruction!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1036 | Result = new UnwindInst(); |
| 1037 | break; |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 1038 | case Instruction::Unreachable: |
| 1039 | if (Oprnds.size() != 0) error("Invalid unreachable instruction!"); |
| 1040 | Result = new UnreachableInst(); |
| 1041 | break; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1042 | } // end switch(Opcode) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1043 | |
Reid Spencer | e1e96c0 | 2006-01-19 07:02:16 +0000 | [diff] [blame] | 1044 | BB->getInstList().push_back(Result); |
| 1045 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1046 | unsigned TypeSlot; |
| 1047 | if (Result->getType() == InstTy) |
| 1048 | TypeSlot = iType; |
| 1049 | else |
| 1050 | TypeSlot = getTypeSlot(Result->getType()); |
| 1051 | |
| 1052 | insertValue(Result, TypeSlot, FunctionValues); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1053 | } |
| 1054 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1055 | /// Get a particular numbered basic block, which might be a forward reference. |
| 1056 | /// This works together with ParseBasicBlock to handle these forward references |
Chris Lattner | 4a242b3 | 2004-10-14 01:39:18 +0000 | [diff] [blame] | 1057 | /// in a clean manner. This function is used when constructing phi, br, switch, |
| 1058 | /// and other instructions that reference basic blocks. Blocks are numbered |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1059 | /// sequentially as they appear in the function. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1060 | BasicBlock *BytecodeReader::getBasicBlock(unsigned ID) { |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1061 | // Make sure there is room in the table... |
| 1062 | if (ParsedBasicBlocks.size() <= ID) ParsedBasicBlocks.resize(ID+1); |
| 1063 | |
| 1064 | // First check to see if this is a backwards reference, i.e., ParseBasicBlock |
| 1065 | // has already created this block, or if the forward reference has already |
| 1066 | // been created. |
| 1067 | if (ParsedBasicBlocks[ID]) |
| 1068 | return ParsedBasicBlocks[ID]; |
| 1069 | |
| 1070 | // Otherwise, the basic block has not yet been created. Do so and add it to |
| 1071 | // the ParsedBasicBlocks list. |
| 1072 | return ParsedBasicBlocks[ID] = new BasicBlock(); |
| 1073 | } |
| 1074 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1075 | /// In LLVM 1.0 bytecode files, we used to output one basicblock at a time. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1076 | /// This method reads in one of the basicblock packets. This method is not used |
| 1077 | /// for bytecode files after LLVM 1.0 |
| 1078 | /// @returns The basic block constructed. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1079 | BasicBlock *BytecodeReader::ParseBasicBlock(unsigned BlockNo) { |
| 1080 | if (Handler) Handler->handleBasicBlockBegin(BlockNo); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1081 | |
| 1082 | BasicBlock *BB = 0; |
| 1083 | |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1084 | if (ParsedBasicBlocks.size() == BlockNo) |
| 1085 | ParsedBasicBlocks.push_back(BB = new BasicBlock()); |
| 1086 | else if (ParsedBasicBlocks[BlockNo] == 0) |
| 1087 | BB = ParsedBasicBlocks[BlockNo] = new BasicBlock(); |
| 1088 | else |
| 1089 | BB = ParsedBasicBlocks[BlockNo]; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1090 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1091 | std::vector<unsigned> Operands; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1092 | while (moreInBlock()) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1093 | ParseInstruction(Operands, BB); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1094 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1095 | if (Handler) Handler->handleBasicBlockEnd(BlockNo); |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 1096 | return BB; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1099 | /// Parse all of the BasicBlock's & Instruction's in the body of a function. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1100 | /// In post 1.0 bytecode files, we no longer emit basic block individually, |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1101 | /// in order to avoid per-basic-block overhead. |
| 1102 | /// @returns Rhe number of basic blocks encountered. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1103 | unsigned BytecodeReader::ParseInstructionList(Function* F) { |
Chris Lattner | 8d1dbd2 | 2003-12-01 07:05:31 +0000 | [diff] [blame] | 1104 | unsigned BlockNo = 0; |
| 1105 | std::vector<unsigned> Args; |
| 1106 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1107 | while (moreInBlock()) { |
| 1108 | if (Handler) Handler->handleBasicBlockBegin(BlockNo); |
Chris Lattner | 8d1dbd2 | 2003-12-01 07:05:31 +0000 | [diff] [blame] | 1109 | BasicBlock *BB; |
| 1110 | if (ParsedBasicBlocks.size() == BlockNo) |
| 1111 | ParsedBasicBlocks.push_back(BB = new BasicBlock()); |
| 1112 | else if (ParsedBasicBlocks[BlockNo] == 0) |
| 1113 | BB = ParsedBasicBlocks[BlockNo] = new BasicBlock(); |
| 1114 | else |
| 1115 | BB = ParsedBasicBlocks[BlockNo]; |
| 1116 | ++BlockNo; |
| 1117 | F->getBasicBlockList().push_back(BB); |
| 1118 | |
| 1119 | // Read instructions into this basic block until we get to a terminator |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1120 | while (moreInBlock() && !BB->getTerminator()) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1121 | ParseInstruction(Args, BB); |
Chris Lattner | 8d1dbd2 | 2003-12-01 07:05:31 +0000 | [diff] [blame] | 1122 | |
| 1123 | if (!BB->getTerminator()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1124 | error("Non-terminated basic block found!"); |
Reid Spencer | 5c15fe5 | 2004-07-05 00:57:50 +0000 | [diff] [blame] | 1125 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1126 | if (Handler) Handler->handleBasicBlockEnd(BlockNo-1); |
Chris Lattner | 8d1dbd2 | 2003-12-01 07:05:31 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | return BlockNo; |
| 1130 | } |
| 1131 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1132 | /// Parse a symbol table. This works for both module level and function |
| 1133 | /// level symbol tables. For function level symbol tables, the CurrentFunction |
| 1134 | /// parameter must be non-zero and the ST parameter must correspond to |
| 1135 | /// CurrentFunction's symbol table. For Module level symbol tables, the |
| 1136 | /// CurrentFunction argument must be zero. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1137 | void BytecodeReader::ParseSymbolTable(Function *CurrentFunction, |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1138 | SymbolTable *ST) { |
| 1139 | if (Handler) Handler->handleSymbolTableBegin(CurrentFunction,ST); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1140 | |
Chris Lattner | 39cacce | 2003-10-10 05:43:47 +0000 | [diff] [blame] | 1141 | // Allow efficient basic block lookup by number. |
| 1142 | std::vector<BasicBlock*> BBMap; |
| 1143 | if (CurrentFunction) |
| 1144 | for (Function::iterator I = CurrentFunction->begin(), |
| 1145 | E = CurrentFunction->end(); I != E; ++I) |
| 1146 | BBMap.push_back(I); |
| 1147 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1148 | /// In LLVM 1.3 we write types separately from values so |
| 1149 | /// The types are always first in the symbol table. This is |
| 1150 | /// because Type no longer derives from Value. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1151 | if (!hasTypeDerivedFromValue) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1152 | // Symtab block header: [num entries] |
| 1153 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1154 | for (unsigned i = 0; i < NumEntries; ++i) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1155 | // Symtab entry: [def slot #][name] |
| 1156 | unsigned slot = read_vbr_uint(); |
| 1157 | std::string Name = read_str(); |
| 1158 | const Type* T = getType(slot); |
| 1159 | ST->insert(Name, T); |
| 1160 | } |
| 1161 | } |
| 1162 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1163 | while (moreInBlock()) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1164 | // Symtab block header: [num entries][type id number] |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1165 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1166 | unsigned Typ = 0; |
| 1167 | bool isTypeType = read_typeid(Typ); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1168 | const Type *Ty = getType(Typ); |
Chris Lattner | 1d670cc | 2001-09-07 16:37:43 +0000 | [diff] [blame] | 1169 | |
Chris Lattner | 7dc3a2e | 2003-10-13 14:57:53 +0000 | [diff] [blame] | 1170 | for (unsigned i = 0; i != NumEntries; ++i) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1171 | // Symtab entry: [def slot #][name] |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1172 | unsigned slot = read_vbr_uint(); |
| 1173 | std::string Name = read_str(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1174 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1175 | // if we're reading a pre 1.3 bytecode file and the type plane |
| 1176 | // is the "type type", handle it here |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1177 | if (isTypeType) { |
| 1178 | const Type* T = getType(slot); |
| 1179 | if (T == 0) |
| 1180 | error("Failed type look-up for name '" + Name + "'"); |
| 1181 | ST->insert(Name, T); |
| 1182 | continue; // code below must be short circuited |
Chris Lattner | 39cacce | 2003-10-10 05:43:47 +0000 | [diff] [blame] | 1183 | } else { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1184 | Value *V = 0; |
| 1185 | if (Typ == Type::LabelTyID) { |
| 1186 | if (slot < BBMap.size()) |
| 1187 | V = BBMap[slot]; |
| 1188 | } else { |
| 1189 | V = getValue(Typ, slot, false); // Find mapping... |
| 1190 | } |
| 1191 | if (V == 0) |
| 1192 | error("Failed value look-up for name '" + Name + "'"); |
Chris Lattner | 7acff25 | 2005-03-05 19:05:20 +0000 | [diff] [blame] | 1193 | V->setName(Name); |
Chris Lattner | 39cacce | 2003-10-10 05:43:47 +0000 | [diff] [blame] | 1194 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1195 | } |
| 1196 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1197 | checkPastBlockEnd("Symbol Table"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1198 | if (Handler) Handler->handleSymbolTableEnd(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1201 | /// Read in the types portion of a compaction table. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1202 | void BytecodeReader::ParseCompactionTypes(unsigned NumEntries) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1203 | for (unsigned i = 0; i != NumEntries; ++i) { |
| 1204 | unsigned TypeSlot = 0; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1205 | if (read_typeid(TypeSlot)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1206 | error("Invalid type in compaction table: type type"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1207 | const Type *Typ = getGlobalTableType(TypeSlot); |
Chris Lattner | 45b5dd2 | 2004-08-03 23:41:28 +0000 | [diff] [blame] | 1208 | CompactionTypes.push_back(std::make_pair(Typ, TypeSlot)); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1209 | if (Handler) Handler->handleCompactionTableType(i, TypeSlot, Typ); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1210 | } |
| 1211 | } |
| 1212 | |
| 1213 | /// Parse a compaction table. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1214 | void BytecodeReader::ParseCompactionTable() { |
| 1215 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1216 | // Notify handler that we're beginning a compaction table. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1217 | if (Handler) Handler->handleCompactionTableBegin(); |
| 1218 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1219 | // In LLVM 1.3 Type no longer derives from Value. So, |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1220 | // we always write them first in the compaction table |
| 1221 | // because they can't occupy a "type plane" where the |
| 1222 | // Values reside. |
| 1223 | if (! hasTypeDerivedFromValue) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1224 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1225 | ParseCompactionTypes(NumEntries); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1226 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1227 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1228 | // Compaction tables live in separate blocks so we have to loop |
| 1229 | // until we've read the whole thing. |
| 1230 | while (moreInBlock()) { |
| 1231 | // Read the number of Value* entries in the compaction table |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1232 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1233 | unsigned Ty = 0; |
| 1234 | unsigned isTypeType = false; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1235 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1236 | // Decode the type from value read in. Most compaction table |
| 1237 | // planes will have one or two entries in them. If that's the |
| 1238 | // case then the length is encoded in the bottom two bits and |
| 1239 | // the higher bits encode the type. This saves another VBR value. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1240 | if ((NumEntries & 3) == 3) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1241 | // In this case, both low-order bits are set (value 3). This |
| 1242 | // is a signal that the typeid follows. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1243 | NumEntries >>= 2; |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1244 | isTypeType = read_typeid(Ty); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1245 | } else { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1246 | // In this case, the low-order bits specify the number of entries |
| 1247 | // and the high order bits specify the type. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1248 | Ty = NumEntries >> 2; |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1249 | isTypeType = sanitizeTypeId(Ty); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1250 | NumEntries &= 3; |
| 1251 | } |
| 1252 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1253 | // if we're reading a pre 1.3 bytecode file and the type plane |
| 1254 | // is the "type type", handle it here |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1255 | if (isTypeType) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1256 | ParseCompactionTypes(NumEntries); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1257 | } else { |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1258 | // Make sure we have enough room for the plane. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1259 | if (Ty >= CompactionValues.size()) |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1260 | CompactionValues.resize(Ty+1); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1261 | |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1262 | // Make sure the plane is empty or we have some kind of error. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1263 | if (!CompactionValues[Ty].empty()) |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1264 | error("Compaction table plane contains multiple entries!"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1265 | |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1266 | // Notify handler about the plane. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1267 | if (Handler) Handler->handleCompactionTablePlane(Ty, NumEntries); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1268 | |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1269 | // Push the implicit zero. |
| 1270 | CompactionValues[Ty].push_back(Constant::getNullValue(getType(Ty))); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1271 | |
| 1272 | // Read in each of the entries, put them in the compaction table |
| 1273 | // and notify the handler that we have a new compaction table value. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1274 | for (unsigned i = 0; i != NumEntries; ++i) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1275 | unsigned ValSlot = read_vbr_uint(); |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1276 | Value *V = getGlobalTableValue(Ty, ValSlot); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1277 | CompactionValues[Ty].push_back(V); |
Chris Lattner | 2c6c14d | 2004-08-04 00:19:23 +0000 | [diff] [blame] | 1278 | if (Handler) Handler->handleCompactionTableValue(i, Ty, ValSlot); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1279 | } |
| 1280 | } |
| 1281 | } |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1282 | // Notify handler that the compaction table is done. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1283 | if (Handler) Handler->handleCompactionTableEnd(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1284 | } |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1285 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1286 | // Parse a single type. The typeid is read in first. If its a primitive type |
| 1287 | // then nothing else needs to be read, we know how to instantiate it. If its |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1288 | // a derived type, then additional data is read to fill out the type |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1289 | // definition. |
| 1290 | const Type *BytecodeReader::ParseType() { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1291 | unsigned PrimType = 0; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1292 | if (read_typeid(PrimType)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1293 | error("Invalid type (type type) in type constants!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1294 | |
| 1295 | const Type *Result = 0; |
| 1296 | if ((Result = Type::getPrimitiveType((Type::TypeID)PrimType))) |
| 1297 | return Result; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1298 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1299 | switch (PrimType) { |
| 1300 | case Type::FunctionTyID: { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1301 | const Type *RetType = readSanitizedType(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1302 | |
| 1303 | unsigned NumParams = read_vbr_uint(); |
| 1304 | |
| 1305 | std::vector<const Type*> Params; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1306 | while (NumParams--) |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1307 | Params.push_back(readSanitizedType()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1308 | |
| 1309 | bool isVarArg = Params.size() && Params.back() == Type::VoidTy; |
| 1310 | if (isVarArg) Params.pop_back(); |
| 1311 | |
| 1312 | Result = FunctionType::get(RetType, Params, isVarArg); |
| 1313 | break; |
| 1314 | } |
| 1315 | case Type::ArrayTyID: { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1316 | const Type *ElementType = readSanitizedType(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1317 | unsigned NumElements = read_vbr_uint(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1318 | Result = ArrayType::get(ElementType, NumElements); |
| 1319 | break; |
| 1320 | } |
Brian Gaeke | 715c90b | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1321 | case Type::PackedTyID: { |
| 1322 | const Type *ElementType = readSanitizedType(); |
| 1323 | unsigned NumElements = read_vbr_uint(); |
| 1324 | Result = PackedType::get(ElementType, NumElements); |
| 1325 | break; |
| 1326 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1327 | case Type::StructTyID: { |
| 1328 | std::vector<const Type*> Elements; |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1329 | unsigned Typ = 0; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1330 | if (read_typeid(Typ)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1331 | error("Invalid element type (type type) for structure!"); |
| 1332 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1333 | while (Typ) { // List is terminated by void/0 typeid |
| 1334 | Elements.push_back(getType(Typ)); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1335 | if (read_typeid(Typ)) |
| 1336 | error("Invalid element type (type type) for structure!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | Result = StructType::get(Elements); |
| 1340 | break; |
| 1341 | } |
| 1342 | case Type::PointerTyID: { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1343 | Result = PointerType::get(readSanitizedType()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1344 | break; |
| 1345 | } |
| 1346 | |
| 1347 | case Type::OpaqueTyID: { |
| 1348 | Result = OpaqueType::get(); |
| 1349 | break; |
| 1350 | } |
| 1351 | |
| 1352 | default: |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1353 | error("Don't know how to deserialize primitive type " + utostr(PrimType)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1354 | break; |
| 1355 | } |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1356 | if (Handler) Handler->handleType(Result); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1357 | return Result; |
| 1358 | } |
| 1359 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 1360 | // ParseTypes - We have to use this weird code to handle recursive |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1361 | // types. We know that recursive types will only reference the current slab of |
| 1362 | // values in the type plane, but they can forward reference types before they |
| 1363 | // have been read. For example, Type #0 might be '{ Ty#1 }' and Type #1 might |
| 1364 | // be 'Ty#0*'. When reading Type #0, type number one doesn't exist. To fix |
| 1365 | // this ugly problem, we pessimistically insert an opaque type for each type we |
| 1366 | // are about to read. This means that forward references will resolve to |
| 1367 | // something and when we reread the type later, we can replace the opaque type |
| 1368 | // with a new resolved concrete type. |
| 1369 | // |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1370 | void BytecodeReader::ParseTypes(TypeListTy &Tab, unsigned NumEntries){ |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1371 | assert(Tab.size() == 0 && "should not have read type constants in before!"); |
| 1372 | |
| 1373 | // Insert a bunch of opaque types to be resolved later... |
| 1374 | Tab.reserve(NumEntries); |
| 1375 | for (unsigned i = 0; i != NumEntries; ++i) |
| 1376 | Tab.push_back(OpaqueType::get()); |
| 1377 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1378 | if (Handler) |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 1379 | Handler->handleTypeList(NumEntries); |
| 1380 | |
Chris Lattner | eebac5f | 2005-10-03 21:26:53 +0000 | [diff] [blame] | 1381 | // If we are about to resolve types, make sure the type cache is clear. |
| 1382 | if (NumEntries) |
| 1383 | ModuleTypeIDCache.clear(); |
| 1384 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1385 | // Loop through reading all of the types. Forward types will make use of the |
| 1386 | // opaque types just inserted. |
| 1387 | // |
| 1388 | for (unsigned i = 0; i != NumEntries; ++i) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1389 | const Type* NewTy = ParseType(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1390 | const Type* OldTy = Tab[i].get(); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1391 | if (NewTy == 0) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1392 | error("Couldn't parse type!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1393 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1394 | // Don't directly push the new type on the Tab. Instead we want to replace |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1395 | // the opaque type we previously inserted with the new concrete value. This |
| 1396 | // approach helps with forward references to types. The refinement from the |
| 1397 | // abstract (opaque) type to the new type causes all uses of the abstract |
| 1398 | // type to use the concrete type (NewTy). This will also cause the opaque |
| 1399 | // type to be deleted. |
| 1400 | cast<DerivedType>(const_cast<Type*>(OldTy))->refineAbstractTypeTo(NewTy); |
| 1401 | |
| 1402 | // This should have replaced the old opaque type with the new type in the |
| 1403 | // value table... or with a preexisting type that was already in the system. |
| 1404 | // Let's just make sure it did. |
| 1405 | assert(Tab[i] != OldTy && "refineAbstractType didn't work!"); |
| 1406 | } |
| 1407 | } |
| 1408 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1409 | /// Parse a single constant value |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 1410 | Value *BytecodeReader::ParseConstantPoolValue(unsigned TypeID) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1411 | // We must check for a ConstantExpr before switching by type because |
| 1412 | // a ConstantExpr can be of any type, and has no explicit value. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1413 | // |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1414 | // 0 if not expr; numArgs if is expr |
| 1415 | unsigned isExprNumArgs = read_vbr_uint(); |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 1416 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1417 | if (isExprNumArgs) { |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 1418 | if (!hasNoUndefValue) { |
| 1419 | // 'undef' is encoded with 'exprnumargs' == 1. |
| 1420 | if (isExprNumArgs == 1) |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 1421 | return UndefValue::get(getType(TypeID)); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1422 | |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 1423 | // Inline asm is encoded with exprnumargs == ~0U. |
| 1424 | if (isExprNumArgs == ~0U) { |
| 1425 | std::string AsmStr = read_str(); |
| 1426 | std::string ConstraintStr = read_str(); |
| 1427 | unsigned Flags = read_vbr_uint(); |
| 1428 | |
| 1429 | const PointerType *PTy = dyn_cast<PointerType>(getType(TypeID)); |
| 1430 | const FunctionType *FTy = |
| 1431 | PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0; |
| 1432 | |
| 1433 | if (!FTy || !InlineAsm::Verify(FTy, ConstraintStr)) |
| 1434 | error("Invalid constraints for inline asm"); |
| 1435 | if (Flags & ~1U) |
| 1436 | error("Invalid flags for inline asm"); |
| 1437 | bool HasSideEffects = Flags & 1; |
| 1438 | return InlineAsm::get(FTy, AsmStr, ConstraintStr, HasSideEffects); |
| 1439 | } |
| 1440 | |
| 1441 | --isExprNumArgs; |
| 1442 | } |
| 1443 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1444 | // FIXME: Encoding of constant exprs could be much more compact! |
| 1445 | std::vector<Constant*> ArgVec; |
| 1446 | ArgVec.reserve(isExprNumArgs); |
| 1447 | unsigned Opcode = read_vbr_uint(); |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 1448 | |
| 1449 | // Bytecode files before LLVM 1.4 need have a missing terminator inst. |
| 1450 | if (hasNoUnreachableInst) Opcode++; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1451 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1452 | // Read the slot number and types of each of the arguments |
| 1453 | for (unsigned i = 0; i != isExprNumArgs; ++i) { |
| 1454 | unsigned ArgValSlot = read_vbr_uint(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1455 | unsigned ArgTypeSlot = 0; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1456 | if (read_typeid(ArgTypeSlot)) |
| 1457 | error("Invalid argument type (type type) for constant value"); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1458 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1459 | // Get the arg value from its slot if it exists, otherwise a placeholder |
| 1460 | ArgVec.push_back(getConstantValue(ArgTypeSlot, ArgValSlot)); |
| 1461 | } |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1462 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1463 | // Construct a ConstantExpr of the appropriate kind |
| 1464 | if (isExprNumArgs == 1) { // All one-operand expressions |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1465 | if (Opcode != Instruction::Cast) |
Chris Lattner | 02dce16 | 2004-12-04 05:28:27 +0000 | [diff] [blame] | 1466 | error("Only cast instruction has one argument for ConstantExpr"); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1467 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1468 | Constant* Result = ConstantExpr::getCast(ArgVec[0], getType(TypeID)); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1469 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1470 | return Result; |
| 1471 | } else if (Opcode == Instruction::GetElementPtr) { // GetElementPtr |
| 1472 | std::vector<Constant*> IdxList(ArgVec.begin()+1, ArgVec.end()); |
| 1473 | |
| 1474 | if (hasRestrictedGEPTypes) { |
| 1475 | const Type *BaseTy = ArgVec[0]->getType(); |
| 1476 | generic_gep_type_iterator<std::vector<Constant*>::iterator> |
| 1477 | GTI = gep_type_begin(BaseTy, IdxList.begin(), IdxList.end()), |
| 1478 | E = gep_type_end(BaseTy, IdxList.begin(), IdxList.end()); |
| 1479 | for (unsigned i = 0; GTI != E; ++GTI, ++i) |
| 1480 | if (isa<StructType>(*GTI)) { |
| 1481 | if (IdxList[i]->getType() != Type::UByteTy) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1482 | error("Invalid index for getelementptr!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1483 | IdxList[i] = ConstantExpr::getCast(IdxList[i], Type::UIntTy); |
| 1484 | } |
| 1485 | } |
| 1486 | |
| 1487 | Constant* Result = ConstantExpr::getGetElementPtr(ArgVec[0], IdxList); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1488 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1489 | return Result; |
| 1490 | } else if (Opcode == Instruction::Select) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1491 | if (ArgVec.size() != 3) |
| 1492 | error("Select instruction must have three arguments."); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1493 | Constant* Result = ConstantExpr::getSelect(ArgVec[0], ArgVec[1], |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1494 | ArgVec[2]); |
| 1495 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1496 | return Result; |
Robert Bocchino | fee31b3 | 2006-01-10 19:04:39 +0000 | [diff] [blame] | 1497 | } else if (Opcode == Instruction::ExtractElement) { |
| 1498 | if (ArgVec.size() != 2) |
| 1499 | error("ExtractElement instruction must have two arguments."); |
| 1500 | Constant* Result = ConstantExpr::getExtractElement(ArgVec[0], ArgVec[1]); |
| 1501 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
| 1502 | return Result; |
Robert Bocchino | b1f240b | 2006-01-17 20:06:35 +0000 | [diff] [blame] | 1503 | } else if (Opcode == Instruction::InsertElement) { |
| 1504 | if (ArgVec.size() != 3) |
| 1505 | error("InsertElement instruction must have three arguments."); |
| 1506 | Constant* Result = |
| 1507 | ConstantExpr::getInsertElement(ArgVec[0], ArgVec[1], ArgVec[2]); |
| 1508 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
| 1509 | return Result; |
Chris Lattner | 30b44b6 | 2006-04-08 01:17:59 +0000 | [diff] [blame] | 1510 | } else if (Opcode == Instruction::ShuffleVector) { |
| 1511 | if (ArgVec.size() != 3 || |
| 1512 | !ShuffleVectorInst::isValidOperands(ArgVec[0], ArgVec[1], ArgVec[2])) |
| 1513 | error("shufflevector constant expr must have three arguments."); |
| 1514 | Constant *Result = |
| 1515 | ConstantExpr::getShuffleVector(ArgVec[0], ArgVec[1], ArgVec[2]); |
| 1516 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
| 1517 | return Result; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1518 | } else { // All other 2-operand expressions |
| 1519 | Constant* Result = ConstantExpr::get(Opcode, ArgVec[0], ArgVec[1]); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1520 | if (Handler) Handler->handleConstantExpression(Opcode, ArgVec, Result); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1521 | return Result; |
| 1522 | } |
| 1523 | } |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1524 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1525 | // Ok, not an ConstantExpr. We now know how to read the given type... |
| 1526 | const Type *Ty = getType(TypeID); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1527 | Constant *Result = 0; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1528 | switch (Ty->getTypeID()) { |
| 1529 | case Type::BoolTyID: { |
| 1530 | unsigned Val = read_vbr_uint(); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1531 | if (Val != 0 && Val != 1) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1532 | error("Invalid boolean value read."); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1533 | Result = ConstantBool::get(Val == 1); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1534 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1535 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | case Type::UByteTyID: // Unsigned integer types... |
| 1539 | case Type::UShortTyID: |
| 1540 | case Type::UIntTyID: { |
| 1541 | unsigned Val = read_vbr_uint(); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1542 | if (!ConstantUInt::isValueValidForType(Ty, Val)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1543 | error("Invalid unsigned byte/short/int read."); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1544 | Result = ConstantUInt::get(Ty, Val); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1545 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1546 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1547 | } |
| 1548 | |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1549 | case Type::ULongTyID: |
| 1550 | Result = ConstantUInt::get(Ty, read_vbr_uint64()); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1551 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1552 | break; |
| 1553 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1554 | case Type::SByteTyID: // Signed integer types... |
| 1555 | case Type::ShortTyID: |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1556 | case Type::IntTyID: |
| 1557 | case Type::LongTyID: { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1558 | int64_t Val = read_vbr_int64(); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1559 | if (!ConstantSInt::isValueValidForType(Ty, Val)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1560 | error("Invalid signed byte/short/int/long read."); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1561 | Result = ConstantSInt::get(Ty, Val); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1562 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1563 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | case Type::FloatTyID: { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1567 | float Val; |
| 1568 | read_float(Val); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1569 | Result = ConstantFP::get(Ty, Val); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1570 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1571 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
| 1574 | case Type::DoubleTyID: { |
| 1575 | double Val; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1576 | read_double(Val); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1577 | Result = ConstantFP::get(Ty, Val); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1578 | if (Handler) Handler->handleConstantValue(Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1579 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1580 | } |
| 1581 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1582 | case Type::ArrayTyID: { |
| 1583 | const ArrayType *AT = cast<ArrayType>(Ty); |
| 1584 | unsigned NumElements = AT->getNumElements(); |
| 1585 | unsigned TypeSlot = getTypeSlot(AT->getElementType()); |
| 1586 | std::vector<Constant*> Elements; |
| 1587 | Elements.reserve(NumElements); |
| 1588 | while (NumElements--) // Read all of the elements of the constant. |
| 1589 | Elements.push_back(getConstantValue(TypeSlot, |
| 1590 | read_vbr_uint())); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1591 | Result = ConstantArray::get(AT, Elements); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1592 | if (Handler) Handler->handleConstantArray(AT, Elements, TypeSlot, Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1593 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1594 | } |
| 1595 | |
| 1596 | case Type::StructTyID: { |
| 1597 | const StructType *ST = cast<StructType>(Ty); |
| 1598 | |
| 1599 | std::vector<Constant *> Elements; |
| 1600 | Elements.reserve(ST->getNumElements()); |
| 1601 | for (unsigned i = 0; i != ST->getNumElements(); ++i) |
| 1602 | Elements.push_back(getConstantValue(ST->getElementType(i), |
| 1603 | read_vbr_uint())); |
| 1604 | |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1605 | Result = ConstantStruct::get(ST, Elements); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1606 | if (Handler) Handler->handleConstantStruct(ST, Elements, Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1607 | break; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1608 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1609 | |
Brian Gaeke | 715c90b | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1610 | case Type::PackedTyID: { |
| 1611 | const PackedType *PT = cast<PackedType>(Ty); |
| 1612 | unsigned NumElements = PT->getNumElements(); |
| 1613 | unsigned TypeSlot = getTypeSlot(PT->getElementType()); |
| 1614 | std::vector<Constant*> Elements; |
| 1615 | Elements.reserve(NumElements); |
| 1616 | while (NumElements--) // Read all of the elements of the constant. |
| 1617 | Elements.push_back(getConstantValue(TypeSlot, |
| 1618 | read_vbr_uint())); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1619 | Result = ConstantPacked::get(PT, Elements); |
Brian Gaeke | 715c90b | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1620 | if (Handler) Handler->handleConstantPacked(PT, Elements, TypeSlot, Result); |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1621 | break; |
Brian Gaeke | 715c90b | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
Chris Lattner | 638c381 | 2004-11-19 16:24:05 +0000 | [diff] [blame] | 1624 | case Type::PointerTyID: { // ConstantPointerRef value (backwards compat). |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1625 | const PointerType *PT = cast<PointerType>(Ty); |
| 1626 | unsigned Slot = read_vbr_uint(); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1627 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1628 | // Check to see if we have already read this global variable... |
| 1629 | Value *Val = getValue(TypeID, Slot, false); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1630 | if (Val) { |
Chris Lattner | bcb11cf | 2004-07-27 02:34:49 +0000 | [diff] [blame] | 1631 | GlobalValue *GV = dyn_cast<GlobalValue>(Val); |
| 1632 | if (!GV) error("GlobalValue not in ValueTable!"); |
| 1633 | if (Handler) Handler->handleConstantPointer(PT, Slot, GV); |
| 1634 | return GV; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1635 | } else { |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1636 | error("Forward references are not allowed here."); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1637 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | default: |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1641 | error("Don't know how to deserialize constant value of type '" + |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1642 | Ty->getDescription()); |
| 1643 | break; |
| 1644 | } |
Chris Lattner | d2cfb7a | 2006-04-07 05:00:02 +0000 | [diff] [blame] | 1645 | |
| 1646 | // Check that we didn't read a null constant if they are implicit for this |
| 1647 | // type plane. Do not do this check for constantexprs, as they may be folded |
| 1648 | // to a null value in a way that isn't predicted when a .bc file is initially |
| 1649 | // produced. |
| 1650 | assert((!isa<Constant>(Result) || !cast<Constant>(Result)->isNullValue()) || |
| 1651 | !hasImplicitNull(TypeID) && |
| 1652 | "Cannot read null values from bytecode!"); |
| 1653 | return Result; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1654 | } |
| 1655 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1656 | /// Resolve references for constants. This function resolves the forward |
| 1657 | /// referenced constants in the ConstantFwdRefs map. It uses the |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1658 | /// replaceAllUsesWith method of Value class to substitute the placeholder |
| 1659 | /// instance with the actual instance. |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 1660 | void BytecodeReader::ResolveReferencesToConstant(Constant *NewV, unsigned Typ, |
| 1661 | unsigned Slot) { |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 1662 | ConstantRefsType::iterator I = |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 1663 | ConstantFwdRefs.find(std::make_pair(Typ, Slot)); |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 1664 | if (I == ConstantFwdRefs.end()) return; // Never forward referenced? |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1665 | |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 1666 | Value *PH = I->second; // Get the placeholder... |
| 1667 | PH->replaceAllUsesWith(NewV); |
| 1668 | delete PH; // Delete the old placeholder |
| 1669 | ConstantFwdRefs.erase(I); // Remove the map entry for it |
Vikram S. Adve | c1e4a81 | 2002-07-14 23:04:18 +0000 | [diff] [blame] | 1670 | } |
| 1671 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1672 | /// Parse the constant strings section. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1673 | void BytecodeReader::ParseStringConstants(unsigned NumEntries, ValueTable &Tab){ |
| 1674 | for (; NumEntries; --NumEntries) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1675 | unsigned Typ = 0; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1676 | if (read_typeid(Typ)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1677 | error("Invalid type (type type) for string constant"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1678 | const Type *Ty = getType(Typ); |
| 1679 | if (!isa<ArrayType>(Ty)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1680 | error("String constant data invalid!"); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1681 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1682 | const ArrayType *ATy = cast<ArrayType>(Ty); |
| 1683 | if (ATy->getElementType() != Type::SByteTy && |
| 1684 | ATy->getElementType() != Type::UByteTy) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1685 | error("String constant data invalid!"); |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1686 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1687 | // Read character data. The type tells us how long the string is. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1688 | char *Data = reinterpret_cast<char *>(alloca(ATy->getNumElements())); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1689 | read_data(Data, Data+ATy->getNumElements()); |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 1690 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1691 | std::vector<Constant*> Elements(ATy->getNumElements()); |
| 1692 | if (ATy->getElementType() == Type::SByteTy) |
| 1693 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) |
| 1694 | Elements[i] = ConstantSInt::get(Type::SByteTy, (signed char)Data[i]); |
| 1695 | else |
| 1696 | for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) |
| 1697 | Elements[i] = ConstantUInt::get(Type::UByteTy, (unsigned char)Data[i]); |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 1698 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1699 | // Create the constant, inserting it as needed. |
| 1700 | Constant *C = ConstantArray::get(ATy, Elements); |
| 1701 | unsigned Slot = insertValue(C, Typ, Tab); |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 1702 | ResolveReferencesToConstant(C, Typ, Slot); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1703 | if (Handler) Handler->handleConstantString(cast<ConstantArray>(C)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1704 | } |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 1705 | } |
| 1706 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1707 | /// Parse the constant pool. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1708 | void BytecodeReader::ParseConstantPool(ValueTable &Tab, |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1709 | TypeListTy &TypeTab, |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1710 | bool isFunction) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1711 | if (Handler) Handler->handleGlobalConstantsBegin(); |
| 1712 | |
| 1713 | /// In LLVM 1.3 Type does not derive from Value so the types |
| 1714 | /// do not occupy a plane. Consequently, we read the types |
| 1715 | /// first in the constant pool. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1716 | if (isFunction && !hasTypeDerivedFromValue) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1717 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1718 | ParseTypes(TypeTab, NumEntries); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1719 | } |
| 1720 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1721 | while (moreInBlock()) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1722 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1723 | unsigned Typ = 0; |
| 1724 | bool isTypeType = read_typeid(Typ); |
| 1725 | |
| 1726 | /// In LLVM 1.2 and before, Types were written to the |
| 1727 | /// bytecode file in the "Type Type" plane (#12). |
| 1728 | /// In 1.3 plane 12 is now the label plane. Handle this here. |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1729 | if (isTypeType) { |
| 1730 | ParseTypes(TypeTab, NumEntries); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1731 | } else if (Typ == Type::VoidTyID) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1732 | /// Use of Type::VoidTyID is a misnomer. It actually means |
| 1733 | /// that the following plane is constant strings |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1734 | assert(&Tab == &ModuleValues && "Cannot read strings in functions!"); |
| 1735 | ParseStringConstants(NumEntries, Tab); |
| 1736 | } else { |
| 1737 | for (unsigned i = 0; i < NumEntries; ++i) { |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 1738 | Value *V = ParseConstantPoolValue(Typ); |
| 1739 | assert(V && "ParseConstantPoolValue returned NULL!"); |
| 1740 | unsigned Slot = insertValue(V, Typ, Tab); |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 1741 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1742 | // If we are reading a function constant table, make sure that we adjust |
| 1743 | // the slot number to be the real global constant number. |
| 1744 | // |
| 1745 | if (&Tab != &ModuleValues && Typ < ModuleValues.size() && |
| 1746 | ModuleValues[Typ]) |
| 1747 | Slot += ModuleValues[Typ]->size(); |
Chris Lattner | 3bc5a60 | 2006-01-25 23:08:15 +0000 | [diff] [blame] | 1748 | if (Constant *C = dyn_cast<Constant>(V)) |
| 1749 | ResolveReferencesToConstant(C, Typ, Slot); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1750 | } |
| 1751 | } |
| 1752 | } |
Chris Lattner | 02dce16 | 2004-12-04 05:28:27 +0000 | [diff] [blame] | 1753 | |
| 1754 | // After we have finished parsing the constant pool, we had better not have |
| 1755 | // any dangling references left. |
Reid Spencer | 3c39127 | 2004-12-04 22:19:53 +0000 | [diff] [blame] | 1756 | if (!ConstantFwdRefs.empty()) { |
Reid Spencer | 3c39127 | 2004-12-04 22:19:53 +0000 | [diff] [blame] | 1757 | ConstantRefsType::const_iterator I = ConstantFwdRefs.begin(); |
Reid Spencer | 3c39127 | 2004-12-04 22:19:53 +0000 | [diff] [blame] | 1758 | Constant* missingConst = I->second; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1759 | error(utostr(ConstantFwdRefs.size()) + |
| 1760 | " unresolved constant reference exist. First one is '" + |
| 1761 | missingConst->getName() + "' of type '" + |
Chris Lattner | 389bd04 | 2004-12-09 06:19:44 +0000 | [diff] [blame] | 1762 | missingConst->getType()->getDescription() + "'."); |
Reid Spencer | 3c39127 | 2004-12-04 22:19:53 +0000 | [diff] [blame] | 1763 | } |
Chris Lattner | 02dce16 | 2004-12-04 05:28:27 +0000 | [diff] [blame] | 1764 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1765 | checkPastBlockEnd("Constant Pool"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1766 | if (Handler) Handler->handleGlobalConstantsEnd(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1767 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1768 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1769 | /// Parse the contents of a function. Note that this function can be |
| 1770 | /// called lazily by materializeFunction |
| 1771 | /// @see materializeFunction |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1772 | void BytecodeReader::ParseFunctionBody(Function* F) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1773 | |
| 1774 | unsigned FuncSize = BlockEnd - At; |
Chris Lattner | e3869c8 | 2003-04-16 21:16:05 +0000 | [diff] [blame] | 1775 | GlobalValue::LinkageTypes Linkage = GlobalValue::ExternalLinkage; |
| 1776 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1777 | unsigned LinkageType = read_vbr_uint(); |
Chris Lattner | c08912f | 2004-01-14 16:44:44 +0000 | [diff] [blame] | 1778 | switch (LinkageType) { |
| 1779 | case 0: Linkage = GlobalValue::ExternalLinkage; break; |
| 1780 | case 1: Linkage = GlobalValue::WeakLinkage; break; |
| 1781 | case 2: Linkage = GlobalValue::AppendingLinkage; break; |
| 1782 | case 3: Linkage = GlobalValue::InternalLinkage; break; |
| 1783 | case 4: Linkage = GlobalValue::LinkOnceLinkage; break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1784 | default: |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1785 | error("Invalid linkage type for Function."); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1786 | Linkage = GlobalValue::InternalLinkage; |
| 1787 | break; |
Chris Lattner | e3869c8 | 2003-04-16 21:16:05 +0000 | [diff] [blame] | 1788 | } |
Chris Lattner | d23b1d3 | 2001-11-26 18:56:10 +0000 | [diff] [blame] | 1789 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1790 | F->setLinkage(Linkage); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1791 | if (Handler) Handler->handleFunctionBegin(F,FuncSize); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1792 | |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1793 | // Keep track of how many basic blocks we have read in... |
| 1794 | unsigned BlockNum = 0; |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1795 | bool InsertedArguments = false; |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1796 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1797 | BufPtr MyEnd = BlockEnd; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1798 | while (At < MyEnd) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1799 | unsigned Type, Size; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1800 | BufPtr OldAt = At; |
| 1801 | read_block(Type, Size); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1802 | |
| 1803 | switch (Type) { |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 1804 | case BytecodeFormat::ConstantPoolBlockID: |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1805 | if (!InsertedArguments) { |
| 1806 | // Insert arguments into the value table before we parse the first basic |
| 1807 | // block in the function, but after we potentially read in the |
| 1808 | // compaction table. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1809 | insertArguments(F); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1810 | InsertedArguments = true; |
| 1811 | } |
| 1812 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1813 | ParseConstantPool(FunctionValues, FunctionTypes, true); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1814 | break; |
| 1815 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 1816 | case BytecodeFormat::CompactionTableBlockID: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1817 | ParseCompactionTable(); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1818 | break; |
| 1819 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1820 | case BytecodeFormat::BasicBlock: { |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1821 | if (!InsertedArguments) { |
| 1822 | // Insert arguments into the value table before we parse the first basic |
| 1823 | // block in the function, but after we potentially read in the |
| 1824 | // compaction table. |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1825 | insertArguments(F); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1826 | InsertedArguments = true; |
| 1827 | } |
| 1828 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1829 | BasicBlock *BB = ParseBasicBlock(BlockNum++); |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1830 | F->getBasicBlockList().push_back(BB); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1831 | break; |
| 1832 | } |
| 1833 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 1834 | case BytecodeFormat::InstructionListBlockID: { |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1835 | // Insert arguments into the value table before we parse the instruction |
| 1836 | // list for the function, but after we potentially read in the compaction |
| 1837 | // table. |
| 1838 | if (!InsertedArguments) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1839 | insertArguments(F); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1840 | InsertedArguments = true; |
| 1841 | } |
| 1842 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1843 | if (BlockNum) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1844 | error("Already parsed basic blocks!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1845 | BlockNum = ParseInstructionList(F); |
Chris Lattner | 8d1dbd2 | 2003-12-01 07:05:31 +0000 | [diff] [blame] | 1846 | break; |
| 1847 | } |
| 1848 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 1849 | case BytecodeFormat::SymbolTableBlockID: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1850 | ParseSymbolTable(F, &F->getSymbolTable()); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1851 | break; |
| 1852 | |
| 1853 | default: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1854 | At += Size; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1855 | if (OldAt > At) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1856 | error("Wrapped around reading bytecode."); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1857 | break; |
| 1858 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1859 | BlockEnd = MyEnd; |
Chris Lattner | 1d670cc | 2001-09-07 16:37:43 +0000 | [diff] [blame] | 1860 | |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 1861 | // Malformed bc file if read past end of block. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1862 | align32(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1863 | } |
| 1864 | |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1865 | // Make sure there were no references to non-existant basic blocks. |
| 1866 | if (BlockNum != ParsedBasicBlocks.size()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1867 | error("Illegal basic block operand reference"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1868 | |
Chris Lattner | 4ee8ef2 | 2003-10-08 22:52:54 +0000 | [diff] [blame] | 1869 | ParsedBasicBlocks.clear(); |
| 1870 | |
Chris Lattner | 97330cf | 2003-10-09 23:10:14 +0000 | [diff] [blame] | 1871 | // Resolve forward references. Replace any uses of a forward reference value |
| 1872 | // with the real value. |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 1873 | while (!ForwardReferences.empty()) { |
Chris Lattner | c4d6916 | 2004-12-09 04:51:50 +0000 | [diff] [blame] | 1874 | std::map<std::pair<unsigned,unsigned>, Value*>::iterator |
| 1875 | I = ForwardReferences.begin(); |
| 1876 | Value *V = getValue(I->first.first, I->first.second, false); |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 1877 | Value *PlaceHolder = I->second; |
Chris Lattner | c4d6916 | 2004-12-09 04:51:50 +0000 | [diff] [blame] | 1878 | PlaceHolder->replaceAllUsesWith(V); |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 1879 | ForwardReferences.erase(I); |
Chris Lattner | 8eb10ce | 2003-10-09 06:05:40 +0000 | [diff] [blame] | 1880 | delete PlaceHolder; |
Chris Lattner | 6e44802 | 2003-10-08 21:51:46 +0000 | [diff] [blame] | 1881 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1882 | |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 1883 | // If upgraded intrinsic functions were detected during reading of the |
| 1884 | // module information, then we need to look for instructions that need to |
| 1885 | // be upgraded. This can't be done while the instructions are read in because |
| 1886 | // additional instructions inserted mess up the slot numbering. |
| 1887 | if (!upgradedFunctions.empty()) { |
| 1888 | for (Function::iterator BI = F->begin(), BE = F->end(); BI != BE; ++BI) |
| 1889 | for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); |
Jim Laskey | f4321a3 | 2006-03-13 13:07:37 +0000 | [diff] [blame] | 1890 | II != IE;) |
| 1891 | if (CallInst* CI = dyn_cast<CallInst>(II++)) { |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 1892 | std::map<Function*,Function*>::iterator FI = |
| 1893 | upgradedFunctions.find(CI->getCalledFunction()); |
Chris Lattner | bad0800 | 2006-03-02 23:59:12 +0000 | [diff] [blame] | 1894 | if (FI != upgradedFunctions.end()) |
| 1895 | UpgradeIntrinsicCall(CI, FI->second); |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 1896 | } |
| 1897 | } |
| 1898 | |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 1899 | // Clear out function-level types... |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1900 | FunctionTypes.clear(); |
| 1901 | CompactionTypes.clear(); |
| 1902 | CompactionValues.clear(); |
| 1903 | freeTable(FunctionValues); |
| 1904 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1905 | if (Handler) Handler->handleFunctionEnd(F); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1908 | /// This function parses LLVM functions lazily. It obtains the type of the |
| 1909 | /// function and records where the body of the function is in the bytecode |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1910 | /// buffer. The caller can then use the ParseNextFunction and |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1911 | /// ParseAllFunctionBodies to get handler events for the functions. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1912 | void BytecodeReader::ParseFunctionLazily() { |
| 1913 | if (FunctionSignatureList.empty()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1914 | error("FunctionSignatureList empty!"); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1915 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1916 | Function *Func = FunctionSignatureList.back(); |
| 1917 | FunctionSignatureList.pop_back(); |
Chris Lattner | 2410243 | 2004-01-18 22:35:34 +0000 | [diff] [blame] | 1918 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1919 | // Save the information for future reading of the function |
| 1920 | LazyFunctionLoadMap[Func] = LazyFunctionInfo(BlockStart, BlockEnd); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1921 | |
Misha Brukman | a3e6ad6 | 2004-11-14 21:02:55 +0000 | [diff] [blame] | 1922 | // This function has a body but it's not loaded so it appears `External'. |
| 1923 | // Mark it as a `Ghost' instead to notify the users that it has a body. |
| 1924 | Func->setLinkage(GlobalValue::GhostLinkage); |
| 1925 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1926 | // Pretend we've `parsed' this function |
| 1927 | At = BlockEnd; |
| 1928 | } |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1929 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 1930 | /// The ParserFunction method lazily parses one function. Use this method to |
| 1931 | /// casue the parser to parse a specific function in the module. Note that |
| 1932 | /// this will remove the function from what is to be included by |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1933 | /// ParseAllFunctionBodies. |
| 1934 | /// @see ParseAllFunctionBodies |
| 1935 | /// @see ParseBytecode |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1936 | void BytecodeReader::ParseFunction(Function* Func) { |
| 1937 | // Find {start, end} pointers and slot in the map. If not there, we're done. |
| 1938 | LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.find(Func); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1939 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1940 | // Make sure we found it |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1941 | if (Fi == LazyFunctionLoadMap.end()) { |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1942 | error("Unrecognized function of type " + Func->getType()->getDescription()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1943 | return; |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1944 | } |
| 1945 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1946 | BlockStart = At = Fi->second.Buf; |
| 1947 | BlockEnd = Fi->second.EndBuf; |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 1948 | assert(Fi->first == Func && "Found wrong function?"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1949 | |
| 1950 | LazyFunctionLoadMap.erase(Fi); |
| 1951 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1952 | this->ParseFunctionBody(Func); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1953 | } |
| 1954 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1955 | /// The ParseAllFunctionBodies method parses through all the previously |
| 1956 | /// unparsed functions in the bytecode file. If you want to completely parse |
| 1957 | /// a bytecode file, this method should be called after Parsebytecode because |
| 1958 | /// Parsebytecode only records the locations in the bytecode file of where |
| 1959 | /// the function definitions are located. This function uses that information |
| 1960 | /// to materialize the functions. |
| 1961 | /// @see ParseBytecode |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1962 | void BytecodeReader::ParseAllFunctionBodies() { |
| 1963 | LazyFunctionMap::iterator Fi = LazyFunctionLoadMap.begin(); |
| 1964 | LazyFunctionMap::iterator Fe = LazyFunctionLoadMap.end(); |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1965 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1966 | while (Fi != Fe) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1967 | Function* Func = Fi->first; |
| 1968 | BlockStart = At = Fi->second.Buf; |
| 1969 | BlockEnd = Fi->second.EndBuf; |
Chris Lattner | b52f1c2 | 2005-02-13 17:48:18 +0000 | [diff] [blame] | 1970 | ParseFunctionBody(Func); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1971 | ++Fi; |
| 1972 | } |
Chris Lattner | b52f1c2 | 2005-02-13 17:48:18 +0000 | [diff] [blame] | 1973 | LazyFunctionLoadMap.clear(); |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 1974 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1975 | } |
Chris Lattner | 89e0253 | 2004-01-18 21:08:15 +0000 | [diff] [blame] | 1976 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1977 | /// Parse the global type list |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1978 | void BytecodeReader::ParseGlobalTypes() { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1979 | // Read the number of types |
| 1980 | unsigned NumEntries = read_vbr_uint(); |
Reid Spencer | 011bed5 | 2004-07-09 21:13:53 +0000 | [diff] [blame] | 1981 | |
| 1982 | // Ignore the type plane identifier for types if the bc file is pre 1.3 |
| 1983 | if (hasTypeDerivedFromValue) |
| 1984 | read_vbr_uint(); |
| 1985 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 1986 | ParseTypes(ModuleTypes, NumEntries); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1987 | } |
| 1988 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1989 | /// Parse the Global info (types, global vars, constants) |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1990 | void BytecodeReader::ParseModuleGlobalInfo() { |
| 1991 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 1992 | if (Handler) Handler->handleModuleGlobalsBegin(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1993 | |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 1994 | // SectionID - If a global has an explicit section specified, this map |
| 1995 | // remembers the ID until we can translate it into a string. |
| 1996 | std::map<GlobalValue*, unsigned> SectionID; |
| 1997 | |
Chris Lattner | 70cc339 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 1998 | // Read global variables... |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 1999 | unsigned VarType = read_vbr_uint(); |
Chris Lattner | 70cc339 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 2000 | while (VarType != Type::VoidTyID) { // List is terminated by Void |
Chris Lattner | 9dd8770 | 2004-04-03 23:43:42 +0000 | [diff] [blame] | 2001 | // VarType Fields: bit0 = isConstant, bit1 = hasInitializer, bit2,3,4 = |
| 2002 | // Linkage, bit4+ = slot# |
| 2003 | unsigned SlotNo = VarType >> 5; |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2004 | if (sanitizeTypeId(SlotNo)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2005 | error("Invalid type (type type) for global var!"); |
Chris Lattner | 9dd8770 | 2004-04-03 23:43:42 +0000 | [diff] [blame] | 2006 | unsigned LinkageID = (VarType >> 2) & 7; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2007 | bool isConstant = VarType & 1; |
Chris Lattner | ce5e04e | 2005-11-06 08:23:17 +0000 | [diff] [blame] | 2008 | bool hasInitializer = (VarType & 2) != 0; |
Chris Lattner | 8eb52dd | 2005-11-06 07:11:04 +0000 | [diff] [blame] | 2009 | unsigned Alignment = 0; |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2010 | unsigned GlobalSectionID = 0; |
Chris Lattner | 8eb52dd | 2005-11-06 07:11:04 +0000 | [diff] [blame] | 2011 | |
| 2012 | // An extension word is present when linkage = 3 (internal) and hasinit = 0. |
| 2013 | if (LinkageID == 3 && !hasInitializer) { |
| 2014 | unsigned ExtWord = read_vbr_uint(); |
| 2015 | // The extension word has this format: bit 0 = has initializer, bit 1-3 = |
| 2016 | // linkage, bit 4-8 = alignment (log2), bits 10+ = future use. |
| 2017 | hasInitializer = ExtWord & 1; |
| 2018 | LinkageID = (ExtWord >> 1) & 7; |
| 2019 | Alignment = (1 << ((ExtWord >> 4) & 31)) >> 1; |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2020 | |
| 2021 | if (ExtWord & (1 << 9)) // Has a section ID. |
| 2022 | GlobalSectionID = read_vbr_uint(); |
Chris Lattner | 8eb52dd | 2005-11-06 07:11:04 +0000 | [diff] [blame] | 2023 | } |
Chris Lattner | e3869c8 | 2003-04-16 21:16:05 +0000 | [diff] [blame] | 2024 | |
Chris Lattner | ce5e04e | 2005-11-06 08:23:17 +0000 | [diff] [blame] | 2025 | GlobalValue::LinkageTypes Linkage; |
Chris Lattner | c08912f | 2004-01-14 16:44:44 +0000 | [diff] [blame] | 2026 | switch (LinkageID) { |
Chris Lattner | c08912f | 2004-01-14 16:44:44 +0000 | [diff] [blame] | 2027 | case 0: Linkage = GlobalValue::ExternalLinkage; break; |
| 2028 | case 1: Linkage = GlobalValue::WeakLinkage; break; |
| 2029 | case 2: Linkage = GlobalValue::AppendingLinkage; break; |
| 2030 | case 3: Linkage = GlobalValue::InternalLinkage; break; |
| 2031 | case 4: Linkage = GlobalValue::LinkOnceLinkage; break; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2032 | default: |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2033 | error("Unknown linkage type: " + utostr(LinkageID)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2034 | Linkage = GlobalValue::InternalLinkage; |
| 2035 | break; |
Chris Lattner | e3869c8 | 2003-04-16 21:16:05 +0000 | [diff] [blame] | 2036 | } |
| 2037 | |
| 2038 | const Type *Ty = getType(SlotNo); |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2039 | if (!Ty) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2040 | error("Global has no type! SlotNo=" + utostr(SlotNo)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2041 | |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2042 | if (!isa<PointerType>(Ty)) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2043 | error("Global not a pointer type! Ty= " + Ty->getDescription()); |
Chris Lattner | 70cc339 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 2044 | |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2045 | const Type *ElTy = cast<PointerType>(Ty)->getElementType(); |
Chris Lattner | d70684f | 2001-09-18 04:01:05 +0000 | [diff] [blame] | 2046 | |
Chris Lattner | 70cc339 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 2047 | // Create the global variable... |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2048 | GlobalVariable *GV = new GlobalVariable(ElTy, isConstant, Linkage, |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2049 | 0, "", TheModule); |
Chris Lattner | 8eb52dd | 2005-11-06 07:11:04 +0000 | [diff] [blame] | 2050 | GV->setAlignment(Alignment); |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 2051 | insertValue(GV, SlotNo, ModuleValues); |
Chris Lattner | 05950c3 | 2001-10-13 06:47:01 +0000 | [diff] [blame] | 2052 | |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2053 | if (GlobalSectionID != 0) |
| 2054 | SectionID[GV] = GlobalSectionID; |
| 2055 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2056 | unsigned initSlot = 0; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2057 | if (hasInitializer) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2058 | initSlot = read_vbr_uint(); |
| 2059 | GlobalInits.push_back(std::make_pair(GV, initSlot)); |
| 2060 | } |
| 2061 | |
| 2062 | // Notify handler about the global value. |
Chris Lattner | 4a242b3 | 2004-10-14 01:39:18 +0000 | [diff] [blame] | 2063 | if (Handler) |
| 2064 | Handler->handleGlobalVariable(ElTy, isConstant, Linkage, SlotNo,initSlot); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2065 | |
| 2066 | // Get next item |
| 2067 | VarType = read_vbr_uint(); |
Chris Lattner | 70cc339 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 2068 | } |
| 2069 | |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2070 | // Read the function objects for all of the functions that are coming |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2071 | unsigned FnSignature = read_vbr_uint(); |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2072 | |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2073 | if (hasNoFlagsForFunctions) |
| 2074 | FnSignature = (FnSignature << 5) + 1; |
| 2075 | |
| 2076 | // List is terminated by VoidTy. |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2077 | while (((FnSignature & (~0U >> 1)) >> 5) != Type::VoidTyID) { |
| 2078 | const Type *Ty = getType((FnSignature & (~0U >> 1)) >> 5); |
Chris Lattner | 927b185 | 2003-10-09 20:22:47 +0000 | [diff] [blame] | 2079 | if (!isa<PointerType>(Ty) || |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2080 | !isa<FunctionType>(cast<PointerType>(Ty)->getElementType())) { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2081 | error("Function not a pointer to function type! Ty = " + |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2082 | Ty->getDescription()); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2083 | } |
Chris Lattner | 8cdc6b7 | 2002-10-23 00:51:54 +0000 | [diff] [blame] | 2084 | |
Chris Lattner | 2a7b6ba | 2003-03-06 17:15:19 +0000 | [diff] [blame] | 2085 | // We create functions by passing the underlying FunctionType to create... |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2086 | const FunctionType* FTy = |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2087 | cast<FunctionType>(cast<PointerType>(Ty)->getElementType()); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2088 | |
Chris Lattner | 18549c2 | 2004-11-15 21:43:03 +0000 | [diff] [blame] | 2089 | // Insert the place holder. |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2090 | Function *Func = new Function(FTy, GlobalValue::ExternalLinkage, |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2091 | "", TheModule); |
Reid Spencer | e1e96c0 | 2006-01-19 07:02:16 +0000 | [diff] [blame] | 2092 | |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2093 | insertValue(Func, (FnSignature & (~0U >> 1)) >> 5, ModuleValues); |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2094 | |
| 2095 | // Flags are not used yet. |
Chris Lattner | 97fbc50 | 2004-11-15 22:38:52 +0000 | [diff] [blame] | 2096 | unsigned Flags = FnSignature & 31; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2097 | |
Chris Lattner | 97fbc50 | 2004-11-15 22:38:52 +0000 | [diff] [blame] | 2098 | // Save this for later so we know type of lazily instantiated functions. |
| 2099 | // Note that known-external functions do not have FunctionInfo blocks, so we |
| 2100 | // do not add them to the FunctionSignatureList. |
| 2101 | if ((Flags & (1 << 4)) == 0) |
| 2102 | FunctionSignatureList.push_back(Func); |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2103 | |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2104 | // Get the calling convention from the low bits. |
| 2105 | unsigned CC = Flags & 15; |
| 2106 | unsigned Alignment = 0; |
| 2107 | if (FnSignature & (1 << 31)) { // Has extension word? |
| 2108 | unsigned ExtWord = read_vbr_uint(); |
| 2109 | Alignment = (1 << (ExtWord & 31)) >> 1; |
| 2110 | CC |= ((ExtWord >> 5) & 15) << 4; |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2111 | |
| 2112 | if (ExtWord & (1 << 10)) // Has a section ID. |
| 2113 | SectionID[Func] = read_vbr_uint(); |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2114 | } |
| 2115 | |
Chris Lattner | 54b369e | 2005-11-06 07:46:13 +0000 | [diff] [blame] | 2116 | Func->setCallingConv(CC-1); |
Chris Lattner | e73bd45 | 2005-11-06 07:43:39 +0000 | [diff] [blame] | 2117 | Func->setAlignment(Alignment); |
Chris Lattner | 479ffeb | 2005-05-06 20:42:57 +0000 | [diff] [blame] | 2118 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2119 | if (Handler) Handler->handleFunctionDeclaration(Func); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2120 | |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2121 | // Get the next function signature. |
| 2122 | FnSignature = read_vbr_uint(); |
| 2123 | if (hasNoFlagsForFunctions) |
| 2124 | FnSignature = (FnSignature << 5) + 1; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2127 | // Now that the function signature list is set up, reverse it so that we can |
Chris Lattner | 7473413 | 2002-08-17 22:01:27 +0000 | [diff] [blame] | 2128 | // remove elements efficiently from the back of the vector. |
| 2129 | std::reverse(FunctionSignatureList.begin(), FunctionSignatureList.end()); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2130 | |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2131 | /// SectionNames - This contains the list of section names encoded in the |
| 2132 | /// moduleinfoblock. Functions and globals with an explicit section index |
| 2133 | /// into this to get their section name. |
| 2134 | std::vector<std::string> SectionNames; |
| 2135 | |
| 2136 | if (hasInconsistentModuleGlobalInfo) { |
| 2137 | align32(); |
| 2138 | } else if (!hasNoDependentLibraries) { |
| 2139 | // If this bytecode format has dependent library information in it, read in |
| 2140 | // the number of dependent library items that follow. |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2141 | unsigned num_dep_libs = read_vbr_uint(); |
| 2142 | std::string dep_lib; |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2143 | while (num_dep_libs--) { |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2144 | dep_lib = read_str(); |
Reid Spencer | ada1618 | 2004-07-25 21:36:26 +0000 | [diff] [blame] | 2145 | TheModule->addLibrary(dep_lib); |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2146 | if (Handler) |
| 2147 | Handler->handleDependentLibrary(dep_lib); |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2148 | } |
| 2149 | |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2150 | // Read target triple and place into the module. |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2151 | std::string triple = read_str(); |
| 2152 | TheModule->setTargetTriple(triple); |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2153 | if (Handler) |
| 2154 | Handler->handleTargetTriple(triple); |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2155 | |
Chris Lattner | 7e6db76 | 2006-01-23 23:43:17 +0000 | [diff] [blame] | 2156 | if (!hasAlignment && At != BlockEnd) { |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2157 | // If the file has section info in it, read the section names now. |
| 2158 | unsigned NumSections = read_vbr_uint(); |
| 2159 | while (NumSections--) |
| 2160 | SectionNames.push_back(read_str()); |
| 2161 | } |
Chris Lattner | 7e6db76 | 2006-01-23 23:43:17 +0000 | [diff] [blame] | 2162 | |
| 2163 | // If the file has module-level inline asm, read it now. |
| 2164 | if (!hasAlignment && At != BlockEnd) |
Chris Lattner | 6631601 | 2006-01-24 04:14:29 +0000 | [diff] [blame] | 2165 | TheModule->setModuleInlineAsm(read_str()); |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2166 | } |
| 2167 | |
Chris Lattner | 404cddf | 2005-11-12 01:33:40 +0000 | [diff] [blame] | 2168 | // If any globals are in specified sections, assign them now. |
| 2169 | for (std::map<GlobalValue*, unsigned>::iterator I = SectionID.begin(), E = |
| 2170 | SectionID.end(); I != E; ++I) |
| 2171 | if (I->second) { |
| 2172 | if (I->second > SectionID.size()) |
| 2173 | error("SectionID out of range for global!"); |
| 2174 | I->first->setSection(SectionNames[I->second-1]); |
| 2175 | } |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2176 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2177 | // This is for future proofing... in the future extra fields may be added that |
| 2178 | // we don't understand, so we transparently ignore them. |
| 2179 | // |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2180 | At = BlockEnd; |
| 2181 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2182 | if (Handler) Handler->handleModuleGlobalsEnd(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2183 | } |
| 2184 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2185 | /// Parse the version information and decode it by setting flags on the |
| 2186 | /// Reader that enable backward compatibility of the reader. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2187 | void BytecodeReader::ParseVersionInfo() { |
| 2188 | unsigned Version = read_vbr_uint(); |
Chris Lattner | 036b8aa | 2003-03-06 17:55:45 +0000 | [diff] [blame] | 2189 | |
| 2190 | // Unpack version number: low four bits are for flags, top bits = version |
Chris Lattner | d445c6b | 2003-08-24 13:47:36 +0000 | [diff] [blame] | 2191 | Module::Endianness Endianness; |
| 2192 | Module::PointerSize PointerSize; |
| 2193 | Endianness = (Version & 1) ? Module::BigEndian : Module::LittleEndian; |
| 2194 | PointerSize = (Version & 2) ? Module::Pointer64 : Module::Pointer32; |
| 2195 | |
| 2196 | bool hasNoEndianness = Version & 4; |
| 2197 | bool hasNoPointerSize = Version & 8; |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2198 | |
Chris Lattner | d445c6b | 2003-08-24 13:47:36 +0000 | [diff] [blame] | 2199 | RevisionNum = Version >> 4; |
Chris Lattner | e3869c8 | 2003-04-16 21:16:05 +0000 | [diff] [blame] | 2200 | |
| 2201 | // Default values for the current bytecode version |
Chris Lattner | 44d0eeb | 2004-01-15 17:55:01 +0000 | [diff] [blame] | 2202 | hasInconsistentModuleGlobalInfo = false; |
Chris Lattner | 80b9734 | 2004-01-17 23:25:43 +0000 | [diff] [blame] | 2203 | hasExplicitPrimitiveZeros = false; |
Chris Lattner | 5fa428f | 2004-04-05 01:27:26 +0000 | [diff] [blame] | 2204 | hasRestrictedGEPTypes = false; |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2205 | hasTypeDerivedFromValue = false; |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2206 | hasLongBlockHeaders = false; |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2207 | has32BitTypes = false; |
| 2208 | hasNoDependentLibraries = false; |
Reid Spencer | 38d54be | 2004-08-17 07:45:14 +0000 | [diff] [blame] | 2209 | hasAlignment = false; |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2210 | hasNoUndefValue = false; |
| 2211 | hasNoFlagsForFunctions = false; |
| 2212 | hasNoUnreachableInst = false; |
Chris Lattner | 036b8aa | 2003-03-06 17:55:45 +0000 | [diff] [blame] | 2213 | |
| 2214 | switch (RevisionNum) { |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2215 | case 0: // LLVM 1.0, 1.1 (Released) |
Chris Lattner | 9e893e8 | 2004-01-14 23:35:21 +0000 | [diff] [blame] | 2216 | // Base LLVM 1.0 bytecode format. |
Chris Lattner | 44d0eeb | 2004-01-15 17:55:01 +0000 | [diff] [blame] | 2217 | hasInconsistentModuleGlobalInfo = true; |
Chris Lattner | 80b9734 | 2004-01-17 23:25:43 +0000 | [diff] [blame] | 2218 | hasExplicitPrimitiveZeros = true; |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2219 | |
Chris Lattner | 80b9734 | 2004-01-17 23:25:43 +0000 | [diff] [blame] | 2220 | // FALL THROUGH |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2221 | |
| 2222 | case 1: // LLVM 1.2 (Released) |
Chris Lattner | 9e893e8 | 2004-01-14 23:35:21 +0000 | [diff] [blame] | 2223 | // LLVM 1.2 added explicit support for emitting strings efficiently. |
Chris Lattner | 44d0eeb | 2004-01-15 17:55:01 +0000 | [diff] [blame] | 2224 | |
| 2225 | // Also, it fixed the problem where the size of the ModuleGlobalInfo block |
| 2226 | // included the size for the alignment at the end, where the rest of the |
| 2227 | // blocks did not. |
Chris Lattner | 5fa428f | 2004-04-05 01:27:26 +0000 | [diff] [blame] | 2228 | |
| 2229 | // LLVM 1.2 and before required that GEP indices be ubyte constants for |
| 2230 | // structures and longs for sequential types. |
| 2231 | hasRestrictedGEPTypes = true; |
| 2232 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2233 | // LLVM 1.2 and before had the Type class derive from Value class. This |
| 2234 | // changed in release 1.3 and consequently LLVM 1.3 bytecode files are |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2235 | // written differently because Types can no longer be part of the |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2236 | // type planes for Values. |
| 2237 | hasTypeDerivedFromValue = true; |
| 2238 | |
Chris Lattner | 5fa428f | 2004-04-05 01:27:26 +0000 | [diff] [blame] | 2239 | // FALL THROUGH |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2240 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2241 | case 2: // 1.2.5 (Not Released) |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2242 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2243 | // LLVM 1.2 and earlier had two-word block headers. This is a bit wasteful, |
Chris Lattner | 4a242b3 | 2004-10-14 01:39:18 +0000 | [diff] [blame] | 2244 | // especially for small files where the 8 bytes per block is a large |
| 2245 | // fraction of the total block size. In LLVM 1.3, the block type and length |
| 2246 | // are compressed into a single 32-bit unsigned integer. 27 bits for length, |
| 2247 | // 5 bits for block type. |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2248 | hasLongBlockHeaders = true; |
| 2249 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2250 | // LLVM 1.2 and earlier wrote type slot numbers as vbr_uint32. In LLVM 1.3 |
Chris Lattner | 4a242b3 | 2004-10-14 01:39:18 +0000 | [diff] [blame] | 2251 | // this has been reduced to vbr_uint24. It shouldn't make much difference |
| 2252 | // since we haven't run into a module with > 24 million types, but for |
| 2253 | // safety the 24-bit restriction has been enforced in 1.3 to free some bits |
| 2254 | // in various places and to ensure consistency. |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2255 | has32BitTypes = true; |
| 2256 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2257 | // LLVM 1.2 and earlier did not provide a target triple nor a list of |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2258 | // libraries on which the bytecode is dependent. LLVM 1.3 provides these |
| 2259 | // features, for use in future versions of LLVM. |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2260 | hasNoDependentLibraries = true; |
| 2261 | |
| 2262 | // FALL THROUGH |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2263 | |
| 2264 | case 3: // LLVM 1.3 (Released) |
| 2265 | // LLVM 1.3 and earlier caused alignment bytes to be written on some block |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2266 | // boundaries and at the end of some strings. In extreme cases (e.g. lots |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2267 | // of GEP references to a constant array), this can increase the file size |
| 2268 | // by 30% or more. In version 1.4 alignment is done away with completely. |
Reid Spencer | 38d54be | 2004-08-17 07:45:14 +0000 | [diff] [blame] | 2269 | hasAlignment = true; |
| 2270 | |
| 2271 | // FALL THROUGH |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2272 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2273 | case 4: // 1.3.1 (Not Released) |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2274 | // In version 4, we did not support the 'undef' constant. |
| 2275 | hasNoUndefValue = true; |
| 2276 | |
| 2277 | // In version 4 and above, we did not include space for flags for functions |
| 2278 | // in the module info block. |
| 2279 | hasNoFlagsForFunctions = true; |
| 2280 | |
| 2281 | // In version 4 and above, we did not include the 'unreachable' instruction |
| 2282 | // in the opcode numbering in the bytecode file. |
| 2283 | hasNoUnreachableInst = true; |
Chris Lattner | 2e7ec12 | 2004-10-16 18:56:02 +0000 | [diff] [blame] | 2284 | break; |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2285 | |
| 2286 | // FALL THROUGH |
| 2287 | |
Chris Lattner | dee199f | 2005-05-06 22:34:01 +0000 | [diff] [blame] | 2288 | case 5: // 1.4 (Released) |
Chris Lattner | a79e7cc | 2004-10-16 18:18:16 +0000 | [diff] [blame] | 2289 | break; |
| 2290 | |
Chris Lattner | 036b8aa | 2003-03-06 17:55:45 +0000 | [diff] [blame] | 2291 | default: |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2292 | error("Unknown bytecode version number: " + itostr(RevisionNum)); |
Chris Lattner | 036b8aa | 2003-03-06 17:55:45 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Chris Lattner | d445c6b | 2003-08-24 13:47:36 +0000 | [diff] [blame] | 2295 | if (hasNoEndianness) Endianness = Module::AnyEndianness; |
| 2296 | if (hasNoPointerSize) PointerSize = Module::AnyPointerSize; |
Chris Lattner | 76e3896 | 2003-04-22 18:15:10 +0000 | [diff] [blame] | 2297 | |
Brian Gaeke | fe2102b | 2004-07-14 20:33:13 +0000 | [diff] [blame] | 2298 | TheModule->setEndianness(Endianness); |
| 2299 | TheModule->setPointerSize(PointerSize); |
| 2300 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2301 | if (Handler) Handler->handleVersionInfo(RevisionNum, Endianness, PointerSize); |
Chris Lattner | 036b8aa | 2003-03-06 17:55:45 +0000 | [diff] [blame] | 2302 | } |
| 2303 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2304 | /// Parse a whole module. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2305 | void BytecodeReader::ParseModule() { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2306 | unsigned Type, Size; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2307 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2308 | FunctionSignatureList.clear(); // Just in case... |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2309 | |
| 2310 | // Read into instance variables... |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2311 | ParseVersionInfo(); |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2312 | align32(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2313 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2314 | bool SeenModuleGlobalInfo = false; |
| 2315 | bool SeenGlobalTypePlane = false; |
| 2316 | BufPtr MyEnd = BlockEnd; |
| 2317 | while (At < MyEnd) { |
| 2318 | BufPtr OldAt = At; |
| 2319 | read_block(Type, Size); |
| 2320 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2321 | switch (Type) { |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2322 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2323 | case BytecodeFormat::GlobalTypePlaneBlockID: |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2324 | if (SeenGlobalTypePlane) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2325 | error("Two GlobalTypePlane Blocks Encountered!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2326 | |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2327 | if (Size > 0) |
| 2328 | ParseGlobalTypes(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2329 | SeenGlobalTypePlane = true; |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2330 | break; |
| 2331 | |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2332 | case BytecodeFormat::ModuleGlobalInfoBlockID: |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2333 | if (SeenModuleGlobalInfo) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2334 | error("Two ModuleGlobalInfo Blocks Encountered!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2335 | ParseModuleGlobalInfo(); |
| 2336 | SeenModuleGlobalInfo = true; |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2337 | break; |
| 2338 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2339 | case BytecodeFormat::ConstantPoolBlockID: |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2340 | ParseConstantPool(ModuleValues, ModuleTypes,false); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2341 | break; |
| 2342 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2343 | case BytecodeFormat::FunctionBlockID: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2344 | ParseFunctionLazily(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2345 | break; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2346 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2347 | case BytecodeFormat::SymbolTableBlockID: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2348 | ParseSymbolTable(0, &TheModule->getSymbolTable()); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2349 | break; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2350 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2351 | default: |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2352 | At += Size; |
| 2353 | if (OldAt > At) { |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2354 | error("Unexpected Block of Type #" + utostr(Type) + " encountered!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2355 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2356 | break; |
| 2357 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2358 | BlockEnd = MyEnd; |
| 2359 | align32(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2360 | } |
| 2361 | |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2362 | // After the module constant pool has been read, we can safely initialize |
| 2363 | // global variables... |
| 2364 | while (!GlobalInits.empty()) { |
| 2365 | GlobalVariable *GV = GlobalInits.back().first; |
| 2366 | unsigned Slot = GlobalInits.back().second; |
| 2367 | GlobalInits.pop_back(); |
| 2368 | |
| 2369 | // Look up the initializer value... |
Chris Lattner | 29b789b | 2003-11-19 17:27:18 +0000 | [diff] [blame] | 2370 | // FIXME: Preserve this type ID! |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2371 | |
| 2372 | const llvm::PointerType* GVType = GV->getType(); |
| 2373 | unsigned TypeSlot = getTypeSlot(GVType->getElementType()); |
Chris Lattner | 9336199 | 2004-01-15 18:45:25 +0000 | [diff] [blame] | 2374 | if (Constant *CV = getConstantValue(TypeSlot, Slot)) { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2375 | if (GV->hasInitializer()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2376 | error("Global *already* has an initializer?!"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2377 | if (Handler) Handler->handleGlobalInitializer(GV,CV); |
Chris Lattner | 9336199 | 2004-01-15 18:45:25 +0000 | [diff] [blame] | 2378 | GV->setInitializer(CV); |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2379 | } else |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2380 | error("Cannot find initializer value."); |
Chris Lattner | 52e20b0 | 2003-03-19 20:54:26 +0000 | [diff] [blame] | 2381 | } |
| 2382 | |
Chris Lattner | aba5ff5 | 2005-05-05 20:57:00 +0000 | [diff] [blame] | 2383 | if (!ConstantFwdRefs.empty()) |
| 2384 | error("Use of undefined constants in a module"); |
| 2385 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2386 | /// Make sure we pulled them all out. If we didn't then there's a declaration |
| 2387 | /// but a missing body. That's not allowed. |
Misha Brukman | 12c29d1 | 2003-09-22 23:38:23 +0000 | [diff] [blame] | 2388 | if (!FunctionSignatureList.empty()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2389 | error("Function declared, but bytecode stream ended before definition"); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2390 | } |
| 2391 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2392 | /// This function completely parses a bytecode buffer given by the \p Buf |
| 2393 | /// and \p Length parameters. |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2394 | void BytecodeReader::ParseBytecode(BufPtr Buf, unsigned Length, |
Reid Spencer | 5b472d9 | 2004-08-21 20:49:23 +0000 | [diff] [blame] | 2395 | const std::string &ModuleID) { |
Misha Brukman | e0dd0d4 | 2003-09-23 16:15:29 +0000 | [diff] [blame] | 2396 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2397 | try { |
Chris Lattner | 3af4b4f | 2004-11-30 16:58:18 +0000 | [diff] [blame] | 2398 | RevisionNum = 0; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2399 | At = MemStart = BlockStart = Buf; |
| 2400 | MemEnd = BlockEnd = Buf + Length; |
Misha Brukman | e0dd0d4 | 2003-09-23 16:15:29 +0000 | [diff] [blame] | 2401 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2402 | // Create the module |
| 2403 | TheModule = new Module(ModuleID); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2404 | |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2405 | if (Handler) Handler->handleStart(TheModule, Length); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2406 | |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2407 | // Read the four bytes of the signature. |
| 2408 | unsigned Sig = read_uint(); |
Reid Spencer | 17f52c5 | 2004-11-06 23:17:23 +0000 | [diff] [blame] | 2409 | |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2410 | // If this is a compressed file |
| 2411 | if (Sig == ('l' | ('l' << 8) | ('v' << 16) | ('c' << 24))) { |
Reid Spencer | 17f52c5 | 2004-11-06 23:17:23 +0000 | [diff] [blame] | 2412 | |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2413 | // Invoke the decompression of the bytecode. Note that we have to skip the |
| 2414 | // file's magic number which is not part of the compressed block. Hence, |
Reid Spencer | 61aaf2e | 2004-11-14 21:59:21 +0000 | [diff] [blame] | 2415 | // the Buf+4 and Length-4. The result goes into decompressedBlock, a data |
| 2416 | // member for retention until BytecodeReader is destructed. |
| 2417 | unsigned decompressedLength = Compressor::decompressToNewBuffer( |
| 2418 | (char*)Buf+4,Length-4,decompressedBlock); |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2419 | |
| 2420 | // We must adjust the buffer pointers used by the bytecode reader to point |
Reid Spencer | 61aaf2e | 2004-11-14 21:59:21 +0000 | [diff] [blame] | 2421 | // into the new decompressed block. After decompression, the |
| 2422 | // decompressedBlock will point to a contiguous memory area that has |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2423 | // the decompressed data. |
Reid Spencer | 61aaf2e | 2004-11-14 21:59:21 +0000 | [diff] [blame] | 2424 | At = MemStart = BlockStart = Buf = (BufPtr) decompressedBlock; |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2425 | MemEnd = BlockEnd = Buf + decompressedLength; |
Reid Spencer | 17f52c5 | 2004-11-06 23:17:23 +0000 | [diff] [blame] | 2426 | |
Reid Spencer | f0c977c | 2004-11-07 18:20:55 +0000 | [diff] [blame] | 2427 | // else if this isn't a regular (uncompressed) bytecode file, then its |
| 2428 | // and error, generate that now. |
| 2429 | } else if (Sig != ('l' | ('l' << 8) | ('v' << 16) | ('m' << 24))) { |
| 2430 | error("Invalid bytecode signature: " + utohexstr(Sig)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2433 | // Tell the handler we're starting a module |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2434 | if (Handler) Handler->handleModuleBegin(ModuleID); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2435 | |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2436 | // Get the module block and size and verify. This is handled specially |
| 2437 | // because the module block/size is always written in long format. Other |
| 2438 | // blocks are written in short format so the read_block method is used. |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2439 | unsigned Type, Size; |
Reid Spencer | ad89bd6 | 2004-07-25 18:07:36 +0000 | [diff] [blame] | 2440 | Type = read_uint(); |
| 2441 | Size = read_uint(); |
| 2442 | if (Type != BytecodeFormat::ModuleBlockID) { |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2443 | error("Expected Module Block! Type:" + utostr(Type) + ", Size:" |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2444 | + utostr(Size)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2445 | } |
Chris Lattner | 56bc894 | 2004-09-27 16:59:06 +0000 | [diff] [blame] | 2446 | |
| 2447 | // It looks like the darwin ranlib program is broken, and adds trailing |
| 2448 | // garbage to the end of some bytecode files. This hack allows the bc |
| 2449 | // reader to ignore trailing garbage on bytecode files. |
| 2450 | if (At + Size < MemEnd) |
| 2451 | MemEnd = BlockEnd = At+Size; |
| 2452 | |
| 2453 | if (At + Size != MemEnd) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2454 | error("Invalid Top Level Block Length! Type:" + utostr(Type) |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2455 | + ", Size:" + utostr(Size)); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2456 | |
| 2457 | // Parse the module contents |
| 2458 | this->ParseModule(); |
| 2459 | |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2460 | // Check for missing functions |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2461 | if (hasFunctions()) |
Reid Spencer | 2439972 | 2004-07-09 22:21:33 +0000 | [diff] [blame] | 2462 | error("Function expected, but bytecode stream ended!"); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2463 | |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 2464 | // Look for intrinsic functions to upgrade, upgrade them, and save the |
| 2465 | // mapping from old function to new for use later when instructions are |
| 2466 | // converted. |
| 2467 | for (Module::iterator FI = TheModule->begin(), FE = TheModule->end(); |
| 2468 | FI != FE; ++FI) |
| 2469 | if (Function* newF = UpgradeIntrinsicFunction(FI)) { |
Chris Lattner | bad0800 | 2006-03-02 23:59:12 +0000 | [diff] [blame] | 2470 | upgradedFunctions.insert(std::make_pair(FI, newF)); |
Reid Spencer | e2a5fb0 | 2006-01-27 11:49:27 +0000 | [diff] [blame] | 2471 | FI->setName(""); |
| 2472 | } |
| 2473 | |
Reid Spencer | 5c15fe5 | 2004-07-05 00:57:50 +0000 | [diff] [blame] | 2474 | // Tell the handler we're done with the module |
Misha Brukman | 8a96c53 | 2005-04-21 21:44:41 +0000 | [diff] [blame] | 2475 | if (Handler) |
Reid Spencer | 5c15fe5 | 2004-07-05 00:57:50 +0000 | [diff] [blame] | 2476 | Handler->handleModuleEnd(ModuleID); |
| 2477 | |
| 2478 | // Tell the handler we're finished the parse |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2479 | if (Handler) Handler->handleFinish(); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2480 | |
Reid Spencer | 46b002c | 2004-07-11 17:28:43 +0000 | [diff] [blame] | 2481 | } catch (std::string& errstr) { |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2482 | if (Handler) Handler->handleError(errstr); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2483 | freeState(); |
Chris Lattner | 2a7b6ba | 2003-03-06 17:15:19 +0000 | [diff] [blame] | 2484 | delete TheModule; |
| 2485 | TheModule = 0; |
Chris Lattner | 3bdad69 | 2004-11-15 21:55:33 +0000 | [diff] [blame] | 2486 | if (decompressedBlock != 0 ) { |
Reid Spencer | 61aaf2e | 2004-11-14 21:59:21 +0000 | [diff] [blame] | 2487 | ::free(decompressedBlock); |
Chris Lattner | 3bdad69 | 2004-11-15 21:55:33 +0000 | [diff] [blame] | 2488 | decompressedBlock = 0; |
| 2489 | } |
Chris Lattner | b0b7c0d | 2003-09-26 14:44:52 +0000 | [diff] [blame] | 2490 | throw; |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2491 | } catch (...) { |
| 2492 | std::string msg("Unknown Exception Occurred"); |
Reid Spencer | 04cde2c | 2004-07-04 11:33:49 +0000 | [diff] [blame] | 2493 | if (Handler) Handler->handleError(msg); |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2494 | freeState(); |
| 2495 | delete TheModule; |
| 2496 | TheModule = 0; |
Chris Lattner | 3bdad69 | 2004-11-15 21:55:33 +0000 | [diff] [blame] | 2497 | if (decompressedBlock != 0) { |
Reid Spencer | 61aaf2e | 2004-11-14 21:59:21 +0000 | [diff] [blame] | 2498 | ::free(decompressedBlock); |
Chris Lattner | 3bdad69 | 2004-11-15 21:55:33 +0000 | [diff] [blame] | 2499 | decompressedBlock = 0; |
| 2500 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2501 | throw msg; |
Chris Lattner | 2a7b6ba | 2003-03-06 17:15:19 +0000 | [diff] [blame] | 2502 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2503 | } |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2504 | |
| 2505 | //===----------------------------------------------------------------------===// |
| 2506 | //=== Default Implementations of Handler Methods |
| 2507 | //===----------------------------------------------------------------------===// |
| 2508 | |
| 2509 | BytecodeHandler::~BytecodeHandler() {} |
Reid Spencer | 060d25d | 2004-06-29 23:29:38 +0000 | [diff] [blame] | 2510 | |