blob: d1fdec2942bb5a0efaa59f2952b8941d19d07c3f [file] [log] [blame]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001//===- BitcodeReader.cpp - Internal BitcodeReader implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnercaee0dc2007-04-22 06:23:29 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This header defines the BitcodeReader class.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerc453f762007-04-29 07:54:31 +000014#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000015#include "BitcodeReader.h"
Chris Lattnere16504e2007-04-24 03:30:34 +000016#include "llvm/Constants.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000017#include "llvm/DerivedTypes.h"
Chris Lattner2bce93a2007-05-06 01:58:20 +000018#include "llvm/InlineAsm.h"
Chris Lattnera7c49aa2007-05-01 07:01:57 +000019#include "llvm/Instructions.h"
Nick Lewyckycb337992009-05-10 20:57:05 +000020#include "llvm/MDNode.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000021#include "llvm/Module.h"
Chandler Carruth69940402007-08-04 01:51:18 +000022#include "llvm/AutoUpgrade.h"
Chris Lattner0b2482a2007-04-23 21:26:05 +000023#include "llvm/ADT/SmallString.h"
Devang Patelf4511cd2008-02-26 19:38:17 +000024#include "llvm/ADT/SmallVector.h"
Chris Lattner0eef0802007-04-24 04:04:35 +000025#include "llvm/Support/MathExtras.h"
Chris Lattnerc453f762007-04-29 07:54:31 +000026#include "llvm/Support/MemoryBuffer.h"
Gabor Greifefe65362008-05-10 08:32:32 +000027#include "llvm/OperandTraits.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000028using namespace llvm;
29
Chris Lattnerb348bb82007-05-18 04:02:46 +000030void BitcodeReader::FreeState() {
Chris Lattnerc453f762007-04-29 07:54:31 +000031 delete Buffer;
Chris Lattnerb348bb82007-05-18 04:02:46 +000032 Buffer = 0;
33 std::vector<PATypeHolder>().swap(TypeList);
34 ValueList.clear();
Chris Lattner461edd92008-03-12 02:25:52 +000035
Devang Patel19c87462008-09-26 22:53:05 +000036 std::vector<AttrListPtr>().swap(MAttributes);
Chris Lattnerb348bb82007-05-18 04:02:46 +000037 std::vector<BasicBlock*>().swap(FunctionBBs);
38 std::vector<Function*>().swap(FunctionsWithBodies);
39 DeferredFunctionInfo.clear();
Chris Lattnerc453f762007-04-29 07:54:31 +000040}
41
Chris Lattner48c85b82007-05-04 03:30:17 +000042//===----------------------------------------------------------------------===//
43// Helper functions to implement forward reference resolution, etc.
44//===----------------------------------------------------------------------===//
Chris Lattnerc453f762007-04-29 07:54:31 +000045
Chris Lattnercaee0dc2007-04-22 06:23:29 +000046/// ConvertToString - Convert a string from a record into an std::string, return
47/// true on failure.
Chris Lattner0b2482a2007-04-23 21:26:05 +000048template<typename StrTy>
Chris Lattnercaee0dc2007-04-22 06:23:29 +000049static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
Chris Lattner0b2482a2007-04-23 21:26:05 +000050 StrTy &Result) {
Chris Lattner15e6d172007-05-04 19:11:41 +000051 if (Idx > Record.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +000052 return true;
53
Chris Lattner15e6d172007-05-04 19:11:41 +000054 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
55 Result += (char)Record[i];
Chris Lattnercaee0dc2007-04-22 06:23:29 +000056 return false;
57}
58
59static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
60 switch (Val) {
61 default: // Map unknown/new linkages to external
62 case 0: return GlobalValue::ExternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000063 case 1: return GlobalValue::WeakAnyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000064 case 2: return GlobalValue::AppendingLinkage;
65 case 3: return GlobalValue::InternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000066 case 4: return GlobalValue::LinkOnceAnyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000067 case 5: return GlobalValue::DLLImportLinkage;
68 case 6: return GlobalValue::DLLExportLinkage;
Duncan Sands5f4ee1f2009-03-11 08:08:06 +000069 case 7: return GlobalValue::ExternalWeakLinkage;
Duncan Sands4dc2b392009-03-11 20:14:15 +000070 case 8: return GlobalValue::CommonLinkage;
Rafael Espindolabb46f522009-01-15 20:18:42 +000071 case 9: return GlobalValue::PrivateLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000072 case 10: return GlobalValue::WeakODRLinkage;
73 case 11: return GlobalValue::LinkOnceODRLinkage;
Chris Lattner266c7bb2009-04-13 05:44:34 +000074 case 12: return GlobalValue::AvailableExternallyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000075 }
76}
77
78static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
79 switch (Val) {
80 default: // Map unknown visibilities to default.
81 case 0: return GlobalValue::DefaultVisibility;
82 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +000083 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000084 }
85}
86
Chris Lattnerf581c3b2007-04-24 07:07:11 +000087static int GetDecodedCastOpcode(unsigned Val) {
88 switch (Val) {
89 default: return -1;
90 case bitc::CAST_TRUNC : return Instruction::Trunc;
91 case bitc::CAST_ZEXT : return Instruction::ZExt;
92 case bitc::CAST_SEXT : return Instruction::SExt;
93 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
94 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
95 case bitc::CAST_UITOFP : return Instruction::UIToFP;
96 case bitc::CAST_SITOFP : return Instruction::SIToFP;
97 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
98 case bitc::CAST_FPEXT : return Instruction::FPExt;
99 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
100 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
101 case bitc::CAST_BITCAST : return Instruction::BitCast;
102 }
103}
104static int GetDecodedBinaryOpcode(unsigned Val, const Type *Ty) {
105 switch (Val) {
106 default: return -1;
107 case bitc::BINOP_ADD: return Instruction::Add;
108 case bitc::BINOP_SUB: return Instruction::Sub;
109 case bitc::BINOP_MUL: return Instruction::Mul;
110 case bitc::BINOP_UDIV: return Instruction::UDiv;
111 case bitc::BINOP_SDIV:
112 return Ty->isFPOrFPVector() ? Instruction::FDiv : Instruction::SDiv;
113 case bitc::BINOP_UREM: return Instruction::URem;
114 case bitc::BINOP_SREM:
115 return Ty->isFPOrFPVector() ? Instruction::FRem : Instruction::SRem;
116 case bitc::BINOP_SHL: return Instruction::Shl;
117 case bitc::BINOP_LSHR: return Instruction::LShr;
118 case bitc::BINOP_ASHR: return Instruction::AShr;
119 case bitc::BINOP_AND: return Instruction::And;
120 case bitc::BINOP_OR: return Instruction::Or;
121 case bitc::BINOP_XOR: return Instruction::Xor;
122 }
123}
124
Gabor Greifefe65362008-05-10 08:32:32 +0000125namespace llvm {
Chris Lattner522b7b12007-04-24 05:48:56 +0000126namespace {
127 /// @brief A class for maintaining the slot number definition
128 /// as a placeholder for the actual definition for forward constants defs.
129 class ConstantPlaceHolder : public ConstantExpr {
130 ConstantPlaceHolder(); // DO NOT IMPLEMENT
131 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Gabor Greif051a9502008-04-06 20:25:17 +0000132 public:
133 // allocate space for exactly one operand
134 void *operator new(size_t s) {
135 return User::operator new(s, 1);
136 }
Dan Gohmanadf3eab2007-11-19 15:30:20 +0000137 explicit ConstantPlaceHolder(const Type *Ty)
Gabor Greifefe65362008-05-10 08:32:32 +0000138 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
139 Op<0>() = UndefValue::get(Type::Int32Ty);
Chris Lattner522b7b12007-04-24 05:48:56 +0000140 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000141
142 /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
143 static inline bool classof(const ConstantPlaceHolder *) { return true; }
144 static bool classof(const Value *V) {
145 return isa<ConstantExpr>(V) &&
146 cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
147 }
148
149
Gabor Greifefe65362008-05-10 08:32:32 +0000150 /// Provide fast operand accessors
Chris Lattner46e77402009-03-31 22:55:09 +0000151 //DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner522b7b12007-04-24 05:48:56 +0000152 };
153}
154
Chris Lattner46e77402009-03-31 22:55:09 +0000155// FIXME: can we inherit this from ConstantExpr?
Gabor Greifefe65362008-05-10 08:32:32 +0000156template <>
157struct OperandTraits<ConstantPlaceHolder> : FixedNumOperandTraits<1> {
158};
Gabor Greifefe65362008-05-10 08:32:32 +0000159}
160
Chris Lattner46e77402009-03-31 22:55:09 +0000161
162void BitcodeReaderValueList::AssignValue(Value *V, unsigned Idx) {
163 if (Idx == size()) {
164 push_back(V);
165 return;
166 }
167
168 if (Idx >= size())
169 resize(Idx+1);
170
171 WeakVH &OldV = ValuePtrs[Idx];
172 if (OldV == 0) {
173 OldV = V;
174 return;
175 }
176
177 // Handle constants and non-constants (e.g. instrs) differently for
178 // efficiency.
179 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
180 ResolveConstants.push_back(std::make_pair(PHC, Idx));
181 OldV = V;
182 } else {
183 // If there was a forward reference to this value, replace it.
184 Value *PrevVal = OldV;
185 OldV->replaceAllUsesWith(V);
186 delete PrevVal;
Gabor Greifefe65362008-05-10 08:32:32 +0000187 }
188}
Chris Lattner46e77402009-03-31 22:55:09 +0000189
Gabor Greifefe65362008-05-10 08:32:32 +0000190
Chris Lattner522b7b12007-04-24 05:48:56 +0000191Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
192 const Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000193 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000194 resize(Idx + 1);
Chris Lattner522b7b12007-04-24 05:48:56 +0000195
Chris Lattner46e77402009-03-31 22:55:09 +0000196 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000197 assert(Ty == V->getType() && "Type mismatch in constant table!");
198 return cast<Constant>(V);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000199 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000200
201 // Create and return a placeholder, which will later be RAUW'd.
202 Constant *C = new ConstantPlaceHolder(Ty);
Chris Lattner46e77402009-03-31 22:55:09 +0000203 ValuePtrs[Idx] = C;
Chris Lattner522b7b12007-04-24 05:48:56 +0000204 return C;
205}
206
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000207Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, const Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000208 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000209 resize(Idx + 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000210
Chris Lattner46e77402009-03-31 22:55:09 +0000211 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000212 assert((Ty == 0 || Ty == V->getType()) && "Type mismatch in value table!");
213 return V;
214 }
215
Chris Lattner01ff65f2007-05-02 05:16:49 +0000216 // No type specified, must be invalid reference.
217 if (Ty == 0) return 0;
218
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000219 // Create and return a placeholder, which will later be RAUW'd.
220 Value *V = new Argument(Ty);
Chris Lattner46e77402009-03-31 22:55:09 +0000221 ValuePtrs[Idx] = V;
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000222 return V;
223}
224
Chris Lattnerea693df2008-08-21 02:34:16 +0000225/// ResolveConstantForwardRefs - Once all constants are read, this method bulk
226/// resolves any forward references. The idea behind this is that we sometimes
227/// get constants (such as large arrays) which reference *many* forward ref
228/// constants. Replacing each of these causes a lot of thrashing when
229/// building/reuniquing the constant. Instead of doing this, we look at all the
230/// uses and rewrite all the place holders at once for any constant that uses
231/// a placeholder.
232void BitcodeReaderValueList::ResolveConstantForwardRefs() {
233 // Sort the values by-pointer so that they are efficient to look up with a
234 // binary search.
235 std::sort(ResolveConstants.begin(), ResolveConstants.end());
236
237 SmallVector<Constant*, 64> NewOps;
238
239 while (!ResolveConstants.empty()) {
Chris Lattner46e77402009-03-31 22:55:09 +0000240 Value *RealVal = operator[](ResolveConstants.back().second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000241 Constant *Placeholder = ResolveConstants.back().first;
242 ResolveConstants.pop_back();
243
244 // Loop over all users of the placeholder, updating them to reference the
245 // new value. If they reference more than one placeholder, update them all
246 // at once.
247 while (!Placeholder->use_empty()) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000248 Value::use_iterator UI = Placeholder->use_begin();
249
Chris Lattnerea693df2008-08-21 02:34:16 +0000250 // If the using object isn't uniqued, just update the operands. This
251 // handles instructions and initializers for global variables.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000252 if (!isa<Constant>(*UI) || isa<GlobalValue>(*UI)) {
253 UI.getUse().set(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000254 continue;
255 }
256
257 // Otherwise, we have a constant that uses the placeholder. Replace that
258 // constant with a new constant that has *all* placeholder uses updated.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000259 Constant *UserC = cast<Constant>(*UI);
Chris Lattnerea693df2008-08-21 02:34:16 +0000260 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
261 I != E; ++I) {
262 Value *NewOp;
263 if (!isa<ConstantPlaceHolder>(*I)) {
264 // Not a placeholder reference.
265 NewOp = *I;
266 } else if (*I == Placeholder) {
267 // Common case is that it just references this one placeholder.
268 NewOp = RealVal;
269 } else {
270 // Otherwise, look up the placeholder in ResolveConstants.
271 ResolveConstantsTy::iterator It =
272 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
273 std::pair<Constant*, unsigned>(cast<Constant>(*I),
274 0));
275 assert(It != ResolveConstants.end() && It->first == *I);
Chris Lattner46e77402009-03-31 22:55:09 +0000276 NewOp = operator[](It->second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000277 }
278
279 NewOps.push_back(cast<Constant>(NewOp));
280 }
281
282 // Make the new constant.
283 Constant *NewC;
284 if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
285 NewC = ConstantArray::get(UserCA->getType(), &NewOps[0], NewOps.size());
286 } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
287 NewC = ConstantStruct::get(&NewOps[0], NewOps.size(),
288 UserCS->getType()->isPacked());
289 } else if (isa<ConstantVector>(UserC)) {
290 NewC = ConstantVector::get(&NewOps[0], NewOps.size());
Nick Lewyckycb337992009-05-10 20:57:05 +0000291 } else {
292 assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
Chris Lattnerea693df2008-08-21 02:34:16 +0000293 NewC = cast<ConstantExpr>(UserC)->getWithOperands(&NewOps[0],
294 NewOps.size());
295 }
296
297 UserC->replaceAllUsesWith(NewC);
298 UserC->destroyConstant();
299 NewOps.clear();
300 }
301
Nick Lewyckycb337992009-05-10 20:57:05 +0000302 // Update all ValueHandles, they should be the only users at this point.
303 Placeholder->replaceAllUsesWith(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000304 delete Placeholder;
305 }
306}
307
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000308
309const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
310 // If the TypeID is in range, return it.
311 if (ID < TypeList.size())
312 return TypeList[ID].get();
313 if (!isTypeTable) return 0;
314
315 // The type table allows forward references. Push as many Opaque types as
316 // needed to get up to ID.
317 while (TypeList.size() <= ID)
318 TypeList.push_back(OpaqueType::get());
319 return TypeList.back().get();
320}
321
Chris Lattner48c85b82007-05-04 03:30:17 +0000322//===----------------------------------------------------------------------===//
323// Functions for parsing blocks from the bitcode file
324//===----------------------------------------------------------------------===//
325
Devang Patel05988662008-09-25 21:00:45 +0000326bool BitcodeReader::ParseAttributeBlock() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000327 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
Chris Lattner48c85b82007-05-04 03:30:17 +0000328 return Error("Malformed block record");
329
Devang Patel19c87462008-09-26 22:53:05 +0000330 if (!MAttributes.empty())
Chris Lattner48c85b82007-05-04 03:30:17 +0000331 return Error("Multiple PARAMATTR blocks found!");
332
333 SmallVector<uint64_t, 64> Record;
334
Devang Patel05988662008-09-25 21:00:45 +0000335 SmallVector<AttributeWithIndex, 8> Attrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000336
337 // Read all the records.
338 while (1) {
339 unsigned Code = Stream.ReadCode();
340 if (Code == bitc::END_BLOCK) {
341 if (Stream.ReadBlockEnd())
342 return Error("Error at end of PARAMATTR block");
343 return false;
344 }
345
346 if (Code == bitc::ENTER_SUBBLOCK) {
347 // No known subblocks, always skip them.
348 Stream.ReadSubBlockID();
349 if (Stream.SkipBlock())
350 return Error("Malformed block record");
351 continue;
352 }
353
354 if (Code == bitc::DEFINE_ABBREV) {
355 Stream.ReadAbbrevRecord();
356 continue;
357 }
358
359 // Read a record.
360 Record.clear();
361 switch (Stream.ReadRecord(Code, Record)) {
362 default: // Default behavior: ignore.
363 break;
364 case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [paramidx0, attr0, ...]
365 if (Record.size() & 1)
366 return Error("Invalid ENTRY record");
367
Chris Lattner9a6cb152008-10-05 18:22:09 +0000368 // FIXME : Remove this autoupgrade code in LLVM 3.0.
Devang Patel19c87462008-09-26 22:53:05 +0000369 // If Function attributes are using index 0 then transfer them
Chris Lattner9a6cb152008-10-05 18:22:09 +0000370 // to index ~0. Index 0 is used for return value attributes but used to be
371 // used for function attributes.
Devang Patel19c87462008-09-26 22:53:05 +0000372 Attributes RetAttribute = Attribute::None;
373 Attributes FnAttribute = Attribute::None;
Chris Lattner48c85b82007-05-04 03:30:17 +0000374 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Nick Lewycky73ddd4f2008-12-19 09:38:31 +0000375 // FIXME: remove in LLVM 3.0
376 // The alignment is stored as a 16-bit raw value from bits 31--16.
377 // We shift the bits above 31 down by 11 bits.
378
379 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16;
380 if (Alignment && !isPowerOf2_32(Alignment))
381 return Error("Alignment is not a power of two.");
382
383 Attributes ReconstitutedAttr = Record[i+1] & 0xffff;
384 if (Alignment)
385 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment);
386 ReconstitutedAttr |= (Record[i+1] & (0xffffull << 32)) >> 11;
387 Record[i+1] = ReconstitutedAttr;
388
Devang Patel19c87462008-09-26 22:53:05 +0000389 if (Record[i] == 0)
390 RetAttribute = Record[i+1];
391 else if (Record[i] == ~0U)
392 FnAttribute = Record[i+1];
393 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000394
395 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
396 Attribute::ReadOnly|Attribute::ReadNone);
397
398 if (FnAttribute == Attribute::None && RetAttribute != Attribute::None &&
399 (RetAttribute & OldRetAttrs) != 0) {
400 if (FnAttribute == Attribute::None) { // add a slot so they get added.
401 Record.push_back(~0U);
402 Record.push_back(0);
Devang Patel19c87462008-09-26 22:53:05 +0000403 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000404
405 FnAttribute |= RetAttribute & OldRetAttrs;
406 RetAttribute &= ~OldRetAttrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000407 }
Chris Lattner461edd92008-03-12 02:25:52 +0000408
Devang Patel19c87462008-09-26 22:53:05 +0000409 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattner9a6cb152008-10-05 18:22:09 +0000410 if (Record[i] == 0) {
411 if (RetAttribute != Attribute::None)
412 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
413 } else if (Record[i] == ~0U) {
414 if (FnAttribute != Attribute::None)
415 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute));
416 } else if (Record[i+1] != Attribute::None)
Devang Patel19c87462008-09-26 22:53:05 +0000417 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1]));
418 }
Devang Patel19c87462008-09-26 22:53:05 +0000419
420 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
Chris Lattner48c85b82007-05-04 03:30:17 +0000421 Attrs.clear();
422 break;
423 }
Duncan Sands5e41f652007-11-20 14:09:29 +0000424 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000425 }
426}
427
428
Chris Lattner86697142007-05-01 05:01:34 +0000429bool BitcodeReader::ParseTypeTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000430 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000431 return Error("Malformed block record");
432
433 if (!TypeList.empty())
434 return Error("Multiple TYPE_BLOCKs found!");
435
436 SmallVector<uint64_t, 64> Record;
437 unsigned NumRecords = 0;
438
439 // Read all the records for this type table.
440 while (1) {
441 unsigned Code = Stream.ReadCode();
442 if (Code == bitc::END_BLOCK) {
443 if (NumRecords != TypeList.size())
444 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000445 if (Stream.ReadBlockEnd())
446 return Error("Error at end of type table block");
447 return false;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000448 }
449
450 if (Code == bitc::ENTER_SUBBLOCK) {
451 // No known subblocks, always skip them.
452 Stream.ReadSubBlockID();
453 if (Stream.SkipBlock())
454 return Error("Malformed block record");
455 continue;
456 }
457
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000458 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000459 Stream.ReadAbbrevRecord();
460 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000461 }
462
463 // Read a record.
464 Record.clear();
465 const Type *ResultTy = 0;
466 switch (Stream.ReadRecord(Code, Record)) {
467 default: // Default behavior: unknown type.
468 ResultTy = 0;
469 break;
470 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
471 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
472 // type list. This allows us to reserve space.
473 if (Record.size() < 1)
474 return Error("Invalid TYPE_CODE_NUMENTRY record");
475 TypeList.reserve(Record[0]);
476 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000477 case bitc::TYPE_CODE_VOID: // VOID
478 ResultTy = Type::VoidTy;
479 break;
480 case bitc::TYPE_CODE_FLOAT: // FLOAT
481 ResultTy = Type::FloatTy;
482 break;
483 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
484 ResultTy = Type::DoubleTy;
485 break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000486 case bitc::TYPE_CODE_X86_FP80: // X86_FP80
487 ResultTy = Type::X86_FP80Ty;
488 break;
489 case bitc::TYPE_CODE_FP128: // FP128
490 ResultTy = Type::FP128Ty;
491 break;
492 case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
493 ResultTy = Type::PPC_FP128Ty;
494 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000495 case bitc::TYPE_CODE_LABEL: // LABEL
496 ResultTy = Type::LabelTy;
497 break;
498 case bitc::TYPE_CODE_OPAQUE: // OPAQUE
499 ResultTy = 0;
500 break;
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000501 case bitc::TYPE_CODE_METADATA: // METADATA
502 ResultTy = Type::MetadataTy;
503 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000504 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
505 if (Record.size() < 1)
506 return Error("Invalid Integer type record");
507
508 ResultTy = IntegerType::get(Record[0]);
509 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000510 case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
511 // [pointee type, address space]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000512 if (Record.size() < 1)
513 return Error("Invalid POINTER type record");
Christopher Lambfe63fb92007-12-11 08:59:05 +0000514 unsigned AddressSpace = 0;
515 if (Record.size() == 2)
516 AddressSpace = Record[1];
517 ResultTy = PointerType::get(getTypeByID(Record[0], true), AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000518 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000519 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000520 case bitc::TYPE_CODE_FUNCTION: {
Chris Lattnera1afde72007-11-27 17:48:06 +0000521 // FIXME: attrid is dead, remove it in LLVM 3.0
522 // FUNCTION: [vararg, attrid, retty, paramty x N]
523 if (Record.size() < 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000524 return Error("Invalid FUNCTION type record");
525 std::vector<const Type*> ArgTys;
Chris Lattnera1afde72007-11-27 17:48:06 +0000526 for (unsigned i = 3, e = Record.size(); i != e; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000527 ArgTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000528
Chris Lattnera1afde72007-11-27 17:48:06 +0000529 ResultTy = FunctionType::get(getTypeByID(Record[2], true), ArgTys,
Duncan Sandsdc024672007-11-27 13:23:08 +0000530 Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000531 break;
532 }
Chris Lattner15e6d172007-05-04 19:11:41 +0000533 case bitc::TYPE_CODE_STRUCT: { // STRUCT: [ispacked, eltty x N]
Chris Lattner7108dce2007-05-06 08:21:50 +0000534 if (Record.size() < 1)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000535 return Error("Invalid STRUCT type record");
536 std::vector<const Type*> EltTys;
Chris Lattner15e6d172007-05-04 19:11:41 +0000537 for (unsigned i = 1, e = Record.size(); i != e; ++i)
538 EltTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000539 ResultTy = StructType::get(EltTys, Record[0]);
540 break;
541 }
542 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
543 if (Record.size() < 2)
544 return Error("Invalid ARRAY type record");
545 ResultTy = ArrayType::get(getTypeByID(Record[1], true), Record[0]);
546 break;
547 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
548 if (Record.size() < 2)
549 return Error("Invalid VECTOR type record");
550 ResultTy = VectorType::get(getTypeByID(Record[1], true), Record[0]);
551 break;
552 }
553
554 if (NumRecords == TypeList.size()) {
555 // If this is a new type slot, just append it.
556 TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get());
557 ++NumRecords;
558 } else if (ResultTy == 0) {
559 // Otherwise, this was forward referenced, so an opaque type was created,
560 // but the result type is actually just an opaque. Leave the one we
561 // created previously.
562 ++NumRecords;
563 } else {
564 // Otherwise, this was forward referenced, so an opaque type was created.
565 // Resolve the opaque type to the real type now.
566 assert(NumRecords < TypeList.size() && "Typelist imbalance");
567 const OpaqueType *OldTy = cast<OpaqueType>(TypeList[NumRecords++].get());
568
569 // Don't directly push the new type on the Tab. Instead we want to replace
570 // the opaque type we previously inserted with the new concrete value. The
571 // refinement from the abstract (opaque) type to the new type causes all
572 // uses of the abstract type to use the concrete type (NewTy). This will
573 // also cause the opaque type to be deleted.
574 const_cast<OpaqueType*>(OldTy)->refineAbstractTypeTo(ResultTy);
575
576 // This should have replaced the old opaque type with the new type in the
Chris Lattner0eef0802007-04-24 04:04:35 +0000577 // value table... or with a preexisting type that was already in the
578 // system. Let's just make sure it did.
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000579 assert(TypeList[NumRecords-1].get() != OldTy &&
580 "refineAbstractType didn't work!");
581 }
582 }
583}
584
585
Chris Lattner86697142007-05-01 05:01:34 +0000586bool BitcodeReader::ParseTypeSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000587 if (Stream.EnterSubBlock(bitc::TYPE_SYMTAB_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000588 return Error("Malformed block record");
589
590 SmallVector<uint64_t, 64> Record;
591
592 // Read all the records for this type table.
593 std::string TypeName;
594 while (1) {
595 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000596 if (Code == bitc::END_BLOCK) {
597 if (Stream.ReadBlockEnd())
598 return Error("Error at end of type symbol table block");
599 return false;
600 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000601
602 if (Code == bitc::ENTER_SUBBLOCK) {
603 // No known subblocks, always skip them.
604 Stream.ReadSubBlockID();
605 if (Stream.SkipBlock())
606 return Error("Malformed block record");
607 continue;
608 }
609
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000610 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000611 Stream.ReadAbbrevRecord();
612 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000613 }
614
615 // Read a record.
616 Record.clear();
617 switch (Stream.ReadRecord(Code, Record)) {
618 default: // Default behavior: unknown type.
619 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000620 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000621 if (ConvertToString(Record, 1, TypeName))
622 return Error("Invalid TST_ENTRY record");
623 unsigned TypeID = Record[0];
624 if (TypeID >= TypeList.size())
625 return Error("Invalid Type ID in TST_ENTRY record");
626
627 TheModule->addTypeName(TypeName, TypeList[TypeID].get());
628 TypeName.clear();
629 break;
630 }
631 }
632}
633
Chris Lattner86697142007-05-01 05:01:34 +0000634bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000635 if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
Chris Lattner0b2482a2007-04-23 21:26:05 +0000636 return Error("Malformed block record");
637
638 SmallVector<uint64_t, 64> Record;
639
640 // Read all the records for this value table.
641 SmallString<128> ValueName;
642 while (1) {
643 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000644 if (Code == bitc::END_BLOCK) {
645 if (Stream.ReadBlockEnd())
646 return Error("Error at end of value symbol table block");
647 return false;
648 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000649 if (Code == bitc::ENTER_SUBBLOCK) {
650 // No known subblocks, always skip them.
651 Stream.ReadSubBlockID();
652 if (Stream.SkipBlock())
653 return Error("Malformed block record");
654 continue;
655 }
656
657 if (Code == bitc::DEFINE_ABBREV) {
658 Stream.ReadAbbrevRecord();
659 continue;
660 }
661
662 // Read a record.
663 Record.clear();
664 switch (Stream.ReadRecord(Code, Record)) {
665 default: // Default behavior: unknown type.
666 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000667 case bitc::VST_CODE_ENTRY: { // VST_ENTRY: [valueid, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000668 if (ConvertToString(Record, 1, ValueName))
Nick Lewycky88b72932009-05-31 06:07:28 +0000669 return Error("Invalid VST_ENTRY record");
Chris Lattner0b2482a2007-04-23 21:26:05 +0000670 unsigned ValueID = Record[0];
671 if (ValueID >= ValueList.size())
672 return Error("Invalid Value ID in VST_ENTRY record");
673 Value *V = ValueList[ValueID];
674
675 V->setName(&ValueName[0], ValueName.size());
676 ValueName.clear();
677 break;
Reid Spencerc8f8a242007-05-04 01:43:33 +0000678 }
679 case bitc::VST_CODE_BBENTRY: {
Chris Lattnere825ed52007-05-03 22:18:21 +0000680 if (ConvertToString(Record, 1, ValueName))
681 return Error("Invalid VST_BBENTRY record");
682 BasicBlock *BB = getBasicBlock(Record[0]);
683 if (BB == 0)
684 return Error("Invalid BB ID in VST_BBENTRY record");
685
686 BB->setName(&ValueName[0], ValueName.size());
687 ValueName.clear();
688 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000689 }
Reid Spencerc8f8a242007-05-04 01:43:33 +0000690 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000691 }
692}
693
Chris Lattner0eef0802007-04-24 04:04:35 +0000694/// DecodeSignRotatedValue - Decode a signed value stored with the sign bit in
695/// the LSB for dense VBR encoding.
696static uint64_t DecodeSignRotatedValue(uint64_t V) {
697 if ((V & 1) == 0)
698 return V >> 1;
699 if (V != 1)
700 return -(V >> 1);
701 // There is no such thing as -0 with integers. "-0" really means MININT.
702 return 1ULL << 63;
703}
704
Chris Lattner07d98b42007-04-26 02:46:40 +0000705/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
706/// values and aliases that we can.
707bool BitcodeReader::ResolveGlobalAndAliasInits() {
708 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
709 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
710
711 GlobalInitWorklist.swap(GlobalInits);
712 AliasInitWorklist.swap(AliasInits);
713
714 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +0000715 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +0000716 if (ValID >= ValueList.size()) {
717 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +0000718 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +0000719 } else {
720 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
721 GlobalInitWorklist.back().first->setInitializer(C);
722 else
723 return Error("Global variable initializer is not a constant!");
724 }
725 GlobalInitWorklist.pop_back();
726 }
727
728 while (!AliasInitWorklist.empty()) {
729 unsigned ValID = AliasInitWorklist.back().second;
730 if (ValID >= ValueList.size()) {
731 AliasInits.push_back(AliasInitWorklist.back());
732 } else {
733 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +0000734 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +0000735 else
736 return Error("Alias initializer is not a constant!");
737 }
738 AliasInitWorklist.pop_back();
739 }
740 return false;
741}
742
743
Chris Lattner86697142007-05-01 05:01:34 +0000744bool BitcodeReader::ParseConstants() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000745 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
Chris Lattnere16504e2007-04-24 03:30:34 +0000746 return Error("Malformed block record");
747
748 SmallVector<uint64_t, 64> Record;
749
750 // Read all the records for this value table.
751 const Type *CurTy = Type::Int32Ty;
Chris Lattner522b7b12007-04-24 05:48:56 +0000752 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +0000753 while (1) {
754 unsigned Code = Stream.ReadCode();
Chris Lattnerea693df2008-08-21 02:34:16 +0000755 if (Code == bitc::END_BLOCK)
756 break;
Chris Lattnere16504e2007-04-24 03:30:34 +0000757
758 if (Code == bitc::ENTER_SUBBLOCK) {
759 // No known subblocks, always skip them.
760 Stream.ReadSubBlockID();
761 if (Stream.SkipBlock())
762 return Error("Malformed block record");
763 continue;
764 }
765
766 if (Code == bitc::DEFINE_ABBREV) {
767 Stream.ReadAbbrevRecord();
768 continue;
769 }
770
771 // Read a record.
772 Record.clear();
773 Value *V = 0;
774 switch (Stream.ReadRecord(Code, Record)) {
775 default: // Default behavior: unknown constant
776 case bitc::CST_CODE_UNDEF: // UNDEF
777 V = UndefValue::get(CurTy);
778 break;
779 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
780 if (Record.empty())
781 return Error("Malformed CST_SETTYPE record");
782 if (Record[0] >= TypeList.size())
783 return Error("Invalid Type ID in CST_SETTYPE record");
784 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +0000785 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +0000786 case bitc::CST_CODE_NULL: // NULL
787 V = Constant::getNullValue(CurTy);
788 break;
789 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000790 if (!isa<IntegerType>(CurTy) || Record.empty())
791 return Error("Invalid CST_INTEGER record");
792 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
793 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000794 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
795 if (!isa<IntegerType>(CurTy) || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +0000796 return Error("Invalid WIDE_INTEGER record");
797
Chris Lattner15e6d172007-05-04 19:11:41 +0000798 unsigned NumWords = Record.size();
Chris Lattner084a8442007-04-24 17:22:05 +0000799 SmallVector<uint64_t, 8> Words;
800 Words.resize(NumWords);
Chris Lattner0eef0802007-04-24 04:04:35 +0000801 for (unsigned i = 0; i != NumWords; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000802 Words[i] = DecodeSignRotatedValue(Record[i]);
Chris Lattner0eef0802007-04-24 04:04:35 +0000803 V = ConstantInt::get(APInt(cast<IntegerType>(CurTy)->getBitWidth(),
Chris Lattner084a8442007-04-24 17:22:05 +0000804 NumWords, &Words[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000805 break;
806 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000807 case bitc::CST_CODE_FLOAT: { // FLOAT: [fpval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000808 if (Record.empty())
809 return Error("Invalid FLOAT record");
810 if (CurTy == Type::FloatTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000811 V = ConstantFP::get(APFloat(APInt(32, (uint32_t)Record[0])));
Chris Lattner0eef0802007-04-24 04:04:35 +0000812 else if (CurTy == Type::DoubleTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000813 V = ConstantFP::get(APFloat(APInt(64, Record[0])));
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000814 else if (CurTy == Type::X86_FP80Ty) {
815 // Bits are not stored the same way as a normal i80 APInt, compensate.
816 uint64_t Rearrange[2];
817 Rearrange[0] = (Record[1] & 0xffffLL) | (Record[0] << 16);
818 Rearrange[1] = Record[0] >> 48;
819 V = ConstantFP::get(APFloat(APInt(80, 2, Rearrange)));
820 } else if (CurTy == Type::FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000821 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0]), true));
Dale Johannesen43421b32007-09-06 18:13:44 +0000822 else if (CurTy == Type::PPC_FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000823 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0])));
Chris Lattnere16504e2007-04-24 03:30:34 +0000824 else
Chris Lattner0eef0802007-04-24 04:04:35 +0000825 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000826 break;
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000827 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000828
Chris Lattner15e6d172007-05-04 19:11:41 +0000829 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
830 if (Record.empty())
Chris Lattner522b7b12007-04-24 05:48:56 +0000831 return Error("Invalid CST_AGGREGATE record");
832
Chris Lattner15e6d172007-05-04 19:11:41 +0000833 unsigned Size = Record.size();
Chris Lattner522b7b12007-04-24 05:48:56 +0000834 std::vector<Constant*> Elts;
835
836 if (const StructType *STy = dyn_cast<StructType>(CurTy)) {
837 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000838 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
Chris Lattner522b7b12007-04-24 05:48:56 +0000839 STy->getElementType(i)));
840 V = ConstantStruct::get(STy, Elts);
841 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
842 const Type *EltTy = ATy->getElementType();
843 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000844 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000845 V = ConstantArray::get(ATy, Elts);
846 } else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
847 const Type *EltTy = VTy->getElementType();
848 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000849 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000850 V = ConstantVector::get(Elts);
851 } else {
852 V = UndefValue::get(CurTy);
853 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000854 break;
855 }
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000856 case bitc::CST_CODE_STRING: { // STRING: [values]
857 if (Record.empty())
858 return Error("Invalid CST_AGGREGATE record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000859
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000860 const ArrayType *ATy = cast<ArrayType>(CurTy);
861 const Type *EltTy = ATy->getElementType();
862
863 unsigned Size = Record.size();
864 std::vector<Constant*> Elts;
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000865 for (unsigned i = 0; i != Size; ++i)
866 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
867 V = ConstantArray::get(ATy, Elts);
868 break;
869 }
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000870 case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
871 if (Record.empty())
872 return Error("Invalid CST_AGGREGATE record");
873
874 const ArrayType *ATy = cast<ArrayType>(CurTy);
875 const Type *EltTy = ATy->getElementType();
876
877 unsigned Size = Record.size();
878 std::vector<Constant*> Elts;
879 for (unsigned i = 0; i != Size; ++i)
880 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
881 Elts.push_back(Constant::getNullValue(EltTy));
882 V = ConstantArray::get(ATy, Elts);
883 break;
884 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000885 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
886 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
887 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000888 if (Opc < 0) {
889 V = UndefValue::get(CurTy); // Unknown binop.
890 } else {
891 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
892 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
893 V = ConstantExpr::get(Opc, LHS, RHS);
894 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000895 break;
896 }
897 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
898 if (Record.size() < 3) return Error("Invalid CE_CAST record");
899 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000900 if (Opc < 0) {
901 V = UndefValue::get(CurTy); // Unknown cast.
902 } else {
903 const Type *OpTy = getTypeByID(Record[1]);
Chris Lattnerbfcc3802007-05-06 07:33:01 +0000904 if (!OpTy) return Error("Invalid CE_CAST record");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000905 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
906 V = ConstantExpr::getCast(Opc, Op, CurTy);
907 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000908 break;
909 }
910 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
Chris Lattner15e6d172007-05-04 19:11:41 +0000911 if (Record.size() & 1) return Error("Invalid CE_GEP record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000912 SmallVector<Constant*, 16> Elts;
Chris Lattner15e6d172007-05-04 19:11:41 +0000913 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000914 const Type *ElTy = getTypeByID(Record[i]);
915 if (!ElTy) return Error("Invalid CE_GEP record");
916 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
917 }
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000918 V = ConstantExpr::getGetElementPtr(Elts[0], &Elts[1], Elts.size()-1);
919 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000920 }
921 case bitc::CST_CODE_CE_SELECT: // CE_SELECT: [opval#, opval#, opval#]
922 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
923 V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
924 Type::Int1Ty),
925 ValueList.getConstantFwdRef(Record[1],CurTy),
926 ValueList.getConstantFwdRef(Record[2],CurTy));
927 break;
928 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
929 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
930 const VectorType *OpTy =
931 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
932 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
933 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
Chris Lattnerba120aa2009-02-03 02:11:28 +0000934 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000935 V = ConstantExpr::getExtractElement(Op0, Op1);
936 break;
937 }
938 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
939 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
940 if (Record.size() < 3 || OpTy == 0)
941 return Error("Invalid CE_INSERTELT record");
942 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
943 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
944 OpTy->getElementType());
945 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
946 V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
947 break;
948 }
949 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
950 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
951 if (Record.size() < 3 || OpTy == 0)
Nate Begeman0f123cf2009-02-12 21:28:33 +0000952 return Error("Invalid CE_SHUFFLEVEC record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000953 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
954 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
955 const Type *ShufTy=VectorType::get(Type::Int32Ty, OpTy->getNumElements());
956 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
957 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
958 break;
959 }
Nate Begeman0f123cf2009-02-12 21:28:33 +0000960 case bitc::CST_CODE_CE_SHUFVEC_EX: { // [opty, opval, opval, opval]
961 const VectorType *RTy = dyn_cast<VectorType>(CurTy);
962 const VectorType *OpTy = dyn_cast<VectorType>(getTypeByID(Record[0]));
963 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
964 return Error("Invalid CE_SHUFVEC_EX record");
965 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
966 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
967 const Type *ShufTy=VectorType::get(Type::Int32Ty, RTy->getNumElements());
968 Constant *Op2 = ValueList.getConstantFwdRef(Record[3], ShufTy);
969 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
970 break;
971 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000972 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
973 if (Record.size() < 4) return Error("Invalid CE_CMP record");
974 const Type *OpTy = getTypeByID(Record[0]);
975 if (OpTy == 0) return Error("Invalid CE_CMP record");
976 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
977 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
978
979 if (OpTy->isFloatingPoint())
980 V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
Nate Begemanbaa64eb2008-05-12 20:33:52 +0000981 else if (!isa<VectorType>(OpTy))
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000982 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +0000983 else if (OpTy->isFPOrFPVector())
984 V = ConstantExpr::getVFCmp(Record[3], Op0, Op1);
985 else
986 V = ConstantExpr::getVICmp(Record[3], Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000987 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000988 }
Chris Lattner2bce93a2007-05-06 01:58:20 +0000989 case bitc::CST_CODE_INLINEASM: {
990 if (Record.size() < 2) return Error("Invalid INLINEASM record");
991 std::string AsmStr, ConstrStr;
992 bool HasSideEffects = Record[0];
993 unsigned AsmStrSize = Record[1];
994 if (2+AsmStrSize >= Record.size())
995 return Error("Invalid INLINEASM record");
996 unsigned ConstStrSize = Record[2+AsmStrSize];
997 if (3+AsmStrSize+ConstStrSize > Record.size())
998 return Error("Invalid INLINEASM record");
999
1000 for (unsigned i = 0; i != AsmStrSize; ++i)
1001 AsmStr += (char)Record[2+i];
1002 for (unsigned i = 0; i != ConstStrSize; ++i)
1003 ConstrStr += (char)Record[3+AsmStrSize+i];
1004 const PointerType *PTy = cast<PointerType>(CurTy);
1005 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
1006 AsmStr, ConstrStr, HasSideEffects);
1007 break;
1008 }
Nick Lewycky21cc4462009-04-04 07:22:01 +00001009 case bitc::CST_CODE_MDSTRING: {
1010 if (Record.size() < 2) return Error("Invalid MDSTRING record");
1011 unsigned MDStringLength = Record.size();
1012 SmallString<8> String;
1013 String.resize(MDStringLength);
1014 for (unsigned i = 0; i != MDStringLength; ++i)
1015 String[i] = Record[i];
1016 V = MDString::get(String.c_str(), String.c_str() + MDStringLength);
1017 break;
1018 }
1019 case bitc::CST_CODE_MDNODE: {
1020 if (Record.empty() || Record.size() % 2 == 1)
1021 return Error("Invalid CST_MDNODE record");
1022
1023 unsigned Size = Record.size();
Nick Lewyckycb337992009-05-10 20:57:05 +00001024 SmallVector<Value*, 8> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001025 for (unsigned i = 0; i != Size; i += 2) {
1026 const Type *Ty = getTypeByID(Record[i], false);
Nick Lewyckycb337992009-05-10 20:57:05 +00001027 if (Ty != Type::VoidTy)
1028 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], Ty));
1029 else
1030 Elts.push_back(NULL);
Nick Lewycky21cc4462009-04-04 07:22:01 +00001031 }
1032 V = MDNode::get(&Elts[0], Elts.size());
1033 break;
1034 }
Chris Lattnere16504e2007-04-24 03:30:34 +00001035 }
1036
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001037 ValueList.AssignValue(V, NextCstNo);
Chris Lattner522b7b12007-04-24 05:48:56 +00001038 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +00001039 }
Chris Lattnerea693df2008-08-21 02:34:16 +00001040
1041 if (NextCstNo != ValueList.size())
1042 return Error("Invalid constant reference!");
1043
1044 if (Stream.ReadBlockEnd())
1045 return Error("Error at end of constants block");
1046
1047 // Once all the constants have been read, go through and resolve forward
1048 // references.
1049 ValueList.ResolveConstantForwardRefs();
1050 return false;
Chris Lattnere16504e2007-04-24 03:30:34 +00001051}
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001052
Chris Lattner980e5aa2007-05-01 05:52:21 +00001053/// RememberAndSkipFunctionBody - When we see the block for a function body,
1054/// remember where it is and then skip it. This lets us lazily deserialize the
1055/// functions.
1056bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +00001057 // Get the function we are talking about.
1058 if (FunctionsWithBodies.empty())
1059 return Error("Insufficient function protos");
1060
1061 Function *Fn = FunctionsWithBodies.back();
1062 FunctionsWithBodies.pop_back();
1063
1064 // Save the current stream state.
1065 uint64_t CurBit = Stream.GetCurrentBitNo();
1066 DeferredFunctionInfo[Fn] = std::make_pair(CurBit, Fn->getLinkage());
1067
1068 // Set the functions linkage to GhostLinkage so we know it is lazily
1069 // deserialized.
1070 Fn->setLinkage(GlobalValue::GhostLinkage);
1071
1072 // Skip over the function block for now.
1073 if (Stream.SkipBlock())
1074 return Error("Malformed block record");
1075 return false;
1076}
1077
Chris Lattner86697142007-05-01 05:01:34 +00001078bool BitcodeReader::ParseModule(const std::string &ModuleID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001079 // Reject multiple MODULE_BLOCK's in a single bitstream.
1080 if (TheModule)
1081 return Error("Multiple MODULE_BLOCKs in same stream");
1082
Chris Lattnere17b6582007-05-05 00:17:00 +00001083 if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001084 return Error("Malformed block record");
1085
1086 // Otherwise, create the module.
1087 TheModule = new Module(ModuleID);
1088
1089 SmallVector<uint64_t, 64> Record;
1090 std::vector<std::string> SectionTable;
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001091 std::vector<std::string> GCTable;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001092
1093 // Read all the records for this module.
1094 while (!Stream.AtEndOfStream()) {
1095 unsigned Code = Stream.ReadCode();
Chris Lattnere84bcb92007-04-24 00:21:45 +00001096 if (Code == bitc::END_BLOCK) {
Chris Lattner980e5aa2007-05-01 05:52:21 +00001097 if (Stream.ReadBlockEnd())
1098 return Error("Error at end of module block");
1099
1100 // Patch the initializers for globals and aliases up.
Chris Lattner07d98b42007-04-26 02:46:40 +00001101 ResolveGlobalAndAliasInits();
1102 if (!GlobalInits.empty() || !AliasInits.empty())
Chris Lattnere84bcb92007-04-24 00:21:45 +00001103 return Error("Malformed global initializer set");
Chris Lattner48f84872007-05-01 04:59:48 +00001104 if (!FunctionsWithBodies.empty())
1105 return Error("Too few function bodies found");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001106
Chandler Carruth69940402007-08-04 01:51:18 +00001107 // Look for intrinsic functions which need to be upgraded at some point
1108 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1109 FI != FE; ++FI) {
Evan Chengf9b83fc2007-12-17 22:33:23 +00001110 Function* NewFn;
1111 if (UpgradeIntrinsicFunction(FI, NewFn))
Chandler Carruth69940402007-08-04 01:51:18 +00001112 UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1113 }
1114
Chris Lattner980e5aa2007-05-01 05:52:21 +00001115 // Force deallocation of memory for these vectors to favor the client that
1116 // want lazy deserialization.
1117 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1118 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1119 std::vector<Function*>().swap(FunctionsWithBodies);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001120 return false;
Chris Lattnere84bcb92007-04-24 00:21:45 +00001121 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001122
1123 if (Code == bitc::ENTER_SUBBLOCK) {
1124 switch (Stream.ReadSubBlockID()) {
1125 default: // Skip unknown content.
1126 if (Stream.SkipBlock())
1127 return Error("Malformed block record");
1128 break;
Chris Lattner3f799802007-05-05 18:57:30 +00001129 case bitc::BLOCKINFO_BLOCK_ID:
1130 if (Stream.ReadBlockInfoBlock())
1131 return Error("Malformed BlockInfoBlock");
1132 break;
Chris Lattner48c85b82007-05-04 03:30:17 +00001133 case bitc::PARAMATTR_BLOCK_ID:
Devang Patel05988662008-09-25 21:00:45 +00001134 if (ParseAttributeBlock())
Chris Lattner48c85b82007-05-04 03:30:17 +00001135 return true;
1136 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001137 case bitc::TYPE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001138 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001139 return true;
1140 break;
1141 case bitc::TYPE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001142 if (ParseTypeSymbolTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001143 return true;
1144 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001145 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001146 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +00001147 return true;
1148 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001149 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001150 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +00001151 return true;
1152 break;
Chris Lattner48f84872007-05-01 04:59:48 +00001153 case bitc::FUNCTION_BLOCK_ID:
1154 // If this is the first function body we've seen, reverse the
1155 // FunctionsWithBodies list.
1156 if (!HasReversedFunctionsWithBodies) {
1157 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
1158 HasReversedFunctionsWithBodies = true;
1159 }
1160
Chris Lattner980e5aa2007-05-01 05:52:21 +00001161 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +00001162 return true;
1163 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001164 }
1165 continue;
1166 }
1167
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001168 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +00001169 Stream.ReadAbbrevRecord();
1170 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001171 }
1172
1173 // Read a record.
1174 switch (Stream.ReadRecord(Code, Record)) {
1175 default: break; // Default behavior, ignore unknown content.
1176 case bitc::MODULE_CODE_VERSION: // VERSION: [version#]
1177 if (Record.size() < 1)
1178 return Error("Malformed MODULE_CODE_VERSION");
1179 // Only version #0 is supported so far.
1180 if (Record[0] != 0)
1181 return Error("Unknown bitstream version!");
1182 break;
Chris Lattner15e6d172007-05-04 19:11:41 +00001183 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001184 std::string S;
1185 if (ConvertToString(Record, 0, S))
1186 return Error("Invalid MODULE_CODE_TRIPLE record");
1187 TheModule->setTargetTriple(S);
1188 break;
1189 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001190 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001191 std::string S;
1192 if (ConvertToString(Record, 0, S))
1193 return Error("Invalid MODULE_CODE_DATALAYOUT record");
1194 TheModule->setDataLayout(S);
1195 break;
1196 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001197 case bitc::MODULE_CODE_ASM: { // ASM: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001198 std::string S;
1199 if (ConvertToString(Record, 0, S))
1200 return Error("Invalid MODULE_CODE_ASM record");
1201 TheModule->setModuleInlineAsm(S);
1202 break;
1203 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001204 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001205 std::string S;
1206 if (ConvertToString(Record, 0, S))
1207 return Error("Invalid MODULE_CODE_DEPLIB record");
1208 TheModule->addLibrary(S);
1209 break;
1210 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001211 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001212 std::string S;
1213 if (ConvertToString(Record, 0, S))
1214 return Error("Invalid MODULE_CODE_SECTIONNAME record");
1215 SectionTable.push_back(S);
1216 break;
1217 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001218 case bitc::MODULE_CODE_GCNAME: { // SECTIONNAME: [strchr x N]
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001219 std::string S;
1220 if (ConvertToString(Record, 0, S))
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001221 return Error("Invalid MODULE_CODE_GCNAME record");
1222 GCTable.push_back(S);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001223 break;
1224 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001225 // GLOBALVAR: [pointer type, isconst, initid,
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001226 // linkage, alignment, section, visibility, threadlocal]
1227 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001228 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001229 return Error("Invalid MODULE_CODE_GLOBALVAR record");
1230 const Type *Ty = getTypeByID(Record[0]);
1231 if (!isa<PointerType>(Ty))
1232 return Error("Global not a pointer type!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001233 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001234 Ty = cast<PointerType>(Ty)->getElementType();
1235
1236 bool isConstant = Record[1];
1237 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1238 unsigned Alignment = (1 << Record[4]) >> 1;
1239 std::string Section;
1240 if (Record[5]) {
1241 if (Record[5]-1 >= SectionTable.size())
1242 return Error("Invalid section ID");
1243 Section = SectionTable[Record[5]-1];
1244 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001245 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
Chris Lattner5f32c012007-05-06 19:27:46 +00001246 if (Record.size() > 6)
1247 Visibility = GetDecodedVisibility(Record[6]);
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001248 bool isThreadLocal = false;
Chris Lattner5f32c012007-05-06 19:27:46 +00001249 if (Record.size() > 7)
1250 isThreadLocal = Record[7];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001251
1252 GlobalVariable *NewGV =
Christopher Lambfe63fb92007-12-11 08:59:05 +00001253 new GlobalVariable(Ty, isConstant, Linkage, 0, "", TheModule,
1254 isThreadLocal, AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001255 NewGV->setAlignment(Alignment);
1256 if (!Section.empty())
1257 NewGV->setSection(Section);
1258 NewGV->setVisibility(Visibility);
1259 NewGV->setThreadLocal(isThreadLocal);
1260
Chris Lattner0b2482a2007-04-23 21:26:05 +00001261 ValueList.push_back(NewGV);
1262
Chris Lattner6dbfd7b2007-04-24 00:18:21 +00001263 // Remember which value to use for the global initializer.
1264 if (unsigned InitID = Record[2])
1265 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001266 break;
1267 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001268 // FUNCTION: [type, callingconv, isproto, linkage, paramattr,
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001269 // alignment, section, visibility, gc]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001270 case bitc::MODULE_CODE_FUNCTION: {
Chris Lattnera9bb7132007-05-08 05:38:01 +00001271 if (Record.size() < 8)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001272 return Error("Invalid MODULE_CODE_FUNCTION record");
1273 const Type *Ty = getTypeByID(Record[0]);
1274 if (!isa<PointerType>(Ty))
1275 return Error("Function not a pointer type!");
1276 const FunctionType *FTy =
1277 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
1278 if (!FTy)
1279 return Error("Function not a pointer to function type!");
1280
Gabor Greif051a9502008-04-06 20:25:17 +00001281 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
1282 "", TheModule);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001283
1284 Func->setCallingConv(Record[1]);
Chris Lattner48f84872007-05-01 04:59:48 +00001285 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001286 Func->setLinkage(GetDecodedLinkage(Record[3]));
Devang Patel05988662008-09-25 21:00:45 +00001287 Func->setAttributes(getAttributes(Record[4]));
Chris Lattnera9bb7132007-05-08 05:38:01 +00001288
1289 Func->setAlignment((1 << Record[5]) >> 1);
1290 if (Record[6]) {
1291 if (Record[6]-1 >= SectionTable.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001292 return Error("Invalid section ID");
Chris Lattnera9bb7132007-05-08 05:38:01 +00001293 Func->setSection(SectionTable[Record[6]-1]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001294 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001295 Func->setVisibility(GetDecodedVisibility(Record[7]));
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001296 if (Record.size() > 8 && Record[8]) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001297 if (Record[8]-1 > GCTable.size())
1298 return Error("Invalid GC ID");
1299 Func->setGC(GCTable[Record[8]-1].c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001300 }
Chris Lattner0b2482a2007-04-23 21:26:05 +00001301 ValueList.push_back(Func);
Chris Lattner48f84872007-05-01 04:59:48 +00001302
1303 // If this is a function with a body, remember the prototype we are
1304 // creating now, so that we can match up the body with them later.
1305 if (!isProto)
1306 FunctionsWithBodies.push_back(Func);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001307 break;
1308 }
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001309 // ALIAS: [alias type, aliasee val#, linkage]
Anton Korobeynikovf8342b92008-03-11 21:40:17 +00001310 // ALIAS: [alias type, aliasee val#, linkage, visibility]
Chris Lattner198f34a2007-04-26 03:27:58 +00001311 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +00001312 if (Record.size() < 3)
1313 return Error("Invalid MODULE_ALIAS record");
1314 const Type *Ty = getTypeByID(Record[0]);
1315 if (!isa<PointerType>(Ty))
1316 return Error("Function not a pointer type!");
1317
1318 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
1319 "", 0, TheModule);
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001320 // Old bitcode files didn't have visibility field.
1321 if (Record.size() > 3)
1322 NewGA->setVisibility(GetDecodedVisibility(Record[3]));
Chris Lattner07d98b42007-04-26 02:46:40 +00001323 ValueList.push_back(NewGA);
1324 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
1325 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001326 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001327 /// MODULE_CODE_PURGEVALS: [numvals]
1328 case bitc::MODULE_CODE_PURGEVALS:
1329 // Trim down the value list to the specified size.
1330 if (Record.size() < 1 || Record[0] > ValueList.size())
1331 return Error("Invalid MODULE_PURGEVALS record");
1332 ValueList.shrinkTo(Record[0]);
1333 break;
1334 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001335 Record.clear();
1336 }
1337
1338 return Error("Premature end of bitstream");
1339}
1340
Chris Lattnerc453f762007-04-29 07:54:31 +00001341bool BitcodeReader::ParseBitcode() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001342 TheModule = 0;
1343
Chris Lattnerc453f762007-04-29 07:54:31 +00001344 if (Buffer->getBufferSize() & 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001345 return Error("Bitcode stream should be a multiple of 4 bytes in length");
1346
Chris Lattnerc453f762007-04-29 07:54:31 +00001347 unsigned char *BufPtr = (unsigned char *)Buffer->getBufferStart();
Chris Lattner6fa6a322008-07-09 05:14:23 +00001348 unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
1349
1350 // If we have a wrapper header, parse it and ignore the non-bc file contents.
1351 // The magic number is 0x0B17C0DE stored in little endian.
Chris Lattnere2a466b2009-04-06 20:54:32 +00001352 if (isBitcodeWrapper(BufPtr, BufEnd))
1353 if (SkipBitcodeWrapperHeader(BufPtr, BufEnd))
Chris Lattner6fa6a322008-07-09 05:14:23 +00001354 return Error("Invalid bitcode wrapper header");
1355
Chris Lattner962dde32009-04-26 20:59:02 +00001356 StreamFile.init(BufPtr, BufEnd);
1357 Stream.init(StreamFile);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001358
1359 // Sniff for the signature.
1360 if (Stream.Read(8) != 'B' ||
1361 Stream.Read(8) != 'C' ||
1362 Stream.Read(4) != 0x0 ||
1363 Stream.Read(4) != 0xC ||
1364 Stream.Read(4) != 0xE ||
1365 Stream.Read(4) != 0xD)
1366 return Error("Invalid bitcode signature");
1367
1368 // We expect a number of well-defined blocks, though we don't necessarily
1369 // need to understand them all.
1370 while (!Stream.AtEndOfStream()) {
1371 unsigned Code = Stream.ReadCode();
1372
1373 if (Code != bitc::ENTER_SUBBLOCK)
1374 return Error("Invalid record at top-level");
1375
1376 unsigned BlockID = Stream.ReadSubBlockID();
1377
1378 // We only know the MODULE subblock ID.
Chris Lattnere17b6582007-05-05 00:17:00 +00001379 switch (BlockID) {
1380 case bitc::BLOCKINFO_BLOCK_ID:
1381 if (Stream.ReadBlockInfoBlock())
1382 return Error("Malformed BlockInfoBlock");
1383 break;
1384 case bitc::MODULE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001385 if (ParseModule(Buffer->getBufferIdentifier()))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001386 return true;
Chris Lattnere17b6582007-05-05 00:17:00 +00001387 break;
1388 default:
1389 if (Stream.SkipBlock())
1390 return Error("Malformed block record");
1391 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001392 }
1393 }
1394
1395 return false;
1396}
Chris Lattnerc453f762007-04-29 07:54:31 +00001397
Chris Lattner48f84872007-05-01 04:59:48 +00001398
Chris Lattner980e5aa2007-05-01 05:52:21 +00001399/// ParseFunctionBody - Lazily parse the specified function body block.
1400bool BitcodeReader::ParseFunctionBody(Function *F) {
Chris Lattnere17b6582007-05-05 00:17:00 +00001401 if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
Chris Lattner980e5aa2007-05-01 05:52:21 +00001402 return Error("Malformed block record");
1403
1404 unsigned ModuleValueListSize = ValueList.size();
1405
1406 // Add all the function arguments to the value table.
1407 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
1408 ValueList.push_back(I);
1409
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001410 unsigned NextValueNo = ValueList.size();
Chris Lattner231cbcb2007-05-02 04:27:25 +00001411 BasicBlock *CurBB = 0;
1412 unsigned CurBBNo = 0;
1413
Chris Lattner980e5aa2007-05-01 05:52:21 +00001414 // Read all the records.
1415 SmallVector<uint64_t, 64> Record;
1416 while (1) {
1417 unsigned Code = Stream.ReadCode();
1418 if (Code == bitc::END_BLOCK) {
1419 if (Stream.ReadBlockEnd())
1420 return Error("Error at end of function block");
1421 break;
1422 }
1423
1424 if (Code == bitc::ENTER_SUBBLOCK) {
1425 switch (Stream.ReadSubBlockID()) {
1426 default: // Skip unknown content.
1427 if (Stream.SkipBlock())
1428 return Error("Malformed block record");
1429 break;
1430 case bitc::CONSTANTS_BLOCK_ID:
1431 if (ParseConstants()) return true;
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001432 NextValueNo = ValueList.size();
Chris Lattner980e5aa2007-05-01 05:52:21 +00001433 break;
1434 case bitc::VALUE_SYMTAB_BLOCK_ID:
1435 if (ParseValueSymbolTable()) return true;
1436 break;
1437 }
1438 continue;
1439 }
1440
1441 if (Code == bitc::DEFINE_ABBREV) {
1442 Stream.ReadAbbrevRecord();
1443 continue;
1444 }
1445
1446 // Read a record.
1447 Record.clear();
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001448 Instruction *I = 0;
Chris Lattner980e5aa2007-05-01 05:52:21 +00001449 switch (Stream.ReadRecord(Code, Record)) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001450 default: // Default behavior: reject
1451 return Error("Unknown instruction");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001452 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001453 if (Record.size() < 1 || Record[0] == 0)
1454 return Error("Invalid DECLAREBLOCKS record");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001455 // Create all the basic blocks for the function.
Chris Lattnerf61e6452007-05-03 22:09:51 +00001456 FunctionBBs.resize(Record[0]);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001457 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
Gabor Greif051a9502008-04-06 20:25:17 +00001458 FunctionBBs[i] = BasicBlock::Create("", F);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001459 CurBB = FunctionBBs[0];
1460 continue;
1461
Chris Lattnerabfbf852007-05-06 00:21:25 +00001462 case bitc::FUNC_CODE_INST_BINOP: { // BINOP: [opval, ty, opval, opcode]
1463 unsigned OpNum = 0;
1464 Value *LHS, *RHS;
1465 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1466 getValue(Record, OpNum, LHS->getType(), RHS) ||
1467 OpNum+1 != Record.size())
1468 return Error("Invalid BINOP record");
1469
1470 int Opc = GetDecodedBinaryOpcode(Record[OpNum], LHS->getType());
1471 if (Opc == -1) return Error("Invalid BINOP record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001472 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001473 break;
1474 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001475 case bitc::FUNC_CODE_INST_CAST: { // CAST: [opval, opty, destty, castopc]
1476 unsigned OpNum = 0;
1477 Value *Op;
1478 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1479 OpNum+2 != Record.size())
1480 return Error("Invalid CAST record");
1481
1482 const Type *ResTy = getTypeByID(Record[OpNum]);
1483 int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
1484 if (Opc == -1 || ResTy == 0)
Chris Lattner231cbcb2007-05-02 04:27:25 +00001485 return Error("Invalid CAST record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001486 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
Chris Lattner231cbcb2007-05-02 04:27:25 +00001487 break;
1488 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001489 case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
Chris Lattner7337ab92007-05-06 00:00:00 +00001490 unsigned OpNum = 0;
1491 Value *BasePtr;
1492 if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001493 return Error("Invalid GEP record");
1494
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001495 SmallVector<Value*, 16> GEPIdx;
Chris Lattner7337ab92007-05-06 00:00:00 +00001496 while (OpNum != Record.size()) {
1497 Value *Op;
1498 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001499 return Error("Invalid GEP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001500 GEPIdx.push_back(Op);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001501 }
1502
Gabor Greif051a9502008-04-06 20:25:17 +00001503 I = GetElementPtrInst::Create(BasePtr, GEPIdx.begin(), GEPIdx.end());
Chris Lattner01ff65f2007-05-02 05:16:49 +00001504 break;
1505 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001506
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001507 case bitc::FUNC_CODE_INST_EXTRACTVAL: {
1508 // EXTRACTVAL: [opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001509 unsigned OpNum = 0;
1510 Value *Agg;
1511 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1512 return Error("Invalid EXTRACTVAL record");
1513
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001514 SmallVector<unsigned, 4> EXTRACTVALIdx;
1515 for (unsigned RecSize = Record.size();
1516 OpNum != RecSize; ++OpNum) {
1517 uint64_t Index = Record[OpNum];
1518 if ((unsigned)Index != Index)
1519 return Error("Invalid EXTRACTVAL index");
1520 EXTRACTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001521 }
1522
1523 I = ExtractValueInst::Create(Agg,
1524 EXTRACTVALIdx.begin(), EXTRACTVALIdx.end());
1525 break;
1526 }
1527
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001528 case bitc::FUNC_CODE_INST_INSERTVAL: {
1529 // INSERTVAL: [opty, opval, opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001530 unsigned OpNum = 0;
1531 Value *Agg;
1532 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1533 return Error("Invalid INSERTVAL record");
1534 Value *Val;
1535 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
1536 return Error("Invalid INSERTVAL record");
1537
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001538 SmallVector<unsigned, 4> INSERTVALIdx;
1539 for (unsigned RecSize = Record.size();
1540 OpNum != RecSize; ++OpNum) {
1541 uint64_t Index = Record[OpNum];
1542 if ((unsigned)Index != Index)
1543 return Error("Invalid INSERTVAL index");
1544 INSERTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001545 }
1546
1547 I = InsertValueInst::Create(Agg, Val,
1548 INSERTVALIdx.begin(), INSERTVALIdx.end());
1549 break;
1550 }
1551
Chris Lattnerabfbf852007-05-06 00:21:25 +00001552 case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001553 // obsolete form of select
1554 // handles select i1 ... in old bitcode
Chris Lattnerabfbf852007-05-06 00:21:25 +00001555 unsigned OpNum = 0;
1556 Value *TrueVal, *FalseVal, *Cond;
1557 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1558 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
Dan Gohmanbe919402008-09-09 02:08:49 +00001559 getValue(Record, OpNum, Type::Int1Ty, Cond))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001560 return Error("Invalid SELECT record");
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001561
1562 I = SelectInst::Create(Cond, TrueVal, FalseVal);
1563 break;
1564 }
1565
1566 case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
1567 // new form of select
1568 // handles select i1 or select [N x i1]
1569 unsigned OpNum = 0;
1570 Value *TrueVal, *FalseVal, *Cond;
1571 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1572 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
1573 getValueTypePair(Record, OpNum, NextValueNo, Cond))
1574 return Error("Invalid SELECT record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001575
1576 // select condition can be either i1 or [N x i1]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001577 if (const VectorType* vector_type =
1578 dyn_cast<const VectorType>(Cond->getType())) {
Dan Gohmanf72fb672008-09-09 01:02:47 +00001579 // expect <n x i1>
1580 if (vector_type->getElementType() != Type::Int1Ty)
1581 return Error("Invalid SELECT condition type");
1582 } else {
1583 // expect i1
1584 if (Cond->getType() != Type::Int1Ty)
1585 return Error("Invalid SELECT condition type");
1586 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001587
Gabor Greif051a9502008-04-06 20:25:17 +00001588 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001589 break;
1590 }
1591
1592 case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001593 unsigned OpNum = 0;
1594 Value *Vec, *Idx;
1595 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1596 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001597 return Error("Invalid EXTRACTELT record");
1598 I = new ExtractElementInst(Vec, Idx);
1599 break;
1600 }
1601
1602 case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001603 unsigned OpNum = 0;
1604 Value *Vec, *Elt, *Idx;
1605 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1606 getValue(Record, OpNum,
1607 cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
1608 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001609 return Error("Invalid INSERTELT record");
Gabor Greif051a9502008-04-06 20:25:17 +00001610 I = InsertElementInst::Create(Vec, Elt, Idx);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001611 break;
1612 }
1613
Chris Lattnerabfbf852007-05-06 00:21:25 +00001614 case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
1615 unsigned OpNum = 0;
1616 Value *Vec1, *Vec2, *Mask;
1617 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
1618 getValue(Record, OpNum, Vec1->getType(), Vec2))
1619 return Error("Invalid SHUFFLEVEC record");
1620
Mon P Wangaeb06d22008-11-10 04:46:22 +00001621 if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001622 return Error("Invalid SHUFFLEVEC record");
1623 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
1624 break;
1625 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00001626
Chris Lattner01ff65f2007-05-02 05:16:49 +00001627 case bitc::FUNC_CODE_INST_CMP: { // CMP: [opty, opval, opval, pred]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001628 // VFCmp/VICmp
1629 // or old form of ICmp/FCmp returning bool
Chris Lattner7337ab92007-05-06 00:00:00 +00001630 unsigned OpNum = 0;
1631 Value *LHS, *RHS;
1632 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1633 getValue(Record, OpNum, LHS->getType(), RHS) ||
1634 OpNum+1 != Record.size())
Chris Lattner01ff65f2007-05-02 05:16:49 +00001635 return Error("Invalid CMP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001636
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001637 if (LHS->getType()->isFloatingPoint())
Nate Begemanac80ade2008-05-12 19:01:56 +00001638 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001639 else if (!isa<VectorType>(LHS->getType()))
1640 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanac80ade2008-05-12 19:01:56 +00001641 else if (LHS->getType()->isFPOrFPVector())
1642 I = new VFCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1643 else
1644 I = new VICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001645 break;
1646 }
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001647 case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
1648 // Fcmp/ICmp returning bool or vector of bool
Dan Gohmanf72fb672008-09-09 01:02:47 +00001649 unsigned OpNum = 0;
1650 Value *LHS, *RHS;
1651 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1652 getValue(Record, OpNum, LHS->getType(), RHS) ||
1653 OpNum+1 != Record.size())
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001654 return Error("Invalid CMP2 record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001655
Dan Gohmanf72fb672008-09-09 01:02:47 +00001656 if (LHS->getType()->isFPOrFPVector())
1657 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1658 else
1659 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
1660 break;
1661 }
Devang Patel197be3d2008-02-22 02:49:49 +00001662 case bitc::FUNC_CODE_INST_GETRESULT: { // GETRESULT: [ty, val, n]
1663 if (Record.size() != 2)
1664 return Error("Invalid GETRESULT record");
1665 unsigned OpNum = 0;
1666 Value *Op;
1667 getValueTypePair(Record, OpNum, NextValueNo, Op);
1668 unsigned Index = Record[1];
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001669 I = ExtractValueInst::Create(Op, Index);
Devang Patel197be3d2008-02-22 02:49:49 +00001670 break;
1671 }
Chris Lattner01ff65f2007-05-02 05:16:49 +00001672
Chris Lattner231cbcb2007-05-02 04:27:25 +00001673 case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
Devang Pateld9d99ff2008-02-26 01:29:32 +00001674 {
1675 unsigned Size = Record.size();
1676 if (Size == 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001677 I = ReturnInst::Create();
Devang Pateld9d99ff2008-02-26 01:29:32 +00001678 break;
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001679 }
Devang Pateld9d99ff2008-02-26 01:29:32 +00001680
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001681 unsigned OpNum = 0;
1682 SmallVector<Value *,4> Vs;
1683 do {
1684 Value *Op = NULL;
1685 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1686 return Error("Invalid RET record");
1687 Vs.push_back(Op);
1688 } while(OpNum != Record.size());
1689
1690 const Type *ReturnType = F->getReturnType();
1691 if (Vs.size() > 1 ||
1692 (isa<StructType>(ReturnType) &&
1693 (Vs.empty() || Vs[0]->getType() != ReturnType))) {
1694 Value *RV = UndefValue::get(ReturnType);
1695 for (unsigned i = 0, e = Vs.size(); i != e; ++i) {
1696 I = InsertValueInst::Create(RV, Vs[i], i, "mrv");
1697 CurBB->getInstList().push_back(I);
1698 ValueList.AssignValue(I, NextValueNo++);
1699 RV = I;
1700 }
1701 I = ReturnInst::Create(RV);
Devang Pateld9d99ff2008-02-26 01:29:32 +00001702 break;
1703 }
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001704
1705 I = ReturnInst::Create(Vs[0]);
1706 break;
Chris Lattner231cbcb2007-05-02 04:27:25 +00001707 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001708 case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
Chris Lattnerf61e6452007-05-03 22:09:51 +00001709 if (Record.size() != 1 && Record.size() != 3)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001710 return Error("Invalid BR record");
1711 BasicBlock *TrueDest = getBasicBlock(Record[0]);
1712 if (TrueDest == 0)
1713 return Error("Invalid BR record");
1714
1715 if (Record.size() == 1)
Gabor Greif051a9502008-04-06 20:25:17 +00001716 I = BranchInst::Create(TrueDest);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001717 else {
1718 BasicBlock *FalseDest = getBasicBlock(Record[1]);
1719 Value *Cond = getFnValueByID(Record[2], Type::Int1Ty);
1720 if (FalseDest == 0 || Cond == 0)
1721 return Error("Invalid BR record");
Gabor Greif051a9502008-04-06 20:25:17 +00001722 I = BranchInst::Create(TrueDest, FalseDest, Cond);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001723 }
1724 break;
1725 }
1726 case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, opval, n, n x ops]
1727 if (Record.size() < 3 || (Record.size() & 1) == 0)
1728 return Error("Invalid SWITCH record");
1729 const Type *OpTy = getTypeByID(Record[0]);
1730 Value *Cond = getFnValueByID(Record[1], OpTy);
1731 BasicBlock *Default = getBasicBlock(Record[2]);
1732 if (OpTy == 0 || Cond == 0 || Default == 0)
1733 return Error("Invalid SWITCH record");
1734 unsigned NumCases = (Record.size()-3)/2;
Gabor Greif051a9502008-04-06 20:25:17 +00001735 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001736 for (unsigned i = 0, e = NumCases; i != e; ++i) {
1737 ConstantInt *CaseVal =
1738 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
1739 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
1740 if (CaseVal == 0 || DestBB == 0) {
1741 delete SI;
1742 return Error("Invalid SWITCH record!");
1743 }
1744 SI->addCase(CaseVal, DestBB);
1745 }
1746 I = SI;
1747 break;
1748 }
1749
Duncan Sandsdc024672007-11-27 13:23:08 +00001750 case bitc::FUNC_CODE_INST_INVOKE: {
1751 // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
Chris Lattnera9bb7132007-05-08 05:38:01 +00001752 if (Record.size() < 4) return Error("Invalid INVOKE record");
Devang Patel05988662008-09-25 21:00:45 +00001753 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001754 unsigned CCInfo = Record[1];
1755 BasicBlock *NormalBB = getBasicBlock(Record[2]);
1756 BasicBlock *UnwindBB = getBasicBlock(Record[3]);
Chris Lattner7337ab92007-05-06 00:00:00 +00001757
Chris Lattnera9bb7132007-05-08 05:38:01 +00001758 unsigned OpNum = 4;
Chris Lattner7337ab92007-05-06 00:00:00 +00001759 Value *Callee;
1760 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001761 return Error("Invalid INVOKE record");
1762
Chris Lattner7337ab92007-05-06 00:00:00 +00001763 const PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
1764 const FunctionType *FTy = !CalleeTy ? 0 :
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001765 dyn_cast<FunctionType>(CalleeTy->getElementType());
1766
1767 // Check that the right number of fixed parameters are here.
Chris Lattner7337ab92007-05-06 00:00:00 +00001768 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
1769 Record.size() < OpNum+FTy->getNumParams())
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001770 return Error("Invalid INVOKE record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001771
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001772 SmallVector<Value*, 16> Ops;
Chris Lattner7337ab92007-05-06 00:00:00 +00001773 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
1774 Ops.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
1775 if (Ops.back() == 0) return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001776 }
1777
Chris Lattner7337ab92007-05-06 00:00:00 +00001778 if (!FTy->isVarArg()) {
1779 if (Record.size() != OpNum)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001780 return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001781 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001782 // Read type/value pairs for varargs params.
1783 while (OpNum != Record.size()) {
1784 Value *Op;
1785 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1786 return Error("Invalid INVOKE record");
1787 Ops.push_back(Op);
1788 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001789 }
1790
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001791 I = InvokeInst::Create(Callee, NormalBB, UnwindBB,
1792 Ops.begin(), Ops.end());
Chris Lattner76520192007-05-03 22:34:03 +00001793 cast<InvokeInst>(I)->setCallingConv(CCInfo);
Devang Patel05988662008-09-25 21:00:45 +00001794 cast<InvokeInst>(I)->setAttributes(PAL);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001795 break;
1796 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001797 case bitc::FUNC_CODE_INST_UNWIND: // UNWIND
1798 I = new UnwindInst();
1799 break;
1800 case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
1801 I = new UnreachableInst();
1802 break;
Chris Lattnerabfbf852007-05-06 00:21:25 +00001803 case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
Chris Lattner15e6d172007-05-04 19:11:41 +00001804 if (Record.size() < 1 || ((Record.size()-1)&1))
Chris Lattner2a98cca2007-05-03 18:58:09 +00001805 return Error("Invalid PHI record");
1806 const Type *Ty = getTypeByID(Record[0]);
1807 if (!Ty) return Error("Invalid PHI record");
1808
Gabor Greif051a9502008-04-06 20:25:17 +00001809 PHINode *PN = PHINode::Create(Ty);
Chris Lattner86941612008-04-13 00:14:42 +00001810 PN->reserveOperandSpace((Record.size()-1)/2);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001811
Chris Lattner15e6d172007-05-04 19:11:41 +00001812 for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
1813 Value *V = getFnValueByID(Record[1+i], Ty);
1814 BasicBlock *BB = getBasicBlock(Record[2+i]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001815 if (!V || !BB) return Error("Invalid PHI record");
1816 PN->addIncoming(V, BB);
1817 }
1818 I = PN;
1819 break;
1820 }
1821
1822 case bitc::FUNC_CODE_INST_MALLOC: { // MALLOC: [instty, op, align]
1823 if (Record.size() < 3)
1824 return Error("Invalid MALLOC record");
1825 const PointerType *Ty =
1826 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1827 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1828 unsigned Align = Record[2];
1829 if (!Ty || !Size) return Error("Invalid MALLOC record");
1830 I = new MallocInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1831 break;
1832 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001833 case bitc::FUNC_CODE_INST_FREE: { // FREE: [op, opty]
1834 unsigned OpNum = 0;
1835 Value *Op;
1836 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1837 OpNum != Record.size())
Chris Lattner2a98cca2007-05-03 18:58:09 +00001838 return Error("Invalid FREE record");
1839 I = new FreeInst(Op);
1840 break;
1841 }
1842 case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, op, align]
1843 if (Record.size() < 3)
1844 return Error("Invalid ALLOCA record");
1845 const PointerType *Ty =
1846 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1847 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1848 unsigned Align = Record[2];
1849 if (!Ty || !Size) return Error("Invalid ALLOCA record");
1850 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1851 break;
1852 }
Chris Lattner0579f7f2007-05-03 22:04:19 +00001853 case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
Chris Lattner7337ab92007-05-06 00:00:00 +00001854 unsigned OpNum = 0;
1855 Value *Op;
1856 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1857 OpNum+2 != Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00001858 return Error("Invalid LOAD record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001859
1860 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001861 break;
Chris Lattner0579f7f2007-05-03 22:04:19 +00001862 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001863 case bitc::FUNC_CODE_INST_STORE2: { // STORE2:[ptrty, ptr, val, align, vol]
1864 unsigned OpNum = 0;
1865 Value *Val, *Ptr;
1866 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
1867 getValue(Record, OpNum,
1868 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
1869 OpNum+2 != Record.size())
1870 return Error("Invalid STORE record");
1871
1872 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
1873 break;
1874 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001875 case bitc::FUNC_CODE_INST_STORE: { // STORE:[val, valty, ptr, align, vol]
Christopher Lambfe63fb92007-12-11 08:59:05 +00001876 // FIXME: Legacy form of store instruction. Should be removed in LLVM 3.0.
Chris Lattnerabfbf852007-05-06 00:21:25 +00001877 unsigned OpNum = 0;
1878 Value *Val, *Ptr;
1879 if (getValueTypePair(Record, OpNum, NextValueNo, Val) ||
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001880 getValue(Record, OpNum, PointerType::getUnqual(Val->getType()), Ptr)||
Chris Lattnerabfbf852007-05-06 00:21:25 +00001881 OpNum+2 != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001882 return Error("Invalid STORE record");
Chris Lattnerabfbf852007-05-06 00:21:25 +00001883
1884 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001885 break;
1886 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001887 case bitc::FUNC_CODE_INST_CALL: {
1888 // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
1889 if (Record.size() < 3)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001890 return Error("Invalid CALL record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001891
Devang Patel05988662008-09-25 21:00:45 +00001892 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001893 unsigned CCInfo = Record[1];
1894
1895 unsigned OpNum = 2;
Chris Lattner7337ab92007-05-06 00:00:00 +00001896 Value *Callee;
1897 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
1898 return Error("Invalid CALL record");
1899
1900 const PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
Chris Lattner0579f7f2007-05-03 22:04:19 +00001901 const FunctionType *FTy = 0;
1902 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
Chris Lattner7337ab92007-05-06 00:00:00 +00001903 if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001904 return Error("Invalid CALL record");
1905
1906 SmallVector<Value*, 16> Args;
1907 // Read the fixed params.
Chris Lattner7337ab92007-05-06 00:00:00 +00001908 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001909 if (FTy->getParamType(i)->getTypeID()==Type::LabelTyID)
1910 Args.push_back(getBasicBlock(Record[OpNum]));
1911 else
1912 Args.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
Chris Lattner0579f7f2007-05-03 22:04:19 +00001913 if (Args.back() == 0) return Error("Invalid CALL record");
1914 }
1915
Chris Lattner0579f7f2007-05-03 22:04:19 +00001916 // Read type/value pairs for varargs params.
Chris Lattner0579f7f2007-05-03 22:04:19 +00001917 if (!FTy->isVarArg()) {
Chris Lattner7337ab92007-05-06 00:00:00 +00001918 if (OpNum != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001919 return Error("Invalid CALL record");
1920 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001921 while (OpNum != Record.size()) {
1922 Value *Op;
1923 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1924 return Error("Invalid CALL record");
1925 Args.push_back(Op);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001926 }
1927 }
1928
Gabor Greif051a9502008-04-06 20:25:17 +00001929 I = CallInst::Create(Callee, Args.begin(), Args.end());
Chris Lattner76520192007-05-03 22:34:03 +00001930 cast<CallInst>(I)->setCallingConv(CCInfo>>1);
1931 cast<CallInst>(I)->setTailCall(CCInfo & 1);
Devang Patel05988662008-09-25 21:00:45 +00001932 cast<CallInst>(I)->setAttributes(PAL);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001933 break;
1934 }
1935 case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
1936 if (Record.size() < 3)
1937 return Error("Invalid VAARG record");
1938 const Type *OpTy = getTypeByID(Record[0]);
1939 Value *Op = getFnValueByID(Record[1], OpTy);
1940 const Type *ResTy = getTypeByID(Record[2]);
1941 if (!OpTy || !Op || !ResTy)
1942 return Error("Invalid VAARG record");
1943 I = new VAArgInst(Op, ResTy);
1944 break;
1945 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001946 }
1947
1948 // Add instruction to end of current BB. If there is no current BB, reject
1949 // this file.
1950 if (CurBB == 0) {
1951 delete I;
1952 return Error("Invalid instruction with no BB");
1953 }
1954 CurBB->getInstList().push_back(I);
1955
1956 // If this was a terminator instruction, move to the next block.
1957 if (isa<TerminatorInst>(I)) {
1958 ++CurBBNo;
1959 CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : 0;
1960 }
1961
1962 // Non-void values get registered in the value table for future use.
1963 if (I && I->getType() != Type::VoidTy)
1964 ValueList.AssignValue(I, NextValueNo++);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001965 }
1966
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001967 // Check the function list for unresolved values.
1968 if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
1969 if (A->getParent() == 0) {
1970 // We found at least one unresolved value. Nuke them all to avoid leaks.
1971 for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
1972 if ((A = dyn_cast<Argument>(ValueList.back())) && A->getParent() == 0) {
1973 A->replaceAllUsesWith(UndefValue::get(A->getType()));
1974 delete A;
1975 }
1976 }
Chris Lattner35a04702007-05-04 03:50:29 +00001977 return Error("Never resolved value found in function!");
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001978 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001979 }
Chris Lattner980e5aa2007-05-01 05:52:21 +00001980
1981 // Trim the value list down to the size it was before we parsed this function.
1982 ValueList.shrinkTo(ModuleValueListSize);
1983 std::vector<BasicBlock*>().swap(FunctionBBs);
1984
Chris Lattner48f84872007-05-01 04:59:48 +00001985 return false;
1986}
1987
Chris Lattnerb348bb82007-05-18 04:02:46 +00001988//===----------------------------------------------------------------------===//
1989// ModuleProvider implementation
1990//===----------------------------------------------------------------------===//
1991
1992
1993bool BitcodeReader::materializeFunction(Function *F, std::string *ErrInfo) {
1994 // If it already is material, ignore the request.
Gabor Greifa99be512007-07-05 17:07:56 +00001995 if (!F->hasNotBeenReadFromBitcode()) return false;
Chris Lattnerb348bb82007-05-18 04:02:46 +00001996
1997 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator DFII =
1998 DeferredFunctionInfo.find(F);
1999 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
2000
2001 // Move the bit stream to the saved position of the deferred function body and
2002 // restore the real linkage type for the function.
2003 Stream.JumpToBit(DFII->second.first);
2004 F->setLinkage((GlobalValue::LinkageTypes)DFII->second.second);
2005
2006 if (ParseFunctionBody(F)) {
2007 if (ErrInfo) *ErrInfo = ErrorString;
2008 return true;
2009 }
Chandler Carruth69940402007-08-04 01:51:18 +00002010
2011 // Upgrade any old intrinsic calls in the function.
2012 for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
2013 E = UpgradedIntrinsics.end(); I != E; ++I) {
2014 if (I->first != I->second) {
2015 for (Value::use_iterator UI = I->first->use_begin(),
2016 UE = I->first->use_end(); UI != UE; ) {
2017 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2018 UpgradeIntrinsicCall(CI, I->second);
2019 }
2020 }
2021 }
Chris Lattnerb348bb82007-05-18 04:02:46 +00002022
2023 return false;
2024}
2025
2026void BitcodeReader::dematerializeFunction(Function *F) {
2027 // If this function isn't materialized, or if it is a proto, this is a noop.
Gabor Greifa99be512007-07-05 17:07:56 +00002028 if (F->hasNotBeenReadFromBitcode() || F->isDeclaration())
Chris Lattnerb348bb82007-05-18 04:02:46 +00002029 return;
2030
2031 assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
2032
2033 // Just forget the function body, we can remat it later.
2034 F->deleteBody();
2035 F->setLinkage(GlobalValue::GhostLinkage);
2036}
2037
2038
2039Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
2040 for (DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator I =
2041 DeferredFunctionInfo.begin(), E = DeferredFunctionInfo.end(); I != E;
2042 ++I) {
2043 Function *F = I->first;
Gabor Greifa99be512007-07-05 17:07:56 +00002044 if (F->hasNotBeenReadFromBitcode() &&
Chris Lattnerb348bb82007-05-18 04:02:46 +00002045 materializeFunction(F, ErrInfo))
2046 return 0;
2047 }
Chandler Carruth69940402007-08-04 01:51:18 +00002048
2049 // Upgrade any intrinsic calls that slipped through (should not happen!) and
2050 // delete the old functions to clean up. We can't do this unless the entire
2051 // module is materialized because there could always be another function body
2052 // with calls to the old function.
2053 for (std::vector<std::pair<Function*, Function*> >::iterator I =
2054 UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
2055 if (I->first != I->second) {
2056 for (Value::use_iterator UI = I->first->use_begin(),
2057 UE = I->first->use_end(); UI != UE; ) {
2058 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2059 UpgradeIntrinsicCall(CI, I->second);
2060 }
Chris Lattner7d9eb582009-04-01 01:43:03 +00002061 if (!I->first->use_empty())
2062 I->first->replaceAllUsesWith(I->second);
Chandler Carruth69940402007-08-04 01:51:18 +00002063 I->first->eraseFromParent();
2064 }
2065 }
2066 std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
2067
Chris Lattnerb348bb82007-05-18 04:02:46 +00002068 return TheModule;
2069}
2070
2071
2072/// This method is provided by the parent ModuleProvde class and overriden
2073/// here. It simply releases the module from its provided and frees up our
2074/// state.
2075/// @brief Release our hold on the generated module
2076Module *BitcodeReader::releaseModule(std::string *ErrInfo) {
2077 // Since we're losing control of this Module, we must hand it back complete
2078 Module *M = ModuleProvider::releaseModule(ErrInfo);
2079 FreeState();
2080 return M;
2081}
2082
Chris Lattner48f84872007-05-01 04:59:48 +00002083
Chris Lattnerc453f762007-04-29 07:54:31 +00002084//===----------------------------------------------------------------------===//
2085// External interface
2086//===----------------------------------------------------------------------===//
2087
2088/// getBitcodeModuleProvider - lazy function-at-a-time loading from a file.
2089///
2090ModuleProvider *llvm::getBitcodeModuleProvider(MemoryBuffer *Buffer,
2091 std::string *ErrMsg) {
2092 BitcodeReader *R = new BitcodeReader(Buffer);
2093 if (R->ParseBitcode()) {
2094 if (ErrMsg)
2095 *ErrMsg = R->getErrorString();
2096
2097 // Don't let the BitcodeReader dtor delete 'Buffer'.
2098 R->releaseMemoryBuffer();
2099 delete R;
2100 return 0;
2101 }
2102 return R;
2103}
2104
2105/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
2106/// If an error occurs, return null and fill in *ErrMsg if non-null.
2107Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, std::string *ErrMsg){
2108 BitcodeReader *R;
2109 R = static_cast<BitcodeReader*>(getBitcodeModuleProvider(Buffer, ErrMsg));
2110 if (!R) return 0;
2111
Chris Lattnerb348bb82007-05-18 04:02:46 +00002112 // Read in the entire module.
2113 Module *M = R->materializeModule(ErrMsg);
2114
2115 // Don't let the BitcodeReader dtor delete 'Buffer', regardless of whether
2116 // there was an error.
Chris Lattnerc453f762007-04-29 07:54:31 +00002117 R->releaseMemoryBuffer();
Chris Lattnerb348bb82007-05-18 04:02:46 +00002118
2119 // If there was no error, tell ModuleProvider not to delete it when its dtor
2120 // is run.
2121 if (M)
2122 M = R->releaseModule(ErrMsg);
2123
Chris Lattnerc453f762007-04-29 07:54:31 +00002124 delete R;
2125 return M;
2126}