blob: 7f23b611bba589a0dacf3fa7f233815b81bc5165 [file] [log] [blame]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001//===- BitcodeReader.cpp - Internal BitcodeReader implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
18#include "llvm/Module.h"
Chris Lattner0b2482a2007-04-23 21:26:05 +000019#include "llvm/ADT/SmallString.h"
Chris Lattner0eef0802007-04-24 04:04:35 +000020#include "llvm/Support/MathExtras.h"
Chris Lattnerc453f762007-04-29 07:54:31 +000021#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000022using namespace llvm;
23
Chris Lattnerc453f762007-04-29 07:54:31 +000024BitcodeReader::~BitcodeReader() {
25 delete Buffer;
26}
27
28
Chris Lattnercaee0dc2007-04-22 06:23:29 +000029/// ConvertToString - Convert a string from a record into an std::string, return
30/// true on failure.
Chris Lattner0b2482a2007-04-23 21:26:05 +000031template<typename StrTy>
Chris Lattnercaee0dc2007-04-22 06:23:29 +000032static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
Chris Lattner0b2482a2007-04-23 21:26:05 +000033 StrTy &Result) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +000034 if (Record.size() < Idx+1 || Record.size() < Record[Idx]+Idx+1)
35 return true;
36
37 for (unsigned i = 0, e = Record[Idx]; i != e; ++i)
38 Result += (char)Record[Idx+i+1];
39 return false;
40}
41
42static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
43 switch (Val) {
44 default: // Map unknown/new linkages to external
45 case 0: return GlobalValue::ExternalLinkage;
46 case 1: return GlobalValue::WeakLinkage;
47 case 2: return GlobalValue::AppendingLinkage;
48 case 3: return GlobalValue::InternalLinkage;
49 case 4: return GlobalValue::LinkOnceLinkage;
50 case 5: return GlobalValue::DLLImportLinkage;
51 case 6: return GlobalValue::DLLExportLinkage;
52 case 7: return GlobalValue::ExternalWeakLinkage;
53 }
54}
55
56static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
57 switch (Val) {
58 default: // Map unknown visibilities to default.
59 case 0: return GlobalValue::DefaultVisibility;
60 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +000061 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000062 }
63}
64
Chris Lattnerf581c3b2007-04-24 07:07:11 +000065static int GetDecodedCastOpcode(unsigned Val) {
66 switch (Val) {
67 default: return -1;
68 case bitc::CAST_TRUNC : return Instruction::Trunc;
69 case bitc::CAST_ZEXT : return Instruction::ZExt;
70 case bitc::CAST_SEXT : return Instruction::SExt;
71 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
72 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
73 case bitc::CAST_UITOFP : return Instruction::UIToFP;
74 case bitc::CAST_SITOFP : return Instruction::SIToFP;
75 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
76 case bitc::CAST_FPEXT : return Instruction::FPExt;
77 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
78 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
79 case bitc::CAST_BITCAST : return Instruction::BitCast;
80 }
81}
82static int GetDecodedBinaryOpcode(unsigned Val, const Type *Ty) {
83 switch (Val) {
84 default: return -1;
85 case bitc::BINOP_ADD: return Instruction::Add;
86 case bitc::BINOP_SUB: return Instruction::Sub;
87 case bitc::BINOP_MUL: return Instruction::Mul;
88 case bitc::BINOP_UDIV: return Instruction::UDiv;
89 case bitc::BINOP_SDIV:
90 return Ty->isFPOrFPVector() ? Instruction::FDiv : Instruction::SDiv;
91 case bitc::BINOP_UREM: return Instruction::URem;
92 case bitc::BINOP_SREM:
93 return Ty->isFPOrFPVector() ? Instruction::FRem : Instruction::SRem;
94 case bitc::BINOP_SHL: return Instruction::Shl;
95 case bitc::BINOP_LSHR: return Instruction::LShr;
96 case bitc::BINOP_ASHR: return Instruction::AShr;
97 case bitc::BINOP_AND: return Instruction::And;
98 case bitc::BINOP_OR: return Instruction::Or;
99 case bitc::BINOP_XOR: return Instruction::Xor;
100 }
101}
102
103
Chris Lattner522b7b12007-04-24 05:48:56 +0000104namespace {
105 /// @brief A class for maintaining the slot number definition
106 /// as a placeholder for the actual definition for forward constants defs.
107 class ConstantPlaceHolder : public ConstantExpr {
108 ConstantPlaceHolder(); // DO NOT IMPLEMENT
109 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000110 public:
111 Use Op;
112 ConstantPlaceHolder(const Type *Ty)
113 : ConstantExpr(Ty, Instruction::UserOp1, &Op, 1),
114 Op(UndefValue::get(Type::Int32Ty), this) {
Chris Lattner522b7b12007-04-24 05:48:56 +0000115 }
116 };
117}
118
119Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
120 const Type *Ty) {
121 if (Idx >= size()) {
122 // Insert a bunch of null values.
123 Uses.resize(Idx+1);
124 OperandList = &Uses[0];
125 NumOperands = Idx+1;
126 }
127
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000128 if (Uses[Idx]) {
129 assert(Ty == getOperand(Idx)->getType() &&
130 "Type mismatch in constant table!");
Chris Lattner522b7b12007-04-24 05:48:56 +0000131 return cast<Constant>(getOperand(Idx));
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000132 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000133
134 // Create and return a placeholder, which will later be RAUW'd.
135 Constant *C = new ConstantPlaceHolder(Ty);
136 Uses[Idx].init(C, this);
137 return C;
138}
139
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000140
141const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
142 // If the TypeID is in range, return it.
143 if (ID < TypeList.size())
144 return TypeList[ID].get();
145 if (!isTypeTable) return 0;
146
147 // The type table allows forward references. Push as many Opaque types as
148 // needed to get up to ID.
149 while (TypeList.size() <= ID)
150 TypeList.push_back(OpaqueType::get());
151 return TypeList.back().get();
152}
153
154
Chris Lattner86697142007-05-01 05:01:34 +0000155bool BitcodeReader::ParseTypeTable() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000156 if (Stream.EnterSubBlock())
157 return Error("Malformed block record");
158
159 if (!TypeList.empty())
160 return Error("Multiple TYPE_BLOCKs found!");
161
162 SmallVector<uint64_t, 64> Record;
163 unsigned NumRecords = 0;
164
165 // Read all the records for this type table.
166 while (1) {
167 unsigned Code = Stream.ReadCode();
168 if (Code == bitc::END_BLOCK) {
169 if (NumRecords != TypeList.size())
170 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000171 if (Stream.ReadBlockEnd())
172 return Error("Error at end of type table block");
173 return false;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000174 }
175
176 if (Code == bitc::ENTER_SUBBLOCK) {
177 // No known subblocks, always skip them.
178 Stream.ReadSubBlockID();
179 if (Stream.SkipBlock())
180 return Error("Malformed block record");
181 continue;
182 }
183
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000184 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000185 Stream.ReadAbbrevRecord();
186 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000187 }
188
189 // Read a record.
190 Record.clear();
191 const Type *ResultTy = 0;
192 switch (Stream.ReadRecord(Code, Record)) {
193 default: // Default behavior: unknown type.
194 ResultTy = 0;
195 break;
196 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
197 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
198 // type list. This allows us to reserve space.
199 if (Record.size() < 1)
200 return Error("Invalid TYPE_CODE_NUMENTRY record");
201 TypeList.reserve(Record[0]);
202 continue;
203 case bitc::TYPE_CODE_META: // TYPE_CODE_META: [metacode]...
204 // No metadata supported yet.
205 if (Record.size() < 1)
206 return Error("Invalid TYPE_CODE_META record");
207 continue;
208
209 case bitc::TYPE_CODE_VOID: // VOID
210 ResultTy = Type::VoidTy;
211 break;
212 case bitc::TYPE_CODE_FLOAT: // FLOAT
213 ResultTy = Type::FloatTy;
214 break;
215 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
216 ResultTy = Type::DoubleTy;
217 break;
218 case bitc::TYPE_CODE_LABEL: // LABEL
219 ResultTy = Type::LabelTy;
220 break;
221 case bitc::TYPE_CODE_OPAQUE: // OPAQUE
222 ResultTy = 0;
223 break;
224 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
225 if (Record.size() < 1)
226 return Error("Invalid Integer type record");
227
228 ResultTy = IntegerType::get(Record[0]);
229 break;
230 case bitc::TYPE_CODE_POINTER: // POINTER: [pointee type]
231 if (Record.size() < 1)
232 return Error("Invalid POINTER type record");
233 ResultTy = PointerType::get(getTypeByID(Record[0], true));
234 break;
235 case bitc::TYPE_CODE_FUNCTION: {
236 // FUNCTION: [vararg, retty, #pararms, paramty N]
237 if (Record.size() < 3 || Record.size() < Record[2]+3)
238 return Error("Invalid FUNCTION type record");
239 std::vector<const Type*> ArgTys;
240 for (unsigned i = 0, e = Record[2]; i != e; ++i)
241 ArgTys.push_back(getTypeByID(Record[3+i], true));
242
243 // FIXME: PARAM TYS.
244 ResultTy = FunctionType::get(getTypeByID(Record[1], true), ArgTys,
245 Record[0]);
246 break;
247 }
248 case bitc::TYPE_CODE_STRUCT: { // STRUCT: [ispacked, #elts, eltty x N]
249 if (Record.size() < 2 || Record.size() < Record[1]+2)
250 return Error("Invalid STRUCT type record");
251 std::vector<const Type*> EltTys;
252 for (unsigned i = 0, e = Record[1]; i != e; ++i)
253 EltTys.push_back(getTypeByID(Record[2+i], true));
254 ResultTy = StructType::get(EltTys, Record[0]);
255 break;
256 }
257 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
258 if (Record.size() < 2)
259 return Error("Invalid ARRAY type record");
260 ResultTy = ArrayType::get(getTypeByID(Record[1], true), Record[0]);
261 break;
262 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
263 if (Record.size() < 2)
264 return Error("Invalid VECTOR type record");
265 ResultTy = VectorType::get(getTypeByID(Record[1], true), Record[0]);
266 break;
267 }
268
269 if (NumRecords == TypeList.size()) {
270 // If this is a new type slot, just append it.
271 TypeList.push_back(ResultTy ? ResultTy : OpaqueType::get());
272 ++NumRecords;
273 } else if (ResultTy == 0) {
274 // Otherwise, this was forward referenced, so an opaque type was created,
275 // but the result type is actually just an opaque. Leave the one we
276 // created previously.
277 ++NumRecords;
278 } else {
279 // Otherwise, this was forward referenced, so an opaque type was created.
280 // Resolve the opaque type to the real type now.
281 assert(NumRecords < TypeList.size() && "Typelist imbalance");
282 const OpaqueType *OldTy = cast<OpaqueType>(TypeList[NumRecords++].get());
283
284 // Don't directly push the new type on the Tab. Instead we want to replace
285 // the opaque type we previously inserted with the new concrete value. The
286 // refinement from the abstract (opaque) type to the new type causes all
287 // uses of the abstract type to use the concrete type (NewTy). This will
288 // also cause the opaque type to be deleted.
289 const_cast<OpaqueType*>(OldTy)->refineAbstractTypeTo(ResultTy);
290
291 // This should have replaced the old opaque type with the new type in the
Chris Lattner0eef0802007-04-24 04:04:35 +0000292 // value table... or with a preexisting type that was already in the
293 // system. Let's just make sure it did.
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000294 assert(TypeList[NumRecords-1].get() != OldTy &&
295 "refineAbstractType didn't work!");
296 }
297 }
298}
299
300
Chris Lattner86697142007-05-01 05:01:34 +0000301bool BitcodeReader::ParseTypeSymbolTable() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000302 if (Stream.EnterSubBlock())
303 return Error("Malformed block record");
304
305 SmallVector<uint64_t, 64> Record;
306
307 // Read all the records for this type table.
308 std::string TypeName;
309 while (1) {
310 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000311 if (Code == bitc::END_BLOCK) {
312 if (Stream.ReadBlockEnd())
313 return Error("Error at end of type symbol table block");
314 return false;
315 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000316
317 if (Code == bitc::ENTER_SUBBLOCK) {
318 // No known subblocks, always skip them.
319 Stream.ReadSubBlockID();
320 if (Stream.SkipBlock())
321 return Error("Malformed block record");
322 continue;
323 }
324
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000325 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000326 Stream.ReadAbbrevRecord();
327 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000328 }
329
330 // Read a record.
331 Record.clear();
332 switch (Stream.ReadRecord(Code, Record)) {
333 default: // Default behavior: unknown type.
334 break;
Chris Lattner6dbfd7b2007-04-24 00:18:21 +0000335 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namelen, namechar x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000336 if (ConvertToString(Record, 1, TypeName))
337 return Error("Invalid TST_ENTRY record");
338 unsigned TypeID = Record[0];
339 if (TypeID >= TypeList.size())
340 return Error("Invalid Type ID in TST_ENTRY record");
341
342 TheModule->addTypeName(TypeName, TypeList[TypeID].get());
343 TypeName.clear();
344 break;
345 }
346 }
347}
348
Chris Lattner86697142007-05-01 05:01:34 +0000349bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattner0b2482a2007-04-23 21:26:05 +0000350 if (Stream.EnterSubBlock())
351 return Error("Malformed block record");
352
353 SmallVector<uint64_t, 64> Record;
354
355 // Read all the records for this value table.
356 SmallString<128> ValueName;
357 while (1) {
358 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000359 if (Code == bitc::END_BLOCK) {
360 if (Stream.ReadBlockEnd())
361 return Error("Error at end of value symbol table block");
362 return false;
363 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000364 if (Code == bitc::ENTER_SUBBLOCK) {
365 // No known subblocks, always skip them.
366 Stream.ReadSubBlockID();
367 if (Stream.SkipBlock())
368 return Error("Malformed block record");
369 continue;
370 }
371
372 if (Code == bitc::DEFINE_ABBREV) {
373 Stream.ReadAbbrevRecord();
374 continue;
375 }
376
377 // Read a record.
378 Record.clear();
379 switch (Stream.ReadRecord(Code, Record)) {
380 default: // Default behavior: unknown type.
381 break;
Chris Lattner6dbfd7b2007-04-24 00:18:21 +0000382 case bitc::TST_CODE_ENTRY: // VST_ENTRY: [valueid, namelen, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000383 if (ConvertToString(Record, 1, ValueName))
384 return Error("Invalid TST_ENTRY record");
385 unsigned ValueID = Record[0];
386 if (ValueID >= ValueList.size())
387 return Error("Invalid Value ID in VST_ENTRY record");
388 Value *V = ValueList[ValueID];
389
390 V->setName(&ValueName[0], ValueName.size());
391 ValueName.clear();
392 break;
393 }
394 }
395}
396
Chris Lattner0eef0802007-04-24 04:04:35 +0000397/// DecodeSignRotatedValue - Decode a signed value stored with the sign bit in
398/// the LSB for dense VBR encoding.
399static uint64_t DecodeSignRotatedValue(uint64_t V) {
400 if ((V & 1) == 0)
401 return V >> 1;
402 if (V != 1)
403 return -(V >> 1);
404 // There is no such thing as -0 with integers. "-0" really means MININT.
405 return 1ULL << 63;
406}
407
Chris Lattner07d98b42007-04-26 02:46:40 +0000408/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
409/// values and aliases that we can.
410bool BitcodeReader::ResolveGlobalAndAliasInits() {
411 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
412 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
413
414 GlobalInitWorklist.swap(GlobalInits);
415 AliasInitWorklist.swap(AliasInits);
416
417 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +0000418 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +0000419 if (ValID >= ValueList.size()) {
420 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +0000421 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +0000422 } else {
423 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
424 GlobalInitWorklist.back().first->setInitializer(C);
425 else
426 return Error("Global variable initializer is not a constant!");
427 }
428 GlobalInitWorklist.pop_back();
429 }
430
431 while (!AliasInitWorklist.empty()) {
432 unsigned ValID = AliasInitWorklist.back().second;
433 if (ValID >= ValueList.size()) {
434 AliasInits.push_back(AliasInitWorklist.back());
435 } else {
436 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +0000437 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +0000438 else
439 return Error("Alias initializer is not a constant!");
440 }
441 AliasInitWorklist.pop_back();
442 }
443 return false;
444}
445
446
Chris Lattner86697142007-05-01 05:01:34 +0000447bool BitcodeReader::ParseConstants() {
Chris Lattnere16504e2007-04-24 03:30:34 +0000448 if (Stream.EnterSubBlock())
449 return Error("Malformed block record");
450
451 SmallVector<uint64_t, 64> Record;
452
453 // Read all the records for this value table.
454 const Type *CurTy = Type::Int32Ty;
Chris Lattner522b7b12007-04-24 05:48:56 +0000455 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +0000456 while (1) {
457 unsigned Code = Stream.ReadCode();
458 if (Code == bitc::END_BLOCK) {
Chris Lattner522b7b12007-04-24 05:48:56 +0000459 if (NextCstNo != ValueList.size())
460 return Error("Invalid constant reference!");
461
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000462 if (Stream.ReadBlockEnd())
463 return Error("Error at end of constants block");
464 return false;
Chris Lattnere16504e2007-04-24 03:30:34 +0000465 }
466
467 if (Code == bitc::ENTER_SUBBLOCK) {
468 // No known subblocks, always skip them.
469 Stream.ReadSubBlockID();
470 if (Stream.SkipBlock())
471 return Error("Malformed block record");
472 continue;
473 }
474
475 if (Code == bitc::DEFINE_ABBREV) {
476 Stream.ReadAbbrevRecord();
477 continue;
478 }
479
480 // Read a record.
481 Record.clear();
482 Value *V = 0;
483 switch (Stream.ReadRecord(Code, Record)) {
484 default: // Default behavior: unknown constant
485 case bitc::CST_CODE_UNDEF: // UNDEF
486 V = UndefValue::get(CurTy);
487 break;
488 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
489 if (Record.empty())
490 return Error("Malformed CST_SETTYPE record");
491 if (Record[0] >= TypeList.size())
492 return Error("Invalid Type ID in CST_SETTYPE record");
493 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +0000494 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +0000495 case bitc::CST_CODE_NULL: // NULL
496 V = Constant::getNullValue(CurTy);
497 break;
498 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000499 if (!isa<IntegerType>(CurTy) || Record.empty())
500 return Error("Invalid CST_INTEGER record");
501 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
502 break;
503 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n, n x intval]
504 if (!isa<IntegerType>(CurTy) || Record.empty() ||
505 Record.size() < Record[0]+1)
506 return Error("Invalid WIDE_INTEGER record");
507
508 unsigned NumWords = Record[0];
Chris Lattner084a8442007-04-24 17:22:05 +0000509 SmallVector<uint64_t, 8> Words;
510 Words.resize(NumWords);
Chris Lattner0eef0802007-04-24 04:04:35 +0000511 for (unsigned i = 0; i != NumWords; ++i)
Chris Lattner084a8442007-04-24 17:22:05 +0000512 Words[i] = DecodeSignRotatedValue(Record[i+1]);
Chris Lattner0eef0802007-04-24 04:04:35 +0000513 V = ConstantInt::get(APInt(cast<IntegerType>(CurTy)->getBitWidth(),
Chris Lattner084a8442007-04-24 17:22:05 +0000514 NumWords, &Words[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000515 break;
516 }
517 case bitc::CST_CODE_FLOAT: // FLOAT: [fpval]
518 if (Record.empty())
519 return Error("Invalid FLOAT record");
520 if (CurTy == Type::FloatTy)
521 V = ConstantFP::get(CurTy, BitsToFloat(Record[0]));
522 else if (CurTy == Type::DoubleTy)
523 V = ConstantFP::get(CurTy, BitsToDouble(Record[0]));
Chris Lattnere16504e2007-04-24 03:30:34 +0000524 else
Chris Lattner0eef0802007-04-24 04:04:35 +0000525 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000526 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000527
528 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n, n x value number]
529 if (Record.empty() || Record.size() < Record[0]+1)
530 return Error("Invalid CST_AGGREGATE record");
531
532 unsigned Size = Record[0];
533 std::vector<Constant*> Elts;
534
535 if (const StructType *STy = dyn_cast<StructType>(CurTy)) {
536 for (unsigned i = 0; i != Size; ++i)
537 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1],
538 STy->getElementType(i)));
539 V = ConstantStruct::get(STy, Elts);
540 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
541 const Type *EltTy = ATy->getElementType();
542 for (unsigned i = 0; i != Size; ++i)
543 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], EltTy));
544 V = ConstantArray::get(ATy, Elts);
545 } else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
546 const Type *EltTy = VTy->getElementType();
547 for (unsigned i = 0; i != Size; ++i)
548 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], EltTy));
549 V = ConstantVector::get(Elts);
550 } else {
551 V = UndefValue::get(CurTy);
552 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000553 break;
554 }
555
556 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
557 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
558 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000559 if (Opc < 0) {
560 V = UndefValue::get(CurTy); // Unknown binop.
561 } else {
562 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
563 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
564 V = ConstantExpr::get(Opc, LHS, RHS);
565 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000566 break;
567 }
568 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
569 if (Record.size() < 3) return Error("Invalid CE_CAST record");
570 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000571 if (Opc < 0) {
572 V = UndefValue::get(CurTy); // Unknown cast.
573 } else {
574 const Type *OpTy = getTypeByID(Record[1]);
575 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
576 V = ConstantExpr::getCast(Opc, Op, CurTy);
577 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000578 break;
579 }
580 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
581 if ((Record.size() & 1) == 0) return Error("Invalid CE_GEP record");
582 SmallVector<Constant*, 16> Elts;
583 for (unsigned i = 1, e = Record.size(); i != e; i += 2) {
584 const Type *ElTy = getTypeByID(Record[i]);
585 if (!ElTy) return Error("Invalid CE_GEP record");
586 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
587 }
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000588 V = ConstantExpr::getGetElementPtr(Elts[0], &Elts[1], Elts.size()-1);
589 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000590 }
591 case bitc::CST_CODE_CE_SELECT: // CE_SELECT: [opval#, opval#, opval#]
592 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
593 V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
594 Type::Int1Ty),
595 ValueList.getConstantFwdRef(Record[1],CurTy),
596 ValueList.getConstantFwdRef(Record[2],CurTy));
597 break;
598 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
599 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
600 const VectorType *OpTy =
601 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
602 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
603 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
604 Constant *Op1 = ValueList.getConstantFwdRef(Record[2],
605 OpTy->getElementType());
606 V = ConstantExpr::getExtractElement(Op0, Op1);
607 break;
608 }
609 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
610 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
611 if (Record.size() < 3 || OpTy == 0)
612 return Error("Invalid CE_INSERTELT record");
613 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
614 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
615 OpTy->getElementType());
616 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
617 V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
618 break;
619 }
620 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
621 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
622 if (Record.size() < 3 || OpTy == 0)
623 return Error("Invalid CE_INSERTELT record");
624 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
625 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
626 const Type *ShufTy=VectorType::get(Type::Int32Ty, OpTy->getNumElements());
627 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
628 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
629 break;
630 }
631 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
632 if (Record.size() < 4) return Error("Invalid CE_CMP record");
633 const Type *OpTy = getTypeByID(Record[0]);
634 if (OpTy == 0) return Error("Invalid CE_CMP record");
635 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
636 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
637
638 if (OpTy->isFloatingPoint())
639 V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
640 else
641 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
642 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000643 }
Chris Lattnere16504e2007-04-24 03:30:34 +0000644 }
645
Chris Lattner522b7b12007-04-24 05:48:56 +0000646 if (NextCstNo == ValueList.size())
647 ValueList.push_back(V);
648 else if (ValueList[NextCstNo] == 0)
649 ValueList.initVal(NextCstNo, V);
650 else {
651 // If there was a forward reference to this constant,
652 Value *OldV = ValueList[NextCstNo];
653 ValueList.setOperand(NextCstNo, V);
654 OldV->replaceAllUsesWith(V);
655 delete OldV;
656 }
657
658 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +0000659 }
660}
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000661
Chris Lattner980e5aa2007-05-01 05:52:21 +0000662/// RememberAndSkipFunctionBody - When we see the block for a function body,
663/// remember where it is and then skip it. This lets us lazily deserialize the
664/// functions.
665bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +0000666 // Get the function we are talking about.
667 if (FunctionsWithBodies.empty())
668 return Error("Insufficient function protos");
669
670 Function *Fn = FunctionsWithBodies.back();
671 FunctionsWithBodies.pop_back();
672
673 // Save the current stream state.
674 uint64_t CurBit = Stream.GetCurrentBitNo();
675 DeferredFunctionInfo[Fn] = std::make_pair(CurBit, Fn->getLinkage());
676
677 // Set the functions linkage to GhostLinkage so we know it is lazily
678 // deserialized.
679 Fn->setLinkage(GlobalValue::GhostLinkage);
680
681 // Skip over the function block for now.
682 if (Stream.SkipBlock())
683 return Error("Malformed block record");
684 return false;
685}
686
Chris Lattner86697142007-05-01 05:01:34 +0000687bool BitcodeReader::ParseModule(const std::string &ModuleID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000688 // Reject multiple MODULE_BLOCK's in a single bitstream.
689 if (TheModule)
690 return Error("Multiple MODULE_BLOCKs in same stream");
691
692 if (Stream.EnterSubBlock())
693 return Error("Malformed block record");
694
695 // Otherwise, create the module.
696 TheModule = new Module(ModuleID);
697
698 SmallVector<uint64_t, 64> Record;
699 std::vector<std::string> SectionTable;
700
701 // Read all the records for this module.
702 while (!Stream.AtEndOfStream()) {
703 unsigned Code = Stream.ReadCode();
Chris Lattnere84bcb92007-04-24 00:21:45 +0000704 if (Code == bitc::END_BLOCK) {
Chris Lattner980e5aa2007-05-01 05:52:21 +0000705 if (Stream.ReadBlockEnd())
706 return Error("Error at end of module block");
707
708 // Patch the initializers for globals and aliases up.
Chris Lattner07d98b42007-04-26 02:46:40 +0000709 ResolveGlobalAndAliasInits();
710 if (!GlobalInits.empty() || !AliasInits.empty())
Chris Lattnere84bcb92007-04-24 00:21:45 +0000711 return Error("Malformed global initializer set");
Chris Lattner48f84872007-05-01 04:59:48 +0000712 if (!FunctionsWithBodies.empty())
713 return Error("Too few function bodies found");
Chris Lattner980e5aa2007-05-01 05:52:21 +0000714
715 // Force deallocation of memory for these vectors to favor the client that
716 // want lazy deserialization.
717 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
718 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
719 std::vector<Function*>().swap(FunctionsWithBodies);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000720 return false;
Chris Lattnere84bcb92007-04-24 00:21:45 +0000721 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000722
723 if (Code == bitc::ENTER_SUBBLOCK) {
724 switch (Stream.ReadSubBlockID()) {
725 default: // Skip unknown content.
726 if (Stream.SkipBlock())
727 return Error("Malformed block record");
728 break;
729 case bitc::TYPE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +0000730 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000731 return true;
732 break;
733 case bitc::TYPE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +0000734 if (ParseTypeSymbolTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000735 return true;
736 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000737 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +0000738 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +0000739 return true;
740 break;
Chris Lattnere16504e2007-04-24 03:30:34 +0000741 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +0000742 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +0000743 return true;
744 break;
Chris Lattner48f84872007-05-01 04:59:48 +0000745 case bitc::FUNCTION_BLOCK_ID:
746 // If this is the first function body we've seen, reverse the
747 // FunctionsWithBodies list.
748 if (!HasReversedFunctionsWithBodies) {
749 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
750 HasReversedFunctionsWithBodies = true;
751 }
752
Chris Lattner980e5aa2007-05-01 05:52:21 +0000753 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +0000754 return true;
755 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000756 }
757 continue;
758 }
759
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000760 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000761 Stream.ReadAbbrevRecord();
762 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000763 }
764
765 // Read a record.
766 switch (Stream.ReadRecord(Code, Record)) {
767 default: break; // Default behavior, ignore unknown content.
768 case bitc::MODULE_CODE_VERSION: // VERSION: [version#]
769 if (Record.size() < 1)
770 return Error("Malformed MODULE_CODE_VERSION");
771 // Only version #0 is supported so far.
772 if (Record[0] != 0)
773 return Error("Unknown bitstream version!");
774 break;
775 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strlen, strchr x N]
776 std::string S;
777 if (ConvertToString(Record, 0, S))
778 return Error("Invalid MODULE_CODE_TRIPLE record");
779 TheModule->setTargetTriple(S);
780 break;
781 }
782 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [strlen, strchr x N]
783 std::string S;
784 if (ConvertToString(Record, 0, S))
785 return Error("Invalid MODULE_CODE_DATALAYOUT record");
786 TheModule->setDataLayout(S);
787 break;
788 }
789 case bitc::MODULE_CODE_ASM: { // ASM: [strlen, strchr x N]
790 std::string S;
791 if (ConvertToString(Record, 0, S))
792 return Error("Invalid MODULE_CODE_ASM record");
793 TheModule->setModuleInlineAsm(S);
794 break;
795 }
796 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strlen, strchr x N]
797 std::string S;
798 if (ConvertToString(Record, 0, S))
799 return Error("Invalid MODULE_CODE_DEPLIB record");
800 TheModule->addLibrary(S);
801 break;
802 }
803 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strlen, strchr x N]
804 std::string S;
805 if (ConvertToString(Record, 0, S))
806 return Error("Invalid MODULE_CODE_SECTIONNAME record");
807 SectionTable.push_back(S);
808 break;
809 }
810 // GLOBALVAR: [type, isconst, initid,
811 // linkage, alignment, section, visibility, threadlocal]
812 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000813 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000814 return Error("Invalid MODULE_CODE_GLOBALVAR record");
815 const Type *Ty = getTypeByID(Record[0]);
816 if (!isa<PointerType>(Ty))
817 return Error("Global not a pointer type!");
818 Ty = cast<PointerType>(Ty)->getElementType();
819
820 bool isConstant = Record[1];
821 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
822 unsigned Alignment = (1 << Record[4]) >> 1;
823 std::string Section;
824 if (Record[5]) {
825 if (Record[5]-1 >= SectionTable.size())
826 return Error("Invalid section ID");
827 Section = SectionTable[Record[5]-1];
828 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000829 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
830 if (Record.size() >= 6) Visibility = GetDecodedVisibility(Record[6]);
831 bool isThreadLocal = false;
832 if (Record.size() >= 7) isThreadLocal = Record[7];
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000833
834 GlobalVariable *NewGV =
835 new GlobalVariable(Ty, isConstant, Linkage, 0, "", TheModule);
836 NewGV->setAlignment(Alignment);
837 if (!Section.empty())
838 NewGV->setSection(Section);
839 NewGV->setVisibility(Visibility);
840 NewGV->setThreadLocal(isThreadLocal);
841
Chris Lattner0b2482a2007-04-23 21:26:05 +0000842 ValueList.push_back(NewGV);
843
Chris Lattner6dbfd7b2007-04-24 00:18:21 +0000844 // Remember which value to use for the global initializer.
845 if (unsigned InitID = Record[2])
846 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000847 break;
848 }
849 // FUNCTION: [type, callingconv, isproto, linkage, alignment, section,
850 // visibility]
851 case bitc::MODULE_CODE_FUNCTION: {
852 if (Record.size() < 7)
853 return Error("Invalid MODULE_CODE_FUNCTION record");
854 const Type *Ty = getTypeByID(Record[0]);
855 if (!isa<PointerType>(Ty))
856 return Error("Function not a pointer type!");
857 const FunctionType *FTy =
858 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
859 if (!FTy)
860 return Error("Function not a pointer to function type!");
861
862 Function *Func = new Function(FTy, GlobalValue::ExternalLinkage,
863 "", TheModule);
864
865 Func->setCallingConv(Record[1]);
Chris Lattner48f84872007-05-01 04:59:48 +0000866 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000867 Func->setLinkage(GetDecodedLinkage(Record[3]));
868 Func->setAlignment((1 << Record[4]) >> 1);
869 if (Record[5]) {
870 if (Record[5]-1 >= SectionTable.size())
871 return Error("Invalid section ID");
872 Func->setSection(SectionTable[Record[5]-1]);
873 }
874 Func->setVisibility(GetDecodedVisibility(Record[6]));
875
Chris Lattner0b2482a2007-04-23 21:26:05 +0000876 ValueList.push_back(Func);
Chris Lattner48f84872007-05-01 04:59:48 +0000877
878 // If this is a function with a body, remember the prototype we are
879 // creating now, so that we can match up the body with them later.
880 if (!isProto)
881 FunctionsWithBodies.push_back(Func);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000882 break;
883 }
Chris Lattner07d98b42007-04-26 02:46:40 +0000884 // ALIAS: [alias type, aliasee val#, linkage]
Chris Lattner198f34a2007-04-26 03:27:58 +0000885 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +0000886 if (Record.size() < 3)
887 return Error("Invalid MODULE_ALIAS record");
888 const Type *Ty = getTypeByID(Record[0]);
889 if (!isa<PointerType>(Ty))
890 return Error("Function not a pointer type!");
891
892 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
893 "", 0, TheModule);
894 ValueList.push_back(NewGA);
895 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
896 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000897 }
Chris Lattner198f34a2007-04-26 03:27:58 +0000898 /// MODULE_CODE_PURGEVALS: [numvals]
899 case bitc::MODULE_CODE_PURGEVALS:
900 // Trim down the value list to the specified size.
901 if (Record.size() < 1 || Record[0] > ValueList.size())
902 return Error("Invalid MODULE_PURGEVALS record");
903 ValueList.shrinkTo(Record[0]);
904 break;
905 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000906 Record.clear();
907 }
908
909 return Error("Premature end of bitstream");
910}
911
912
Chris Lattnerc453f762007-04-29 07:54:31 +0000913bool BitcodeReader::ParseBitcode() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000914 TheModule = 0;
915
Chris Lattnerc453f762007-04-29 07:54:31 +0000916 if (Buffer->getBufferSize() & 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000917 return Error("Bitcode stream should be a multiple of 4 bytes in length");
918
Chris Lattnerc453f762007-04-29 07:54:31 +0000919 unsigned char *BufPtr = (unsigned char *)Buffer->getBufferStart();
Chris Lattner48f84872007-05-01 04:59:48 +0000920 Stream.init(BufPtr, BufPtr+Buffer->getBufferSize());
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000921
922 // Sniff for the signature.
923 if (Stream.Read(8) != 'B' ||
924 Stream.Read(8) != 'C' ||
925 Stream.Read(4) != 0x0 ||
926 Stream.Read(4) != 0xC ||
927 Stream.Read(4) != 0xE ||
928 Stream.Read(4) != 0xD)
929 return Error("Invalid bitcode signature");
930
931 // We expect a number of well-defined blocks, though we don't necessarily
932 // need to understand them all.
933 while (!Stream.AtEndOfStream()) {
934 unsigned Code = Stream.ReadCode();
935
936 if (Code != bitc::ENTER_SUBBLOCK)
937 return Error("Invalid record at top-level");
938
939 unsigned BlockID = Stream.ReadSubBlockID();
940
941 // We only know the MODULE subblock ID.
942 if (BlockID == bitc::MODULE_BLOCK_ID) {
Chris Lattner86697142007-05-01 05:01:34 +0000943 if (ParseModule(Buffer->getBufferIdentifier()))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000944 return true;
945 } else if (Stream.SkipBlock()) {
946 return Error("Malformed block record");
947 }
948 }
949
950 return false;
951}
Chris Lattnerc453f762007-04-29 07:54:31 +0000952
Chris Lattner48f84872007-05-01 04:59:48 +0000953
954bool BitcodeReader::materializeFunction(Function *F, std::string *ErrInfo) {
955 // If it already is material, ignore the request.
956 if (!F->hasNotBeenReadFromBytecode()) return false;
957
958 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator DFII =
959 DeferredFunctionInfo.find(F);
960 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
961
962 // Move the bit stream to the saved position of the deferred function body and
963 // restore the real linkage type for the function.
964 Stream.JumpToBit(DFII->second.first);
965 F->setLinkage((GlobalValue::LinkageTypes)DFII->second.second);
966 DeferredFunctionInfo.erase(DFII);
967
Chris Lattner980e5aa2007-05-01 05:52:21 +0000968 if (ParseFunctionBody(F)) {
969 if (ErrInfo) *ErrInfo = ErrorString;
970 return true;
971 }
972
973 return false;
974}
975
976Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
977 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator I =
978 DeferredFunctionInfo.begin();
979 while (!DeferredFunctionInfo.empty()) {
980 Function *F = (*I++).first;
981 assert(F->hasNotBeenReadFromBytecode() &&
982 "Deserialized function found in map!");
983 if (materializeFunction(F, ErrInfo))
984 return 0;
985 }
986 return TheModule;
987}
988
989
990/// ParseFunctionBody - Lazily parse the specified function body block.
991bool BitcodeReader::ParseFunctionBody(Function *F) {
992 if (Stream.EnterSubBlock())
993 return Error("Malformed block record");
994
995 unsigned ModuleValueListSize = ValueList.size();
996
997 // Add all the function arguments to the value table.
998 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
999 ValueList.push_back(I);
1000
1001 // Read all the records.
1002 SmallVector<uint64_t, 64> Record;
1003 while (1) {
1004 unsigned Code = Stream.ReadCode();
1005 if (Code == bitc::END_BLOCK) {
1006 if (Stream.ReadBlockEnd())
1007 return Error("Error at end of function block");
1008 break;
1009 }
1010
1011 if (Code == bitc::ENTER_SUBBLOCK) {
1012 switch (Stream.ReadSubBlockID()) {
1013 default: // Skip unknown content.
1014 if (Stream.SkipBlock())
1015 return Error("Malformed block record");
1016 break;
1017 case bitc::CONSTANTS_BLOCK_ID:
1018 if (ParseConstants()) return true;
1019 break;
1020 case bitc::VALUE_SYMTAB_BLOCK_ID:
1021 if (ParseValueSymbolTable()) return true;
1022 break;
1023 }
1024 continue;
1025 }
1026
1027 if (Code == bitc::DEFINE_ABBREV) {
1028 Stream.ReadAbbrevRecord();
1029 continue;
1030 }
1031
1032 // Read a record.
1033 Record.clear();
1034 switch (Stream.ReadRecord(Code, Record)) {
1035 default: // Default behavior: unknown constant
1036 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
1037 if (Record.size() < 1)
1038 return Error("Invalid FUNC_CODE_DECLAREBLOCKS record");
1039 // Create all the basic blocks for the function.
1040 FunctionBBs.resize(Record.size());
1041 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
1042 FunctionBBs[i] = new BasicBlock("", F);
1043 break;
1044 }
1045 }
1046
1047
1048 // Trim the value list down to the size it was before we parsed this function.
1049 ValueList.shrinkTo(ModuleValueListSize);
1050 std::vector<BasicBlock*>().swap(FunctionBBs);
1051
Chris Lattner48f84872007-05-01 04:59:48 +00001052 return false;
1053}
1054
1055
Chris Lattnerc453f762007-04-29 07:54:31 +00001056//===----------------------------------------------------------------------===//
1057// External interface
1058//===----------------------------------------------------------------------===//
1059
1060/// getBitcodeModuleProvider - lazy function-at-a-time loading from a file.
1061///
1062ModuleProvider *llvm::getBitcodeModuleProvider(MemoryBuffer *Buffer,
1063 std::string *ErrMsg) {
1064 BitcodeReader *R = new BitcodeReader(Buffer);
1065 if (R->ParseBitcode()) {
1066 if (ErrMsg)
1067 *ErrMsg = R->getErrorString();
1068
1069 // Don't let the BitcodeReader dtor delete 'Buffer'.
1070 R->releaseMemoryBuffer();
1071 delete R;
1072 return 0;
1073 }
1074 return R;
1075}
1076
1077/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
1078/// If an error occurs, return null and fill in *ErrMsg if non-null.
1079Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, std::string *ErrMsg){
1080 BitcodeReader *R;
1081 R = static_cast<BitcodeReader*>(getBitcodeModuleProvider(Buffer, ErrMsg));
1082 if (!R) return 0;
1083
1084 // Read the whole module, get a pointer to it, tell ModuleProvider not to
1085 // delete it when its dtor is run.
1086 Module *M = R->releaseModule(ErrMsg);
1087
1088 // Don't let the BitcodeReader dtor delete 'Buffer'.
1089 R->releaseMemoryBuffer();
1090 delete R;
1091 return M;
1092}