blob: 23fbe1d35fbc008148292ef8e08ee4f75e8e3892 [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"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000020#include "llvm/Module.h"
Chandler Carruth69940402007-08-04 01:51:18 +000021#include "llvm/AutoUpgrade.h"
Chris Lattner0b2482a2007-04-23 21:26:05 +000022#include "llvm/ADT/SmallString.h"
Devang Patelf4511cd2008-02-26 19:38:17 +000023#include "llvm/ADT/SmallVector.h"
Chris Lattner0eef0802007-04-24 04:04:35 +000024#include "llvm/Support/MathExtras.h"
Chris Lattnerc453f762007-04-29 07:54:31 +000025#include "llvm/Support/MemoryBuffer.h"
Gabor Greifefe65362008-05-10 08:32:32 +000026#include "llvm/OperandTraits.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000027using namespace llvm;
28
Chris Lattnerb348bb82007-05-18 04:02:46 +000029void BitcodeReader::FreeState() {
Chris Lattnerc453f762007-04-29 07:54:31 +000030 delete Buffer;
Chris Lattnerb348bb82007-05-18 04:02:46 +000031 Buffer = 0;
32 std::vector<PATypeHolder>().swap(TypeList);
33 ValueList.clear();
Chris Lattner461edd92008-03-12 02:25:52 +000034
Devang Patel19c87462008-09-26 22:53:05 +000035 std::vector<AttrListPtr>().swap(MAttributes);
Chris Lattnerb348bb82007-05-18 04:02:46 +000036 std::vector<BasicBlock*>().swap(FunctionBBs);
37 std::vector<Function*>().swap(FunctionsWithBodies);
38 DeferredFunctionInfo.clear();
Chris Lattnerc453f762007-04-29 07:54:31 +000039}
40
Chris Lattner48c85b82007-05-04 03:30:17 +000041//===----------------------------------------------------------------------===//
42// Helper functions to implement forward reference resolution, etc.
43//===----------------------------------------------------------------------===//
Chris Lattnerc453f762007-04-29 07:54:31 +000044
Chris Lattnercaee0dc2007-04-22 06:23:29 +000045/// ConvertToString - Convert a string from a record into an std::string, return
46/// true on failure.
Chris Lattner0b2482a2007-04-23 21:26:05 +000047template<typename StrTy>
Chris Lattnercaee0dc2007-04-22 06:23:29 +000048static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
Chris Lattner0b2482a2007-04-23 21:26:05 +000049 StrTy &Result) {
Chris Lattner15e6d172007-05-04 19:11:41 +000050 if (Idx > Record.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +000051 return true;
52
Chris Lattner15e6d172007-05-04 19:11:41 +000053 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
54 Result += (char)Record[i];
Chris Lattnercaee0dc2007-04-22 06:23:29 +000055 return false;
56}
57
58static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
59 switch (Val) {
60 default: // Map unknown/new linkages to external
61 case 0: return GlobalValue::ExternalLinkage;
62 case 1: return GlobalValue::WeakLinkage;
63 case 2: return GlobalValue::AppendingLinkage;
64 case 3: return GlobalValue::InternalLinkage;
65 case 4: return GlobalValue::LinkOnceLinkage;
66 case 5: return GlobalValue::DLLImportLinkage;
67 case 6: return GlobalValue::DLLExportLinkage;
68 case 7: return GlobalValue::ExternalWeakLinkage;
Dale Johannesenaafce772008-05-14 20:12:51 +000069 case 8: return GlobalValue::CommonLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000070 }
71}
72
73static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
74 switch (Val) {
75 default: // Map unknown visibilities to default.
76 case 0: return GlobalValue::DefaultVisibility;
77 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +000078 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000079 }
80}
81
Chris Lattnerf581c3b2007-04-24 07:07:11 +000082static int GetDecodedCastOpcode(unsigned Val) {
83 switch (Val) {
84 default: return -1;
85 case bitc::CAST_TRUNC : return Instruction::Trunc;
86 case bitc::CAST_ZEXT : return Instruction::ZExt;
87 case bitc::CAST_SEXT : return Instruction::SExt;
88 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
89 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
90 case bitc::CAST_UITOFP : return Instruction::UIToFP;
91 case bitc::CAST_SITOFP : return Instruction::SIToFP;
92 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
93 case bitc::CAST_FPEXT : return Instruction::FPExt;
94 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
95 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
96 case bitc::CAST_BITCAST : return Instruction::BitCast;
97 }
98}
99static int GetDecodedBinaryOpcode(unsigned Val, const Type *Ty) {
100 switch (Val) {
101 default: return -1;
102 case bitc::BINOP_ADD: return Instruction::Add;
103 case bitc::BINOP_SUB: return Instruction::Sub;
104 case bitc::BINOP_MUL: return Instruction::Mul;
105 case bitc::BINOP_UDIV: return Instruction::UDiv;
106 case bitc::BINOP_SDIV:
107 return Ty->isFPOrFPVector() ? Instruction::FDiv : Instruction::SDiv;
108 case bitc::BINOP_UREM: return Instruction::URem;
109 case bitc::BINOP_SREM:
110 return Ty->isFPOrFPVector() ? Instruction::FRem : Instruction::SRem;
111 case bitc::BINOP_SHL: return Instruction::Shl;
112 case bitc::BINOP_LSHR: return Instruction::LShr;
113 case bitc::BINOP_ASHR: return Instruction::AShr;
114 case bitc::BINOP_AND: return Instruction::And;
115 case bitc::BINOP_OR: return Instruction::Or;
116 case bitc::BINOP_XOR: return Instruction::Xor;
117 }
118}
119
Gabor Greifefe65362008-05-10 08:32:32 +0000120namespace llvm {
Chris Lattner522b7b12007-04-24 05:48:56 +0000121namespace {
122 /// @brief A class for maintaining the slot number definition
123 /// as a placeholder for the actual definition for forward constants defs.
124 class ConstantPlaceHolder : public ConstantExpr {
125 ConstantPlaceHolder(); // DO NOT IMPLEMENT
126 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Gabor Greif051a9502008-04-06 20:25:17 +0000127 public:
128 // allocate space for exactly one operand
129 void *operator new(size_t s) {
130 return User::operator new(s, 1);
131 }
Dan Gohmanadf3eab2007-11-19 15:30:20 +0000132 explicit ConstantPlaceHolder(const Type *Ty)
Gabor Greifefe65362008-05-10 08:32:32 +0000133 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
134 Op<0>() = UndefValue::get(Type::Int32Ty);
Chris Lattner522b7b12007-04-24 05:48:56 +0000135 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000136
137 /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
138 static inline bool classof(const ConstantPlaceHolder *) { return true; }
139 static bool classof(const Value *V) {
140 return isa<ConstantExpr>(V) &&
141 cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
142 }
143
144
Gabor Greifefe65362008-05-10 08:32:32 +0000145 /// Provide fast operand accessors
146 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner522b7b12007-04-24 05:48:56 +0000147 };
148}
149
Gabor Greifefe65362008-05-10 08:32:32 +0000150
151 // FIXME: can we inherit this from ConstantExpr?
152template <>
153struct OperandTraits<ConstantPlaceHolder> : FixedNumOperandTraits<1> {
154};
155
156DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantPlaceHolder, Value)
157}
158
159void BitcodeReaderValueList::resize(unsigned Desired) {
160 if (Desired > Capacity) {
161 // Since we expect many values to come from the bitcode file we better
162 // allocate the double amount, so that the array size grows exponentially
163 // at each reallocation. Also, add a small amount of 100 extra elements
164 // each time, to reallocate less frequently when the array is still small.
165 //
166 Capacity = Desired * 2 + 100;
167 Use *New = allocHungoffUses(Capacity);
168 Use *Old = OperandList;
169 unsigned Ops = getNumOperands();
170 for (int i(Ops - 1); i >= 0; --i)
171 New[i] = Old[i].get();
172 OperandList = New;
173 if (Old) Use::zap(Old, Old + Ops, true);
174 }
175}
176
Chris Lattner522b7b12007-04-24 05:48:56 +0000177Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
178 const Type *Ty) {
179 if (Idx >= size()) {
180 // Insert a bunch of null values.
Gabor Greifefe65362008-05-10 08:32:32 +0000181 resize(Idx + 1);
Chris Lattner522b7b12007-04-24 05:48:56 +0000182 NumOperands = Idx+1;
183 }
184
Gabor Greifefe65362008-05-10 08:32:32 +0000185 if (Value *V = OperandList[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000186 assert(Ty == V->getType() && "Type mismatch in constant table!");
187 return cast<Constant>(V);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000188 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000189
190 // Create and return a placeholder, which will later be RAUW'd.
191 Constant *C = new ConstantPlaceHolder(Ty);
Gabor Greif6c80c382008-05-26 21:33:52 +0000192 OperandList[Idx] = C;
Chris Lattner522b7b12007-04-24 05:48:56 +0000193 return C;
194}
195
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000196Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, const Type *Ty) {
197 if (Idx >= size()) {
198 // Insert a bunch of null values.
Gabor Greifefe65362008-05-10 08:32:32 +0000199 resize(Idx + 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000200 NumOperands = Idx+1;
201 }
202
Gabor Greifefe65362008-05-10 08:32:32 +0000203 if (Value *V = OperandList[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000204 assert((Ty == 0 || Ty == V->getType()) && "Type mismatch in value table!");
205 return V;
206 }
207
Chris Lattner01ff65f2007-05-02 05:16:49 +0000208 // No type specified, must be invalid reference.
209 if (Ty == 0) return 0;
210
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000211 // Create and return a placeholder, which will later be RAUW'd.
212 Value *V = new Argument(Ty);
Gabor Greif6c80c382008-05-26 21:33:52 +0000213 OperandList[Idx] = V;
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000214 return V;
215}
216
Chris Lattnerea693df2008-08-21 02:34:16 +0000217/// ResolveConstantForwardRefs - Once all constants are read, this method bulk
218/// resolves any forward references. The idea behind this is that we sometimes
219/// get constants (such as large arrays) which reference *many* forward ref
220/// constants. Replacing each of these causes a lot of thrashing when
221/// building/reuniquing the constant. Instead of doing this, we look at all the
222/// uses and rewrite all the place holders at once for any constant that uses
223/// a placeholder.
224void BitcodeReaderValueList::ResolveConstantForwardRefs() {
225 // Sort the values by-pointer so that they are efficient to look up with a
226 // binary search.
227 std::sort(ResolveConstants.begin(), ResolveConstants.end());
228
229 SmallVector<Constant*, 64> NewOps;
230
231 while (!ResolveConstants.empty()) {
232 Value *RealVal = getOperand(ResolveConstants.back().second);
233 Constant *Placeholder = ResolveConstants.back().first;
234 ResolveConstants.pop_back();
235
236 // Loop over all users of the placeholder, updating them to reference the
237 // new value. If they reference more than one placeholder, update them all
238 // at once.
239 while (!Placeholder->use_empty()) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000240 Value::use_iterator UI = Placeholder->use_begin();
241
Chris Lattnerea693df2008-08-21 02:34:16 +0000242 // If the using object isn't uniqued, just update the operands. This
243 // handles instructions and initializers for global variables.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000244 if (!isa<Constant>(*UI) || isa<GlobalValue>(*UI)) {
245 UI.getUse().set(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000246 continue;
247 }
248
249 // Otherwise, we have a constant that uses the placeholder. Replace that
250 // constant with a new constant that has *all* placeholder uses updated.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000251 Constant *UserC = cast<Constant>(*UI);
Chris Lattnerea693df2008-08-21 02:34:16 +0000252 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
253 I != E; ++I) {
254 Value *NewOp;
255 if (!isa<ConstantPlaceHolder>(*I)) {
256 // Not a placeholder reference.
257 NewOp = *I;
258 } else if (*I == Placeholder) {
259 // Common case is that it just references this one placeholder.
260 NewOp = RealVal;
261 } else {
262 // Otherwise, look up the placeholder in ResolveConstants.
263 ResolveConstantsTy::iterator It =
264 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
265 std::pair<Constant*, unsigned>(cast<Constant>(*I),
266 0));
267 assert(It != ResolveConstants.end() && It->first == *I);
268 NewOp = this->getOperand(It->second);
269 }
270
271 NewOps.push_back(cast<Constant>(NewOp));
272 }
273
274 // Make the new constant.
275 Constant *NewC;
276 if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
277 NewC = ConstantArray::get(UserCA->getType(), &NewOps[0], NewOps.size());
278 } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
279 NewC = ConstantStruct::get(&NewOps[0], NewOps.size(),
280 UserCS->getType()->isPacked());
281 } else if (isa<ConstantVector>(UserC)) {
282 NewC = ConstantVector::get(&NewOps[0], NewOps.size());
283 } else {
284 // Must be a constant expression.
285 NewC = cast<ConstantExpr>(UserC)->getWithOperands(&NewOps[0],
286 NewOps.size());
287 }
288
289 UserC->replaceAllUsesWith(NewC);
290 UserC->destroyConstant();
291 NewOps.clear();
292 }
293
294 delete Placeholder;
295 }
296}
297
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000298
299const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
300 // If the TypeID is in range, return it.
301 if (ID < TypeList.size())
302 return TypeList[ID].get();
303 if (!isTypeTable) return 0;
304
305 // The type table allows forward references. Push as many Opaque types as
306 // needed to get up to ID.
307 while (TypeList.size() <= ID)
308 TypeList.push_back(OpaqueType::get());
309 return TypeList.back().get();
310}
311
Chris Lattner48c85b82007-05-04 03:30:17 +0000312//===----------------------------------------------------------------------===//
313// Functions for parsing blocks from the bitcode file
314//===----------------------------------------------------------------------===//
315
Devang Patel05988662008-09-25 21:00:45 +0000316bool BitcodeReader::ParseAttributeBlock() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000317 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
Chris Lattner48c85b82007-05-04 03:30:17 +0000318 return Error("Malformed block record");
319
Devang Patel19c87462008-09-26 22:53:05 +0000320 if (!MAttributes.empty())
Chris Lattner48c85b82007-05-04 03:30:17 +0000321 return Error("Multiple PARAMATTR blocks found!");
322
323 SmallVector<uint64_t, 64> Record;
324
Devang Patel05988662008-09-25 21:00:45 +0000325 SmallVector<AttributeWithIndex, 8> Attrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000326
327 // Read all the records.
328 while (1) {
329 unsigned Code = Stream.ReadCode();
330 if (Code == bitc::END_BLOCK) {
331 if (Stream.ReadBlockEnd())
332 return Error("Error at end of PARAMATTR block");
333 return false;
334 }
335
336 if (Code == bitc::ENTER_SUBBLOCK) {
337 // No known subblocks, always skip them.
338 Stream.ReadSubBlockID();
339 if (Stream.SkipBlock())
340 return Error("Malformed block record");
341 continue;
342 }
343
344 if (Code == bitc::DEFINE_ABBREV) {
345 Stream.ReadAbbrevRecord();
346 continue;
347 }
348
349 // Read a record.
350 Record.clear();
351 switch (Stream.ReadRecord(Code, Record)) {
352 default: // Default behavior: ignore.
353 break;
354 case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [paramidx0, attr0, ...]
355 if (Record.size() & 1)
356 return Error("Invalid ENTRY record");
357
Devang Patel19c87462008-09-26 22:53:05 +0000358 // FIXME : Remove this backword compatibility one day.
359 // If Function attributes are using index 0 then transfer them
360 // to index ~0. Index 0 is strictly used for return value
361 // attributes.
362 Attributes RetAttribute = Attribute::None;
363 Attributes FnAttribute = Attribute::None;
Chris Lattner48c85b82007-05-04 03:30:17 +0000364 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Devang Patel19c87462008-09-26 22:53:05 +0000365 if (Record[i] == 0)
366 RetAttribute = Record[i+1];
367 else if (Record[i] == ~0U)
368 FnAttribute = Record[i+1];
369 }
370 bool useUpdatedAttrs = false;
371 if (FnAttribute == Attribute::None && RetAttribute != Attribute::None) {
372 if (RetAttribute & Attribute::NoUnwind) {
373 FnAttribute = FnAttribute | Attribute::NoUnwind;
374 RetAttribute = RetAttribute ^ Attribute::NoUnwind;
375 useUpdatedAttrs = true;
376 }
377 if (RetAttribute & Attribute::NoReturn) {
378 FnAttribute = FnAttribute | Attribute::NoReturn;
379 RetAttribute = RetAttribute ^ Attribute::NoReturn;
380 useUpdatedAttrs = true;
381 }
382 if (RetAttribute & Attribute::ReadOnly) {
383 FnAttribute = FnAttribute | Attribute::ReadOnly;
384 RetAttribute = RetAttribute ^ Attribute::ReadOnly;
385 useUpdatedAttrs = true;
386 }
387 if (RetAttribute & Attribute::ReadNone) {
388 FnAttribute = FnAttribute | Attribute::ReadNone;
389 RetAttribute = RetAttribute ^ Attribute::ReadNone;
390 useUpdatedAttrs = true;
391 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000392 }
Chris Lattner461edd92008-03-12 02:25:52 +0000393
Devang Patel19c87462008-09-26 22:53:05 +0000394 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
395 if (useUpdatedAttrs && Record[i] == 0
396 && RetAttribute != Attribute::None)
397 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
398 else if (Record[i+1] != Attribute::None)
399 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1]));
400 }
401 if (useUpdatedAttrs && FnAttribute != Attribute::None)
402 Attrs.push_back(AttributeWithIndex::get(~0, FnAttribute));
403
404 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
Chris Lattner48c85b82007-05-04 03:30:17 +0000405 Attrs.clear();
406 break;
407 }
Duncan Sands5e41f652007-11-20 14:09:29 +0000408 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000409 }
410}
411
412
Chris Lattner86697142007-05-01 05:01:34 +0000413bool BitcodeReader::ParseTypeTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000414 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000415 return Error("Malformed block record");
416
417 if (!TypeList.empty())
418 return Error("Multiple TYPE_BLOCKs found!");
419
420 SmallVector<uint64_t, 64> Record;
421 unsigned NumRecords = 0;
422
423 // Read all the records for this type table.
424 while (1) {
425 unsigned Code = Stream.ReadCode();
426 if (Code == bitc::END_BLOCK) {
427 if (NumRecords != TypeList.size())
428 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000429 if (Stream.ReadBlockEnd())
430 return Error("Error at end of type table block");
431 return false;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000432 }
433
434 if (Code == bitc::ENTER_SUBBLOCK) {
435 // No known subblocks, always skip them.
436 Stream.ReadSubBlockID();
437 if (Stream.SkipBlock())
438 return Error("Malformed block record");
439 continue;
440 }
441
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000442 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000443 Stream.ReadAbbrevRecord();
444 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000445 }
446
447 // Read a record.
448 Record.clear();
449 const Type *ResultTy = 0;
450 switch (Stream.ReadRecord(Code, Record)) {
451 default: // Default behavior: unknown type.
452 ResultTy = 0;
453 break;
454 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
455 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
456 // type list. This allows us to reserve space.
457 if (Record.size() < 1)
458 return Error("Invalid TYPE_CODE_NUMENTRY record");
459 TypeList.reserve(Record[0]);
460 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000461 case bitc::TYPE_CODE_VOID: // VOID
462 ResultTy = Type::VoidTy;
463 break;
464 case bitc::TYPE_CODE_FLOAT: // FLOAT
465 ResultTy = Type::FloatTy;
466 break;
467 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
468 ResultTy = Type::DoubleTy;
469 break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000470 case bitc::TYPE_CODE_X86_FP80: // X86_FP80
471 ResultTy = Type::X86_FP80Ty;
472 break;
473 case bitc::TYPE_CODE_FP128: // FP128
474 ResultTy = Type::FP128Ty;
475 break;
476 case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
477 ResultTy = Type::PPC_FP128Ty;
478 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000479 case bitc::TYPE_CODE_LABEL: // LABEL
480 ResultTy = Type::LabelTy;
481 break;
482 case bitc::TYPE_CODE_OPAQUE: // OPAQUE
483 ResultTy = 0;
484 break;
485 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
486 if (Record.size() < 1)
487 return Error("Invalid Integer type record");
488
489 ResultTy = IntegerType::get(Record[0]);
490 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000491 case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
492 // [pointee type, address space]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000493 if (Record.size() < 1)
494 return Error("Invalid POINTER type record");
Christopher Lambfe63fb92007-12-11 08:59:05 +0000495 unsigned AddressSpace = 0;
496 if (Record.size() == 2)
497 AddressSpace = Record[1];
498 ResultTy = PointerType::get(getTypeByID(Record[0], true), AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000499 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000500 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000501 case bitc::TYPE_CODE_FUNCTION: {
Chris Lattnera1afde72007-11-27 17:48:06 +0000502 // FIXME: attrid is dead, remove it in LLVM 3.0
503 // FUNCTION: [vararg, attrid, retty, paramty x N]
504 if (Record.size() < 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000505 return Error("Invalid FUNCTION type record");
506 std::vector<const Type*> ArgTys;
Chris Lattnera1afde72007-11-27 17:48:06 +0000507 for (unsigned i = 3, e = Record.size(); i != e; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000508 ArgTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000509
Chris Lattnera1afde72007-11-27 17:48:06 +0000510 ResultTy = FunctionType::get(getTypeByID(Record[2], true), ArgTys,
Duncan Sandsdc024672007-11-27 13:23:08 +0000511 Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000512 break;
513 }
Chris Lattner15e6d172007-05-04 19:11:41 +0000514 case bitc::TYPE_CODE_STRUCT: { // STRUCT: [ispacked, eltty x N]
Chris Lattner7108dce2007-05-06 08:21:50 +0000515 if (Record.size() < 1)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000516 return Error("Invalid STRUCT type record");
517 std::vector<const Type*> EltTys;
Chris Lattner15e6d172007-05-04 19:11:41 +0000518 for (unsigned i = 1, e = Record.size(); i != e; ++i)
519 EltTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000520 ResultTy = StructType::get(EltTys, Record[0]);
521 break;
522 }
523 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
524 if (Record.size() < 2)
525 return Error("Invalid ARRAY type record");
526 ResultTy = ArrayType::get(getTypeByID(Record[1], true), Record[0]);
527 break;
528 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
529 if (Record.size() < 2)
530 return Error("Invalid VECTOR type record");
531 ResultTy = VectorType::get(getTypeByID(Record[1], true), Record[0]);
532 break;
533 }
534
535 if (NumRecords == TypeList.size()) {
536 // If this is a new type slot, just append it.
537 TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get());
538 ++NumRecords;
539 } else if (ResultTy == 0) {
540 // Otherwise, this was forward referenced, so an opaque type was created,
541 // but the result type is actually just an opaque. Leave the one we
542 // created previously.
543 ++NumRecords;
544 } else {
545 // Otherwise, this was forward referenced, so an opaque type was created.
546 // Resolve the opaque type to the real type now.
547 assert(NumRecords < TypeList.size() && "Typelist imbalance");
548 const OpaqueType *OldTy = cast<OpaqueType>(TypeList[NumRecords++].get());
549
550 // Don't directly push the new type on the Tab. Instead we want to replace
551 // the opaque type we previously inserted with the new concrete value. The
552 // refinement from the abstract (opaque) type to the new type causes all
553 // uses of the abstract type to use the concrete type (NewTy). This will
554 // also cause the opaque type to be deleted.
555 const_cast<OpaqueType*>(OldTy)->refineAbstractTypeTo(ResultTy);
556
557 // This should have replaced the old opaque type with the new type in the
Chris Lattner0eef0802007-04-24 04:04:35 +0000558 // value table... or with a preexisting type that was already in the
559 // system. Let's just make sure it did.
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000560 assert(TypeList[NumRecords-1].get() != OldTy &&
561 "refineAbstractType didn't work!");
562 }
563 }
564}
565
566
Chris Lattner86697142007-05-01 05:01:34 +0000567bool BitcodeReader::ParseTypeSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000568 if (Stream.EnterSubBlock(bitc::TYPE_SYMTAB_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000569 return Error("Malformed block record");
570
571 SmallVector<uint64_t, 64> Record;
572
573 // Read all the records for this type table.
574 std::string TypeName;
575 while (1) {
576 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000577 if (Code == bitc::END_BLOCK) {
578 if (Stream.ReadBlockEnd())
579 return Error("Error at end of type symbol table block");
580 return false;
581 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000582
583 if (Code == bitc::ENTER_SUBBLOCK) {
584 // No known subblocks, always skip them.
585 Stream.ReadSubBlockID();
586 if (Stream.SkipBlock())
587 return Error("Malformed block record");
588 continue;
589 }
590
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000591 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000592 Stream.ReadAbbrevRecord();
593 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000594 }
595
596 // Read a record.
597 Record.clear();
598 switch (Stream.ReadRecord(Code, Record)) {
599 default: // Default behavior: unknown type.
600 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000601 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000602 if (ConvertToString(Record, 1, TypeName))
603 return Error("Invalid TST_ENTRY record");
604 unsigned TypeID = Record[0];
605 if (TypeID >= TypeList.size())
606 return Error("Invalid Type ID in TST_ENTRY record");
607
608 TheModule->addTypeName(TypeName, TypeList[TypeID].get());
609 TypeName.clear();
610 break;
611 }
612 }
613}
614
Chris Lattner86697142007-05-01 05:01:34 +0000615bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000616 if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
Chris Lattner0b2482a2007-04-23 21:26:05 +0000617 return Error("Malformed block record");
618
619 SmallVector<uint64_t, 64> Record;
620
621 // Read all the records for this value table.
622 SmallString<128> ValueName;
623 while (1) {
624 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000625 if (Code == bitc::END_BLOCK) {
626 if (Stream.ReadBlockEnd())
627 return Error("Error at end of value symbol table block");
628 return false;
629 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000630 if (Code == bitc::ENTER_SUBBLOCK) {
631 // No known subblocks, always skip them.
632 Stream.ReadSubBlockID();
633 if (Stream.SkipBlock())
634 return Error("Malformed block record");
635 continue;
636 }
637
638 if (Code == bitc::DEFINE_ABBREV) {
639 Stream.ReadAbbrevRecord();
640 continue;
641 }
642
643 // Read a record.
644 Record.clear();
645 switch (Stream.ReadRecord(Code, Record)) {
646 default: // Default behavior: unknown type.
647 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000648 case bitc::VST_CODE_ENTRY: { // VST_ENTRY: [valueid, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000649 if (ConvertToString(Record, 1, ValueName))
650 return Error("Invalid TST_ENTRY record");
651 unsigned ValueID = Record[0];
652 if (ValueID >= ValueList.size())
653 return Error("Invalid Value ID in VST_ENTRY record");
654 Value *V = ValueList[ValueID];
655
656 V->setName(&ValueName[0], ValueName.size());
657 ValueName.clear();
658 break;
Reid Spencerc8f8a242007-05-04 01:43:33 +0000659 }
660 case bitc::VST_CODE_BBENTRY: {
Chris Lattnere825ed52007-05-03 22:18:21 +0000661 if (ConvertToString(Record, 1, ValueName))
662 return Error("Invalid VST_BBENTRY record");
663 BasicBlock *BB = getBasicBlock(Record[0]);
664 if (BB == 0)
665 return Error("Invalid BB ID in VST_BBENTRY record");
666
667 BB->setName(&ValueName[0], ValueName.size());
668 ValueName.clear();
669 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000670 }
Reid Spencerc8f8a242007-05-04 01:43:33 +0000671 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000672 }
673}
674
Chris Lattner0eef0802007-04-24 04:04:35 +0000675/// DecodeSignRotatedValue - Decode a signed value stored with the sign bit in
676/// the LSB for dense VBR encoding.
677static uint64_t DecodeSignRotatedValue(uint64_t V) {
678 if ((V & 1) == 0)
679 return V >> 1;
680 if (V != 1)
681 return -(V >> 1);
682 // There is no such thing as -0 with integers. "-0" really means MININT.
683 return 1ULL << 63;
684}
685
Chris Lattner07d98b42007-04-26 02:46:40 +0000686/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
687/// values and aliases that we can.
688bool BitcodeReader::ResolveGlobalAndAliasInits() {
689 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
690 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
691
692 GlobalInitWorklist.swap(GlobalInits);
693 AliasInitWorklist.swap(AliasInits);
694
695 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +0000696 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +0000697 if (ValID >= ValueList.size()) {
698 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +0000699 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +0000700 } else {
701 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
702 GlobalInitWorklist.back().first->setInitializer(C);
703 else
704 return Error("Global variable initializer is not a constant!");
705 }
706 GlobalInitWorklist.pop_back();
707 }
708
709 while (!AliasInitWorklist.empty()) {
710 unsigned ValID = AliasInitWorklist.back().second;
711 if (ValID >= ValueList.size()) {
712 AliasInits.push_back(AliasInitWorklist.back());
713 } else {
714 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +0000715 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +0000716 else
717 return Error("Alias initializer is not a constant!");
718 }
719 AliasInitWorklist.pop_back();
720 }
721 return false;
722}
723
724
Chris Lattner86697142007-05-01 05:01:34 +0000725bool BitcodeReader::ParseConstants() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000726 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
Chris Lattnere16504e2007-04-24 03:30:34 +0000727 return Error("Malformed block record");
728
729 SmallVector<uint64_t, 64> Record;
730
731 // Read all the records for this value table.
732 const Type *CurTy = Type::Int32Ty;
Chris Lattner522b7b12007-04-24 05:48:56 +0000733 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +0000734 while (1) {
735 unsigned Code = Stream.ReadCode();
Chris Lattnerea693df2008-08-21 02:34:16 +0000736 if (Code == bitc::END_BLOCK)
737 break;
Chris Lattnere16504e2007-04-24 03:30:34 +0000738
739 if (Code == bitc::ENTER_SUBBLOCK) {
740 // No known subblocks, always skip them.
741 Stream.ReadSubBlockID();
742 if (Stream.SkipBlock())
743 return Error("Malformed block record");
744 continue;
745 }
746
747 if (Code == bitc::DEFINE_ABBREV) {
748 Stream.ReadAbbrevRecord();
749 continue;
750 }
751
752 // Read a record.
753 Record.clear();
754 Value *V = 0;
755 switch (Stream.ReadRecord(Code, Record)) {
756 default: // Default behavior: unknown constant
757 case bitc::CST_CODE_UNDEF: // UNDEF
758 V = UndefValue::get(CurTy);
759 break;
760 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
761 if (Record.empty())
762 return Error("Malformed CST_SETTYPE record");
763 if (Record[0] >= TypeList.size())
764 return Error("Invalid Type ID in CST_SETTYPE record");
765 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +0000766 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +0000767 case bitc::CST_CODE_NULL: // NULL
768 V = Constant::getNullValue(CurTy);
769 break;
770 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000771 if (!isa<IntegerType>(CurTy) || Record.empty())
772 return Error("Invalid CST_INTEGER record");
773 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
774 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000775 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
776 if (!isa<IntegerType>(CurTy) || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +0000777 return Error("Invalid WIDE_INTEGER record");
778
Chris Lattner15e6d172007-05-04 19:11:41 +0000779 unsigned NumWords = Record.size();
Chris Lattner084a8442007-04-24 17:22:05 +0000780 SmallVector<uint64_t, 8> Words;
781 Words.resize(NumWords);
Chris Lattner0eef0802007-04-24 04:04:35 +0000782 for (unsigned i = 0; i != NumWords; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000783 Words[i] = DecodeSignRotatedValue(Record[i]);
Chris Lattner0eef0802007-04-24 04:04:35 +0000784 V = ConstantInt::get(APInt(cast<IntegerType>(CurTy)->getBitWidth(),
Chris Lattner084a8442007-04-24 17:22:05 +0000785 NumWords, &Words[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000786 break;
787 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000788 case bitc::CST_CODE_FLOAT: { // FLOAT: [fpval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000789 if (Record.empty())
790 return Error("Invalid FLOAT record");
791 if (CurTy == Type::FloatTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000792 V = ConstantFP::get(APFloat(APInt(32, (uint32_t)Record[0])));
Chris Lattner0eef0802007-04-24 04:04:35 +0000793 else if (CurTy == Type::DoubleTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000794 V = ConstantFP::get(APFloat(APInt(64, Record[0])));
Dale Johannesen43421b32007-09-06 18:13:44 +0000795 else if (CurTy == Type::X86_FP80Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000796 V = ConstantFP::get(APFloat(APInt(80, 2, &Record[0])));
Dale Johannesen43421b32007-09-06 18:13:44 +0000797 else if (CurTy == Type::FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000798 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0]), true));
Dale Johannesen43421b32007-09-06 18:13:44 +0000799 else if (CurTy == Type::PPC_FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000800 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0])));
Chris Lattnere16504e2007-04-24 03:30:34 +0000801 else
Chris Lattner0eef0802007-04-24 04:04:35 +0000802 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000803 break;
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000804 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000805
Chris Lattner15e6d172007-05-04 19:11:41 +0000806 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
807 if (Record.empty())
Chris Lattner522b7b12007-04-24 05:48:56 +0000808 return Error("Invalid CST_AGGREGATE record");
809
Chris Lattner15e6d172007-05-04 19:11:41 +0000810 unsigned Size = Record.size();
Chris Lattner522b7b12007-04-24 05:48:56 +0000811 std::vector<Constant*> Elts;
812
813 if (const StructType *STy = dyn_cast<StructType>(CurTy)) {
814 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000815 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
Chris Lattner522b7b12007-04-24 05:48:56 +0000816 STy->getElementType(i)));
817 V = ConstantStruct::get(STy, Elts);
818 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
819 const Type *EltTy = ATy->getElementType();
820 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000821 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000822 V = ConstantArray::get(ATy, Elts);
823 } else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
824 const Type *EltTy = VTy->getElementType();
825 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000826 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000827 V = ConstantVector::get(Elts);
828 } else {
829 V = UndefValue::get(CurTy);
830 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000831 break;
832 }
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000833 case bitc::CST_CODE_STRING: { // STRING: [values]
834 if (Record.empty())
835 return Error("Invalid CST_AGGREGATE record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000836
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000837 const ArrayType *ATy = cast<ArrayType>(CurTy);
838 const Type *EltTy = ATy->getElementType();
839
840 unsigned Size = Record.size();
841 std::vector<Constant*> Elts;
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000842 for (unsigned i = 0; i != Size; ++i)
843 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
844 V = ConstantArray::get(ATy, Elts);
845 break;
846 }
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000847 case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
848 if (Record.empty())
849 return Error("Invalid CST_AGGREGATE record");
850
851 const ArrayType *ATy = cast<ArrayType>(CurTy);
852 const Type *EltTy = ATy->getElementType();
853
854 unsigned Size = Record.size();
855 std::vector<Constant*> Elts;
856 for (unsigned i = 0; i != Size; ++i)
857 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
858 Elts.push_back(Constant::getNullValue(EltTy));
859 V = ConstantArray::get(ATy, Elts);
860 break;
861 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000862 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
863 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
864 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000865 if (Opc < 0) {
866 V = UndefValue::get(CurTy); // Unknown binop.
867 } else {
868 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
869 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
870 V = ConstantExpr::get(Opc, LHS, RHS);
871 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000872 break;
873 }
874 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
875 if (Record.size() < 3) return Error("Invalid CE_CAST record");
876 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000877 if (Opc < 0) {
878 V = UndefValue::get(CurTy); // Unknown cast.
879 } else {
880 const Type *OpTy = getTypeByID(Record[1]);
Chris Lattnerbfcc3802007-05-06 07:33:01 +0000881 if (!OpTy) return Error("Invalid CE_CAST record");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000882 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
883 V = ConstantExpr::getCast(Opc, Op, CurTy);
884 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000885 break;
886 }
887 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
Chris Lattner15e6d172007-05-04 19:11:41 +0000888 if (Record.size() & 1) return Error("Invalid CE_GEP record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000889 SmallVector<Constant*, 16> Elts;
Chris Lattner15e6d172007-05-04 19:11:41 +0000890 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000891 const Type *ElTy = getTypeByID(Record[i]);
892 if (!ElTy) return Error("Invalid CE_GEP record");
893 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
894 }
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000895 V = ConstantExpr::getGetElementPtr(Elts[0], &Elts[1], Elts.size()-1);
896 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000897 }
898 case bitc::CST_CODE_CE_SELECT: // CE_SELECT: [opval#, opval#, opval#]
899 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
900 V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
901 Type::Int1Ty),
902 ValueList.getConstantFwdRef(Record[1],CurTy),
903 ValueList.getConstantFwdRef(Record[2],CurTy));
904 break;
905 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
906 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
907 const VectorType *OpTy =
908 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
909 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
910 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
911 Constant *Op1 = ValueList.getConstantFwdRef(Record[2],
912 OpTy->getElementType());
913 V = ConstantExpr::getExtractElement(Op0, Op1);
914 break;
915 }
916 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
917 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
918 if (Record.size() < 3 || OpTy == 0)
919 return Error("Invalid CE_INSERTELT record");
920 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
921 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
922 OpTy->getElementType());
923 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
924 V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
925 break;
926 }
927 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
928 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
929 if (Record.size() < 3 || OpTy == 0)
930 return Error("Invalid CE_INSERTELT record");
931 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
932 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
933 const Type *ShufTy=VectorType::get(Type::Int32Ty, OpTy->getNumElements());
934 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
935 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
936 break;
937 }
938 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
939 if (Record.size() < 4) return Error("Invalid CE_CMP record");
940 const Type *OpTy = getTypeByID(Record[0]);
941 if (OpTy == 0) return Error("Invalid CE_CMP record");
942 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
943 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
944
945 if (OpTy->isFloatingPoint())
946 V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
Nate Begemanbaa64eb2008-05-12 20:33:52 +0000947 else if (!isa<VectorType>(OpTy))
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000948 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +0000949 else if (OpTy->isFPOrFPVector())
950 V = ConstantExpr::getVFCmp(Record[3], Op0, Op1);
951 else
952 V = ConstantExpr::getVICmp(Record[3], Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000953 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000954 }
Chris Lattner2bce93a2007-05-06 01:58:20 +0000955 case bitc::CST_CODE_INLINEASM: {
956 if (Record.size() < 2) return Error("Invalid INLINEASM record");
957 std::string AsmStr, ConstrStr;
958 bool HasSideEffects = Record[0];
959 unsigned AsmStrSize = Record[1];
960 if (2+AsmStrSize >= Record.size())
961 return Error("Invalid INLINEASM record");
962 unsigned ConstStrSize = Record[2+AsmStrSize];
963 if (3+AsmStrSize+ConstStrSize > Record.size())
964 return Error("Invalid INLINEASM record");
965
966 for (unsigned i = 0; i != AsmStrSize; ++i)
967 AsmStr += (char)Record[2+i];
968 for (unsigned i = 0; i != ConstStrSize; ++i)
969 ConstrStr += (char)Record[3+AsmStrSize+i];
970 const PointerType *PTy = cast<PointerType>(CurTy);
971 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
972 AsmStr, ConstrStr, HasSideEffects);
973 break;
974 }
Chris Lattnere16504e2007-04-24 03:30:34 +0000975 }
976
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000977 ValueList.AssignValue(V, NextCstNo);
Chris Lattner522b7b12007-04-24 05:48:56 +0000978 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +0000979 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000980
981 if (NextCstNo != ValueList.size())
982 return Error("Invalid constant reference!");
983
984 if (Stream.ReadBlockEnd())
985 return Error("Error at end of constants block");
986
987 // Once all the constants have been read, go through and resolve forward
988 // references.
989 ValueList.ResolveConstantForwardRefs();
990 return false;
Chris Lattnere16504e2007-04-24 03:30:34 +0000991}
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000992
Chris Lattner980e5aa2007-05-01 05:52:21 +0000993/// RememberAndSkipFunctionBody - When we see the block for a function body,
994/// remember where it is and then skip it. This lets us lazily deserialize the
995/// functions.
996bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +0000997 // Get the function we are talking about.
998 if (FunctionsWithBodies.empty())
999 return Error("Insufficient function protos");
1000
1001 Function *Fn = FunctionsWithBodies.back();
1002 FunctionsWithBodies.pop_back();
1003
1004 // Save the current stream state.
1005 uint64_t CurBit = Stream.GetCurrentBitNo();
1006 DeferredFunctionInfo[Fn] = std::make_pair(CurBit, Fn->getLinkage());
1007
1008 // Set the functions linkage to GhostLinkage so we know it is lazily
1009 // deserialized.
1010 Fn->setLinkage(GlobalValue::GhostLinkage);
1011
1012 // Skip over the function block for now.
1013 if (Stream.SkipBlock())
1014 return Error("Malformed block record");
1015 return false;
1016}
1017
Chris Lattner86697142007-05-01 05:01:34 +00001018bool BitcodeReader::ParseModule(const std::string &ModuleID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001019 // Reject multiple MODULE_BLOCK's in a single bitstream.
1020 if (TheModule)
1021 return Error("Multiple MODULE_BLOCKs in same stream");
1022
Chris Lattnere17b6582007-05-05 00:17:00 +00001023 if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001024 return Error("Malformed block record");
1025
1026 // Otherwise, create the module.
1027 TheModule = new Module(ModuleID);
1028
1029 SmallVector<uint64_t, 64> Record;
1030 std::vector<std::string> SectionTable;
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001031 std::vector<std::string> GCTable;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001032
1033 // Read all the records for this module.
1034 while (!Stream.AtEndOfStream()) {
1035 unsigned Code = Stream.ReadCode();
Chris Lattnere84bcb92007-04-24 00:21:45 +00001036 if (Code == bitc::END_BLOCK) {
Chris Lattner980e5aa2007-05-01 05:52:21 +00001037 if (Stream.ReadBlockEnd())
1038 return Error("Error at end of module block");
1039
1040 // Patch the initializers for globals and aliases up.
Chris Lattner07d98b42007-04-26 02:46:40 +00001041 ResolveGlobalAndAliasInits();
1042 if (!GlobalInits.empty() || !AliasInits.empty())
Chris Lattnere84bcb92007-04-24 00:21:45 +00001043 return Error("Malformed global initializer set");
Chris Lattner48f84872007-05-01 04:59:48 +00001044 if (!FunctionsWithBodies.empty())
1045 return Error("Too few function bodies found");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001046
Chandler Carruth69940402007-08-04 01:51:18 +00001047 // Look for intrinsic functions which need to be upgraded at some point
1048 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1049 FI != FE; ++FI) {
Evan Chengf9b83fc2007-12-17 22:33:23 +00001050 Function* NewFn;
1051 if (UpgradeIntrinsicFunction(FI, NewFn))
Chandler Carruth69940402007-08-04 01:51:18 +00001052 UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1053 }
1054
Chris Lattner980e5aa2007-05-01 05:52:21 +00001055 // Force deallocation of memory for these vectors to favor the client that
1056 // want lazy deserialization.
1057 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1058 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1059 std::vector<Function*>().swap(FunctionsWithBodies);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001060 return false;
Chris Lattnere84bcb92007-04-24 00:21:45 +00001061 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001062
1063 if (Code == bitc::ENTER_SUBBLOCK) {
1064 switch (Stream.ReadSubBlockID()) {
1065 default: // Skip unknown content.
1066 if (Stream.SkipBlock())
1067 return Error("Malformed block record");
1068 break;
Chris Lattner3f799802007-05-05 18:57:30 +00001069 case bitc::BLOCKINFO_BLOCK_ID:
1070 if (Stream.ReadBlockInfoBlock())
1071 return Error("Malformed BlockInfoBlock");
1072 break;
Chris Lattner48c85b82007-05-04 03:30:17 +00001073 case bitc::PARAMATTR_BLOCK_ID:
Devang Patel05988662008-09-25 21:00:45 +00001074 if (ParseAttributeBlock())
Chris Lattner48c85b82007-05-04 03:30:17 +00001075 return true;
1076 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001077 case bitc::TYPE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001078 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001079 return true;
1080 break;
1081 case bitc::TYPE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001082 if (ParseTypeSymbolTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001083 return true;
1084 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001085 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001086 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +00001087 return true;
1088 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001089 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001090 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +00001091 return true;
1092 break;
Chris Lattner48f84872007-05-01 04:59:48 +00001093 case bitc::FUNCTION_BLOCK_ID:
1094 // If this is the first function body we've seen, reverse the
1095 // FunctionsWithBodies list.
1096 if (!HasReversedFunctionsWithBodies) {
1097 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
1098 HasReversedFunctionsWithBodies = true;
1099 }
1100
Chris Lattner980e5aa2007-05-01 05:52:21 +00001101 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +00001102 return true;
1103 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001104 }
1105 continue;
1106 }
1107
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001108 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +00001109 Stream.ReadAbbrevRecord();
1110 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001111 }
1112
1113 // Read a record.
1114 switch (Stream.ReadRecord(Code, Record)) {
1115 default: break; // Default behavior, ignore unknown content.
1116 case bitc::MODULE_CODE_VERSION: // VERSION: [version#]
1117 if (Record.size() < 1)
1118 return Error("Malformed MODULE_CODE_VERSION");
1119 // Only version #0 is supported so far.
1120 if (Record[0] != 0)
1121 return Error("Unknown bitstream version!");
1122 break;
Chris Lattner15e6d172007-05-04 19:11:41 +00001123 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001124 std::string S;
1125 if (ConvertToString(Record, 0, S))
1126 return Error("Invalid MODULE_CODE_TRIPLE record");
1127 TheModule->setTargetTriple(S);
1128 break;
1129 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001130 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001131 std::string S;
1132 if (ConvertToString(Record, 0, S))
1133 return Error("Invalid MODULE_CODE_DATALAYOUT record");
1134 TheModule->setDataLayout(S);
1135 break;
1136 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001137 case bitc::MODULE_CODE_ASM: { // ASM: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001138 std::string S;
1139 if (ConvertToString(Record, 0, S))
1140 return Error("Invalid MODULE_CODE_ASM record");
1141 TheModule->setModuleInlineAsm(S);
1142 break;
1143 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001144 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001145 std::string S;
1146 if (ConvertToString(Record, 0, S))
1147 return Error("Invalid MODULE_CODE_DEPLIB record");
1148 TheModule->addLibrary(S);
1149 break;
1150 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001151 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001152 std::string S;
1153 if (ConvertToString(Record, 0, S))
1154 return Error("Invalid MODULE_CODE_SECTIONNAME record");
1155 SectionTable.push_back(S);
1156 break;
1157 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001158 case bitc::MODULE_CODE_GCNAME: { // SECTIONNAME: [strchr x N]
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001159 std::string S;
1160 if (ConvertToString(Record, 0, S))
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001161 return Error("Invalid MODULE_CODE_GCNAME record");
1162 GCTable.push_back(S);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001163 break;
1164 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001165 // GLOBALVAR: [pointer type, isconst, initid,
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001166 // linkage, alignment, section, visibility, threadlocal]
1167 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001168 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001169 return Error("Invalid MODULE_CODE_GLOBALVAR record");
1170 const Type *Ty = getTypeByID(Record[0]);
1171 if (!isa<PointerType>(Ty))
1172 return Error("Global not a pointer type!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001173 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001174 Ty = cast<PointerType>(Ty)->getElementType();
1175
1176 bool isConstant = Record[1];
1177 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1178 unsigned Alignment = (1 << Record[4]) >> 1;
1179 std::string Section;
1180 if (Record[5]) {
1181 if (Record[5]-1 >= SectionTable.size())
1182 return Error("Invalid section ID");
1183 Section = SectionTable[Record[5]-1];
1184 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001185 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
Chris Lattner5f32c012007-05-06 19:27:46 +00001186 if (Record.size() > 6)
1187 Visibility = GetDecodedVisibility(Record[6]);
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001188 bool isThreadLocal = false;
Chris Lattner5f32c012007-05-06 19:27:46 +00001189 if (Record.size() > 7)
1190 isThreadLocal = Record[7];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001191
1192 GlobalVariable *NewGV =
Christopher Lambfe63fb92007-12-11 08:59:05 +00001193 new GlobalVariable(Ty, isConstant, Linkage, 0, "", TheModule,
1194 isThreadLocal, AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001195 NewGV->setAlignment(Alignment);
1196 if (!Section.empty())
1197 NewGV->setSection(Section);
1198 NewGV->setVisibility(Visibility);
1199 NewGV->setThreadLocal(isThreadLocal);
1200
Chris Lattner0b2482a2007-04-23 21:26:05 +00001201 ValueList.push_back(NewGV);
1202
Chris Lattner6dbfd7b2007-04-24 00:18:21 +00001203 // Remember which value to use for the global initializer.
1204 if (unsigned InitID = Record[2])
1205 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001206 break;
1207 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001208 // FUNCTION: [type, callingconv, isproto, linkage, paramattr,
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001209 // alignment, section, visibility, gc]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001210 case bitc::MODULE_CODE_FUNCTION: {
Chris Lattnera9bb7132007-05-08 05:38:01 +00001211 if (Record.size() < 8)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001212 return Error("Invalid MODULE_CODE_FUNCTION record");
1213 const Type *Ty = getTypeByID(Record[0]);
1214 if (!isa<PointerType>(Ty))
1215 return Error("Function not a pointer type!");
1216 const FunctionType *FTy =
1217 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
1218 if (!FTy)
1219 return Error("Function not a pointer to function type!");
1220
Gabor Greif051a9502008-04-06 20:25:17 +00001221 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
1222 "", TheModule);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001223
1224 Func->setCallingConv(Record[1]);
Chris Lattner48f84872007-05-01 04:59:48 +00001225 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001226 Func->setLinkage(GetDecodedLinkage(Record[3]));
Devang Patel05988662008-09-25 21:00:45 +00001227 Func->setAttributes(getAttributes(Record[4]));
Chris Lattnera9bb7132007-05-08 05:38:01 +00001228
1229 Func->setAlignment((1 << Record[5]) >> 1);
1230 if (Record[6]) {
1231 if (Record[6]-1 >= SectionTable.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001232 return Error("Invalid section ID");
Chris Lattnera9bb7132007-05-08 05:38:01 +00001233 Func->setSection(SectionTable[Record[6]-1]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001234 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001235 Func->setVisibility(GetDecodedVisibility(Record[7]));
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001236 if (Record.size() > 8 && Record[8]) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001237 if (Record[8]-1 > GCTable.size())
1238 return Error("Invalid GC ID");
1239 Func->setGC(GCTable[Record[8]-1].c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001240 }
Chris Lattner0b2482a2007-04-23 21:26:05 +00001241 ValueList.push_back(Func);
Chris Lattner48f84872007-05-01 04:59:48 +00001242
1243 // If this is a function with a body, remember the prototype we are
1244 // creating now, so that we can match up the body with them later.
1245 if (!isProto)
1246 FunctionsWithBodies.push_back(Func);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001247 break;
1248 }
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001249 // ALIAS: [alias type, aliasee val#, linkage]
Anton Korobeynikovf8342b92008-03-11 21:40:17 +00001250 // ALIAS: [alias type, aliasee val#, linkage, visibility]
Chris Lattner198f34a2007-04-26 03:27:58 +00001251 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +00001252 if (Record.size() < 3)
1253 return Error("Invalid MODULE_ALIAS record");
1254 const Type *Ty = getTypeByID(Record[0]);
1255 if (!isa<PointerType>(Ty))
1256 return Error("Function not a pointer type!");
1257
1258 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
1259 "", 0, TheModule);
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001260 // Old bitcode files didn't have visibility field.
1261 if (Record.size() > 3)
1262 NewGA->setVisibility(GetDecodedVisibility(Record[3]));
Chris Lattner07d98b42007-04-26 02:46:40 +00001263 ValueList.push_back(NewGA);
1264 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
1265 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001266 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001267 /// MODULE_CODE_PURGEVALS: [numvals]
1268 case bitc::MODULE_CODE_PURGEVALS:
1269 // Trim down the value list to the specified size.
1270 if (Record.size() < 1 || Record[0] > ValueList.size())
1271 return Error("Invalid MODULE_PURGEVALS record");
1272 ValueList.shrinkTo(Record[0]);
1273 break;
1274 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001275 Record.clear();
1276 }
1277
1278 return Error("Premature end of bitstream");
1279}
1280
Chris Lattner6fa6a322008-07-09 05:14:23 +00001281/// SkipWrapperHeader - Some systems wrap bc files with a special header for
1282/// padding or other reasons. The format of this header is:
1283///
1284/// struct bc_header {
1285/// uint32_t Magic; // 0x0B17C0DE
1286/// uint32_t Version; // Version, currently always 0.
1287/// uint32_t BitcodeOffset; // Offset to traditional bitcode file.
1288/// uint32_t BitcodeSize; // Size of traditional bitcode file.
1289/// ... potentially other gunk ...
1290/// };
1291///
1292/// This function is called when we find a file with a matching magic number.
1293/// In this case, skip down to the subsection of the file that is actually a BC
1294/// file.
1295static bool SkipWrapperHeader(unsigned char *&BufPtr, unsigned char *&BufEnd) {
1296 enum {
1297 KnownHeaderSize = 4*4, // Size of header we read.
1298 OffsetField = 2*4, // Offset in bytes to Offset field.
1299 SizeField = 3*4 // Offset in bytes to Size field.
1300 };
1301
1302
1303 // Must contain the header!
1304 if (BufEnd-BufPtr < KnownHeaderSize) return true;
1305
1306 unsigned Offset = ( BufPtr[OffsetField ] |
1307 (BufPtr[OffsetField+1] << 8) |
1308 (BufPtr[OffsetField+2] << 16) |
1309 (BufPtr[OffsetField+3] << 24));
1310 unsigned Size = ( BufPtr[SizeField ] |
1311 (BufPtr[SizeField +1] << 8) |
1312 (BufPtr[SizeField +2] << 16) |
1313 (BufPtr[SizeField +3] << 24));
1314
1315 // Verify that Offset+Size fits in the file.
1316 if (Offset+Size > unsigned(BufEnd-BufPtr))
1317 return true;
1318 BufPtr += Offset;
1319 BufEnd = BufPtr+Size;
1320 return false;
1321}
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001322
Chris Lattnerc453f762007-04-29 07:54:31 +00001323bool BitcodeReader::ParseBitcode() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001324 TheModule = 0;
1325
Chris Lattnerc453f762007-04-29 07:54:31 +00001326 if (Buffer->getBufferSize() & 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001327 return Error("Bitcode stream should be a multiple of 4 bytes in length");
1328
Chris Lattnerc453f762007-04-29 07:54:31 +00001329 unsigned char *BufPtr = (unsigned char *)Buffer->getBufferStart();
Chris Lattner6fa6a322008-07-09 05:14:23 +00001330 unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
1331
1332 // If we have a wrapper header, parse it and ignore the non-bc file contents.
1333 // The magic number is 0x0B17C0DE stored in little endian.
1334 if (BufPtr != BufEnd && BufPtr[0] == 0xDE && BufPtr[1] == 0xC0 &&
1335 BufPtr[2] == 0x17 && BufPtr[3] == 0x0B)
1336 if (SkipWrapperHeader(BufPtr, BufEnd))
1337 return Error("Invalid bitcode wrapper header");
1338
1339 Stream.init(BufPtr, BufEnd);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001340
1341 // Sniff for the signature.
1342 if (Stream.Read(8) != 'B' ||
1343 Stream.Read(8) != 'C' ||
1344 Stream.Read(4) != 0x0 ||
1345 Stream.Read(4) != 0xC ||
1346 Stream.Read(4) != 0xE ||
1347 Stream.Read(4) != 0xD)
1348 return Error("Invalid bitcode signature");
1349
1350 // We expect a number of well-defined blocks, though we don't necessarily
1351 // need to understand them all.
1352 while (!Stream.AtEndOfStream()) {
1353 unsigned Code = Stream.ReadCode();
1354
1355 if (Code != bitc::ENTER_SUBBLOCK)
1356 return Error("Invalid record at top-level");
1357
1358 unsigned BlockID = Stream.ReadSubBlockID();
1359
1360 // We only know the MODULE subblock ID.
Chris Lattnere17b6582007-05-05 00:17:00 +00001361 switch (BlockID) {
1362 case bitc::BLOCKINFO_BLOCK_ID:
1363 if (Stream.ReadBlockInfoBlock())
1364 return Error("Malformed BlockInfoBlock");
1365 break;
1366 case bitc::MODULE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001367 if (ParseModule(Buffer->getBufferIdentifier()))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001368 return true;
Chris Lattnere17b6582007-05-05 00:17:00 +00001369 break;
1370 default:
1371 if (Stream.SkipBlock())
1372 return Error("Malformed block record");
1373 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001374 }
1375 }
1376
1377 return false;
1378}
Chris Lattnerc453f762007-04-29 07:54:31 +00001379
Chris Lattner48f84872007-05-01 04:59:48 +00001380
Chris Lattner980e5aa2007-05-01 05:52:21 +00001381/// ParseFunctionBody - Lazily parse the specified function body block.
1382bool BitcodeReader::ParseFunctionBody(Function *F) {
Chris Lattnere17b6582007-05-05 00:17:00 +00001383 if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
Chris Lattner980e5aa2007-05-01 05:52:21 +00001384 return Error("Malformed block record");
1385
1386 unsigned ModuleValueListSize = ValueList.size();
1387
1388 // Add all the function arguments to the value table.
1389 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
1390 ValueList.push_back(I);
1391
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001392 unsigned NextValueNo = ValueList.size();
Chris Lattner231cbcb2007-05-02 04:27:25 +00001393 BasicBlock *CurBB = 0;
1394 unsigned CurBBNo = 0;
1395
Chris Lattner980e5aa2007-05-01 05:52:21 +00001396 // Read all the records.
1397 SmallVector<uint64_t, 64> Record;
1398 while (1) {
1399 unsigned Code = Stream.ReadCode();
1400 if (Code == bitc::END_BLOCK) {
1401 if (Stream.ReadBlockEnd())
1402 return Error("Error at end of function block");
1403 break;
1404 }
1405
1406 if (Code == bitc::ENTER_SUBBLOCK) {
1407 switch (Stream.ReadSubBlockID()) {
1408 default: // Skip unknown content.
1409 if (Stream.SkipBlock())
1410 return Error("Malformed block record");
1411 break;
1412 case bitc::CONSTANTS_BLOCK_ID:
1413 if (ParseConstants()) return true;
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001414 NextValueNo = ValueList.size();
Chris Lattner980e5aa2007-05-01 05:52:21 +00001415 break;
1416 case bitc::VALUE_SYMTAB_BLOCK_ID:
1417 if (ParseValueSymbolTable()) return true;
1418 break;
1419 }
1420 continue;
1421 }
1422
1423 if (Code == bitc::DEFINE_ABBREV) {
1424 Stream.ReadAbbrevRecord();
1425 continue;
1426 }
1427
1428 // Read a record.
1429 Record.clear();
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001430 Instruction *I = 0;
Chris Lattner980e5aa2007-05-01 05:52:21 +00001431 switch (Stream.ReadRecord(Code, Record)) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001432 default: // Default behavior: reject
1433 return Error("Unknown instruction");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001434 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001435 if (Record.size() < 1 || Record[0] == 0)
1436 return Error("Invalid DECLAREBLOCKS record");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001437 // Create all the basic blocks for the function.
Chris Lattnerf61e6452007-05-03 22:09:51 +00001438 FunctionBBs.resize(Record[0]);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001439 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
Gabor Greif051a9502008-04-06 20:25:17 +00001440 FunctionBBs[i] = BasicBlock::Create("", F);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001441 CurBB = FunctionBBs[0];
1442 continue;
1443
Chris Lattnerabfbf852007-05-06 00:21:25 +00001444 case bitc::FUNC_CODE_INST_BINOP: { // BINOP: [opval, ty, opval, opcode]
1445 unsigned OpNum = 0;
1446 Value *LHS, *RHS;
1447 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1448 getValue(Record, OpNum, LHS->getType(), RHS) ||
1449 OpNum+1 != Record.size())
1450 return Error("Invalid BINOP record");
1451
1452 int Opc = GetDecodedBinaryOpcode(Record[OpNum], LHS->getType());
1453 if (Opc == -1) return Error("Invalid BINOP record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001454 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001455 break;
1456 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001457 case bitc::FUNC_CODE_INST_CAST: { // CAST: [opval, opty, destty, castopc]
1458 unsigned OpNum = 0;
1459 Value *Op;
1460 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1461 OpNum+2 != Record.size())
1462 return Error("Invalid CAST record");
1463
1464 const Type *ResTy = getTypeByID(Record[OpNum]);
1465 int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
1466 if (Opc == -1 || ResTy == 0)
Chris Lattner231cbcb2007-05-02 04:27:25 +00001467 return Error("Invalid CAST record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001468 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
Chris Lattner231cbcb2007-05-02 04:27:25 +00001469 break;
1470 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001471 case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
Chris Lattner7337ab92007-05-06 00:00:00 +00001472 unsigned OpNum = 0;
1473 Value *BasePtr;
1474 if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001475 return Error("Invalid GEP record");
1476
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001477 SmallVector<Value*, 16> GEPIdx;
Chris Lattner7337ab92007-05-06 00:00:00 +00001478 while (OpNum != Record.size()) {
1479 Value *Op;
1480 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001481 return Error("Invalid GEP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001482 GEPIdx.push_back(Op);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001483 }
1484
Gabor Greif051a9502008-04-06 20:25:17 +00001485 I = GetElementPtrInst::Create(BasePtr, GEPIdx.begin(), GEPIdx.end());
Chris Lattner01ff65f2007-05-02 05:16:49 +00001486 break;
1487 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001488
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001489 case bitc::FUNC_CODE_INST_EXTRACTVAL: {
1490 // EXTRACTVAL: [opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001491 unsigned OpNum = 0;
1492 Value *Agg;
1493 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1494 return Error("Invalid EXTRACTVAL record");
1495
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001496 SmallVector<unsigned, 4> EXTRACTVALIdx;
1497 for (unsigned RecSize = Record.size();
1498 OpNum != RecSize; ++OpNum) {
1499 uint64_t Index = Record[OpNum];
1500 if ((unsigned)Index != Index)
1501 return Error("Invalid EXTRACTVAL index");
1502 EXTRACTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001503 }
1504
1505 I = ExtractValueInst::Create(Agg,
1506 EXTRACTVALIdx.begin(), EXTRACTVALIdx.end());
1507 break;
1508 }
1509
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001510 case bitc::FUNC_CODE_INST_INSERTVAL: {
1511 // INSERTVAL: [opty, opval, opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001512 unsigned OpNum = 0;
1513 Value *Agg;
1514 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1515 return Error("Invalid INSERTVAL record");
1516 Value *Val;
1517 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
1518 return Error("Invalid INSERTVAL record");
1519
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001520 SmallVector<unsigned, 4> INSERTVALIdx;
1521 for (unsigned RecSize = Record.size();
1522 OpNum != RecSize; ++OpNum) {
1523 uint64_t Index = Record[OpNum];
1524 if ((unsigned)Index != Index)
1525 return Error("Invalid INSERTVAL index");
1526 INSERTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001527 }
1528
1529 I = InsertValueInst::Create(Agg, Val,
1530 INSERTVALIdx.begin(), INSERTVALIdx.end());
1531 break;
1532 }
1533
Chris Lattnerabfbf852007-05-06 00:21:25 +00001534 case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001535 // obsolete form of select
1536 // handles select i1 ... in old bitcode
Chris Lattnerabfbf852007-05-06 00:21:25 +00001537 unsigned OpNum = 0;
1538 Value *TrueVal, *FalseVal, *Cond;
1539 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1540 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
Dan Gohmanbe919402008-09-09 02:08:49 +00001541 getValue(Record, OpNum, Type::Int1Ty, Cond))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001542 return Error("Invalid SELECT record");
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001543
1544 I = SelectInst::Create(Cond, TrueVal, FalseVal);
1545 break;
1546 }
1547
1548 case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
1549 // new form of select
1550 // handles select i1 or select [N x i1]
1551 unsigned OpNum = 0;
1552 Value *TrueVal, *FalseVal, *Cond;
1553 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1554 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
1555 getValueTypePair(Record, OpNum, NextValueNo, Cond))
1556 return Error("Invalid SELECT record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001557
1558 // select condition can be either i1 or [N x i1]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001559 if (const VectorType* vector_type =
1560 dyn_cast<const VectorType>(Cond->getType())) {
Dan Gohmanf72fb672008-09-09 01:02:47 +00001561 // expect <n x i1>
1562 if (vector_type->getElementType() != Type::Int1Ty)
1563 return Error("Invalid SELECT condition type");
1564 } else {
1565 // expect i1
1566 if (Cond->getType() != Type::Int1Ty)
1567 return Error("Invalid SELECT condition type");
1568 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001569
Gabor Greif051a9502008-04-06 20:25:17 +00001570 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001571 break;
1572 }
1573
1574 case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001575 unsigned OpNum = 0;
1576 Value *Vec, *Idx;
1577 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1578 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001579 return Error("Invalid EXTRACTELT record");
1580 I = new ExtractElementInst(Vec, Idx);
1581 break;
1582 }
1583
1584 case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001585 unsigned OpNum = 0;
1586 Value *Vec, *Elt, *Idx;
1587 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1588 getValue(Record, OpNum,
1589 cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
1590 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001591 return Error("Invalid INSERTELT record");
Gabor Greif051a9502008-04-06 20:25:17 +00001592 I = InsertElementInst::Create(Vec, Elt, Idx);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001593 break;
1594 }
1595
Chris Lattnerabfbf852007-05-06 00:21:25 +00001596 case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
1597 unsigned OpNum = 0;
1598 Value *Vec1, *Vec2, *Mask;
1599 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
1600 getValue(Record, OpNum, Vec1->getType(), Vec2))
1601 return Error("Invalid SHUFFLEVEC record");
1602
1603 const Type *MaskTy =
1604 VectorType::get(Type::Int32Ty,
1605 cast<VectorType>(Vec1->getType())->getNumElements());
1606
1607 if (getValue(Record, OpNum, MaskTy, Mask))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001608 return Error("Invalid SHUFFLEVEC record");
1609 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
1610 break;
1611 }
1612
1613 case bitc::FUNC_CODE_INST_CMP: { // CMP: [opty, opval, opval, pred]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001614 // VFCmp/VICmp
1615 // or old form of ICmp/FCmp returning bool
Chris Lattner7337ab92007-05-06 00:00:00 +00001616 unsigned OpNum = 0;
1617 Value *LHS, *RHS;
1618 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1619 getValue(Record, OpNum, LHS->getType(), RHS) ||
1620 OpNum+1 != Record.size())
Chris Lattner01ff65f2007-05-02 05:16:49 +00001621 return Error("Invalid CMP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001622
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001623 if (LHS->getType()->isFloatingPoint())
Nate Begemanac80ade2008-05-12 19:01:56 +00001624 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001625 else if (!isa<VectorType>(LHS->getType()))
1626 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanac80ade2008-05-12 19:01:56 +00001627 else if (LHS->getType()->isFPOrFPVector())
1628 I = new VFCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1629 else
1630 I = new VICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001631 break;
1632 }
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001633 case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
1634 // Fcmp/ICmp returning bool or vector of bool
Dan Gohmanf72fb672008-09-09 01:02:47 +00001635 unsigned OpNum = 0;
1636 Value *LHS, *RHS;
1637 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1638 getValue(Record, OpNum, LHS->getType(), RHS) ||
1639 OpNum+1 != Record.size())
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001640 return Error("Invalid CMP2 record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001641
Dan Gohmanf72fb672008-09-09 01:02:47 +00001642 if (LHS->getType()->isFPOrFPVector())
1643 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1644 else
1645 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
1646 break;
1647 }
Devang Patel197be3d2008-02-22 02:49:49 +00001648 case bitc::FUNC_CODE_INST_GETRESULT: { // GETRESULT: [ty, val, n]
1649 if (Record.size() != 2)
1650 return Error("Invalid GETRESULT record");
1651 unsigned OpNum = 0;
1652 Value *Op;
1653 getValueTypePair(Record, OpNum, NextValueNo, Op);
1654 unsigned Index = Record[1];
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001655 I = ExtractValueInst::Create(Op, Index);
Devang Patel197be3d2008-02-22 02:49:49 +00001656 break;
1657 }
Chris Lattner01ff65f2007-05-02 05:16:49 +00001658
Chris Lattner231cbcb2007-05-02 04:27:25 +00001659 case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
Devang Pateld9d99ff2008-02-26 01:29:32 +00001660 {
1661 unsigned Size = Record.size();
1662 if (Size == 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001663 I = ReturnInst::Create();
Devang Pateld9d99ff2008-02-26 01:29:32 +00001664 break;
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001665 }
Devang Pateld9d99ff2008-02-26 01:29:32 +00001666
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001667 unsigned OpNum = 0;
1668 SmallVector<Value *,4> Vs;
1669 do {
1670 Value *Op = NULL;
1671 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1672 return Error("Invalid RET record");
1673 Vs.push_back(Op);
1674 } while(OpNum != Record.size());
1675
1676 const Type *ReturnType = F->getReturnType();
1677 if (Vs.size() > 1 ||
1678 (isa<StructType>(ReturnType) &&
1679 (Vs.empty() || Vs[0]->getType() != ReturnType))) {
1680 Value *RV = UndefValue::get(ReturnType);
1681 for (unsigned i = 0, e = Vs.size(); i != e; ++i) {
1682 I = InsertValueInst::Create(RV, Vs[i], i, "mrv");
1683 CurBB->getInstList().push_back(I);
1684 ValueList.AssignValue(I, NextValueNo++);
1685 RV = I;
1686 }
1687 I = ReturnInst::Create(RV);
Devang Pateld9d99ff2008-02-26 01:29:32 +00001688 break;
1689 }
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001690
1691 I = ReturnInst::Create(Vs[0]);
1692 break;
Chris Lattner231cbcb2007-05-02 04:27:25 +00001693 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001694 case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
Chris Lattnerf61e6452007-05-03 22:09:51 +00001695 if (Record.size() != 1 && Record.size() != 3)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001696 return Error("Invalid BR record");
1697 BasicBlock *TrueDest = getBasicBlock(Record[0]);
1698 if (TrueDest == 0)
1699 return Error("Invalid BR record");
1700
1701 if (Record.size() == 1)
Gabor Greif051a9502008-04-06 20:25:17 +00001702 I = BranchInst::Create(TrueDest);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001703 else {
1704 BasicBlock *FalseDest = getBasicBlock(Record[1]);
1705 Value *Cond = getFnValueByID(Record[2], Type::Int1Ty);
1706 if (FalseDest == 0 || Cond == 0)
1707 return Error("Invalid BR record");
Gabor Greif051a9502008-04-06 20:25:17 +00001708 I = BranchInst::Create(TrueDest, FalseDest, Cond);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001709 }
1710 break;
1711 }
1712 case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, opval, n, n x ops]
1713 if (Record.size() < 3 || (Record.size() & 1) == 0)
1714 return Error("Invalid SWITCH record");
1715 const Type *OpTy = getTypeByID(Record[0]);
1716 Value *Cond = getFnValueByID(Record[1], OpTy);
1717 BasicBlock *Default = getBasicBlock(Record[2]);
1718 if (OpTy == 0 || Cond == 0 || Default == 0)
1719 return Error("Invalid SWITCH record");
1720 unsigned NumCases = (Record.size()-3)/2;
Gabor Greif051a9502008-04-06 20:25:17 +00001721 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001722 for (unsigned i = 0, e = NumCases; i != e; ++i) {
1723 ConstantInt *CaseVal =
1724 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
1725 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
1726 if (CaseVal == 0 || DestBB == 0) {
1727 delete SI;
1728 return Error("Invalid SWITCH record!");
1729 }
1730 SI->addCase(CaseVal, DestBB);
1731 }
1732 I = SI;
1733 break;
1734 }
1735
Duncan Sandsdc024672007-11-27 13:23:08 +00001736 case bitc::FUNC_CODE_INST_INVOKE: {
1737 // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
Chris Lattnera9bb7132007-05-08 05:38:01 +00001738 if (Record.size() < 4) return Error("Invalid INVOKE record");
Devang Patel05988662008-09-25 21:00:45 +00001739 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001740 unsigned CCInfo = Record[1];
1741 BasicBlock *NormalBB = getBasicBlock(Record[2]);
1742 BasicBlock *UnwindBB = getBasicBlock(Record[3]);
Chris Lattner7337ab92007-05-06 00:00:00 +00001743
Chris Lattnera9bb7132007-05-08 05:38:01 +00001744 unsigned OpNum = 4;
Chris Lattner7337ab92007-05-06 00:00:00 +00001745 Value *Callee;
1746 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001747 return Error("Invalid INVOKE record");
1748
Chris Lattner7337ab92007-05-06 00:00:00 +00001749 const PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
1750 const FunctionType *FTy = !CalleeTy ? 0 :
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001751 dyn_cast<FunctionType>(CalleeTy->getElementType());
1752
1753 // Check that the right number of fixed parameters are here.
Chris Lattner7337ab92007-05-06 00:00:00 +00001754 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
1755 Record.size() < OpNum+FTy->getNumParams())
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001756 return Error("Invalid INVOKE record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001757
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001758 SmallVector<Value*, 16> Ops;
Chris Lattner7337ab92007-05-06 00:00:00 +00001759 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
1760 Ops.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
1761 if (Ops.back() == 0) return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001762 }
1763
Chris Lattner7337ab92007-05-06 00:00:00 +00001764 if (!FTy->isVarArg()) {
1765 if (Record.size() != OpNum)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001766 return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001767 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001768 // Read type/value pairs for varargs params.
1769 while (OpNum != Record.size()) {
1770 Value *Op;
1771 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1772 return Error("Invalid INVOKE record");
1773 Ops.push_back(Op);
1774 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001775 }
1776
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001777 I = InvokeInst::Create(Callee, NormalBB, UnwindBB,
1778 Ops.begin(), Ops.end());
Chris Lattner76520192007-05-03 22:34:03 +00001779 cast<InvokeInst>(I)->setCallingConv(CCInfo);
Devang Patel05988662008-09-25 21:00:45 +00001780 cast<InvokeInst>(I)->setAttributes(PAL);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001781 break;
1782 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001783 case bitc::FUNC_CODE_INST_UNWIND: // UNWIND
1784 I = new UnwindInst();
1785 break;
1786 case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
1787 I = new UnreachableInst();
1788 break;
Chris Lattnerabfbf852007-05-06 00:21:25 +00001789 case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
Chris Lattner15e6d172007-05-04 19:11:41 +00001790 if (Record.size() < 1 || ((Record.size()-1)&1))
Chris Lattner2a98cca2007-05-03 18:58:09 +00001791 return Error("Invalid PHI record");
1792 const Type *Ty = getTypeByID(Record[0]);
1793 if (!Ty) return Error("Invalid PHI record");
1794
Gabor Greif051a9502008-04-06 20:25:17 +00001795 PHINode *PN = PHINode::Create(Ty);
Chris Lattner86941612008-04-13 00:14:42 +00001796 PN->reserveOperandSpace((Record.size()-1)/2);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001797
Chris Lattner15e6d172007-05-04 19:11:41 +00001798 for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
1799 Value *V = getFnValueByID(Record[1+i], Ty);
1800 BasicBlock *BB = getBasicBlock(Record[2+i]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001801 if (!V || !BB) return Error("Invalid PHI record");
1802 PN->addIncoming(V, BB);
1803 }
1804 I = PN;
1805 break;
1806 }
1807
1808 case bitc::FUNC_CODE_INST_MALLOC: { // MALLOC: [instty, op, align]
1809 if (Record.size() < 3)
1810 return Error("Invalid MALLOC record");
1811 const PointerType *Ty =
1812 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1813 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1814 unsigned Align = Record[2];
1815 if (!Ty || !Size) return Error("Invalid MALLOC record");
1816 I = new MallocInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1817 break;
1818 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001819 case bitc::FUNC_CODE_INST_FREE: { // FREE: [op, opty]
1820 unsigned OpNum = 0;
1821 Value *Op;
1822 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1823 OpNum != Record.size())
Chris Lattner2a98cca2007-05-03 18:58:09 +00001824 return Error("Invalid FREE record");
1825 I = new FreeInst(Op);
1826 break;
1827 }
1828 case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, op, align]
1829 if (Record.size() < 3)
1830 return Error("Invalid ALLOCA record");
1831 const PointerType *Ty =
1832 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1833 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1834 unsigned Align = Record[2];
1835 if (!Ty || !Size) return Error("Invalid ALLOCA record");
1836 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1837 break;
1838 }
Chris Lattner0579f7f2007-05-03 22:04:19 +00001839 case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
Chris Lattner7337ab92007-05-06 00:00:00 +00001840 unsigned OpNum = 0;
1841 Value *Op;
1842 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1843 OpNum+2 != Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00001844 return Error("Invalid LOAD record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001845
1846 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001847 break;
Chris Lattner0579f7f2007-05-03 22:04:19 +00001848 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001849 case bitc::FUNC_CODE_INST_STORE2: { // STORE2:[ptrty, ptr, val, align, vol]
1850 unsigned OpNum = 0;
1851 Value *Val, *Ptr;
1852 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
1853 getValue(Record, OpNum,
1854 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
1855 OpNum+2 != Record.size())
1856 return Error("Invalid STORE record");
1857
1858 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
1859 break;
1860 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001861 case bitc::FUNC_CODE_INST_STORE: { // STORE:[val, valty, ptr, align, vol]
Christopher Lambfe63fb92007-12-11 08:59:05 +00001862 // FIXME: Legacy form of store instruction. Should be removed in LLVM 3.0.
Chris Lattnerabfbf852007-05-06 00:21:25 +00001863 unsigned OpNum = 0;
1864 Value *Val, *Ptr;
1865 if (getValueTypePair(Record, OpNum, NextValueNo, Val) ||
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001866 getValue(Record, OpNum, PointerType::getUnqual(Val->getType()), Ptr)||
Chris Lattnerabfbf852007-05-06 00:21:25 +00001867 OpNum+2 != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001868 return Error("Invalid STORE record");
Chris Lattnerabfbf852007-05-06 00:21:25 +00001869
1870 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001871 break;
1872 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001873 case bitc::FUNC_CODE_INST_CALL: {
1874 // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
1875 if (Record.size() < 3)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001876 return Error("Invalid CALL record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001877
Devang Patel05988662008-09-25 21:00:45 +00001878 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001879 unsigned CCInfo = Record[1];
1880
1881 unsigned OpNum = 2;
Chris Lattner7337ab92007-05-06 00:00:00 +00001882 Value *Callee;
1883 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
1884 return Error("Invalid CALL record");
1885
1886 const PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
Chris Lattner0579f7f2007-05-03 22:04:19 +00001887 const FunctionType *FTy = 0;
1888 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
Chris Lattner7337ab92007-05-06 00:00:00 +00001889 if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001890 return Error("Invalid CALL record");
1891
1892 SmallVector<Value*, 16> Args;
1893 // Read the fixed params.
Chris Lattner7337ab92007-05-06 00:00:00 +00001894 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001895 if (FTy->getParamType(i)->getTypeID()==Type::LabelTyID)
1896 Args.push_back(getBasicBlock(Record[OpNum]));
1897 else
1898 Args.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
Chris Lattner0579f7f2007-05-03 22:04:19 +00001899 if (Args.back() == 0) return Error("Invalid CALL record");
1900 }
1901
Chris Lattner0579f7f2007-05-03 22:04:19 +00001902 // Read type/value pairs for varargs params.
Chris Lattner0579f7f2007-05-03 22:04:19 +00001903 if (!FTy->isVarArg()) {
Chris Lattner7337ab92007-05-06 00:00:00 +00001904 if (OpNum != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001905 return Error("Invalid CALL record");
1906 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001907 while (OpNum != Record.size()) {
1908 Value *Op;
1909 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1910 return Error("Invalid CALL record");
1911 Args.push_back(Op);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001912 }
1913 }
1914
Gabor Greif051a9502008-04-06 20:25:17 +00001915 I = CallInst::Create(Callee, Args.begin(), Args.end());
Chris Lattner76520192007-05-03 22:34:03 +00001916 cast<CallInst>(I)->setCallingConv(CCInfo>>1);
1917 cast<CallInst>(I)->setTailCall(CCInfo & 1);
Devang Patel05988662008-09-25 21:00:45 +00001918 cast<CallInst>(I)->setAttributes(PAL);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001919 break;
1920 }
1921 case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
1922 if (Record.size() < 3)
1923 return Error("Invalid VAARG record");
1924 const Type *OpTy = getTypeByID(Record[0]);
1925 Value *Op = getFnValueByID(Record[1], OpTy);
1926 const Type *ResTy = getTypeByID(Record[2]);
1927 if (!OpTy || !Op || !ResTy)
1928 return Error("Invalid VAARG record");
1929 I = new VAArgInst(Op, ResTy);
1930 break;
1931 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001932 }
1933
1934 // Add instruction to end of current BB. If there is no current BB, reject
1935 // this file.
1936 if (CurBB == 0) {
1937 delete I;
1938 return Error("Invalid instruction with no BB");
1939 }
1940 CurBB->getInstList().push_back(I);
1941
1942 // If this was a terminator instruction, move to the next block.
1943 if (isa<TerminatorInst>(I)) {
1944 ++CurBBNo;
1945 CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : 0;
1946 }
1947
1948 // Non-void values get registered in the value table for future use.
1949 if (I && I->getType() != Type::VoidTy)
1950 ValueList.AssignValue(I, NextValueNo++);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001951 }
1952
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001953 // Check the function list for unresolved values.
1954 if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
1955 if (A->getParent() == 0) {
1956 // We found at least one unresolved value. Nuke them all to avoid leaks.
1957 for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
1958 if ((A = dyn_cast<Argument>(ValueList.back())) && A->getParent() == 0) {
1959 A->replaceAllUsesWith(UndefValue::get(A->getType()));
1960 delete A;
1961 }
1962 }
Chris Lattner35a04702007-05-04 03:50:29 +00001963 return Error("Never resolved value found in function!");
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001964 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001965 }
Chris Lattner980e5aa2007-05-01 05:52:21 +00001966
1967 // Trim the value list down to the size it was before we parsed this function.
1968 ValueList.shrinkTo(ModuleValueListSize);
1969 std::vector<BasicBlock*>().swap(FunctionBBs);
1970
Chris Lattner48f84872007-05-01 04:59:48 +00001971 return false;
1972}
1973
Chris Lattnerb348bb82007-05-18 04:02:46 +00001974//===----------------------------------------------------------------------===//
1975// ModuleProvider implementation
1976//===----------------------------------------------------------------------===//
1977
1978
1979bool BitcodeReader::materializeFunction(Function *F, std::string *ErrInfo) {
1980 // If it already is material, ignore the request.
Gabor Greifa99be512007-07-05 17:07:56 +00001981 if (!F->hasNotBeenReadFromBitcode()) return false;
Chris Lattnerb348bb82007-05-18 04:02:46 +00001982
1983 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator DFII =
1984 DeferredFunctionInfo.find(F);
1985 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
1986
1987 // Move the bit stream to the saved position of the deferred function body and
1988 // restore the real linkage type for the function.
1989 Stream.JumpToBit(DFII->second.first);
1990 F->setLinkage((GlobalValue::LinkageTypes)DFII->second.second);
1991
1992 if (ParseFunctionBody(F)) {
1993 if (ErrInfo) *ErrInfo = ErrorString;
1994 return true;
1995 }
Chandler Carruth69940402007-08-04 01:51:18 +00001996
1997 // Upgrade any old intrinsic calls in the function.
1998 for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
1999 E = UpgradedIntrinsics.end(); I != E; ++I) {
2000 if (I->first != I->second) {
2001 for (Value::use_iterator UI = I->first->use_begin(),
2002 UE = I->first->use_end(); UI != UE; ) {
2003 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2004 UpgradeIntrinsicCall(CI, I->second);
2005 }
2006 }
2007 }
Chris Lattnerb348bb82007-05-18 04:02:46 +00002008
2009 return false;
2010}
2011
2012void BitcodeReader::dematerializeFunction(Function *F) {
2013 // If this function isn't materialized, or if it is a proto, this is a noop.
Gabor Greifa99be512007-07-05 17:07:56 +00002014 if (F->hasNotBeenReadFromBitcode() || F->isDeclaration())
Chris Lattnerb348bb82007-05-18 04:02:46 +00002015 return;
2016
2017 assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
2018
2019 // Just forget the function body, we can remat it later.
2020 F->deleteBody();
2021 F->setLinkage(GlobalValue::GhostLinkage);
2022}
2023
2024
2025Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
2026 for (DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator I =
2027 DeferredFunctionInfo.begin(), E = DeferredFunctionInfo.end(); I != E;
2028 ++I) {
2029 Function *F = I->first;
Gabor Greifa99be512007-07-05 17:07:56 +00002030 if (F->hasNotBeenReadFromBitcode() &&
Chris Lattnerb348bb82007-05-18 04:02:46 +00002031 materializeFunction(F, ErrInfo))
2032 return 0;
2033 }
Chandler Carruth69940402007-08-04 01:51:18 +00002034
2035 // Upgrade any intrinsic calls that slipped through (should not happen!) and
2036 // delete the old functions to clean up. We can't do this unless the entire
2037 // module is materialized because there could always be another function body
2038 // with calls to the old function.
2039 for (std::vector<std::pair<Function*, Function*> >::iterator I =
2040 UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
2041 if (I->first != I->second) {
2042 for (Value::use_iterator UI = I->first->use_begin(),
2043 UE = I->first->use_end(); UI != UE; ) {
2044 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2045 UpgradeIntrinsicCall(CI, I->second);
2046 }
2047 ValueList.replaceUsesOfWith(I->first, I->second);
2048 I->first->eraseFromParent();
2049 }
2050 }
2051 std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
2052
Chris Lattnerb348bb82007-05-18 04:02:46 +00002053 return TheModule;
2054}
2055
2056
2057/// This method is provided by the parent ModuleProvde class and overriden
2058/// here. It simply releases the module from its provided and frees up our
2059/// state.
2060/// @brief Release our hold on the generated module
2061Module *BitcodeReader::releaseModule(std::string *ErrInfo) {
2062 // Since we're losing control of this Module, we must hand it back complete
2063 Module *M = ModuleProvider::releaseModule(ErrInfo);
2064 FreeState();
2065 return M;
2066}
2067
Chris Lattner48f84872007-05-01 04:59:48 +00002068
Chris Lattnerc453f762007-04-29 07:54:31 +00002069//===----------------------------------------------------------------------===//
2070// External interface
2071//===----------------------------------------------------------------------===//
2072
2073/// getBitcodeModuleProvider - lazy function-at-a-time loading from a file.
2074///
2075ModuleProvider *llvm::getBitcodeModuleProvider(MemoryBuffer *Buffer,
2076 std::string *ErrMsg) {
2077 BitcodeReader *R = new BitcodeReader(Buffer);
2078 if (R->ParseBitcode()) {
2079 if (ErrMsg)
2080 *ErrMsg = R->getErrorString();
2081
2082 // Don't let the BitcodeReader dtor delete 'Buffer'.
2083 R->releaseMemoryBuffer();
2084 delete R;
2085 return 0;
2086 }
2087 return R;
2088}
2089
2090/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
2091/// If an error occurs, return null and fill in *ErrMsg if non-null.
2092Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, std::string *ErrMsg){
2093 BitcodeReader *R;
2094 R = static_cast<BitcodeReader*>(getBitcodeModuleProvider(Buffer, ErrMsg));
2095 if (!R) return 0;
2096
Chris Lattnerb348bb82007-05-18 04:02:46 +00002097 // Read in the entire module.
2098 Module *M = R->materializeModule(ErrMsg);
2099
2100 // Don't let the BitcodeReader dtor delete 'Buffer', regardless of whether
2101 // there was an error.
Chris Lattnerc453f762007-04-29 07:54:31 +00002102 R->releaseMemoryBuffer();
Chris Lattnerb348bb82007-05-18 04:02:46 +00002103
2104 // If there was no error, tell ModuleProvider not to delete it when its dtor
2105 // is run.
2106 if (M)
2107 M = R->releaseModule(ErrMsg);
2108
Chris Lattnerc453f762007-04-29 07:54:31 +00002109 delete R;
2110 return M;
2111}