blob: 87700284c483dae87725c9d5310ff237e1dd003f [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;
Rafael Espindolabb46f522009-01-15 20:18:42 +000070 case 9: return GlobalValue::PrivateLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000071 }
72}
73
74static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
75 switch (Val) {
76 default: // Map unknown visibilities to default.
77 case 0: return GlobalValue::DefaultVisibility;
78 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +000079 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000080 }
81}
82
Chris Lattnerf581c3b2007-04-24 07:07:11 +000083static int GetDecodedCastOpcode(unsigned Val) {
84 switch (Val) {
85 default: return -1;
86 case bitc::CAST_TRUNC : return Instruction::Trunc;
87 case bitc::CAST_ZEXT : return Instruction::ZExt;
88 case bitc::CAST_SEXT : return Instruction::SExt;
89 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
90 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
91 case bitc::CAST_UITOFP : return Instruction::UIToFP;
92 case bitc::CAST_SITOFP : return Instruction::SIToFP;
93 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
94 case bitc::CAST_FPEXT : return Instruction::FPExt;
95 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
96 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
97 case bitc::CAST_BITCAST : return Instruction::BitCast;
98 }
99}
100static int GetDecodedBinaryOpcode(unsigned Val, const Type *Ty) {
101 switch (Val) {
102 default: return -1;
103 case bitc::BINOP_ADD: return Instruction::Add;
104 case bitc::BINOP_SUB: return Instruction::Sub;
105 case bitc::BINOP_MUL: return Instruction::Mul;
106 case bitc::BINOP_UDIV: return Instruction::UDiv;
107 case bitc::BINOP_SDIV:
108 return Ty->isFPOrFPVector() ? Instruction::FDiv : Instruction::SDiv;
109 case bitc::BINOP_UREM: return Instruction::URem;
110 case bitc::BINOP_SREM:
111 return Ty->isFPOrFPVector() ? Instruction::FRem : Instruction::SRem;
112 case bitc::BINOP_SHL: return Instruction::Shl;
113 case bitc::BINOP_LSHR: return Instruction::LShr;
114 case bitc::BINOP_ASHR: return Instruction::AShr;
115 case bitc::BINOP_AND: return Instruction::And;
116 case bitc::BINOP_OR: return Instruction::Or;
117 case bitc::BINOP_XOR: return Instruction::Xor;
118 }
119}
120
Gabor Greifefe65362008-05-10 08:32:32 +0000121namespace llvm {
Chris Lattner522b7b12007-04-24 05:48:56 +0000122namespace {
123 /// @brief A class for maintaining the slot number definition
124 /// as a placeholder for the actual definition for forward constants defs.
125 class ConstantPlaceHolder : public ConstantExpr {
126 ConstantPlaceHolder(); // DO NOT IMPLEMENT
127 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Gabor Greif051a9502008-04-06 20:25:17 +0000128 public:
129 // allocate space for exactly one operand
130 void *operator new(size_t s) {
131 return User::operator new(s, 1);
132 }
Dan Gohmanadf3eab2007-11-19 15:30:20 +0000133 explicit ConstantPlaceHolder(const Type *Ty)
Gabor Greifefe65362008-05-10 08:32:32 +0000134 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
135 Op<0>() = UndefValue::get(Type::Int32Ty);
Chris Lattner522b7b12007-04-24 05:48:56 +0000136 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000137
138 /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
139 static inline bool classof(const ConstantPlaceHolder *) { return true; }
140 static bool classof(const Value *V) {
141 return isa<ConstantExpr>(V) &&
142 cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
143 }
144
145
Gabor Greifefe65362008-05-10 08:32:32 +0000146 /// Provide fast operand accessors
147 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner522b7b12007-04-24 05:48:56 +0000148 };
149}
150
Gabor Greifefe65362008-05-10 08:32:32 +0000151
152 // FIXME: can we inherit this from ConstantExpr?
153template <>
154struct OperandTraits<ConstantPlaceHolder> : FixedNumOperandTraits<1> {
155};
156
157DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantPlaceHolder, Value)
158}
159
160void BitcodeReaderValueList::resize(unsigned Desired) {
161 if (Desired > Capacity) {
162 // Since we expect many values to come from the bitcode file we better
163 // allocate the double amount, so that the array size grows exponentially
164 // at each reallocation. Also, add a small amount of 100 extra elements
165 // each time, to reallocate less frequently when the array is still small.
166 //
167 Capacity = Desired * 2 + 100;
168 Use *New = allocHungoffUses(Capacity);
169 Use *Old = OperandList;
170 unsigned Ops = getNumOperands();
171 for (int i(Ops - 1); i >= 0; --i)
172 New[i] = Old[i].get();
173 OperandList = New;
174 if (Old) Use::zap(Old, Old + Ops, true);
175 }
176}
177
Chris Lattner522b7b12007-04-24 05:48:56 +0000178Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
179 const Type *Ty) {
180 if (Idx >= size()) {
181 // Insert a bunch of null values.
Gabor Greifefe65362008-05-10 08:32:32 +0000182 resize(Idx + 1);
Chris Lattner522b7b12007-04-24 05:48:56 +0000183 NumOperands = Idx+1;
184 }
185
Gabor Greifefe65362008-05-10 08:32:32 +0000186 if (Value *V = OperandList[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000187 assert(Ty == V->getType() && "Type mismatch in constant table!");
188 return cast<Constant>(V);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000189 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000190
191 // Create and return a placeholder, which will later be RAUW'd.
192 Constant *C = new ConstantPlaceHolder(Ty);
Gabor Greif6c80c382008-05-26 21:33:52 +0000193 OperandList[Idx] = C;
Chris Lattner522b7b12007-04-24 05:48:56 +0000194 return C;
195}
196
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000197Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, const Type *Ty) {
198 if (Idx >= size()) {
199 // Insert a bunch of null values.
Gabor Greifefe65362008-05-10 08:32:32 +0000200 resize(Idx + 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000201 NumOperands = Idx+1;
202 }
203
Gabor Greifefe65362008-05-10 08:32:32 +0000204 if (Value *V = OperandList[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000205 assert((Ty == 0 || Ty == V->getType()) && "Type mismatch in value table!");
206 return V;
207 }
208
Chris Lattner01ff65f2007-05-02 05:16:49 +0000209 // No type specified, must be invalid reference.
210 if (Ty == 0) return 0;
211
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000212 // Create and return a placeholder, which will later be RAUW'd.
213 Value *V = new Argument(Ty);
Gabor Greif6c80c382008-05-26 21:33:52 +0000214 OperandList[Idx] = V;
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000215 return V;
216}
217
Chris Lattnerea693df2008-08-21 02:34:16 +0000218/// ResolveConstantForwardRefs - Once all constants are read, this method bulk
219/// resolves any forward references. The idea behind this is that we sometimes
220/// get constants (such as large arrays) which reference *many* forward ref
221/// constants. Replacing each of these causes a lot of thrashing when
222/// building/reuniquing the constant. Instead of doing this, we look at all the
223/// uses and rewrite all the place holders at once for any constant that uses
224/// a placeholder.
225void BitcodeReaderValueList::ResolveConstantForwardRefs() {
226 // Sort the values by-pointer so that they are efficient to look up with a
227 // binary search.
228 std::sort(ResolveConstants.begin(), ResolveConstants.end());
229
230 SmallVector<Constant*, 64> NewOps;
231
232 while (!ResolveConstants.empty()) {
233 Value *RealVal = getOperand(ResolveConstants.back().second);
234 Constant *Placeholder = ResolveConstants.back().first;
235 ResolveConstants.pop_back();
236
237 // Loop over all users of the placeholder, updating them to reference the
238 // new value. If they reference more than one placeholder, update them all
239 // at once.
240 while (!Placeholder->use_empty()) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000241 Value::use_iterator UI = Placeholder->use_begin();
242
Chris Lattnerea693df2008-08-21 02:34:16 +0000243 // If the using object isn't uniqued, just update the operands. This
244 // handles instructions and initializers for global variables.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000245 if (!isa<Constant>(*UI) || isa<GlobalValue>(*UI)) {
246 UI.getUse().set(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000247 continue;
248 }
249
250 // Otherwise, we have a constant that uses the placeholder. Replace that
251 // constant with a new constant that has *all* placeholder uses updated.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000252 Constant *UserC = cast<Constant>(*UI);
Chris Lattnerea693df2008-08-21 02:34:16 +0000253 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
254 I != E; ++I) {
255 Value *NewOp;
256 if (!isa<ConstantPlaceHolder>(*I)) {
257 // Not a placeholder reference.
258 NewOp = *I;
259 } else if (*I == Placeholder) {
260 // Common case is that it just references this one placeholder.
261 NewOp = RealVal;
262 } else {
263 // Otherwise, look up the placeholder in ResolveConstants.
264 ResolveConstantsTy::iterator It =
265 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
266 std::pair<Constant*, unsigned>(cast<Constant>(*I),
267 0));
268 assert(It != ResolveConstants.end() && It->first == *I);
269 NewOp = this->getOperand(It->second);
270 }
271
272 NewOps.push_back(cast<Constant>(NewOp));
273 }
274
275 // Make the new constant.
276 Constant *NewC;
277 if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
278 NewC = ConstantArray::get(UserCA->getType(), &NewOps[0], NewOps.size());
279 } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
280 NewC = ConstantStruct::get(&NewOps[0], NewOps.size(),
281 UserCS->getType()->isPacked());
282 } else if (isa<ConstantVector>(UserC)) {
283 NewC = ConstantVector::get(&NewOps[0], NewOps.size());
284 } else {
285 // Must be a constant expression.
286 NewC = cast<ConstantExpr>(UserC)->getWithOperands(&NewOps[0],
287 NewOps.size());
288 }
289
290 UserC->replaceAllUsesWith(NewC);
291 UserC->destroyConstant();
292 NewOps.clear();
293 }
294
295 delete Placeholder;
296 }
297}
298
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000299
300const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
301 // If the TypeID is in range, return it.
302 if (ID < TypeList.size())
303 return TypeList[ID].get();
304 if (!isTypeTable) return 0;
305
306 // The type table allows forward references. Push as many Opaque types as
307 // needed to get up to ID.
308 while (TypeList.size() <= ID)
309 TypeList.push_back(OpaqueType::get());
310 return TypeList.back().get();
311}
312
Chris Lattner48c85b82007-05-04 03:30:17 +0000313//===----------------------------------------------------------------------===//
314// Functions for parsing blocks from the bitcode file
315//===----------------------------------------------------------------------===//
316
Devang Patel05988662008-09-25 21:00:45 +0000317bool BitcodeReader::ParseAttributeBlock() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000318 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
Chris Lattner48c85b82007-05-04 03:30:17 +0000319 return Error("Malformed block record");
320
Devang Patel19c87462008-09-26 22:53:05 +0000321 if (!MAttributes.empty())
Chris Lattner48c85b82007-05-04 03:30:17 +0000322 return Error("Multiple PARAMATTR blocks found!");
323
324 SmallVector<uint64_t, 64> Record;
325
Devang Patel05988662008-09-25 21:00:45 +0000326 SmallVector<AttributeWithIndex, 8> Attrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000327
328 // Read all the records.
329 while (1) {
330 unsigned Code = Stream.ReadCode();
331 if (Code == bitc::END_BLOCK) {
332 if (Stream.ReadBlockEnd())
333 return Error("Error at end of PARAMATTR block");
334 return false;
335 }
336
337 if (Code == bitc::ENTER_SUBBLOCK) {
338 // No known subblocks, always skip them.
339 Stream.ReadSubBlockID();
340 if (Stream.SkipBlock())
341 return Error("Malformed block record");
342 continue;
343 }
344
345 if (Code == bitc::DEFINE_ABBREV) {
346 Stream.ReadAbbrevRecord();
347 continue;
348 }
349
350 // Read a record.
351 Record.clear();
352 switch (Stream.ReadRecord(Code, Record)) {
353 default: // Default behavior: ignore.
354 break;
355 case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [paramidx0, attr0, ...]
356 if (Record.size() & 1)
357 return Error("Invalid ENTRY record");
358
Chris Lattner9a6cb152008-10-05 18:22:09 +0000359 // FIXME : Remove this autoupgrade code in LLVM 3.0.
Devang Patel19c87462008-09-26 22:53:05 +0000360 // If Function attributes are using index 0 then transfer them
Chris Lattner9a6cb152008-10-05 18:22:09 +0000361 // to index ~0. Index 0 is used for return value attributes but used to be
362 // used for function attributes.
Devang Patel19c87462008-09-26 22:53:05 +0000363 Attributes RetAttribute = Attribute::None;
364 Attributes FnAttribute = Attribute::None;
Chris Lattner48c85b82007-05-04 03:30:17 +0000365 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Nick Lewycky73ddd4f2008-12-19 09:38:31 +0000366 // FIXME: remove in LLVM 3.0
367 // The alignment is stored as a 16-bit raw value from bits 31--16.
368 // We shift the bits above 31 down by 11 bits.
369
370 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16;
371 if (Alignment && !isPowerOf2_32(Alignment))
372 return Error("Alignment is not a power of two.");
373
374 Attributes ReconstitutedAttr = Record[i+1] & 0xffff;
375 if (Alignment)
376 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment);
377 ReconstitutedAttr |= (Record[i+1] & (0xffffull << 32)) >> 11;
378 Record[i+1] = ReconstitutedAttr;
379
Devang Patel19c87462008-09-26 22:53:05 +0000380 if (Record[i] == 0)
381 RetAttribute = Record[i+1];
382 else if (Record[i] == ~0U)
383 FnAttribute = Record[i+1];
384 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000385
386 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
387 Attribute::ReadOnly|Attribute::ReadNone);
388
389 if (FnAttribute == Attribute::None && RetAttribute != Attribute::None &&
390 (RetAttribute & OldRetAttrs) != 0) {
391 if (FnAttribute == Attribute::None) { // add a slot so they get added.
392 Record.push_back(~0U);
393 Record.push_back(0);
Devang Patel19c87462008-09-26 22:53:05 +0000394 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000395
396 FnAttribute |= RetAttribute & OldRetAttrs;
397 RetAttribute &= ~OldRetAttrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000398 }
Chris Lattner461edd92008-03-12 02:25:52 +0000399
Devang Patel19c87462008-09-26 22:53:05 +0000400 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattner9a6cb152008-10-05 18:22:09 +0000401 if (Record[i] == 0) {
402 if (RetAttribute != Attribute::None)
403 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
404 } else if (Record[i] == ~0U) {
405 if (FnAttribute != Attribute::None)
406 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute));
407 } else if (Record[i+1] != Attribute::None)
Devang Patel19c87462008-09-26 22:53:05 +0000408 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1]));
409 }
Devang Patel19c87462008-09-26 22:53:05 +0000410
411 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
Chris Lattner48c85b82007-05-04 03:30:17 +0000412 Attrs.clear();
413 break;
414 }
Duncan Sands5e41f652007-11-20 14:09:29 +0000415 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000416 }
417}
418
419
Chris Lattner86697142007-05-01 05:01:34 +0000420bool BitcodeReader::ParseTypeTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000421 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000422 return Error("Malformed block record");
423
424 if (!TypeList.empty())
425 return Error("Multiple TYPE_BLOCKs found!");
426
427 SmallVector<uint64_t, 64> Record;
428 unsigned NumRecords = 0;
429
430 // Read all the records for this type table.
431 while (1) {
432 unsigned Code = Stream.ReadCode();
433 if (Code == bitc::END_BLOCK) {
434 if (NumRecords != TypeList.size())
435 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000436 if (Stream.ReadBlockEnd())
437 return Error("Error at end of type table block");
438 return false;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000439 }
440
441 if (Code == bitc::ENTER_SUBBLOCK) {
442 // No known subblocks, always skip them.
443 Stream.ReadSubBlockID();
444 if (Stream.SkipBlock())
445 return Error("Malformed block record");
446 continue;
447 }
448
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000449 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000450 Stream.ReadAbbrevRecord();
451 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000452 }
453
454 // Read a record.
455 Record.clear();
456 const Type *ResultTy = 0;
457 switch (Stream.ReadRecord(Code, Record)) {
458 default: // Default behavior: unknown type.
459 ResultTy = 0;
460 break;
461 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
462 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
463 // type list. This allows us to reserve space.
464 if (Record.size() < 1)
465 return Error("Invalid TYPE_CODE_NUMENTRY record");
466 TypeList.reserve(Record[0]);
467 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000468 case bitc::TYPE_CODE_VOID: // VOID
469 ResultTy = Type::VoidTy;
470 break;
471 case bitc::TYPE_CODE_FLOAT: // FLOAT
472 ResultTy = Type::FloatTy;
473 break;
474 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
475 ResultTy = Type::DoubleTy;
476 break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000477 case bitc::TYPE_CODE_X86_FP80: // X86_FP80
478 ResultTy = Type::X86_FP80Ty;
479 break;
480 case bitc::TYPE_CODE_FP128: // FP128
481 ResultTy = Type::FP128Ty;
482 break;
483 case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
484 ResultTy = Type::PPC_FP128Ty;
485 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000486 case bitc::TYPE_CODE_LABEL: // LABEL
487 ResultTy = Type::LabelTy;
488 break;
489 case bitc::TYPE_CODE_OPAQUE: // OPAQUE
490 ResultTy = 0;
491 break;
492 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
493 if (Record.size() < 1)
494 return Error("Invalid Integer type record");
495
496 ResultTy = IntegerType::get(Record[0]);
497 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000498 case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
499 // [pointee type, address space]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000500 if (Record.size() < 1)
501 return Error("Invalid POINTER type record");
Christopher Lambfe63fb92007-12-11 08:59:05 +0000502 unsigned AddressSpace = 0;
503 if (Record.size() == 2)
504 AddressSpace = Record[1];
505 ResultTy = PointerType::get(getTypeByID(Record[0], true), AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000506 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000507 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000508 case bitc::TYPE_CODE_FUNCTION: {
Chris Lattnera1afde72007-11-27 17:48:06 +0000509 // FIXME: attrid is dead, remove it in LLVM 3.0
510 // FUNCTION: [vararg, attrid, retty, paramty x N]
511 if (Record.size() < 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000512 return Error("Invalid FUNCTION type record");
513 std::vector<const Type*> ArgTys;
Chris Lattnera1afde72007-11-27 17:48:06 +0000514 for (unsigned i = 3, e = Record.size(); i != e; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000515 ArgTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000516
Chris Lattnera1afde72007-11-27 17:48:06 +0000517 ResultTy = FunctionType::get(getTypeByID(Record[2], true), ArgTys,
Duncan Sandsdc024672007-11-27 13:23:08 +0000518 Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000519 break;
520 }
Chris Lattner15e6d172007-05-04 19:11:41 +0000521 case bitc::TYPE_CODE_STRUCT: { // STRUCT: [ispacked, eltty x N]
Chris Lattner7108dce2007-05-06 08:21:50 +0000522 if (Record.size() < 1)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000523 return Error("Invalid STRUCT type record");
524 std::vector<const Type*> EltTys;
Chris Lattner15e6d172007-05-04 19:11:41 +0000525 for (unsigned i = 1, e = Record.size(); i != e; ++i)
526 EltTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000527 ResultTy = StructType::get(EltTys, Record[0]);
528 break;
529 }
530 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
531 if (Record.size() < 2)
532 return Error("Invalid ARRAY type record");
533 ResultTy = ArrayType::get(getTypeByID(Record[1], true), Record[0]);
534 break;
535 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
536 if (Record.size() < 2)
537 return Error("Invalid VECTOR type record");
538 ResultTy = VectorType::get(getTypeByID(Record[1], true), Record[0]);
539 break;
540 }
541
542 if (NumRecords == TypeList.size()) {
543 // If this is a new type slot, just append it.
544 TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get());
545 ++NumRecords;
546 } else if (ResultTy == 0) {
547 // Otherwise, this was forward referenced, so an opaque type was created,
548 // but the result type is actually just an opaque. Leave the one we
549 // created previously.
550 ++NumRecords;
551 } else {
552 // Otherwise, this was forward referenced, so an opaque type was created.
553 // Resolve the opaque type to the real type now.
554 assert(NumRecords < TypeList.size() && "Typelist imbalance");
555 const OpaqueType *OldTy = cast<OpaqueType>(TypeList[NumRecords++].get());
556
557 // Don't directly push the new type on the Tab. Instead we want to replace
558 // the opaque type we previously inserted with the new concrete value. The
559 // refinement from the abstract (opaque) type to the new type causes all
560 // uses of the abstract type to use the concrete type (NewTy). This will
561 // also cause the opaque type to be deleted.
562 const_cast<OpaqueType*>(OldTy)->refineAbstractTypeTo(ResultTy);
563
564 // This should have replaced the old opaque type with the new type in the
Chris Lattner0eef0802007-04-24 04:04:35 +0000565 // value table... or with a preexisting type that was already in the
566 // system. Let's just make sure it did.
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000567 assert(TypeList[NumRecords-1].get() != OldTy &&
568 "refineAbstractType didn't work!");
569 }
570 }
571}
572
573
Chris Lattner86697142007-05-01 05:01:34 +0000574bool BitcodeReader::ParseTypeSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000575 if (Stream.EnterSubBlock(bitc::TYPE_SYMTAB_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000576 return Error("Malformed block record");
577
578 SmallVector<uint64_t, 64> Record;
579
580 // Read all the records for this type table.
581 std::string TypeName;
582 while (1) {
583 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000584 if (Code == bitc::END_BLOCK) {
585 if (Stream.ReadBlockEnd())
586 return Error("Error at end of type symbol table block");
587 return false;
588 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000589
590 if (Code == bitc::ENTER_SUBBLOCK) {
591 // No known subblocks, always skip them.
592 Stream.ReadSubBlockID();
593 if (Stream.SkipBlock())
594 return Error("Malformed block record");
595 continue;
596 }
597
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000598 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000599 Stream.ReadAbbrevRecord();
600 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000601 }
602
603 // Read a record.
604 Record.clear();
605 switch (Stream.ReadRecord(Code, Record)) {
606 default: // Default behavior: unknown type.
607 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000608 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000609 if (ConvertToString(Record, 1, TypeName))
610 return Error("Invalid TST_ENTRY record");
611 unsigned TypeID = Record[0];
612 if (TypeID >= TypeList.size())
613 return Error("Invalid Type ID in TST_ENTRY record");
614
615 TheModule->addTypeName(TypeName, TypeList[TypeID].get());
616 TypeName.clear();
617 break;
618 }
619 }
620}
621
Chris Lattner86697142007-05-01 05:01:34 +0000622bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000623 if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
Chris Lattner0b2482a2007-04-23 21:26:05 +0000624 return Error("Malformed block record");
625
626 SmallVector<uint64_t, 64> Record;
627
628 // Read all the records for this value table.
629 SmallString<128> ValueName;
630 while (1) {
631 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000632 if (Code == bitc::END_BLOCK) {
633 if (Stream.ReadBlockEnd())
634 return Error("Error at end of value symbol table block");
635 return false;
636 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000637 if (Code == bitc::ENTER_SUBBLOCK) {
638 // No known subblocks, always skip them.
639 Stream.ReadSubBlockID();
640 if (Stream.SkipBlock())
641 return Error("Malformed block record");
642 continue;
643 }
644
645 if (Code == bitc::DEFINE_ABBREV) {
646 Stream.ReadAbbrevRecord();
647 continue;
648 }
649
650 // Read a record.
651 Record.clear();
652 switch (Stream.ReadRecord(Code, Record)) {
653 default: // Default behavior: unknown type.
654 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000655 case bitc::VST_CODE_ENTRY: { // VST_ENTRY: [valueid, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000656 if (ConvertToString(Record, 1, ValueName))
657 return Error("Invalid TST_ENTRY record");
658 unsigned ValueID = Record[0];
659 if (ValueID >= ValueList.size())
660 return Error("Invalid Value ID in VST_ENTRY record");
661 Value *V = ValueList[ValueID];
662
663 V->setName(&ValueName[0], ValueName.size());
664 ValueName.clear();
665 break;
Reid Spencerc8f8a242007-05-04 01:43:33 +0000666 }
667 case bitc::VST_CODE_BBENTRY: {
Chris Lattnere825ed52007-05-03 22:18:21 +0000668 if (ConvertToString(Record, 1, ValueName))
669 return Error("Invalid VST_BBENTRY record");
670 BasicBlock *BB = getBasicBlock(Record[0]);
671 if (BB == 0)
672 return Error("Invalid BB ID in VST_BBENTRY record");
673
674 BB->setName(&ValueName[0], ValueName.size());
675 ValueName.clear();
676 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000677 }
Reid Spencerc8f8a242007-05-04 01:43:33 +0000678 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000679 }
680}
681
Chris Lattner0eef0802007-04-24 04:04:35 +0000682/// DecodeSignRotatedValue - Decode a signed value stored with the sign bit in
683/// the LSB for dense VBR encoding.
684static uint64_t DecodeSignRotatedValue(uint64_t V) {
685 if ((V & 1) == 0)
686 return V >> 1;
687 if (V != 1)
688 return -(V >> 1);
689 // There is no such thing as -0 with integers. "-0" really means MININT.
690 return 1ULL << 63;
691}
692
Chris Lattner07d98b42007-04-26 02:46:40 +0000693/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
694/// values and aliases that we can.
695bool BitcodeReader::ResolveGlobalAndAliasInits() {
696 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
697 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
698
699 GlobalInitWorklist.swap(GlobalInits);
700 AliasInitWorklist.swap(AliasInits);
701
702 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +0000703 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +0000704 if (ValID >= ValueList.size()) {
705 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +0000706 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +0000707 } else {
708 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
709 GlobalInitWorklist.back().first->setInitializer(C);
710 else
711 return Error("Global variable initializer is not a constant!");
712 }
713 GlobalInitWorklist.pop_back();
714 }
715
716 while (!AliasInitWorklist.empty()) {
717 unsigned ValID = AliasInitWorklist.back().second;
718 if (ValID >= ValueList.size()) {
719 AliasInits.push_back(AliasInitWorklist.back());
720 } else {
721 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +0000722 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +0000723 else
724 return Error("Alias initializer is not a constant!");
725 }
726 AliasInitWorklist.pop_back();
727 }
728 return false;
729}
730
731
Chris Lattner86697142007-05-01 05:01:34 +0000732bool BitcodeReader::ParseConstants() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000733 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
Chris Lattnere16504e2007-04-24 03:30:34 +0000734 return Error("Malformed block record");
735
736 SmallVector<uint64_t, 64> Record;
737
738 // Read all the records for this value table.
739 const Type *CurTy = Type::Int32Ty;
Chris Lattner522b7b12007-04-24 05:48:56 +0000740 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +0000741 while (1) {
742 unsigned Code = Stream.ReadCode();
Chris Lattnerea693df2008-08-21 02:34:16 +0000743 if (Code == bitc::END_BLOCK)
744 break;
Chris Lattnere16504e2007-04-24 03:30:34 +0000745
746 if (Code == bitc::ENTER_SUBBLOCK) {
747 // No known subblocks, always skip them.
748 Stream.ReadSubBlockID();
749 if (Stream.SkipBlock())
750 return Error("Malformed block record");
751 continue;
752 }
753
754 if (Code == bitc::DEFINE_ABBREV) {
755 Stream.ReadAbbrevRecord();
756 continue;
757 }
758
759 // Read a record.
760 Record.clear();
761 Value *V = 0;
762 switch (Stream.ReadRecord(Code, Record)) {
763 default: // Default behavior: unknown constant
764 case bitc::CST_CODE_UNDEF: // UNDEF
765 V = UndefValue::get(CurTy);
766 break;
767 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
768 if (Record.empty())
769 return Error("Malformed CST_SETTYPE record");
770 if (Record[0] >= TypeList.size())
771 return Error("Invalid Type ID in CST_SETTYPE record");
772 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +0000773 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +0000774 case bitc::CST_CODE_NULL: // NULL
775 V = Constant::getNullValue(CurTy);
776 break;
777 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000778 if (!isa<IntegerType>(CurTy) || Record.empty())
779 return Error("Invalid CST_INTEGER record");
780 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
781 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000782 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
783 if (!isa<IntegerType>(CurTy) || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +0000784 return Error("Invalid WIDE_INTEGER record");
785
Chris Lattner15e6d172007-05-04 19:11:41 +0000786 unsigned NumWords = Record.size();
Chris Lattner084a8442007-04-24 17:22:05 +0000787 SmallVector<uint64_t, 8> Words;
788 Words.resize(NumWords);
Chris Lattner0eef0802007-04-24 04:04:35 +0000789 for (unsigned i = 0; i != NumWords; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000790 Words[i] = DecodeSignRotatedValue(Record[i]);
Chris Lattner0eef0802007-04-24 04:04:35 +0000791 V = ConstantInt::get(APInt(cast<IntegerType>(CurTy)->getBitWidth(),
Chris Lattner084a8442007-04-24 17:22:05 +0000792 NumWords, &Words[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000793 break;
794 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000795 case bitc::CST_CODE_FLOAT: { // FLOAT: [fpval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000796 if (Record.empty())
797 return Error("Invalid FLOAT record");
798 if (CurTy == Type::FloatTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000799 V = ConstantFP::get(APFloat(APInt(32, (uint32_t)Record[0])));
Chris Lattner0eef0802007-04-24 04:04:35 +0000800 else if (CurTy == Type::DoubleTy)
Chris Lattner02a260a2008-04-20 00:41:09 +0000801 V = ConstantFP::get(APFloat(APInt(64, Record[0])));
Dale Johannesen43421b32007-09-06 18:13:44 +0000802 else if (CurTy == Type::X86_FP80Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000803 V = ConstantFP::get(APFloat(APInt(80, 2, &Record[0])));
Dale Johannesen43421b32007-09-06 18:13:44 +0000804 else if (CurTy == Type::FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000805 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0]), true));
Dale Johannesen43421b32007-09-06 18:13:44 +0000806 else if (CurTy == Type::PPC_FP128Ty)
Chris Lattner02a260a2008-04-20 00:41:09 +0000807 V = ConstantFP::get(APFloat(APInt(128, 2, &Record[0])));
Chris Lattnere16504e2007-04-24 03:30:34 +0000808 else
Chris Lattner0eef0802007-04-24 04:04:35 +0000809 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000810 break;
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000811 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000812
Chris Lattner15e6d172007-05-04 19:11:41 +0000813 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
814 if (Record.empty())
Chris Lattner522b7b12007-04-24 05:48:56 +0000815 return Error("Invalid CST_AGGREGATE record");
816
Chris Lattner15e6d172007-05-04 19:11:41 +0000817 unsigned Size = Record.size();
Chris Lattner522b7b12007-04-24 05:48:56 +0000818 std::vector<Constant*> Elts;
819
820 if (const StructType *STy = dyn_cast<StructType>(CurTy)) {
821 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000822 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
Chris Lattner522b7b12007-04-24 05:48:56 +0000823 STy->getElementType(i)));
824 V = ConstantStruct::get(STy, Elts);
825 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
826 const Type *EltTy = ATy->getElementType();
827 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000828 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000829 V = ConstantArray::get(ATy, Elts);
830 } else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
831 const Type *EltTy = VTy->getElementType();
832 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000833 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Chris Lattner522b7b12007-04-24 05:48:56 +0000834 V = ConstantVector::get(Elts);
835 } else {
836 V = UndefValue::get(CurTy);
837 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000838 break;
839 }
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000840 case bitc::CST_CODE_STRING: { // STRING: [values]
841 if (Record.empty())
842 return Error("Invalid CST_AGGREGATE record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000843
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000844 const ArrayType *ATy = cast<ArrayType>(CurTy);
845 const Type *EltTy = ATy->getElementType();
846
847 unsigned Size = Record.size();
848 std::vector<Constant*> Elts;
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000849 for (unsigned i = 0; i != Size; ++i)
850 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
851 V = ConstantArray::get(ATy, Elts);
852 break;
853 }
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000854 case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
855 if (Record.empty())
856 return Error("Invalid CST_AGGREGATE record");
857
858 const ArrayType *ATy = cast<ArrayType>(CurTy);
859 const Type *EltTy = ATy->getElementType();
860
861 unsigned Size = Record.size();
862 std::vector<Constant*> Elts;
863 for (unsigned i = 0; i != Size; ++i)
864 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
865 Elts.push_back(Constant::getNullValue(EltTy));
866 V = ConstantArray::get(ATy, Elts);
867 break;
868 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000869 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
870 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
871 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000872 if (Opc < 0) {
873 V = UndefValue::get(CurTy); // Unknown binop.
874 } else {
875 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
876 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
877 V = ConstantExpr::get(Opc, LHS, RHS);
878 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000879 break;
880 }
881 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
882 if (Record.size() < 3) return Error("Invalid CE_CAST record");
883 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000884 if (Opc < 0) {
885 V = UndefValue::get(CurTy); // Unknown cast.
886 } else {
887 const Type *OpTy = getTypeByID(Record[1]);
Chris Lattnerbfcc3802007-05-06 07:33:01 +0000888 if (!OpTy) return Error("Invalid CE_CAST record");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000889 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
890 V = ConstantExpr::getCast(Opc, Op, CurTy);
891 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000892 break;
893 }
894 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
Chris Lattner15e6d172007-05-04 19:11:41 +0000895 if (Record.size() & 1) return Error("Invalid CE_GEP record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000896 SmallVector<Constant*, 16> Elts;
Chris Lattner15e6d172007-05-04 19:11:41 +0000897 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000898 const Type *ElTy = getTypeByID(Record[i]);
899 if (!ElTy) return Error("Invalid CE_GEP record");
900 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
901 }
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000902 V = ConstantExpr::getGetElementPtr(Elts[0], &Elts[1], Elts.size()-1);
903 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000904 }
905 case bitc::CST_CODE_CE_SELECT: // CE_SELECT: [opval#, opval#, opval#]
906 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
907 V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
908 Type::Int1Ty),
909 ValueList.getConstantFwdRef(Record[1],CurTy),
910 ValueList.getConstantFwdRef(Record[2],CurTy));
911 break;
912 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
913 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
914 const VectorType *OpTy =
915 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
916 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
917 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
918 Constant *Op1 = ValueList.getConstantFwdRef(Record[2],
919 OpTy->getElementType());
920 V = ConstantExpr::getExtractElement(Op0, Op1);
921 break;
922 }
923 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
924 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
925 if (Record.size() < 3 || OpTy == 0)
926 return Error("Invalid CE_INSERTELT record");
927 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
928 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
929 OpTy->getElementType());
930 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
931 V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
932 break;
933 }
934 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
935 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
936 if (Record.size() < 3 || OpTy == 0)
937 return Error("Invalid CE_INSERTELT record");
938 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
939 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
940 const Type *ShufTy=VectorType::get(Type::Int32Ty, OpTy->getNumElements());
941 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
942 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
943 break;
944 }
945 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
946 if (Record.size() < 4) return Error("Invalid CE_CMP record");
947 const Type *OpTy = getTypeByID(Record[0]);
948 if (OpTy == 0) return Error("Invalid CE_CMP record");
949 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
950 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
951
952 if (OpTy->isFloatingPoint())
953 V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
Nate Begemanbaa64eb2008-05-12 20:33:52 +0000954 else if (!isa<VectorType>(OpTy))
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000955 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +0000956 else if (OpTy->isFPOrFPVector())
957 V = ConstantExpr::getVFCmp(Record[3], Op0, Op1);
958 else
959 V = ConstantExpr::getVICmp(Record[3], Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000960 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000961 }
Chris Lattner2bce93a2007-05-06 01:58:20 +0000962 case bitc::CST_CODE_INLINEASM: {
963 if (Record.size() < 2) return Error("Invalid INLINEASM record");
964 std::string AsmStr, ConstrStr;
965 bool HasSideEffects = Record[0];
966 unsigned AsmStrSize = Record[1];
967 if (2+AsmStrSize >= Record.size())
968 return Error("Invalid INLINEASM record");
969 unsigned ConstStrSize = Record[2+AsmStrSize];
970 if (3+AsmStrSize+ConstStrSize > Record.size())
971 return Error("Invalid INLINEASM record");
972
973 for (unsigned i = 0; i != AsmStrSize; ++i)
974 AsmStr += (char)Record[2+i];
975 for (unsigned i = 0; i != ConstStrSize; ++i)
976 ConstrStr += (char)Record[3+AsmStrSize+i];
977 const PointerType *PTy = cast<PointerType>(CurTy);
978 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
979 AsmStr, ConstrStr, HasSideEffects);
980 break;
981 }
Chris Lattnere16504e2007-04-24 03:30:34 +0000982 }
983
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000984 ValueList.AssignValue(V, NextCstNo);
Chris Lattner522b7b12007-04-24 05:48:56 +0000985 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +0000986 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000987
988 if (NextCstNo != ValueList.size())
989 return Error("Invalid constant reference!");
990
991 if (Stream.ReadBlockEnd())
992 return Error("Error at end of constants block");
993
994 // Once all the constants have been read, go through and resolve forward
995 // references.
996 ValueList.ResolveConstantForwardRefs();
997 return false;
Chris Lattnere16504e2007-04-24 03:30:34 +0000998}
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000999
Chris Lattner980e5aa2007-05-01 05:52:21 +00001000/// RememberAndSkipFunctionBody - When we see the block for a function body,
1001/// remember where it is and then skip it. This lets us lazily deserialize the
1002/// functions.
1003bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +00001004 // Get the function we are talking about.
1005 if (FunctionsWithBodies.empty())
1006 return Error("Insufficient function protos");
1007
1008 Function *Fn = FunctionsWithBodies.back();
1009 FunctionsWithBodies.pop_back();
1010
1011 // Save the current stream state.
1012 uint64_t CurBit = Stream.GetCurrentBitNo();
1013 DeferredFunctionInfo[Fn] = std::make_pair(CurBit, Fn->getLinkage());
1014
1015 // Set the functions linkage to GhostLinkage so we know it is lazily
1016 // deserialized.
1017 Fn->setLinkage(GlobalValue::GhostLinkage);
1018
1019 // Skip over the function block for now.
1020 if (Stream.SkipBlock())
1021 return Error("Malformed block record");
1022 return false;
1023}
1024
Chris Lattner86697142007-05-01 05:01:34 +00001025bool BitcodeReader::ParseModule(const std::string &ModuleID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001026 // Reject multiple MODULE_BLOCK's in a single bitstream.
1027 if (TheModule)
1028 return Error("Multiple MODULE_BLOCKs in same stream");
1029
Chris Lattnere17b6582007-05-05 00:17:00 +00001030 if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001031 return Error("Malformed block record");
1032
1033 // Otherwise, create the module.
1034 TheModule = new Module(ModuleID);
1035
1036 SmallVector<uint64_t, 64> Record;
1037 std::vector<std::string> SectionTable;
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001038 std::vector<std::string> GCTable;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001039
1040 // Read all the records for this module.
1041 while (!Stream.AtEndOfStream()) {
1042 unsigned Code = Stream.ReadCode();
Chris Lattnere84bcb92007-04-24 00:21:45 +00001043 if (Code == bitc::END_BLOCK) {
Chris Lattner980e5aa2007-05-01 05:52:21 +00001044 if (Stream.ReadBlockEnd())
1045 return Error("Error at end of module block");
1046
1047 // Patch the initializers for globals and aliases up.
Chris Lattner07d98b42007-04-26 02:46:40 +00001048 ResolveGlobalAndAliasInits();
1049 if (!GlobalInits.empty() || !AliasInits.empty())
Chris Lattnere84bcb92007-04-24 00:21:45 +00001050 return Error("Malformed global initializer set");
Chris Lattner48f84872007-05-01 04:59:48 +00001051 if (!FunctionsWithBodies.empty())
1052 return Error("Too few function bodies found");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001053
Chandler Carruth69940402007-08-04 01:51:18 +00001054 // Look for intrinsic functions which need to be upgraded at some point
1055 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1056 FI != FE; ++FI) {
Evan Chengf9b83fc2007-12-17 22:33:23 +00001057 Function* NewFn;
1058 if (UpgradeIntrinsicFunction(FI, NewFn))
Chandler Carruth69940402007-08-04 01:51:18 +00001059 UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1060 }
1061
Chris Lattner980e5aa2007-05-01 05:52:21 +00001062 // Force deallocation of memory for these vectors to favor the client that
1063 // want lazy deserialization.
1064 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1065 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1066 std::vector<Function*>().swap(FunctionsWithBodies);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001067 return false;
Chris Lattnere84bcb92007-04-24 00:21:45 +00001068 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001069
1070 if (Code == bitc::ENTER_SUBBLOCK) {
1071 switch (Stream.ReadSubBlockID()) {
1072 default: // Skip unknown content.
1073 if (Stream.SkipBlock())
1074 return Error("Malformed block record");
1075 break;
Chris Lattner3f799802007-05-05 18:57:30 +00001076 case bitc::BLOCKINFO_BLOCK_ID:
1077 if (Stream.ReadBlockInfoBlock())
1078 return Error("Malformed BlockInfoBlock");
1079 break;
Chris Lattner48c85b82007-05-04 03:30:17 +00001080 case bitc::PARAMATTR_BLOCK_ID:
Devang Patel05988662008-09-25 21:00:45 +00001081 if (ParseAttributeBlock())
Chris Lattner48c85b82007-05-04 03:30:17 +00001082 return true;
1083 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001084 case bitc::TYPE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001085 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001086 return true;
1087 break;
1088 case bitc::TYPE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001089 if (ParseTypeSymbolTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001090 return true;
1091 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001092 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001093 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +00001094 return true;
1095 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001096 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001097 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +00001098 return true;
1099 break;
Chris Lattner48f84872007-05-01 04:59:48 +00001100 case bitc::FUNCTION_BLOCK_ID:
1101 // If this is the first function body we've seen, reverse the
1102 // FunctionsWithBodies list.
1103 if (!HasReversedFunctionsWithBodies) {
1104 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
1105 HasReversedFunctionsWithBodies = true;
1106 }
1107
Chris Lattner980e5aa2007-05-01 05:52:21 +00001108 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +00001109 return true;
1110 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001111 }
1112 continue;
1113 }
1114
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001115 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +00001116 Stream.ReadAbbrevRecord();
1117 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001118 }
1119
1120 // Read a record.
1121 switch (Stream.ReadRecord(Code, Record)) {
1122 default: break; // Default behavior, ignore unknown content.
1123 case bitc::MODULE_CODE_VERSION: // VERSION: [version#]
1124 if (Record.size() < 1)
1125 return Error("Malformed MODULE_CODE_VERSION");
1126 // Only version #0 is supported so far.
1127 if (Record[0] != 0)
1128 return Error("Unknown bitstream version!");
1129 break;
Chris Lattner15e6d172007-05-04 19:11:41 +00001130 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [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_TRIPLE record");
1134 TheModule->setTargetTriple(S);
1135 break;
1136 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001137 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [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_DATALAYOUT record");
1141 TheModule->setDataLayout(S);
1142 break;
1143 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001144 case bitc::MODULE_CODE_ASM: { // ASM: [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_ASM record");
1148 TheModule->setModuleInlineAsm(S);
1149 break;
1150 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001151 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [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_DEPLIB record");
1155 TheModule->addLibrary(S);
1156 break;
1157 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001158 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001159 std::string S;
1160 if (ConvertToString(Record, 0, S))
1161 return Error("Invalid MODULE_CODE_SECTIONNAME record");
1162 SectionTable.push_back(S);
1163 break;
1164 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001165 case bitc::MODULE_CODE_GCNAME: { // SECTIONNAME: [strchr x N]
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001166 std::string S;
1167 if (ConvertToString(Record, 0, S))
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001168 return Error("Invalid MODULE_CODE_GCNAME record");
1169 GCTable.push_back(S);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001170 break;
1171 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001172 // GLOBALVAR: [pointer type, isconst, initid,
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001173 // linkage, alignment, section, visibility, threadlocal]
1174 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001175 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001176 return Error("Invalid MODULE_CODE_GLOBALVAR record");
1177 const Type *Ty = getTypeByID(Record[0]);
1178 if (!isa<PointerType>(Ty))
1179 return Error("Global not a pointer type!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001180 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001181 Ty = cast<PointerType>(Ty)->getElementType();
1182
1183 bool isConstant = Record[1];
1184 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1185 unsigned Alignment = (1 << Record[4]) >> 1;
1186 std::string Section;
1187 if (Record[5]) {
1188 if (Record[5]-1 >= SectionTable.size())
1189 return Error("Invalid section ID");
1190 Section = SectionTable[Record[5]-1];
1191 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001192 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
Chris Lattner5f32c012007-05-06 19:27:46 +00001193 if (Record.size() > 6)
1194 Visibility = GetDecodedVisibility(Record[6]);
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001195 bool isThreadLocal = false;
Chris Lattner5f32c012007-05-06 19:27:46 +00001196 if (Record.size() > 7)
1197 isThreadLocal = Record[7];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001198
1199 GlobalVariable *NewGV =
Christopher Lambfe63fb92007-12-11 08:59:05 +00001200 new GlobalVariable(Ty, isConstant, Linkage, 0, "", TheModule,
1201 isThreadLocal, AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001202 NewGV->setAlignment(Alignment);
1203 if (!Section.empty())
1204 NewGV->setSection(Section);
1205 NewGV->setVisibility(Visibility);
1206 NewGV->setThreadLocal(isThreadLocal);
1207
Chris Lattner0b2482a2007-04-23 21:26:05 +00001208 ValueList.push_back(NewGV);
1209
Chris Lattner6dbfd7b2007-04-24 00:18:21 +00001210 // Remember which value to use for the global initializer.
1211 if (unsigned InitID = Record[2])
1212 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001213 break;
1214 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001215 // FUNCTION: [type, callingconv, isproto, linkage, paramattr,
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001216 // alignment, section, visibility, gc]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001217 case bitc::MODULE_CODE_FUNCTION: {
Chris Lattnera9bb7132007-05-08 05:38:01 +00001218 if (Record.size() < 8)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001219 return Error("Invalid MODULE_CODE_FUNCTION record");
1220 const Type *Ty = getTypeByID(Record[0]);
1221 if (!isa<PointerType>(Ty))
1222 return Error("Function not a pointer type!");
1223 const FunctionType *FTy =
1224 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
1225 if (!FTy)
1226 return Error("Function not a pointer to function type!");
1227
Gabor Greif051a9502008-04-06 20:25:17 +00001228 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
1229 "", TheModule);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001230
1231 Func->setCallingConv(Record[1]);
Chris Lattner48f84872007-05-01 04:59:48 +00001232 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001233 Func->setLinkage(GetDecodedLinkage(Record[3]));
Devang Patel05988662008-09-25 21:00:45 +00001234 Func->setAttributes(getAttributes(Record[4]));
Chris Lattnera9bb7132007-05-08 05:38:01 +00001235
1236 Func->setAlignment((1 << Record[5]) >> 1);
1237 if (Record[6]) {
1238 if (Record[6]-1 >= SectionTable.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001239 return Error("Invalid section ID");
Chris Lattnera9bb7132007-05-08 05:38:01 +00001240 Func->setSection(SectionTable[Record[6]-1]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001241 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001242 Func->setVisibility(GetDecodedVisibility(Record[7]));
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001243 if (Record.size() > 8 && Record[8]) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001244 if (Record[8]-1 > GCTable.size())
1245 return Error("Invalid GC ID");
1246 Func->setGC(GCTable[Record[8]-1].c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001247 }
Chris Lattner0b2482a2007-04-23 21:26:05 +00001248 ValueList.push_back(Func);
Chris Lattner48f84872007-05-01 04:59:48 +00001249
1250 // If this is a function with a body, remember the prototype we are
1251 // creating now, so that we can match up the body with them later.
1252 if (!isProto)
1253 FunctionsWithBodies.push_back(Func);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001254 break;
1255 }
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001256 // ALIAS: [alias type, aliasee val#, linkage]
Anton Korobeynikovf8342b92008-03-11 21:40:17 +00001257 // ALIAS: [alias type, aliasee val#, linkage, visibility]
Chris Lattner198f34a2007-04-26 03:27:58 +00001258 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +00001259 if (Record.size() < 3)
1260 return Error("Invalid MODULE_ALIAS record");
1261 const Type *Ty = getTypeByID(Record[0]);
1262 if (!isa<PointerType>(Ty))
1263 return Error("Function not a pointer type!");
1264
1265 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
1266 "", 0, TheModule);
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001267 // Old bitcode files didn't have visibility field.
1268 if (Record.size() > 3)
1269 NewGA->setVisibility(GetDecodedVisibility(Record[3]));
Chris Lattner07d98b42007-04-26 02:46:40 +00001270 ValueList.push_back(NewGA);
1271 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
1272 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001273 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001274 /// MODULE_CODE_PURGEVALS: [numvals]
1275 case bitc::MODULE_CODE_PURGEVALS:
1276 // Trim down the value list to the specified size.
1277 if (Record.size() < 1 || Record[0] > ValueList.size())
1278 return Error("Invalid MODULE_PURGEVALS record");
1279 ValueList.shrinkTo(Record[0]);
1280 break;
1281 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001282 Record.clear();
1283 }
1284
1285 return Error("Premature end of bitstream");
1286}
1287
Chris Lattner6fa6a322008-07-09 05:14:23 +00001288/// SkipWrapperHeader - Some systems wrap bc files with a special header for
1289/// padding or other reasons. The format of this header is:
1290///
1291/// struct bc_header {
1292/// uint32_t Magic; // 0x0B17C0DE
1293/// uint32_t Version; // Version, currently always 0.
1294/// uint32_t BitcodeOffset; // Offset to traditional bitcode file.
1295/// uint32_t BitcodeSize; // Size of traditional bitcode file.
1296/// ... potentially other gunk ...
1297/// };
1298///
1299/// This function is called when we find a file with a matching magic number.
1300/// In this case, skip down to the subsection of the file that is actually a BC
1301/// file.
1302static bool SkipWrapperHeader(unsigned char *&BufPtr, unsigned char *&BufEnd) {
1303 enum {
1304 KnownHeaderSize = 4*4, // Size of header we read.
1305 OffsetField = 2*4, // Offset in bytes to Offset field.
1306 SizeField = 3*4 // Offset in bytes to Size field.
1307 };
1308
1309
1310 // Must contain the header!
1311 if (BufEnd-BufPtr < KnownHeaderSize) return true;
1312
1313 unsigned Offset = ( BufPtr[OffsetField ] |
1314 (BufPtr[OffsetField+1] << 8) |
1315 (BufPtr[OffsetField+2] << 16) |
1316 (BufPtr[OffsetField+3] << 24));
1317 unsigned Size = ( BufPtr[SizeField ] |
1318 (BufPtr[SizeField +1] << 8) |
1319 (BufPtr[SizeField +2] << 16) |
1320 (BufPtr[SizeField +3] << 24));
1321
1322 // Verify that Offset+Size fits in the file.
1323 if (Offset+Size > unsigned(BufEnd-BufPtr))
1324 return true;
1325 BufPtr += Offset;
1326 BufEnd = BufPtr+Size;
1327 return false;
1328}
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001329
Chris Lattnerc453f762007-04-29 07:54:31 +00001330bool BitcodeReader::ParseBitcode() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001331 TheModule = 0;
1332
Chris Lattnerc453f762007-04-29 07:54:31 +00001333 if (Buffer->getBufferSize() & 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001334 return Error("Bitcode stream should be a multiple of 4 bytes in length");
1335
Chris Lattnerc453f762007-04-29 07:54:31 +00001336 unsigned char *BufPtr = (unsigned char *)Buffer->getBufferStart();
Chris Lattner6fa6a322008-07-09 05:14:23 +00001337 unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
1338
1339 // If we have a wrapper header, parse it and ignore the non-bc file contents.
1340 // The magic number is 0x0B17C0DE stored in little endian.
1341 if (BufPtr != BufEnd && BufPtr[0] == 0xDE && BufPtr[1] == 0xC0 &&
1342 BufPtr[2] == 0x17 && BufPtr[3] == 0x0B)
1343 if (SkipWrapperHeader(BufPtr, BufEnd))
1344 return Error("Invalid bitcode wrapper header");
1345
1346 Stream.init(BufPtr, BufEnd);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001347
1348 // Sniff for the signature.
1349 if (Stream.Read(8) != 'B' ||
1350 Stream.Read(8) != 'C' ||
1351 Stream.Read(4) != 0x0 ||
1352 Stream.Read(4) != 0xC ||
1353 Stream.Read(4) != 0xE ||
1354 Stream.Read(4) != 0xD)
1355 return Error("Invalid bitcode signature");
1356
1357 // We expect a number of well-defined blocks, though we don't necessarily
1358 // need to understand them all.
1359 while (!Stream.AtEndOfStream()) {
1360 unsigned Code = Stream.ReadCode();
1361
1362 if (Code != bitc::ENTER_SUBBLOCK)
1363 return Error("Invalid record at top-level");
1364
1365 unsigned BlockID = Stream.ReadSubBlockID();
1366
1367 // We only know the MODULE subblock ID.
Chris Lattnere17b6582007-05-05 00:17:00 +00001368 switch (BlockID) {
1369 case bitc::BLOCKINFO_BLOCK_ID:
1370 if (Stream.ReadBlockInfoBlock())
1371 return Error("Malformed BlockInfoBlock");
1372 break;
1373 case bitc::MODULE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001374 if (ParseModule(Buffer->getBufferIdentifier()))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001375 return true;
Chris Lattnere17b6582007-05-05 00:17:00 +00001376 break;
1377 default:
1378 if (Stream.SkipBlock())
1379 return Error("Malformed block record");
1380 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001381 }
1382 }
1383
1384 return false;
1385}
Chris Lattnerc453f762007-04-29 07:54:31 +00001386
Chris Lattner48f84872007-05-01 04:59:48 +00001387
Chris Lattner980e5aa2007-05-01 05:52:21 +00001388/// ParseFunctionBody - Lazily parse the specified function body block.
1389bool BitcodeReader::ParseFunctionBody(Function *F) {
Chris Lattnere17b6582007-05-05 00:17:00 +00001390 if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
Chris Lattner980e5aa2007-05-01 05:52:21 +00001391 return Error("Malformed block record");
1392
1393 unsigned ModuleValueListSize = ValueList.size();
1394
1395 // Add all the function arguments to the value table.
1396 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
1397 ValueList.push_back(I);
1398
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001399 unsigned NextValueNo = ValueList.size();
Chris Lattner231cbcb2007-05-02 04:27:25 +00001400 BasicBlock *CurBB = 0;
1401 unsigned CurBBNo = 0;
1402
Chris Lattner980e5aa2007-05-01 05:52:21 +00001403 // Read all the records.
1404 SmallVector<uint64_t, 64> Record;
1405 while (1) {
1406 unsigned Code = Stream.ReadCode();
1407 if (Code == bitc::END_BLOCK) {
1408 if (Stream.ReadBlockEnd())
1409 return Error("Error at end of function block");
1410 break;
1411 }
1412
1413 if (Code == bitc::ENTER_SUBBLOCK) {
1414 switch (Stream.ReadSubBlockID()) {
1415 default: // Skip unknown content.
1416 if (Stream.SkipBlock())
1417 return Error("Malformed block record");
1418 break;
1419 case bitc::CONSTANTS_BLOCK_ID:
1420 if (ParseConstants()) return true;
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001421 NextValueNo = ValueList.size();
Chris Lattner980e5aa2007-05-01 05:52:21 +00001422 break;
1423 case bitc::VALUE_SYMTAB_BLOCK_ID:
1424 if (ParseValueSymbolTable()) return true;
1425 break;
1426 }
1427 continue;
1428 }
1429
1430 if (Code == bitc::DEFINE_ABBREV) {
1431 Stream.ReadAbbrevRecord();
1432 continue;
1433 }
1434
1435 // Read a record.
1436 Record.clear();
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001437 Instruction *I = 0;
Chris Lattner980e5aa2007-05-01 05:52:21 +00001438 switch (Stream.ReadRecord(Code, Record)) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001439 default: // Default behavior: reject
1440 return Error("Unknown instruction");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001441 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001442 if (Record.size() < 1 || Record[0] == 0)
1443 return Error("Invalid DECLAREBLOCKS record");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001444 // Create all the basic blocks for the function.
Chris Lattnerf61e6452007-05-03 22:09:51 +00001445 FunctionBBs.resize(Record[0]);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001446 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
Gabor Greif051a9502008-04-06 20:25:17 +00001447 FunctionBBs[i] = BasicBlock::Create("", F);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001448 CurBB = FunctionBBs[0];
1449 continue;
1450
Chris Lattnerabfbf852007-05-06 00:21:25 +00001451 case bitc::FUNC_CODE_INST_BINOP: { // BINOP: [opval, ty, opval, opcode]
1452 unsigned OpNum = 0;
1453 Value *LHS, *RHS;
1454 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1455 getValue(Record, OpNum, LHS->getType(), RHS) ||
1456 OpNum+1 != Record.size())
1457 return Error("Invalid BINOP record");
1458
1459 int Opc = GetDecodedBinaryOpcode(Record[OpNum], LHS->getType());
1460 if (Opc == -1) return Error("Invalid BINOP record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001461 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001462 break;
1463 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001464 case bitc::FUNC_CODE_INST_CAST: { // CAST: [opval, opty, destty, castopc]
1465 unsigned OpNum = 0;
1466 Value *Op;
1467 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1468 OpNum+2 != Record.size())
1469 return Error("Invalid CAST record");
1470
1471 const Type *ResTy = getTypeByID(Record[OpNum]);
1472 int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
1473 if (Opc == -1 || ResTy == 0)
Chris Lattner231cbcb2007-05-02 04:27:25 +00001474 return Error("Invalid CAST record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001475 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
Chris Lattner231cbcb2007-05-02 04:27:25 +00001476 break;
1477 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001478 case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
Chris Lattner7337ab92007-05-06 00:00:00 +00001479 unsigned OpNum = 0;
1480 Value *BasePtr;
1481 if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001482 return Error("Invalid GEP record");
1483
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001484 SmallVector<Value*, 16> GEPIdx;
Chris Lattner7337ab92007-05-06 00:00:00 +00001485 while (OpNum != Record.size()) {
1486 Value *Op;
1487 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001488 return Error("Invalid GEP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001489 GEPIdx.push_back(Op);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001490 }
1491
Gabor Greif051a9502008-04-06 20:25:17 +00001492 I = GetElementPtrInst::Create(BasePtr, GEPIdx.begin(), GEPIdx.end());
Chris Lattner01ff65f2007-05-02 05:16:49 +00001493 break;
1494 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001495
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001496 case bitc::FUNC_CODE_INST_EXTRACTVAL: {
1497 // EXTRACTVAL: [opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001498 unsigned OpNum = 0;
1499 Value *Agg;
1500 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1501 return Error("Invalid EXTRACTVAL record");
1502
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001503 SmallVector<unsigned, 4> EXTRACTVALIdx;
1504 for (unsigned RecSize = Record.size();
1505 OpNum != RecSize; ++OpNum) {
1506 uint64_t Index = Record[OpNum];
1507 if ((unsigned)Index != Index)
1508 return Error("Invalid EXTRACTVAL index");
1509 EXTRACTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001510 }
1511
1512 I = ExtractValueInst::Create(Agg,
1513 EXTRACTVALIdx.begin(), EXTRACTVALIdx.end());
1514 break;
1515 }
1516
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001517 case bitc::FUNC_CODE_INST_INSERTVAL: {
1518 // INSERTVAL: [opty, opval, opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001519 unsigned OpNum = 0;
1520 Value *Agg;
1521 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1522 return Error("Invalid INSERTVAL record");
1523 Value *Val;
1524 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
1525 return Error("Invalid INSERTVAL record");
1526
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001527 SmallVector<unsigned, 4> INSERTVALIdx;
1528 for (unsigned RecSize = Record.size();
1529 OpNum != RecSize; ++OpNum) {
1530 uint64_t Index = Record[OpNum];
1531 if ((unsigned)Index != Index)
1532 return Error("Invalid INSERTVAL index");
1533 INSERTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001534 }
1535
1536 I = InsertValueInst::Create(Agg, Val,
1537 INSERTVALIdx.begin(), INSERTVALIdx.end());
1538 break;
1539 }
1540
Chris Lattnerabfbf852007-05-06 00:21:25 +00001541 case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001542 // obsolete form of select
1543 // handles select i1 ... in old bitcode
Chris Lattnerabfbf852007-05-06 00:21:25 +00001544 unsigned OpNum = 0;
1545 Value *TrueVal, *FalseVal, *Cond;
1546 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1547 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
Dan Gohmanbe919402008-09-09 02:08:49 +00001548 getValue(Record, OpNum, Type::Int1Ty, Cond))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001549 return Error("Invalid SELECT record");
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001550
1551 I = SelectInst::Create(Cond, TrueVal, FalseVal);
1552 break;
1553 }
1554
1555 case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
1556 // new form of select
1557 // handles select i1 or select [N x i1]
1558 unsigned OpNum = 0;
1559 Value *TrueVal, *FalseVal, *Cond;
1560 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1561 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
1562 getValueTypePair(Record, OpNum, NextValueNo, Cond))
1563 return Error("Invalid SELECT record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001564
1565 // select condition can be either i1 or [N x i1]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001566 if (const VectorType* vector_type =
1567 dyn_cast<const VectorType>(Cond->getType())) {
Dan Gohmanf72fb672008-09-09 01:02:47 +00001568 // expect <n x i1>
1569 if (vector_type->getElementType() != Type::Int1Ty)
1570 return Error("Invalid SELECT condition type");
1571 } else {
1572 // expect i1
1573 if (Cond->getType() != Type::Int1Ty)
1574 return Error("Invalid SELECT condition type");
1575 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001576
Gabor Greif051a9502008-04-06 20:25:17 +00001577 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001578 break;
1579 }
1580
1581 case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001582 unsigned OpNum = 0;
1583 Value *Vec, *Idx;
1584 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1585 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001586 return Error("Invalid EXTRACTELT record");
1587 I = new ExtractElementInst(Vec, Idx);
1588 break;
1589 }
1590
1591 case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001592 unsigned OpNum = 0;
1593 Value *Vec, *Elt, *Idx;
1594 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1595 getValue(Record, OpNum,
1596 cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
1597 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001598 return Error("Invalid INSERTELT record");
Gabor Greif051a9502008-04-06 20:25:17 +00001599 I = InsertElementInst::Create(Vec, Elt, Idx);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001600 break;
1601 }
1602
Chris Lattnerabfbf852007-05-06 00:21:25 +00001603 case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
1604 unsigned OpNum = 0;
1605 Value *Vec1, *Vec2, *Mask;
1606 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
1607 getValue(Record, OpNum, Vec1->getType(), Vec2))
1608 return Error("Invalid SHUFFLEVEC record");
1609
Mon P Wangaeb06d22008-11-10 04:46:22 +00001610 if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001611 return Error("Invalid SHUFFLEVEC record");
1612 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
1613 break;
1614 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00001615
Chris Lattner01ff65f2007-05-02 05:16:49 +00001616 case bitc::FUNC_CODE_INST_CMP: { // CMP: [opty, opval, opval, pred]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001617 // VFCmp/VICmp
1618 // or old form of ICmp/FCmp returning bool
Chris Lattner7337ab92007-05-06 00:00:00 +00001619 unsigned OpNum = 0;
1620 Value *LHS, *RHS;
1621 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1622 getValue(Record, OpNum, LHS->getType(), RHS) ||
1623 OpNum+1 != Record.size())
Chris Lattner01ff65f2007-05-02 05:16:49 +00001624 return Error("Invalid CMP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001625
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001626 if (LHS->getType()->isFloatingPoint())
Nate Begemanac80ade2008-05-12 19:01:56 +00001627 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001628 else if (!isa<VectorType>(LHS->getType()))
1629 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanac80ade2008-05-12 19:01:56 +00001630 else if (LHS->getType()->isFPOrFPVector())
1631 I = new VFCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1632 else
1633 I = new VICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001634 break;
1635 }
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001636 case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
1637 // Fcmp/ICmp returning bool or vector of bool
Dan Gohmanf72fb672008-09-09 01:02:47 +00001638 unsigned OpNum = 0;
1639 Value *LHS, *RHS;
1640 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1641 getValue(Record, OpNum, LHS->getType(), RHS) ||
1642 OpNum+1 != Record.size())
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001643 return Error("Invalid CMP2 record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001644
Dan Gohmanf72fb672008-09-09 01:02:47 +00001645 if (LHS->getType()->isFPOrFPVector())
1646 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1647 else
1648 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
1649 break;
1650 }
Devang Patel197be3d2008-02-22 02:49:49 +00001651 case bitc::FUNC_CODE_INST_GETRESULT: { // GETRESULT: [ty, val, n]
1652 if (Record.size() != 2)
1653 return Error("Invalid GETRESULT record");
1654 unsigned OpNum = 0;
1655 Value *Op;
1656 getValueTypePair(Record, OpNum, NextValueNo, Op);
1657 unsigned Index = Record[1];
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001658 I = ExtractValueInst::Create(Op, Index);
Devang Patel197be3d2008-02-22 02:49:49 +00001659 break;
1660 }
Chris Lattner01ff65f2007-05-02 05:16:49 +00001661
Chris Lattner231cbcb2007-05-02 04:27:25 +00001662 case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
Devang Pateld9d99ff2008-02-26 01:29:32 +00001663 {
1664 unsigned Size = Record.size();
1665 if (Size == 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001666 I = ReturnInst::Create();
Devang Pateld9d99ff2008-02-26 01:29:32 +00001667 break;
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001668 }
Devang Pateld9d99ff2008-02-26 01:29:32 +00001669
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001670 unsigned OpNum = 0;
1671 SmallVector<Value *,4> Vs;
1672 do {
1673 Value *Op = NULL;
1674 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1675 return Error("Invalid RET record");
1676 Vs.push_back(Op);
1677 } while(OpNum != Record.size());
1678
1679 const Type *ReturnType = F->getReturnType();
1680 if (Vs.size() > 1 ||
1681 (isa<StructType>(ReturnType) &&
1682 (Vs.empty() || Vs[0]->getType() != ReturnType))) {
1683 Value *RV = UndefValue::get(ReturnType);
1684 for (unsigned i = 0, e = Vs.size(); i != e; ++i) {
1685 I = InsertValueInst::Create(RV, Vs[i], i, "mrv");
1686 CurBB->getInstList().push_back(I);
1687 ValueList.AssignValue(I, NextValueNo++);
1688 RV = I;
1689 }
1690 I = ReturnInst::Create(RV);
Devang Pateld9d99ff2008-02-26 01:29:32 +00001691 break;
1692 }
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001693
1694 I = ReturnInst::Create(Vs[0]);
1695 break;
Chris Lattner231cbcb2007-05-02 04:27:25 +00001696 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001697 case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
Chris Lattnerf61e6452007-05-03 22:09:51 +00001698 if (Record.size() != 1 && Record.size() != 3)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001699 return Error("Invalid BR record");
1700 BasicBlock *TrueDest = getBasicBlock(Record[0]);
1701 if (TrueDest == 0)
1702 return Error("Invalid BR record");
1703
1704 if (Record.size() == 1)
Gabor Greif051a9502008-04-06 20:25:17 +00001705 I = BranchInst::Create(TrueDest);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001706 else {
1707 BasicBlock *FalseDest = getBasicBlock(Record[1]);
1708 Value *Cond = getFnValueByID(Record[2], Type::Int1Ty);
1709 if (FalseDest == 0 || Cond == 0)
1710 return Error("Invalid BR record");
Gabor Greif051a9502008-04-06 20:25:17 +00001711 I = BranchInst::Create(TrueDest, FalseDest, Cond);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001712 }
1713 break;
1714 }
1715 case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, opval, n, n x ops]
1716 if (Record.size() < 3 || (Record.size() & 1) == 0)
1717 return Error("Invalid SWITCH record");
1718 const Type *OpTy = getTypeByID(Record[0]);
1719 Value *Cond = getFnValueByID(Record[1], OpTy);
1720 BasicBlock *Default = getBasicBlock(Record[2]);
1721 if (OpTy == 0 || Cond == 0 || Default == 0)
1722 return Error("Invalid SWITCH record");
1723 unsigned NumCases = (Record.size()-3)/2;
Gabor Greif051a9502008-04-06 20:25:17 +00001724 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001725 for (unsigned i = 0, e = NumCases; i != e; ++i) {
1726 ConstantInt *CaseVal =
1727 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
1728 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
1729 if (CaseVal == 0 || DestBB == 0) {
1730 delete SI;
1731 return Error("Invalid SWITCH record!");
1732 }
1733 SI->addCase(CaseVal, DestBB);
1734 }
1735 I = SI;
1736 break;
1737 }
1738
Duncan Sandsdc024672007-11-27 13:23:08 +00001739 case bitc::FUNC_CODE_INST_INVOKE: {
1740 // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
Chris Lattnera9bb7132007-05-08 05:38:01 +00001741 if (Record.size() < 4) return Error("Invalid INVOKE record");
Devang Patel05988662008-09-25 21:00:45 +00001742 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001743 unsigned CCInfo = Record[1];
1744 BasicBlock *NormalBB = getBasicBlock(Record[2]);
1745 BasicBlock *UnwindBB = getBasicBlock(Record[3]);
Chris Lattner7337ab92007-05-06 00:00:00 +00001746
Chris Lattnera9bb7132007-05-08 05:38:01 +00001747 unsigned OpNum = 4;
Chris Lattner7337ab92007-05-06 00:00:00 +00001748 Value *Callee;
1749 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001750 return Error("Invalid INVOKE record");
1751
Chris Lattner7337ab92007-05-06 00:00:00 +00001752 const PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
1753 const FunctionType *FTy = !CalleeTy ? 0 :
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001754 dyn_cast<FunctionType>(CalleeTy->getElementType());
1755
1756 // Check that the right number of fixed parameters are here.
Chris Lattner7337ab92007-05-06 00:00:00 +00001757 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
1758 Record.size() < OpNum+FTy->getNumParams())
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001759 return Error("Invalid INVOKE record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001760
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001761 SmallVector<Value*, 16> Ops;
Chris Lattner7337ab92007-05-06 00:00:00 +00001762 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
1763 Ops.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
1764 if (Ops.back() == 0) return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001765 }
1766
Chris Lattner7337ab92007-05-06 00:00:00 +00001767 if (!FTy->isVarArg()) {
1768 if (Record.size() != OpNum)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001769 return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001770 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001771 // Read type/value pairs for varargs params.
1772 while (OpNum != Record.size()) {
1773 Value *Op;
1774 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1775 return Error("Invalid INVOKE record");
1776 Ops.push_back(Op);
1777 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001778 }
1779
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001780 I = InvokeInst::Create(Callee, NormalBB, UnwindBB,
1781 Ops.begin(), Ops.end());
Chris Lattner76520192007-05-03 22:34:03 +00001782 cast<InvokeInst>(I)->setCallingConv(CCInfo);
Devang Patel05988662008-09-25 21:00:45 +00001783 cast<InvokeInst>(I)->setAttributes(PAL);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001784 break;
1785 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001786 case bitc::FUNC_CODE_INST_UNWIND: // UNWIND
1787 I = new UnwindInst();
1788 break;
1789 case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
1790 I = new UnreachableInst();
1791 break;
Chris Lattnerabfbf852007-05-06 00:21:25 +00001792 case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
Chris Lattner15e6d172007-05-04 19:11:41 +00001793 if (Record.size() < 1 || ((Record.size()-1)&1))
Chris Lattner2a98cca2007-05-03 18:58:09 +00001794 return Error("Invalid PHI record");
1795 const Type *Ty = getTypeByID(Record[0]);
1796 if (!Ty) return Error("Invalid PHI record");
1797
Gabor Greif051a9502008-04-06 20:25:17 +00001798 PHINode *PN = PHINode::Create(Ty);
Chris Lattner86941612008-04-13 00:14:42 +00001799 PN->reserveOperandSpace((Record.size()-1)/2);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001800
Chris Lattner15e6d172007-05-04 19:11:41 +00001801 for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
1802 Value *V = getFnValueByID(Record[1+i], Ty);
1803 BasicBlock *BB = getBasicBlock(Record[2+i]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001804 if (!V || !BB) return Error("Invalid PHI record");
1805 PN->addIncoming(V, BB);
1806 }
1807 I = PN;
1808 break;
1809 }
1810
1811 case bitc::FUNC_CODE_INST_MALLOC: { // MALLOC: [instty, op, align]
1812 if (Record.size() < 3)
1813 return Error("Invalid MALLOC record");
1814 const PointerType *Ty =
1815 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1816 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1817 unsigned Align = Record[2];
1818 if (!Ty || !Size) return Error("Invalid MALLOC record");
1819 I = new MallocInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1820 break;
1821 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001822 case bitc::FUNC_CODE_INST_FREE: { // FREE: [op, opty]
1823 unsigned OpNum = 0;
1824 Value *Op;
1825 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1826 OpNum != Record.size())
Chris Lattner2a98cca2007-05-03 18:58:09 +00001827 return Error("Invalid FREE record");
1828 I = new FreeInst(Op);
1829 break;
1830 }
1831 case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, op, align]
1832 if (Record.size() < 3)
1833 return Error("Invalid ALLOCA record");
1834 const PointerType *Ty =
1835 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1836 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1837 unsigned Align = Record[2];
1838 if (!Ty || !Size) return Error("Invalid ALLOCA record");
1839 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1840 break;
1841 }
Chris Lattner0579f7f2007-05-03 22:04:19 +00001842 case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
Chris Lattner7337ab92007-05-06 00:00:00 +00001843 unsigned OpNum = 0;
1844 Value *Op;
1845 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1846 OpNum+2 != Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00001847 return Error("Invalid LOAD record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001848
1849 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001850 break;
Chris Lattner0579f7f2007-05-03 22:04:19 +00001851 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001852 case bitc::FUNC_CODE_INST_STORE2: { // STORE2:[ptrty, ptr, val, align, vol]
1853 unsigned OpNum = 0;
1854 Value *Val, *Ptr;
1855 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
1856 getValue(Record, OpNum,
1857 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
1858 OpNum+2 != Record.size())
1859 return Error("Invalid STORE record");
1860
1861 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
1862 break;
1863 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001864 case bitc::FUNC_CODE_INST_STORE: { // STORE:[val, valty, ptr, align, vol]
Christopher Lambfe63fb92007-12-11 08:59:05 +00001865 // FIXME: Legacy form of store instruction. Should be removed in LLVM 3.0.
Chris Lattnerabfbf852007-05-06 00:21:25 +00001866 unsigned OpNum = 0;
1867 Value *Val, *Ptr;
1868 if (getValueTypePair(Record, OpNum, NextValueNo, Val) ||
Christopher Lamb43ad6b32007-12-17 01:12:55 +00001869 getValue(Record, OpNum, PointerType::getUnqual(Val->getType()), Ptr)||
Chris Lattnerabfbf852007-05-06 00:21:25 +00001870 OpNum+2 != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001871 return Error("Invalid STORE record");
Chris Lattnerabfbf852007-05-06 00:21:25 +00001872
1873 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001874 break;
1875 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001876 case bitc::FUNC_CODE_INST_CALL: {
1877 // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
1878 if (Record.size() < 3)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001879 return Error("Invalid CALL record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001880
Devang Patel05988662008-09-25 21:00:45 +00001881 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001882 unsigned CCInfo = Record[1];
1883
1884 unsigned OpNum = 2;
Chris Lattner7337ab92007-05-06 00:00:00 +00001885 Value *Callee;
1886 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
1887 return Error("Invalid CALL record");
1888
1889 const PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
Chris Lattner0579f7f2007-05-03 22:04:19 +00001890 const FunctionType *FTy = 0;
1891 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
Chris Lattner7337ab92007-05-06 00:00:00 +00001892 if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001893 return Error("Invalid CALL record");
1894
1895 SmallVector<Value*, 16> Args;
1896 // Read the fixed params.
Chris Lattner7337ab92007-05-06 00:00:00 +00001897 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001898 if (FTy->getParamType(i)->getTypeID()==Type::LabelTyID)
1899 Args.push_back(getBasicBlock(Record[OpNum]));
1900 else
1901 Args.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
Chris Lattner0579f7f2007-05-03 22:04:19 +00001902 if (Args.back() == 0) return Error("Invalid CALL record");
1903 }
1904
Chris Lattner0579f7f2007-05-03 22:04:19 +00001905 // Read type/value pairs for varargs params.
Chris Lattner0579f7f2007-05-03 22:04:19 +00001906 if (!FTy->isVarArg()) {
Chris Lattner7337ab92007-05-06 00:00:00 +00001907 if (OpNum != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001908 return Error("Invalid CALL record");
1909 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001910 while (OpNum != Record.size()) {
1911 Value *Op;
1912 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1913 return Error("Invalid CALL record");
1914 Args.push_back(Op);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001915 }
1916 }
1917
Gabor Greif051a9502008-04-06 20:25:17 +00001918 I = CallInst::Create(Callee, Args.begin(), Args.end());
Chris Lattner76520192007-05-03 22:34:03 +00001919 cast<CallInst>(I)->setCallingConv(CCInfo>>1);
1920 cast<CallInst>(I)->setTailCall(CCInfo & 1);
Devang Patel05988662008-09-25 21:00:45 +00001921 cast<CallInst>(I)->setAttributes(PAL);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001922 break;
1923 }
1924 case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
1925 if (Record.size() < 3)
1926 return Error("Invalid VAARG record");
1927 const Type *OpTy = getTypeByID(Record[0]);
1928 Value *Op = getFnValueByID(Record[1], OpTy);
1929 const Type *ResTy = getTypeByID(Record[2]);
1930 if (!OpTy || !Op || !ResTy)
1931 return Error("Invalid VAARG record");
1932 I = new VAArgInst(Op, ResTy);
1933 break;
1934 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001935 }
1936
1937 // Add instruction to end of current BB. If there is no current BB, reject
1938 // this file.
1939 if (CurBB == 0) {
1940 delete I;
1941 return Error("Invalid instruction with no BB");
1942 }
1943 CurBB->getInstList().push_back(I);
1944
1945 // If this was a terminator instruction, move to the next block.
1946 if (isa<TerminatorInst>(I)) {
1947 ++CurBBNo;
1948 CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : 0;
1949 }
1950
1951 // Non-void values get registered in the value table for future use.
1952 if (I && I->getType() != Type::VoidTy)
1953 ValueList.AssignValue(I, NextValueNo++);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001954 }
1955
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001956 // Check the function list for unresolved values.
1957 if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
1958 if (A->getParent() == 0) {
1959 // We found at least one unresolved value. Nuke them all to avoid leaks.
1960 for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
1961 if ((A = dyn_cast<Argument>(ValueList.back())) && A->getParent() == 0) {
1962 A->replaceAllUsesWith(UndefValue::get(A->getType()));
1963 delete A;
1964 }
1965 }
Chris Lattner35a04702007-05-04 03:50:29 +00001966 return Error("Never resolved value found in function!");
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001967 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001968 }
Chris Lattner980e5aa2007-05-01 05:52:21 +00001969
1970 // Trim the value list down to the size it was before we parsed this function.
1971 ValueList.shrinkTo(ModuleValueListSize);
1972 std::vector<BasicBlock*>().swap(FunctionBBs);
1973
Chris Lattner48f84872007-05-01 04:59:48 +00001974 return false;
1975}
1976
Chris Lattnerb348bb82007-05-18 04:02:46 +00001977//===----------------------------------------------------------------------===//
1978// ModuleProvider implementation
1979//===----------------------------------------------------------------------===//
1980
1981
1982bool BitcodeReader::materializeFunction(Function *F, std::string *ErrInfo) {
1983 // If it already is material, ignore the request.
Gabor Greifa99be512007-07-05 17:07:56 +00001984 if (!F->hasNotBeenReadFromBitcode()) return false;
Chris Lattnerb348bb82007-05-18 04:02:46 +00001985
1986 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator DFII =
1987 DeferredFunctionInfo.find(F);
1988 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
1989
1990 // Move the bit stream to the saved position of the deferred function body and
1991 // restore the real linkage type for the function.
1992 Stream.JumpToBit(DFII->second.first);
1993 F->setLinkage((GlobalValue::LinkageTypes)DFII->second.second);
1994
1995 if (ParseFunctionBody(F)) {
1996 if (ErrInfo) *ErrInfo = ErrorString;
1997 return true;
1998 }
Chandler Carruth69940402007-08-04 01:51:18 +00001999
2000 // Upgrade any old intrinsic calls in the function.
2001 for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
2002 E = UpgradedIntrinsics.end(); I != E; ++I) {
2003 if (I->first != I->second) {
2004 for (Value::use_iterator UI = I->first->use_begin(),
2005 UE = I->first->use_end(); UI != UE; ) {
2006 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2007 UpgradeIntrinsicCall(CI, I->second);
2008 }
2009 }
2010 }
Chris Lattnerb348bb82007-05-18 04:02:46 +00002011
2012 return false;
2013}
2014
2015void BitcodeReader::dematerializeFunction(Function *F) {
2016 // If this function isn't materialized, or if it is a proto, this is a noop.
Gabor Greifa99be512007-07-05 17:07:56 +00002017 if (F->hasNotBeenReadFromBitcode() || F->isDeclaration())
Chris Lattnerb348bb82007-05-18 04:02:46 +00002018 return;
2019
2020 assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
2021
2022 // Just forget the function body, we can remat it later.
2023 F->deleteBody();
2024 F->setLinkage(GlobalValue::GhostLinkage);
2025}
2026
2027
2028Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
2029 for (DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator I =
2030 DeferredFunctionInfo.begin(), E = DeferredFunctionInfo.end(); I != E;
2031 ++I) {
2032 Function *F = I->first;
Gabor Greifa99be512007-07-05 17:07:56 +00002033 if (F->hasNotBeenReadFromBitcode() &&
Chris Lattnerb348bb82007-05-18 04:02:46 +00002034 materializeFunction(F, ErrInfo))
2035 return 0;
2036 }
Chandler Carruth69940402007-08-04 01:51:18 +00002037
2038 // Upgrade any intrinsic calls that slipped through (should not happen!) and
2039 // delete the old functions to clean up. We can't do this unless the entire
2040 // module is materialized because there could always be another function body
2041 // with calls to the old function.
2042 for (std::vector<std::pair<Function*, Function*> >::iterator I =
2043 UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
2044 if (I->first != I->second) {
2045 for (Value::use_iterator UI = I->first->use_begin(),
2046 UE = I->first->use_end(); UI != UE; ) {
2047 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2048 UpgradeIntrinsicCall(CI, I->second);
2049 }
2050 ValueList.replaceUsesOfWith(I->first, I->second);
2051 I->first->eraseFromParent();
2052 }
2053 }
2054 std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
2055
Chris Lattnerb348bb82007-05-18 04:02:46 +00002056 return TheModule;
2057}
2058
2059
2060/// This method is provided by the parent ModuleProvde class and overriden
2061/// here. It simply releases the module from its provided and frees up our
2062/// state.
2063/// @brief Release our hold on the generated module
2064Module *BitcodeReader::releaseModule(std::string *ErrInfo) {
2065 // Since we're losing control of this Module, we must hand it back complete
2066 Module *M = ModuleProvider::releaseModule(ErrInfo);
2067 FreeState();
2068 return M;
2069}
2070
Chris Lattner48f84872007-05-01 04:59:48 +00002071
Chris Lattnerc453f762007-04-29 07:54:31 +00002072//===----------------------------------------------------------------------===//
2073// External interface
2074//===----------------------------------------------------------------------===//
2075
2076/// getBitcodeModuleProvider - lazy function-at-a-time loading from a file.
2077///
2078ModuleProvider *llvm::getBitcodeModuleProvider(MemoryBuffer *Buffer,
2079 std::string *ErrMsg) {
2080 BitcodeReader *R = new BitcodeReader(Buffer);
2081 if (R->ParseBitcode()) {
2082 if (ErrMsg)
2083 *ErrMsg = R->getErrorString();
2084
2085 // Don't let the BitcodeReader dtor delete 'Buffer'.
2086 R->releaseMemoryBuffer();
2087 delete R;
2088 return 0;
2089 }
2090 return R;
2091}
2092
2093/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
2094/// If an error occurs, return null and fill in *ErrMsg if non-null.
2095Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, std::string *ErrMsg){
2096 BitcodeReader *R;
2097 R = static_cast<BitcodeReader*>(getBitcodeModuleProvider(Buffer, ErrMsg));
2098 if (!R) return 0;
2099
Chris Lattnerb348bb82007-05-18 04:02:46 +00002100 // Read in the entire module.
2101 Module *M = R->materializeModule(ErrMsg);
2102
2103 // Don't let the BitcodeReader dtor delete 'Buffer', regardless of whether
2104 // there was an error.
Chris Lattnerc453f762007-04-29 07:54:31 +00002105 R->releaseMemoryBuffer();
Chris Lattnerb348bb82007-05-18 04:02:46 +00002106
2107 // If there was no error, tell ModuleProvider not to delete it when its dtor
2108 // is run.
2109 if (M)
2110 M = R->releaseModule(ErrMsg);
2111
Chris Lattnerc453f762007-04-29 07:54:31 +00002112 delete R;
2113 return M;
2114}