blob: 2a2f96cd1d3fd6201fc98c21ac0445f83fe424a6 [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//===----------------------------------------------------------------------===//
Chris Lattnercaee0dc2007-04-22 06:23:29 +00009
Chris Lattnerc453f762007-04-29 07:54:31 +000010#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000011#include "BitcodeReader.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000012#include "llvm/ADT/SmallString.h"
13#include "llvm/ADT/SmallVector.h"
14#include "llvm/AutoUpgrade.h"
Tobias Grossere7bc5bb2013-07-26 04:16:55 +000015#include "llvm/Bitcode/LLVMBitCodes.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000016#include "llvm/IR/Constants.h"
17#include "llvm/IR/DerivedTypes.h"
18#include "llvm/IR/InlineAsm.h"
19#include "llvm/IR/IntrinsicInst.h"
Manman Ren804f0342013-09-28 00:22:27 +000020#include "llvm/IR/LLVMContext.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000021#include "llvm/IR/Module.h"
22#include "llvm/IR/OperandTraits.h"
23#include "llvm/IR/Operator.h"
Derek Schuff2ea93872012-02-06 22:30:29 +000024#include "llvm/Support/DataStream.h"
Chris Lattner0eef0802007-04-24 04:04:35 +000025#include "llvm/Support/MathExtras.h"
Chris Lattnerc453f762007-04-29 07:54:31 +000026#include "llvm/Support/MemoryBuffer.h"
Tobias Grossere7bc5bb2013-07-26 04:16:55 +000027#include "llvm/Support/raw_ostream.h"
Chris Lattnercaee0dc2007-04-22 06:23:29 +000028using namespace llvm;
29
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +000030enum {
31 SWITCH_INST_MAGIC = 0x4B5 // May 2012 => 1205 => Hex
32};
33
Rafael Espindola47f79bb2012-01-02 07:49:53 +000034void BitcodeReader::materializeForwardReferencedFunctions() {
35 while (!BlockAddrFwdRefs.empty()) {
36 Function *F = BlockAddrFwdRefs.begin()->first;
37 F->Materialize();
38 }
39}
40
Chris Lattnerb348bb82007-05-18 04:02:46 +000041void BitcodeReader::FreeState() {
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +000042 if (BufferOwned)
43 delete Buffer;
Chris Lattnerb348bb82007-05-18 04:02:46 +000044 Buffer = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +000045 std::vector<Type*>().swap(TypeList);
Chris Lattnerb348bb82007-05-18 04:02:46 +000046 ValueList.clear();
Devang Pateld5ac4042009-08-04 06:00:18 +000047 MDValueList.clear();
Daniel Dunbara279bc32009-09-20 02:20:51 +000048
Bill Wendling99faa3b2012-12-07 23:16:57 +000049 std::vector<AttributeSet>().swap(MAttributes);
Chris Lattnerb348bb82007-05-18 04:02:46 +000050 std::vector<BasicBlock*>().swap(FunctionBBs);
51 std::vector<Function*>().swap(FunctionsWithBodies);
52 DeferredFunctionInfo.clear();
Dan Gohman19538d12010-07-20 21:42:28 +000053 MDKindMap.clear();
Benjamin Kramer122f5e52012-09-21 14:34:31 +000054
55 assert(BlockAddrFwdRefs.empty() && "Unresolved blockaddress fwd references");
Chris Lattnerc453f762007-04-29 07:54:31 +000056}
57
Chris Lattner48c85b82007-05-04 03:30:17 +000058//===----------------------------------------------------------------------===//
59// Helper functions to implement forward reference resolution, etc.
60//===----------------------------------------------------------------------===//
Chris Lattnerc453f762007-04-29 07:54:31 +000061
Chris Lattnercaee0dc2007-04-22 06:23:29 +000062/// ConvertToString - Convert a string from a record into an std::string, return
63/// true on failure.
Chris Lattner0b2482a2007-04-23 21:26:05 +000064template<typename StrTy>
Benjamin Kramerf52aea82012-05-28 14:10:31 +000065static bool ConvertToString(ArrayRef<uint64_t> Record, unsigned Idx,
Chris Lattner0b2482a2007-04-23 21:26:05 +000066 StrTy &Result) {
Chris Lattner15e6d172007-05-04 19:11:41 +000067 if (Idx > Record.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +000068 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +000069
Chris Lattner15e6d172007-05-04 19:11:41 +000070 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
71 Result += (char)Record[i];
Chris Lattnercaee0dc2007-04-22 06:23:29 +000072 return false;
73}
74
75static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
76 switch (Val) {
77 default: // Map unknown/new linkages to external
Bill Wendling3d10a5a2009-07-20 01:03:30 +000078 case 0: return GlobalValue::ExternalLinkage;
79 case 1: return GlobalValue::WeakAnyLinkage;
80 case 2: return GlobalValue::AppendingLinkage;
81 case 3: return GlobalValue::InternalLinkage;
82 case 4: return GlobalValue::LinkOnceAnyLinkage;
83 case 5: return GlobalValue::DLLImportLinkage;
84 case 6: return GlobalValue::DLLExportLinkage;
85 case 7: return GlobalValue::ExternalWeakLinkage;
86 case 8: return GlobalValue::CommonLinkage;
87 case 9: return GlobalValue::PrivateLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +000088 case 10: return GlobalValue::WeakODRLinkage;
89 case 11: return GlobalValue::LinkOnceODRLinkage;
Chris Lattner266c7bb2009-04-13 05:44:34 +000090 case 12: return GlobalValue::AvailableExternallyLinkage;
Bill Wendling3d10a5a2009-07-20 01:03:30 +000091 case 13: return GlobalValue::LinkerPrivateLinkage;
Bill Wendling5e721d72010-07-01 21:55:59 +000092 case 14: return GlobalValue::LinkerPrivateWeakLinkage;
Chris Lattnercaee0dc2007-04-22 06:23:29 +000093 }
94}
95
96static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
97 switch (Val) {
98 default: // Map unknown visibilities to default.
99 case 0: return GlobalValue::DefaultVisibility;
100 case 1: return GlobalValue::HiddenVisibility;
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000101 case 2: return GlobalValue::ProtectedVisibility;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000102 }
103}
104
Hans Wennborgce718ff2012-06-23 11:37:03 +0000105static GlobalVariable::ThreadLocalMode GetDecodedThreadLocalMode(unsigned Val) {
106 switch (Val) {
107 case 0: return GlobalVariable::NotThreadLocal;
108 default: // Map unknown non-zero value to general dynamic.
109 case 1: return GlobalVariable::GeneralDynamicTLSModel;
110 case 2: return GlobalVariable::LocalDynamicTLSModel;
111 case 3: return GlobalVariable::InitialExecTLSModel;
112 case 4: return GlobalVariable::LocalExecTLSModel;
113 }
114}
115
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000116static int GetDecodedCastOpcode(unsigned Val) {
117 switch (Val) {
118 default: return -1;
119 case bitc::CAST_TRUNC : return Instruction::Trunc;
120 case bitc::CAST_ZEXT : return Instruction::ZExt;
121 case bitc::CAST_SEXT : return Instruction::SExt;
122 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
123 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
124 case bitc::CAST_UITOFP : return Instruction::UIToFP;
125 case bitc::CAST_SITOFP : return Instruction::SIToFP;
126 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
127 case bitc::CAST_FPEXT : return Instruction::FPExt;
128 case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
129 case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
130 case bitc::CAST_BITCAST : return Instruction::BitCast;
131 }
132}
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000133static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) {
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000134 switch (Val) {
135 default: return -1;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000136 case bitc::BINOP_ADD:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000137 return Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000138 case bitc::BINOP_SUB:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000139 return Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000140 case bitc::BINOP_MUL:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000141 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000142 case bitc::BINOP_UDIV: return Instruction::UDiv;
143 case bitc::BINOP_SDIV:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000144 return Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000145 case bitc::BINOP_UREM: return Instruction::URem;
146 case bitc::BINOP_SREM:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000147 return Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000148 case bitc::BINOP_SHL: return Instruction::Shl;
149 case bitc::BINOP_LSHR: return Instruction::LShr;
150 case bitc::BINOP_ASHR: return Instruction::AShr;
151 case bitc::BINOP_AND: return Instruction::And;
152 case bitc::BINOP_OR: return Instruction::Or;
153 case bitc::BINOP_XOR: return Instruction::Xor;
154 }
155}
156
Eli Friedmanff030482011-07-28 21:48:00 +0000157static AtomicRMWInst::BinOp GetDecodedRMWOperation(unsigned Val) {
158 switch (Val) {
159 default: return AtomicRMWInst::BAD_BINOP;
160 case bitc::RMW_XCHG: return AtomicRMWInst::Xchg;
161 case bitc::RMW_ADD: return AtomicRMWInst::Add;
162 case bitc::RMW_SUB: return AtomicRMWInst::Sub;
163 case bitc::RMW_AND: return AtomicRMWInst::And;
164 case bitc::RMW_NAND: return AtomicRMWInst::Nand;
165 case bitc::RMW_OR: return AtomicRMWInst::Or;
166 case bitc::RMW_XOR: return AtomicRMWInst::Xor;
167 case bitc::RMW_MAX: return AtomicRMWInst::Max;
168 case bitc::RMW_MIN: return AtomicRMWInst::Min;
169 case bitc::RMW_UMAX: return AtomicRMWInst::UMax;
170 case bitc::RMW_UMIN: return AtomicRMWInst::UMin;
171 }
172}
173
Eli Friedman47f35132011-07-25 23:16:38 +0000174static AtomicOrdering GetDecodedOrdering(unsigned Val) {
175 switch (Val) {
176 case bitc::ORDERING_NOTATOMIC: return NotAtomic;
177 case bitc::ORDERING_UNORDERED: return Unordered;
178 case bitc::ORDERING_MONOTONIC: return Monotonic;
179 case bitc::ORDERING_ACQUIRE: return Acquire;
180 case bitc::ORDERING_RELEASE: return Release;
181 case bitc::ORDERING_ACQREL: return AcquireRelease;
182 default: // Map unknown orderings to sequentially-consistent.
183 case bitc::ORDERING_SEQCST: return SequentiallyConsistent;
184 }
185}
186
187static SynchronizationScope GetDecodedSynchScope(unsigned Val) {
188 switch (Val) {
189 case bitc::SYNCHSCOPE_SINGLETHREAD: return SingleThread;
190 default: // Map unknown scopes to cross-thread.
191 case bitc::SYNCHSCOPE_CROSSTHREAD: return CrossThread;
192 }
193}
194
Gabor Greifefe65362008-05-10 08:32:32 +0000195namespace llvm {
Chris Lattner522b7b12007-04-24 05:48:56 +0000196namespace {
197 /// @brief A class for maintaining the slot number definition
198 /// as a placeholder for the actual definition for forward constants defs.
199 class ConstantPlaceHolder : public ConstantExpr {
Craig Topper86a1c322012-09-15 17:09:36 +0000200 void operator=(const ConstantPlaceHolder &) LLVM_DELETED_FUNCTION;
Gabor Greif051a9502008-04-06 20:25:17 +0000201 public:
202 // allocate space for exactly one operand
203 void *operator new(size_t s) {
204 return User::operator new(s, 1);
205 }
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000206 explicit ConstantPlaceHolder(Type *Ty, LLVMContext& Context)
Gabor Greifefe65362008-05-10 08:32:32 +0000207 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000208 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
Chris Lattner522b7b12007-04-24 05:48:56 +0000209 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000210
Chris Lattnerea693df2008-08-21 02:34:16 +0000211 /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
Chris Lattnerea693df2008-08-21 02:34:16 +0000212 static bool classof(const Value *V) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000213 return isa<ConstantExpr>(V) &&
Chris Lattnerea693df2008-08-21 02:34:16 +0000214 cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
215 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000216
217
Gabor Greifefe65362008-05-10 08:32:32 +0000218 /// Provide fast operand accessors
Chris Lattner46e77402009-03-31 22:55:09 +0000219 //DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Chris Lattner522b7b12007-04-24 05:48:56 +0000220 };
221}
222
Chris Lattner46e77402009-03-31 22:55:09 +0000223// FIXME: can we inherit this from ConstantExpr?
Gabor Greifefe65362008-05-10 08:32:32 +0000224template <>
Jay Foad67c619b2011-01-11 15:07:38 +0000225struct OperandTraits<ConstantPlaceHolder> :
226 public FixedNumOperandTraits<ConstantPlaceHolder, 1> {
Gabor Greifefe65362008-05-10 08:32:32 +0000227};
Gabor Greifefe65362008-05-10 08:32:32 +0000228}
229
Chris Lattner46e77402009-03-31 22:55:09 +0000230
231void BitcodeReaderValueList::AssignValue(Value *V, unsigned Idx) {
232 if (Idx == size()) {
233 push_back(V);
234 return;
235 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000236
Chris Lattner46e77402009-03-31 22:55:09 +0000237 if (Idx >= size())
238 resize(Idx+1);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000239
Chris Lattner46e77402009-03-31 22:55:09 +0000240 WeakVH &OldV = ValuePtrs[Idx];
241 if (OldV == 0) {
242 OldV = V;
243 return;
244 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000245
Chris Lattner46e77402009-03-31 22:55:09 +0000246 // Handle constants and non-constants (e.g. instrs) differently for
247 // efficiency.
248 if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
249 ResolveConstants.push_back(std::make_pair(PHC, Idx));
250 OldV = V;
251 } else {
252 // If there was a forward reference to this value, replace it.
253 Value *PrevVal = OldV;
254 OldV->replaceAllUsesWith(V);
255 delete PrevVal;
Gabor Greifefe65362008-05-10 08:32:32 +0000256 }
257}
Daniel Dunbara279bc32009-09-20 02:20:51 +0000258
Gabor Greifefe65362008-05-10 08:32:32 +0000259
Chris Lattner522b7b12007-04-24 05:48:56 +0000260Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000261 Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000262 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000263 resize(Idx + 1);
Chris Lattner522b7b12007-04-24 05:48:56 +0000264
Chris Lattner46e77402009-03-31 22:55:09 +0000265 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000266 assert(Ty == V->getType() && "Type mismatch in constant table!");
267 return cast<Constant>(V);
Chris Lattnerf581c3b2007-04-24 07:07:11 +0000268 }
Chris Lattner522b7b12007-04-24 05:48:56 +0000269
270 // Create and return a placeholder, which will later be RAUW'd.
Owen Anderson74a77812009-07-07 20:18:58 +0000271 Constant *C = new ConstantPlaceHolder(Ty, Context);
Chris Lattner46e77402009-03-31 22:55:09 +0000272 ValuePtrs[Idx] = C;
Chris Lattner522b7b12007-04-24 05:48:56 +0000273 return C;
274}
275
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000276Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, Type *Ty) {
Chris Lattner46e77402009-03-31 22:55:09 +0000277 if (Idx >= size())
Gabor Greifefe65362008-05-10 08:32:32 +0000278 resize(Idx + 1);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000279
Chris Lattner46e77402009-03-31 22:55:09 +0000280 if (Value *V = ValuePtrs[Idx]) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000281 assert((Ty == 0 || Ty == V->getType()) && "Type mismatch in value table!");
282 return V;
283 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000284
Chris Lattner01ff65f2007-05-02 05:16:49 +0000285 // No type specified, must be invalid reference.
286 if (Ty == 0) return 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000287
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000288 // Create and return a placeholder, which will later be RAUW'd.
289 Value *V = new Argument(Ty);
Chris Lattner46e77402009-03-31 22:55:09 +0000290 ValuePtrs[Idx] = V;
Chris Lattnera7c49aa2007-05-01 07:01:57 +0000291 return V;
292}
293
Chris Lattnerea693df2008-08-21 02:34:16 +0000294/// ResolveConstantForwardRefs - Once all constants are read, this method bulk
295/// resolves any forward references. The idea behind this is that we sometimes
296/// get constants (such as large arrays) which reference *many* forward ref
297/// constants. Replacing each of these causes a lot of thrashing when
298/// building/reuniquing the constant. Instead of doing this, we look at all the
299/// uses and rewrite all the place holders at once for any constant that uses
300/// a placeholder.
301void BitcodeReaderValueList::ResolveConstantForwardRefs() {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000302 // Sort the values by-pointer so that they are efficient to look up with a
Chris Lattnerea693df2008-08-21 02:34:16 +0000303 // binary search.
304 std::sort(ResolveConstants.begin(), ResolveConstants.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000305
Chris Lattnerea693df2008-08-21 02:34:16 +0000306 SmallVector<Constant*, 64> NewOps;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000307
Chris Lattnerea693df2008-08-21 02:34:16 +0000308 while (!ResolveConstants.empty()) {
Chris Lattner46e77402009-03-31 22:55:09 +0000309 Value *RealVal = operator[](ResolveConstants.back().second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000310 Constant *Placeholder = ResolveConstants.back().first;
311 ResolveConstants.pop_back();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000312
Chris Lattnerea693df2008-08-21 02:34:16 +0000313 // Loop over all users of the placeholder, updating them to reference the
314 // new value. If they reference more than one placeholder, update them all
315 // at once.
316 while (!Placeholder->use_empty()) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000317 Value::use_iterator UI = Placeholder->use_begin();
Gabor Greifc654d1b2010-07-09 16:01:21 +0000318 User *U = *UI;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000319
Chris Lattnerea693df2008-08-21 02:34:16 +0000320 // If the using object isn't uniqued, just update the operands. This
321 // handles instructions and initializers for global variables.
Gabor Greifc654d1b2010-07-09 16:01:21 +0000322 if (!isa<Constant>(U) || isa<GlobalValue>(U)) {
Chris Lattnerb6135a02008-08-21 17:31:45 +0000323 UI.getUse().set(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000324 continue;
325 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000326
Chris Lattnerea693df2008-08-21 02:34:16 +0000327 // Otherwise, we have a constant that uses the placeholder. Replace that
328 // constant with a new constant that has *all* placeholder uses updated.
Gabor Greifc654d1b2010-07-09 16:01:21 +0000329 Constant *UserC = cast<Constant>(U);
Chris Lattnerea693df2008-08-21 02:34:16 +0000330 for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
331 I != E; ++I) {
332 Value *NewOp;
333 if (!isa<ConstantPlaceHolder>(*I)) {
334 // Not a placeholder reference.
335 NewOp = *I;
336 } else if (*I == Placeholder) {
337 // Common case is that it just references this one placeholder.
338 NewOp = RealVal;
339 } else {
340 // Otherwise, look up the placeholder in ResolveConstants.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000341 ResolveConstantsTy::iterator It =
342 std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
Chris Lattnerea693df2008-08-21 02:34:16 +0000343 std::pair<Constant*, unsigned>(cast<Constant>(*I),
344 0));
345 assert(It != ResolveConstants.end() && It->first == *I);
Chris Lattner46e77402009-03-31 22:55:09 +0000346 NewOp = operator[](It->second);
Chris Lattnerea693df2008-08-21 02:34:16 +0000347 }
348
349 NewOps.push_back(cast<Constant>(NewOp));
350 }
351
352 // Make the new constant.
353 Constant *NewC;
354 if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
Jay Foad26701082011-06-22 09:24:39 +0000355 NewC = ConstantArray::get(UserCA->getType(), NewOps);
Chris Lattnerea693df2008-08-21 02:34:16 +0000356 } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
Chris Lattnerb065b062011-06-20 04:01:31 +0000357 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
Chris Lattnerea693df2008-08-21 02:34:16 +0000358 } else if (isa<ConstantVector>(UserC)) {
Chris Lattner2ca5c862011-02-15 00:14:00 +0000359 NewC = ConstantVector::get(NewOps);
Nick Lewyckycb337992009-05-10 20:57:05 +0000360 } else {
361 assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
Jay Foadb81e4572011-04-13 13:46:01 +0000362 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
Chris Lattnerea693df2008-08-21 02:34:16 +0000363 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000364
Chris Lattnerea693df2008-08-21 02:34:16 +0000365 UserC->replaceAllUsesWith(NewC);
366 UserC->destroyConstant();
367 NewOps.clear();
368 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000369
Nick Lewyckycb337992009-05-10 20:57:05 +0000370 // Update all ValueHandles, they should be the only users at this point.
371 Placeholder->replaceAllUsesWith(RealVal);
Chris Lattnerea693df2008-08-21 02:34:16 +0000372 delete Placeholder;
373 }
374}
375
Devang Pateld5ac4042009-08-04 06:00:18 +0000376void BitcodeReaderMDValueList::AssignValue(Value *V, unsigned Idx) {
377 if (Idx == size()) {
378 push_back(V);
379 return;
380 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000381
Devang Pateld5ac4042009-08-04 06:00:18 +0000382 if (Idx >= size())
383 resize(Idx+1);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000384
Devang Pateld5ac4042009-08-04 06:00:18 +0000385 WeakVH &OldV = MDValuePtrs[Idx];
386 if (OldV == 0) {
387 OldV = V;
388 return;
389 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000390
Devang Pateld5ac4042009-08-04 06:00:18 +0000391 // If there was a forward reference to this value, replace it.
Dan Gohman489b29b2010-08-20 22:02:26 +0000392 MDNode *PrevVal = cast<MDNode>(OldV);
Devang Pateld5ac4042009-08-04 06:00:18 +0000393 OldV->replaceAllUsesWith(V);
Dan Gohman489b29b2010-08-20 22:02:26 +0000394 MDNode::deleteTemporary(PrevVal);
Devang Patelc0ff8c82009-09-03 01:38:02 +0000395 // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
396 // value for Idx.
397 MDValuePtrs[Idx] = V;
Devang Pateld5ac4042009-08-04 06:00:18 +0000398}
399
400Value *BitcodeReaderMDValueList::getValueFwdRef(unsigned Idx) {
401 if (Idx >= size())
402 resize(Idx + 1);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000403
Devang Pateld5ac4042009-08-04 06:00:18 +0000404 if (Value *V = MDValuePtrs[Idx]) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000405 assert(V->getType()->isMetadataTy() && "Type mismatch in value table!");
Devang Pateld5ac4042009-08-04 06:00:18 +0000406 return V;
407 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000408
Devang Pateld5ac4042009-08-04 06:00:18 +0000409 // Create and return a placeholder, which will later be RAUW'd.
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000410 Value *V = MDNode::getTemporary(Context, None);
Devang Pateld5ac4042009-08-04 06:00:18 +0000411 MDValuePtrs[Idx] = V;
412 return V;
413}
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000414
Chris Lattner1afcace2011-07-09 17:41:24 +0000415Type *BitcodeReader::getTypeByID(unsigned ID) {
416 // The type table size is always specified correctly.
417 if (ID >= TypeList.size())
418 return 0;
Derek Schufffccf0622012-02-06 19:03:04 +0000419
Chris Lattner1afcace2011-07-09 17:41:24 +0000420 if (Type *Ty = TypeList[ID])
421 return Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000422
Chris Lattner1afcace2011-07-09 17:41:24 +0000423 // If we have a forward reference, the only possible case is when it is to a
424 // named struct. Just create a placeholder for now.
Chris Lattner3ebb6492011-08-12 18:06:37 +0000425 return TypeList[ID] = StructType::create(Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000426}
427
Chris Lattner1afcace2011-07-09 17:41:24 +0000428
Chris Lattner48c85b82007-05-04 03:30:17 +0000429//===----------------------------------------------------------------------===//
430// Functions for parsing blocks from the bitcode file
431//===----------------------------------------------------------------------===//
432
Bill Wendlingf9271ea2013-02-04 23:32:23 +0000433
434/// \brief This fills an AttrBuilder object with the LLVM attributes that have
435/// been decoded from the given integer. This function must stay in sync with
436/// 'encodeLLVMAttributesForBitcode'.
437static void decodeLLVMAttributesForBitcode(AttrBuilder &B,
438 uint64_t EncodedAttrs) {
439 // FIXME: Remove in 4.0.
440
441 // The alignment is stored as a 16-bit raw value from bits 31--16. We shift
442 // the bits above 31 down by 11 bits.
443 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
444 assert((!Alignment || isPowerOf2_32(Alignment)) &&
445 "Alignment must be a power of two.");
446
447 if (Alignment)
448 B.addAlignmentAttr(Alignment);
Kostya Serebryanyab39afa2013-02-11 08:13:54 +0000449 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
Bill Wendlingf9271ea2013-02-04 23:32:23 +0000450 (EncodedAttrs & 0xffff));
451}
452
Devang Patel05988662008-09-25 21:00:45 +0000453bool BitcodeReader::ParseAttributeBlock() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000454 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
Chris Lattner48c85b82007-05-04 03:30:17 +0000455 return Error("Malformed block record");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000456
Devang Patel19c87462008-09-26 22:53:05 +0000457 if (!MAttributes.empty())
Chris Lattner48c85b82007-05-04 03:30:17 +0000458 return Error("Multiple PARAMATTR blocks found!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000459
Chris Lattner48c85b82007-05-04 03:30:17 +0000460 SmallVector<uint64_t, 64> Record;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000461
Bill Wendling0c2f0ff2013-01-27 00:36:48 +0000462 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000463
Chris Lattner48c85b82007-05-04 03:30:17 +0000464 // Read all the records.
465 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +0000466 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +0000467
Chris Lattner5a4251c2013-01-20 02:13:19 +0000468 switch (Entry.Kind) {
469 case BitstreamEntry::SubBlock: // Handled for us already.
470 case BitstreamEntry::Error:
471 return Error("Error at end of PARAMATTR block");
472 case BitstreamEntry::EndBlock:
Chris Lattner48c85b82007-05-04 03:30:17 +0000473 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +0000474 case BitstreamEntry::Record:
475 // The interesting case.
476 break;
Chris Lattner48c85b82007-05-04 03:30:17 +0000477 }
Joe Abbeyacb61942013-02-06 22:14:06 +0000478
Chris Lattner48c85b82007-05-04 03:30:17 +0000479 // Read a record.
480 Record.clear();
Chris Lattner5a4251c2013-01-20 02:13:19 +0000481 switch (Stream.readRecord(Entry.ID, Record)) {
Chris Lattner48c85b82007-05-04 03:30:17 +0000482 default: // Default behavior: ignore.
483 break;
Bill Wendlingf9271ea2013-02-04 23:32:23 +0000484 case bitc::PARAMATTR_CODE_ENTRY_OLD: { // ENTRY: [paramidx0, attr0, ...]
485 // FIXME: Remove in 4.0.
Chris Lattner48c85b82007-05-04 03:30:17 +0000486 if (Record.size() & 1)
487 return Error("Invalid ENTRY record");
488
Chris Lattner48c85b82007-05-04 03:30:17 +0000489 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Bill Wendling8232ece2013-01-29 01:43:29 +0000490 AttrBuilder B;
Bill Wendlingf9271ea2013-02-04 23:32:23 +0000491 decodeLLVMAttributesForBitcode(B, Record[i+1]);
Bill Wendling8232ece2013-01-29 01:43:29 +0000492 Attrs.push_back(AttributeSet::get(Context, Record[i], B));
Devang Patel19c87462008-09-26 22:53:05 +0000493 }
Devang Patel19c87462008-09-26 22:53:05 +0000494
Bill Wendling99faa3b2012-12-07 23:16:57 +0000495 MAttributes.push_back(AttributeSet::get(Context, Attrs));
Chris Lattner48c85b82007-05-04 03:30:17 +0000496 Attrs.clear();
497 break;
498 }
Bill Wendling48fbcfe2013-02-12 08:13:50 +0000499 case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [attrgrp0, attrgrp1, ...]
500 for (unsigned i = 0, e = Record.size(); i != e; ++i)
501 Attrs.push_back(MAttributeGroups[Record[i]]);
502
503 MAttributes.push_back(AttributeSet::get(Context, Attrs));
504 Attrs.clear();
505 break;
506 }
Duncan Sands5e41f652007-11-20 14:09:29 +0000507 }
Chris Lattner48c85b82007-05-04 03:30:17 +0000508 }
509}
510
Tobias Grossere7bc5bb2013-07-26 04:16:55 +0000511bool BitcodeReader::ParseAttrKind(uint64_t Code, Attribute::AttrKind *Kind) {
512 switch (Code) {
513 case bitc::ATTR_KIND_ALIGNMENT:
514 *Kind = Attribute::Alignment;
515 return false;
516 case bitc::ATTR_KIND_ALWAYS_INLINE:
517 *Kind = Attribute::AlwaysInline;
518 return false;
519 case bitc::ATTR_KIND_BUILTIN:
520 *Kind = Attribute::Builtin;
521 return false;
522 case bitc::ATTR_KIND_BY_VAL:
523 *Kind = Attribute::ByVal;
524 return false;
525 case bitc::ATTR_KIND_COLD:
526 *Kind = Attribute::Cold;
527 return false;
528 case bitc::ATTR_KIND_INLINE_HINT:
529 *Kind = Attribute::InlineHint;
530 return false;
531 case bitc::ATTR_KIND_IN_REG:
532 *Kind = Attribute::InReg;
533 return false;
534 case bitc::ATTR_KIND_MIN_SIZE:
535 *Kind = Attribute::MinSize;
536 return false;
537 case bitc::ATTR_KIND_NAKED:
538 *Kind = Attribute::Naked;
539 return false;
540 case bitc::ATTR_KIND_NEST:
541 *Kind = Attribute::Nest;
542 return false;
543 case bitc::ATTR_KIND_NO_ALIAS:
544 *Kind = Attribute::NoAlias;
545 return false;
546 case bitc::ATTR_KIND_NO_BUILTIN:
547 *Kind = Attribute::NoBuiltin;
548 return false;
549 case bitc::ATTR_KIND_NO_CAPTURE:
550 *Kind = Attribute::NoCapture;
551 return false;
552 case bitc::ATTR_KIND_NO_DUPLICATE:
553 *Kind = Attribute::NoDuplicate;
554 return false;
555 case bitc::ATTR_KIND_NO_IMPLICIT_FLOAT:
556 *Kind = Attribute::NoImplicitFloat;
557 return false;
558 case bitc::ATTR_KIND_NO_INLINE:
559 *Kind = Attribute::NoInline;
560 return false;
561 case bitc::ATTR_KIND_NON_LAZY_BIND:
562 *Kind = Attribute::NonLazyBind;
563 return false;
564 case bitc::ATTR_KIND_NO_RED_ZONE:
565 *Kind = Attribute::NoRedZone;
566 return false;
567 case bitc::ATTR_KIND_NO_RETURN:
568 *Kind = Attribute::NoReturn;
569 return false;
570 case bitc::ATTR_KIND_NO_UNWIND:
571 *Kind = Attribute::NoUnwind;
572 return false;
573 case bitc::ATTR_KIND_OPTIMIZE_FOR_SIZE:
574 *Kind = Attribute::OptimizeForSize;
575 return false;
Andrea Di Biagio5768bb82013-08-23 11:53:55 +0000576 case bitc::ATTR_KIND_OPTIMIZE_NONE:
577 *Kind = Attribute::OptimizeNone;
578 return false;
Tobias Grossere7bc5bb2013-07-26 04:16:55 +0000579 case bitc::ATTR_KIND_READ_NONE:
580 *Kind = Attribute::ReadNone;
581 return false;
582 case bitc::ATTR_KIND_READ_ONLY:
583 *Kind = Attribute::ReadOnly;
584 return false;
585 case bitc::ATTR_KIND_RETURNED:
586 *Kind = Attribute::Returned;
587 return false;
588 case bitc::ATTR_KIND_RETURNS_TWICE:
589 *Kind = Attribute::ReturnsTwice;
590 return false;
591 case bitc::ATTR_KIND_S_EXT:
592 *Kind = Attribute::SExt;
593 return false;
594 case bitc::ATTR_KIND_STACK_ALIGNMENT:
595 *Kind = Attribute::StackAlignment;
596 return false;
597 case bitc::ATTR_KIND_STACK_PROTECT:
598 *Kind = Attribute::StackProtect;
599 return false;
600 case bitc::ATTR_KIND_STACK_PROTECT_REQ:
601 *Kind = Attribute::StackProtectReq;
602 return false;
603 case bitc::ATTR_KIND_STACK_PROTECT_STRONG:
604 *Kind = Attribute::StackProtectStrong;
605 return false;
606 case bitc::ATTR_KIND_STRUCT_RET:
607 *Kind = Attribute::StructRet;
608 return false;
609 case bitc::ATTR_KIND_SANITIZE_ADDRESS:
610 *Kind = Attribute::SanitizeAddress;
611 return false;
612 case bitc::ATTR_KIND_SANITIZE_THREAD:
613 *Kind = Attribute::SanitizeThread;
614 return false;
615 case bitc::ATTR_KIND_SANITIZE_MEMORY:
616 *Kind = Attribute::SanitizeMemory;
617 return false;
618 case bitc::ATTR_KIND_UW_TABLE:
619 *Kind = Attribute::UWTable;
620 return false;
621 case bitc::ATTR_KIND_Z_EXT:
622 *Kind = Attribute::ZExt;
623 return false;
624 default:
Rafael Espindolacc8c6732013-10-31 04:20:23 +0000625 return Error("Unknown attribute kind");
Tobias Grossere7bc5bb2013-07-26 04:16:55 +0000626 }
627}
628
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000629bool BitcodeReader::ParseAttributeGroupBlock() {
630 if (Stream.EnterSubBlock(bitc::PARAMATTR_GROUP_BLOCK_ID))
631 return Error("Malformed block record");
632
633 if (!MAttributeGroups.empty())
634 return Error("Multiple PARAMATTR_GROUP blocks found!");
635
636 SmallVector<uint64_t, 64> Record;
637
638 // Read all the records.
639 while (1) {
640 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
641
642 switch (Entry.Kind) {
643 case BitstreamEntry::SubBlock: // Handled for us already.
644 case BitstreamEntry::Error:
645 return Error("Error at end of PARAMATTR_GROUP block");
646 case BitstreamEntry::EndBlock:
647 return false;
648 case BitstreamEntry::Record:
649 // The interesting case.
650 break;
651 }
652
653 // Read a record.
654 Record.clear();
655 switch (Stream.readRecord(Entry.ID, Record)) {
656 default: // Default behavior: ignore.
657 break;
658 case bitc::PARAMATTR_GRP_CODE_ENTRY: { // ENTRY: [grpid, idx, a0, a1, ...]
659 if (Record.size() < 3)
660 return Error("Invalid ENTRY record");
661
Bill Wendling04ef4be2013-02-11 22:32:29 +0000662 uint64_t GrpID = Record[0];
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000663 uint64_t Idx = Record[1]; // Index of the object this attribute refers to.
664
665 AttrBuilder B;
666 for (unsigned i = 2, e = Record.size(); i != e; ++i) {
667 if (Record[i] == 0) { // Enum attribute
Tobias Grossere7bc5bb2013-07-26 04:16:55 +0000668 Attribute::AttrKind Kind;
669 if (ParseAttrKind(Record[++i], &Kind))
670 return true;
671
672 B.addAttribute(Kind);
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000673 } else if (Record[i] == 1) { // Align attribute
Tobias Grossere7bc5bb2013-07-26 04:16:55 +0000674 Attribute::AttrKind Kind;
675 if (ParseAttrKind(Record[++i], &Kind))
676 return true;
677 if (Kind == Attribute::Alignment)
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000678 B.addAlignmentAttr(Record[++i]);
679 else
680 B.addStackAlignmentAttr(Record[++i]);
681 } else { // String attribute
Bill Wendling04ef4be2013-02-11 22:32:29 +0000682 assert((Record[i] == 3 || Record[i] == 4) &&
683 "Invalid attribute group entry");
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000684 bool HasValue = (Record[i++] == 4);
685 SmallString<64> KindStr;
686 SmallString<64> ValStr;
687
688 while (Record[i] != 0 && i != e)
689 KindStr += Record[i++];
Bill Wendling04ef4be2013-02-11 22:32:29 +0000690 assert(Record[i] == 0 && "Kind string not null terminated");
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000691
692 if (HasValue) {
693 // Has a value associated with it.
Bill Wendling04ef4be2013-02-11 22:32:29 +0000694 ++i; // Skip the '0' that terminates the "kind" string.
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000695 while (Record[i] != 0 && i != e)
696 ValStr += Record[i++];
Bill Wendling04ef4be2013-02-11 22:32:29 +0000697 assert(Record[i] == 0 && "Value string not null terminated");
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000698 }
699
700 B.addAttribute(KindStr.str(), ValStr.str());
701 }
702 }
703
Bill Wendling04ef4be2013-02-11 22:32:29 +0000704 MAttributeGroups[GrpID] = AttributeSet::get(Context, Idx, B);
Bill Wendlingc3ba0a82013-02-10 23:24:25 +0000705 break;
706 }
707 }
708 }
709}
710
Chris Lattner86697142007-05-01 05:01:34 +0000711bool BitcodeReader::ParseTypeTable() {
Chris Lattner1afcace2011-07-09 17:41:24 +0000712 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000713 return Error("Malformed block record");
Derek Schufffccf0622012-02-06 19:03:04 +0000714
Chris Lattner1afcace2011-07-09 17:41:24 +0000715 return ParseTypeTableBody();
716}
Daniel Dunbara279bc32009-09-20 02:20:51 +0000717
Chris Lattner1afcace2011-07-09 17:41:24 +0000718bool BitcodeReader::ParseTypeTableBody() {
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000719 if (!TypeList.empty())
720 return Error("Multiple TYPE_BLOCKs found!");
721
722 SmallVector<uint64_t, 64> Record;
723 unsigned NumRecords = 0;
724
Chris Lattner1afcace2011-07-09 17:41:24 +0000725 SmallString<64> TypeName;
Derek Schufffccf0622012-02-06 19:03:04 +0000726
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000727 // Read all the records for this type table.
728 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +0000729 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +0000730
Chris Lattner5a4251c2013-01-20 02:13:19 +0000731 switch (Entry.Kind) {
732 case BitstreamEntry::SubBlock: // Handled for us already.
733 case BitstreamEntry::Error:
734 Error("Error in the type table block");
735 return true;
736 case BitstreamEntry::EndBlock:
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000737 if (NumRecords != TypeList.size())
738 return Error("Invalid type forward reference in TYPE_BLOCK");
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000739 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +0000740 case BitstreamEntry::Record:
741 // The interesting case.
742 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000743 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000744
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000745 // Read a record.
746 Record.clear();
Chris Lattner1afcace2011-07-09 17:41:24 +0000747 Type *ResultTy = 0;
Chris Lattner5a4251c2013-01-20 02:13:19 +0000748 switch (Stream.readRecord(Entry.ID, Record)) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000749 default: return Error("unknown type in type table");
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000750 case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
751 // TYPE_CODE_NUMENTRY contains a count of the number of types in the
752 // type list. This allows us to reserve space.
753 if (Record.size() < 1)
754 return Error("Invalid TYPE_CODE_NUMENTRY record");
Chris Lattner1afcace2011-07-09 17:41:24 +0000755 TypeList.resize(Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000756 continue;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000757 case bitc::TYPE_CODE_VOID: // VOID
Owen Anderson1d0be152009-08-13 21:58:54 +0000758 ResultTy = Type::getVoidTy(Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000759 break;
Dan Gohmance163392011-12-17 00:04:22 +0000760 case bitc::TYPE_CODE_HALF: // HALF
761 ResultTy = Type::getHalfTy(Context);
762 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000763 case bitc::TYPE_CODE_FLOAT: // FLOAT
Owen Anderson1d0be152009-08-13 21:58:54 +0000764 ResultTy = Type::getFloatTy(Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000765 break;
766 case bitc::TYPE_CODE_DOUBLE: // DOUBLE
Owen Anderson1d0be152009-08-13 21:58:54 +0000767 ResultTy = Type::getDoubleTy(Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000768 break;
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000769 case bitc::TYPE_CODE_X86_FP80: // X86_FP80
Owen Anderson1d0be152009-08-13 21:58:54 +0000770 ResultTy = Type::getX86_FP80Ty(Context);
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000771 break;
772 case bitc::TYPE_CODE_FP128: // FP128
Owen Anderson1d0be152009-08-13 21:58:54 +0000773 ResultTy = Type::getFP128Ty(Context);
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000774 break;
775 case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
Owen Anderson1d0be152009-08-13 21:58:54 +0000776 ResultTy = Type::getPPC_FP128Ty(Context);
Dale Johannesen320fc8a2007-08-03 01:03:46 +0000777 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000778 case bitc::TYPE_CODE_LABEL: // LABEL
Owen Anderson1d0be152009-08-13 21:58:54 +0000779 ResultTy = Type::getLabelTy(Context);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000780 break;
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000781 case bitc::TYPE_CODE_METADATA: // METADATA
Owen Anderson1d0be152009-08-13 21:58:54 +0000782 ResultTy = Type::getMetadataTy(Context);
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000783 break;
Dale Johannesenbb811a22010-09-10 20:55:01 +0000784 case bitc::TYPE_CODE_X86_MMX: // X86_MMX
785 ResultTy = Type::getX86_MMXTy(Context);
786 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000787 case bitc::TYPE_CODE_INTEGER: // INTEGER: [width]
788 if (Record.size() < 1)
789 return Error("Invalid Integer type record");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000790
Owen Anderson1d0be152009-08-13 21:58:54 +0000791 ResultTy = IntegerType::get(Context, Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000792 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000793 case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
Christopher Lambfe63fb92007-12-11 08:59:05 +0000794 // [pointee type, address space]
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000795 if (Record.size() < 1)
796 return Error("Invalid POINTER type record");
Christopher Lambfe63fb92007-12-11 08:59:05 +0000797 unsigned AddressSpace = 0;
798 if (Record.size() == 2)
799 AddressSpace = Record[1];
Chris Lattner1afcace2011-07-09 17:41:24 +0000800 ResultTy = getTypeByID(Record[0]);
801 if (ResultTy == 0) return Error("invalid element type in pointer type");
802 ResultTy = PointerType::get(ResultTy, AddressSpace);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000803 break;
Christopher Lambfe63fb92007-12-11 08:59:05 +0000804 }
Nuno Lopesee8100d2012-05-23 15:19:39 +0000805 case bitc::TYPE_CODE_FUNCTION_OLD: {
806 // FIXME: attrid is dead, remove it in LLVM 4.0
807 // FUNCTION: [vararg, attrid, retty, paramty x N]
808 if (Record.size() < 3)
809 return Error("Invalid FUNCTION type record");
810 SmallVector<Type*, 8> ArgTys;
811 for (unsigned i = 3, e = Record.size(); i != e; ++i) {
812 if (Type *T = getTypeByID(Record[i]))
813 ArgTys.push_back(T);
814 else
815 break;
816 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000817
Nuno Lopesee8100d2012-05-23 15:19:39 +0000818 ResultTy = getTypeByID(Record[2]);
819 if (ResultTy == 0 || ArgTys.size() < Record.size()-3)
820 return Error("invalid type in function type");
821
822 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
823 break;
824 }
Chad Rosiercde54642011-11-03 00:14:01 +0000825 case bitc::TYPE_CODE_FUNCTION: {
826 // FUNCTION: [vararg, retty, paramty x N]
827 if (Record.size() < 2)
828 return Error("Invalid FUNCTION type record");
Chris Lattnerd629efa2012-01-27 03:15:49 +0000829 SmallVector<Type*, 8> ArgTys;
Chad Rosiercde54642011-11-03 00:14:01 +0000830 for (unsigned i = 2, e = Record.size(); i != e; ++i) {
831 if (Type *T = getTypeByID(Record[i]))
832 ArgTys.push_back(T);
833 else
834 break;
835 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000836
Chad Rosiercde54642011-11-03 00:14:01 +0000837 ResultTy = getTypeByID(Record[1]);
838 if (ResultTy == 0 || ArgTys.size() < Record.size()-2)
839 return Error("invalid type in function type");
840
841 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
842 break;
843 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000844 case bitc::TYPE_CODE_STRUCT_ANON: { // STRUCT: [ispacked, eltty x N]
Chris Lattner7108dce2007-05-06 08:21:50 +0000845 if (Record.size() < 1)
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000846 return Error("Invalid STRUCT type record");
Chris Lattnerd629efa2012-01-27 03:15:49 +0000847 SmallVector<Type*, 8> EltTys;
Chris Lattner1afcace2011-07-09 17:41:24 +0000848 for (unsigned i = 1, e = Record.size(); i != e; ++i) {
849 if (Type *T = getTypeByID(Record[i]))
850 EltTys.push_back(T);
851 else
852 break;
853 }
854 if (EltTys.size() != Record.size()-1)
855 return Error("invalid type in struct type");
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000856 ResultTy = StructType::get(Context, EltTys, Record[0]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +0000857 break;
858 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000859 case bitc::TYPE_CODE_STRUCT_NAME: // STRUCT_NAME: [strchr x N]
860 if (ConvertToString(Record, 0, TypeName))
861 return Error("Invalid STRUCT_NAME record");
862 continue;
863
864 case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
865 if (Record.size() < 1)
866 return Error("Invalid STRUCT type record");
Michael Ilseman407a6162012-11-15 22:34:00 +0000867
Chris Lattner1afcace2011-07-09 17:41:24 +0000868 if (NumRecords >= TypeList.size())
869 return Error("invalid TYPE table");
Michael Ilseman407a6162012-11-15 22:34:00 +0000870
Chris Lattner1afcace2011-07-09 17:41:24 +0000871 // Check to see if this was forward referenced, if so fill in the temp.
872 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
873 if (Res) {
874 Res->setName(TypeName);
875 TypeList[NumRecords] = 0;
876 } else // Otherwise, create a new struct.
Chris Lattner3ebb6492011-08-12 18:06:37 +0000877 Res = StructType::create(Context, TypeName);
Chris Lattner1afcace2011-07-09 17:41:24 +0000878 TypeName.clear();
Michael Ilseman407a6162012-11-15 22:34:00 +0000879
Chris Lattner1afcace2011-07-09 17:41:24 +0000880 SmallVector<Type*, 8> EltTys;
881 for (unsigned i = 1, e = Record.size(); i != e; ++i) {
882 if (Type *T = getTypeByID(Record[i]))
883 EltTys.push_back(T);
884 else
885 break;
886 }
887 if (EltTys.size() != Record.size()-1)
888 return Error("invalid STRUCT type record");
889 Res->setBody(EltTys, Record[0]);
890 ResultTy = Res;
891 break;
892 }
893 case bitc::TYPE_CODE_OPAQUE: { // OPAQUE: []
894 if (Record.size() != 1)
895 return Error("Invalid OPAQUE type record");
896
897 if (NumRecords >= TypeList.size())
898 return Error("invalid TYPE table");
Michael Ilseman407a6162012-11-15 22:34:00 +0000899
Chris Lattner1afcace2011-07-09 17:41:24 +0000900 // Check to see if this was forward referenced, if so fill in the temp.
901 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
902 if (Res) {
903 Res->setName(TypeName);
904 TypeList[NumRecords] = 0;
905 } else // Otherwise, create a new struct with no body.
Chris Lattner3ebb6492011-08-12 18:06:37 +0000906 Res = StructType::create(Context, TypeName);
Chris Lattner1afcace2011-07-09 17:41:24 +0000907 TypeName.clear();
908 ResultTy = Res;
909 break;
Michael Ilseman407a6162012-11-15 22:34:00 +0000910 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000911 case bitc::TYPE_CODE_ARRAY: // ARRAY: [numelts, eltty]
912 if (Record.size() < 2)
913 return Error("Invalid ARRAY type record");
914 if ((ResultTy = getTypeByID(Record[1])))
915 ResultTy = ArrayType::get(ResultTy, Record[0]);
916 else
917 return Error("Invalid ARRAY type element");
918 break;
919 case bitc::TYPE_CODE_VECTOR: // VECTOR: [numelts, eltty]
920 if (Record.size() < 2)
921 return Error("Invalid VECTOR type record");
922 if ((ResultTy = getTypeByID(Record[1])))
923 ResultTy = VectorType::get(ResultTy, Record[0]);
924 else
925 return Error("Invalid ARRAY type element");
926 break;
927 }
928
929 if (NumRecords >= TypeList.size())
930 return Error("invalid TYPE table");
931 assert(ResultTy && "Didn't read a type?");
932 assert(TypeList[NumRecords] == 0 && "Already read type?");
933 TypeList[NumRecords++] = ResultTy;
934 }
935}
936
Chris Lattner86697142007-05-01 05:01:34 +0000937bool BitcodeReader::ParseValueSymbolTable() {
Chris Lattnere17b6582007-05-05 00:17:00 +0000938 if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
Chris Lattner0b2482a2007-04-23 21:26:05 +0000939 return Error("Malformed block record");
940
941 SmallVector<uint64_t, 64> Record;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000942
Chris Lattner0b2482a2007-04-23 21:26:05 +0000943 // Read all the records for this value table.
944 SmallString<128> ValueName;
945 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +0000946 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +0000947
Chris Lattner5a4251c2013-01-20 02:13:19 +0000948 switch (Entry.Kind) {
949 case BitstreamEntry::SubBlock: // Handled for us already.
950 case BitstreamEntry::Error:
951 return Error("malformed value symbol table block");
952 case BitstreamEntry::EndBlock:
Chris Lattnerf66d20d2007-04-24 18:15:21 +0000953 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +0000954 case BitstreamEntry::Record:
955 // The interesting case.
956 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000957 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000958
Chris Lattner0b2482a2007-04-23 21:26:05 +0000959 // Read a record.
960 Record.clear();
Chris Lattner5a4251c2013-01-20 02:13:19 +0000961 switch (Stream.readRecord(Entry.ID, Record)) {
Chris Lattner0b2482a2007-04-23 21:26:05 +0000962 default: // Default behavior: unknown type.
963 break;
Chris Lattner15e6d172007-05-04 19:11:41 +0000964 case bitc::VST_CODE_ENTRY: { // VST_ENTRY: [valueid, namechar x N]
Chris Lattner0b2482a2007-04-23 21:26:05 +0000965 if (ConvertToString(Record, 1, ValueName))
Nick Lewycky88b72932009-05-31 06:07:28 +0000966 return Error("Invalid VST_ENTRY record");
Chris Lattner0b2482a2007-04-23 21:26:05 +0000967 unsigned ValueID = Record[0];
968 if (ValueID >= ValueList.size())
969 return Error("Invalid Value ID in VST_ENTRY record");
970 Value *V = ValueList[ValueID];
Daniel Dunbara279bc32009-09-20 02:20:51 +0000971
Daniel Dunbar3f53fa92009-07-26 00:34:27 +0000972 V->setName(StringRef(ValueName.data(), ValueName.size()));
Chris Lattner0b2482a2007-04-23 21:26:05 +0000973 ValueName.clear();
974 break;
Reid Spencerc8f8a242007-05-04 01:43:33 +0000975 }
Bill Wendling5d7a5a42011-04-10 23:18:04 +0000976 case bitc::VST_CODE_BBENTRY: {
Chris Lattnere825ed52007-05-03 22:18:21 +0000977 if (ConvertToString(Record, 1, ValueName))
978 return Error("Invalid VST_BBENTRY record");
979 BasicBlock *BB = getBasicBlock(Record[0]);
980 if (BB == 0)
981 return Error("Invalid BB ID in VST_BBENTRY record");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000982
Daniel Dunbar3f53fa92009-07-26 00:34:27 +0000983 BB->setName(StringRef(ValueName.data(), ValueName.size()));
Chris Lattnere825ed52007-05-03 22:18:21 +0000984 ValueName.clear();
985 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +0000986 }
Reid Spencerc8f8a242007-05-04 01:43:33 +0000987 }
Chris Lattner0b2482a2007-04-23 21:26:05 +0000988 }
989}
990
Devang Patele54abc92009-07-22 17:43:22 +0000991bool BitcodeReader::ParseMetadata() {
Devang Patel23598502010-01-11 18:52:33 +0000992 unsigned NextMDValueNo = MDValueList.size();
Devang Patele54abc92009-07-22 17:43:22 +0000993
994 if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
995 return Error("Malformed block record");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000996
Devang Patele54abc92009-07-22 17:43:22 +0000997 SmallVector<uint64_t, 64> Record;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000998
Devang Patele54abc92009-07-22 17:43:22 +0000999 // Read all the records.
1000 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +00001001 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +00001002
Chris Lattner5a4251c2013-01-20 02:13:19 +00001003 switch (Entry.Kind) {
1004 case BitstreamEntry::SubBlock: // Handled for us already.
1005 case BitstreamEntry::Error:
1006 Error("malformed metadata block");
1007 return true;
1008 case BitstreamEntry::EndBlock:
Devang Patele54abc92009-07-22 17:43:22 +00001009 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +00001010 case BitstreamEntry::Record:
1011 // The interesting case.
1012 break;
Devang Patele54abc92009-07-22 17:43:22 +00001013 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001014
Victor Hernandez24e64df2010-01-10 07:14:18 +00001015 bool IsFunctionLocal = false;
Devang Patele54abc92009-07-22 17:43:22 +00001016 // Read a record.
1017 Record.clear();
Chris Lattner5a4251c2013-01-20 02:13:19 +00001018 unsigned Code = Stream.readRecord(Entry.ID, Record);
Dan Gohman9b10dfb2010-09-13 18:00:48 +00001019 switch (Code) {
Devang Patele54abc92009-07-22 17:43:22 +00001020 default: // Default behavior: ignore.
1021 break;
Devang Patelaa993142009-07-29 22:34:41 +00001022 case bitc::METADATA_NAME: {
Chris Lattner1ca114a2013-01-20 02:54:05 +00001023 // Read name of the named metadata.
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001024 SmallString<8> Name(Record.begin(), Record.end());
Devang Patelaa993142009-07-29 22:34:41 +00001025 Record.clear();
1026 Code = Stream.ReadCode();
1027
Chris Lattner9d61dd92011-06-17 17:50:30 +00001028 // METADATA_NAME is always followed by METADATA_NAMED_NODE.
Chris Lattner5a4251c2013-01-20 02:13:19 +00001029 unsigned NextBitCode = Stream.readRecord(Code, Record);
Chris Lattner9d61dd92011-06-17 17:50:30 +00001030 assert(NextBitCode == bitc::METADATA_NAMED_NODE); (void)NextBitCode;
Devang Patelaa993142009-07-29 22:34:41 +00001031
1032 // Read named metadata elements.
1033 unsigned Size = Record.size();
Dan Gohman17aa92c2010-07-21 23:38:33 +00001034 NamedMDNode *NMD = TheModule->getOrInsertNamedMetadata(Name);
Devang Patelaa993142009-07-29 22:34:41 +00001035 for (unsigned i = 0; i != Size; ++i) {
Chris Lattner70644e92010-01-09 02:02:37 +00001036 MDNode *MD = dyn_cast<MDNode>(MDValueList.getValueFwdRef(Record[i]));
1037 if (MD == 0)
1038 return Error("Malformed metadata record");
Dan Gohman17aa92c2010-07-21 23:38:33 +00001039 NMD->addOperand(MD);
Devang Patelaa993142009-07-29 22:34:41 +00001040 }
Devang Patelaa993142009-07-29 22:34:41 +00001041 break;
1042 }
Chris Lattner9d61dd92011-06-17 17:50:30 +00001043 case bitc::METADATA_FN_NODE:
Victor Hernandez24e64df2010-01-10 07:14:18 +00001044 IsFunctionLocal = true;
1045 // fall-through
Chris Lattner9d61dd92011-06-17 17:50:30 +00001046 case bitc::METADATA_NODE: {
Dan Gohmanac809752010-07-13 19:33:27 +00001047 if (Record.size() % 2 == 1)
Chris Lattner9d61dd92011-06-17 17:50:30 +00001048 return Error("Invalid METADATA_NODE record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001049
Devang Patel104cf9e2009-07-23 01:07:34 +00001050 unsigned Size = Record.size();
1051 SmallVector<Value*, 8> Elts;
1052 for (unsigned i = 0; i != Size; i += 2) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001053 Type *Ty = getTypeByID(Record[i]);
Chris Lattner9d61dd92011-06-17 17:50:30 +00001054 if (!Ty) return Error("Invalid METADATA_NODE record");
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001055 if (Ty->isMetadataTy())
Devang Pateld5ac4042009-08-04 06:00:18 +00001056 Elts.push_back(MDValueList.getValueFwdRef(Record[i+1]));
Benjamin Kramerf0127052010-01-05 13:12:22 +00001057 else if (!Ty->isVoidTy())
Devang Patel104cf9e2009-07-23 01:07:34 +00001058 Elts.push_back(ValueList.getValueFwdRef(Record[i+1], Ty));
1059 else
1060 Elts.push_back(NULL);
1061 }
Jay Foadec9186b2011-04-21 19:59:31 +00001062 Value *V = MDNode::getWhenValsUnresolved(Context, Elts, IsFunctionLocal);
Victor Hernandez24e64df2010-01-10 07:14:18 +00001063 IsFunctionLocal = false;
Devang Patel23598502010-01-11 18:52:33 +00001064 MDValueList.AssignValue(V, NextMDValueNo++);
Devang Patel104cf9e2009-07-23 01:07:34 +00001065 break;
1066 }
Devang Patele54abc92009-07-22 17:43:22 +00001067 case bitc::METADATA_STRING: {
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001068 SmallString<8> String(Record.begin(), Record.end());
1069 Value *V = MDString::get(Context, String);
Devang Patel23598502010-01-11 18:52:33 +00001070 MDValueList.AssignValue(V, NextMDValueNo++);
Devang Patele54abc92009-07-22 17:43:22 +00001071 break;
1072 }
Devang Patele8e02132009-09-18 19:26:43 +00001073 case bitc::METADATA_KIND: {
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001074 if (Record.size() < 2)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001075 return Error("Invalid METADATA_KIND record");
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001076
Devang Patela2148402009-09-28 21:14:55 +00001077 unsigned Kind = Record[0];
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001078 SmallString<8> Name(Record.begin()+1, Record.end());
1079
Chris Lattner08113472009-12-29 09:01:33 +00001080 unsigned NewKind = TheModule->getMDKindID(Name.str());
Dan Gohman19538d12010-07-20 21:42:28 +00001081 if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1082 return Error("Conflicting METADATA_KIND records");
Devang Patele8e02132009-09-18 19:26:43 +00001083 break;
1084 }
Devang Patele54abc92009-07-22 17:43:22 +00001085 }
1086 }
1087}
1088
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001089/// decodeSignRotatedValue - Decode a signed value stored with the sign bit in
Chris Lattner0eef0802007-04-24 04:04:35 +00001090/// the LSB for dense VBR encoding.
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001091uint64_t BitcodeReader::decodeSignRotatedValue(uint64_t V) {
Chris Lattner0eef0802007-04-24 04:04:35 +00001092 if ((V & 1) == 0)
1093 return V >> 1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001094 if (V != 1)
Chris Lattner0eef0802007-04-24 04:04:35 +00001095 return -(V >> 1);
1096 // There is no such thing as -0 with integers. "-0" really means MININT.
1097 return 1ULL << 63;
1098}
1099
Chris Lattner07d98b42007-04-26 02:46:40 +00001100/// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
1101/// values and aliases that we can.
1102bool BitcodeReader::ResolveGlobalAndAliasInits() {
1103 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
1104 std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00001105 std::vector<std::pair<Function*, unsigned> > FunctionPrefixWorklist;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001106
Chris Lattner07d98b42007-04-26 02:46:40 +00001107 GlobalInitWorklist.swap(GlobalInits);
1108 AliasInitWorklist.swap(AliasInits);
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00001109 FunctionPrefixWorklist.swap(FunctionPrefixes);
Chris Lattner07d98b42007-04-26 02:46:40 +00001110
1111 while (!GlobalInitWorklist.empty()) {
Chris Lattner198f34a2007-04-26 03:27:58 +00001112 unsigned ValID = GlobalInitWorklist.back().second;
Chris Lattner07d98b42007-04-26 02:46:40 +00001113 if (ValID >= ValueList.size()) {
1114 // Not ready to resolve this yet, it requires something later in the file.
Chris Lattner198f34a2007-04-26 03:27:58 +00001115 GlobalInits.push_back(GlobalInitWorklist.back());
Chris Lattner07d98b42007-04-26 02:46:40 +00001116 } else {
1117 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
1118 GlobalInitWorklist.back().first->setInitializer(C);
1119 else
1120 return Error("Global variable initializer is not a constant!");
1121 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001122 GlobalInitWorklist.pop_back();
Chris Lattner07d98b42007-04-26 02:46:40 +00001123 }
1124
1125 while (!AliasInitWorklist.empty()) {
1126 unsigned ValID = AliasInitWorklist.back().second;
1127 if (ValID >= ValueList.size()) {
1128 AliasInits.push_back(AliasInitWorklist.back());
1129 } else {
1130 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
Anton Korobeynikov7dde0ff2007-04-28 14:57:59 +00001131 AliasInitWorklist.back().first->setAliasee(C);
Chris Lattner07d98b42007-04-26 02:46:40 +00001132 else
1133 return Error("Alias initializer is not a constant!");
1134 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001135 AliasInitWorklist.pop_back();
Chris Lattner07d98b42007-04-26 02:46:40 +00001136 }
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00001137
1138 while (!FunctionPrefixWorklist.empty()) {
1139 unsigned ValID = FunctionPrefixWorklist.back().second;
1140 if (ValID >= ValueList.size()) {
1141 FunctionPrefixes.push_back(FunctionPrefixWorklist.back());
1142 } else {
1143 if (Constant *C = dyn_cast<Constant>(ValueList[ValID]))
1144 FunctionPrefixWorklist.back().first->setPrefixData(C);
1145 else
1146 return Error("Function prefix is not a constant!");
1147 }
1148 FunctionPrefixWorklist.pop_back();
1149 }
1150
Chris Lattner07d98b42007-04-26 02:46:40 +00001151 return false;
1152}
1153
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001154static APInt ReadWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) {
1155 SmallVector<uint64_t, 8> Words(Vals.size());
1156 std::transform(Vals.begin(), Vals.end(), Words.begin(),
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001157 BitcodeReader::decodeSignRotatedValue);
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001158
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00001159 return APInt(TypeBits, Words);
1160}
1161
Chris Lattner86697142007-05-01 05:01:34 +00001162bool BitcodeReader::ParseConstants() {
Chris Lattnere17b6582007-05-05 00:17:00 +00001163 if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
Chris Lattnere16504e2007-04-24 03:30:34 +00001164 return Error("Malformed block record");
1165
1166 SmallVector<uint64_t, 64> Record;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001167
Chris Lattnere16504e2007-04-24 03:30:34 +00001168 // Read all the records for this value table.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001169 Type *CurTy = Type::getInt32Ty(Context);
Chris Lattner522b7b12007-04-24 05:48:56 +00001170 unsigned NextCstNo = ValueList.size();
Chris Lattnere16504e2007-04-24 03:30:34 +00001171 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +00001172 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +00001173
Chris Lattner5a4251c2013-01-20 02:13:19 +00001174 switch (Entry.Kind) {
1175 case BitstreamEntry::SubBlock: // Handled for us already.
1176 case BitstreamEntry::Error:
1177 return Error("malformed block record in AST file");
1178 case BitstreamEntry::EndBlock:
1179 if (NextCstNo != ValueList.size())
1180 return Error("Invalid constant reference!");
Joe Abbeyacb61942013-02-06 22:14:06 +00001181
Chris Lattner5a4251c2013-01-20 02:13:19 +00001182 // Once all the constants have been read, go through and resolve forward
1183 // references.
1184 ValueList.ResolveConstantForwardRefs();
1185 return false;
1186 case BitstreamEntry::Record:
1187 // The interesting case.
Chris Lattnerea693df2008-08-21 02:34:16 +00001188 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001189 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001190
Chris Lattnere16504e2007-04-24 03:30:34 +00001191 // Read a record.
1192 Record.clear();
1193 Value *V = 0;
Chris Lattner5a4251c2013-01-20 02:13:19 +00001194 unsigned BitCode = Stream.readRecord(Entry.ID, Record);
Dan Gohman1224c382009-07-20 21:19:07 +00001195 switch (BitCode) {
Chris Lattnere16504e2007-04-24 03:30:34 +00001196 default: // Default behavior: unknown constant
1197 case bitc::CST_CODE_UNDEF: // UNDEF
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001198 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +00001199 break;
1200 case bitc::CST_CODE_SETTYPE: // SETTYPE: [typeid]
1201 if (Record.empty())
1202 return Error("Malformed CST_SETTYPE record");
1203 if (Record[0] >= TypeList.size())
1204 return Error("Invalid Type ID in CST_SETTYPE record");
1205 CurTy = TypeList[Record[0]];
Chris Lattner0eef0802007-04-24 04:04:35 +00001206 continue; // Skip the ValueList manipulation.
Chris Lattnere16504e2007-04-24 03:30:34 +00001207 case bitc::CST_CODE_NULL: // NULL
Owen Andersona7235ea2009-07-31 20:28:14 +00001208 V = Constant::getNullValue(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +00001209 break;
1210 case bitc::CST_CODE_INTEGER: // INTEGER: [intval]
Duncan Sands1df98592010-02-16 11:11:14 +00001211 if (!CurTy->isIntegerTy() || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +00001212 return Error("Invalid CST_INTEGER record");
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001213 V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]));
Chris Lattner0eef0802007-04-24 04:04:35 +00001214 break;
Chris Lattner15e6d172007-05-04 19:11:41 +00001215 case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
Duncan Sands1df98592010-02-16 11:11:14 +00001216 if (!CurTy->isIntegerTy() || Record.empty())
Chris Lattner0eef0802007-04-24 04:04:35 +00001217 return Error("Invalid WIDE_INTEGER record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001218
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001219 APInt VInt = ReadWideAPInt(Record,
1220 cast<IntegerType>(CurTy)->getBitWidth());
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00001221 V = ConstantInt::get(Context, VInt);
Michael Ilseman407a6162012-11-15 22:34:00 +00001222
Chris Lattner0eef0802007-04-24 04:04:35 +00001223 break;
1224 }
Dale Johannesen3f6eb742007-09-11 18:32:33 +00001225 case bitc::CST_CODE_FLOAT: { // FLOAT: [fpval]
Chris Lattner0eef0802007-04-24 04:04:35 +00001226 if (Record.empty())
1227 return Error("Invalid FLOAT record");
Dan Gohmance163392011-12-17 00:04:22 +00001228 if (CurTy->isHalfTy())
Tim Northover0a29cb02013-01-22 09:46:31 +00001229 V = ConstantFP::get(Context, APFloat(APFloat::IEEEhalf,
1230 APInt(16, (uint16_t)Record[0])));
Dan Gohmance163392011-12-17 00:04:22 +00001231 else if (CurTy->isFloatTy())
Tim Northover0a29cb02013-01-22 09:46:31 +00001232 V = ConstantFP::get(Context, APFloat(APFloat::IEEEsingle,
1233 APInt(32, (uint32_t)Record[0])));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001234 else if (CurTy->isDoubleTy())
Tim Northover0a29cb02013-01-22 09:46:31 +00001235 V = ConstantFP::get(Context, APFloat(APFloat::IEEEdouble,
1236 APInt(64, Record[0])));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001237 else if (CurTy->isX86_FP80Ty()) {
Dale Johannesen1b25cb22009-03-23 21:16:53 +00001238 // Bits are not stored the same way as a normal i80 APInt, compensate.
1239 uint64_t Rearrange[2];
1240 Rearrange[0] = (Record[1] & 0xffffLL) | (Record[0] << 16);
1241 Rearrange[1] = Record[0] >> 48;
Tim Northover0a29cb02013-01-22 09:46:31 +00001242 V = ConstantFP::get(Context, APFloat(APFloat::x87DoubleExtended,
1243 APInt(80, Rearrange)));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001244 } else if (CurTy->isFP128Ty())
Tim Northover0a29cb02013-01-22 09:46:31 +00001245 V = ConstantFP::get(Context, APFloat(APFloat::IEEEquad,
1246 APInt(128, Record)));
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001247 else if (CurTy->isPPC_FP128Ty())
Tim Northover0a29cb02013-01-22 09:46:31 +00001248 V = ConstantFP::get(Context, APFloat(APFloat::PPCDoubleDouble,
1249 APInt(128, Record)));
Chris Lattnere16504e2007-04-24 03:30:34 +00001250 else
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001251 V = UndefValue::get(CurTy);
Chris Lattnere16504e2007-04-24 03:30:34 +00001252 break;
Dale Johannesen3f6eb742007-09-11 18:32:33 +00001253 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001254
Chris Lattner15e6d172007-05-04 19:11:41 +00001255 case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
1256 if (Record.empty())
Chris Lattner522b7b12007-04-24 05:48:56 +00001257 return Error("Invalid CST_AGGREGATE record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001258
Chris Lattner15e6d172007-05-04 19:11:41 +00001259 unsigned Size = Record.size();
Chris Lattnerd629efa2012-01-27 03:15:49 +00001260 SmallVector<Constant*, 16> Elts;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001261
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001262 if (StructType *STy = dyn_cast<StructType>(CurTy)) {
Chris Lattner522b7b12007-04-24 05:48:56 +00001263 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +00001264 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
Chris Lattner522b7b12007-04-24 05:48:56 +00001265 STy->getElementType(i)));
Owen Anderson8fa33382009-07-27 22:29:26 +00001266 V = ConstantStruct::get(STy, Elts);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001267 } else if (ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
1268 Type *EltTy = ATy->getElementType();
Chris Lattner522b7b12007-04-24 05:48:56 +00001269 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +00001270 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Owen Anderson1fd70962009-07-28 18:32:17 +00001271 V = ConstantArray::get(ATy, Elts);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001272 } else if (VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
1273 Type *EltTy = VTy->getElementType();
Chris Lattner522b7b12007-04-24 05:48:56 +00001274 for (unsigned i = 0; i != Size; ++i)
Chris Lattner15e6d172007-05-04 19:11:41 +00001275 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00001276 V = ConstantVector::get(Elts);
Chris Lattner522b7b12007-04-24 05:48:56 +00001277 } else {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001278 V = UndefValue::get(CurTy);
Chris Lattner522b7b12007-04-24 05:48:56 +00001279 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001280 break;
1281 }
Chris Lattner2237f842012-02-05 02:41:35 +00001282 case bitc::CST_CODE_STRING: // STRING: [values]
Chris Lattnercb3d91b2007-05-06 00:53:07 +00001283 case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
1284 if (Record.empty())
Chris Lattner2237f842012-02-05 02:41:35 +00001285 return Error("Invalid CST_STRING record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001286
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001287 SmallString<16> Elts(Record.begin(), Record.end());
Chris Lattner2237f842012-02-05 02:41:35 +00001288 V = ConstantDataArray::getString(Context, Elts,
1289 BitCode == bitc::CST_CODE_CSTRING);
Chris Lattnercb3d91b2007-05-06 00:53:07 +00001290 break;
1291 }
Chris Lattnerd408f062012-01-30 00:51:16 +00001292 case bitc::CST_CODE_DATA: {// DATA: [n x value]
1293 if (Record.empty())
1294 return Error("Invalid CST_DATA record");
Michael Ilseman407a6162012-11-15 22:34:00 +00001295
Chris Lattnerd408f062012-01-30 00:51:16 +00001296 Type *EltTy = cast<SequentialType>(CurTy)->getElementType();
1297 unsigned Size = Record.size();
Michael Ilseman407a6162012-11-15 22:34:00 +00001298
Chris Lattnerd408f062012-01-30 00:51:16 +00001299 if (EltTy->isIntegerTy(8)) {
1300 SmallVector<uint8_t, 16> Elts(Record.begin(), Record.end());
1301 if (isa<VectorType>(CurTy))
1302 V = ConstantDataVector::get(Context, Elts);
1303 else
1304 V = ConstantDataArray::get(Context, Elts);
1305 } else if (EltTy->isIntegerTy(16)) {
1306 SmallVector<uint16_t, 16> Elts(Record.begin(), Record.end());
1307 if (isa<VectorType>(CurTy))
1308 V = ConstantDataVector::get(Context, Elts);
1309 else
1310 V = ConstantDataArray::get(Context, Elts);
1311 } else if (EltTy->isIntegerTy(32)) {
1312 SmallVector<uint32_t, 16> Elts(Record.begin(), Record.end());
1313 if (isa<VectorType>(CurTy))
1314 V = ConstantDataVector::get(Context, Elts);
1315 else
1316 V = ConstantDataArray::get(Context, Elts);
1317 } else if (EltTy->isIntegerTy(64)) {
1318 SmallVector<uint64_t, 16> Elts(Record.begin(), Record.end());
1319 if (isa<VectorType>(CurTy))
1320 V = ConstantDataVector::get(Context, Elts);
1321 else
1322 V = ConstantDataArray::get(Context, Elts);
1323 } else if (EltTy->isFloatTy()) {
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001324 SmallVector<float, 16> Elts(Size);
1325 std::transform(Record.begin(), Record.end(), Elts.begin(), BitsToFloat);
Chris Lattnerd408f062012-01-30 00:51:16 +00001326 if (isa<VectorType>(CurTy))
1327 V = ConstantDataVector::get(Context, Elts);
1328 else
1329 V = ConstantDataArray::get(Context, Elts);
1330 } else if (EltTy->isDoubleTy()) {
Benjamin Kramerf52aea82012-05-28 14:10:31 +00001331 SmallVector<double, 16> Elts(Size);
1332 std::transform(Record.begin(), Record.end(), Elts.begin(),
1333 BitsToDouble);
Chris Lattnerd408f062012-01-30 00:51:16 +00001334 if (isa<VectorType>(CurTy))
1335 V = ConstantDataVector::get(Context, Elts);
1336 else
1337 V = ConstantDataArray::get(Context, Elts);
1338 } else {
1339 return Error("Unknown element type in CE_DATA");
1340 }
1341 break;
1342 }
1343
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001344 case bitc::CST_CODE_CE_BINOP: { // CE_BINOP: [opcode, opval, opval]
1345 if (Record.size() < 3) return Error("Invalid CE_BINOP record");
1346 int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001347 if (Opc < 0) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001348 V = UndefValue::get(CurTy); // Unknown binop.
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001349 } else {
1350 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
1351 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001352 unsigned Flags = 0;
1353 if (Record.size() >= 4) {
1354 if (Opc == Instruction::Add ||
1355 Opc == Instruction::Sub ||
Chris Lattnerf067d582011-02-07 16:40:21 +00001356 Opc == Instruction::Mul ||
1357 Opc == Instruction::Shl) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001358 if (Record[3] & (1 << bitc::OBO_NO_SIGNED_WRAP))
1359 Flags |= OverflowingBinaryOperator::NoSignedWrap;
1360 if (Record[3] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
1361 Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00001362 } else if (Opc == Instruction::SDiv ||
Chris Lattnerf067d582011-02-07 16:40:21 +00001363 Opc == Instruction::UDiv ||
1364 Opc == Instruction::LShr ||
1365 Opc == Instruction::AShr) {
Chris Lattner35bda892011-02-06 21:44:57 +00001366 if (Record[3] & (1 << bitc::PEO_EXACT))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001367 Flags |= SDivOperator::IsExact;
1368 }
1369 }
1370 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001371 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001372 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001373 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001374 case bitc::CST_CODE_CE_CAST: { // CE_CAST: [opcode, opty, opval]
1375 if (Record.size() < 3) return Error("Invalid CE_CAST record");
1376 int Opc = GetDecodedCastOpcode(Record[0]);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001377 if (Opc < 0) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001378 V = UndefValue::get(CurTy); // Unknown cast.
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001379 } else {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001380 Type *OpTy = getTypeByID(Record[1]);
Chris Lattnerbfcc3802007-05-06 07:33:01 +00001381 if (!OpTy) return Error("Invalid CE_CAST record");
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001382 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001383 V = ConstantExpr::getCast(Opc, Op, CurTy);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001384 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001385 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001386 }
Dan Gohmandd8004d2009-07-27 21:53:46 +00001387 case bitc::CST_CODE_CE_INBOUNDS_GEP:
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001388 case bitc::CST_CODE_CE_GEP: { // CE_GEP: [n x operands]
Chris Lattner15e6d172007-05-04 19:11:41 +00001389 if (Record.size() & 1) return Error("Invalid CE_GEP record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001390 SmallVector<Constant*, 16> Elts;
Chris Lattner15e6d172007-05-04 19:11:41 +00001391 for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001392 Type *ElTy = getTypeByID(Record[i]);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001393 if (!ElTy) return Error("Invalid CE_GEP record");
1394 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
1395 }
Jay Foaddab3d292011-07-21 14:31:17 +00001396 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foad4b5e2072011-07-21 15:15:37 +00001397 V = ConstantExpr::getGetElementPtr(Elts[0], Indices,
1398 BitCode ==
1399 bitc::CST_CODE_CE_INBOUNDS_GEP);
Chris Lattnerf66d20d2007-04-24 18:15:21 +00001400 break;
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001401 }
Joe Abbey405b6502013-09-12 22:02:31 +00001402 case bitc::CST_CODE_CE_SELECT: { // CE_SELECT: [opval#, opval#, opval#]
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001403 if (Record.size() < 3) return Error("Invalid CE_SELECT record");
Joe Abbey405b6502013-09-12 22:02:31 +00001404
1405 Type *SelectorTy = Type::getInt1Ty(Context);
1406
1407 // If CurTy is a vector of length n, then Record[0] must be a <n x i1>
1408 // vector. Otherwise, it must be a single bit.
1409 if (VectorType *VTy = dyn_cast<VectorType>(CurTy))
1410 SelectorTy = VectorType::get(Type::getInt1Ty(Context),
1411 VTy->getNumElements());
1412
1413 V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
1414 SelectorTy),
1415 ValueList.getConstantFwdRef(Record[1],CurTy),
1416 ValueList.getConstantFwdRef(Record[2],CurTy));
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001417 break;
Joe Abbey405b6502013-09-12 22:02:31 +00001418 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001419 case bitc::CST_CODE_CE_EXTRACTELT: { // CE_EXTRACTELT: [opty, opval, opval]
1420 if (Record.size() < 3) return Error("Invalid CE_EXTRACTELT record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001421 VectorType *OpTy =
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001422 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
1423 if (OpTy == 0) return Error("Invalid CE_EXTRACTELT record");
1424 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
Joe Abbey170a15e2012-11-25 15:23:39 +00001425 Constant *Op1 = ValueList.getConstantFwdRef(Record[2],
Joe Abbeye46b14a2012-11-19 19:22:55 +00001426 Type::getInt32Ty(Context));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001427 V = ConstantExpr::getExtractElement(Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001428 break;
1429 }
1430 case bitc::CST_CODE_CE_INSERTELT: { // CE_INSERTELT: [opval, opval, opval]
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001431 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001432 if (Record.size() < 3 || OpTy == 0)
1433 return Error("Invalid CE_INSERTELT record");
1434 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1435 Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
1436 OpTy->getElementType());
Joe Abbey170a15e2012-11-25 15:23:39 +00001437 Constant *Op2 = ValueList.getConstantFwdRef(Record[2],
Joe Abbeye46b14a2012-11-19 19:22:55 +00001438 Type::getInt32Ty(Context));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001439 V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001440 break;
1441 }
1442 case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001443 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001444 if (Record.size() < 3 || OpTy == 0)
Nate Begeman0f123cf2009-02-12 21:28:33 +00001445 return Error("Invalid CE_SHUFFLEVEC record");
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001446 Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1447 Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001448 Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
Owen Anderson74a77812009-07-07 20:18:58 +00001449 OpTy->getNumElements());
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001450 Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001451 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001452 break;
1453 }
Nate Begeman0f123cf2009-02-12 21:28:33 +00001454 case bitc::CST_CODE_CE_SHUFVEC_EX: { // [opty, opval, opval, opval]
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001455 VectorType *RTy = dyn_cast<VectorType>(CurTy);
1456 VectorType *OpTy =
Duncan Sandsf22b7462010-10-28 15:47:26 +00001457 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
Nate Begeman0f123cf2009-02-12 21:28:33 +00001458 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
1459 return Error("Invalid CE_SHUFVEC_EX record");
1460 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1461 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001462 Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
Owen Anderson74a77812009-07-07 20:18:58 +00001463 RTy->getNumElements());
Nate Begeman0f123cf2009-02-12 21:28:33 +00001464 Constant *Op2 = ValueList.getConstantFwdRef(Record[3], ShufTy);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001465 V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Nate Begeman0f123cf2009-02-12 21:28:33 +00001466 break;
1467 }
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001468 case bitc::CST_CODE_CE_CMP: { // CE_CMP: [opty, opval, opval, pred]
1469 if (Record.size() < 4) return Error("Invalid CE_CMP record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001470 Type *OpTy = getTypeByID(Record[0]);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001471 if (OpTy == 0) return Error("Invalid CE_CMP record");
1472 Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1473 Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
1474
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001475 if (OpTy->isFPOrFPVectorTy())
Owen Andersonbaf3c402009-07-29 18:55:55 +00001476 V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
Nate Begemanac80ade2008-05-12 19:01:56 +00001477 else
Owen Andersonbaf3c402009-07-29 18:55:55 +00001478 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
Chris Lattnerf581c3b2007-04-24 07:07:11 +00001479 break;
Chris Lattner522b7b12007-04-24 05:48:56 +00001480 }
Chad Rosier581600b2012-09-05 19:00:49 +00001481 // This maintains backward compatibility, pre-asm dialect keywords.
Chad Rosier27b25c22012-09-05 06:28:52 +00001482 // FIXME: Remove with the 4.0 release.
Chad Rosierf16ae582012-09-05 00:56:20 +00001483 case bitc::CST_CODE_INLINEASM_OLD: {
Chris Lattner2bce93a2007-05-06 01:58:20 +00001484 if (Record.size() < 2) return Error("Invalid INLINEASM record");
1485 std::string AsmStr, ConstrStr;
Dale Johannesen43602982009-10-13 20:46:56 +00001486 bool HasSideEffects = Record[0] & 1;
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00001487 bool IsAlignStack = Record[0] >> 1;
Chris Lattner2bce93a2007-05-06 01:58:20 +00001488 unsigned AsmStrSize = Record[1];
1489 if (2+AsmStrSize >= Record.size())
1490 return Error("Invalid INLINEASM record");
1491 unsigned ConstStrSize = Record[2+AsmStrSize];
1492 if (3+AsmStrSize+ConstStrSize > Record.size())
1493 return Error("Invalid INLINEASM record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001494
Chris Lattner2bce93a2007-05-06 01:58:20 +00001495 for (unsigned i = 0; i != AsmStrSize; ++i)
1496 AsmStr += (char)Record[2+i];
1497 for (unsigned i = 0; i != ConstStrSize; ++i)
1498 ConstrStr += (char)Record[3+AsmStrSize+i];
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001499 PointerType *PTy = cast<PointerType>(CurTy);
Chris Lattner2bce93a2007-05-06 01:58:20 +00001500 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00001501 AsmStr, ConstrStr, HasSideEffects, IsAlignStack);
Chris Lattner2bce93a2007-05-06 01:58:20 +00001502 break;
1503 }
Chad Rosier581600b2012-09-05 19:00:49 +00001504 // This version adds support for the asm dialect keywords (e.g.,
1505 // inteldialect).
Chad Rosierf16ae582012-09-05 00:56:20 +00001506 case bitc::CST_CODE_INLINEASM: {
1507 if (Record.size() < 2) return Error("Invalid INLINEASM record");
1508 std::string AsmStr, ConstrStr;
1509 bool HasSideEffects = Record[0] & 1;
1510 bool IsAlignStack = (Record[0] >> 1) & 1;
1511 unsigned AsmDialect = Record[0] >> 2;
1512 unsigned AsmStrSize = Record[1];
1513 if (2+AsmStrSize >= Record.size())
1514 return Error("Invalid INLINEASM record");
1515 unsigned ConstStrSize = Record[2+AsmStrSize];
1516 if (3+AsmStrSize+ConstStrSize > Record.size())
1517 return Error("Invalid INLINEASM record");
1518
1519 for (unsigned i = 0; i != AsmStrSize; ++i)
1520 AsmStr += (char)Record[2+i];
1521 for (unsigned i = 0; i != ConstStrSize; ++i)
1522 ConstrStr += (char)Record[3+AsmStrSize+i];
1523 PointerType *PTy = cast<PointerType>(CurTy);
1524 V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
1525 AsmStr, ConstrStr, HasSideEffects, IsAlignStack,
Chad Rosier581600b2012-09-05 19:00:49 +00001526 InlineAsm::AsmDialect(AsmDialect));
Chad Rosierf16ae582012-09-05 00:56:20 +00001527 break;
1528 }
Chris Lattner50b136d2009-10-28 05:53:48 +00001529 case bitc::CST_CODE_BLOCKADDRESS:{
1530 if (Record.size() < 3) return Error("Invalid CE_BLOCKADDRESS record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001531 Type *FnTy = getTypeByID(Record[0]);
Chris Lattner50b136d2009-10-28 05:53:48 +00001532 if (FnTy == 0) return Error("Invalid CE_BLOCKADDRESS record");
1533 Function *Fn =
1534 dyn_cast_or_null<Function>(ValueList.getConstantFwdRef(Record[1],FnTy));
1535 if (Fn == 0) return Error("Invalid CE_BLOCKADDRESS record");
Benjamin Kramer122f5e52012-09-21 14:34:31 +00001536
1537 // If the function is already parsed we can insert the block address right
1538 // away.
1539 if (!Fn->empty()) {
1540 Function::iterator BBI = Fn->begin(), BBE = Fn->end();
1541 for (size_t I = 0, E = Record[2]; I != E; ++I) {
1542 if (BBI == BBE)
1543 return Error("Invalid blockaddress block #");
1544 ++BBI;
1545 }
1546 V = BlockAddress::get(Fn, BBI);
1547 } else {
1548 // Otherwise insert a placeholder and remember it so it can be inserted
1549 // when the function is parsed.
1550 GlobalVariable *FwdRef = new GlobalVariable(*Fn->getParent(),
1551 Type::getInt8Ty(Context),
Chris Lattner50b136d2009-10-28 05:53:48 +00001552 false, GlobalValue::InternalLinkage,
Benjamin Kramer122f5e52012-09-21 14:34:31 +00001553 0, "");
1554 BlockAddrFwdRefs[Fn].push_back(std::make_pair(Record[2], FwdRef));
1555 V = FwdRef;
1556 }
Chris Lattner50b136d2009-10-28 05:53:48 +00001557 break;
Michael Ilseman407a6162012-11-15 22:34:00 +00001558 }
Chris Lattnere16504e2007-04-24 03:30:34 +00001559 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001560
Chris Lattnera7c49aa2007-05-01 07:01:57 +00001561 ValueList.AssignValue(V, NextCstNo);
Chris Lattner522b7b12007-04-24 05:48:56 +00001562 ++NextCstNo;
Chris Lattnere16504e2007-04-24 03:30:34 +00001563 }
1564}
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001565
Chad Rosiercbbb0962011-12-07 21:44:12 +00001566bool BitcodeReader::ParseUseLists() {
1567 if (Stream.EnterSubBlock(bitc::USELIST_BLOCK_ID))
1568 return Error("Malformed block record");
1569
1570 SmallVector<uint64_t, 64> Record;
Michael Ilseman407a6162012-11-15 22:34:00 +00001571
Chad Rosiercbbb0962011-12-07 21:44:12 +00001572 // Read all the records.
1573 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +00001574 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +00001575
Chris Lattner5a4251c2013-01-20 02:13:19 +00001576 switch (Entry.Kind) {
1577 case BitstreamEntry::SubBlock: // Handled for us already.
1578 case BitstreamEntry::Error:
1579 return Error("malformed use list block");
1580 case BitstreamEntry::EndBlock:
Chad Rosiercbbb0962011-12-07 21:44:12 +00001581 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +00001582 case BitstreamEntry::Record:
1583 // The interesting case.
1584 break;
Chad Rosiercbbb0962011-12-07 21:44:12 +00001585 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001586
Chad Rosiercbbb0962011-12-07 21:44:12 +00001587 // Read a use list record.
1588 Record.clear();
Chris Lattner5a4251c2013-01-20 02:13:19 +00001589 switch (Stream.readRecord(Entry.ID, Record)) {
Chad Rosiercbbb0962011-12-07 21:44:12 +00001590 default: // Default behavior: unknown type.
1591 break;
1592 case bitc::USELIST_CODE_ENTRY: { // USELIST_CODE_ENTRY: TBD.
1593 unsigned RecordLength = Record.size();
1594 if (RecordLength < 1)
1595 return Error ("Invalid UseList reader!");
1596 UseListRecords.push_back(Record);
1597 break;
1598 }
1599 }
1600 }
1601}
1602
Chris Lattner980e5aa2007-05-01 05:52:21 +00001603/// RememberAndSkipFunctionBody - When we see the block for a function body,
1604/// remember where it is and then skip it. This lets us lazily deserialize the
1605/// functions.
1606bool BitcodeReader::RememberAndSkipFunctionBody() {
Chris Lattner48f84872007-05-01 04:59:48 +00001607 // Get the function we are talking about.
1608 if (FunctionsWithBodies.empty())
1609 return Error("Insufficient function protos");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001610
Chris Lattner48f84872007-05-01 04:59:48 +00001611 Function *Fn = FunctionsWithBodies.back();
1612 FunctionsWithBodies.pop_back();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001613
Chris Lattner48f84872007-05-01 04:59:48 +00001614 // Save the current stream state.
1615 uint64_t CurBit = Stream.GetCurrentBitNo();
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001616 DeferredFunctionInfo[Fn] = CurBit;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001617
Chris Lattner48f84872007-05-01 04:59:48 +00001618 // Skip over the function block for now.
1619 if (Stream.SkipBlock())
1620 return Error("Malformed block record");
1621 return false;
1622}
1623
Derek Schuff2ea93872012-02-06 22:30:29 +00001624bool BitcodeReader::GlobalCleanup() {
1625 // Patch the initializers for globals and aliases up.
1626 ResolveGlobalAndAliasInits();
1627 if (!GlobalInits.empty() || !AliasInits.empty())
1628 return Error("Malformed global initializer set");
1629
1630 // Look for intrinsic functions which need to be upgraded at some point
1631 for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1632 FI != FE; ++FI) {
1633 Function *NewFn;
1634 if (UpgradeIntrinsicFunction(FI, NewFn))
1635 UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1636 }
1637
1638 // Look for global variables which need to be renamed.
1639 for (Module::global_iterator
1640 GI = TheModule->global_begin(), GE = TheModule->global_end();
1641 GI != GE; ++GI)
1642 UpgradeGlobalVariable(GI);
1643 // Force deallocation of memory for these vectors to favor the client that
1644 // want lazy deserialization.
1645 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1646 std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1647 return false;
1648}
1649
1650bool BitcodeReader::ParseModule(bool Resume) {
1651 if (Resume)
1652 Stream.JumpToBit(NextUnreadBit);
1653 else if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001654 return Error("Malformed block record");
1655
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001656 SmallVector<uint64_t, 64> Record;
1657 std::vector<std::string> SectionTable;
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001658 std::vector<std::string> GCTable;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001659
1660 // Read all the records for this module.
Chris Lattner5a4251c2013-01-20 02:13:19 +00001661 while (1) {
1662 BitstreamEntry Entry = Stream.advance();
Joe Abbeyacb61942013-02-06 22:14:06 +00001663
Chris Lattner5a4251c2013-01-20 02:13:19 +00001664 switch (Entry.Kind) {
1665 case BitstreamEntry::Error:
1666 Error("malformed module block");
1667 return true;
1668 case BitstreamEntry::EndBlock:
Derek Schuff2ea93872012-02-06 22:30:29 +00001669 return GlobalCleanup();
Joe Abbeyacb61942013-02-06 22:14:06 +00001670
Chris Lattner5a4251c2013-01-20 02:13:19 +00001671 case BitstreamEntry::SubBlock:
1672 switch (Entry.ID) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001673 default: // Skip unknown content.
1674 if (Stream.SkipBlock())
1675 return Error("Malformed block record");
1676 break;
Chris Lattner3f799802007-05-05 18:57:30 +00001677 case bitc::BLOCKINFO_BLOCK_ID:
1678 if (Stream.ReadBlockInfoBlock())
1679 return Error("Malformed BlockInfoBlock");
1680 break;
Chris Lattner48c85b82007-05-04 03:30:17 +00001681 case bitc::PARAMATTR_BLOCK_ID:
Devang Patel05988662008-09-25 21:00:45 +00001682 if (ParseAttributeBlock())
Chris Lattner48c85b82007-05-04 03:30:17 +00001683 return true;
1684 break;
Bill Wendlingc3ba0a82013-02-10 23:24:25 +00001685 case bitc::PARAMATTR_GROUP_BLOCK_ID:
1686 if (ParseAttributeGroupBlock())
1687 return true;
1688 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001689 case bitc::TYPE_BLOCK_ID_NEW:
Chris Lattner86697142007-05-01 05:01:34 +00001690 if (ParseTypeTable())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001691 return true;
1692 break;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001693 case bitc::VALUE_SYMTAB_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001694 if (ParseValueSymbolTable())
Chris Lattner0b2482a2007-04-23 21:26:05 +00001695 return true;
Derek Schuff2ea93872012-02-06 22:30:29 +00001696 SeenValueSymbolTable = true;
Chris Lattner0b2482a2007-04-23 21:26:05 +00001697 break;
Chris Lattnere16504e2007-04-24 03:30:34 +00001698 case bitc::CONSTANTS_BLOCK_ID:
Chris Lattner86697142007-05-01 05:01:34 +00001699 if (ParseConstants() || ResolveGlobalAndAliasInits())
Chris Lattnere16504e2007-04-24 03:30:34 +00001700 return true;
1701 break;
Devang Patele54abc92009-07-22 17:43:22 +00001702 case bitc::METADATA_BLOCK_ID:
1703 if (ParseMetadata())
1704 return true;
1705 break;
Chris Lattner48f84872007-05-01 04:59:48 +00001706 case bitc::FUNCTION_BLOCK_ID:
1707 // If this is the first function body we've seen, reverse the
1708 // FunctionsWithBodies list.
Derek Schuff2ea93872012-02-06 22:30:29 +00001709 if (!SeenFirstFunctionBody) {
Chris Lattner48f84872007-05-01 04:59:48 +00001710 std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
Derek Schuff2ea93872012-02-06 22:30:29 +00001711 if (GlobalCleanup())
1712 return true;
1713 SeenFirstFunctionBody = true;
Chris Lattner48f84872007-05-01 04:59:48 +00001714 }
Joe Abbeyacb61942013-02-06 22:14:06 +00001715
Chris Lattner980e5aa2007-05-01 05:52:21 +00001716 if (RememberAndSkipFunctionBody())
Chris Lattner48f84872007-05-01 04:59:48 +00001717 return true;
Derek Schuff2ea93872012-02-06 22:30:29 +00001718 // For streaming bitcode, suspend parsing when we reach the function
1719 // bodies. Subsequent materialization calls will resume it when
1720 // necessary. For streaming, the function bodies must be at the end of
1721 // the bitcode. If the bitcode file is old, the symbol table will be
1722 // at the end instead and will not have been seen yet. In this case,
1723 // just finish the parse now.
1724 if (LazyStreamer && SeenValueSymbolTable) {
1725 NextUnreadBit = Stream.GetCurrentBitNo();
1726 return false;
1727 }
Chris Lattner48f84872007-05-01 04:59:48 +00001728 break;
Chad Rosiercbbb0962011-12-07 21:44:12 +00001729 case bitc::USELIST_BLOCK_ID:
1730 if (ParseUseLists())
1731 return true;
1732 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001733 }
1734 continue;
Joe Abbeyacb61942013-02-06 22:14:06 +00001735
Chris Lattner5a4251c2013-01-20 02:13:19 +00001736 case BitstreamEntry::Record:
1737 // The interesting case.
1738 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001739 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001740
Daniel Dunbara279bc32009-09-20 02:20:51 +00001741
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001742 // Read a record.
Chris Lattner5a4251c2013-01-20 02:13:19 +00001743 switch (Stream.readRecord(Entry.ID, Record)) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001744 default: break; // Default behavior, ignore unknown content.
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001745 case bitc::MODULE_CODE_VERSION: { // VERSION: [version#]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001746 if (Record.size() < 1)
1747 return Error("Malformed MODULE_CODE_VERSION");
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001748 // Only version #0 and #1 are supported so far.
1749 unsigned module_version = Record[0];
1750 switch (module_version) {
1751 default: return Error("Unknown bitstream version!");
1752 case 0:
1753 UseRelativeIDs = false;
1754 break;
1755 case 1:
1756 UseRelativeIDs = true;
1757 break;
1758 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001759 break;
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00001760 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001761 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001762 std::string S;
1763 if (ConvertToString(Record, 0, S))
1764 return Error("Invalid MODULE_CODE_TRIPLE record");
1765 TheModule->setTargetTriple(S);
1766 break;
1767 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001768 case bitc::MODULE_CODE_DATALAYOUT: { // DATALAYOUT: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001769 std::string S;
1770 if (ConvertToString(Record, 0, S))
1771 return Error("Invalid MODULE_CODE_DATALAYOUT record");
1772 TheModule->setDataLayout(S);
1773 break;
1774 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001775 case bitc::MODULE_CODE_ASM: { // ASM: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001776 std::string S;
1777 if (ConvertToString(Record, 0, S))
1778 return Error("Invalid MODULE_CODE_ASM record");
1779 TheModule->setModuleInlineAsm(S);
1780 break;
1781 }
Bill Wendling3defc0b2012-11-28 08:41:48 +00001782 case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strchr x N]
1783 // FIXME: Remove in 4.0.
1784 std::string S;
1785 if (ConvertToString(Record, 0, S))
1786 return Error("Invalid MODULE_CODE_DEPLIB record");
1787 // Ignore value.
1788 break;
1789 }
Chris Lattner15e6d172007-05-04 19:11:41 +00001790 case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001791 std::string S;
1792 if (ConvertToString(Record, 0, S))
1793 return Error("Invalid MODULE_CODE_SECTIONNAME record");
1794 SectionTable.push_back(S);
1795 break;
1796 }
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001797 case bitc::MODULE_CODE_GCNAME: { // SECTIONNAME: [strchr x N]
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001798 std::string S;
1799 if (ConvertToString(Record, 0, S))
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001800 return Error("Invalid MODULE_CODE_GCNAME record");
1801 GCTable.push_back(S);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001802 break;
1803 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001804 // GLOBALVAR: [pointer type, isconst, initid,
Rafael Espindolabea46262011-01-08 16:42:36 +00001805 // linkage, alignment, section, visibility, threadlocal,
1806 // unnamed_addr]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001807 case bitc::MODULE_CODE_GLOBALVAR: {
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001808 if (Record.size() < 6)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001809 return Error("Invalid MODULE_CODE_GLOBALVAR record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001810 Type *Ty = getTypeByID(Record[0]);
Duncan Sandsf22b7462010-10-28 15:47:26 +00001811 if (!Ty) return Error("Invalid MODULE_CODE_GLOBALVAR record");
Duncan Sands1df98592010-02-16 11:11:14 +00001812 if (!Ty->isPointerTy())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001813 return Error("Global not a pointer type!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001814 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001815 Ty = cast<PointerType>(Ty)->getElementType();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001816
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001817 bool isConstant = Record[1];
1818 GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1819 unsigned Alignment = (1 << Record[4]) >> 1;
1820 std::string Section;
1821 if (Record[5]) {
1822 if (Record[5]-1 >= SectionTable.size())
1823 return Error("Invalid section ID");
1824 Section = SectionTable[Record[5]-1];
1825 }
Chris Lattner36d5e7d2007-04-23 16:04:05 +00001826 GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
Chris Lattner5f32c012007-05-06 19:27:46 +00001827 if (Record.size() > 6)
1828 Visibility = GetDecodedVisibility(Record[6]);
Hans Wennborgce718ff2012-06-23 11:37:03 +00001829
1830 GlobalVariable::ThreadLocalMode TLM = GlobalVariable::NotThreadLocal;
Chris Lattner5f32c012007-05-06 19:27:46 +00001831 if (Record.size() > 7)
Hans Wennborgce718ff2012-06-23 11:37:03 +00001832 TLM = GetDecodedThreadLocalMode(Record[7]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001833
Rafael Espindolabea46262011-01-08 16:42:36 +00001834 bool UnnamedAddr = false;
1835 if (Record.size() > 8)
1836 UnnamedAddr = Record[8];
1837
Michael Gottesmana2de37c2013-02-05 05:57:38 +00001838 bool ExternallyInitialized = false;
1839 if (Record.size() > 9)
1840 ExternallyInitialized = Record[9];
1841
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001842 GlobalVariable *NewGV =
Daniel Dunbara279bc32009-09-20 02:20:51 +00001843 new GlobalVariable(*TheModule, Ty, isConstant, Linkage, 0, "", 0,
Michael Gottesmana2de37c2013-02-05 05:57:38 +00001844 TLM, AddressSpace, ExternallyInitialized);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001845 NewGV->setAlignment(Alignment);
1846 if (!Section.empty())
1847 NewGV->setSection(Section);
1848 NewGV->setVisibility(Visibility);
Rafael Espindolabea46262011-01-08 16:42:36 +00001849 NewGV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001850
Chris Lattner0b2482a2007-04-23 21:26:05 +00001851 ValueList.push_back(NewGV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001852
Chris Lattner6dbfd7b2007-04-24 00:18:21 +00001853 // Remember which value to use for the global initializer.
1854 if (unsigned InitID = Record[2])
1855 GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001856 break;
1857 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001858 // FUNCTION: [type, callingconv, isproto, linkage, paramattr,
Rafael Espindolabea46262011-01-08 16:42:36 +00001859 // alignment, section, visibility, gc, unnamed_addr]
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001860 case bitc::MODULE_CODE_FUNCTION: {
Chris Lattnera9bb7132007-05-08 05:38:01 +00001861 if (Record.size() < 8)
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001862 return Error("Invalid MODULE_CODE_FUNCTION record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001863 Type *Ty = getTypeByID(Record[0]);
Duncan Sandsf22b7462010-10-28 15:47:26 +00001864 if (!Ty) return Error("Invalid MODULE_CODE_FUNCTION record");
Duncan Sands1df98592010-02-16 11:11:14 +00001865 if (!Ty->isPointerTy())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001866 return Error("Function not a pointer type!");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001867 FunctionType *FTy =
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001868 dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
1869 if (!FTy)
1870 return Error("Function not a pointer to function type!");
1871
Gabor Greif051a9502008-04-06 20:25:17 +00001872 Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
1873 "", TheModule);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001874
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001875 Func->setCallingConv(static_cast<CallingConv::ID>(Record[1]));
Chris Lattner48f84872007-05-01 04:59:48 +00001876 bool isProto = Record[2];
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001877 Func->setLinkage(GetDecodedLinkage(Record[3]));
Devang Patel05988662008-09-25 21:00:45 +00001878 Func->setAttributes(getAttributes(Record[4]));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001879
Chris Lattnera9bb7132007-05-08 05:38:01 +00001880 Func->setAlignment((1 << Record[5]) >> 1);
1881 if (Record[6]) {
1882 if (Record[6]-1 >= SectionTable.size())
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001883 return Error("Invalid section ID");
Chris Lattnera9bb7132007-05-08 05:38:01 +00001884 Func->setSection(SectionTable[Record[6]-1]);
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001885 }
Chris Lattnera9bb7132007-05-08 05:38:01 +00001886 Func->setVisibility(GetDecodedVisibility(Record[7]));
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001887 if (Record.size() > 8 && Record[8]) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001888 if (Record[8]-1 > GCTable.size())
1889 return Error("Invalid GC ID");
1890 Func->setGC(GCTable[Record[8]-1].c_str());
Gordon Henriksen80a75bf2007-12-10 03:18:06 +00001891 }
Rafael Espindolabea46262011-01-08 16:42:36 +00001892 bool UnnamedAddr = false;
1893 if (Record.size() > 9)
1894 UnnamedAddr = Record[9];
1895 Func->setUnnamedAddr(UnnamedAddr);
Peter Collingbourne1e3037f2013-09-16 01:08:15 +00001896 if (Record.size() > 10 && Record[10] != 0)
1897 FunctionPrefixes.push_back(std::make_pair(Func, Record[10]-1));
Chris Lattner0b2482a2007-04-23 21:26:05 +00001898 ValueList.push_back(Func);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001899
Chris Lattner48f84872007-05-01 04:59:48 +00001900 // If this is a function with a body, remember the prototype we are
1901 // creating now, so that we can match up the body with them later.
Derek Schuff2ea93872012-02-06 22:30:29 +00001902 if (!isProto) {
Chris Lattner48f84872007-05-01 04:59:48 +00001903 FunctionsWithBodies.push_back(Func);
Derek Schuff2ea93872012-02-06 22:30:29 +00001904 if (LazyStreamer) DeferredFunctionInfo[Func] = 0;
1905 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001906 break;
1907 }
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001908 // ALIAS: [alias type, aliasee val#, linkage]
Anton Korobeynikovf8342b92008-03-11 21:40:17 +00001909 // ALIAS: [alias type, aliasee val#, linkage, visibility]
Chris Lattner198f34a2007-04-26 03:27:58 +00001910 case bitc::MODULE_CODE_ALIAS: {
Chris Lattner07d98b42007-04-26 02:46:40 +00001911 if (Record.size() < 3)
1912 return Error("Invalid MODULE_ALIAS record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001913 Type *Ty = getTypeByID(Record[0]);
Duncan Sandsf22b7462010-10-28 15:47:26 +00001914 if (!Ty) return Error("Invalid MODULE_ALIAS record");
Duncan Sands1df98592010-02-16 11:11:14 +00001915 if (!Ty->isPointerTy())
Chris Lattner07d98b42007-04-26 02:46:40 +00001916 return Error("Function not a pointer type!");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001917
Chris Lattner07d98b42007-04-26 02:46:40 +00001918 GlobalAlias *NewGA = new GlobalAlias(Ty, GetDecodedLinkage(Record[2]),
1919 "", 0, TheModule);
Anton Korobeynikov91342d82008-03-12 00:49:19 +00001920 // Old bitcode files didn't have visibility field.
1921 if (Record.size() > 3)
1922 NewGA->setVisibility(GetDecodedVisibility(Record[3]));
Chris Lattner07d98b42007-04-26 02:46:40 +00001923 ValueList.push_back(NewGA);
1924 AliasInits.push_back(std::make_pair(NewGA, Record[1]));
1925 break;
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001926 }
Chris Lattner198f34a2007-04-26 03:27:58 +00001927 /// MODULE_CODE_PURGEVALS: [numvals]
1928 case bitc::MODULE_CODE_PURGEVALS:
1929 // Trim down the value list to the specified size.
1930 if (Record.size() < 1 || Record[0] > ValueList.size())
1931 return Error("Invalid MODULE_PURGEVALS record");
1932 ValueList.shrinkTo(Record[0]);
1933 break;
1934 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001935 Record.clear();
1936 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001937}
1938
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00001939bool BitcodeReader::ParseBitcodeInto(Module *M) {
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001940 TheModule = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001941
Derek Schuff2ea93872012-02-06 22:30:29 +00001942 if (InitStream()) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001943
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001944 // Sniff for the signature.
1945 if (Stream.Read(8) != 'B' ||
1946 Stream.Read(8) != 'C' ||
1947 Stream.Read(4) != 0x0 ||
1948 Stream.Read(4) != 0xC ||
1949 Stream.Read(4) != 0xE ||
1950 Stream.Read(4) != 0xD)
1951 return Error("Invalid bitcode signature");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001952
Chris Lattnercaee0dc2007-04-22 06:23:29 +00001953 // We expect a number of well-defined blocks, though we don't necessarily
1954 // need to understand them all.
Chris Lattner5a4251c2013-01-20 02:13:19 +00001955 while (1) {
1956 if (Stream.AtEndOfStream())
1957 return false;
Joe Abbeyacb61942013-02-06 22:14:06 +00001958
Chris Lattner5a4251c2013-01-20 02:13:19 +00001959 BitstreamEntry Entry =
1960 Stream.advance(BitstreamCursor::AF_DontAutoprocessAbbrevs);
Joe Abbeyacb61942013-02-06 22:14:06 +00001961
Chris Lattner5a4251c2013-01-20 02:13:19 +00001962 switch (Entry.Kind) {
1963 case BitstreamEntry::Error:
1964 Error("malformed module file");
1965 return true;
1966 case BitstreamEntry::EndBlock:
1967 return false;
Joe Abbeyacb61942013-02-06 22:14:06 +00001968
Chris Lattner5a4251c2013-01-20 02:13:19 +00001969 case BitstreamEntry::SubBlock:
1970 switch (Entry.ID) {
1971 case bitc::BLOCKINFO_BLOCK_ID:
1972 if (Stream.ReadBlockInfoBlock())
1973 return Error("Malformed BlockInfoBlock");
1974 break;
1975 case bitc::MODULE_BLOCK_ID:
1976 // Reject multiple MODULE_BLOCK's in a single bitstream.
1977 if (TheModule)
1978 return Error("Multiple MODULE_BLOCKs in same stream");
1979 TheModule = M;
1980 if (ParseModule(false))
1981 return true;
1982 if (LazyStreamer) return false;
1983 break;
1984 default:
1985 if (Stream.SkipBlock())
1986 return Error("Malformed block record");
1987 break;
1988 }
1989 continue;
1990 case BitstreamEntry::Record:
1991 // There should be no records in the top-level of blocks.
Joe Abbeyacb61942013-02-06 22:14:06 +00001992
Chris Lattner5a4251c2013-01-20 02:13:19 +00001993 // The ranlib in Xcode 4 will align archive members by appending newlines
Chad Rosier6ff9aa22011-08-09 22:23:40 +00001994 // to the end of them. If this file size is a multiple of 4 but not 8, we
1995 // have to read and ignore these final 4 bytes :-(
Chris Lattner5a4251c2013-01-20 02:13:19 +00001996 if (Stream.getAbbrevIDWidth() == 2 && Entry.ID == 2 &&
Rafael Espindolac9687b32011-05-26 18:59:54 +00001997 Stream.Read(6) == 2 && Stream.Read(24) == 0xa0a0a &&
Bill Wendling2127c9b2012-07-19 00:15:11 +00001998 Stream.AtEndOfStream())
Rafael Espindolac9687b32011-05-26 18:59:54 +00001999 return false;
Joe Abbeyacb61942013-02-06 22:14:06 +00002000
Chris Lattnercaee0dc2007-04-22 06:23:29 +00002001 return Error("Invalid record at top-level");
Rafael Espindolac9687b32011-05-26 18:59:54 +00002002 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00002003 }
Chris Lattnercaee0dc2007-04-22 06:23:29 +00002004}
Chris Lattnerc453f762007-04-29 07:54:31 +00002005
Bill Wendling34711742010-10-06 01:22:42 +00002006bool BitcodeReader::ParseModuleTriple(std::string &Triple) {
2007 if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
2008 return Error("Malformed block record");
2009
2010 SmallVector<uint64_t, 64> Record;
2011
2012 // Read all the records for this module.
Chris Lattner5a4251c2013-01-20 02:13:19 +00002013 while (1) {
2014 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +00002015
Chris Lattner5a4251c2013-01-20 02:13:19 +00002016 switch (Entry.Kind) {
2017 case BitstreamEntry::SubBlock: // Handled for us already.
2018 case BitstreamEntry::Error:
2019 return Error("malformed module block");
2020 case BitstreamEntry::EndBlock:
Bill Wendling34711742010-10-06 01:22:42 +00002021 return false;
Chris Lattner5a4251c2013-01-20 02:13:19 +00002022 case BitstreamEntry::Record:
2023 // The interesting case.
2024 break;
Bill Wendling34711742010-10-06 01:22:42 +00002025 }
2026
2027 // Read a record.
Chris Lattner5a4251c2013-01-20 02:13:19 +00002028 switch (Stream.readRecord(Entry.ID, Record)) {
Bill Wendling34711742010-10-06 01:22:42 +00002029 default: break; // Default behavior, ignore unknown content.
Bill Wendling34711742010-10-06 01:22:42 +00002030 case bitc::MODULE_CODE_TRIPLE: { // TRIPLE: [strchr x N]
2031 std::string S;
2032 if (ConvertToString(Record, 0, S))
2033 return Error("Invalid MODULE_CODE_TRIPLE record");
2034 Triple = S;
2035 break;
2036 }
2037 }
2038 Record.clear();
2039 }
Bill Wendling34711742010-10-06 01:22:42 +00002040}
2041
2042bool BitcodeReader::ParseTriple(std::string &Triple) {
Derek Schuff2ea93872012-02-06 22:30:29 +00002043 if (InitStream()) return true;
Bill Wendling34711742010-10-06 01:22:42 +00002044
2045 // Sniff for the signature.
2046 if (Stream.Read(8) != 'B' ||
2047 Stream.Read(8) != 'C' ||
2048 Stream.Read(4) != 0x0 ||
2049 Stream.Read(4) != 0xC ||
2050 Stream.Read(4) != 0xE ||
2051 Stream.Read(4) != 0xD)
2052 return Error("Invalid bitcode signature");
2053
2054 // We expect a number of well-defined blocks, though we don't necessarily
2055 // need to understand them all.
Chris Lattner5a4251c2013-01-20 02:13:19 +00002056 while (1) {
2057 BitstreamEntry Entry = Stream.advance();
Joe Abbeyacb61942013-02-06 22:14:06 +00002058
Chris Lattner5a4251c2013-01-20 02:13:19 +00002059 switch (Entry.Kind) {
2060 case BitstreamEntry::Error:
2061 Error("malformed module file");
2062 return true;
2063 case BitstreamEntry::EndBlock:
2064 return false;
Joe Abbeyacb61942013-02-06 22:14:06 +00002065
Chris Lattner5a4251c2013-01-20 02:13:19 +00002066 case BitstreamEntry::SubBlock:
2067 if (Entry.ID == bitc::MODULE_BLOCK_ID)
2068 return ParseModuleTriple(Triple);
Joe Abbeyacb61942013-02-06 22:14:06 +00002069
Chris Lattner5a4251c2013-01-20 02:13:19 +00002070 // Ignore other sub-blocks.
2071 if (Stream.SkipBlock()) {
2072 Error("malformed block record in AST file");
Bill Wendling34711742010-10-06 01:22:42 +00002073 return true;
Chris Lattner5a4251c2013-01-20 02:13:19 +00002074 }
2075 continue;
Joe Abbeyacb61942013-02-06 22:14:06 +00002076
Chris Lattner5a4251c2013-01-20 02:13:19 +00002077 case BitstreamEntry::Record:
2078 Stream.skipRecord(Entry.ID);
2079 continue;
Bill Wendling34711742010-10-06 01:22:42 +00002080 }
2081 }
Bill Wendling34711742010-10-06 01:22:42 +00002082}
2083
Devang Patele8e02132009-09-18 19:26:43 +00002084/// ParseMetadataAttachment - Parse metadata attachments.
2085bool BitcodeReader::ParseMetadataAttachment() {
2086 if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
2087 return Error("Malformed block record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002088
Devang Patele8e02132009-09-18 19:26:43 +00002089 SmallVector<uint64_t, 64> Record;
Chris Lattner5a4251c2013-01-20 02:13:19 +00002090 while (1) {
2091 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Joe Abbeyacb61942013-02-06 22:14:06 +00002092
Chris Lattner5a4251c2013-01-20 02:13:19 +00002093 switch (Entry.Kind) {
2094 case BitstreamEntry::SubBlock: // Handled for us already.
2095 case BitstreamEntry::Error:
2096 return Error("malformed metadata block");
2097 case BitstreamEntry::EndBlock:
2098 return false;
2099 case BitstreamEntry::Record:
2100 // The interesting case.
Devang Patele8e02132009-09-18 19:26:43 +00002101 break;
2102 }
Chris Lattner5a4251c2013-01-20 02:13:19 +00002103
Devang Patele8e02132009-09-18 19:26:43 +00002104 // Read a metadata attachment record.
2105 Record.clear();
Chris Lattner5a4251c2013-01-20 02:13:19 +00002106 switch (Stream.readRecord(Entry.ID, Record)) {
Devang Patele8e02132009-09-18 19:26:43 +00002107 default: // Default behavior: ignore.
2108 break;
Chris Lattner9d61dd92011-06-17 17:50:30 +00002109 case bitc::METADATA_ATTACHMENT: {
Devang Patele8e02132009-09-18 19:26:43 +00002110 unsigned RecordLength = Record.size();
2111 if (Record.empty() || (RecordLength - 1) % 2 == 1)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002112 return Error ("Invalid METADATA_ATTACHMENT reader!");
Devang Patele8e02132009-09-18 19:26:43 +00002113 Instruction *Inst = InstructionList[Record[0]];
2114 for (unsigned i = 1; i != RecordLength; i = i+2) {
Devang Patela2148402009-09-28 21:14:55 +00002115 unsigned Kind = Record[i];
Dan Gohman19538d12010-07-20 21:42:28 +00002116 DenseMap<unsigned, unsigned>::iterator I =
2117 MDKindMap.find(Kind);
2118 if (I == MDKindMap.end())
2119 return Error("Invalid metadata kind ID");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002120 Value *Node = MDValueList.getValueFwdRef(Record[i+1]);
Dan Gohman19538d12010-07-20 21:42:28 +00002121 Inst->setMetadata(I->second, cast<MDNode>(Node));
Manman Ren804f0342013-09-28 00:22:27 +00002122 if (I->second == LLVMContext::MD_tbaa)
2123 InstsWithTBAATag.push_back(Inst);
Devang Patele8e02132009-09-18 19:26:43 +00002124 }
2125 break;
2126 }
2127 }
2128 }
Devang Patele8e02132009-09-18 19:26:43 +00002129}
Chris Lattner48f84872007-05-01 04:59:48 +00002130
Chris Lattner980e5aa2007-05-01 05:52:21 +00002131/// ParseFunctionBody - Lazily parse the specified function body block.
2132bool BitcodeReader::ParseFunctionBody(Function *F) {
Chris Lattnere17b6582007-05-05 00:17:00 +00002133 if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
Chris Lattner980e5aa2007-05-01 05:52:21 +00002134 return Error("Malformed block record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002135
Nick Lewycky9a49f152010-02-25 08:30:17 +00002136 InstructionList.clear();
Chris Lattner980e5aa2007-05-01 05:52:21 +00002137 unsigned ModuleValueListSize = ValueList.size();
Dan Gohman69813832010-08-25 20:22:53 +00002138 unsigned ModuleMDValueListSize = MDValueList.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002139
Chris Lattner980e5aa2007-05-01 05:52:21 +00002140 // Add all the function arguments to the value table.
2141 for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
2142 ValueList.push_back(I);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002143
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002144 unsigned NextValueNo = ValueList.size();
Chris Lattner231cbcb2007-05-02 04:27:25 +00002145 BasicBlock *CurBB = 0;
2146 unsigned CurBBNo = 0;
2147
Chris Lattnera6245242010-04-03 02:17:50 +00002148 DebugLoc LastLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002149
Chris Lattner980e5aa2007-05-01 05:52:21 +00002150 // Read all the records.
2151 SmallVector<uint64_t, 64> Record;
2152 while (1) {
Chris Lattner5a4251c2013-01-20 02:13:19 +00002153 BitstreamEntry Entry = Stream.advance();
Joe Abbeyacb61942013-02-06 22:14:06 +00002154
Chris Lattner5a4251c2013-01-20 02:13:19 +00002155 switch (Entry.Kind) {
2156 case BitstreamEntry::Error:
2157 return Error("Bitcode error in function block");
2158 case BitstreamEntry::EndBlock:
2159 goto OutOfRecordLoop;
Joe Abbeyacb61942013-02-06 22:14:06 +00002160
Chris Lattner5a4251c2013-01-20 02:13:19 +00002161 case BitstreamEntry::SubBlock:
2162 switch (Entry.ID) {
Chris Lattner980e5aa2007-05-01 05:52:21 +00002163 default: // Skip unknown content.
2164 if (Stream.SkipBlock())
2165 return Error("Malformed block record");
2166 break;
2167 case bitc::CONSTANTS_BLOCK_ID:
2168 if (ParseConstants()) return true;
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002169 NextValueNo = ValueList.size();
Chris Lattner980e5aa2007-05-01 05:52:21 +00002170 break;
2171 case bitc::VALUE_SYMTAB_BLOCK_ID:
2172 if (ParseValueSymbolTable()) return true;
2173 break;
Devang Patele8e02132009-09-18 19:26:43 +00002174 case bitc::METADATA_ATTACHMENT_ID:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002175 if (ParseMetadataAttachment()) return true;
2176 break;
Victor Hernandezfab9e99c2010-01-13 19:34:08 +00002177 case bitc::METADATA_BLOCK_ID:
2178 if (ParseMetadata()) return true;
2179 break;
Chris Lattner980e5aa2007-05-01 05:52:21 +00002180 }
2181 continue;
Joe Abbeyacb61942013-02-06 22:14:06 +00002182
Chris Lattner5a4251c2013-01-20 02:13:19 +00002183 case BitstreamEntry::Record:
2184 // The interesting case.
2185 break;
Chris Lattner980e5aa2007-05-01 05:52:21 +00002186 }
Joe Abbeyacb61942013-02-06 22:14:06 +00002187
Chris Lattner980e5aa2007-05-01 05:52:21 +00002188 // Read a record.
2189 Record.clear();
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002190 Instruction *I = 0;
Chris Lattner5a4251c2013-01-20 02:13:19 +00002191 unsigned BitCode = Stream.readRecord(Entry.ID, Record);
Dan Gohman1224c382009-07-20 21:19:07 +00002192 switch (BitCode) {
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002193 default: // Default behavior: reject
2194 return Error("Unknown instruction");
Chris Lattner980e5aa2007-05-01 05:52:21 +00002195 case bitc::FUNC_CODE_DECLAREBLOCKS: // DECLAREBLOCKS: [nblocks]
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002196 if (Record.size() < 1 || Record[0] == 0)
2197 return Error("Invalid DECLAREBLOCKS record");
Chris Lattner980e5aa2007-05-01 05:52:21 +00002198 // Create all the basic blocks for the function.
Chris Lattnerf61e6452007-05-03 22:09:51 +00002199 FunctionBBs.resize(Record[0]);
Chris Lattner980e5aa2007-05-01 05:52:21 +00002200 for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +00002201 FunctionBBs[i] = BasicBlock::Create(Context, "", F);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002202 CurBB = FunctionBBs[0];
2203 continue;
Michael Ilseman407a6162012-11-15 22:34:00 +00002204
Chris Lattnera6245242010-04-03 02:17:50 +00002205 case bitc::FUNC_CODE_DEBUG_LOC_AGAIN: // DEBUG_LOC_AGAIN
2206 // This record indicates that the last instruction is at the same
2207 // location as the previous instruction with a location.
2208 I = 0;
Michael Ilseman407a6162012-11-15 22:34:00 +00002209
Chris Lattnera6245242010-04-03 02:17:50 +00002210 // Get the last instruction emitted.
2211 if (CurBB && !CurBB->empty())
2212 I = &CurBB->back();
2213 else if (CurBBNo && FunctionBBs[CurBBNo-1] &&
2214 !FunctionBBs[CurBBNo-1]->empty())
2215 I = &FunctionBBs[CurBBNo-1]->back();
Michael Ilseman407a6162012-11-15 22:34:00 +00002216
Chris Lattnera6245242010-04-03 02:17:50 +00002217 if (I == 0) return Error("Invalid DEBUG_LOC_AGAIN record");
2218 I->setDebugLoc(LastLoc);
2219 I = 0;
2220 continue;
Michael Ilseman407a6162012-11-15 22:34:00 +00002221
Chris Lattner4f6bab92011-06-17 18:17:37 +00002222 case bitc::FUNC_CODE_DEBUG_LOC: { // DEBUG_LOC: [line, col, scope, ia]
Chris Lattnera6245242010-04-03 02:17:50 +00002223 I = 0; // Get the last instruction emitted.
2224 if (CurBB && !CurBB->empty())
2225 I = &CurBB->back();
2226 else if (CurBBNo && FunctionBBs[CurBBNo-1] &&
2227 !FunctionBBs[CurBBNo-1]->empty())
2228 I = &FunctionBBs[CurBBNo-1]->back();
2229 if (I == 0 || Record.size() < 4)
2230 return Error("Invalid FUNC_CODE_DEBUG_LOC record");
Michael Ilseman407a6162012-11-15 22:34:00 +00002231
Chris Lattnera6245242010-04-03 02:17:50 +00002232 unsigned Line = Record[0], Col = Record[1];
2233 unsigned ScopeID = Record[2], IAID = Record[3];
Michael Ilseman407a6162012-11-15 22:34:00 +00002234
Chris Lattnera6245242010-04-03 02:17:50 +00002235 MDNode *Scope = 0, *IA = 0;
2236 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1));
2237 if (IAID) IA = cast<MDNode>(MDValueList.getValueFwdRef(IAID-1));
2238 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
2239 I->setDebugLoc(LastLoc);
2240 I = 0;
2241 continue;
2242 }
2243
Chris Lattnerabfbf852007-05-06 00:21:25 +00002244 case bitc::FUNC_CODE_INST_BINOP: { // BINOP: [opval, ty, opval, opcode]
2245 unsigned OpNum = 0;
2246 Value *LHS, *RHS;
2247 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002248 popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS) ||
Dan Gohman1224c382009-07-20 21:19:07 +00002249 OpNum+1 > Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00002250 return Error("Invalid BINOP record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002251
Dan Gohman1224c382009-07-20 21:19:07 +00002252 int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
Chris Lattnerabfbf852007-05-06 00:21:25 +00002253 if (Opc == -1) return Error("Invalid BINOP record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002254 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
Devang Patele8e02132009-09-18 19:26:43 +00002255 InstructionList.push_back(I);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002256 if (OpNum < Record.size()) {
2257 if (Opc == Instruction::Add ||
2258 Opc == Instruction::Sub ||
Chris Lattnerf067d582011-02-07 16:40:21 +00002259 Opc == Instruction::Mul ||
2260 Opc == Instruction::Shl) {
Dan Gohman26793ed2010-01-25 21:55:39 +00002261 if (Record[OpNum] & (1 << bitc::OBO_NO_SIGNED_WRAP))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002262 cast<BinaryOperator>(I)->setHasNoSignedWrap(true);
Dan Gohman26793ed2010-01-25 21:55:39 +00002263 if (Record[OpNum] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002264 cast<BinaryOperator>(I)->setHasNoUnsignedWrap(true);
Chris Lattner35bda892011-02-06 21:44:57 +00002265 } else if (Opc == Instruction::SDiv ||
Chris Lattnerf067d582011-02-07 16:40:21 +00002266 Opc == Instruction::UDiv ||
2267 Opc == Instruction::LShr ||
2268 Opc == Instruction::AShr) {
Chris Lattner35bda892011-02-06 21:44:57 +00002269 if (Record[OpNum] & (1 << bitc::PEO_EXACT))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002270 cast<BinaryOperator>(I)->setIsExact(true);
Michael Ilseman495d10a2012-11-27 00:43:38 +00002271 } else if (isa<FPMathOperator>(I)) {
2272 FastMathFlags FMF;
Michael Ilseman1638b832012-12-09 21:12:04 +00002273 if (0 != (Record[OpNum] & FastMathFlags::UnsafeAlgebra))
2274 FMF.setUnsafeAlgebra();
2275 if (0 != (Record[OpNum] & FastMathFlags::NoNaNs))
2276 FMF.setNoNaNs();
2277 if (0 != (Record[OpNum] & FastMathFlags::NoInfs))
2278 FMF.setNoInfs();
2279 if (0 != (Record[OpNum] & FastMathFlags::NoSignedZeros))
2280 FMF.setNoSignedZeros();
2281 if (0 != (Record[OpNum] & FastMathFlags::AllowReciprocal))
2282 FMF.setAllowReciprocal();
Michael Ilseman495d10a2012-11-27 00:43:38 +00002283 if (FMF.any())
2284 I->setFastMathFlags(FMF);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002285 }
Michael Ilseman495d10a2012-11-27 00:43:38 +00002286
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002287 }
Chris Lattner980e5aa2007-05-01 05:52:21 +00002288 break;
2289 }
Chris Lattnerabfbf852007-05-06 00:21:25 +00002290 case bitc::FUNC_CODE_INST_CAST: { // CAST: [opval, opty, destty, castopc]
2291 unsigned OpNum = 0;
2292 Value *Op;
2293 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2294 OpNum+2 != Record.size())
2295 return Error("Invalid CAST record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002296
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002297 Type *ResTy = getTypeByID(Record[OpNum]);
Chris Lattnerabfbf852007-05-06 00:21:25 +00002298 int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
2299 if (Opc == -1 || ResTy == 0)
Chris Lattner231cbcb2007-05-02 04:27:25 +00002300 return Error("Invalid CAST record");
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002301 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
Devang Patele8e02132009-09-18 19:26:43 +00002302 InstructionList.push_back(I);
Chris Lattner231cbcb2007-05-02 04:27:25 +00002303 break;
2304 }
Dan Gohmandd8004d2009-07-27 21:53:46 +00002305 case bitc::FUNC_CODE_INST_INBOUNDS_GEP:
Chris Lattner15e6d172007-05-04 19:11:41 +00002306 case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
Chris Lattner7337ab92007-05-06 00:00:00 +00002307 unsigned OpNum = 0;
2308 Value *BasePtr;
2309 if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002310 return Error("Invalid GEP record");
2311
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002312 SmallVector<Value*, 16> GEPIdx;
Chris Lattner7337ab92007-05-06 00:00:00 +00002313 while (OpNum != Record.size()) {
2314 Value *Op;
2315 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002316 return Error("Invalid GEP record");
Chris Lattner7337ab92007-05-06 00:00:00 +00002317 GEPIdx.push_back(Op);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002318 }
2319
Jay Foada9203102011-07-25 09:48:08 +00002320 I = GetElementPtrInst::Create(BasePtr, GEPIdx);
Devang Patele8e02132009-09-18 19:26:43 +00002321 InstructionList.push_back(I);
Dan Gohmandd8004d2009-07-27 21:53:46 +00002322 if (BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002323 cast<GetElementPtrInst>(I)->setIsInBounds(true);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002324 break;
2325 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002326
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002327 case bitc::FUNC_CODE_INST_EXTRACTVAL: {
2328 // EXTRACTVAL: [opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00002329 unsigned OpNum = 0;
2330 Value *Agg;
2331 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
2332 return Error("Invalid EXTRACTVAL record");
2333
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002334 SmallVector<unsigned, 4> EXTRACTVALIdx;
2335 for (unsigned RecSize = Record.size();
2336 OpNum != RecSize; ++OpNum) {
2337 uint64_t Index = Record[OpNum];
2338 if ((unsigned)Index != Index)
2339 return Error("Invalid EXTRACTVAL index");
2340 EXTRACTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00002341 }
2342
Jay Foadfc6d3a42011-07-13 10:26:04 +00002343 I = ExtractValueInst::Create(Agg, EXTRACTVALIdx);
Devang Patele8e02132009-09-18 19:26:43 +00002344 InstructionList.push_back(I);
Dan Gohmane4977cf2008-05-23 01:55:30 +00002345 break;
2346 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002347
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002348 case bitc::FUNC_CODE_INST_INSERTVAL: {
2349 // INSERTVAL: [opty, opval, opty, opval, n x indices]
Dan Gohmane4977cf2008-05-23 01:55:30 +00002350 unsigned OpNum = 0;
2351 Value *Agg;
2352 if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
2353 return Error("Invalid INSERTVAL record");
2354 Value *Val;
2355 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
2356 return Error("Invalid INSERTVAL record");
2357
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002358 SmallVector<unsigned, 4> INSERTVALIdx;
2359 for (unsigned RecSize = Record.size();
2360 OpNum != RecSize; ++OpNum) {
2361 uint64_t Index = Record[OpNum];
2362 if ((unsigned)Index != Index)
2363 return Error("Invalid INSERTVAL index");
2364 INSERTVALIdx.push_back((unsigned)Index);
Dan Gohmane4977cf2008-05-23 01:55:30 +00002365 }
2366
Jay Foadfc6d3a42011-07-13 10:26:04 +00002367 I = InsertValueInst::Create(Agg, Val, INSERTVALIdx);
Devang Patele8e02132009-09-18 19:26:43 +00002368 InstructionList.push_back(I);
Dan Gohmane4977cf2008-05-23 01:55:30 +00002369 break;
2370 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002371
Chris Lattnerabfbf852007-05-06 00:21:25 +00002372 case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00002373 // obsolete form of select
2374 // handles select i1 ... in old bitcode
Chris Lattnerabfbf852007-05-06 00:21:25 +00002375 unsigned OpNum = 0;
2376 Value *TrueVal, *FalseVal, *Cond;
2377 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002378 popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
2379 popValue(Record, OpNum, NextValueNo, Type::getInt1Ty(Context), Cond))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002380 return Error("Invalid SELECT record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002381
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00002382 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Devang Patele8e02132009-09-18 19:26:43 +00002383 InstructionList.push_back(I);
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00002384 break;
2385 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002386
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00002387 case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
2388 // new form of select
2389 // handles select i1 or select [N x i1]
2390 unsigned OpNum = 0;
2391 Value *TrueVal, *FalseVal, *Cond;
2392 if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002393 popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
Dan Gohmanfb2bbbe2008-09-16 01:01:33 +00002394 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2395 return Error("Invalid SELECT record");
Dan Gohmanf72fb672008-09-09 01:02:47 +00002396
2397 // select condition can be either i1 or [N x i1]
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002398 if (VectorType* vector_type =
2399 dyn_cast<VectorType>(Cond->getType())) {
Dan Gohmanf72fb672008-09-09 01:02:47 +00002400 // expect <n x i1>
Daniel Dunbara279bc32009-09-20 02:20:51 +00002401 if (vector_type->getElementType() != Type::getInt1Ty(Context))
Dan Gohmanf72fb672008-09-09 01:02:47 +00002402 return Error("Invalid SELECT condition type");
2403 } else {
2404 // expect i1
Daniel Dunbara279bc32009-09-20 02:20:51 +00002405 if (Cond->getType() != Type::getInt1Ty(Context))
Dan Gohmanf72fb672008-09-09 01:02:47 +00002406 return Error("Invalid SELECT condition type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002407 }
2408
Gabor Greif051a9502008-04-06 20:25:17 +00002409 I = SelectInst::Create(Cond, TrueVal, FalseVal);
Devang Patele8e02132009-09-18 19:26:43 +00002410 InstructionList.push_back(I);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002411 break;
2412 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002413
Chris Lattner01ff65f2007-05-02 05:16:49 +00002414 case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00002415 unsigned OpNum = 0;
2416 Value *Vec, *Idx;
2417 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002418 popValue(Record, OpNum, NextValueNo, Type::getInt32Ty(Context), Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002419 return Error("Invalid EXTRACTELT record");
Eric Christophera3500da2009-07-25 02:28:41 +00002420 I = ExtractElementInst::Create(Vec, Idx);
Devang Patele8e02132009-09-18 19:26:43 +00002421 InstructionList.push_back(I);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002422 break;
2423 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002424
Chris Lattner01ff65f2007-05-02 05:16:49 +00002425 case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
Chris Lattnerabfbf852007-05-06 00:21:25 +00002426 unsigned OpNum = 0;
2427 Value *Vec, *Elt, *Idx;
2428 if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002429 popValue(Record, OpNum, NextValueNo,
Chris Lattnerabfbf852007-05-06 00:21:25 +00002430 cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002431 popValue(Record, OpNum, NextValueNo, Type::getInt32Ty(Context), Idx))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002432 return Error("Invalid INSERTELT record");
Gabor Greif051a9502008-04-06 20:25:17 +00002433 I = InsertElementInst::Create(Vec, Elt, Idx);
Devang Patele8e02132009-09-18 19:26:43 +00002434 InstructionList.push_back(I);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002435 break;
2436 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002437
Chris Lattnerabfbf852007-05-06 00:21:25 +00002438 case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
2439 unsigned OpNum = 0;
2440 Value *Vec1, *Vec2, *Mask;
2441 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002442 popValue(Record, OpNum, NextValueNo, Vec1->getType(), Vec2))
Chris Lattnerabfbf852007-05-06 00:21:25 +00002443 return Error("Invalid SHUFFLEVEC record");
2444
Mon P Wangaeb06d22008-11-10 04:46:22 +00002445 if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
Chris Lattner01ff65f2007-05-02 05:16:49 +00002446 return Error("Invalid SHUFFLEVEC record");
2447 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
Devang Patele8e02132009-09-18 19:26:43 +00002448 InstructionList.push_back(I);
Chris Lattner01ff65f2007-05-02 05:16:49 +00002449 break;
2450 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002451
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002452 case bitc::FUNC_CODE_INST_CMP: // CMP: [opty, opval, opval, pred]
2453 // Old form of ICmp/FCmp returning bool
2454 // Existed to differentiate between icmp/fcmp and vicmp/vfcmp which were
2455 // both legal on vectors but had different behaviour.
2456 case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
2457 // FCmp/ICmp returning bool or vector of bool
2458
Chris Lattner7337ab92007-05-06 00:00:00 +00002459 unsigned OpNum = 0;
2460 Value *LHS, *RHS;
2461 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002462 popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS) ||
Chris Lattner7337ab92007-05-06 00:00:00 +00002463 OpNum+1 != Record.size())
Chris Lattner01ff65f2007-05-02 05:16:49 +00002464 return Error("Invalid CMP record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002465
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002466 if (LHS->getType()->isFPOrFPVectorTy())
Dan Gohman1c8a23c2009-08-25 23:17:54 +00002467 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002468 else
Dan Gohman1c8a23c2009-08-25 23:17:54 +00002469 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
Devang Patele8e02132009-09-18 19:26:43 +00002470 InstructionList.push_back(I);
Dan Gohmanf72fb672008-09-09 01:02:47 +00002471 break;
2472 }
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002473
Chris Lattner231cbcb2007-05-02 04:27:25 +00002474 case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
Devang Pateld9d99ff2008-02-26 01:29:32 +00002475 {
2476 unsigned Size = Record.size();
2477 if (Size == 0) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002478 I = ReturnInst::Create(Context);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002479 InstructionList.push_back(I);
Devang Pateld9d99ff2008-02-26 01:29:32 +00002480 break;
Dan Gohmanfc74abf2008-07-23 00:34:11 +00002481 }
Devang Pateld9d99ff2008-02-26 01:29:32 +00002482
Dan Gohmanfc74abf2008-07-23 00:34:11 +00002483 unsigned OpNum = 0;
Chris Lattner96a74c52011-06-17 18:09:11 +00002484 Value *Op = NULL;
2485 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2486 return Error("Invalid RET record");
2487 if (OpNum != Record.size())
2488 return Error("Invalid RET record");
Dan Gohmanfc74abf2008-07-23 00:34:11 +00002489
Chris Lattner96a74c52011-06-17 18:09:11 +00002490 I = ReturnInst::Create(Context, Op);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002491 InstructionList.push_back(I);
Dan Gohmanfc74abf2008-07-23 00:34:11 +00002492 break;
Chris Lattner231cbcb2007-05-02 04:27:25 +00002493 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002494 case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
Chris Lattnerf61e6452007-05-03 22:09:51 +00002495 if (Record.size() != 1 && Record.size() != 3)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002496 return Error("Invalid BR record");
2497 BasicBlock *TrueDest = getBasicBlock(Record[0]);
2498 if (TrueDest == 0)
2499 return Error("Invalid BR record");
2500
Devang Patele8e02132009-09-18 19:26:43 +00002501 if (Record.size() == 1) {
Gabor Greif051a9502008-04-06 20:25:17 +00002502 I = BranchInst::Create(TrueDest);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002503 InstructionList.push_back(I);
Devang Patele8e02132009-09-18 19:26:43 +00002504 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002505 else {
2506 BasicBlock *FalseDest = getBasicBlock(Record[1]);
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002507 Value *Cond = getValue(Record, 2, NextValueNo,
2508 Type::getInt1Ty(Context));
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002509 if (FalseDest == 0 || Cond == 0)
2510 return Error("Invalid BR record");
Gabor Greif051a9502008-04-06 20:25:17 +00002511 I = BranchInst::Create(TrueDest, FalseDest, Cond);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002512 InstructionList.push_back(I);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002513 }
2514 break;
2515 }
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002516 case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, op0, op1, ...]
Michael Ilseman407a6162012-11-15 22:34:00 +00002517 // Check magic
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002518 if ((Record[0] >> 16) == SWITCH_INST_MAGIC) {
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002519 // "New" SwitchInst format with case ranges. The changes to write this
2520 // format were reverted but we still recognize bitcode that uses it.
2521 // Hopefully someday we will have support for case ranges and can use
2522 // this format again.
Michael Ilseman407a6162012-11-15 22:34:00 +00002523
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002524 Type *OpTy = getTypeByID(Record[1]);
2525 unsigned ValueBitWidth = cast<IntegerType>(OpTy)->getBitWidth();
2526
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002527 Value *Cond = getValue(Record, 2, NextValueNo, OpTy);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002528 BasicBlock *Default = getBasicBlock(Record[3]);
2529 if (OpTy == 0 || Cond == 0 || Default == 0)
2530 return Error("Invalid SWITCH record");
2531
2532 unsigned NumCases = Record[4];
Michael Ilseman407a6162012-11-15 22:34:00 +00002533
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002534 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
2535 InstructionList.push_back(SI);
Michael Ilseman407a6162012-11-15 22:34:00 +00002536
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002537 unsigned CurIdx = 5;
2538 for (unsigned i = 0; i != NumCases; ++i) {
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002539 SmallVector<ConstantInt*, 1> CaseVals;
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002540 unsigned NumItems = Record[CurIdx++];
2541 for (unsigned ci = 0; ci != NumItems; ++ci) {
2542 bool isSingleNumber = Record[CurIdx++];
Michael Ilseman407a6162012-11-15 22:34:00 +00002543
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002544 APInt Low;
2545 unsigned ActiveWords = 1;
2546 if (ValueBitWidth > 64)
2547 ActiveWords = Record[CurIdx++];
Benjamin Kramerf52aea82012-05-28 14:10:31 +00002548 Low = ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
2549 ValueBitWidth);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002550 CurIdx += ActiveWords;
Stepan Dyatkovskiy484fc932012-05-28 12:39:09 +00002551
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002552 if (!isSingleNumber) {
2553 ActiveWords = 1;
2554 if (ValueBitWidth > 64)
2555 ActiveWords = Record[CurIdx++];
2556 APInt High =
Benjamin Kramerf52aea82012-05-28 14:10:31 +00002557 ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
2558 ValueBitWidth);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002559 CurIdx += ActiveWords;
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002560
2561 // FIXME: It is not clear whether values in the range should be
2562 // compared as signed or unsigned values. The partially
2563 // implemented changes that used this format in the past used
2564 // unsigned comparisons.
2565 for ( ; Low.ule(High); ++Low)
2566 CaseVals.push_back(ConstantInt::get(Context, Low));
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002567 } else
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002568 CaseVals.push_back(ConstantInt::get(Context, Low));
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002569 }
2570 BasicBlock *DestBB = getBasicBlock(Record[CurIdx++]);
Bob Wilsondb3a9e62013-09-09 19:14:35 +00002571 for (SmallVector<ConstantInt*, 1>::iterator cvi = CaseVals.begin(),
2572 cve = CaseVals.end(); cvi != cve; ++cvi)
2573 SI->addCase(*cvi, DestBB);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002574 }
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002575 I = SI;
2576 break;
2577 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002578
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00002579 // Old SwitchInst format without case ranges.
Michael Ilseman407a6162012-11-15 22:34:00 +00002580
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002581 if (Record.size() < 3 || (Record.size() & 1) == 0)
2582 return Error("Invalid SWITCH record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002583 Type *OpTy = getTypeByID(Record[0]);
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002584 Value *Cond = getValue(Record, 1, NextValueNo, OpTy);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002585 BasicBlock *Default = getBasicBlock(Record[2]);
2586 if (OpTy == 0 || Cond == 0 || Default == 0)
2587 return Error("Invalid SWITCH record");
2588 unsigned NumCases = (Record.size()-3)/2;
Gabor Greif051a9502008-04-06 20:25:17 +00002589 SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
Devang Patele8e02132009-09-18 19:26:43 +00002590 InstructionList.push_back(SI);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002591 for (unsigned i = 0, e = NumCases; i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002592 ConstantInt *CaseVal =
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002593 dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
2594 BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
2595 if (CaseVal == 0 || DestBB == 0) {
2596 delete SI;
2597 return Error("Invalid SWITCH record!");
2598 }
2599 SI->addCase(CaseVal, DestBB);
2600 }
2601 I = SI;
2602 break;
2603 }
Chris Lattnerab21db72009-10-28 00:19:10 +00002604 case bitc::FUNC_CODE_INST_INDIRECTBR: { // INDIRECTBR: [opty, op0, op1, ...]
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002605 if (Record.size() < 2)
Chris Lattnerab21db72009-10-28 00:19:10 +00002606 return Error("Invalid INDIRECTBR record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002607 Type *OpTy = getTypeByID(Record[0]);
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002608 Value *Address = getValue(Record, 1, NextValueNo, OpTy);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002609 if (OpTy == 0 || Address == 0)
Chris Lattnerab21db72009-10-28 00:19:10 +00002610 return Error("Invalid INDIRECTBR record");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002611 unsigned NumDests = Record.size()-2;
Chris Lattnerab21db72009-10-28 00:19:10 +00002612 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002613 InstructionList.push_back(IBI);
2614 for (unsigned i = 0, e = NumDests; i != e; ++i) {
2615 if (BasicBlock *DestBB = getBasicBlock(Record[2+i])) {
2616 IBI->addDestination(DestBB);
2617 } else {
2618 delete IBI;
Chris Lattnerab21db72009-10-28 00:19:10 +00002619 return Error("Invalid INDIRECTBR record!");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002620 }
2621 }
2622 I = IBI;
2623 break;
2624 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002625
Duncan Sandsdc024672007-11-27 13:23:08 +00002626 case bitc::FUNC_CODE_INST_INVOKE: {
2627 // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
Chris Lattnera9bb7132007-05-08 05:38:01 +00002628 if (Record.size() < 4) return Error("Invalid INVOKE record");
Bill Wendling99faa3b2012-12-07 23:16:57 +00002629 AttributeSet PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00002630 unsigned CCInfo = Record[1];
2631 BasicBlock *NormalBB = getBasicBlock(Record[2]);
2632 BasicBlock *UnwindBB = getBasicBlock(Record[3]);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002633
Chris Lattnera9bb7132007-05-08 05:38:01 +00002634 unsigned OpNum = 4;
Chris Lattner7337ab92007-05-06 00:00:00 +00002635 Value *Callee;
2636 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002637 return Error("Invalid INVOKE record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002638
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002639 PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
2640 FunctionType *FTy = !CalleeTy ? 0 :
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002641 dyn_cast<FunctionType>(CalleeTy->getElementType());
2642
2643 // Check that the right number of fixed parameters are here.
Chris Lattner7337ab92007-05-06 00:00:00 +00002644 if (FTy == 0 || NormalBB == 0 || UnwindBB == 0 ||
2645 Record.size() < OpNum+FTy->getNumParams())
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002646 return Error("Invalid INVOKE record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002647
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002648 SmallVector<Value*, 16> Ops;
Chris Lattner7337ab92007-05-06 00:00:00 +00002649 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002650 Ops.push_back(getValue(Record, OpNum, NextValueNo,
2651 FTy->getParamType(i)));
Chris Lattner7337ab92007-05-06 00:00:00 +00002652 if (Ops.back() == 0) return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002654
Chris Lattner7337ab92007-05-06 00:00:00 +00002655 if (!FTy->isVarArg()) {
2656 if (Record.size() != OpNum)
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002657 return Error("Invalid INVOKE record");
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002658 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00002659 // Read type/value pairs for varargs params.
2660 while (OpNum != Record.size()) {
2661 Value *Op;
2662 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2663 return Error("Invalid INVOKE record");
2664 Ops.push_back(Op);
2665 }
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002666 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002667
Jay Foada3efbb12011-07-15 08:37:34 +00002668 I = InvokeInst::Create(Callee, NormalBB, UnwindBB, Ops);
Devang Patele8e02132009-09-18 19:26:43 +00002669 InstructionList.push_back(I);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002670 cast<InvokeInst>(I)->setCallingConv(
2671 static_cast<CallingConv::ID>(CCInfo));
Devang Patel05988662008-09-25 21:00:45 +00002672 cast<InvokeInst>(I)->setAttributes(PAL);
Chris Lattnerf4c8e522007-05-02 05:46:45 +00002673 break;
2674 }
Bill Wendlingdccc03b2011-07-31 06:30:59 +00002675 case bitc::FUNC_CODE_INST_RESUME: { // RESUME: [opval]
2676 unsigned Idx = 0;
2677 Value *Val = 0;
2678 if (getValueTypePair(Record, Idx, NextValueNo, Val))
2679 return Error("Invalid RESUME record");
2680 I = ResumeInst::Create(Val);
Bill Wendling35726bf2011-09-01 00:50:20 +00002681 InstructionList.push_back(I);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00002682 break;
2683 }
Chris Lattner231cbcb2007-05-02 04:27:25 +00002684 case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
Owen Anderson1d0be152009-08-13 21:58:54 +00002685 I = new UnreachableInst(Context);
Devang Patele8e02132009-09-18 19:26:43 +00002686 InstructionList.push_back(I);
Chris Lattner231cbcb2007-05-02 04:27:25 +00002687 break;
Chris Lattnerabfbf852007-05-06 00:21:25 +00002688 case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
Chris Lattner15e6d172007-05-04 19:11:41 +00002689 if (Record.size() < 1 || ((Record.size()-1)&1))
Chris Lattner2a98cca2007-05-03 18:58:09 +00002690 return Error("Invalid PHI record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002691 Type *Ty = getTypeByID(Record[0]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00002692 if (!Ty) return Error("Invalid PHI record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002693
Jay Foad3ecfc862011-03-30 11:28:46 +00002694 PHINode *PN = PHINode::Create(Ty, (Record.size()-1)/2);
Devang Patele8e02132009-09-18 19:26:43 +00002695 InstructionList.push_back(PN);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002696
Chris Lattner15e6d172007-05-04 19:11:41 +00002697 for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002698 Value *V;
2699 // With the new function encoding, it is possible that operands have
2700 // negative IDs (for forward references). Use a signed VBR
2701 // representation to keep the encoding small.
2702 if (UseRelativeIDs)
2703 V = getValueSigned(Record, 1+i, NextValueNo, Ty);
2704 else
2705 V = getValue(Record, 1+i, NextValueNo, Ty);
Chris Lattner15e6d172007-05-04 19:11:41 +00002706 BasicBlock *BB = getBasicBlock(Record[2+i]);
Chris Lattner2a98cca2007-05-03 18:58:09 +00002707 if (!V || !BB) return Error("Invalid PHI record");
2708 PN->addIncoming(V, BB);
2709 }
2710 I = PN;
2711 break;
2712 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002713
Bill Wendlinge6e88262011-08-12 20:24:12 +00002714 case bitc::FUNC_CODE_INST_LANDINGPAD: {
2715 // LANDINGPAD: [ty, val, val, num, (id0,val0 ...)?]
2716 unsigned Idx = 0;
2717 if (Record.size() < 4)
2718 return Error("Invalid LANDINGPAD record");
2719 Type *Ty = getTypeByID(Record[Idx++]);
2720 if (!Ty) return Error("Invalid LANDINGPAD record");
2721 Value *PersFn = 0;
2722 if (getValueTypePair(Record, Idx, NextValueNo, PersFn))
2723 return Error("Invalid LANDINGPAD record");
2724
2725 bool IsCleanup = !!Record[Idx++];
2726 unsigned NumClauses = Record[Idx++];
2727 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, NumClauses);
2728 LP->setCleanup(IsCleanup);
2729 for (unsigned J = 0; J != NumClauses; ++J) {
2730 LandingPadInst::ClauseType CT =
2731 LandingPadInst::ClauseType(Record[Idx++]); (void)CT;
2732 Value *Val;
2733
2734 if (getValueTypePair(Record, Idx, NextValueNo, Val)) {
2735 delete LP;
2736 return Error("Invalid LANDINGPAD record");
2737 }
2738
2739 assert((CT != LandingPadInst::Catch ||
2740 !isa<ArrayType>(Val->getType())) &&
2741 "Catch clause has a invalid type!");
2742 assert((CT != LandingPadInst::Filter ||
2743 isa<ArrayType>(Val->getType())) &&
2744 "Filter clause has invalid type!");
2745 LP->addClause(Val);
2746 }
2747
2748 I = LP;
Bill Wendling35726bf2011-09-01 00:50:20 +00002749 InstructionList.push_back(I);
Bill Wendlinge6e88262011-08-12 20:24:12 +00002750 break;
2751 }
2752
Chris Lattner96a74c52011-06-17 18:09:11 +00002753 case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, opty, op, align]
2754 if (Record.size() != 4)
2755 return Error("Invalid ALLOCA record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002756 PointerType *Ty =
Chris Lattner2a98cca2007-05-03 18:58:09 +00002757 dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002758 Type *OpTy = getTypeByID(Record[1]);
Chris Lattner96a74c52011-06-17 18:09:11 +00002759 Value *Size = getFnValueByID(Record[2], OpTy);
2760 unsigned Align = Record[3];
Chris Lattner2a98cca2007-05-03 18:58:09 +00002761 if (!Ty || !Size) return Error("Invalid ALLOCA record");
Owen Anderson50dead02009-07-15 23:53:25 +00002762 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
Devang Patele8e02132009-09-18 19:26:43 +00002763 InstructionList.push_back(I);
Chris Lattner2a98cca2007-05-03 18:58:09 +00002764 break;
2765 }
Chris Lattner0579f7f2007-05-03 22:04:19 +00002766 case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
Chris Lattner7337ab92007-05-06 00:00:00 +00002767 unsigned OpNum = 0;
2768 Value *Op;
2769 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2770 OpNum+2 != Record.size())
Chris Lattnerabfbf852007-05-06 00:21:25 +00002771 return Error("Invalid LOAD record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002772
Chris Lattner7337ab92007-05-06 00:00:00 +00002773 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Devang Patele8e02132009-09-18 19:26:43 +00002774 InstructionList.push_back(I);
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002775 break;
Chris Lattner0579f7f2007-05-03 22:04:19 +00002776 }
Eli Friedman21006d42011-08-09 23:02:53 +00002777 case bitc::FUNC_CODE_INST_LOADATOMIC: {
2778 // LOADATOMIC: [opty, op, align, vol, ordering, synchscope]
2779 unsigned OpNum = 0;
2780 Value *Op;
2781 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2782 OpNum+4 != Record.size())
2783 return Error("Invalid LOADATOMIC record");
Michael Ilseman407a6162012-11-15 22:34:00 +00002784
Eli Friedman21006d42011-08-09 23:02:53 +00002785
2786 AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
2787 if (Ordering == NotAtomic || Ordering == Release ||
2788 Ordering == AcquireRelease)
2789 return Error("Invalid LOADATOMIC record");
2790 if (Ordering != NotAtomic && Record[OpNum] == 0)
2791 return Error("Invalid LOADATOMIC record");
2792 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
2793
2794 I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1,
2795 Ordering, SynchScope);
2796 InstructionList.push_back(I);
2797 break;
2798 }
Chris Lattner4f6bab92011-06-17 18:17:37 +00002799 case bitc::FUNC_CODE_INST_STORE: { // STORE2:[ptrty, ptr, val, align, vol]
Christopher Lambfe63fb92007-12-11 08:59:05 +00002800 unsigned OpNum = 0;
2801 Value *Val, *Ptr;
2802 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002803 popValue(Record, OpNum, NextValueNo,
Christopher Lambfe63fb92007-12-11 08:59:05 +00002804 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2805 OpNum+2 != Record.size())
2806 return Error("Invalid STORE record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002807
Christopher Lambfe63fb92007-12-11 08:59:05 +00002808 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
Devang Patele8e02132009-09-18 19:26:43 +00002809 InstructionList.push_back(I);
Christopher Lambfe63fb92007-12-11 08:59:05 +00002810 break;
2811 }
Eli Friedman21006d42011-08-09 23:02:53 +00002812 case bitc::FUNC_CODE_INST_STOREATOMIC: {
2813 // STOREATOMIC: [ptrty, ptr, val, align, vol, ordering, synchscope]
2814 unsigned OpNum = 0;
2815 Value *Val, *Ptr;
2816 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002817 popValue(Record, OpNum, NextValueNo,
Eli Friedman21006d42011-08-09 23:02:53 +00002818 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2819 OpNum+4 != Record.size())
2820 return Error("Invalid STOREATOMIC record");
2821
2822 AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
Eli Friedmanc3d35982011-09-19 19:41:28 +00002823 if (Ordering == NotAtomic || Ordering == Acquire ||
Eli Friedman21006d42011-08-09 23:02:53 +00002824 Ordering == AcquireRelease)
2825 return Error("Invalid STOREATOMIC record");
2826 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
2827 if (Ordering != NotAtomic && Record[OpNum] == 0)
2828 return Error("Invalid STOREATOMIC record");
2829
2830 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1,
2831 Ordering, SynchScope);
2832 InstructionList.push_back(I);
2833 break;
2834 }
Eli Friedmanff030482011-07-28 21:48:00 +00002835 case bitc::FUNC_CODE_INST_CMPXCHG: {
2836 // CMPXCHG:[ptrty, ptr, cmp, new, vol, ordering, synchscope]
2837 unsigned OpNum = 0;
2838 Value *Ptr, *Cmp, *New;
2839 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002840 popValue(Record, OpNum, NextValueNo,
Eli Friedmanff030482011-07-28 21:48:00 +00002841 cast<PointerType>(Ptr->getType())->getElementType(), Cmp) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002842 popValue(Record, OpNum, NextValueNo,
Eli Friedmanff030482011-07-28 21:48:00 +00002843 cast<PointerType>(Ptr->getType())->getElementType(), New) ||
2844 OpNum+3 != Record.size())
2845 return Error("Invalid CMPXCHG record");
2846 AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+1]);
Eli Friedman21006d42011-08-09 23:02:53 +00002847 if (Ordering == NotAtomic || Ordering == Unordered)
Eli Friedmanff030482011-07-28 21:48:00 +00002848 return Error("Invalid CMPXCHG record");
2849 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+2]);
2850 I = new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, SynchScope);
2851 cast<AtomicCmpXchgInst>(I)->setVolatile(Record[OpNum]);
2852 InstructionList.push_back(I);
2853 break;
2854 }
2855 case bitc::FUNC_CODE_INST_ATOMICRMW: {
2856 // ATOMICRMW:[ptrty, ptr, val, op, vol, ordering, synchscope]
2857 unsigned OpNum = 0;
2858 Value *Ptr, *Val;
2859 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002860 popValue(Record, OpNum, NextValueNo,
Eli Friedmanff030482011-07-28 21:48:00 +00002861 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2862 OpNum+4 != Record.size())
2863 return Error("Invalid ATOMICRMW record");
2864 AtomicRMWInst::BinOp Operation = GetDecodedRMWOperation(Record[OpNum]);
2865 if (Operation < AtomicRMWInst::FIRST_BINOP ||
2866 Operation > AtomicRMWInst::LAST_BINOP)
2867 return Error("Invalid ATOMICRMW record");
2868 AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
Eli Friedman21006d42011-08-09 23:02:53 +00002869 if (Ordering == NotAtomic || Ordering == Unordered)
Eli Friedmanff030482011-07-28 21:48:00 +00002870 return Error("Invalid ATOMICRMW record");
2871 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
2872 I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);
2873 cast<AtomicRMWInst>(I)->setVolatile(Record[OpNum+1]);
2874 InstructionList.push_back(I);
2875 break;
2876 }
Eli Friedman47f35132011-07-25 23:16:38 +00002877 case bitc::FUNC_CODE_INST_FENCE: { // FENCE:[ordering, synchscope]
2878 if (2 != Record.size())
2879 return Error("Invalid FENCE record");
2880 AtomicOrdering Ordering = GetDecodedOrdering(Record[0]);
2881 if (Ordering == NotAtomic || Ordering == Unordered ||
2882 Ordering == Monotonic)
2883 return Error("Invalid FENCE record");
2884 SynchronizationScope SynchScope = GetDecodedSynchScope(Record[1]);
2885 I = new FenceInst(Context, Ordering, SynchScope);
2886 InstructionList.push_back(I);
2887 break;
2888 }
Chris Lattner4f6bab92011-06-17 18:17:37 +00002889 case bitc::FUNC_CODE_INST_CALL: {
Duncan Sandsdc024672007-11-27 13:23:08 +00002890 // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
2891 if (Record.size() < 3)
Chris Lattner0579f7f2007-05-03 22:04:19 +00002892 return Error("Invalid CALL record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002893
Bill Wendling99faa3b2012-12-07 23:16:57 +00002894 AttributeSet PAL = getAttributes(Record[0]);
Chris Lattnera9bb7132007-05-08 05:38:01 +00002895 unsigned CCInfo = Record[1];
Daniel Dunbara279bc32009-09-20 02:20:51 +00002896
Chris Lattnera9bb7132007-05-08 05:38:01 +00002897 unsigned OpNum = 2;
Chris Lattner7337ab92007-05-06 00:00:00 +00002898 Value *Callee;
2899 if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
2900 return Error("Invalid CALL record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002901
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002902 PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
2903 FunctionType *FTy = 0;
Chris Lattner0579f7f2007-05-03 22:04:19 +00002904 if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
Chris Lattner7337ab92007-05-06 00:00:00 +00002905 if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
Chris Lattner0579f7f2007-05-03 22:04:19 +00002906 return Error("Invalid CALL record");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002907
Chris Lattner0579f7f2007-05-03 22:04:19 +00002908 SmallVector<Value*, 16> Args;
2909 // Read the fixed params.
Chris Lattner7337ab92007-05-06 00:00:00 +00002910 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002911 if (FTy->getParamType(i)->isLabelTy())
Dale Johanneseneb57ea72007-11-05 21:20:28 +00002912 Args.push_back(getBasicBlock(Record[OpNum]));
Dan Gohman9b10dfb2010-09-13 18:00:48 +00002913 else
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002914 Args.push_back(getValue(Record, OpNum, NextValueNo,
2915 FTy->getParamType(i)));
Chris Lattner0579f7f2007-05-03 22:04:19 +00002916 if (Args.back() == 0) return Error("Invalid CALL record");
2917 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002918
Chris Lattner0579f7f2007-05-03 22:04:19 +00002919 // Read type/value pairs for varargs params.
Chris Lattner0579f7f2007-05-03 22:04:19 +00002920 if (!FTy->isVarArg()) {
Chris Lattner7337ab92007-05-06 00:00:00 +00002921 if (OpNum != Record.size())
Chris Lattner0579f7f2007-05-03 22:04:19 +00002922 return Error("Invalid CALL record");
2923 } else {
Chris Lattner7337ab92007-05-06 00:00:00 +00002924 while (OpNum != Record.size()) {
2925 Value *Op;
2926 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2927 return Error("Invalid CALL record");
2928 Args.push_back(Op);
Chris Lattner0579f7f2007-05-03 22:04:19 +00002929 }
2930 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002931
Jay Foada3efbb12011-07-15 08:37:34 +00002932 I = CallInst::Create(Callee, Args);
Devang Patele8e02132009-09-18 19:26:43 +00002933 InstructionList.push_back(I);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002934 cast<CallInst>(I)->setCallingConv(
2935 static_cast<CallingConv::ID>(CCInfo>>1));
Chris Lattner76520192007-05-03 22:34:03 +00002936 cast<CallInst>(I)->setTailCall(CCInfo & 1);
Devang Patel05988662008-09-25 21:00:45 +00002937 cast<CallInst>(I)->setAttributes(PAL);
Chris Lattner0579f7f2007-05-03 22:04:19 +00002938 break;
2939 }
2940 case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
2941 if (Record.size() < 3)
2942 return Error("Invalid VAARG record");
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002943 Type *OpTy = getTypeByID(Record[0]);
Jan Wen Voungd9a3bad2012-10-11 20:20:40 +00002944 Value *Op = getValue(Record, 1, NextValueNo, OpTy);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002945 Type *ResTy = getTypeByID(Record[2]);
Chris Lattner0579f7f2007-05-03 22:04:19 +00002946 if (!OpTy || !Op || !ResTy)
2947 return Error("Invalid VAARG record");
2948 I = new VAArgInst(Op, ResTy);
Devang Patele8e02132009-09-18 19:26:43 +00002949 InstructionList.push_back(I);
Chris Lattner0579f7f2007-05-03 22:04:19 +00002950 break;
2951 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002952 }
2953
2954 // Add instruction to end of current BB. If there is no current BB, reject
2955 // this file.
2956 if (CurBB == 0) {
2957 delete I;
2958 return Error("Invalid instruction with no BB");
2959 }
2960 CurBB->getInstList().push_back(I);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002961
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002962 // If this was a terminator instruction, move to the next block.
2963 if (isa<TerminatorInst>(I)) {
2964 ++CurBBNo;
2965 CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : 0;
2966 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002967
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002968 // Non-void values get registered in the value table for future use.
Benjamin Kramerf0127052010-01-05 13:12:22 +00002969 if (I && !I->getType()->isVoidTy())
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002970 ValueList.AssignValue(I, NextValueNo++);
Chris Lattner980e5aa2007-05-01 05:52:21 +00002971 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002972
Chris Lattner5a4251c2013-01-20 02:13:19 +00002973OutOfRecordLoop:
Joe Abbeyacb61942013-02-06 22:14:06 +00002974
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002975 // Check the function list for unresolved values.
2976 if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
2977 if (A->getParent() == 0) {
2978 // We found at least one unresolved value. Nuke them all to avoid leaks.
2979 for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
Dan Gohman56e2a572010-08-25 20:20:21 +00002980 if ((A = dyn_cast<Argument>(ValueList[i])) && A->getParent() == 0) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002981 A->replaceAllUsesWith(UndefValue::get(A->getType()));
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002982 delete A;
2983 }
2984 }
Chris Lattner35a04702007-05-04 03:50:29 +00002985 return Error("Never resolved value found in function!");
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002986 }
Chris Lattnera7c49aa2007-05-01 07:01:57 +00002987 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002988
Dan Gohman064ff3e2010-08-25 20:23:38 +00002989 // FIXME: Check for unresolved forward-declared metadata references
2990 // and clean up leaks.
2991
Chris Lattner50b136d2009-10-28 05:53:48 +00002992 // See if anything took the address of blocks in this function. If so,
2993 // resolve them now.
Chris Lattner50b136d2009-10-28 05:53:48 +00002994 DenseMap<Function*, std::vector<BlockAddrRefTy> >::iterator BAFRI =
2995 BlockAddrFwdRefs.find(F);
2996 if (BAFRI != BlockAddrFwdRefs.end()) {
2997 std::vector<BlockAddrRefTy> &RefList = BAFRI->second;
2998 for (unsigned i = 0, e = RefList.size(); i != e; ++i) {
2999 unsigned BlockIdx = RefList[i].first;
Chris Lattnercdfc9402009-11-01 01:27:45 +00003000 if (BlockIdx >= FunctionBBs.size())
Chris Lattner50b136d2009-10-28 05:53:48 +00003001 return Error("Invalid blockaddress block #");
Michael Ilseman407a6162012-11-15 22:34:00 +00003002
Chris Lattner50b136d2009-10-28 05:53:48 +00003003 GlobalVariable *FwdRef = RefList[i].second;
Chris Lattnercdfc9402009-11-01 01:27:45 +00003004 FwdRef->replaceAllUsesWith(BlockAddress::get(F, FunctionBBs[BlockIdx]));
Chris Lattner50b136d2009-10-28 05:53:48 +00003005 FwdRef->eraseFromParent();
3006 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003007
Chris Lattner50b136d2009-10-28 05:53:48 +00003008 BlockAddrFwdRefs.erase(BAFRI);
3009 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003010
Chris Lattner980e5aa2007-05-01 05:52:21 +00003011 // Trim the value list down to the size it was before we parsed this function.
3012 ValueList.shrinkTo(ModuleValueListSize);
Dan Gohman69813832010-08-25 20:22:53 +00003013 MDValueList.shrinkTo(ModuleMDValueListSize);
Chris Lattner980e5aa2007-05-01 05:52:21 +00003014 std::vector<BasicBlock*>().swap(FunctionBBs);
Chris Lattner48f84872007-05-01 04:59:48 +00003015 return false;
3016}
3017
Derek Schuff2ea93872012-02-06 22:30:29 +00003018/// FindFunctionInStream - Find the function body in the bitcode stream
3019bool BitcodeReader::FindFunctionInStream(Function *F,
3020 DenseMap<Function*, uint64_t>::iterator DeferredFunctionInfoIterator) {
3021 while (DeferredFunctionInfoIterator->second == 0) {
3022 if (Stream.AtEndOfStream())
3023 return Error("Could not find Function in stream");
3024 // ParseModule will parse the next body in the stream and set its
3025 // position in the DeferredFunctionInfo map.
3026 if (ParseModule(true)) return true;
3027 }
3028 return false;
3029}
3030
Chris Lattnerb348bb82007-05-18 04:02:46 +00003031//===----------------------------------------------------------------------===//
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003032// GVMaterializer implementation
Chris Lattnerb348bb82007-05-18 04:02:46 +00003033//===----------------------------------------------------------------------===//
3034
3035
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003036bool BitcodeReader::isMaterializable(const GlobalValue *GV) const {
3037 if (const Function *F = dyn_cast<Function>(GV)) {
3038 return F->isDeclaration() &&
3039 DeferredFunctionInfo.count(const_cast<Function*>(F));
3040 }
3041 return false;
3042}
Daniel Dunbara279bc32009-09-20 02:20:51 +00003043
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003044bool BitcodeReader::Materialize(GlobalValue *GV, std::string *ErrInfo) {
3045 Function *F = dyn_cast<Function>(GV);
3046 // If it's not a function or is already material, ignore the request.
3047 if (!F || !F->isMaterializable()) return false;
3048
3049 DenseMap<Function*, uint64_t>::iterator DFII = DeferredFunctionInfo.find(F);
Chris Lattnerb348bb82007-05-18 04:02:46 +00003050 assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
Derek Schuff2ea93872012-02-06 22:30:29 +00003051 // If its position is recorded as 0, its body is somewhere in the stream
3052 // but we haven't seen it yet.
3053 if (DFII->second == 0)
3054 if (LazyStreamer && FindFunctionInStream(F, DFII)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003055
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003056 // Move the bit stream to the saved position of the deferred function body.
3057 Stream.JumpToBit(DFII->second);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003058
Chris Lattnerb348bb82007-05-18 04:02:46 +00003059 if (ParseFunctionBody(F)) {
3060 if (ErrInfo) *ErrInfo = ErrorString;
3061 return true;
3062 }
Chandler Carruth69940402007-08-04 01:51:18 +00003063
3064 // Upgrade any old intrinsic calls in the function.
3065 for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
3066 E = UpgradedIntrinsics.end(); I != E; ++I) {
3067 if (I->first != I->second) {
3068 for (Value::use_iterator UI = I->first->use_begin(),
3069 UE = I->first->use_end(); UI != UE; ) {
3070 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3071 UpgradeIntrinsicCall(CI, I->second);
3072 }
3073 }
3074 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003075
Chris Lattnerb348bb82007-05-18 04:02:46 +00003076 return false;
3077}
3078
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003079bool BitcodeReader::isDematerializable(const GlobalValue *GV) const {
3080 const Function *F = dyn_cast<Function>(GV);
3081 if (!F || F->isDeclaration())
3082 return false;
3083 return DeferredFunctionInfo.count(const_cast<Function*>(F));
3084}
3085
3086void BitcodeReader::Dematerialize(GlobalValue *GV) {
3087 Function *F = dyn_cast<Function>(GV);
3088 // If this function isn't dematerializable, this is a noop.
3089 if (!F || !isDematerializable(F))
Chris Lattnerb348bb82007-05-18 04:02:46 +00003090 return;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091
Chris Lattnerb348bb82007-05-18 04:02:46 +00003092 assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003093
Chris Lattnerb348bb82007-05-18 04:02:46 +00003094 // Just forget the function body, we can remat it later.
3095 F->deleteBody();
Chris Lattnerb348bb82007-05-18 04:02:46 +00003096}
3097
3098
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003099bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) {
3100 assert(M == TheModule &&
3101 "Can only Materialize the Module this BitcodeReader is attached to.");
Chris Lattner714fa952009-06-16 05:15:21 +00003102 // Iterate over the module, deserializing any functions that are still on
3103 // disk.
3104 for (Module::iterator F = TheModule->begin(), E = TheModule->end();
3105 F != E; ++F)
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003106 if (F->isMaterializable() &&
3107 Materialize(F, ErrInfo))
3108 return true;
Chandler Carruth69940402007-08-04 01:51:18 +00003109
Derek Schuff0ffe6982012-02-29 00:07:09 +00003110 // At this point, if there are any function bodies, the current bit is
3111 // pointing to the END_BLOCK record after them. Now make sure the rest
3112 // of the bits in the module have been read.
3113 if (NextUnreadBit)
3114 ParseModule(true);
3115
Daniel Dunbara279bc32009-09-20 02:20:51 +00003116 // Upgrade any intrinsic calls that slipped through (should not happen!) and
3117 // delete the old functions to clean up. We can't do this unless the entire
3118 // module is materialized because there could always be another function body
Chandler Carruth69940402007-08-04 01:51:18 +00003119 // with calls to the old function.
3120 for (std::vector<std::pair<Function*, Function*> >::iterator I =
3121 UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
3122 if (I->first != I->second) {
3123 for (Value::use_iterator UI = I->first->use_begin(),
3124 UE = I->first->use_end(); UI != UE; ) {
3125 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3126 UpgradeIntrinsicCall(CI, I->second);
3127 }
Chris Lattner7d9eb582009-04-01 01:43:03 +00003128 if (!I->first->use_empty())
3129 I->first->replaceAllUsesWith(I->second);
Chandler Carruth69940402007-08-04 01:51:18 +00003130 I->first->eraseFromParent();
3131 }
3132 }
3133 std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
Devang Patele4b27562009-08-28 23:24:31 +00003134
Manman Ren804f0342013-09-28 00:22:27 +00003135 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
3136 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
3137
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003138 return false;
Chris Lattnerb348bb82007-05-18 04:02:46 +00003139}
3140
Derek Schuff2ea93872012-02-06 22:30:29 +00003141bool BitcodeReader::InitStream() {
3142 if (LazyStreamer) return InitLazyStream();
3143 return InitStreamFromBuffer();
3144}
3145
3146bool BitcodeReader::InitStreamFromBuffer() {
Roman Divacky5177b3a2012-09-06 15:42:13 +00003147 const unsigned char *BufPtr = (const unsigned char*)Buffer->getBufferStart();
Derek Schuff2ea93872012-02-06 22:30:29 +00003148 const unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
3149
3150 if (Buffer->getBufferSize() & 3) {
3151 if (!isRawBitcode(BufPtr, BufEnd) && !isBitcodeWrapper(BufPtr, BufEnd))
3152 return Error("Invalid bitcode signature");
3153 else
3154 return Error("Bitcode stream should be a multiple of 4 bytes in length");
3155 }
3156
3157 // If we have a wrapper header, parse it and ignore the non-bc file contents.
3158 // The magic number is 0x0B17C0DE stored in little endian.
3159 if (isBitcodeWrapper(BufPtr, BufEnd))
3160 if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
3161 return Error("Invalid bitcode wrapper header");
3162
3163 StreamFile.reset(new BitstreamReader(BufPtr, BufEnd));
3164 Stream.init(*StreamFile);
3165
3166 return false;
3167}
3168
3169bool BitcodeReader::InitLazyStream() {
3170 // Check and strip off the bitcode wrapper; BitstreamReader expects never to
3171 // see it.
3172 StreamingMemoryObject *Bytes = new StreamingMemoryObject(LazyStreamer);
3173 StreamFile.reset(new BitstreamReader(Bytes));
3174 Stream.init(*StreamFile);
3175
3176 unsigned char buf[16];
Benjamin Kramer49a6a8d2013-05-24 10:54:58 +00003177 if (Bytes->readBytes(0, 16, buf) == -1)
Derek Schuff2ea93872012-02-06 22:30:29 +00003178 return Error("Bitcode stream must be at least 16 bytes in length");
3179
3180 if (!isBitcode(buf, buf + 16))
3181 return Error("Invalid bitcode signature");
3182
3183 if (isBitcodeWrapper(buf, buf + 4)) {
3184 const unsigned char *bitcodeStart = buf;
3185 const unsigned char *bitcodeEnd = buf + 16;
3186 SkipBitcodeWrapperHeader(bitcodeStart, bitcodeEnd, false);
3187 Bytes->dropLeadingBytes(bitcodeStart - buf);
3188 Bytes->setKnownObjectSize(bitcodeEnd - bitcodeStart);
3189 }
3190 return false;
3191}
Chris Lattner48f84872007-05-01 04:59:48 +00003192
Chris Lattnerc453f762007-04-29 07:54:31 +00003193//===----------------------------------------------------------------------===//
3194// External interface
3195//===----------------------------------------------------------------------===//
3196
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003197/// getLazyBitcodeModule - lazy function-at-a-time loading from a file.
Chris Lattnerc453f762007-04-29 07:54:31 +00003198///
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003199Module *llvm::getLazyBitcodeModule(MemoryBuffer *Buffer,
3200 LLVMContext& Context,
3201 std::string *ErrMsg) {
3202 Module *M = new Module(Buffer->getBufferIdentifier(), Context);
Owen Anderson8b477ed2009-07-01 16:58:40 +00003203 BitcodeReader *R = new BitcodeReader(Buffer, Context);
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003204 M->setMaterializer(R);
3205 if (R->ParseBitcodeInto(M)) {
Chris Lattnerc453f762007-04-29 07:54:31 +00003206 if (ErrMsg)
3207 *ErrMsg = R->getErrorString();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003208
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003209 delete M; // Also deletes R.
Chris Lattnerc453f762007-04-29 07:54:31 +00003210 return 0;
3211 }
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003212 // Have the BitcodeReader dtor delete 'Buffer'.
3213 R->setBufferOwned(true);
Rafael Espindola47f79bb2012-01-02 07:49:53 +00003214
3215 R->materializeForwardReferencedFunctions();
3216
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003217 return M;
Chris Lattnerc453f762007-04-29 07:54:31 +00003218}
3219
Derek Schuff2ea93872012-02-06 22:30:29 +00003220
3221Module *llvm::getStreamedBitcodeModule(const std::string &name,
3222 DataStreamer *streamer,
3223 LLVMContext &Context,
3224 std::string *ErrMsg) {
3225 Module *M = new Module(name, Context);
3226 BitcodeReader *R = new BitcodeReader(streamer, Context);
3227 M->setMaterializer(R);
3228 if (R->ParseBitcodeInto(M)) {
3229 if (ErrMsg)
3230 *ErrMsg = R->getErrorString();
3231 delete M; // Also deletes R.
3232 return 0;
3233 }
3234 R->setBufferOwned(false); // no buffer to delete
3235 return M;
3236}
3237
Chris Lattnerc453f762007-04-29 07:54:31 +00003238/// ParseBitcodeFile - Read the specified bitcode file, returning the module.
3239/// If an error occurs, return null and fill in *ErrMsg if non-null.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003240Module *llvm::ParseBitcodeFile(MemoryBuffer *Buffer, LLVMContext& Context,
Owen Anderson8b477ed2009-07-01 16:58:40 +00003241 std::string *ErrMsg){
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003242 Module *M = getLazyBitcodeModule(Buffer, Context, ErrMsg);
3243 if (!M) return 0;
Chris Lattnerb348bb82007-05-18 04:02:46 +00003244
3245 // Don't let the BitcodeReader dtor delete 'Buffer', regardless of whether
3246 // there was an error.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003247 static_cast<BitcodeReader*>(M->getMaterializer())->setBufferOwned(false);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003248
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003249 // Read in the entire module, and destroy the BitcodeReader.
3250 if (M->MaterializeAllPermanently(ErrMsg)) {
3251 delete M;
Bill Wendling34711742010-10-06 01:22:42 +00003252 return 0;
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +00003253 }
Bill Wendling34711742010-10-06 01:22:42 +00003254
Chad Rosiercbbb0962011-12-07 21:44:12 +00003255 // TODO: Restore the use-lists to the in-memory state when the bitcode was
3256 // written. We must defer until the Module has been fully materialized.
3257
Chris Lattnerc453f762007-04-29 07:54:31 +00003258 return M;
3259}
Bill Wendling34711742010-10-06 01:22:42 +00003260
3261std::string llvm::getBitcodeTargetTriple(MemoryBuffer *Buffer,
3262 LLVMContext& Context,
3263 std::string *ErrMsg) {
3264 BitcodeReader *R = new BitcodeReader(Buffer, Context);
3265 // Don't let the BitcodeReader dtor delete 'Buffer'.
3266 R->setBufferOwned(false);
3267
3268 std::string Triple("");
3269 if (R->ParseTriple(Triple))
3270 if (ErrMsg)
3271 *ErrMsg = R->getErrorString();
3272
3273 delete R;
3274 return Triple;
3275}