blob: b940b9e3ec01d7ad306dfef774ef5f6d564c9adf [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"
Owen Anderson74a77812009-07-07 20:18:58 +000020#include "llvm/LLVMContext.h"
Nick Lewyckycb337992009-05-10 20:57:05 +000021#include "llvm/MDNode.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000022#include "llvm/Module.h"
Chandler Carruth69940402007-08-04 01:51:18 +000023#include "llvm/AutoUpgrade.h"
Chris Lattner0b2482a2007-04-23 21:26:05 +000024#include "llvm/ADT/SmallString.h"
Devang Patelf4511cd2008-02-26 19:38:17 +000025#include "llvm/ADT/SmallVector.h"
Chris Lattner0eef0802007-04-24 04:04:35 +000026#include "llvm/Support/MathExtras.h"
Chris Lattnerc453f762007-04-29 07:54:31 +000027#include "llvm/Support/MemoryBuffer.h"
Gabor Greifefe65362008-05-10 08:32:32 +000028#include "llvm/OperandTraits.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000029using namespace llvm;
30
Chris Lattnerb348bb82007-05-18 04:02:46 +000031void BitcodeReader::FreeState() {
Chris Lattnerc453f762007-04-29 07:54:31 +000032 delete Buffer;
Chris Lattnerb348bb82007-05-18 04:02:46 +000033 Buffer = 0;
34 std::vector<PATypeHolder>().swap(TypeList);
35 ValueList.clear();
Chris Lattner461edd92008-03-12 02:25:52 +000036
Devang Patel19c87462008-09-26 22:53:05 +000037 std::vector<AttrListPtr>().swap(MAttributes);
Chris Lattnerb348bb82007-05-18 04:02:46 +000038 std::vector<BasicBlock*>().swap(FunctionBBs);
39 std::vector<Function*>().swap(FunctionsWithBodies);
40 DeferredFunctionInfo.clear();
Chris Lattnerc453f762007-04-29 07:54:31 +000041}
42
Chris Lattner48c85b82007-05-04 03:30:17 +000043//===----------------------------------------------------------------------===//
44// Helper functions to implement forward reference resolution, etc.
45//===----------------------------------------------------------------------===//
Chris Lattnerc453f762007-04-29 07:54:31 +000046
Chris Lattnercaee0dc2007-04-22 06:23:29 +000047/// ConvertToString - Convert a string from a record into an std::string, return
48/// true on failure.
Chris Lattner0b2482a2007-04-23 21:26:05 +000049template<typename StrTy>
Chris Lattnercaee0dc2007-04-22 06:23:29 +000050static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
Chris Lattner0b2482a2007-04-23 21:26:05 +000051 StrTy &Result) {
Chris Lattner15e6d172007-05-04 19:11:41 +000052 if (Idx > Record.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +000053 return true;
54
Chris Lattner15e6d172007-05-04 19:11:41 +000055 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
56 Result += (char)Record[i];
Chris Lattnercaee0dc2007-04-22 06:23:29 +000057 return false;
58}
59
60static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
61 switch (Val) {
62 default: // Map unknown/new linkages to external
63 case 0: return GlobalValue::ExternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000064 case 1: return GlobalValue::WeakAnyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000065 case 2: return GlobalValue::AppendingLinkage;
66 case 3: return GlobalValue::InternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000067 case 4: return GlobalValue::LinkOnceAnyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000068 case 5: return GlobalValue::DLLImportLinkage;
69 case 6: return GlobalValue::DLLExportLinkage;
Duncan Sands5f4ee1f2009-03-11 08:08:06 +000070 case 7: return GlobalValue::ExternalWeakLinkage;
Duncan Sands4dc2b392009-03-11 20:14:15 +000071 case 8: return GlobalValue::CommonLinkage;
Rafael Espindolabb46f522009-01-15 20:18:42 +000072 case 9: return GlobalValue::PrivateLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000073 case 10: return GlobalValue::WeakODRLinkage;
74 case 11: return GlobalValue::LinkOnceODRLinkage;
Chris Lattner266c7bb2009-04-13 05:44:34 +000075 case 12: return GlobalValue::AvailableExternallyLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000076 }
77}
78
79static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
80 switch (Val) {
81 default: // Map unknown visibilities to default.
82 case 0: return GlobalValue::DefaultVisibility;
83 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +000084 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000085 }
86}
87
Chris Lattnerf581c3b2007-04-24 07:07:11 +000088static int GetDecodedCastOpcode(unsigned Val) {
89 switch (Val) {
90 default: return -1;
91 case bitc::CAST_TRUNC : return Instruction::Trunc;
92 case bitc::CAST_ZEXT : return Instruction::ZExt;
93 case bitc::CAST_SEXT : return Instruction::SExt;
94 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
95 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
96 case bitc::CAST_UITOFP : return Instruction::UIToFP;
97 case bitc::CAST_SITOFP : return Instruction::SIToFP;
98 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
99 case bitc::CAST_FPEXT : return Instruction::FPExt;
100 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
101 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
102 case bitc::CAST_BITCAST : return Instruction::BitCast;
103 }
104}
105static int GetDecodedBinaryOpcode(unsigned Val, const Type *Ty) {
106 switch (Val) {
107 default: return -1;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000108 case bitc::BINOP_ADD:
109 return Ty->isFPOrFPVector() ? Instruction::FAdd : Instruction::Add;
110 case bitc::BINOP_SUB:
111 return Ty->isFPOrFPVector() ? Instruction::FSub : Instruction::Sub;
112 case bitc::BINOP_MUL:
113 return Ty->isFPOrFPVector() ? Instruction::FMul : Instruction::Mul;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000114 case bitc::BINOP_UDIV: return Instruction::UDiv;
115 case bitc::BINOP_SDIV:
116 return Ty->isFPOrFPVector() ? Instruction::FDiv : Instruction::SDiv;
117 case bitc::BINOP_UREM: return Instruction::URem;
118 case bitc::BINOP_SREM:
119 return Ty->isFPOrFPVector() ? Instruction::FRem : Instruction::SRem;
120 case bitc::BINOP_SHL: return Instruction::Shl;
121 case bitc::BINOP_LSHR: return Instruction::LShr;
122 case bitc::BINOP_ASHR: return Instruction::AShr;
123 case bitc::BINOP_AND: return Instruction::And;
124 case bitc::BINOP_OR: return Instruction::Or;
125 case bitc::BINOP_XOR: return Instruction::Xor;
126 }
127}
128
Gabor Greifefe65362008-05-10 08:32:32 +0000129namespace llvm {
Chris Lattner522b7b12007-04-24 05:48:56 +0000130namespace {
131 /// @brief A class for maintaining the slot number definition
132 /// as a placeholder for the actual definition for forward constants defs.
133 class ConstantPlaceHolder : public ConstantExpr {
134 ConstantPlaceHolder(); // DO NOT IMPLEMENT
135 void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
Gabor Greif051a9502008-04-06 20:25:17 +0000136 public:
137 // allocate space for exactly one operand
138 void *operator new(size_t s) {
139 return User::operator new(s, 1);
140 }
Owen Anderson74a77812009-07-07 20:18:58 +0000141 explicit ConstantPlaceHolder(const Type *Ty, LLVMContext& Context)
Gabor Greifefe65362008-05-10 08:32:32 +0000142 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
Owen Anderson74a77812009-07-07 20:18:58 +0000143 Op<0>() = Context.getUndef(Type::Int32Ty);
Chris Lattner522b7b12007-04-24 05:48:56 +0000144 }
Chris Lattnerea693df2008-08-21 02:34:16 +0000145
146 /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
147 static inline bool classof(const ConstantPlaceHolder *) { return true; }
148 static bool classof(const Value *V) {
149 return isa<ConstantExpr>(V) &&
150 cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
151 }
152
153
Gabor Greifefe65362008-05-10 08:32:32 +0000154 /// Provide fast operand accessors
Chris Lattner46e77402009-03-31 22:55:09 +0000155 //DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner522b7b12007-04-24 05:48:56 +0000156 };
157}
158
Chris Lattner46e77402009-03-31 22:55:09 +0000159// FIXME: can we inherit this from ConstantExpr?
Gabor Greifefe65362008-05-10 08:32:32 +0000160template <>
161struct OperandTraits<ConstantPlaceHolder> : FixedNumOperandTraits<1> {
162};
Gabor Greifefe65362008-05-10 08:32:32 +0000163}
164
Chris Lattner46e77402009-03-31 22:55:09 +0000165
166void BitcodeReaderValueList::AssignValue(Value *V, unsigned Idx) {
167 if (Idx == size()) {
168 push_back(V);
169 return;
170 }
171
172 if (Idx >= size())
173 resize(Idx+1);
174
175 WeakVH &OldV = ValuePtrs[Idx];
176 if (OldV == 0) {
177 OldV = V;
178 return;
179 }
180
181 // Handle constants and non-constants (e.g. instrs) differently for
182 // efficiency.
183 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
184 ResolveConstants.push_back(std::make_pair(PHC, Idx));
185 OldV = V;
186 } else {
187 // If there was a forward reference to this value, replace it.
188 Value *PrevVal = OldV;
189 OldV->replaceAllUsesWith(V);
190 delete PrevVal;
Gabor Greifefe65362008-05-10 08:32:32 +0000191 }
192}
Chris Lattner46e77402009-03-31 22:55:09 +0000193
Gabor Greifefe65362008-05-10 08:32:32 +0000194
Chris Lattner522b7b12007-04-24 05:48:56 +0000195Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
196 const Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000197 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000198 resize(Idx + 1);
Chris Lattner522b7b12007-04-24 05:48:56 +0000199
Chris Lattner46e77402009-03-31 22:55:09 +0000200 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000201 assert(Ty == V->getType() && "Type mismatch in constant table!");
202 return cast<Constant>(V);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000203 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000204
205 // Create and return a placeholder, which will later be RAUW'd.
Owen Anderson74a77812009-07-07 20:18:58 +0000206 Constant *C = new ConstantPlaceHolder(Ty, Context);
Chris Lattner46e77402009-03-31 22:55:09 +0000207 ValuePtrs[Idx] = C;
Chris Lattner522b7b12007-04-24 05:48:56 +0000208 return C;
209}
210
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000211Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, const Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000212 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000213 resize(Idx + 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000214
Chris Lattner46e77402009-03-31 22:55:09 +0000215 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000216 assert((Ty == 0 || Ty == V->getType()) && "Type mismatch in value table!");
217 return V;
218 }
219
Chris Lattner01ff65f2007-05-02 05:16:49 +0000220 // No type specified, must be invalid reference.
221 if (Ty == 0) return 0;
222
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000223 // Create and return a placeholder, which will later be RAUW'd.
224 Value *V = new Argument(Ty);
Chris Lattner46e77402009-03-31 22:55:09 +0000225 ValuePtrs[Idx] = V;
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000226 return V;
227}
228
Chris Lattnerea693df2008-08-21 02:34:16 +0000229/// ResolveConstantForwardRefs - Once all constants are read, this method bulk
230/// resolves any forward references. The idea behind this is that we sometimes
231/// get constants (such as large arrays) which reference *many* forward ref
232/// constants. Replacing each of these causes a lot of thrashing when
233/// building/reuniquing the constant. Instead of doing this, we look at all the
234/// uses and rewrite all the place holders at once for any constant that uses
235/// a placeholder.
236void BitcodeReaderValueList::ResolveConstantForwardRefs() {
237 // Sort the values by-pointer so that they are efficient to look up with a
238 // binary search.
239 std::sort(ResolveConstants.begin(), ResolveConstants.end());
240
241 SmallVector<Constant*, 64> NewOps;
242
243 while (!ResolveConstants.empty()) {
Chris Lattner46e77402009-03-31 22:55:09 +0000244 Value *RealVal = operator[](ResolveConstants.back().second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000245 Constant *Placeholder = ResolveConstants.back().first;
246 ResolveConstants.pop_back();
247
248 // Loop over all users of the placeholder, updating them to reference the
249 // new value. If they reference more than one placeholder, update them all
250 // at once.
251 while (!Placeholder->use_empty()) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000252 Value::use_iterator UI = Placeholder->use_begin();
253
Chris Lattnerea693df2008-08-21 02:34:16 +0000254 // If the using object isn't uniqued, just update the operands. This
255 // handles instructions and initializers for global variables.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000256 if (!isa<Constant>(*UI) || isa<GlobalValue>(*UI)) {
257 UI.getUse().set(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000258 continue;
259 }
260
261 // Otherwise, we have a constant that uses the placeholder. Replace that
262 // constant with a new constant that has *all* placeholder uses updated.
Chris Lattnerb6135a02008-08-21 17:31:45 +0000263 Constant *UserC = cast<Constant>(*UI);
Chris Lattnerea693df2008-08-21 02:34:16 +0000264 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
265 I != E; ++I) {
266 Value *NewOp;
267 if (!isa<ConstantPlaceHolder>(*I)) {
268 // Not a placeholder reference.
269 NewOp = *I;
270 } else if (*I == Placeholder) {
271 // Common case is that it just references this one placeholder.
272 NewOp = RealVal;
273 } else {
274 // Otherwise, look up the placeholder in ResolveConstants.
275 ResolveConstantsTy::iterator It =
276 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
277 std::pair<Constant*, unsigned>(cast<Constant>(*I),
278 0));
279 assert(It != ResolveConstants.end() && It->first == *I);
Chris Lattner46e77402009-03-31 22:55:09 +0000280 NewOp = operator[](It->second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000281 }
282
283 NewOps.push_back(cast<Constant>(NewOp));
284 }
285
286 // Make the new constant.
287 Constant *NewC;
288 if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
Owen Anderson74a77812009-07-07 20:18:58 +0000289 NewC = Context.getConstantArray(UserCA->getType(), &NewOps[0],
290 NewOps.size());
Chris Lattnerea693df2008-08-21 02:34:16 +0000291 } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
Owen Anderson74a77812009-07-07 20:18:58 +0000292 NewC = Context.getConstantStruct(&NewOps[0], NewOps.size(),
293 UserCS->getType()->isPacked());
Chris Lattnerea693df2008-08-21 02:34:16 +0000294 } else if (isa<ConstantVector>(UserC)) {
Owen Anderson74a77812009-07-07 20:18:58 +0000295 NewC = Context.getConstantVector(&NewOps[0], NewOps.size());
Nick Lewyckycb337992009-05-10 20:57:05 +0000296 } else {
297 assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
Chris Lattnerea693df2008-08-21 02:34:16 +0000298 NewC = cast<ConstantExpr>(UserC)->getWithOperands(&NewOps[0],
299 NewOps.size());
300 }
301
302 UserC->replaceAllUsesWith(NewC);
303 UserC->destroyConstant();
304 NewOps.clear();
305 }
306
Nick Lewyckycb337992009-05-10 20:57:05 +0000307 // Update all ValueHandles, they should be the only users at this point.
308 Placeholder->replaceAllUsesWith(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000309 delete Placeholder;
310 }
311}
312
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000313
314const Type *BitcodeReader::getTypeByID(unsigned ID, bool isTypeTable) {
315 // If the TypeID is in range, return it.
316 if (ID < TypeList.size())
317 return TypeList[ID].get();
318 if (!isTypeTable) return 0;
319
320 // The type table allows forward references. Push as many Opaque types as
321 // needed to get up to ID.
322 while (TypeList.size() <= ID)
Owen Anderson74a77812009-07-07 20:18:58 +0000323 TypeList.push_back(Context.getOpaqueType());
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000324 return TypeList.back().get();
325}
326
Chris Lattner48c85b82007-05-04 03:30:17 +0000327//===----------------------------------------------------------------------===//
328// Functions for parsing blocks from the bitcode file
329//===----------------------------------------------------------------------===//
330
Devang Patel05988662008-09-25 21:00:45 +0000331bool BitcodeReader::ParseAttributeBlock() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000332 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
Chris Lattner48c85b82007-05-04 03:30:17 +0000333 return Error("Malformed block record");
334
Devang Patel19c87462008-09-26 22:53:05 +0000335 if (!MAttributes.empty())
Chris Lattner48c85b82007-05-04 03:30:17 +0000336 return Error("Multiple PARAMATTR blocks found!");
337
338 SmallVector<uint64_t, 64> Record;
339
Devang Patel05988662008-09-25 21:00:45 +0000340 SmallVector<AttributeWithIndex, 8> Attrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000341
342 // Read all the records.
343 while (1) {
344 unsigned Code = Stream.ReadCode();
345 if (Code == bitc::END_BLOCK) {
346 if (Stream.ReadBlockEnd())
347 return Error("Error at end of PARAMATTR block");
348 return false;
349 }
350
351 if (Code == bitc::ENTER_SUBBLOCK) {
352 // No known subblocks, always skip them.
353 Stream.ReadSubBlockID();
354 if (Stream.SkipBlock())
355 return Error("Malformed block record");
356 continue;
357 }
358
359 if (Code == bitc::DEFINE_ABBREV) {
360 Stream.ReadAbbrevRecord();
361 continue;
362 }
363
364 // Read a record.
365 Record.clear();
366 switch (Stream.ReadRecord(Code, Record)) {
367 default: // Default behavior: ignore.
368 break;
369 case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [paramidx0, attr0, ...]
370 if (Record.size() & 1)
371 return Error("Invalid ENTRY record");
372
Chris Lattner9a6cb152008-10-05 18:22:09 +0000373 // FIXME : Remove this autoupgrade code in LLVM 3.0.
Devang Patel19c87462008-09-26 22:53:05 +0000374 // If Function attributes are using index 0 then transfer them
Chris Lattner9a6cb152008-10-05 18:22:09 +0000375 // to index ~0. Index 0 is used for return value attributes but used to be
376 // used for function attributes.
Devang Patel19c87462008-09-26 22:53:05 +0000377 Attributes RetAttribute = Attribute::None;
378 Attributes FnAttribute = Attribute::None;
Chris Lattner48c85b82007-05-04 03:30:17 +0000379 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Nick Lewycky73ddd4f2008-12-19 09:38:31 +0000380 // FIXME: remove in LLVM 3.0
381 // The alignment is stored as a 16-bit raw value from bits 31--16.
382 // We shift the bits above 31 down by 11 bits.
383
384 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16;
385 if (Alignment && !isPowerOf2_32(Alignment))
386 return Error("Alignment is not a power of two.");
387
388 Attributes ReconstitutedAttr = Record[i+1] & 0xffff;
389 if (Alignment)
390 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment);
391 ReconstitutedAttr |= (Record[i+1] & (0xffffull << 32)) >> 11;
392 Record[i+1] = ReconstitutedAttr;
393
Devang Patel19c87462008-09-26 22:53:05 +0000394 if (Record[i] == 0)
395 RetAttribute = Record[i+1];
396 else if (Record[i] == ~0U)
397 FnAttribute = Record[i+1];
398 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000399
400 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
401 Attribute::ReadOnly|Attribute::ReadNone);
402
403 if (FnAttribute == Attribute::None && RetAttribute != Attribute::None &&
404 (RetAttribute & OldRetAttrs) != 0) {
405 if (FnAttribute == Attribute::None) { // add a slot so they get added.
406 Record.push_back(~0U);
407 Record.push_back(0);
Devang Patel19c87462008-09-26 22:53:05 +0000408 }
Chris Lattner9a6cb152008-10-05 18:22:09 +0000409
410 FnAttribute |= RetAttribute & OldRetAttrs;
411 RetAttribute &= ~OldRetAttrs;
Chris Lattner48c85b82007-05-04 03:30:17 +0000412 }
Chris Lattner461edd92008-03-12 02:25:52 +0000413
Devang Patel19c87462008-09-26 22:53:05 +0000414 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattner9a6cb152008-10-05 18:22:09 +0000415 if (Record[i] == 0) {
416 if (RetAttribute != Attribute::None)
417 Attrs.push_back(AttributeWithIndex::get(0, RetAttribute));
418 } else if (Record[i] == ~0U) {
419 if (FnAttribute != Attribute::None)
420 Attrs.push_back(AttributeWithIndex::get(~0U, FnAttribute));
421 } else if (Record[i+1] != Attribute::None)
Devang Patel19c87462008-09-26 22:53:05 +0000422 Attrs.push_back(AttributeWithIndex::get(Record[i], Record[i+1]));
423 }
Devang Patel19c87462008-09-26 22:53:05 +0000424
425 MAttributes.push_back(AttrListPtr::get(Attrs.begin(), Attrs.end()));
Chris Lattner48c85b82007-05-04 03:30:17 +0000426 Attrs.clear();
427 break;
428 }
Duncan Sands5e41f652007-11-20 14:09:29 +0000429 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000430 }
431}
432
433
Chris Lattner86697142007-05-01 05:01:34 +0000434bool BitcodeReader::ParseTypeTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000435 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000436 return Error("Malformed block record");
437
438 if (!TypeList.empty())
439 return Error("Multiple TYPE_BLOCKs found!");
440
441 SmallVector<uint64_t, 64> Record;
442 unsigned NumRecords = 0;
443
444 // Read all the records for this type table.
445 while (1) {
446 unsigned Code = Stream.ReadCode();
447 if (Code == bitc::END_BLOCK) {
448 if (NumRecords != TypeList.size())
449 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000450 if (Stream.ReadBlockEnd())
451 return Error("Error at end of type table block");
452 return false;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000453 }
454
455 if (Code == bitc::ENTER_SUBBLOCK) {
456 // No known subblocks, always skip them.
457 Stream.ReadSubBlockID();
458 if (Stream.SkipBlock())
459 return Error("Malformed block record");
460 continue;
461 }
462
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000463 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000464 Stream.ReadAbbrevRecord();
465 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000466 }
467
468 // Read a record.
469 Record.clear();
470 const Type *ResultTy = 0;
471 switch (Stream.ReadRecord(Code, Record)) {
472 default: // Default behavior: unknown type.
473 ResultTy = 0;
474 break;
475 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
476 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
477 // type list. This allows us to reserve space.
478 if (Record.size() < 1)
479 return Error("Invalid TYPE_CODE_NUMENTRY record");
480 TypeList.reserve(Record[0]);
481 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000482 case bitc::TYPE_CODE_VOID: // VOID
483 ResultTy = Type::VoidTy;
484 break;
485 case bitc::TYPE_CODE_FLOAT: // FLOAT
486 ResultTy = Type::FloatTy;
487 break;
488 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
489 ResultTy = Type::DoubleTy;
490 break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000491 case bitc::TYPE_CODE_X86_FP80: // X86_FP80
492 ResultTy = Type::X86_FP80Ty;
493 break;
494 case bitc::TYPE_CODE_FP128: // FP128
495 ResultTy = Type::FP128Ty;
496 break;
497 case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
498 ResultTy = Type::PPC_FP128Ty;
499 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000500 case bitc::TYPE_CODE_LABEL: // LABEL
501 ResultTy = Type::LabelTy;
502 break;
503 case bitc::TYPE_CODE_OPAQUE: // OPAQUE
504 ResultTy = 0;
505 break;
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000506 case bitc::TYPE_CODE_METADATA: // METADATA
507 ResultTy = Type::MetadataTy;
508 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000509 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
510 if (Record.size() < 1)
511 return Error("Invalid Integer type record");
512
Owen Anderson74a77812009-07-07 20:18:58 +0000513 ResultTy = Context.getIntegerType(Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000514 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000515 case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
516 // [pointee type, address space]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000517 if (Record.size() < 1)
518 return Error("Invalid POINTER type record");
Christopher Lambfe63fb92007-12-11 08:59:05 +0000519 unsigned AddressSpace = 0;
520 if (Record.size() == 2)
521 AddressSpace = Record[1];
Owen Anderson74a77812009-07-07 20:18:58 +0000522 ResultTy = Context.getPointerType(getTypeByID(Record[0], true),
523 AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000524 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000525 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000526 case bitc::TYPE_CODE_FUNCTION: {
Chris Lattnera1afde72007-11-27 17:48:06 +0000527 // FIXME: attrid is dead, remove it in LLVM 3.0
528 // FUNCTION: [vararg, attrid, retty, paramty x N]
529 if (Record.size() < 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000530 return Error("Invalid FUNCTION type record");
531 std::vector<const Type*> ArgTys;
Chris Lattnera1afde72007-11-27 17:48:06 +0000532 for (unsigned i = 3, e = Record.size(); i != e; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000533 ArgTys.push_back(getTypeByID(Record[i], true));
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000534
Owen Anderson74a77812009-07-07 20:18:58 +0000535 ResultTy = Context.getFunctionType(getTypeByID(Record[2], true), ArgTys,
Duncan Sandsdc024672007-11-27 13:23:08 +0000536 Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000537 break;
538 }
Chris Lattner15e6d172007-05-04 19:11:41 +0000539 case bitc::TYPE_CODE_STRUCT: { // STRUCT: [ispacked, eltty x N]
Chris Lattner7108dce2007-05-06 08:21:50 +0000540 if (Record.size() < 1)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000541 return Error("Invalid STRUCT type record");
542 std::vector<const Type*> EltTys;
Chris Lattner15e6d172007-05-04 19:11:41 +0000543 for (unsigned i = 1, e = Record.size(); i != e; ++i)
544 EltTys.push_back(getTypeByID(Record[i], true));
Owen Anderson74a77812009-07-07 20:18:58 +0000545 ResultTy = Context.getStructType(EltTys, Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000546 break;
547 }
548 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
549 if (Record.size() < 2)
550 return Error("Invalid ARRAY type record");
Owen Anderson74a77812009-07-07 20:18:58 +0000551 ResultTy = Context.getArrayType(getTypeByID(Record[1], true), Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000552 break;
553 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
554 if (Record.size() < 2)
555 return Error("Invalid VECTOR type record");
Owen Anderson74a77812009-07-07 20:18:58 +0000556 ResultTy = Context.getVectorType(getTypeByID(Record[1], true), Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000557 break;
558 }
559
560 if (NumRecords == TypeList.size()) {
561 // If this is a new type slot, just append it.
Owen Anderson74a77812009-07-07 20:18:58 +0000562 TypeList.push_back(ResultTy ? ResultTy : Context.getOpaqueType());
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000563 ++NumRecords;
564 } else if (ResultTy == 0) {
565 // Otherwise, this was forward referenced, so an opaque type was created,
566 // but the result type is actually just an opaque. Leave the one we
567 // created previously.
568 ++NumRecords;
569 } else {
570 // Otherwise, this was forward referenced, so an opaque type was created.
571 // Resolve the opaque type to the real type now.
572 assert(NumRecords < TypeList.size() && "Typelist imbalance");
573 const OpaqueType *OldTy = cast<OpaqueType>(TypeList[NumRecords++].get());
574
575 // Don't directly push the new type on the Tab. Instead we want to replace
576 // the opaque type we previously inserted with the new concrete value. The
577 // refinement from the abstract (opaque) type to the new type causes all
578 // uses of the abstract type to use the concrete type (NewTy). This will
579 // also cause the opaque type to be deleted.
580 const_cast<OpaqueType*>(OldTy)->refineAbstractTypeTo(ResultTy);
581
582 // This should have replaced the old opaque type with the new type in the
Chris Lattner0eef0802007-04-24 04:04:35 +0000583 // value table... or with a preexisting type that was already in the
584 // system. Let's just make sure it did.
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000585 assert(TypeList[NumRecords-1].get() != OldTy &&
586 "refineAbstractType didn't work!");
587 }
588 }
589}
590
591
Chris Lattner86697142007-05-01 05:01:34 +0000592bool BitcodeReader::ParseTypeSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000593 if (Stream.EnterSubBlock(bitc::TYPE_SYMTAB_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000594 return Error("Malformed block record");
595
596 SmallVector<uint64_t, 64> Record;
597
598 // Read all the records for this type table.
599 std::string TypeName;
600 while (1) {
601 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000602 if (Code == bitc::END_BLOCK) {
603 if (Stream.ReadBlockEnd())
604 return Error("Error at end of type symbol table block");
605 return false;
606 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000607
608 if (Code == bitc::ENTER_SUBBLOCK) {
609 // No known subblocks, always skip them.
610 Stream.ReadSubBlockID();
611 if (Stream.SkipBlock())
612 return Error("Malformed block record");
613 continue;
614 }
615
Chris Lattner36d5e7d2007-04-23 16:04:05 +0000616 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +0000617 Stream.ReadAbbrevRecord();
618 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000619 }
620
621 // Read a record.
622 Record.clear();
623 switch (Stream.ReadRecord(Code, Record)) {
624 default: // Default behavior: unknown type.
625 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000626 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000627 if (ConvertToString(Record, 1, TypeName))
628 return Error("Invalid TST_ENTRY record");
629 unsigned TypeID = Record[0];
630 if (TypeID >= TypeList.size())
631 return Error("Invalid Type ID in TST_ENTRY record");
632
633 TheModule->addTypeName(TypeName, TypeList[TypeID].get());
634 TypeName.clear();
635 break;
636 }
637 }
638}
639
Chris Lattner86697142007-05-01 05:01:34 +0000640bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000641 if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
Chris Lattner0b2482a2007-04-23 21:26:05 +0000642 return Error("Malformed block record");
643
644 SmallVector<uint64_t, 64> Record;
645
646 // Read all the records for this value table.
647 SmallString<128> ValueName;
648 while (1) {
649 unsigned Code = Stream.ReadCode();
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000650 if (Code == bitc::END_BLOCK) {
651 if (Stream.ReadBlockEnd())
652 return Error("Error at end of value symbol table block");
653 return false;
654 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000655 if (Code == bitc::ENTER_SUBBLOCK) {
656 // No known subblocks, always skip them.
657 Stream.ReadSubBlockID();
658 if (Stream.SkipBlock())
659 return Error("Malformed block record");
660 continue;
661 }
662
663 if (Code == bitc::DEFINE_ABBREV) {
664 Stream.ReadAbbrevRecord();
665 continue;
666 }
667
668 // Read a record.
669 Record.clear();
670 switch (Stream.ReadRecord(Code, Record)) {
671 default: // Default behavior: unknown type.
672 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000673 case bitc::VST_CODE_ENTRY: { // VST_ENTRY: [valueid, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000674 if (ConvertToString(Record, 1, ValueName))
Nick Lewycky88b72932009-05-31 06:07:28 +0000675 return Error("Invalid VST_ENTRY record");
Chris Lattner0b2482a2007-04-23 21:26:05 +0000676 unsigned ValueID = Record[0];
677 if (ValueID >= ValueList.size())
678 return Error("Invalid Value ID in VST_ENTRY record");
679 Value *V = ValueList[ValueID];
680
681 V->setName(&ValueName[0], ValueName.size());
682 ValueName.clear();
683 break;
Reid Spencerc8f8a242007-05-04 01:43:33 +0000684 }
685 case bitc::VST_CODE_BBENTRY: {
Chris Lattnere825ed52007-05-03 22:18:21 +0000686 if (ConvertToString(Record, 1, ValueName))
687 return Error("Invalid VST_BBENTRY record");
688 BasicBlock *BB = getBasicBlock(Record[0]);
689 if (BB == 0)
690 return Error("Invalid BB ID in VST_BBENTRY record");
691
692 BB->setName(&ValueName[0], ValueName.size());
693 ValueName.clear();
694 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000695 }
Reid Spencerc8f8a242007-05-04 01:43:33 +0000696 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000697 }
698}
699
Chris Lattner0eef0802007-04-24 04:04:35 +0000700/// DecodeSignRotatedValue - Decode a signed value stored with the sign bit in
701/// the LSB for dense VBR encoding.
702static uint64_t DecodeSignRotatedValue(uint64_t V) {
703 if ((V & 1) == 0)
704 return V >> 1;
705 if (V != 1)
706 return -(V >> 1);
707 // There is no such thing as -0 with integers. "-0" really means MININT.
708 return 1ULL << 63;
709}
710
Chris Lattner07d98b42007-04-26 02:46:40 +0000711/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
712/// values and aliases that we can.
713bool BitcodeReader::ResolveGlobalAndAliasInits() {
714 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
715 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
716
717 GlobalInitWorklist.swap(GlobalInits);
718 AliasInitWorklist.swap(AliasInits);
719
720 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +0000721 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +0000722 if (ValID >= ValueList.size()) {
723 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +0000724 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +0000725 } else {
726 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
727 GlobalInitWorklist.back().first->setInitializer(C);
728 else
729 return Error("Global variable initializer is not a constant!");
730 }
731 GlobalInitWorklist.pop_back();
732 }
733
734 while (!AliasInitWorklist.empty()) {
735 unsigned ValID = AliasInitWorklist.back().second;
736 if (ValID >= ValueList.size()) {
737 AliasInits.push_back(AliasInitWorklist.back());
738 } else {
739 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +0000740 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +0000741 else
742 return Error("Alias initializer is not a constant!");
743 }
744 AliasInitWorklist.pop_back();
745 }
746 return false;
747}
748
749
Chris Lattner86697142007-05-01 05:01:34 +0000750bool BitcodeReader::ParseConstants() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000751 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
Chris Lattnere16504e2007-04-24 03:30:34 +0000752 return Error("Malformed block record");
753
754 SmallVector<uint64_t, 64> Record;
755
756 // Read all the records for this value table.
757 const Type *CurTy = Type::Int32Ty;
Chris Lattner522b7b12007-04-24 05:48:56 +0000758 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +0000759 while (1) {
760 unsigned Code = Stream.ReadCode();
Chris Lattnerea693df2008-08-21 02:34:16 +0000761 if (Code == bitc::END_BLOCK)
762 break;
Chris Lattnere16504e2007-04-24 03:30:34 +0000763
764 if (Code == bitc::ENTER_SUBBLOCK) {
765 // No known subblocks, always skip them.
766 Stream.ReadSubBlockID();
767 if (Stream.SkipBlock())
768 return Error("Malformed block record");
769 continue;
770 }
771
772 if (Code == bitc::DEFINE_ABBREV) {
773 Stream.ReadAbbrevRecord();
774 continue;
775 }
776
777 // Read a record.
778 Record.clear();
779 Value *V = 0;
780 switch (Stream.ReadRecord(Code, Record)) {
781 default: // Default behavior: unknown constant
782 case bitc::CST_CODE_UNDEF: // UNDEF
Owen Anderson74a77812009-07-07 20:18:58 +0000783 V = Context.getUndef(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000784 break;
785 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
786 if (Record.empty())
787 return Error("Malformed CST_SETTYPE record");
788 if (Record[0] >= TypeList.size())
789 return Error("Invalid Type ID in CST_SETTYPE record");
790 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +0000791 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +0000792 case bitc::CST_CODE_NULL: // NULL
Owen Anderson74a77812009-07-07 20:18:58 +0000793 V = Context.getNullValue(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000794 break;
795 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000796 if (!isa<IntegerType>(CurTy) || Record.empty())
797 return Error("Invalid CST_INTEGER record");
Owen Anderson74a77812009-07-07 20:18:58 +0000798 V = Context.getConstantInt(CurTy, DecodeSignRotatedValue(Record[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000799 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000800 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
801 if (!isa<IntegerType>(CurTy) || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +0000802 return Error("Invalid WIDE_INTEGER record");
803
Chris Lattner15e6d172007-05-04 19:11:41 +0000804 unsigned NumWords = Record.size();
Chris Lattner084a8442007-04-24 17:22:05 +0000805 SmallVector<uint64_t, 8> Words;
806 Words.resize(NumWords);
Chris Lattner0eef0802007-04-24 04:04:35 +0000807 for (unsigned i = 0; i != NumWords; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000808 Words[i] = DecodeSignRotatedValue(Record[i]);
Owen Anderson74a77812009-07-07 20:18:58 +0000809 V = Context.getConstantInt(APInt(cast<IntegerType>(CurTy)->getBitWidth(),
Chris Lattner084a8442007-04-24 17:22:05 +0000810 NumWords, &Words[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +0000811 break;
812 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000813 case bitc::CST_CODE_FLOAT: { // FLOAT: [fpval]
Chris Lattner0eef0802007-04-24 04:04:35 +0000814 if (Record.empty())
815 return Error("Invalid FLOAT record");
816 if (CurTy == Type::FloatTy)
Owen Anderson74a77812009-07-07 20:18:58 +0000817 V = Context.getConstantFP(APFloat(APInt(32, (uint32_t)Record[0])));
Chris Lattner0eef0802007-04-24 04:04:35 +0000818 else if (CurTy == Type::DoubleTy)
Owen Anderson74a77812009-07-07 20:18:58 +0000819 V = Context.getConstantFP(APFloat(APInt(64, Record[0])));
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000820 else if (CurTy == Type::X86_FP80Ty) {
821 // Bits are not stored the same way as a normal i80 APInt, compensate.
822 uint64_t Rearrange[2];
823 Rearrange[0] = (Record[1] & 0xffffLL) | (Record[0] << 16);
824 Rearrange[1] = Record[0] >> 48;
Owen Anderson74a77812009-07-07 20:18:58 +0000825 V = Context.getConstantFP(APFloat(APInt(80, 2, Rearrange)));
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000826 } else if (CurTy == Type::FP128Ty)
Owen Anderson74a77812009-07-07 20:18:58 +0000827 V = Context.getConstantFP(APFloat(APInt(128, 2, &Record[0]), true));
Dale Johannesen43421b32007-09-06 18:13:44 +0000828 else if (CurTy == Type::PPC_FP128Ty)
Owen Anderson74a77812009-07-07 20:18:58 +0000829 V = Context.getConstantFP(APFloat(APInt(128, 2, &Record[0])));
Chris Lattnere16504e2007-04-24 03:30:34 +0000830 else
Owen Anderson74a77812009-07-07 20:18:58 +0000831 V = Context.getUndef(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +0000832 break;
Dale Johannesen3f6eb742007-09-11 18:32:33 +0000833 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000834
Chris Lattner15e6d172007-05-04 19:11:41 +0000835 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
836 if (Record.empty())
Chris Lattner522b7b12007-04-24 05:48:56 +0000837 return Error("Invalid CST_AGGREGATE record");
838
Chris Lattner15e6d172007-05-04 19:11:41 +0000839 unsigned Size = Record.size();
Chris Lattner522b7b12007-04-24 05:48:56 +0000840 std::vector<Constant*> Elts;
841
842 if (const StructType *STy = dyn_cast<StructType>(CurTy)) {
843 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000844 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
Chris Lattner522b7b12007-04-24 05:48:56 +0000845 STy->getElementType(i)));
Owen Anderson74a77812009-07-07 20:18:58 +0000846 V = Context.getConstantStruct(STy, Elts);
Chris Lattner522b7b12007-04-24 05:48:56 +0000847 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
848 const Type *EltTy = ATy->getElementType();
849 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000850 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Owen Anderson74a77812009-07-07 20:18:58 +0000851 V = Context.getConstantArray(ATy, Elts);
Chris Lattner522b7b12007-04-24 05:48:56 +0000852 } else if (const VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
853 const Type *EltTy = VTy->getElementType();
854 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +0000855 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Owen Anderson74a77812009-07-07 20:18:58 +0000856 V = Context.getConstantVector(Elts);
Chris Lattner522b7b12007-04-24 05:48:56 +0000857 } else {
Owen Anderson74a77812009-07-07 20:18:58 +0000858 V = Context.getUndef(CurTy);
Chris Lattner522b7b12007-04-24 05:48:56 +0000859 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000860 break;
861 }
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000862 case bitc::CST_CODE_STRING: { // STRING: [values]
863 if (Record.empty())
864 return Error("Invalid CST_AGGREGATE record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000865
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000866 const ArrayType *ATy = cast<ArrayType>(CurTy);
867 const Type *EltTy = ATy->getElementType();
868
869 unsigned Size = Record.size();
870 std::vector<Constant*> Elts;
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000871 for (unsigned i = 0; i != Size; ++i)
Owen Anderson74a77812009-07-07 20:18:58 +0000872 Elts.push_back(Context.getConstantInt(EltTy, Record[i]));
873 V = Context.getConstantArray(ATy, Elts);
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000874 break;
875 }
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000876 case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
877 if (Record.empty())
878 return Error("Invalid CST_AGGREGATE record");
879
880 const ArrayType *ATy = cast<ArrayType>(CurTy);
881 const Type *EltTy = ATy->getElementType();
882
883 unsigned Size = Record.size();
884 std::vector<Constant*> Elts;
885 for (unsigned i = 0; i != Size; ++i)
Owen Anderson74a77812009-07-07 20:18:58 +0000886 Elts.push_back(Context.getConstantInt(EltTy, Record[i]));
887 Elts.push_back(Context.getNullValue(EltTy));
888 V = Context.getConstantArray(ATy, Elts);
Chris Lattnercb3d91b2007-05-06 00:53:07 +0000889 break;
890 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000891 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
892 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
893 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000894 if (Opc < 0) {
Owen Anderson74a77812009-07-07 20:18:58 +0000895 V = Context.getUndef(CurTy); // Unknown binop.
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000896 } else {
897 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
898 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000899 V = Context.getConstantExpr(Opc, LHS, RHS);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000900 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000901 break;
902 }
903 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
904 if (Record.size() < 3) return Error("Invalid CE_CAST record");
905 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000906 if (Opc < 0) {
Owen Anderson74a77812009-07-07 20:18:58 +0000907 V = Context.getUndef(CurTy); // Unknown cast.
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000908 } else {
909 const Type *OpTy = getTypeByID(Record[1]);
Chris Lattnerbfcc3802007-05-06 07:33:01 +0000910 if (!OpTy) return Error("Invalid CE_CAST record");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000911 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000912 V = Context.getConstantExprCast(Opc, Op, CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000913 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000914 break;
915 }
916 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
Chris Lattner15e6d172007-05-04 19:11:41 +0000917 if (Record.size() & 1) return Error("Invalid CE_GEP record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000918 SmallVector<Constant*, 16> Elts;
Chris Lattner15e6d172007-05-04 19:11:41 +0000919 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000920 const Type *ElTy = getTypeByID(Record[i]);
921 if (!ElTy) return Error("Invalid CE_GEP record");
922 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
923 }
Owen Anderson74a77812009-07-07 20:18:58 +0000924 V = Context.getConstantExprGetElementPtr(Elts[0], &Elts[1],
925 Elts.size()-1);
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000926 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000927 }
928 case bitc::CST_CODE_CE_SELECT: // CE_SELECT: [opval#, opval#, opval#]
929 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
Owen Anderson74a77812009-07-07 20:18:58 +0000930 V = Context.getConstantExprSelect(ValueList.getConstantFwdRef(Record[0],
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000931 Type::Int1Ty),
932 ValueList.getConstantFwdRef(Record[1],CurTy),
933 ValueList.getConstantFwdRef(Record[2],CurTy));
934 break;
935 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
936 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
937 const VectorType *OpTy =
938 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
939 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
940 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
Chris Lattnerba120aa2009-02-03 02:11:28 +0000941 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
Owen Anderson74a77812009-07-07 20:18:58 +0000942 V = Context.getConstantExprExtractElement(Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000943 break;
944 }
945 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
946 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
947 if (Record.size() < 3 || OpTy == 0)
948 return Error("Invalid CE_INSERTELT record");
949 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
950 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
951 OpTy->getElementType());
952 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], Type::Int32Ty);
Owen Anderson74a77812009-07-07 20:18:58 +0000953 V = Context.getConstantExprInsertElement(Op0, Op1, Op2);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000954 break;
955 }
956 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
957 const VectorType *OpTy = dyn_cast<VectorType>(CurTy);
958 if (Record.size() < 3 || OpTy == 0)
Nate Begeman0f123cf2009-02-12 21:28:33 +0000959 return Error("Invalid CE_SHUFFLEVEC record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000960 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
961 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000962 const Type *ShufTy = Context.getVectorType(Type::Int32Ty,
963 OpTy->getNumElements());
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000964 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000965 V = Context.getConstantExprShuffleVector(Op0, Op1, Op2);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000966 break;
967 }
Nate Begeman0f123cf2009-02-12 21:28:33 +0000968 case bitc::CST_CODE_CE_SHUFVEC_EX: { // [opty, opval, opval, opval]
969 const VectorType *RTy = dyn_cast<VectorType>(CurTy);
970 const VectorType *OpTy = dyn_cast<VectorType>(getTypeByID(Record[0]));
971 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
972 return Error("Invalid CE_SHUFVEC_EX record");
973 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
974 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000975 const Type *ShufTy = Context.getVectorType(Type::Int32Ty,
976 RTy->getNumElements());
Nate Begeman0f123cf2009-02-12 21:28:33 +0000977 Constant *Op2 = ValueList.getConstantFwdRef(Record[3], ShufTy);
Owen Anderson74a77812009-07-07 20:18:58 +0000978 V = Context.getConstantExprShuffleVector(Op0, Op1, Op2);
Nate Begeman0f123cf2009-02-12 21:28:33 +0000979 break;
980 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000981 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
982 if (Record.size() < 4) return Error("Invalid CE_CMP record");
983 const Type *OpTy = getTypeByID(Record[0]);
984 if (OpTy == 0) return Error("Invalid CE_CMP record");
985 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
986 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
987
988 if (OpTy->isFloatingPoint())
Owen Anderson74a77812009-07-07 20:18:58 +0000989 V = Context.getConstantExprFCmp(Record[3], Op0, Op1);
Nate Begemanbaa64eb2008-05-12 20:33:52 +0000990 else if (!isa<VectorType>(OpTy))
Owen Anderson74a77812009-07-07 20:18:58 +0000991 V = Context.getConstantExprICmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +0000992 else if (OpTy->isFPOrFPVector())
Owen Anderson74a77812009-07-07 20:18:58 +0000993 V = Context.getConstantExprVFCmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +0000994 else
Owen Anderson74a77812009-07-07 20:18:58 +0000995 V = Context.getConstantExprVICmp(Record[3], Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000996 break;
Chris Lattner522b7b12007-04-24 05:48:56 +0000997 }
Chris Lattner2bce93a2007-05-06 01:58:20 +0000998 case bitc::CST_CODE_INLINEASM: {
999 if (Record.size() < 2) return Error("Invalid INLINEASM record");
1000 std::string AsmStr, ConstrStr;
1001 bool HasSideEffects = Record[0];
1002 unsigned AsmStrSize = Record[1];
1003 if (2+AsmStrSize >= Record.size())
1004 return Error("Invalid INLINEASM record");
1005 unsigned ConstStrSize = Record[2+AsmStrSize];
1006 if (3+AsmStrSize+ConstStrSize > Record.size())
1007 return Error("Invalid INLINEASM record");
1008
1009 for (unsigned i = 0; i != AsmStrSize; ++i)
1010 AsmStr += (char)Record[2+i];
1011 for (unsigned i = 0; i != ConstStrSize; ++i)
1012 ConstrStr += (char)Record[3+AsmStrSize+i];
1013 const PointerType *PTy = cast<PointerType>(CurTy);
1014 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
1015 AsmStr, ConstrStr, HasSideEffects);
1016 break;
1017 }
Nick Lewycky21cc4462009-04-04 07:22:01 +00001018 case bitc::CST_CODE_MDSTRING: {
Nick Lewycky21cc4462009-04-04 07:22:01 +00001019 unsigned MDStringLength = Record.size();
1020 SmallString<8> String;
1021 String.resize(MDStringLength);
1022 for (unsigned i = 0; i != MDStringLength; ++i)
1023 String[i] = Record[i];
Owen Anderson74a77812009-07-07 20:18:58 +00001024 V = Context.getMDString(String.c_str(), String.c_str() + MDStringLength);
Nick Lewycky21cc4462009-04-04 07:22:01 +00001025 break;
1026 }
1027 case bitc::CST_CODE_MDNODE: {
1028 if (Record.empty() || Record.size() % 2 == 1)
1029 return Error("Invalid CST_MDNODE record");
1030
1031 unsigned Size = Record.size();
Nick Lewyckycb337992009-05-10 20:57:05 +00001032 SmallVector<Value*, 8> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001033 for (unsigned i = 0; i != Size; i += 2) {
1034 const Type *Ty = getTypeByID(Record[i], false);
Nick Lewyckycb337992009-05-10 20:57:05 +00001035 if (Ty != Type::VoidTy)
Nick Lewycky3728a022009-06-01 04:42:10 +00001036 Elts.push_back(ValueList.getValueFwdRef(Record[i+1], Ty));
Nick Lewyckycb337992009-05-10 20:57:05 +00001037 else
1038 Elts.push_back(NULL);
Nick Lewycky21cc4462009-04-04 07:22:01 +00001039 }
Owen Anderson74a77812009-07-07 20:18:58 +00001040 V = Context.getMDNode(&Elts[0], Elts.size());
Nick Lewycky21cc4462009-04-04 07:22:01 +00001041 break;
1042 }
Chris Lattnere16504e2007-04-24 03:30:34 +00001043 }
1044
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001045 ValueList.AssignValue(V, NextCstNo);
Chris Lattner522b7b12007-04-24 05:48:56 +00001046 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +00001047 }
Chris Lattnerea693df2008-08-21 02:34:16 +00001048
1049 if (NextCstNo != ValueList.size())
1050 return Error("Invalid constant reference!");
1051
1052 if (Stream.ReadBlockEnd())
1053 return Error("Error at end of constants block");
1054
1055 // Once all the constants have been read, go through and resolve forward
1056 // references.
1057 ValueList.ResolveConstantForwardRefs();
1058 return false;
Chris Lattnere16504e2007-04-24 03:30:34 +00001059}
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001060
Chris Lattner980e5aa2007-05-01 05:52:21 +00001061/// RememberAndSkipFunctionBody - When we see the block for a function body,
1062/// remember where it is and then skip it. This lets us lazily deserialize the
1063/// functions.
1064bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +00001065 // Get the function we are talking about.
1066 if (FunctionsWithBodies.empty())
1067 return Error("Insufficient function protos");
1068
1069 Function *Fn = FunctionsWithBodies.back();
1070 FunctionsWithBodies.pop_back();
1071
1072 // Save the current stream state.
1073 uint64_t CurBit = Stream.GetCurrentBitNo();
1074 DeferredFunctionInfo[Fn] = std::make_pair(CurBit, Fn->getLinkage());
1075
1076 // Set the functions linkage to GhostLinkage so we know it is lazily
1077 // deserialized.
1078 Fn->setLinkage(GlobalValue::GhostLinkage);
1079
1080 // Skip over the function block for now.
1081 if (Stream.SkipBlock())
1082 return Error("Malformed block record");
1083 return false;
1084}
1085
Chris Lattner86697142007-05-01 05:01:34 +00001086bool BitcodeReader::ParseModule(const std::string &ModuleID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001087 // Reject multiple MODULE_BLOCK's in a single bitstream.
1088 if (TheModule)
1089 return Error("Multiple MODULE_BLOCKs in same stream");
1090
Chris Lattnere17b6582007-05-05 00:17:00 +00001091 if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001092 return Error("Malformed block record");
1093
1094 // Otherwise, create the module.
Owen Anderson8b477ed2009-07-01 16:58:40 +00001095 TheModule = new Module(ModuleID, Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001096
1097 SmallVector<uint64_t, 64> Record;
1098 std::vector<std::string> SectionTable;
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001099 std::vector<std::string> GCTable;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001100
1101 // Read all the records for this module.
1102 while (!Stream.AtEndOfStream()) {
1103 unsigned Code = Stream.ReadCode();
Chris Lattnere84bcb92007-04-24 00:21:45 +00001104 if (Code == bitc::END_BLOCK) {
Chris Lattner980e5aa2007-05-01 05:52:21 +00001105 if (Stream.ReadBlockEnd())
1106 return Error("Error at end of module block");
1107
1108 // Patch the initializers for globals and aliases up.
Chris Lattner07d98b42007-04-26 02:46:40 +00001109 ResolveGlobalAndAliasInits();
1110 if (!GlobalInits.empty() || !AliasInits.empty())
Chris Lattnere84bcb92007-04-24 00:21:45 +00001111 return Error("Malformed global initializer set");
Chris Lattner48f84872007-05-01 04:59:48 +00001112 if (!FunctionsWithBodies.empty())
1113 return Error("Too few function bodies found");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001114
Chandler Carruth69940402007-08-04 01:51:18 +00001115 // Look for intrinsic functions which need to be upgraded at some point
1116 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1117 FI != FE; ++FI) {
Evan Chengf9b83fc2007-12-17 22:33:23 +00001118 Function* NewFn;
1119 if (UpgradeIntrinsicFunction(FI, NewFn))
Chandler Carruth69940402007-08-04 01:51:18 +00001120 UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1121 }
1122
Chris Lattner980e5aa2007-05-01 05:52:21 +00001123 // Force deallocation of memory for these vectors to favor the client that
1124 // want lazy deserialization.
1125 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1126 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1127 std::vector<Function*>().swap(FunctionsWithBodies);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001128 return false;
Chris Lattnere84bcb92007-04-24 00:21:45 +00001129 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001130
1131 if (Code == bitc::ENTER_SUBBLOCK) {
1132 switch (Stream.ReadSubBlockID()) {
1133 default: // Skip unknown content.
1134 if (Stream.SkipBlock())
1135 return Error("Malformed block record");
1136 break;
Chris Lattner3f799802007-05-05 18:57:30 +00001137 case bitc::BLOCKINFO_BLOCK_ID:
1138 if (Stream.ReadBlockInfoBlock())
1139 return Error("Malformed BlockInfoBlock");
1140 break;
Chris Lattner48c85b82007-05-04 03:30:17 +00001141 case bitc::PARAMATTR_BLOCK_ID:
Devang Patel05988662008-09-25 21:00:45 +00001142 if (ParseAttributeBlock())
Chris Lattner48c85b82007-05-04 03:30:17 +00001143 return true;
1144 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001145 case bitc::TYPE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001146 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001147 return true;
1148 break;
1149 case bitc::TYPE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001150 if (ParseTypeSymbolTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001151 return true;
1152 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001153 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001154 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +00001155 return true;
1156 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001157 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001158 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +00001159 return true;
1160 break;
Chris Lattner48f84872007-05-01 04:59:48 +00001161 case bitc::FUNCTION_BLOCK_ID:
1162 // If this is the first function body we've seen, reverse the
1163 // FunctionsWithBodies list.
1164 if (!HasReversedFunctionsWithBodies) {
1165 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
1166 HasReversedFunctionsWithBodies = true;
1167 }
1168
Chris Lattner980e5aa2007-05-01 05:52:21 +00001169 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +00001170 return true;
1171 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001172 }
1173 continue;
1174 }
1175
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001176 if (Code == bitc::DEFINE_ABBREV) {
Chris Lattnerd127c1b2007-04-23 18:58:34 +00001177 Stream.ReadAbbrevRecord();
1178 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001179 }
1180
1181 // Read a record.
1182 switch (Stream.ReadRecord(Code, Record)) {
1183 default: break; // Default behavior, ignore unknown content.
1184 case bitc::MODULE_CODE_VERSION: // VERSION: [version#]
1185 if (Record.size() < 1)
1186 return Error("Malformed MODULE_CODE_VERSION");
1187 // Only version #0 is supported so far.
1188 if (Record[0] != 0)
1189 return Error("Unknown bitstream version!");
1190 break;
Chris Lattner15e6d172007-05-04 19:11:41 +00001191 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001192 std::string S;
1193 if (ConvertToString(Record, 0, S))
1194 return Error("Invalid MODULE_CODE_TRIPLE record");
1195 TheModule->setTargetTriple(S);
1196 break;
1197 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001198 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001199 std::string S;
1200 if (ConvertToString(Record, 0, S))
1201 return Error("Invalid MODULE_CODE_DATALAYOUT record");
1202 TheModule->setDataLayout(S);
1203 break;
1204 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001205 case bitc::MODULE_CODE_ASM: { // ASM: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001206 std::string S;
1207 if (ConvertToString(Record, 0, S))
1208 return Error("Invalid MODULE_CODE_ASM record");
1209 TheModule->setModuleInlineAsm(S);
1210 break;
1211 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001212 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001213 std::string S;
1214 if (ConvertToString(Record, 0, S))
1215 return Error("Invalid MODULE_CODE_DEPLIB record");
1216 TheModule->addLibrary(S);
1217 break;
1218 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001219 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001220 std::string S;
1221 if (ConvertToString(Record, 0, S))
1222 return Error("Invalid MODULE_CODE_SECTIONNAME record");
1223 SectionTable.push_back(S);
1224 break;
1225 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001226 case bitc::MODULE_CODE_GCNAME: { // SECTIONNAME: [strchr x N]
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001227 std::string S;
1228 if (ConvertToString(Record, 0, S))
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001229 return Error("Invalid MODULE_CODE_GCNAME record");
1230 GCTable.push_back(S);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001231 break;
1232 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001233 // GLOBALVAR: [pointer type, isconst, initid,
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001234 // linkage, alignment, section, visibility, threadlocal]
1235 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001236 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001237 return Error("Invalid MODULE_CODE_GLOBALVAR record");
1238 const Type *Ty = getTypeByID(Record[0]);
1239 if (!isa<PointerType>(Ty))
1240 return Error("Global not a pointer type!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001241 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001242 Ty = cast<PointerType>(Ty)->getElementType();
1243
1244 bool isConstant = Record[1];
1245 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1246 unsigned Alignment = (1 << Record[4]) >> 1;
1247 std::string Section;
1248 if (Record[5]) {
1249 if (Record[5]-1 >= SectionTable.size())
1250 return Error("Invalid section ID");
1251 Section = SectionTable[Record[5]-1];
1252 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001253 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
Chris Lattner5f32c012007-05-06 19:27:46 +00001254 if (Record.size() > 6)
1255 Visibility = GetDecodedVisibility(Record[6]);
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001256 bool isThreadLocal = false;
Chris Lattner5f32c012007-05-06 19:27:46 +00001257 if (Record.size() > 7)
1258 isThreadLocal = Record[7];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001259
1260 GlobalVariable *NewGV =
Owen Anderson3d29df32009-07-08 01:26:06 +00001261 new GlobalVariable(Context, Ty, isConstant, Linkage, 0, "", TheModule,
Christopher Lambfe63fb92007-12-11 08:59:05 +00001262 isThreadLocal, AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001263 NewGV->setAlignment(Alignment);
1264 if (!Section.empty())
1265 NewGV->setSection(Section);
1266 NewGV->setVisibility(Visibility);
1267 NewGV->setThreadLocal(isThreadLocal);
1268
Chris Lattner0b2482a2007-04-23 21:26:05 +00001269 ValueList.push_back(NewGV);
1270
Chris Lattner6dbfd7b2007-04-24 00:18:21 +00001271 // Remember which value to use for the global initializer.
1272 if (unsigned InitID = Record[2])
1273 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001274 break;
1275 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001276 // FUNCTION: [type, callingconv, isproto, linkage, paramattr,
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001277 // alignment, section, visibility, gc]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001278 case bitc::MODULE_CODE_FUNCTION: {
Chris Lattnera9bb7132007-05-08 05:38:01 +00001279 if (Record.size() < 8)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001280 return Error("Invalid MODULE_CODE_FUNCTION record");
1281 const Type *Ty = getTypeByID(Record[0]);
1282 if (!isa<PointerType>(Ty))
1283 return Error("Function not a pointer type!");
1284 const FunctionType *FTy =
1285 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
1286 if (!FTy)
1287 return Error("Function not a pointer to function type!");
1288
Gabor Greif051a9502008-04-06 20:25:17 +00001289 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
1290 "", TheModule);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001291
1292 Func->setCallingConv(Record[1]);
Chris Lattner48f84872007-05-01 04:59:48 +00001293 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001294 Func->setLinkage(GetDecodedLinkage(Record[3]));
Devang Patel05988662008-09-25 21:00:45 +00001295 Func->setAttributes(getAttributes(Record[4]));
Chris Lattnera9bb7132007-05-08 05:38:01 +00001296
1297 Func->setAlignment((1 << Record[5]) >> 1);
1298 if (Record[6]) {
1299 if (Record[6]-1 >= SectionTable.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001300 return Error("Invalid section ID");
Chris Lattnera9bb7132007-05-08 05:38:01 +00001301 Func->setSection(SectionTable[Record[6]-1]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001302 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001303 Func->setVisibility(GetDecodedVisibility(Record[7]));
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001304 if (Record.size() > 8 && Record[8]) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001305 if (Record[8]-1 > GCTable.size())
1306 return Error("Invalid GC ID");
1307 Func->setGC(GCTable[Record[8]-1].c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001308 }
Chris Lattner0b2482a2007-04-23 21:26:05 +00001309 ValueList.push_back(Func);
Chris Lattner48f84872007-05-01 04:59:48 +00001310
1311 // If this is a function with a body, remember the prototype we are
1312 // creating now, so that we can match up the body with them later.
1313 if (!isProto)
1314 FunctionsWithBodies.push_back(Func);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001315 break;
1316 }
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001317 // ALIAS: [alias type, aliasee val#, linkage]
Anton Korobeynikovf8342b92008-03-11 21:40:17 +00001318 // ALIAS: [alias type, aliasee val#, linkage, visibility]
Chris Lattner198f34a2007-04-26 03:27:58 +00001319 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +00001320 if (Record.size() < 3)
1321 return Error("Invalid MODULE_ALIAS record");
1322 const Type *Ty = getTypeByID(Record[0]);
1323 if (!isa<PointerType>(Ty))
1324 return Error("Function not a pointer type!");
1325
1326 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
1327 "", 0, TheModule);
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001328 // Old bitcode files didn't have visibility field.
1329 if (Record.size() > 3)
1330 NewGA->setVisibility(GetDecodedVisibility(Record[3]));
Chris Lattner07d98b42007-04-26 02:46:40 +00001331 ValueList.push_back(NewGA);
1332 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
1333 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001334 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001335 /// MODULE_CODE_PURGEVALS: [numvals]
1336 case bitc::MODULE_CODE_PURGEVALS:
1337 // Trim down the value list to the specified size.
1338 if (Record.size() < 1 || Record[0] > ValueList.size())
1339 return Error("Invalid MODULE_PURGEVALS record");
1340 ValueList.shrinkTo(Record[0]);
1341 break;
1342 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001343 Record.clear();
1344 }
1345
1346 return Error("Premature end of bitstream");
1347}
1348
Chris Lattnerc453f762007-04-29 07:54:31 +00001349bool BitcodeReader::ParseBitcode() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001350 TheModule = 0;
1351
Chris Lattnerc453f762007-04-29 07:54:31 +00001352 if (Buffer->getBufferSize() & 3)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001353 return Error("Bitcode stream should be a multiple of 4 bytes in length");
1354
Chris Lattnerc453f762007-04-29 07:54:31 +00001355 unsigned char *BufPtr = (unsigned char *)Buffer->getBufferStart();
Chris Lattner6fa6a322008-07-09 05:14:23 +00001356 unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
1357
1358 // If we have a wrapper header, parse it and ignore the non-bc file contents.
1359 // The magic number is 0x0B17C0DE stored in little endian.
Chris Lattnere2a466b2009-04-06 20:54:32 +00001360 if (isBitcodeWrapper(BufPtr, BufEnd))
1361 if (SkipBitcodeWrapperHeader(BufPtr, BufEnd))
Chris Lattner6fa6a322008-07-09 05:14:23 +00001362 return Error("Invalid bitcode wrapper header");
1363
Chris Lattner962dde32009-04-26 20:59:02 +00001364 StreamFile.init(BufPtr, BufEnd);
1365 Stream.init(StreamFile);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001366
1367 // Sniff for the signature.
1368 if (Stream.Read(8) != 'B' ||
1369 Stream.Read(8) != 'C' ||
1370 Stream.Read(4) != 0x0 ||
1371 Stream.Read(4) != 0xC ||
1372 Stream.Read(4) != 0xE ||
1373 Stream.Read(4) != 0xD)
1374 return Error("Invalid bitcode signature");
1375
1376 // We expect a number of well-defined blocks, though we don't necessarily
1377 // need to understand them all.
1378 while (!Stream.AtEndOfStream()) {
1379 unsigned Code = Stream.ReadCode();
1380
1381 if (Code != bitc::ENTER_SUBBLOCK)
1382 return Error("Invalid record at top-level");
1383
1384 unsigned BlockID = Stream.ReadSubBlockID();
1385
1386 // We only know the MODULE subblock ID.
Chris Lattnere17b6582007-05-05 00:17:00 +00001387 switch (BlockID) {
1388 case bitc::BLOCKINFO_BLOCK_ID:
1389 if (Stream.ReadBlockInfoBlock())
1390 return Error("Malformed BlockInfoBlock");
1391 break;
1392 case bitc::MODULE_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001393 if (ParseModule(Buffer->getBufferIdentifier()))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001394 return true;
Chris Lattnere17b6582007-05-05 00:17:00 +00001395 break;
1396 default:
1397 if (Stream.SkipBlock())
1398 return Error("Malformed block record");
1399 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001400 }
1401 }
1402
1403 return false;
1404}
Chris Lattnerc453f762007-04-29 07:54:31 +00001405
Chris Lattner48f84872007-05-01 04:59:48 +00001406
Chris Lattner980e5aa2007-05-01 05:52:21 +00001407/// ParseFunctionBody - Lazily parse the specified function body block.
1408bool BitcodeReader::ParseFunctionBody(Function *F) {
Chris Lattnere17b6582007-05-05 00:17:00 +00001409 if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
Chris Lattner980e5aa2007-05-01 05:52:21 +00001410 return Error("Malformed block record");
1411
1412 unsigned ModuleValueListSize = ValueList.size();
1413
1414 // Add all the function arguments to the value table.
1415 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
1416 ValueList.push_back(I);
1417
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001418 unsigned NextValueNo = ValueList.size();
Chris Lattner231cbcb2007-05-02 04:27:25 +00001419 BasicBlock *CurBB = 0;
1420 unsigned CurBBNo = 0;
1421
Chris Lattner980e5aa2007-05-01 05:52:21 +00001422 // Read all the records.
1423 SmallVector<uint64_t, 64> Record;
1424 while (1) {
1425 unsigned Code = Stream.ReadCode();
1426 if (Code == bitc::END_BLOCK) {
1427 if (Stream.ReadBlockEnd())
1428 return Error("Error at end of function block");
1429 break;
1430 }
1431
1432 if (Code == bitc::ENTER_SUBBLOCK) {
1433 switch (Stream.ReadSubBlockID()) {
1434 default: // Skip unknown content.
1435 if (Stream.SkipBlock())
1436 return Error("Malformed block record");
1437 break;
1438 case bitc::CONSTANTS_BLOCK_ID:
1439 if (ParseConstants()) return true;
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001440 NextValueNo = ValueList.size();
Chris Lattner980e5aa2007-05-01 05:52:21 +00001441 break;
1442 case bitc::VALUE_SYMTAB_BLOCK_ID:
1443 if (ParseValueSymbolTable()) return true;
1444 break;
1445 }
1446 continue;
1447 }
1448
1449 if (Code == bitc::DEFINE_ABBREV) {
1450 Stream.ReadAbbrevRecord();
1451 continue;
1452 }
1453
1454 // Read a record.
1455 Record.clear();
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001456 Instruction *I = 0;
Chris Lattner980e5aa2007-05-01 05:52:21 +00001457 switch (Stream.ReadRecord(Code, Record)) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001458 default: // Default behavior: reject
1459 return Error("Unknown instruction");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001460 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001461 if (Record.size() < 1 || Record[0] == 0)
1462 return Error("Invalid DECLAREBLOCKS record");
Chris Lattner980e5aa2007-05-01 05:52:21 +00001463 // Create all the basic blocks for the function.
Chris Lattnerf61e6452007-05-03 22:09:51 +00001464 FunctionBBs.resize(Record[0]);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001465 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
Gabor Greif051a9502008-04-06 20:25:17 +00001466 FunctionBBs[i] = BasicBlock::Create("", F);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001467 CurBB = FunctionBBs[0];
1468 continue;
1469
Chris Lattnerabfbf852007-05-06 00:21:25 +00001470 case bitc::FUNC_CODE_INST_BINOP: { // BINOP: [opval, ty, opval, opcode]
1471 unsigned OpNum = 0;
1472 Value *LHS, *RHS;
1473 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1474 getValue(Record, OpNum, LHS->getType(), RHS) ||
1475 OpNum+1 != Record.size())
1476 return Error("Invalid BINOP record");
1477
1478 int Opc = GetDecodedBinaryOpcode(Record[OpNum], LHS->getType());
1479 if (Opc == -1) return Error("Invalid BINOP record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001480 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001481 break;
1482 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001483 case bitc::FUNC_CODE_INST_CAST: { // CAST: [opval, opty, destty, castopc]
1484 unsigned OpNum = 0;
1485 Value *Op;
1486 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1487 OpNum+2 != Record.size())
1488 return Error("Invalid CAST record");
1489
1490 const Type *ResTy = getTypeByID(Record[OpNum]);
1491 int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
1492 if (Opc == -1 || ResTy == 0)
Chris Lattner231cbcb2007-05-02 04:27:25 +00001493 return Error("Invalid CAST record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001494 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
Chris Lattner231cbcb2007-05-02 04:27:25 +00001495 break;
1496 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001497 case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
Chris Lattner7337ab92007-05-06 00:00:00 +00001498 unsigned OpNum = 0;
1499 Value *BasePtr;
1500 if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001501 return Error("Invalid GEP record");
1502
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001503 SmallVector<Value*, 16> GEPIdx;
Chris Lattner7337ab92007-05-06 00:00:00 +00001504 while (OpNum != Record.size()) {
1505 Value *Op;
1506 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001507 return Error("Invalid GEP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001508 GEPIdx.push_back(Op);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001509 }
1510
Gabor Greif051a9502008-04-06 20:25:17 +00001511 I = GetElementPtrInst::Create(BasePtr, GEPIdx.begin(), GEPIdx.end());
Chris Lattner01ff65f2007-05-02 05:16:49 +00001512 break;
1513 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001514
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001515 case bitc::FUNC_CODE_INST_EXTRACTVAL: {
1516 // EXTRACTVAL: [opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001517 unsigned OpNum = 0;
1518 Value *Agg;
1519 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1520 return Error("Invalid EXTRACTVAL record");
1521
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001522 SmallVector<unsigned, 4> EXTRACTVALIdx;
1523 for (unsigned RecSize = Record.size();
1524 OpNum != RecSize; ++OpNum) {
1525 uint64_t Index = Record[OpNum];
1526 if ((unsigned)Index != Index)
1527 return Error("Invalid EXTRACTVAL index");
1528 EXTRACTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001529 }
1530
1531 I = ExtractValueInst::Create(Agg,
1532 EXTRACTVALIdx.begin(), EXTRACTVALIdx.end());
1533 break;
1534 }
1535
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001536 case bitc::FUNC_CODE_INST_INSERTVAL: {
1537 // INSERTVAL: [opty, opval, opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00001538 unsigned OpNum = 0;
1539 Value *Agg;
1540 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
1541 return Error("Invalid INSERTVAL record");
1542 Value *Val;
1543 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
1544 return Error("Invalid INSERTVAL record");
1545
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001546 SmallVector<unsigned, 4> INSERTVALIdx;
1547 for (unsigned RecSize = Record.size();
1548 OpNum != RecSize; ++OpNum) {
1549 uint64_t Index = Record[OpNum];
1550 if ((unsigned)Index != Index)
1551 return Error("Invalid INSERTVAL index");
1552 INSERTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00001553 }
1554
1555 I = InsertValueInst::Create(Agg, Val,
1556 INSERTVALIdx.begin(), INSERTVALIdx.end());
1557 break;
1558 }
1559
Chris Lattnerabfbf852007-05-06 00:21:25 +00001560 case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001561 // obsolete form of select
1562 // handles select i1 ... in old bitcode
Chris Lattnerabfbf852007-05-06 00:21:25 +00001563 unsigned OpNum = 0;
1564 Value *TrueVal, *FalseVal, *Cond;
1565 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1566 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
Dan Gohmanbe919402008-09-09 02:08:49 +00001567 getValue(Record, OpNum, Type::Int1Ty, Cond))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001568 return Error("Invalid SELECT record");
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001569
1570 I = SelectInst::Create(Cond, TrueVal, FalseVal);
1571 break;
1572 }
1573
1574 case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
1575 // new form of select
1576 // handles select i1 or select [N x i1]
1577 unsigned OpNum = 0;
1578 Value *TrueVal, *FalseVal, *Cond;
1579 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
1580 getValue(Record, OpNum, TrueVal->getType(), FalseVal) ||
1581 getValueTypePair(Record, OpNum, NextValueNo, Cond))
1582 return Error("Invalid SELECT record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001583
1584 // select condition can be either i1 or [N x i1]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001585 if (const VectorType* vector_type =
1586 dyn_cast<const VectorType>(Cond->getType())) {
Dan Gohmanf72fb672008-09-09 01:02:47 +00001587 // expect <n x i1>
1588 if (vector_type->getElementType() != Type::Int1Ty)
1589 return Error("Invalid SELECT condition type");
1590 } else {
1591 // expect i1
1592 if (Cond->getType() != Type::Int1Ty)
1593 return Error("Invalid SELECT condition type");
1594 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001595
Gabor Greif051a9502008-04-06 20:25:17 +00001596 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001597 break;
1598 }
1599
1600 case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001601 unsigned OpNum = 0;
1602 Value *Vec, *Idx;
1603 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1604 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001605 return Error("Invalid EXTRACTELT record");
1606 I = new ExtractElementInst(Vec, Idx);
1607 break;
1608 }
1609
1610 case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00001611 unsigned OpNum = 0;
1612 Value *Vec, *Elt, *Idx;
1613 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
1614 getValue(Record, OpNum,
1615 cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
1616 getValue(Record, OpNum, Type::Int32Ty, Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001617 return Error("Invalid INSERTELT record");
Gabor Greif051a9502008-04-06 20:25:17 +00001618 I = InsertElementInst::Create(Vec, Elt, Idx);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001619 break;
1620 }
1621
Chris Lattnerabfbf852007-05-06 00:21:25 +00001622 case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
1623 unsigned OpNum = 0;
1624 Value *Vec1, *Vec2, *Mask;
1625 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
1626 getValue(Record, OpNum, Vec1->getType(), Vec2))
1627 return Error("Invalid SHUFFLEVEC record");
1628
Mon P Wangaeb06d22008-11-10 04:46:22 +00001629 if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
Chris Lattner01ff65f2007-05-02 05:16:49 +00001630 return Error("Invalid SHUFFLEVEC record");
1631 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
1632 break;
1633 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00001634
Chris Lattner01ff65f2007-05-02 05:16:49 +00001635 case bitc::FUNC_CODE_INST_CMP: { // CMP: [opty, opval, opval, pred]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001636 // VFCmp/VICmp
1637 // or old form of ICmp/FCmp returning bool
Chris Lattner7337ab92007-05-06 00:00:00 +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())
Chris Lattner01ff65f2007-05-02 05:16:49 +00001643 return Error("Invalid CMP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001644
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001645 if (LHS->getType()->isFloatingPoint())
Nate Begemanac80ade2008-05-12 19:01:56 +00001646 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanbaa64eb2008-05-12 20:33:52 +00001647 else if (!isa<VectorType>(LHS->getType()))
1648 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Nate Begemanac80ade2008-05-12 19:01:56 +00001649 else if (LHS->getType()->isFPOrFPVector())
1650 I = new VFCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1651 else
1652 I = new VICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Chris Lattner01ff65f2007-05-02 05:16:49 +00001653 break;
1654 }
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001655 case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
1656 // Fcmp/ICmp returning bool or vector of bool
Dan Gohmanf72fb672008-09-09 01:02:47 +00001657 unsigned OpNum = 0;
1658 Value *LHS, *RHS;
1659 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
1660 getValue(Record, OpNum, LHS->getType(), RHS) ||
1661 OpNum+1 != Record.size())
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00001662 return Error("Invalid CMP2 record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00001663
Dan Gohmanf72fb672008-09-09 01:02:47 +00001664 if (LHS->getType()->isFPOrFPVector())
1665 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
1666 else
1667 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
1668 break;
1669 }
Devang Patel197be3d2008-02-22 02:49:49 +00001670 case bitc::FUNC_CODE_INST_GETRESULT: { // GETRESULT: [ty, val, n]
1671 if (Record.size() != 2)
1672 return Error("Invalid GETRESULT record");
1673 unsigned OpNum = 0;
1674 Value *Op;
1675 getValueTypePair(Record, OpNum, NextValueNo, Op);
1676 unsigned Index = Record[1];
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001677 I = ExtractValueInst::Create(Op, Index);
Devang Patel197be3d2008-02-22 02:49:49 +00001678 break;
1679 }
Chris Lattner01ff65f2007-05-02 05:16:49 +00001680
Chris Lattner231cbcb2007-05-02 04:27:25 +00001681 case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
Devang Pateld9d99ff2008-02-26 01:29:32 +00001682 {
1683 unsigned Size = Record.size();
1684 if (Size == 0) {
Gabor Greif051a9502008-04-06 20:25:17 +00001685 I = ReturnInst::Create();
Devang Pateld9d99ff2008-02-26 01:29:32 +00001686 break;
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001687 }
Devang Pateld9d99ff2008-02-26 01:29:32 +00001688
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001689 unsigned OpNum = 0;
1690 SmallVector<Value *,4> Vs;
1691 do {
1692 Value *Op = NULL;
1693 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1694 return Error("Invalid RET record");
1695 Vs.push_back(Op);
1696 } while(OpNum != Record.size());
1697
1698 const Type *ReturnType = F->getReturnType();
1699 if (Vs.size() > 1 ||
1700 (isa<StructType>(ReturnType) &&
1701 (Vs.empty() || Vs[0]->getType() != ReturnType))) {
Owen Anderson74a77812009-07-07 20:18:58 +00001702 Value *RV = Context.getUndef(ReturnType);
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001703 for (unsigned i = 0, e = Vs.size(); i != e; ++i) {
1704 I = InsertValueInst::Create(RV, Vs[i], i, "mrv");
1705 CurBB->getInstList().push_back(I);
1706 ValueList.AssignValue(I, NextValueNo++);
1707 RV = I;
1708 }
1709 I = ReturnInst::Create(RV);
Devang Pateld9d99ff2008-02-26 01:29:32 +00001710 break;
1711 }
Dan Gohmanfc74abf2008-07-23 00:34:11 +00001712
1713 I = ReturnInst::Create(Vs[0]);
1714 break;
Chris Lattner231cbcb2007-05-02 04:27:25 +00001715 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001716 case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
Chris Lattnerf61e6452007-05-03 22:09:51 +00001717 if (Record.size() != 1 && Record.size() != 3)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001718 return Error("Invalid BR record");
1719 BasicBlock *TrueDest = getBasicBlock(Record[0]);
1720 if (TrueDest == 0)
1721 return Error("Invalid BR record");
1722
1723 if (Record.size() == 1)
Gabor Greif051a9502008-04-06 20:25:17 +00001724 I = BranchInst::Create(TrueDest);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001725 else {
1726 BasicBlock *FalseDest = getBasicBlock(Record[1]);
1727 Value *Cond = getFnValueByID(Record[2], Type::Int1Ty);
1728 if (FalseDest == 0 || Cond == 0)
1729 return Error("Invalid BR record");
Gabor Greif051a9502008-04-06 20:25:17 +00001730 I = BranchInst::Create(TrueDest, FalseDest, Cond);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001731 }
1732 break;
1733 }
1734 case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, opval, n, n x ops]
1735 if (Record.size() < 3 || (Record.size() & 1) == 0)
1736 return Error("Invalid SWITCH record");
1737 const Type *OpTy = getTypeByID(Record[0]);
1738 Value *Cond = getFnValueByID(Record[1], OpTy);
1739 BasicBlock *Default = getBasicBlock(Record[2]);
1740 if (OpTy == 0 || Cond == 0 || Default == 0)
1741 return Error("Invalid SWITCH record");
1742 unsigned NumCases = (Record.size()-3)/2;
Gabor Greif051a9502008-04-06 20:25:17 +00001743 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001744 for (unsigned i = 0, e = NumCases; i != e; ++i) {
1745 ConstantInt *CaseVal =
1746 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
1747 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
1748 if (CaseVal == 0 || DestBB == 0) {
1749 delete SI;
1750 return Error("Invalid SWITCH record!");
1751 }
1752 SI->addCase(CaseVal, DestBB);
1753 }
1754 I = SI;
1755 break;
1756 }
1757
Duncan Sandsdc024672007-11-27 13:23:08 +00001758 case bitc::FUNC_CODE_INST_INVOKE: {
1759 // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
Chris Lattnera9bb7132007-05-08 05:38:01 +00001760 if (Record.size() < 4) return Error("Invalid INVOKE record");
Devang Patel05988662008-09-25 21:00:45 +00001761 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001762 unsigned CCInfo = Record[1];
1763 BasicBlock *NormalBB = getBasicBlock(Record[2]);
1764 BasicBlock *UnwindBB = getBasicBlock(Record[3]);
Chris Lattner7337ab92007-05-06 00:00:00 +00001765
Chris Lattnera9bb7132007-05-08 05:38:01 +00001766 unsigned OpNum = 4;
Chris Lattner7337ab92007-05-06 00:00:00 +00001767 Value *Callee;
1768 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001769 return Error("Invalid INVOKE record");
1770
Chris Lattner7337ab92007-05-06 00:00:00 +00001771 const PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
1772 const FunctionType *FTy = !CalleeTy ? 0 :
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001773 dyn_cast<FunctionType>(CalleeTy->getElementType());
1774
1775 // Check that the right number of fixed parameters are here.
Chris Lattner7337ab92007-05-06 00:00:00 +00001776 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
1777 Record.size() < OpNum+FTy->getNumParams())
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001778 return Error("Invalid INVOKE record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001779
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001780 SmallVector<Value*, 16> Ops;
Chris Lattner7337ab92007-05-06 00:00:00 +00001781 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
1782 Ops.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
1783 if (Ops.back() == 0) return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001784 }
1785
Chris Lattner7337ab92007-05-06 00:00:00 +00001786 if (!FTy->isVarArg()) {
1787 if (Record.size() != OpNum)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001788 return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001789 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001790 // Read type/value pairs for varargs params.
1791 while (OpNum != Record.size()) {
1792 Value *Op;
1793 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1794 return Error("Invalid INVOKE record");
1795 Ops.push_back(Op);
1796 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001797 }
1798
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001799 I = InvokeInst::Create(Callee, NormalBB, UnwindBB,
1800 Ops.begin(), Ops.end());
Chris Lattner76520192007-05-03 22:34:03 +00001801 cast<InvokeInst>(I)->setCallingConv(CCInfo);
Devang Patel05988662008-09-25 21:00:45 +00001802 cast<InvokeInst>(I)->setAttributes(PAL);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00001803 break;
1804 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00001805 case bitc::FUNC_CODE_INST_UNWIND: // UNWIND
1806 I = new UnwindInst();
1807 break;
1808 case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
1809 I = new UnreachableInst();
1810 break;
Chris Lattnerabfbf852007-05-06 00:21:25 +00001811 case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
Chris Lattner15e6d172007-05-04 19:11:41 +00001812 if (Record.size() < 1 || ((Record.size()-1)&1))
Chris Lattner2a98cca2007-05-03 18:58:09 +00001813 return Error("Invalid PHI record");
1814 const Type *Ty = getTypeByID(Record[0]);
1815 if (!Ty) return Error("Invalid PHI record");
1816
Gabor Greif051a9502008-04-06 20:25:17 +00001817 PHINode *PN = PHINode::Create(Ty);
Chris Lattner86941612008-04-13 00:14:42 +00001818 PN->reserveOperandSpace((Record.size()-1)/2);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001819
Chris Lattner15e6d172007-05-04 19:11:41 +00001820 for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
1821 Value *V = getFnValueByID(Record[1+i], Ty);
1822 BasicBlock *BB = getBasicBlock(Record[2+i]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00001823 if (!V || !BB) return Error("Invalid PHI record");
1824 PN->addIncoming(V, BB);
1825 }
1826 I = PN;
1827 break;
1828 }
1829
1830 case bitc::FUNC_CODE_INST_MALLOC: { // MALLOC: [instty, op, align]
1831 if (Record.size() < 3)
1832 return Error("Invalid MALLOC record");
1833 const PointerType *Ty =
1834 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1835 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1836 unsigned Align = Record[2];
1837 if (!Ty || !Size) return Error("Invalid MALLOC record");
1838 I = new MallocInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1839 break;
1840 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001841 case bitc::FUNC_CODE_INST_FREE: { // FREE: [op, opty]
1842 unsigned OpNum = 0;
1843 Value *Op;
1844 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1845 OpNum != Record.size())
Chris Lattner2a98cca2007-05-03 18:58:09 +00001846 return Error("Invalid FREE record");
1847 I = new FreeInst(Op);
1848 break;
1849 }
1850 case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, op, align]
1851 if (Record.size() < 3)
1852 return Error("Invalid ALLOCA record");
1853 const PointerType *Ty =
1854 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
1855 Value *Size = getFnValueByID(Record[1], Type::Int32Ty);
1856 unsigned Align = Record[2];
1857 if (!Ty || !Size) return Error("Invalid ALLOCA record");
1858 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
1859 break;
1860 }
Chris Lattner0579f7f2007-05-03 22:04:19 +00001861 case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
Chris Lattner7337ab92007-05-06 00:00:00 +00001862 unsigned OpNum = 0;
1863 Value *Op;
1864 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
1865 OpNum+2 != Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00001866 return Error("Invalid LOAD record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001867
1868 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001869 break;
Chris Lattner0579f7f2007-05-03 22:04:19 +00001870 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001871 case bitc::FUNC_CODE_INST_STORE2: { // STORE2:[ptrty, ptr, val, align, vol]
1872 unsigned OpNum = 0;
1873 Value *Val, *Ptr;
1874 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
1875 getValue(Record, OpNum,
1876 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
1877 OpNum+2 != Record.size())
1878 return Error("Invalid STORE record");
1879
1880 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
1881 break;
1882 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00001883 case bitc::FUNC_CODE_INST_STORE: { // STORE:[val, valty, ptr, align, vol]
Christopher Lambfe63fb92007-12-11 08:59:05 +00001884 // FIXME: Legacy form of store instruction. Should be removed in LLVM 3.0.
Chris Lattnerabfbf852007-05-06 00:21:25 +00001885 unsigned OpNum = 0;
1886 Value *Val, *Ptr;
1887 if (getValueTypePair(Record, OpNum, NextValueNo, Val) ||
Owen Anderson74a77812009-07-07 20:18:58 +00001888 getValue(Record, OpNum,
1889 Context.getPointerTypeUnqual(Val->getType()), Ptr)||
Chris Lattnerabfbf852007-05-06 00:21:25 +00001890 OpNum+2 != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001891 return Error("Invalid STORE record");
Chris Lattnerabfbf852007-05-06 00:21:25 +00001892
1893 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001894 break;
1895 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001896 case bitc::FUNC_CODE_INST_CALL: {
1897 // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
1898 if (Record.size() < 3)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001899 return Error("Invalid CALL record");
Chris Lattner7337ab92007-05-06 00:00:00 +00001900
Devang Patel05988662008-09-25 21:00:45 +00001901 AttrListPtr PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00001902 unsigned CCInfo = Record[1];
1903
1904 unsigned OpNum = 2;
Chris Lattner7337ab92007-05-06 00:00:00 +00001905 Value *Callee;
1906 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
1907 return Error("Invalid CALL record");
1908
1909 const PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
Chris Lattner0579f7f2007-05-03 22:04:19 +00001910 const FunctionType *FTy = 0;
1911 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
Chris Lattner7337ab92007-05-06 00:00:00 +00001912 if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
Chris Lattner0579f7f2007-05-03 22:04:19 +00001913 return Error("Invalid CALL record");
1914
1915 SmallVector<Value*, 16> Args;
1916 // Read the fixed params.
Chris Lattner7337ab92007-05-06 00:00:00 +00001917 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001918 if (FTy->getParamType(i)->getTypeID()==Type::LabelTyID)
1919 Args.push_back(getBasicBlock(Record[OpNum]));
1920 else
1921 Args.push_back(getFnValueByID(Record[OpNum], FTy->getParamType(i)));
Chris Lattner0579f7f2007-05-03 22:04:19 +00001922 if (Args.back() == 0) return Error("Invalid CALL record");
1923 }
1924
Chris Lattner0579f7f2007-05-03 22:04:19 +00001925 // Read type/value pairs for varargs params.
Chris Lattner0579f7f2007-05-03 22:04:19 +00001926 if (!FTy->isVarArg()) {
Chris Lattner7337ab92007-05-06 00:00:00 +00001927 if (OpNum != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00001928 return Error("Invalid CALL record");
1929 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00001930 while (OpNum != Record.size()) {
1931 Value *Op;
1932 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
1933 return Error("Invalid CALL record");
1934 Args.push_back(Op);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001935 }
1936 }
1937
Gabor Greif051a9502008-04-06 20:25:17 +00001938 I = CallInst::Create(Callee, Args.begin(), Args.end());
Chris Lattner76520192007-05-03 22:34:03 +00001939 cast<CallInst>(I)->setCallingConv(CCInfo>>1);
1940 cast<CallInst>(I)->setTailCall(CCInfo & 1);
Devang Patel05988662008-09-25 21:00:45 +00001941 cast<CallInst>(I)->setAttributes(PAL);
Chris Lattner0579f7f2007-05-03 22:04:19 +00001942 break;
1943 }
1944 case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
1945 if (Record.size() < 3)
1946 return Error("Invalid VAARG record");
1947 const Type *OpTy = getTypeByID(Record[0]);
1948 Value *Op = getFnValueByID(Record[1], OpTy);
1949 const Type *ResTy = getTypeByID(Record[2]);
1950 if (!OpTy || !Op || !ResTy)
1951 return Error("Invalid VAARG record");
1952 I = new VAArgInst(Op, ResTy);
1953 break;
1954 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001955 }
1956
1957 // Add instruction to end of current BB. If there is no current BB, reject
1958 // this file.
1959 if (CurBB == 0) {
1960 delete I;
1961 return Error("Invalid instruction with no BB");
1962 }
1963 CurBB->getInstList().push_back(I);
1964
1965 // If this was a terminator instruction, move to the next block.
1966 if (isa<TerminatorInst>(I)) {
1967 ++CurBBNo;
1968 CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : 0;
1969 }
1970
1971 // Non-void values get registered in the value table for future use.
1972 if (I && I->getType() != Type::VoidTy)
1973 ValueList.AssignValue(I, NextValueNo++);
Chris Lattner980e5aa2007-05-01 05:52:21 +00001974 }
1975
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001976 // Check the function list for unresolved values.
1977 if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
1978 if (A->getParent() == 0) {
1979 // We found at least one unresolved value. Nuke them all to avoid leaks.
1980 for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
1981 if ((A = dyn_cast<Argument>(ValueList.back())) && A->getParent() == 0) {
Owen Anderson74a77812009-07-07 20:18:58 +00001982 A->replaceAllUsesWith(Context.getUndef(A->getType()));
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001983 delete A;
1984 }
1985 }
Chris Lattner35a04702007-05-04 03:50:29 +00001986 return Error("Never resolved value found in function!");
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001987 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001988 }
Chris Lattner980e5aa2007-05-01 05:52:21 +00001989
1990 // Trim the value list down to the size it was before we parsed this function.
1991 ValueList.shrinkTo(ModuleValueListSize);
1992 std::vector<BasicBlock*>().swap(FunctionBBs);
1993
Chris Lattner48f84872007-05-01 04:59:48 +00001994 return false;
1995}
1996
Chris Lattnerb348bb82007-05-18 04:02:46 +00001997//===----------------------------------------------------------------------===//
1998// ModuleProvider implementation
1999//===----------------------------------------------------------------------===//
2000
2001
2002bool BitcodeReader::materializeFunction(Function *F, std::string *ErrInfo) {
2003 // If it already is material, ignore the request.
Gabor Greifa99be512007-07-05 17:07:56 +00002004 if (!F->hasNotBeenReadFromBitcode()) return false;
Chris Lattnerb348bb82007-05-18 04:02:46 +00002005
2006 DenseMap<Function*, std::pair<uint64_t, unsigned> >::iterator DFII =
2007 DeferredFunctionInfo.find(F);
2008 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
2009
2010 // Move the bit stream to the saved position of the deferred function body and
2011 // restore the real linkage type for the function.
2012 Stream.JumpToBit(DFII->second.first);
2013 F->setLinkage((GlobalValue::LinkageTypes)DFII->second.second);
2014
2015 if (ParseFunctionBody(F)) {
2016 if (ErrInfo) *ErrInfo = ErrorString;
2017 return true;
2018 }
Chandler Carruth69940402007-08-04 01:51:18 +00002019
2020 // Upgrade any old intrinsic calls in the function.
2021 for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
2022 E = UpgradedIntrinsics.end(); I != E; ++I) {
2023 if (I->first != I->second) {
2024 for (Value::use_iterator UI = I->first->use_begin(),
2025 UE = I->first->use_end(); UI != UE; ) {
2026 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2027 UpgradeIntrinsicCall(CI, I->second);
2028 }
2029 }
2030 }
Chris Lattnerb348bb82007-05-18 04:02:46 +00002031
2032 return false;
2033}
2034
2035void BitcodeReader::dematerializeFunction(Function *F) {
2036 // If this function isn't materialized, or if it is a proto, this is a noop.
Gabor Greifa99be512007-07-05 17:07:56 +00002037 if (F->hasNotBeenReadFromBitcode() || F->isDeclaration())
Chris Lattnerb348bb82007-05-18 04:02:46 +00002038 return;
2039
2040 assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
2041
2042 // Just forget the function body, we can remat it later.
2043 F->deleteBody();
2044 F->setLinkage(GlobalValue::GhostLinkage);
2045}
2046
2047
2048Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
Chris Lattner714fa952009-06-16 05:15:21 +00002049 // Iterate over the module, deserializing any functions that are still on
2050 // disk.
2051 for (Module::iterator F = TheModule->begin(), E = TheModule->end();
2052 F != E; ++F)
Gabor Greifa99be512007-07-05 17:07:56 +00002053 if (F->hasNotBeenReadFromBitcode() &&
Chris Lattnerb348bb82007-05-18 04:02:46 +00002054 materializeFunction(F, ErrInfo))
2055 return 0;
Chandler Carruth69940402007-08-04 01:51:18 +00002056
2057 // Upgrade any intrinsic calls that slipped through (should not happen!) and
2058 // delete the old functions to clean up. We can't do this unless the entire
2059 // module is materialized because there could always be another function body
2060 // with calls to the old function.
2061 for (std::vector<std::pair<Function*, Function*> >::iterator I =
2062 UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
2063 if (I->first != I->second) {
2064 for (Value::use_iterator UI = I->first->use_begin(),
2065 UE = I->first->use_end(); UI != UE; ) {
2066 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
2067 UpgradeIntrinsicCall(CI, I->second);
2068 }
Chris Lattner7d9eb582009-04-01 01:43:03 +00002069 if (!I->first->use_empty())
2070 I->first->replaceAllUsesWith(I->second);
Chandler Carruth69940402007-08-04 01:51:18 +00002071 I->first->eraseFromParent();
2072 }
2073 }
2074 std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
2075
Chris Lattnerb348bb82007-05-18 04:02:46 +00002076 return TheModule;
2077}
2078
2079
2080/// This method is provided by the parent ModuleProvde class and overriden
2081/// here. It simply releases the module from its provided and frees up our
2082/// state.
2083/// @brief Release our hold on the generated module
2084Module *BitcodeReader::releaseModule(std::string *ErrInfo) {
2085 // Since we're losing control of this Module, we must hand it back complete
2086 Module *M = ModuleProvider::releaseModule(ErrInfo);
2087 FreeState();
2088 return M;
2089}
2090
Chris Lattner48f84872007-05-01 04:59:48 +00002091
Chris Lattnerc453f762007-04-29 07:54:31 +00002092//===----------------------------------------------------------------------===//
2093// External interface
2094//===----------------------------------------------------------------------===//
2095
2096/// getBitcodeModuleProvider - lazy function-at-a-time loading from a file.
2097///
2098ModuleProvider *llvm::getBitcodeModuleProvider(MemoryBuffer *Buffer,
Owen Anderson4434ed42009-07-01 23:13:44 +00002099 LLVMContext& Context,
Chris Lattnerc453f762007-04-29 07:54:31 +00002100 std::string *ErrMsg) {
Owen Anderson8b477ed2009-07-01 16:58:40 +00002101 BitcodeReader *R = new BitcodeReader(Buffer, Context);
Chris Lattnerc453f762007-04-29 07:54:31 +00002102 if (R->ParseBitcode()) {
2103 if (ErrMsg)
2104 *ErrMsg = R->getErrorString();
2105
2106 // Don't let the BitcodeReader dtor delete 'Buffer'.
2107 R->releaseMemoryBuffer();
2108 delete R;
2109 return 0;
2110 }
2111 return R;
2112}
2113
2114/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
2115/// If an error occurs, return null and fill in *ErrMsg if non-null.
Owen Anderson4434ed42009-07-01 23:13:44 +00002116Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, LLVMContext& Context,
Owen Anderson8b477ed2009-07-01 16:58:40 +00002117 std::string *ErrMsg){
Chris Lattnerc453f762007-04-29 07:54:31 +00002118 BitcodeReader *R;
Owen Anderson8b477ed2009-07-01 16:58:40 +00002119 R = static_cast<BitcodeReader*>(getBitcodeModuleProvider(Buffer, Context,
2120 ErrMsg));
Chris Lattnerc453f762007-04-29 07:54:31 +00002121 if (!R) return 0;
2122
Chris Lattnerb348bb82007-05-18 04:02:46 +00002123 // Read in the entire module.
2124 Module *M = R->materializeModule(ErrMsg);
2125
2126 // Don't let the BitcodeReader dtor delete 'Buffer', regardless of whether
2127 // there was an error.
Chris Lattnerc453f762007-04-29 07:54:31 +00002128 R->releaseMemoryBuffer();
Chris Lattnerb348bb82007-05-18 04:02:46 +00002129
2130 // If there was no error, tell ModuleProvider not to delete it when its dtor
2131 // is run.
2132 if (M)
2133 M = R->releaseModule(ErrMsg);
Chris Lattner714fa952009-06-16 05:15:21 +00002134
Chris Lattnerc453f762007-04-29 07:54:31 +00002135 delete R;
2136 return M;
2137}