45a08b38390073ebbd5adc7703600045b30db447
[oota-llvm.git] / lib / Bitcode / Reader / BitcodeReader.cpp
1 //===- BitcodeReader.cpp - Internal BitcodeReader implementation ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "llvm/Bitcode/ReaderWriter.h"
11 #include "BitcodeReader.h"
12 #include "llvm/ADT/SmallString.h"
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/Bitcode/LLVMBitCodes.h"
15 #include "llvm/IR/AutoUpgrade.h"
16 #include "llvm/IR/Constants.h"
17 #include "llvm/IR/DerivedTypes.h"
18 #include "llvm/IR/InlineAsm.h"
19 #include "llvm/IR/IntrinsicInst.h"
20 #include "llvm/IR/LLVMContext.h"
21 #include "llvm/IR/Module.h"
22 #include "llvm/IR/OperandTraits.h"
23 #include "llvm/IR/Operator.h"
24 #include "llvm/Support/DataStream.h"
25 #include "llvm/Support/MathExtras.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/raw_ostream.h"
28 #include "llvm/Support/ManagedStatic.h"
29
30 using namespace llvm;
31
32 enum {
33   SWITCH_INST_MAGIC = 0x4B5 // May 2012 => 1205 => Hex
34 };
35
36 std::error_code BitcodeReader::materializeForwardReferencedFunctions() {
37   if (WillMaterializeAllForwardRefs)
38     return std::error_code();
39
40   // Prevent recursion.
41   WillMaterializeAllForwardRefs = true;
42
43   while (!BasicBlockFwdRefQueue.empty()) {
44     Function *F = BasicBlockFwdRefQueue.front();
45     BasicBlockFwdRefQueue.pop_front();
46     assert(F && "Expected valid function");
47     if (!BasicBlockFwdRefs.count(F))
48       // Already materialized.
49       continue;
50
51     // Check for a function that isn't materializable to prevent an infinite
52     // loop.  When parsing a blockaddress stored in a global variable, there
53     // isn't a trivial way to check if a function will have a body without a
54     // linear search through FunctionsWithBodies, so just check it here.
55     if (!F->isMaterializable())
56       return Error(BitcodeError::NeverResolvedFunctionFromBlockAddress);
57
58     // Try to materialize F.
59     if (std::error_code EC = materialize(F))
60       return EC;
61   }
62   assert(BasicBlockFwdRefs.empty() && "Function missing from queue");
63
64   // Reset state.
65   WillMaterializeAllForwardRefs = false;
66   return std::error_code();
67 }
68
69 void BitcodeReader::FreeState() {
70   Buffer = nullptr;
71   std::vector<Type*>().swap(TypeList);
72   ValueList.clear();
73   MDValueList.clear();
74   std::vector<Comdat *>().swap(ComdatList);
75
76   std::vector<AttributeSet>().swap(MAttributes);
77   std::vector<BasicBlock*>().swap(FunctionBBs);
78   std::vector<Function*>().swap(FunctionsWithBodies);
79   DeferredFunctionInfo.clear();
80   MDKindMap.clear();
81
82   assert(BasicBlockFwdRefs.empty() && "Unresolved blockaddress fwd references");
83   BasicBlockFwdRefQueue.clear();
84 }
85
86 //===----------------------------------------------------------------------===//
87 //  Helper functions to implement forward reference resolution, etc.
88 //===----------------------------------------------------------------------===//
89
90 /// ConvertToString - Convert a string from a record into an std::string, return
91 /// true on failure.
92 template<typename StrTy>
93 static bool ConvertToString(ArrayRef<uint64_t> Record, unsigned Idx,
94                             StrTy &Result) {
95   if (Idx > Record.size())
96     return true;
97
98   for (unsigned i = Idx, e = Record.size(); i != e; ++i)
99     Result += (char)Record[i];
100   return false;
101 }
102
103 static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
104   switch (Val) {
105   default: // Map unknown/new linkages to external
106   case 0:  return GlobalValue::ExternalLinkage;
107   case 1:  return GlobalValue::WeakAnyLinkage;
108   case 2:  return GlobalValue::AppendingLinkage;
109   case 3:  return GlobalValue::InternalLinkage;
110   case 4:  return GlobalValue::LinkOnceAnyLinkage;
111   case 5:  return GlobalValue::ExternalLinkage; // Obsolete DLLImportLinkage
112   case 6:  return GlobalValue::ExternalLinkage; // Obsolete DLLExportLinkage
113   case 7:  return GlobalValue::ExternalWeakLinkage;
114   case 8:  return GlobalValue::CommonLinkage;
115   case 9:  return GlobalValue::PrivateLinkage;
116   case 10: return GlobalValue::WeakODRLinkage;
117   case 11: return GlobalValue::LinkOnceODRLinkage;
118   case 12: return GlobalValue::AvailableExternallyLinkage;
119   case 13:
120     return GlobalValue::PrivateLinkage; // Obsolete LinkerPrivateLinkage
121   case 14:
122     return GlobalValue::PrivateLinkage; // Obsolete LinkerPrivateWeakLinkage
123   }
124 }
125
126 static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
127   switch (Val) {
128   default: // Map unknown visibilities to default.
129   case 0: return GlobalValue::DefaultVisibility;
130   case 1: return GlobalValue::HiddenVisibility;
131   case 2: return GlobalValue::ProtectedVisibility;
132   }
133 }
134
135 static GlobalValue::DLLStorageClassTypes
136 GetDecodedDLLStorageClass(unsigned Val) {
137   switch (Val) {
138   default: // Map unknown values to default.
139   case 0: return GlobalValue::DefaultStorageClass;
140   case 1: return GlobalValue::DLLImportStorageClass;
141   case 2: return GlobalValue::DLLExportStorageClass;
142   }
143 }
144
145 static GlobalVariable::ThreadLocalMode GetDecodedThreadLocalMode(unsigned Val) {
146   switch (Val) {
147     case 0: return GlobalVariable::NotThreadLocal;
148     default: // Map unknown non-zero value to general dynamic.
149     case 1: return GlobalVariable::GeneralDynamicTLSModel;
150     case 2: return GlobalVariable::LocalDynamicTLSModel;
151     case 3: return GlobalVariable::InitialExecTLSModel;
152     case 4: return GlobalVariable::LocalExecTLSModel;
153   }
154 }
155
156 static int GetDecodedCastOpcode(unsigned Val) {
157   switch (Val) {
158   default: return -1;
159   case bitc::CAST_TRUNC   : return Instruction::Trunc;
160   case bitc::CAST_ZEXT    : return Instruction::ZExt;
161   case bitc::CAST_SEXT    : return Instruction::SExt;
162   case bitc::CAST_FPTOUI  : return Instruction::FPToUI;
163   case bitc::CAST_FPTOSI  : return Instruction::FPToSI;
164   case bitc::CAST_UITOFP  : return Instruction::UIToFP;
165   case bitc::CAST_SITOFP  : return Instruction::SIToFP;
166   case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
167   case bitc::CAST_FPEXT   : return Instruction::FPExt;
168   case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
169   case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
170   case bitc::CAST_BITCAST : return Instruction::BitCast;
171   case bitc::CAST_ADDRSPACECAST: return Instruction::AddrSpaceCast;
172   }
173 }
174 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) {
175   switch (Val) {
176   default: return -1;
177   case bitc::BINOP_ADD:
178     return Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
179   case bitc::BINOP_SUB:
180     return Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
181   case bitc::BINOP_MUL:
182     return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
183   case bitc::BINOP_UDIV: return Instruction::UDiv;
184   case bitc::BINOP_SDIV:
185     return Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
186   case bitc::BINOP_UREM: return Instruction::URem;
187   case bitc::BINOP_SREM:
188     return Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
189   case bitc::BINOP_SHL:  return Instruction::Shl;
190   case bitc::BINOP_LSHR: return Instruction::LShr;
191   case bitc::BINOP_ASHR: return Instruction::AShr;
192   case bitc::BINOP_AND:  return Instruction::And;
193   case bitc::BINOP_OR:   return Instruction::Or;
194   case bitc::BINOP_XOR:  return Instruction::Xor;
195   }
196 }
197
198 static AtomicRMWInst::BinOp GetDecodedRMWOperation(unsigned Val) {
199   switch (Val) {
200   default: return AtomicRMWInst::BAD_BINOP;
201   case bitc::RMW_XCHG: return AtomicRMWInst::Xchg;
202   case bitc::RMW_ADD: return AtomicRMWInst::Add;
203   case bitc::RMW_SUB: return AtomicRMWInst::Sub;
204   case bitc::RMW_AND: return AtomicRMWInst::And;
205   case bitc::RMW_NAND: return AtomicRMWInst::Nand;
206   case bitc::RMW_OR: return AtomicRMWInst::Or;
207   case bitc::RMW_XOR: return AtomicRMWInst::Xor;
208   case bitc::RMW_MAX: return AtomicRMWInst::Max;
209   case bitc::RMW_MIN: return AtomicRMWInst::Min;
210   case bitc::RMW_UMAX: return AtomicRMWInst::UMax;
211   case bitc::RMW_UMIN: return AtomicRMWInst::UMin;
212   }
213 }
214
215 static AtomicOrdering GetDecodedOrdering(unsigned Val) {
216   switch (Val) {
217   case bitc::ORDERING_NOTATOMIC: return NotAtomic;
218   case bitc::ORDERING_UNORDERED: return Unordered;
219   case bitc::ORDERING_MONOTONIC: return Monotonic;
220   case bitc::ORDERING_ACQUIRE: return Acquire;
221   case bitc::ORDERING_RELEASE: return Release;
222   case bitc::ORDERING_ACQREL: return AcquireRelease;
223   default: // Map unknown orderings to sequentially-consistent.
224   case bitc::ORDERING_SEQCST: return SequentiallyConsistent;
225   }
226 }
227
228 static SynchronizationScope GetDecodedSynchScope(unsigned Val) {
229   switch (Val) {
230   case bitc::SYNCHSCOPE_SINGLETHREAD: return SingleThread;
231   default: // Map unknown scopes to cross-thread.
232   case bitc::SYNCHSCOPE_CROSSTHREAD: return CrossThread;
233   }
234 }
235
236 static Comdat::SelectionKind getDecodedComdatSelectionKind(unsigned Val) {
237   switch (Val) {
238   default: // Map unknown selection kinds to any.
239   case bitc::COMDAT_SELECTION_KIND_ANY:
240     return Comdat::Any;
241   case bitc::COMDAT_SELECTION_KIND_EXACT_MATCH:
242     return Comdat::ExactMatch;
243   case bitc::COMDAT_SELECTION_KIND_LARGEST:
244     return Comdat::Largest;
245   case bitc::COMDAT_SELECTION_KIND_NO_DUPLICATES:
246     return Comdat::NoDuplicates;
247   case bitc::COMDAT_SELECTION_KIND_SAME_SIZE:
248     return Comdat::SameSize;
249   }
250 }
251
252 static void UpgradeDLLImportExportLinkage(llvm::GlobalValue *GV, unsigned Val) {
253   switch (Val) {
254   case 5: GV->setDLLStorageClass(GlobalValue::DLLImportStorageClass); break;
255   case 6: GV->setDLLStorageClass(GlobalValue::DLLExportStorageClass); break;
256   }
257 }
258
259 namespace llvm {
260 namespace {
261   /// @brief A class for maintaining the slot number definition
262   /// as a placeholder for the actual definition for forward constants defs.
263   class ConstantPlaceHolder : public ConstantExpr {
264     void operator=(const ConstantPlaceHolder &) LLVM_DELETED_FUNCTION;
265   public:
266     // allocate space for exactly one operand
267     void *operator new(size_t s) {
268       return User::operator new(s, 1);
269     }
270     explicit ConstantPlaceHolder(Type *Ty, LLVMContext& Context)
271       : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
272       Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
273     }
274
275     /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
276     static bool classof(const Value *V) {
277       return isa<ConstantExpr>(V) &&
278              cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
279     }
280
281
282     /// Provide fast operand accessors
283     //DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
284   };
285 }
286
287 // FIXME: can we inherit this from ConstantExpr?
288 template <>
289 struct OperandTraits<ConstantPlaceHolder> :
290   public FixedNumOperandTraits<ConstantPlaceHolder, 1> {
291 };
292 }
293
294
295 void BitcodeReaderValueList::AssignValue(Value *V, unsigned Idx) {
296   if (Idx == size()) {
297     push_back(V);
298     return;
299   }
300
301   if (Idx >= size())
302     resize(Idx+1);
303
304   WeakVH &OldV = ValuePtrs[Idx];
305   if (!OldV) {
306     OldV = V;
307     return;
308   }
309
310   // Handle constants and non-constants (e.g. instrs) differently for
311   // efficiency.
312   if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
313     ResolveConstants.push_back(std::make_pair(PHC, Idx));
314     OldV = V;
315   } else {
316     // If there was a forward reference to this value, replace it.
317     Value *PrevVal = OldV;
318     OldV->replaceAllUsesWith(V);
319     delete PrevVal;
320   }
321 }
322
323
324 Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
325                                                     Type *Ty) {
326   if (Idx >= size())
327     resize(Idx + 1);
328
329   if (Value *V = ValuePtrs[Idx]) {
330     assert(Ty == V->getType() && "Type mismatch in constant table!");
331     return cast<Constant>(V);
332   }
333
334   // Create and return a placeholder, which will later be RAUW'd.
335   Constant *C = new ConstantPlaceHolder(Ty, Context);
336   ValuePtrs[Idx] = C;
337   return C;
338 }
339
340 Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, Type *Ty) {
341   if (Idx >= size())
342     resize(Idx + 1);
343
344   if (Value *V = ValuePtrs[Idx]) {
345     assert((!Ty || Ty == V->getType()) && "Type mismatch in value table!");
346     return V;
347   }
348
349   // No type specified, must be invalid reference.
350   if (!Ty) return nullptr;
351
352   // Create and return a placeholder, which will later be RAUW'd.
353   Value *V = new Argument(Ty);
354   ValuePtrs[Idx] = V;
355   return V;
356 }
357
358 /// ResolveConstantForwardRefs - Once all constants are read, this method bulk
359 /// resolves any forward references.  The idea behind this is that we sometimes
360 /// get constants (such as large arrays) which reference *many* forward ref
361 /// constants.  Replacing each of these causes a lot of thrashing when
362 /// building/reuniquing the constant.  Instead of doing this, we look at all the
363 /// uses and rewrite all the place holders at once for any constant that uses
364 /// a placeholder.
365 void BitcodeReaderValueList::ResolveConstantForwardRefs() {
366   // Sort the values by-pointer so that they are efficient to look up with a
367   // binary search.
368   std::sort(ResolveConstants.begin(), ResolveConstants.end());
369
370   SmallVector<Constant*, 64> NewOps;
371
372   while (!ResolveConstants.empty()) {
373     Value *RealVal = operator[](ResolveConstants.back().second);
374     Constant *Placeholder = ResolveConstants.back().first;
375     ResolveConstants.pop_back();
376
377     // Loop over all users of the placeholder, updating them to reference the
378     // new value.  If they reference more than one placeholder, update them all
379     // at once.
380     while (!Placeholder->use_empty()) {
381       auto UI = Placeholder->user_begin();
382       User *U = *UI;
383
384       // If the using object isn't uniqued, just update the operands.  This
385       // handles instructions and initializers for global variables.
386       if (!isa<Constant>(U) || isa<GlobalValue>(U)) {
387         UI.getUse().set(RealVal);
388         continue;
389       }
390
391       // Otherwise, we have a constant that uses the placeholder.  Replace that
392       // constant with a new constant that has *all* placeholder uses updated.
393       Constant *UserC = cast<Constant>(U);
394       for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
395            I != E; ++I) {
396         Value *NewOp;
397         if (!isa<ConstantPlaceHolder>(*I)) {
398           // Not a placeholder reference.
399           NewOp = *I;
400         } else if (*I == Placeholder) {
401           // Common case is that it just references this one placeholder.
402           NewOp = RealVal;
403         } else {
404           // Otherwise, look up the placeholder in ResolveConstants.
405           ResolveConstantsTy::iterator It =
406             std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
407                              std::pair<Constant*, unsigned>(cast<Constant>(*I),
408                                                             0));
409           assert(It != ResolveConstants.end() && It->first == *I);
410           NewOp = operator[](It->second);
411         }
412
413         NewOps.push_back(cast<Constant>(NewOp));
414       }
415
416       // Make the new constant.
417       Constant *NewC;
418       if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
419         NewC = ConstantArray::get(UserCA->getType(), NewOps);
420       } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
421         NewC = ConstantStruct::get(UserCS->getType(), NewOps);
422       } else if (isa<ConstantVector>(UserC)) {
423         NewC = ConstantVector::get(NewOps);
424       } else {
425         assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
426         NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
427       }
428
429       UserC->replaceAllUsesWith(NewC);
430       UserC->destroyConstant();
431       NewOps.clear();
432     }
433
434     // Update all ValueHandles, they should be the only users at this point.
435     Placeholder->replaceAllUsesWith(RealVal);
436     delete Placeholder;
437   }
438 }
439
440 void BitcodeReaderMDValueList::AssignValue(Value *V, unsigned Idx) {
441   if (Idx == size()) {
442     push_back(V);
443     return;
444   }
445
446   if (Idx >= size())
447     resize(Idx+1);
448
449   WeakVH &OldV = MDValuePtrs[Idx];
450   if (!OldV) {
451     OldV = V;
452     return;
453   }
454
455   // If there was a forward reference to this value, replace it.
456   MDNode *PrevVal = cast<MDNode>(OldV);
457   OldV->replaceAllUsesWith(V);
458   MDNode::deleteTemporary(PrevVal);
459   // Deleting PrevVal sets Idx value in MDValuePtrs to null. Set new
460   // value for Idx.
461   MDValuePtrs[Idx] = V;
462 }
463
464 Value *BitcodeReaderMDValueList::getValueFwdRef(unsigned Idx) {
465   if (Idx >= size())
466     resize(Idx + 1);
467
468   if (Value *V = MDValuePtrs[Idx]) {
469     assert(V->getType()->isMetadataTy() && "Type mismatch in value table!");
470     return V;
471   }
472
473   // Create and return a placeholder, which will later be RAUW'd.
474   Value *V = MDNode::getTemporary(Context, None);
475   MDValuePtrs[Idx] = V;
476   return V;
477 }
478
479 Type *BitcodeReader::getTypeByID(unsigned ID) {
480   // The type table size is always specified correctly.
481   if (ID >= TypeList.size())
482     return nullptr;
483
484   if (Type *Ty = TypeList[ID])
485     return Ty;
486
487   // If we have a forward reference, the only possible case is when it is to a
488   // named struct.  Just create a placeholder for now.
489   return TypeList[ID] = StructType::create(Context);
490 }
491
492
493 //===----------------------------------------------------------------------===//
494 //  Functions for parsing blocks from the bitcode file
495 //===----------------------------------------------------------------------===//
496
497
498 /// \brief This fills an AttrBuilder object with the LLVM attributes that have
499 /// been decoded from the given integer. This function must stay in sync with
500 /// 'encodeLLVMAttributesForBitcode'.
501 static void decodeLLVMAttributesForBitcode(AttrBuilder &B,
502                                            uint64_t EncodedAttrs) {
503   // FIXME: Remove in 4.0.
504
505   // The alignment is stored as a 16-bit raw value from bits 31--16.  We shift
506   // the bits above 31 down by 11 bits.
507   unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
508   assert((!Alignment || isPowerOf2_32(Alignment)) &&
509          "Alignment must be a power of two.");
510
511   if (Alignment)
512     B.addAlignmentAttr(Alignment);
513   B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
514                 (EncodedAttrs & 0xffff));
515 }
516
517 std::error_code BitcodeReader::ParseAttributeBlock() {
518   if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
519     return Error(BitcodeError::InvalidRecord);
520
521   if (!MAttributes.empty())
522     return Error(BitcodeError::InvalidMultipleBlocks);
523
524   SmallVector<uint64_t, 64> Record;
525
526   SmallVector<AttributeSet, 8> Attrs;
527
528   // Read all the records.
529   while (1) {
530     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
531
532     switch (Entry.Kind) {
533     case BitstreamEntry::SubBlock: // Handled for us already.
534     case BitstreamEntry::Error:
535       return Error(BitcodeError::MalformedBlock);
536     case BitstreamEntry::EndBlock:
537       return std::error_code();
538     case BitstreamEntry::Record:
539       // The interesting case.
540       break;
541     }
542
543     // Read a record.
544     Record.clear();
545     switch (Stream.readRecord(Entry.ID, Record)) {
546     default:  // Default behavior: ignore.
547       break;
548     case bitc::PARAMATTR_CODE_ENTRY_OLD: { // ENTRY: [paramidx0, attr0, ...]
549       // FIXME: Remove in 4.0.
550       if (Record.size() & 1)
551         return Error(BitcodeError::InvalidRecord);
552
553       for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
554         AttrBuilder B;
555         decodeLLVMAttributesForBitcode(B, Record[i+1]);
556         Attrs.push_back(AttributeSet::get(Context, Record[i], B));
557       }
558
559       MAttributes.push_back(AttributeSet::get(Context, Attrs));
560       Attrs.clear();
561       break;
562     }
563     case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [attrgrp0, attrgrp1, ...]
564       for (unsigned i = 0, e = Record.size(); i != e; ++i)
565         Attrs.push_back(MAttributeGroups[Record[i]]);
566
567       MAttributes.push_back(AttributeSet::get(Context, Attrs));
568       Attrs.clear();
569       break;
570     }
571     }
572   }
573 }
574
575 // Returns Attribute::None on unrecognized codes.
576 static Attribute::AttrKind GetAttrFromCode(uint64_t Code) {
577   switch (Code) {
578   default:
579     return Attribute::None;
580   case bitc::ATTR_KIND_ALIGNMENT:
581     return Attribute::Alignment;
582   case bitc::ATTR_KIND_ALWAYS_INLINE:
583     return Attribute::AlwaysInline;
584   case bitc::ATTR_KIND_BUILTIN:
585     return Attribute::Builtin;
586   case bitc::ATTR_KIND_BY_VAL:
587     return Attribute::ByVal;
588   case bitc::ATTR_KIND_IN_ALLOCA:
589     return Attribute::InAlloca;
590   case bitc::ATTR_KIND_COLD:
591     return Attribute::Cold;
592   case bitc::ATTR_KIND_INLINE_HINT:
593     return Attribute::InlineHint;
594   case bitc::ATTR_KIND_IN_REG:
595     return Attribute::InReg;
596   case bitc::ATTR_KIND_JUMP_TABLE:
597     return Attribute::JumpTable;
598   case bitc::ATTR_KIND_MIN_SIZE:
599     return Attribute::MinSize;
600   case bitc::ATTR_KIND_NAKED:
601     return Attribute::Naked;
602   case bitc::ATTR_KIND_NEST:
603     return Attribute::Nest;
604   case bitc::ATTR_KIND_NO_ALIAS:
605     return Attribute::NoAlias;
606   case bitc::ATTR_KIND_NO_BUILTIN:
607     return Attribute::NoBuiltin;
608   case bitc::ATTR_KIND_NO_CAPTURE:
609     return Attribute::NoCapture;
610   case bitc::ATTR_KIND_NO_DUPLICATE:
611     return Attribute::NoDuplicate;
612   case bitc::ATTR_KIND_NO_IMPLICIT_FLOAT:
613     return Attribute::NoImplicitFloat;
614   case bitc::ATTR_KIND_NO_INLINE:
615     return Attribute::NoInline;
616   case bitc::ATTR_KIND_NON_LAZY_BIND:
617     return Attribute::NonLazyBind;
618   case bitc::ATTR_KIND_NON_NULL:
619     return Attribute::NonNull;
620   case bitc::ATTR_KIND_DEREFERENCEABLE:
621     return Attribute::Dereferenceable;
622   case bitc::ATTR_KIND_NO_RED_ZONE:
623     return Attribute::NoRedZone;
624   case bitc::ATTR_KIND_NO_RETURN:
625     return Attribute::NoReturn;
626   case bitc::ATTR_KIND_NO_UNWIND:
627     return Attribute::NoUnwind;
628   case bitc::ATTR_KIND_OPTIMIZE_FOR_SIZE:
629     return Attribute::OptimizeForSize;
630   case bitc::ATTR_KIND_OPTIMIZE_NONE:
631     return Attribute::OptimizeNone;
632   case bitc::ATTR_KIND_READ_NONE:
633     return Attribute::ReadNone;
634   case bitc::ATTR_KIND_READ_ONLY:
635     return Attribute::ReadOnly;
636   case bitc::ATTR_KIND_RETURNED:
637     return Attribute::Returned;
638   case bitc::ATTR_KIND_RETURNS_TWICE:
639     return Attribute::ReturnsTwice;
640   case bitc::ATTR_KIND_S_EXT:
641     return Attribute::SExt;
642   case bitc::ATTR_KIND_STACK_ALIGNMENT:
643     return Attribute::StackAlignment;
644   case bitc::ATTR_KIND_STACK_PROTECT:
645     return Attribute::StackProtect;
646   case bitc::ATTR_KIND_STACK_PROTECT_REQ:
647     return Attribute::StackProtectReq;
648   case bitc::ATTR_KIND_STACK_PROTECT_STRONG:
649     return Attribute::StackProtectStrong;
650   case bitc::ATTR_KIND_STRUCT_RET:
651     return Attribute::StructRet;
652   case bitc::ATTR_KIND_SANITIZE_ADDRESS:
653     return Attribute::SanitizeAddress;
654   case bitc::ATTR_KIND_SANITIZE_THREAD:
655     return Attribute::SanitizeThread;
656   case bitc::ATTR_KIND_SANITIZE_MEMORY:
657     return Attribute::SanitizeMemory;
658   case bitc::ATTR_KIND_UW_TABLE:
659     return Attribute::UWTable;
660   case bitc::ATTR_KIND_Z_EXT:
661     return Attribute::ZExt;
662   }
663 }
664
665 std::error_code BitcodeReader::ParseAttrKind(uint64_t Code,
666                                              Attribute::AttrKind *Kind) {
667   *Kind = GetAttrFromCode(Code);
668   if (*Kind == Attribute::None)
669     return Error(BitcodeError::InvalidValue);
670   return std::error_code();
671 }
672
673 std::error_code BitcodeReader::ParseAttributeGroupBlock() {
674   if (Stream.EnterSubBlock(bitc::PARAMATTR_GROUP_BLOCK_ID))
675     return Error(BitcodeError::InvalidRecord);
676
677   if (!MAttributeGroups.empty())
678     return Error(BitcodeError::InvalidMultipleBlocks);
679
680   SmallVector<uint64_t, 64> Record;
681
682   // Read all the records.
683   while (1) {
684     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
685
686     switch (Entry.Kind) {
687     case BitstreamEntry::SubBlock: // Handled for us already.
688     case BitstreamEntry::Error:
689       return Error(BitcodeError::MalformedBlock);
690     case BitstreamEntry::EndBlock:
691       return std::error_code();
692     case BitstreamEntry::Record:
693       // The interesting case.
694       break;
695     }
696
697     // Read a record.
698     Record.clear();
699     switch (Stream.readRecord(Entry.ID, Record)) {
700     default:  // Default behavior: ignore.
701       break;
702     case bitc::PARAMATTR_GRP_CODE_ENTRY: { // ENTRY: [grpid, idx, a0, a1, ...]
703       if (Record.size() < 3)
704         return Error(BitcodeError::InvalidRecord);
705
706       uint64_t GrpID = Record[0];
707       uint64_t Idx = Record[1]; // Index of the object this attribute refers to.
708
709       AttrBuilder B;
710       for (unsigned i = 2, e = Record.size(); i != e; ++i) {
711         if (Record[i] == 0) {        // Enum attribute
712           Attribute::AttrKind Kind;
713           if (std::error_code EC = ParseAttrKind(Record[++i], &Kind))
714             return EC;
715
716           B.addAttribute(Kind);
717         } else if (Record[i] == 1) { // Integer attribute
718           Attribute::AttrKind Kind;
719           if (std::error_code EC = ParseAttrKind(Record[++i], &Kind))
720             return EC;
721           if (Kind == Attribute::Alignment)
722             B.addAlignmentAttr(Record[++i]);
723           else if (Kind == Attribute::StackAlignment)
724             B.addStackAlignmentAttr(Record[++i]);
725           else if (Kind == Attribute::Dereferenceable)
726             B.addDereferenceableAttr(Record[++i]);
727         } else {                     // String attribute
728           assert((Record[i] == 3 || Record[i] == 4) &&
729                  "Invalid attribute group entry");
730           bool HasValue = (Record[i++] == 4);
731           SmallString<64> KindStr;
732           SmallString<64> ValStr;
733
734           while (Record[i] != 0 && i != e)
735             KindStr += Record[i++];
736           assert(Record[i] == 0 && "Kind string not null terminated");
737
738           if (HasValue) {
739             // Has a value associated with it.
740             ++i; // Skip the '0' that terminates the "kind" string.
741             while (Record[i] != 0 && i != e)
742               ValStr += Record[i++];
743             assert(Record[i] == 0 && "Value string not null terminated");
744           }
745
746           B.addAttribute(KindStr.str(), ValStr.str());
747         }
748       }
749
750       MAttributeGroups[GrpID] = AttributeSet::get(Context, Idx, B);
751       break;
752     }
753     }
754   }
755 }
756
757 std::error_code BitcodeReader::ParseTypeTable() {
758   if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
759     return Error(BitcodeError::InvalidRecord);
760
761   return ParseTypeTableBody();
762 }
763
764 std::error_code BitcodeReader::ParseTypeTableBody() {
765   if (!TypeList.empty())
766     return Error(BitcodeError::InvalidMultipleBlocks);
767
768   SmallVector<uint64_t, 64> Record;
769   unsigned NumRecords = 0;
770
771   SmallString<64> TypeName;
772
773   // Read all the records for this type table.
774   while (1) {
775     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
776
777     switch (Entry.Kind) {
778     case BitstreamEntry::SubBlock: // Handled for us already.
779     case BitstreamEntry::Error:
780       return Error(BitcodeError::MalformedBlock);
781     case BitstreamEntry::EndBlock:
782       if (NumRecords != TypeList.size())
783         return Error(BitcodeError::MalformedBlock);
784       return std::error_code();
785     case BitstreamEntry::Record:
786       // The interesting case.
787       break;
788     }
789
790     // Read a record.
791     Record.clear();
792     Type *ResultTy = nullptr;
793     switch (Stream.readRecord(Entry.ID, Record)) {
794     default:
795       return Error(BitcodeError::InvalidValue);
796     case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
797       // TYPE_CODE_NUMENTRY contains a count of the number of types in the
798       // type list.  This allows us to reserve space.
799       if (Record.size() < 1)
800         return Error(BitcodeError::InvalidRecord);
801       TypeList.resize(Record[0]);
802       continue;
803     case bitc::TYPE_CODE_VOID:      // VOID
804       ResultTy = Type::getVoidTy(Context);
805       break;
806     case bitc::TYPE_CODE_HALF:     // HALF
807       ResultTy = Type::getHalfTy(Context);
808       break;
809     case bitc::TYPE_CODE_FLOAT:     // FLOAT
810       ResultTy = Type::getFloatTy(Context);
811       break;
812     case bitc::TYPE_CODE_DOUBLE:    // DOUBLE
813       ResultTy = Type::getDoubleTy(Context);
814       break;
815     case bitc::TYPE_CODE_X86_FP80:  // X86_FP80
816       ResultTy = Type::getX86_FP80Ty(Context);
817       break;
818     case bitc::TYPE_CODE_FP128:     // FP128
819       ResultTy = Type::getFP128Ty(Context);
820       break;
821     case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
822       ResultTy = Type::getPPC_FP128Ty(Context);
823       break;
824     case bitc::TYPE_CODE_LABEL:     // LABEL
825       ResultTy = Type::getLabelTy(Context);
826       break;
827     case bitc::TYPE_CODE_METADATA:  // METADATA
828       ResultTy = Type::getMetadataTy(Context);
829       break;
830     case bitc::TYPE_CODE_X86_MMX:   // X86_MMX
831       ResultTy = Type::getX86_MMXTy(Context);
832       break;
833     case bitc::TYPE_CODE_INTEGER:   // INTEGER: [width]
834       if (Record.size() < 1)
835         return Error(BitcodeError::InvalidRecord);
836
837       ResultTy = IntegerType::get(Context, Record[0]);
838       break;
839     case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
840                                     //          [pointee type, address space]
841       if (Record.size() < 1)
842         return Error(BitcodeError::InvalidRecord);
843       unsigned AddressSpace = 0;
844       if (Record.size() == 2)
845         AddressSpace = Record[1];
846       ResultTy = getTypeByID(Record[0]);
847       if (!ResultTy)
848         return Error(BitcodeError::InvalidType);
849       ResultTy = PointerType::get(ResultTy, AddressSpace);
850       break;
851     }
852     case bitc::TYPE_CODE_FUNCTION_OLD: {
853       // FIXME: attrid is dead, remove it in LLVM 4.0
854       // FUNCTION: [vararg, attrid, retty, paramty x N]
855       if (Record.size() < 3)
856         return Error(BitcodeError::InvalidRecord);
857       SmallVector<Type*, 8> ArgTys;
858       for (unsigned i = 3, e = Record.size(); i != e; ++i) {
859         if (Type *T = getTypeByID(Record[i]))
860           ArgTys.push_back(T);
861         else
862           break;
863       }
864
865       ResultTy = getTypeByID(Record[2]);
866       if (!ResultTy || ArgTys.size() < Record.size()-3)
867         return Error(BitcodeError::InvalidType);
868
869       ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
870       break;
871     }
872     case bitc::TYPE_CODE_FUNCTION: {
873       // FUNCTION: [vararg, retty, paramty x N]
874       if (Record.size() < 2)
875         return Error(BitcodeError::InvalidRecord);
876       SmallVector<Type*, 8> ArgTys;
877       for (unsigned i = 2, e = Record.size(); i != e; ++i) {
878         if (Type *T = getTypeByID(Record[i]))
879           ArgTys.push_back(T);
880         else
881           break;
882       }
883
884       ResultTy = getTypeByID(Record[1]);
885       if (!ResultTy || ArgTys.size() < Record.size()-2)
886         return Error(BitcodeError::InvalidType);
887
888       ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
889       break;
890     }
891     case bitc::TYPE_CODE_STRUCT_ANON: {  // STRUCT: [ispacked, eltty x N]
892       if (Record.size() < 1)
893         return Error(BitcodeError::InvalidRecord);
894       SmallVector<Type*, 8> EltTys;
895       for (unsigned i = 1, e = Record.size(); i != e; ++i) {
896         if (Type *T = getTypeByID(Record[i]))
897           EltTys.push_back(T);
898         else
899           break;
900       }
901       if (EltTys.size() != Record.size()-1)
902         return Error(BitcodeError::InvalidType);
903       ResultTy = StructType::get(Context, EltTys, Record[0]);
904       break;
905     }
906     case bitc::TYPE_CODE_STRUCT_NAME:   // STRUCT_NAME: [strchr x N]
907       if (ConvertToString(Record, 0, TypeName))
908         return Error(BitcodeError::InvalidRecord);
909       continue;
910
911     case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
912       if (Record.size() < 1)
913         return Error(BitcodeError::InvalidRecord);
914
915       if (NumRecords >= TypeList.size())
916         return Error(BitcodeError::InvalidTYPETable);
917
918       // Check to see if this was forward referenced, if so fill in the temp.
919       StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
920       if (Res) {
921         Res->setName(TypeName);
922         TypeList[NumRecords] = nullptr;
923       } else  // Otherwise, create a new struct.
924         Res = StructType::create(Context, TypeName);
925       TypeName.clear();
926
927       SmallVector<Type*, 8> EltTys;
928       for (unsigned i = 1, e = Record.size(); i != e; ++i) {
929         if (Type *T = getTypeByID(Record[i]))
930           EltTys.push_back(T);
931         else
932           break;
933       }
934       if (EltTys.size() != Record.size()-1)
935         return Error(BitcodeError::InvalidRecord);
936       Res->setBody(EltTys, Record[0]);
937       ResultTy = Res;
938       break;
939     }
940     case bitc::TYPE_CODE_OPAQUE: {       // OPAQUE: []
941       if (Record.size() != 1)
942         return Error(BitcodeError::InvalidRecord);
943
944       if (NumRecords >= TypeList.size())
945         return Error(BitcodeError::InvalidTYPETable);
946
947       // Check to see if this was forward referenced, if so fill in the temp.
948       StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
949       if (Res) {
950         Res->setName(TypeName);
951         TypeList[NumRecords] = nullptr;
952       } else  // Otherwise, create a new struct with no body.
953         Res = StructType::create(Context, TypeName);
954       TypeName.clear();
955       ResultTy = Res;
956       break;
957     }
958     case bitc::TYPE_CODE_ARRAY:     // ARRAY: [numelts, eltty]
959       if (Record.size() < 2)
960         return Error(BitcodeError::InvalidRecord);
961       if ((ResultTy = getTypeByID(Record[1])))
962         ResultTy = ArrayType::get(ResultTy, Record[0]);
963       else
964         return Error(BitcodeError::InvalidType);
965       break;
966     case bitc::TYPE_CODE_VECTOR:    // VECTOR: [numelts, eltty]
967       if (Record.size() < 2)
968         return Error(BitcodeError::InvalidRecord);
969       if ((ResultTy = getTypeByID(Record[1])))
970         ResultTy = VectorType::get(ResultTy, Record[0]);
971       else
972         return Error(BitcodeError::InvalidType);
973       break;
974     }
975
976     if (NumRecords >= TypeList.size())
977       return Error(BitcodeError::InvalidTYPETable);
978     assert(ResultTy && "Didn't read a type?");
979     assert(!TypeList[NumRecords] && "Already read type?");
980     TypeList[NumRecords++] = ResultTy;
981   }
982 }
983
984 std::error_code BitcodeReader::ParseValueSymbolTable() {
985   if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
986     return Error(BitcodeError::InvalidRecord);
987
988   SmallVector<uint64_t, 64> Record;
989
990   // Read all the records for this value table.
991   SmallString<128> ValueName;
992   while (1) {
993     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
994
995     switch (Entry.Kind) {
996     case BitstreamEntry::SubBlock: // Handled for us already.
997     case BitstreamEntry::Error:
998       return Error(BitcodeError::MalformedBlock);
999     case BitstreamEntry::EndBlock:
1000       return std::error_code();
1001     case BitstreamEntry::Record:
1002       // The interesting case.
1003       break;
1004     }
1005
1006     // Read a record.
1007     Record.clear();
1008     switch (Stream.readRecord(Entry.ID, Record)) {
1009     default:  // Default behavior: unknown type.
1010       break;
1011     case bitc::VST_CODE_ENTRY: {  // VST_ENTRY: [valueid, namechar x N]
1012       if (ConvertToString(Record, 1, ValueName))
1013         return Error(BitcodeError::InvalidRecord);
1014       unsigned ValueID = Record[0];
1015       if (ValueID >= ValueList.size() || !ValueList[ValueID])
1016         return Error(BitcodeError::InvalidRecord);
1017       Value *V = ValueList[ValueID];
1018
1019       V->setName(StringRef(ValueName.data(), ValueName.size()));
1020       ValueName.clear();
1021       break;
1022     }
1023     case bitc::VST_CODE_BBENTRY: {
1024       if (ConvertToString(Record, 1, ValueName))
1025         return Error(BitcodeError::InvalidRecord);
1026       BasicBlock *BB = getBasicBlock(Record[0]);
1027       if (!BB)
1028         return Error(BitcodeError::InvalidRecord);
1029
1030       BB->setName(StringRef(ValueName.data(), ValueName.size()));
1031       ValueName.clear();
1032       break;
1033     }
1034     }
1035   }
1036 }
1037
1038 std::error_code BitcodeReader::ParseMetadata() {
1039   unsigned NextMDValueNo = MDValueList.size();
1040
1041   if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
1042     return Error(BitcodeError::InvalidRecord);
1043
1044   SmallVector<uint64_t, 64> Record;
1045
1046   // Read all the records.
1047   while (1) {
1048     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1049
1050     switch (Entry.Kind) {
1051     case BitstreamEntry::SubBlock: // Handled for us already.
1052     case BitstreamEntry::Error:
1053       return Error(BitcodeError::MalformedBlock);
1054     case BitstreamEntry::EndBlock:
1055       return std::error_code();
1056     case BitstreamEntry::Record:
1057       // The interesting case.
1058       break;
1059     }
1060
1061     bool IsFunctionLocal = false;
1062     // Read a record.
1063     Record.clear();
1064     unsigned Code = Stream.readRecord(Entry.ID, Record);
1065     switch (Code) {
1066     default:  // Default behavior: ignore.
1067       break;
1068     case bitc::METADATA_NAME: {
1069       // Read name of the named metadata.
1070       SmallString<8> Name(Record.begin(), Record.end());
1071       Record.clear();
1072       Code = Stream.ReadCode();
1073
1074       // METADATA_NAME is always followed by METADATA_NAMED_NODE.
1075       unsigned NextBitCode = Stream.readRecord(Code, Record);
1076       assert(NextBitCode == bitc::METADATA_NAMED_NODE); (void)NextBitCode;
1077
1078       // Read named metadata elements.
1079       unsigned Size = Record.size();
1080       NamedMDNode *NMD = TheModule->getOrInsertNamedMetadata(Name);
1081       for (unsigned i = 0; i != Size; ++i) {
1082         MDNode *MD = dyn_cast_or_null<MDNode>(MDValueList.getValueFwdRef(Record[i]));
1083         if (!MD)
1084           return Error(BitcodeError::InvalidRecord);
1085         NMD->addOperand(MD);
1086       }
1087       break;
1088     }
1089     case bitc::METADATA_FN_NODE:
1090       IsFunctionLocal = true;
1091       // fall-through
1092     case bitc::METADATA_NODE: {
1093       if (Record.size() % 2 == 1)
1094         return Error(BitcodeError::InvalidRecord);
1095
1096       unsigned Size = Record.size();
1097       SmallVector<Value*, 8> Elts;
1098       for (unsigned i = 0; i != Size; i += 2) {
1099         Type *Ty = getTypeByID(Record[i]);
1100         if (!Ty)
1101           return Error(BitcodeError::InvalidRecord);
1102         if (Ty->isMetadataTy())
1103           Elts.push_back(MDValueList.getValueFwdRef(Record[i+1]));
1104         else if (!Ty->isVoidTy())
1105           Elts.push_back(ValueList.getValueFwdRef(Record[i+1], Ty));
1106         else
1107           Elts.push_back(nullptr);
1108       }
1109       Value *V = MDNode::getWhenValsUnresolved(Context, Elts, IsFunctionLocal);
1110       IsFunctionLocal = false;
1111       MDValueList.AssignValue(V, NextMDValueNo++);
1112       break;
1113     }
1114     case bitc::METADATA_STRING: {
1115       std::string String(Record.begin(), Record.end());
1116       llvm::UpgradeMDStringConstant(String);
1117       Value *V = MDString::get(Context, String);
1118       MDValueList.AssignValue(V, NextMDValueNo++);
1119       break;
1120     }
1121     case bitc::METADATA_KIND: {
1122       if (Record.size() < 2)
1123         return Error(BitcodeError::InvalidRecord);
1124
1125       unsigned Kind = Record[0];
1126       SmallString<8> Name(Record.begin()+1, Record.end());
1127
1128       unsigned NewKind = TheModule->getMDKindID(Name.str());
1129       if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1130         return Error(BitcodeError::ConflictingMETADATA_KINDRecords);
1131       break;
1132     }
1133     }
1134   }
1135 }
1136
1137 /// decodeSignRotatedValue - Decode a signed value stored with the sign bit in
1138 /// the LSB for dense VBR encoding.
1139 uint64_t BitcodeReader::decodeSignRotatedValue(uint64_t V) {
1140   if ((V & 1) == 0)
1141     return V >> 1;
1142   if (V != 1)
1143     return -(V >> 1);
1144   // There is no such thing as -0 with integers.  "-0" really means MININT.
1145   return 1ULL << 63;
1146 }
1147
1148 /// ResolveGlobalAndAliasInits - Resolve all of the initializers for global
1149 /// values and aliases that we can.
1150 std::error_code BitcodeReader::ResolveGlobalAndAliasInits() {
1151   std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
1152   std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
1153   std::vector<std::pair<Function*, unsigned> > FunctionPrefixWorklist;
1154
1155   GlobalInitWorklist.swap(GlobalInits);
1156   AliasInitWorklist.swap(AliasInits);
1157   FunctionPrefixWorklist.swap(FunctionPrefixes);
1158
1159   while (!GlobalInitWorklist.empty()) {
1160     unsigned ValID = GlobalInitWorklist.back().second;
1161     if (ValID >= ValueList.size()) {
1162       // Not ready to resolve this yet, it requires something later in the file.
1163       GlobalInits.push_back(GlobalInitWorklist.back());
1164     } else {
1165       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
1166         GlobalInitWorklist.back().first->setInitializer(C);
1167       else
1168         return Error(BitcodeError::ExpectedConstant);
1169     }
1170     GlobalInitWorklist.pop_back();
1171   }
1172
1173   while (!AliasInitWorklist.empty()) {
1174     unsigned ValID = AliasInitWorklist.back().second;
1175     if (ValID >= ValueList.size()) {
1176       AliasInits.push_back(AliasInitWorklist.back());
1177     } else {
1178       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
1179         AliasInitWorklist.back().first->setAliasee(C);
1180       else
1181         return Error(BitcodeError::ExpectedConstant);
1182     }
1183     AliasInitWorklist.pop_back();
1184   }
1185
1186   while (!FunctionPrefixWorklist.empty()) {
1187     unsigned ValID = FunctionPrefixWorklist.back().second;
1188     if (ValID >= ValueList.size()) {
1189       FunctionPrefixes.push_back(FunctionPrefixWorklist.back());
1190     } else {
1191       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
1192         FunctionPrefixWorklist.back().first->setPrefixData(C);
1193       else
1194         return Error(BitcodeError::ExpectedConstant);
1195     }
1196     FunctionPrefixWorklist.pop_back();
1197   }
1198
1199   return std::error_code();
1200 }
1201
1202 static APInt ReadWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) {
1203   SmallVector<uint64_t, 8> Words(Vals.size());
1204   std::transform(Vals.begin(), Vals.end(), Words.begin(),
1205                  BitcodeReader::decodeSignRotatedValue);
1206
1207   return APInt(TypeBits, Words);
1208 }
1209
1210 std::error_code BitcodeReader::ParseConstants() {
1211   if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
1212     return Error(BitcodeError::InvalidRecord);
1213
1214   SmallVector<uint64_t, 64> Record;
1215
1216   // Read all the records for this value table.
1217   Type *CurTy = Type::getInt32Ty(Context);
1218   unsigned NextCstNo = ValueList.size();
1219   while (1) {
1220     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1221
1222     switch (Entry.Kind) {
1223     case BitstreamEntry::SubBlock: // Handled for us already.
1224     case BitstreamEntry::Error:
1225       return Error(BitcodeError::MalformedBlock);
1226     case BitstreamEntry::EndBlock:
1227       if (NextCstNo != ValueList.size())
1228         return Error(BitcodeError::InvalidConstantReference);
1229
1230       // Once all the constants have been read, go through and resolve forward
1231       // references.
1232       ValueList.ResolveConstantForwardRefs();
1233       return std::error_code();
1234     case BitstreamEntry::Record:
1235       // The interesting case.
1236       break;
1237     }
1238
1239     // Read a record.
1240     Record.clear();
1241     Value *V = nullptr;
1242     unsigned BitCode = Stream.readRecord(Entry.ID, Record);
1243     switch (BitCode) {
1244     default:  // Default behavior: unknown constant
1245     case bitc::CST_CODE_UNDEF:     // UNDEF
1246       V = UndefValue::get(CurTy);
1247       break;
1248     case bitc::CST_CODE_SETTYPE:   // SETTYPE: [typeid]
1249       if (Record.empty())
1250         return Error(BitcodeError::InvalidRecord);
1251       if (Record[0] >= TypeList.size() || !TypeList[Record[0]])
1252         return Error(BitcodeError::InvalidRecord);
1253       CurTy = TypeList[Record[0]];
1254       continue;  // Skip the ValueList manipulation.
1255     case bitc::CST_CODE_NULL:      // NULL
1256       V = Constant::getNullValue(CurTy);
1257       break;
1258     case bitc::CST_CODE_INTEGER:   // INTEGER: [intval]
1259       if (!CurTy->isIntegerTy() || Record.empty())
1260         return Error(BitcodeError::InvalidRecord);
1261       V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]));
1262       break;
1263     case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
1264       if (!CurTy->isIntegerTy() || Record.empty())
1265         return Error(BitcodeError::InvalidRecord);
1266
1267       APInt VInt = ReadWideAPInt(Record,
1268                                  cast<IntegerType>(CurTy)->getBitWidth());
1269       V = ConstantInt::get(Context, VInt);
1270
1271       break;
1272     }
1273     case bitc::CST_CODE_FLOAT: {    // FLOAT: [fpval]
1274       if (Record.empty())
1275         return Error(BitcodeError::InvalidRecord);
1276       if (CurTy->isHalfTy())
1277         V = ConstantFP::get(Context, APFloat(APFloat::IEEEhalf,
1278                                              APInt(16, (uint16_t)Record[0])));
1279       else if (CurTy->isFloatTy())
1280         V = ConstantFP::get(Context, APFloat(APFloat::IEEEsingle,
1281                                              APInt(32, (uint32_t)Record[0])));
1282       else if (CurTy->isDoubleTy())
1283         V = ConstantFP::get(Context, APFloat(APFloat::IEEEdouble,
1284                                              APInt(64, Record[0])));
1285       else if (CurTy->isX86_FP80Ty()) {
1286         // Bits are not stored the same way as a normal i80 APInt, compensate.
1287         uint64_t Rearrange[2];
1288         Rearrange[0] = (Record[1] & 0xffffLL) | (Record[0] << 16);
1289         Rearrange[1] = Record[0] >> 48;
1290         V = ConstantFP::get(Context, APFloat(APFloat::x87DoubleExtended,
1291                                              APInt(80, Rearrange)));
1292       } else if (CurTy->isFP128Ty())
1293         V = ConstantFP::get(Context, APFloat(APFloat::IEEEquad,
1294                                              APInt(128, Record)));
1295       else if (CurTy->isPPC_FP128Ty())
1296         V = ConstantFP::get(Context, APFloat(APFloat::PPCDoubleDouble,
1297                                              APInt(128, Record)));
1298       else
1299         V = UndefValue::get(CurTy);
1300       break;
1301     }
1302
1303     case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
1304       if (Record.empty())
1305         return Error(BitcodeError::InvalidRecord);
1306
1307       unsigned Size = Record.size();
1308       SmallVector<Constant*, 16> Elts;
1309
1310       if (StructType *STy = dyn_cast<StructType>(CurTy)) {
1311         for (unsigned i = 0; i != Size; ++i)
1312           Elts.push_back(ValueList.getConstantFwdRef(Record[i],
1313                                                      STy->getElementType(i)));
1314         V = ConstantStruct::get(STy, Elts);
1315       } else if (ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
1316         Type *EltTy = ATy->getElementType();
1317         for (unsigned i = 0; i != Size; ++i)
1318           Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1319         V = ConstantArray::get(ATy, Elts);
1320       } else if (VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
1321         Type *EltTy = VTy->getElementType();
1322         for (unsigned i = 0; i != Size; ++i)
1323           Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1324         V = ConstantVector::get(Elts);
1325       } else {
1326         V = UndefValue::get(CurTy);
1327       }
1328       break;
1329     }
1330     case bitc::CST_CODE_STRING:    // STRING: [values]
1331     case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
1332       if (Record.empty())
1333         return Error(BitcodeError::InvalidRecord);
1334
1335       SmallString<16> Elts(Record.begin(), Record.end());
1336       V = ConstantDataArray::getString(Context, Elts,
1337                                        BitCode == bitc::CST_CODE_CSTRING);
1338       break;
1339     }
1340     case bitc::CST_CODE_DATA: {// DATA: [n x value]
1341       if (Record.empty())
1342         return Error(BitcodeError::InvalidRecord);
1343
1344       Type *EltTy = cast<SequentialType>(CurTy)->getElementType();
1345       unsigned Size = Record.size();
1346
1347       if (EltTy->isIntegerTy(8)) {
1348         SmallVector<uint8_t, 16> Elts(Record.begin(), Record.end());
1349         if (isa<VectorType>(CurTy))
1350           V = ConstantDataVector::get(Context, Elts);
1351         else
1352           V = ConstantDataArray::get(Context, Elts);
1353       } else if (EltTy->isIntegerTy(16)) {
1354         SmallVector<uint16_t, 16> Elts(Record.begin(), Record.end());
1355         if (isa<VectorType>(CurTy))
1356           V = ConstantDataVector::get(Context, Elts);
1357         else
1358           V = ConstantDataArray::get(Context, Elts);
1359       } else if (EltTy->isIntegerTy(32)) {
1360         SmallVector<uint32_t, 16> Elts(Record.begin(), Record.end());
1361         if (isa<VectorType>(CurTy))
1362           V = ConstantDataVector::get(Context, Elts);
1363         else
1364           V = ConstantDataArray::get(Context, Elts);
1365       } else if (EltTy->isIntegerTy(64)) {
1366         SmallVector<uint64_t, 16> Elts(Record.begin(), Record.end());
1367         if (isa<VectorType>(CurTy))
1368           V = ConstantDataVector::get(Context, Elts);
1369         else
1370           V = ConstantDataArray::get(Context, Elts);
1371       } else if (EltTy->isFloatTy()) {
1372         SmallVector<float, 16> Elts(Size);
1373         std::transform(Record.begin(), Record.end(), Elts.begin(), BitsToFloat);
1374         if (isa<VectorType>(CurTy))
1375           V = ConstantDataVector::get(Context, Elts);
1376         else
1377           V = ConstantDataArray::get(Context, Elts);
1378       } else if (EltTy->isDoubleTy()) {
1379         SmallVector<double, 16> Elts(Size);
1380         std::transform(Record.begin(), Record.end(), Elts.begin(),
1381                        BitsToDouble);
1382         if (isa<VectorType>(CurTy))
1383           V = ConstantDataVector::get(Context, Elts);
1384         else
1385           V = ConstantDataArray::get(Context, Elts);
1386       } else {
1387         return Error(BitcodeError::InvalidTypeForValue);
1388       }
1389       break;
1390     }
1391
1392     case bitc::CST_CODE_CE_BINOP: {  // CE_BINOP: [opcode, opval, opval]
1393       if (Record.size() < 3)
1394         return Error(BitcodeError::InvalidRecord);
1395       int Opc = GetDecodedBinaryOpcode(Record[0], CurTy);
1396       if (Opc < 0) {
1397         V = UndefValue::get(CurTy);  // Unknown binop.
1398       } else {
1399         Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
1400         Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
1401         unsigned Flags = 0;
1402         if (Record.size() >= 4) {
1403           if (Opc == Instruction::Add ||
1404               Opc == Instruction::Sub ||
1405               Opc == Instruction::Mul ||
1406               Opc == Instruction::Shl) {
1407             if (Record[3] & (1 << bitc::OBO_NO_SIGNED_WRAP))
1408               Flags |= OverflowingBinaryOperator::NoSignedWrap;
1409             if (Record[3] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
1410               Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
1411           } else if (Opc == Instruction::SDiv ||
1412                      Opc == Instruction::UDiv ||
1413                      Opc == Instruction::LShr ||
1414                      Opc == Instruction::AShr) {
1415             if (Record[3] & (1 << bitc::PEO_EXACT))
1416               Flags |= SDivOperator::IsExact;
1417           }
1418         }
1419         V = ConstantExpr::get(Opc, LHS, RHS, Flags);
1420       }
1421       break;
1422     }
1423     case bitc::CST_CODE_CE_CAST: {  // CE_CAST: [opcode, opty, opval]
1424       if (Record.size() < 3)
1425         return Error(BitcodeError::InvalidRecord);
1426       int Opc = GetDecodedCastOpcode(Record[0]);
1427       if (Opc < 0) {
1428         V = UndefValue::get(CurTy);  // Unknown cast.
1429       } else {
1430         Type *OpTy = getTypeByID(Record[1]);
1431         if (!OpTy)
1432           return Error(BitcodeError::InvalidRecord);
1433         Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1434         V = UpgradeBitCastExpr(Opc, Op, CurTy);
1435         if (!V) V = ConstantExpr::getCast(Opc, Op, CurTy);
1436       }
1437       break;
1438     }
1439     case bitc::CST_CODE_CE_INBOUNDS_GEP:
1440     case bitc::CST_CODE_CE_GEP: {  // CE_GEP:        [n x operands]
1441       if (Record.size() & 1)
1442         return Error(BitcodeError::InvalidRecord);
1443       SmallVector<Constant*, 16> Elts;
1444       for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
1445         Type *ElTy = getTypeByID(Record[i]);
1446         if (!ElTy)
1447           return Error(BitcodeError::InvalidRecord);
1448         Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
1449       }
1450       ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
1451       V = ConstantExpr::getGetElementPtr(Elts[0], Indices,
1452                                          BitCode ==
1453                                            bitc::CST_CODE_CE_INBOUNDS_GEP);
1454       break;
1455     }
1456     case bitc::CST_CODE_CE_SELECT: {  // CE_SELECT: [opval#, opval#, opval#]
1457       if (Record.size() < 3)
1458         return Error(BitcodeError::InvalidRecord);
1459
1460       Type *SelectorTy = Type::getInt1Ty(Context);
1461
1462       // If CurTy is a vector of length n, then Record[0] must be a <n x i1>
1463       // vector. Otherwise, it must be a single bit.
1464       if (VectorType *VTy = dyn_cast<VectorType>(CurTy))
1465         SelectorTy = VectorType::get(Type::getInt1Ty(Context),
1466                                      VTy->getNumElements());
1467
1468       V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
1469                                                               SelectorTy),
1470                                   ValueList.getConstantFwdRef(Record[1],CurTy),
1471                                   ValueList.getConstantFwdRef(Record[2],CurTy));
1472       break;
1473     }
1474     case bitc::CST_CODE_CE_EXTRACTELT
1475         : { // CE_EXTRACTELT: [opty, opval, opty, opval]
1476       if (Record.size() < 3)
1477         return Error(BitcodeError::InvalidRecord);
1478       VectorType *OpTy =
1479         dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
1480       if (!OpTy)
1481         return Error(BitcodeError::InvalidRecord);
1482       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1483       Constant *Op1 = nullptr;
1484       if (Record.size() == 4) {
1485         Type *IdxTy = getTypeByID(Record[2]);
1486         if (!IdxTy)
1487           return Error(BitcodeError::InvalidRecord);
1488         Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
1489       } else // TODO: Remove with llvm 4.0
1490         Op1 = ValueList.getConstantFwdRef(Record[2], Type::getInt32Ty(Context));
1491       if (!Op1)
1492         return Error(BitcodeError::InvalidRecord);
1493       V = ConstantExpr::getExtractElement(Op0, Op1);
1494       break;
1495     }
1496     case bitc::CST_CODE_CE_INSERTELT
1497         : { // CE_INSERTELT: [opval, opval, opty, opval]
1498       VectorType *OpTy = dyn_cast<VectorType>(CurTy);
1499       if (Record.size() < 3 || !OpTy)
1500         return Error(BitcodeError::InvalidRecord);
1501       Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1502       Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
1503                                                   OpTy->getElementType());
1504       Constant *Op2 = nullptr;
1505       if (Record.size() == 4) {
1506         Type *IdxTy = getTypeByID(Record[2]);
1507         if (!IdxTy)
1508           return Error(BitcodeError::InvalidRecord);
1509         Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
1510       } else // TODO: Remove with llvm 4.0
1511         Op2 = ValueList.getConstantFwdRef(Record[2], Type::getInt32Ty(Context));
1512       if (!Op2)
1513         return Error(BitcodeError::InvalidRecord);
1514       V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
1515       break;
1516     }
1517     case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
1518       VectorType *OpTy = dyn_cast<VectorType>(CurTy);
1519       if (Record.size() < 3 || !OpTy)
1520         return Error(BitcodeError::InvalidRecord);
1521       Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
1522       Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
1523       Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
1524                                                  OpTy->getNumElements());
1525       Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
1526       V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
1527       break;
1528     }
1529     case bitc::CST_CODE_CE_SHUFVEC_EX: { // [opty, opval, opval, opval]
1530       VectorType *RTy = dyn_cast<VectorType>(CurTy);
1531       VectorType *OpTy =
1532         dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
1533       if (Record.size() < 4 || !RTy || !OpTy)
1534         return Error(BitcodeError::InvalidRecord);
1535       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1536       Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
1537       Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
1538                                                  RTy->getNumElements());
1539       Constant *Op2 = ValueList.getConstantFwdRef(Record[3], ShufTy);
1540       V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
1541       break;
1542     }
1543     case bitc::CST_CODE_CE_CMP: {     // CE_CMP: [opty, opval, opval, pred]
1544       if (Record.size() < 4)
1545         return Error(BitcodeError::InvalidRecord);
1546       Type *OpTy = getTypeByID(Record[0]);
1547       if (!OpTy)
1548         return Error(BitcodeError::InvalidRecord);
1549       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
1550       Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
1551
1552       if (OpTy->isFPOrFPVectorTy())
1553         V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
1554       else
1555         V = ConstantExpr::getICmp(Record[3], Op0, Op1);
1556       break;
1557     }
1558     // This maintains backward compatibility, pre-asm dialect keywords.
1559     // FIXME: Remove with the 4.0 release.
1560     case bitc::CST_CODE_INLINEASM_OLD: {
1561       if (Record.size() < 2)
1562         return Error(BitcodeError::InvalidRecord);
1563       std::string AsmStr, ConstrStr;
1564       bool HasSideEffects = Record[0] & 1;
1565       bool IsAlignStack = Record[0] >> 1;
1566       unsigned AsmStrSize = Record[1];
1567       if (2+AsmStrSize >= Record.size())
1568         return Error(BitcodeError::InvalidRecord);
1569       unsigned ConstStrSize = Record[2+AsmStrSize];
1570       if (3+AsmStrSize+ConstStrSize > Record.size())
1571         return Error(BitcodeError::InvalidRecord);
1572
1573       for (unsigned i = 0; i != AsmStrSize; ++i)
1574         AsmStr += (char)Record[2+i];
1575       for (unsigned i = 0; i != ConstStrSize; ++i)
1576         ConstrStr += (char)Record[3+AsmStrSize+i];
1577       PointerType *PTy = cast<PointerType>(CurTy);
1578       V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
1579                          AsmStr, ConstrStr, HasSideEffects, IsAlignStack);
1580       break;
1581     }
1582     // This version adds support for the asm dialect keywords (e.g.,
1583     // inteldialect).
1584     case bitc::CST_CODE_INLINEASM: {
1585       if (Record.size() < 2)
1586         return Error(BitcodeError::InvalidRecord);
1587       std::string AsmStr, ConstrStr;
1588       bool HasSideEffects = Record[0] & 1;
1589       bool IsAlignStack = (Record[0] >> 1) & 1;
1590       unsigned AsmDialect = Record[0] >> 2;
1591       unsigned AsmStrSize = Record[1];
1592       if (2+AsmStrSize >= Record.size())
1593         return Error(BitcodeError::InvalidRecord);
1594       unsigned ConstStrSize = Record[2+AsmStrSize];
1595       if (3+AsmStrSize+ConstStrSize > Record.size())
1596         return Error(BitcodeError::InvalidRecord);
1597
1598       for (unsigned i = 0; i != AsmStrSize; ++i)
1599         AsmStr += (char)Record[2+i];
1600       for (unsigned i = 0; i != ConstStrSize; ++i)
1601         ConstrStr += (char)Record[3+AsmStrSize+i];
1602       PointerType *PTy = cast<PointerType>(CurTy);
1603       V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
1604                          AsmStr, ConstrStr, HasSideEffects, IsAlignStack,
1605                          InlineAsm::AsmDialect(AsmDialect));
1606       break;
1607     }
1608     case bitc::CST_CODE_BLOCKADDRESS:{
1609       if (Record.size() < 3)
1610         return Error(BitcodeError::InvalidRecord);
1611       Type *FnTy = getTypeByID(Record[0]);
1612       if (!FnTy)
1613         return Error(BitcodeError::InvalidRecord);
1614       Function *Fn =
1615         dyn_cast_or_null<Function>(ValueList.getConstantFwdRef(Record[1],FnTy));
1616       if (!Fn)
1617         return Error(BitcodeError::InvalidRecord);
1618
1619       // Don't let Fn get dematerialized.
1620       BlockAddressesTaken.insert(Fn);
1621
1622       // If the function is already parsed we can insert the block address right
1623       // away.
1624       BasicBlock *BB;
1625       unsigned BBID = Record[2];
1626       if (!BBID)
1627         // Invalid reference to entry block.
1628         return Error(BitcodeError::InvalidID);
1629       if (!Fn->empty()) {
1630         Function::iterator BBI = Fn->begin(), BBE = Fn->end();
1631         for (size_t I = 0, E = BBID; I != E; ++I) {
1632           if (BBI == BBE)
1633             return Error(BitcodeError::InvalidID);
1634           ++BBI;
1635         }
1636         BB = BBI;
1637       } else {
1638         // Otherwise insert a placeholder and remember it so it can be inserted
1639         // when the function is parsed.
1640         auto &FwdBBs = BasicBlockFwdRefs[Fn];
1641         if (FwdBBs.empty())
1642           BasicBlockFwdRefQueue.push_back(Fn);
1643         if (FwdBBs.size() < BBID + 1)
1644           FwdBBs.resize(BBID + 1);
1645         if (!FwdBBs[BBID])
1646           FwdBBs[BBID] = BasicBlock::Create(Context);
1647         BB = FwdBBs[BBID];
1648       }
1649       V = BlockAddress::get(Fn, BB);
1650       break;
1651     }
1652     }
1653
1654     ValueList.AssignValue(V, NextCstNo);
1655     ++NextCstNo;
1656   }
1657 }
1658
1659 std::error_code BitcodeReader::ParseUseLists() {
1660   if (Stream.EnterSubBlock(bitc::USELIST_BLOCK_ID))
1661     return Error(BitcodeError::InvalidRecord);
1662
1663   // Read all the records.
1664   SmallVector<uint64_t, 64> Record;
1665   while (1) {
1666     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1667
1668     switch (Entry.Kind) {
1669     case BitstreamEntry::SubBlock: // Handled for us already.
1670     case BitstreamEntry::Error:
1671       return Error(BitcodeError::MalformedBlock);
1672     case BitstreamEntry::EndBlock:
1673       return std::error_code();
1674     case BitstreamEntry::Record:
1675       // The interesting case.
1676       break;
1677     }
1678
1679     // Read a use list record.
1680     Record.clear();
1681     bool IsBB = false;
1682     switch (Stream.readRecord(Entry.ID, Record)) {
1683     default:  // Default behavior: unknown type.
1684       break;
1685     case bitc::USELIST_CODE_BB:
1686       IsBB = true;
1687       // fallthrough
1688     case bitc::USELIST_CODE_DEFAULT: {
1689       unsigned RecordLength = Record.size();
1690       if (RecordLength < 3)
1691         // Records should have at least an ID and two indexes.
1692         return Error(BitcodeError::InvalidRecord);
1693       unsigned ID = Record.back();
1694       Record.pop_back();
1695
1696       Value *V;
1697       if (IsBB) {
1698         assert(ID < FunctionBBs.size() && "Basic block not found");
1699         V = FunctionBBs[ID];
1700       } else
1701         V = ValueList[ID];
1702       unsigned NumUses = 0;
1703       SmallDenseMap<const Use *, unsigned, 16> Order;
1704       for (const Use &U : V->uses()) {
1705         if (++NumUses > Record.size())
1706           break;
1707         Order[&U] = Record[NumUses - 1];
1708       }
1709       if (Order.size() != Record.size() || NumUses > Record.size())
1710         // Mismatches can happen if the functions are being materialized lazily
1711         // (out-of-order), or a value has been upgraded.
1712         break;
1713
1714       V->sortUseList([&](const Use &L, const Use &R) {
1715         return Order.lookup(&L) < Order.lookup(&R);
1716       });
1717       break;
1718     }
1719     }
1720   }
1721 }
1722
1723 /// RememberAndSkipFunctionBody - When we see the block for a function body,
1724 /// remember where it is and then skip it.  This lets us lazily deserialize the
1725 /// functions.
1726 std::error_code BitcodeReader::RememberAndSkipFunctionBody() {
1727   // Get the function we are talking about.
1728   if (FunctionsWithBodies.empty())
1729     return Error(BitcodeError::InsufficientFunctionProtos);
1730
1731   Function *Fn = FunctionsWithBodies.back();
1732   FunctionsWithBodies.pop_back();
1733
1734   // Save the current stream state.
1735   uint64_t CurBit = Stream.GetCurrentBitNo();
1736   DeferredFunctionInfo[Fn] = CurBit;
1737
1738   // Skip over the function block for now.
1739   if (Stream.SkipBlock())
1740     return Error(BitcodeError::InvalidRecord);
1741   return std::error_code();
1742 }
1743
1744 std::error_code BitcodeReader::GlobalCleanup() {
1745   // Patch the initializers for globals and aliases up.
1746   ResolveGlobalAndAliasInits();
1747   if (!GlobalInits.empty() || !AliasInits.empty())
1748     return Error(BitcodeError::MalformedGlobalInitializerSet);
1749
1750   // Look for intrinsic functions which need to be upgraded at some point
1751   for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
1752        FI != FE; ++FI) {
1753     Function *NewFn;
1754     if (UpgradeIntrinsicFunction(FI, NewFn))
1755       UpgradedIntrinsics.push_back(std::make_pair(FI, NewFn));
1756   }
1757
1758   // Look for global variables which need to be renamed.
1759   for (Module::global_iterator
1760          GI = TheModule->global_begin(), GE = TheModule->global_end();
1761        GI != GE;) {
1762     GlobalVariable *GV = GI++;
1763     UpgradeGlobalVariable(GV);
1764   }
1765
1766   // Force deallocation of memory for these vectors to favor the client that
1767   // want lazy deserialization.
1768   std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
1769   std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
1770   return std::error_code();
1771 }
1772
1773 std::error_code BitcodeReader::ParseModule(bool Resume) {
1774   if (Resume)
1775     Stream.JumpToBit(NextUnreadBit);
1776   else if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
1777     return Error(BitcodeError::InvalidRecord);
1778
1779   SmallVector<uint64_t, 64> Record;
1780   std::vector<std::string> SectionTable;
1781   std::vector<std::string> GCTable;
1782
1783   // Read all the records for this module.
1784   while (1) {
1785     BitstreamEntry Entry = Stream.advance();
1786
1787     switch (Entry.Kind) {
1788     case BitstreamEntry::Error:
1789       return Error(BitcodeError::MalformedBlock);
1790     case BitstreamEntry::EndBlock:
1791       return GlobalCleanup();
1792
1793     case BitstreamEntry::SubBlock:
1794       switch (Entry.ID) {
1795       default:  // Skip unknown content.
1796         if (Stream.SkipBlock())
1797           return Error(BitcodeError::InvalidRecord);
1798         break;
1799       case bitc::BLOCKINFO_BLOCK_ID:
1800         if (Stream.ReadBlockInfoBlock())
1801           return Error(BitcodeError::MalformedBlock);
1802         break;
1803       case bitc::PARAMATTR_BLOCK_ID:
1804         if (std::error_code EC = ParseAttributeBlock())
1805           return EC;
1806         break;
1807       case bitc::PARAMATTR_GROUP_BLOCK_ID:
1808         if (std::error_code EC = ParseAttributeGroupBlock())
1809           return EC;
1810         break;
1811       case bitc::TYPE_BLOCK_ID_NEW:
1812         if (std::error_code EC = ParseTypeTable())
1813           return EC;
1814         break;
1815       case bitc::VALUE_SYMTAB_BLOCK_ID:
1816         if (std::error_code EC = ParseValueSymbolTable())
1817           return EC;
1818         SeenValueSymbolTable = true;
1819         break;
1820       case bitc::CONSTANTS_BLOCK_ID:
1821         if (std::error_code EC = ParseConstants())
1822           return EC;
1823         if (std::error_code EC = ResolveGlobalAndAliasInits())
1824           return EC;
1825         break;
1826       case bitc::METADATA_BLOCK_ID:
1827         if (std::error_code EC = ParseMetadata())
1828           return EC;
1829         break;
1830       case bitc::FUNCTION_BLOCK_ID:
1831         // If this is the first function body we've seen, reverse the
1832         // FunctionsWithBodies list.
1833         if (!SeenFirstFunctionBody) {
1834           std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
1835           if (std::error_code EC = GlobalCleanup())
1836             return EC;
1837           SeenFirstFunctionBody = true;
1838         }
1839
1840         if (std::error_code EC = RememberAndSkipFunctionBody())
1841           return EC;
1842         // For streaming bitcode, suspend parsing when we reach the function
1843         // bodies. Subsequent materialization calls will resume it when
1844         // necessary. For streaming, the function bodies must be at the end of
1845         // the bitcode. If the bitcode file is old, the symbol table will be
1846         // at the end instead and will not have been seen yet. In this case,
1847         // just finish the parse now.
1848         if (LazyStreamer && SeenValueSymbolTable) {
1849           NextUnreadBit = Stream.GetCurrentBitNo();
1850           return std::error_code();
1851         }
1852         break;
1853       case bitc::USELIST_BLOCK_ID:
1854         if (std::error_code EC = ParseUseLists())
1855           return EC;
1856         break;
1857       }
1858       continue;
1859
1860     case BitstreamEntry::Record:
1861       // The interesting case.
1862       break;
1863     }
1864
1865
1866     // Read a record.
1867     switch (Stream.readRecord(Entry.ID, Record)) {
1868     default: break;  // Default behavior, ignore unknown content.
1869     case bitc::MODULE_CODE_VERSION: {  // VERSION: [version#]
1870       if (Record.size() < 1)
1871         return Error(BitcodeError::InvalidRecord);
1872       // Only version #0 and #1 are supported so far.
1873       unsigned module_version = Record[0];
1874       switch (module_version) {
1875         default:
1876           return Error(BitcodeError::InvalidValue);
1877         case 0:
1878           UseRelativeIDs = false;
1879           break;
1880         case 1:
1881           UseRelativeIDs = true;
1882           break;
1883       }
1884       break;
1885     }
1886     case bitc::MODULE_CODE_TRIPLE: {  // TRIPLE: [strchr x N]
1887       std::string S;
1888       if (ConvertToString(Record, 0, S))
1889         return Error(BitcodeError::InvalidRecord);
1890       TheModule->setTargetTriple(S);
1891       break;
1892     }
1893     case bitc::MODULE_CODE_DATALAYOUT: {  // DATALAYOUT: [strchr x N]
1894       std::string S;
1895       if (ConvertToString(Record, 0, S))
1896         return Error(BitcodeError::InvalidRecord);
1897       TheModule->setDataLayout(S);
1898       break;
1899     }
1900     case bitc::MODULE_CODE_ASM: {  // ASM: [strchr x N]
1901       std::string S;
1902       if (ConvertToString(Record, 0, S))
1903         return Error(BitcodeError::InvalidRecord);
1904       TheModule->setModuleInlineAsm(S);
1905       break;
1906     }
1907     case bitc::MODULE_CODE_DEPLIB: {  // DEPLIB: [strchr x N]
1908       // FIXME: Remove in 4.0.
1909       std::string S;
1910       if (ConvertToString(Record, 0, S))
1911         return Error(BitcodeError::InvalidRecord);
1912       // Ignore value.
1913       break;
1914     }
1915     case bitc::MODULE_CODE_SECTIONNAME: {  // SECTIONNAME: [strchr x N]
1916       std::string S;
1917       if (ConvertToString(Record, 0, S))
1918         return Error(BitcodeError::InvalidRecord);
1919       SectionTable.push_back(S);
1920       break;
1921     }
1922     case bitc::MODULE_CODE_GCNAME: {  // SECTIONNAME: [strchr x N]
1923       std::string S;
1924       if (ConvertToString(Record, 0, S))
1925         return Error(BitcodeError::InvalidRecord);
1926       GCTable.push_back(S);
1927       break;
1928     }
1929     case bitc::MODULE_CODE_COMDAT: { // COMDAT: [selection_kind, name]
1930       if (Record.size() < 2)
1931         return Error(BitcodeError::InvalidRecord);
1932       Comdat::SelectionKind SK = getDecodedComdatSelectionKind(Record[0]);
1933       unsigned ComdatNameSize = Record[1];
1934       std::string ComdatName;
1935       ComdatName.reserve(ComdatNameSize);
1936       for (unsigned i = 0; i != ComdatNameSize; ++i)
1937         ComdatName += (char)Record[2 + i];
1938       Comdat *C = TheModule->getOrInsertComdat(ComdatName);
1939       C->setSelectionKind(SK);
1940       ComdatList.push_back(C);
1941       break;
1942     }
1943     // GLOBALVAR: [pointer type, isconst, initid,
1944     //             linkage, alignment, section, visibility, threadlocal,
1945     //             unnamed_addr, dllstorageclass]
1946     case bitc::MODULE_CODE_GLOBALVAR: {
1947       if (Record.size() < 6)
1948         return Error(BitcodeError::InvalidRecord);
1949       Type *Ty = getTypeByID(Record[0]);
1950       if (!Ty)
1951         return Error(BitcodeError::InvalidRecord);
1952       if (!Ty->isPointerTy())
1953         return Error(BitcodeError::InvalidTypeForValue);
1954       unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
1955       Ty = cast<PointerType>(Ty)->getElementType();
1956
1957       bool isConstant = Record[1];
1958       GlobalValue::LinkageTypes Linkage = GetDecodedLinkage(Record[3]);
1959       unsigned Alignment = (1 << Record[4]) >> 1;
1960       std::string Section;
1961       if (Record[5]) {
1962         if (Record[5]-1 >= SectionTable.size())
1963           return Error(BitcodeError::InvalidID);
1964         Section = SectionTable[Record[5]-1];
1965       }
1966       GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
1967       // Local linkage must have default visibility.
1968       if (Record.size() > 6 && !GlobalValue::isLocalLinkage(Linkage))
1969         // FIXME: Change to an error if non-default in 4.0.
1970         Visibility = GetDecodedVisibility(Record[6]);
1971
1972       GlobalVariable::ThreadLocalMode TLM = GlobalVariable::NotThreadLocal;
1973       if (Record.size() > 7)
1974         TLM = GetDecodedThreadLocalMode(Record[7]);
1975
1976       bool UnnamedAddr = false;
1977       if (Record.size() > 8)
1978         UnnamedAddr = Record[8];
1979
1980       bool ExternallyInitialized = false;
1981       if (Record.size() > 9)
1982         ExternallyInitialized = Record[9];
1983
1984       GlobalVariable *NewGV =
1985         new GlobalVariable(*TheModule, Ty, isConstant, Linkage, nullptr, "", nullptr,
1986                            TLM, AddressSpace, ExternallyInitialized);
1987       NewGV->setAlignment(Alignment);
1988       if (!Section.empty())
1989         NewGV->setSection(Section);
1990       NewGV->setVisibility(Visibility);
1991       NewGV->setUnnamedAddr(UnnamedAddr);
1992
1993       if (Record.size() > 10)
1994         NewGV->setDLLStorageClass(GetDecodedDLLStorageClass(Record[10]));
1995       else
1996         UpgradeDLLImportExportLinkage(NewGV, Record[3]);
1997
1998       ValueList.push_back(NewGV);
1999
2000       // Remember which value to use for the global initializer.
2001       if (unsigned InitID = Record[2])
2002         GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
2003
2004       if (Record.size() > 11)
2005         if (unsigned ComdatID = Record[11]) {
2006           assert(ComdatID <= ComdatList.size());
2007           NewGV->setComdat(ComdatList[ComdatID - 1]);
2008         }
2009       break;
2010     }
2011     // FUNCTION:  [type, callingconv, isproto, linkage, paramattr,
2012     //             alignment, section, visibility, gc, unnamed_addr,
2013     //             dllstorageclass]
2014     case bitc::MODULE_CODE_FUNCTION: {
2015       if (Record.size() < 8)
2016         return Error(BitcodeError::InvalidRecord);
2017       Type *Ty = getTypeByID(Record[0]);
2018       if (!Ty)
2019         return Error(BitcodeError::InvalidRecord);
2020       if (!Ty->isPointerTy())
2021         return Error(BitcodeError::InvalidTypeForValue);
2022       FunctionType *FTy =
2023         dyn_cast<FunctionType>(cast<PointerType>(Ty)->getElementType());
2024       if (!FTy)
2025         return Error(BitcodeError::InvalidTypeForValue);
2026
2027       Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
2028                                         "", TheModule);
2029
2030       Func->setCallingConv(static_cast<CallingConv::ID>(Record[1]));
2031       bool isProto = Record[2];
2032       Func->setLinkage(GetDecodedLinkage(Record[3]));
2033       Func->setAttributes(getAttributes(Record[4]));
2034
2035       Func->setAlignment((1 << Record[5]) >> 1);
2036       if (Record[6]) {
2037         if (Record[6]-1 >= SectionTable.size())
2038           return Error(BitcodeError::InvalidID);
2039         Func->setSection(SectionTable[Record[6]-1]);
2040       }
2041       // Local linkage must have default visibility.
2042       if (!Func->hasLocalLinkage())
2043         // FIXME: Change to an error if non-default in 4.0.
2044         Func->setVisibility(GetDecodedVisibility(Record[7]));
2045       if (Record.size() > 8 && Record[8]) {
2046         if (Record[8]-1 > GCTable.size())
2047           return Error(BitcodeError::InvalidID);
2048         Func->setGC(GCTable[Record[8]-1].c_str());
2049       }
2050       bool UnnamedAddr = false;
2051       if (Record.size() > 9)
2052         UnnamedAddr = Record[9];
2053       Func->setUnnamedAddr(UnnamedAddr);
2054       if (Record.size() > 10 && Record[10] != 0)
2055         FunctionPrefixes.push_back(std::make_pair(Func, Record[10]-1));
2056
2057       if (Record.size() > 11)
2058         Func->setDLLStorageClass(GetDecodedDLLStorageClass(Record[11]));
2059       else
2060         UpgradeDLLImportExportLinkage(Func, Record[3]);
2061
2062       if (Record.size() > 12)
2063         if (unsigned ComdatID = Record[12]) {
2064           assert(ComdatID <= ComdatList.size());
2065           Func->setComdat(ComdatList[ComdatID - 1]);
2066         }
2067
2068       ValueList.push_back(Func);
2069
2070       // If this is a function with a body, remember the prototype we are
2071       // creating now, so that we can match up the body with them later.
2072       if (!isProto) {
2073         Func->setIsMaterializable(true);
2074         FunctionsWithBodies.push_back(Func);
2075         if (LazyStreamer)
2076           DeferredFunctionInfo[Func] = 0;
2077       }
2078       break;
2079     }
2080     // ALIAS: [alias type, aliasee val#, linkage]
2081     // ALIAS: [alias type, aliasee val#, linkage, visibility, dllstorageclass]
2082     case bitc::MODULE_CODE_ALIAS: {
2083       if (Record.size() < 3)
2084         return Error(BitcodeError::InvalidRecord);
2085       Type *Ty = getTypeByID(Record[0]);
2086       if (!Ty)
2087         return Error(BitcodeError::InvalidRecord);
2088       auto *PTy = dyn_cast<PointerType>(Ty);
2089       if (!PTy)
2090         return Error(BitcodeError::InvalidTypeForValue);
2091
2092       auto *NewGA =
2093           GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
2094                               GetDecodedLinkage(Record[2]), "", TheModule);
2095       // Old bitcode files didn't have visibility field.
2096       // Local linkage must have default visibility.
2097       if (Record.size() > 3 && !NewGA->hasLocalLinkage())
2098         // FIXME: Change to an error if non-default in 4.0.
2099         NewGA->setVisibility(GetDecodedVisibility(Record[3]));
2100       if (Record.size() > 4)
2101         NewGA->setDLLStorageClass(GetDecodedDLLStorageClass(Record[4]));
2102       else
2103         UpgradeDLLImportExportLinkage(NewGA, Record[2]);
2104       if (Record.size() > 5)
2105         NewGA->setThreadLocalMode(GetDecodedThreadLocalMode(Record[5]));
2106       if (Record.size() > 6)
2107         NewGA->setUnnamedAddr(Record[6]);
2108       ValueList.push_back(NewGA);
2109       AliasInits.push_back(std::make_pair(NewGA, Record[1]));
2110       break;
2111     }
2112     /// MODULE_CODE_PURGEVALS: [numvals]
2113     case bitc::MODULE_CODE_PURGEVALS:
2114       // Trim down the value list to the specified size.
2115       if (Record.size() < 1 || Record[0] > ValueList.size())
2116         return Error(BitcodeError::InvalidRecord);
2117       ValueList.shrinkTo(Record[0]);
2118       break;
2119     }
2120     Record.clear();
2121   }
2122 }
2123
2124 std::error_code BitcodeReader::ParseBitcodeInto(Module *M) {
2125   TheModule = nullptr;
2126
2127   if (std::error_code EC = InitStream())
2128     return EC;
2129
2130   // Sniff for the signature.
2131   if (Stream.Read(8) != 'B' ||
2132       Stream.Read(8) != 'C' ||
2133       Stream.Read(4) != 0x0 ||
2134       Stream.Read(4) != 0xC ||
2135       Stream.Read(4) != 0xE ||
2136       Stream.Read(4) != 0xD)
2137     return Error(BitcodeError::InvalidBitcodeSignature);
2138
2139   // We expect a number of well-defined blocks, though we don't necessarily
2140   // need to understand them all.
2141   while (1) {
2142     if (Stream.AtEndOfStream())
2143       return std::error_code();
2144
2145     BitstreamEntry Entry =
2146       Stream.advance(BitstreamCursor::AF_DontAutoprocessAbbrevs);
2147
2148     switch (Entry.Kind) {
2149     case BitstreamEntry::Error:
2150       return Error(BitcodeError::MalformedBlock);
2151     case BitstreamEntry::EndBlock:
2152       return std::error_code();
2153
2154     case BitstreamEntry::SubBlock:
2155       switch (Entry.ID) {
2156       case bitc::BLOCKINFO_BLOCK_ID:
2157         if (Stream.ReadBlockInfoBlock())
2158           return Error(BitcodeError::MalformedBlock);
2159         break;
2160       case bitc::MODULE_BLOCK_ID:
2161         // Reject multiple MODULE_BLOCK's in a single bitstream.
2162         if (TheModule)
2163           return Error(BitcodeError::InvalidMultipleBlocks);
2164         TheModule = M;
2165         if (std::error_code EC = ParseModule(false))
2166           return EC;
2167         if (LazyStreamer)
2168           return std::error_code();
2169         break;
2170       default:
2171         if (Stream.SkipBlock())
2172           return Error(BitcodeError::InvalidRecord);
2173         break;
2174       }
2175       continue;
2176     case BitstreamEntry::Record:
2177       // There should be no records in the top-level of blocks.
2178
2179       // The ranlib in Xcode 4 will align archive members by appending newlines
2180       // to the end of them. If this file size is a multiple of 4 but not 8, we
2181       // have to read and ignore these final 4 bytes :-(
2182       if (Stream.getAbbrevIDWidth() == 2 && Entry.ID == 2 &&
2183           Stream.Read(6) == 2 && Stream.Read(24) == 0xa0a0a &&
2184           Stream.AtEndOfStream())
2185         return std::error_code();
2186
2187       return Error(BitcodeError::InvalidRecord);
2188     }
2189   }
2190 }
2191
2192 ErrorOr<std::string> BitcodeReader::parseModuleTriple() {
2193   if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
2194     return Error(BitcodeError::InvalidRecord);
2195
2196   SmallVector<uint64_t, 64> Record;
2197
2198   std::string Triple;
2199   // Read all the records for this module.
2200   while (1) {
2201     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
2202
2203     switch (Entry.Kind) {
2204     case BitstreamEntry::SubBlock: // Handled for us already.
2205     case BitstreamEntry::Error:
2206       return Error(BitcodeError::MalformedBlock);
2207     case BitstreamEntry::EndBlock:
2208       return Triple;
2209     case BitstreamEntry::Record:
2210       // The interesting case.
2211       break;
2212     }
2213
2214     // Read a record.
2215     switch (Stream.readRecord(Entry.ID, Record)) {
2216     default: break;  // Default behavior, ignore unknown content.
2217     case bitc::MODULE_CODE_TRIPLE: {  // TRIPLE: [strchr x N]
2218       std::string S;
2219       if (ConvertToString(Record, 0, S))
2220         return Error(BitcodeError::InvalidRecord);
2221       Triple = S;
2222       break;
2223     }
2224     }
2225     Record.clear();
2226   }
2227   llvm_unreachable("Exit infinite loop");
2228 }
2229
2230 ErrorOr<std::string> BitcodeReader::parseTriple() {
2231   if (std::error_code EC = InitStream())
2232     return EC;
2233
2234   // Sniff for the signature.
2235   if (Stream.Read(8) != 'B' ||
2236       Stream.Read(8) != 'C' ||
2237       Stream.Read(4) != 0x0 ||
2238       Stream.Read(4) != 0xC ||
2239       Stream.Read(4) != 0xE ||
2240       Stream.Read(4) != 0xD)
2241     return Error(BitcodeError::InvalidBitcodeSignature);
2242
2243   // We expect a number of well-defined blocks, though we don't necessarily
2244   // need to understand them all.
2245   while (1) {
2246     BitstreamEntry Entry = Stream.advance();
2247
2248     switch (Entry.Kind) {
2249     case BitstreamEntry::Error:
2250       return Error(BitcodeError::MalformedBlock);
2251     case BitstreamEntry::EndBlock:
2252       return std::error_code();
2253
2254     case BitstreamEntry::SubBlock:
2255       if (Entry.ID == bitc::MODULE_BLOCK_ID)
2256         return parseModuleTriple();
2257
2258       // Ignore other sub-blocks.
2259       if (Stream.SkipBlock())
2260         return Error(BitcodeError::MalformedBlock);
2261       continue;
2262
2263     case BitstreamEntry::Record:
2264       Stream.skipRecord(Entry.ID);
2265       continue;
2266     }
2267   }
2268 }
2269
2270 /// ParseMetadataAttachment - Parse metadata attachments.
2271 std::error_code BitcodeReader::ParseMetadataAttachment() {
2272   if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
2273     return Error(BitcodeError::InvalidRecord);
2274
2275   SmallVector<uint64_t, 64> Record;
2276   while (1) {
2277     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
2278
2279     switch (Entry.Kind) {
2280     case BitstreamEntry::SubBlock: // Handled for us already.
2281     case BitstreamEntry::Error:
2282       return Error(BitcodeError::MalformedBlock);
2283     case BitstreamEntry::EndBlock:
2284       return std::error_code();
2285     case BitstreamEntry::Record:
2286       // The interesting case.
2287       break;
2288     }
2289
2290     // Read a metadata attachment record.
2291     Record.clear();
2292     switch (Stream.readRecord(Entry.ID, Record)) {
2293     default:  // Default behavior: ignore.
2294       break;
2295     case bitc::METADATA_ATTACHMENT: {
2296       unsigned RecordLength = Record.size();
2297       if (Record.empty() || (RecordLength - 1) % 2 == 1)
2298         return Error(BitcodeError::InvalidRecord);
2299       Instruction *Inst = InstructionList[Record[0]];
2300       for (unsigned i = 1; i != RecordLength; i = i+2) {
2301         unsigned Kind = Record[i];
2302         DenseMap<unsigned, unsigned>::iterator I =
2303           MDKindMap.find(Kind);
2304         if (I == MDKindMap.end())
2305           return Error(BitcodeError::InvalidID);
2306         Value *Node = MDValueList.getValueFwdRef(Record[i+1]);
2307         Inst->setMetadata(I->second, cast<MDNode>(Node));
2308         if (I->second == LLVMContext::MD_tbaa)
2309           InstsWithTBAATag.push_back(Inst);
2310       }
2311       break;
2312     }
2313     }
2314   }
2315 }
2316
2317 /// ParseFunctionBody - Lazily parse the specified function body block.
2318 std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
2319   if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
2320     return Error(BitcodeError::InvalidRecord);
2321
2322   InstructionList.clear();
2323   unsigned ModuleValueListSize = ValueList.size();
2324   unsigned ModuleMDValueListSize = MDValueList.size();
2325
2326   // Add all the function arguments to the value table.
2327   for(Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
2328     ValueList.push_back(I);
2329
2330   unsigned NextValueNo = ValueList.size();
2331   BasicBlock *CurBB = nullptr;
2332   unsigned CurBBNo = 0;
2333
2334   DebugLoc LastLoc;
2335
2336   // Read all the records.
2337   SmallVector<uint64_t, 64> Record;
2338   while (1) {
2339     BitstreamEntry Entry = Stream.advance();
2340
2341     switch (Entry.Kind) {
2342     case BitstreamEntry::Error:
2343       return Error(BitcodeError::MalformedBlock);
2344     case BitstreamEntry::EndBlock:
2345       goto OutOfRecordLoop;
2346
2347     case BitstreamEntry::SubBlock:
2348       switch (Entry.ID) {
2349       default:  // Skip unknown content.
2350         if (Stream.SkipBlock())
2351           return Error(BitcodeError::InvalidRecord);
2352         break;
2353       case bitc::CONSTANTS_BLOCK_ID:
2354         if (std::error_code EC = ParseConstants())
2355           return EC;
2356         NextValueNo = ValueList.size();
2357         break;
2358       case bitc::VALUE_SYMTAB_BLOCK_ID:
2359         if (std::error_code EC = ParseValueSymbolTable())
2360           return EC;
2361         break;
2362       case bitc::METADATA_ATTACHMENT_ID:
2363         if (std::error_code EC = ParseMetadataAttachment())
2364           return EC;
2365         break;
2366       case bitc::METADATA_BLOCK_ID:
2367         if (std::error_code EC = ParseMetadata())
2368           return EC;
2369         break;
2370       case bitc::USELIST_BLOCK_ID:
2371         if (std::error_code EC = ParseUseLists())
2372           return EC;
2373         break;
2374       }
2375       continue;
2376
2377     case BitstreamEntry::Record:
2378       // The interesting case.
2379       break;
2380     }
2381
2382     // Read a record.
2383     Record.clear();
2384     Instruction *I = nullptr;
2385     unsigned BitCode = Stream.readRecord(Entry.ID, Record);
2386     switch (BitCode) {
2387     default: // Default behavior: reject
2388       return Error(BitcodeError::InvalidValue);
2389     case bitc::FUNC_CODE_DECLAREBLOCKS: {   // DECLAREBLOCKS: [nblocks]
2390       if (Record.size() < 1 || Record[0] == 0)
2391         return Error(BitcodeError::InvalidRecord);
2392       // Create all the basic blocks for the function.
2393       FunctionBBs.resize(Record[0]);
2394
2395       // See if anything took the address of blocks in this function.
2396       auto BBFRI = BasicBlockFwdRefs.find(F);
2397       if (BBFRI == BasicBlockFwdRefs.end()) {
2398         for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
2399           FunctionBBs[i] = BasicBlock::Create(Context, "", F);
2400       } else {
2401         auto &BBRefs = BBFRI->second;
2402         // Check for invalid basic block references.
2403         if (BBRefs.size() > FunctionBBs.size())
2404           return Error(BitcodeError::InvalidID);
2405         assert(!BBRefs.empty() && "Unexpected empty array");
2406         assert(!BBRefs.front() && "Invalid reference to entry block");
2407         for (unsigned I = 0, E = FunctionBBs.size(), RE = BBRefs.size(); I != E;
2408              ++I)
2409           if (I < RE && BBRefs[I]) {
2410             BBRefs[I]->insertInto(F);
2411             FunctionBBs[I] = BBRefs[I];
2412           } else {
2413             FunctionBBs[I] = BasicBlock::Create(Context, "", F);
2414           }
2415
2416         // Erase from the table.
2417         BasicBlockFwdRefs.erase(BBFRI);
2418       }
2419
2420       CurBB = FunctionBBs[0];
2421       continue;
2422     }
2423
2424     case bitc::FUNC_CODE_DEBUG_LOC_AGAIN:  // DEBUG_LOC_AGAIN
2425       // This record indicates that the last instruction is at the same
2426       // location as the previous instruction with a location.
2427       I = nullptr;
2428
2429       // Get the last instruction emitted.
2430       if (CurBB && !CurBB->empty())
2431         I = &CurBB->back();
2432       else if (CurBBNo && FunctionBBs[CurBBNo-1] &&
2433                !FunctionBBs[CurBBNo-1]->empty())
2434         I = &FunctionBBs[CurBBNo-1]->back();
2435
2436       if (!I)
2437         return Error(BitcodeError::InvalidRecord);
2438       I->setDebugLoc(LastLoc);
2439       I = nullptr;
2440       continue;
2441
2442     case bitc::FUNC_CODE_DEBUG_LOC: {      // DEBUG_LOC: [line, col, scope, ia]
2443       I = nullptr;     // Get the last instruction emitted.
2444       if (CurBB && !CurBB->empty())
2445         I = &CurBB->back();
2446       else if (CurBBNo && FunctionBBs[CurBBNo-1] &&
2447                !FunctionBBs[CurBBNo-1]->empty())
2448         I = &FunctionBBs[CurBBNo-1]->back();
2449       if (!I || Record.size() < 4)
2450         return Error(BitcodeError::InvalidRecord);
2451
2452       unsigned Line = Record[0], Col = Record[1];
2453       unsigned ScopeID = Record[2], IAID = Record[3];
2454
2455       MDNode *Scope = nullptr, *IA = nullptr;
2456       if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1));
2457       if (IAID)    IA = cast<MDNode>(MDValueList.getValueFwdRef(IAID-1));
2458       LastLoc = DebugLoc::get(Line, Col, Scope, IA);
2459       I->setDebugLoc(LastLoc);
2460       I = nullptr;
2461       continue;
2462     }
2463
2464     case bitc::FUNC_CODE_INST_BINOP: {    // BINOP: [opval, ty, opval, opcode]
2465       unsigned OpNum = 0;
2466       Value *LHS, *RHS;
2467       if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2468           popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS) ||
2469           OpNum+1 > Record.size())
2470         return Error(BitcodeError::InvalidRecord);
2471
2472       int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
2473       if (Opc == -1)
2474         return Error(BitcodeError::InvalidRecord);
2475       I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2476       InstructionList.push_back(I);
2477       if (OpNum < Record.size()) {
2478         if (Opc == Instruction::Add ||
2479             Opc == Instruction::Sub ||
2480             Opc == Instruction::Mul ||
2481             Opc == Instruction::Shl) {
2482           if (Record[OpNum] & (1 << bitc::OBO_NO_SIGNED_WRAP))
2483             cast<BinaryOperator>(I)->setHasNoSignedWrap(true);
2484           if (Record[OpNum] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
2485             cast<BinaryOperator>(I)->setHasNoUnsignedWrap(true);
2486         } else if (Opc == Instruction::SDiv ||
2487                    Opc == Instruction::UDiv ||
2488                    Opc == Instruction::LShr ||
2489                    Opc == Instruction::AShr) {
2490           if (Record[OpNum] & (1 << bitc::PEO_EXACT))
2491             cast<BinaryOperator>(I)->setIsExact(true);
2492         } else if (isa<FPMathOperator>(I)) {
2493           FastMathFlags FMF;
2494           if (0 != (Record[OpNum] & FastMathFlags::UnsafeAlgebra))
2495             FMF.setUnsafeAlgebra();
2496           if (0 != (Record[OpNum] & FastMathFlags::NoNaNs))
2497             FMF.setNoNaNs();
2498           if (0 != (Record[OpNum] & FastMathFlags::NoInfs))
2499             FMF.setNoInfs();
2500           if (0 != (Record[OpNum] & FastMathFlags::NoSignedZeros))
2501             FMF.setNoSignedZeros();
2502           if (0 != (Record[OpNum] & FastMathFlags::AllowReciprocal))
2503             FMF.setAllowReciprocal();
2504           if (FMF.any())
2505             I->setFastMathFlags(FMF);
2506         }
2507
2508       }
2509       break;
2510     }
2511     case bitc::FUNC_CODE_INST_CAST: {    // CAST: [opval, opty, destty, castopc]
2512       unsigned OpNum = 0;
2513       Value *Op;
2514       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2515           OpNum+2 != Record.size())
2516         return Error(BitcodeError::InvalidRecord);
2517
2518       Type *ResTy = getTypeByID(Record[OpNum]);
2519       int Opc = GetDecodedCastOpcode(Record[OpNum+1]);
2520       if (Opc == -1 || !ResTy)
2521         return Error(BitcodeError::InvalidRecord);
2522       Instruction *Temp = nullptr;
2523       if ((I = UpgradeBitCastInst(Opc, Op, ResTy, Temp))) {
2524         if (Temp) {
2525           InstructionList.push_back(Temp);
2526           CurBB->getInstList().push_back(Temp);
2527         }
2528       } else {
2529         I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2530       }
2531       InstructionList.push_back(I);
2532       break;
2533     }
2534     case bitc::FUNC_CODE_INST_INBOUNDS_GEP:
2535     case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
2536       unsigned OpNum = 0;
2537       Value *BasePtr;
2538       if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
2539         return Error(BitcodeError::InvalidRecord);
2540
2541       SmallVector<Value*, 16> GEPIdx;
2542       while (OpNum != Record.size()) {
2543         Value *Op;
2544         if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2545           return Error(BitcodeError::InvalidRecord);
2546         GEPIdx.push_back(Op);
2547       }
2548
2549       I = GetElementPtrInst::Create(BasePtr, GEPIdx);
2550       InstructionList.push_back(I);
2551       if (BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP)
2552         cast<GetElementPtrInst>(I)->setIsInBounds(true);
2553       break;
2554     }
2555
2556     case bitc::FUNC_CODE_INST_EXTRACTVAL: {
2557                                        // EXTRACTVAL: [opty, opval, n x indices]
2558       unsigned OpNum = 0;
2559       Value *Agg;
2560       if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
2561         return Error(BitcodeError::InvalidRecord);
2562
2563       SmallVector<unsigned, 4> EXTRACTVALIdx;
2564       for (unsigned RecSize = Record.size();
2565            OpNum != RecSize; ++OpNum) {
2566         uint64_t Index = Record[OpNum];
2567         if ((unsigned)Index != Index)
2568           return Error(BitcodeError::InvalidValue);
2569         EXTRACTVALIdx.push_back((unsigned)Index);
2570       }
2571
2572       I = ExtractValueInst::Create(Agg, EXTRACTVALIdx);
2573       InstructionList.push_back(I);
2574       break;
2575     }
2576
2577     case bitc::FUNC_CODE_INST_INSERTVAL: {
2578                            // INSERTVAL: [opty, opval, opty, opval, n x indices]
2579       unsigned OpNum = 0;
2580       Value *Agg;
2581       if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
2582         return Error(BitcodeError::InvalidRecord);
2583       Value *Val;
2584       if (getValueTypePair(Record, OpNum, NextValueNo, Val))
2585         return Error(BitcodeError::InvalidRecord);
2586
2587       SmallVector<unsigned, 4> INSERTVALIdx;
2588       for (unsigned RecSize = Record.size();
2589            OpNum != RecSize; ++OpNum) {
2590         uint64_t Index = Record[OpNum];
2591         if ((unsigned)Index != Index)
2592           return Error(BitcodeError::InvalidValue);
2593         INSERTVALIdx.push_back((unsigned)Index);
2594       }
2595
2596       I = InsertValueInst::Create(Agg, Val, INSERTVALIdx);
2597       InstructionList.push_back(I);
2598       break;
2599     }
2600
2601     case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
2602       // obsolete form of select
2603       // handles select i1 ... in old bitcode
2604       unsigned OpNum = 0;
2605       Value *TrueVal, *FalseVal, *Cond;
2606       if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
2607           popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
2608           popValue(Record, OpNum, NextValueNo, Type::getInt1Ty(Context), Cond))
2609         return Error(BitcodeError::InvalidRecord);
2610
2611       I = SelectInst::Create(Cond, TrueVal, FalseVal);
2612       InstructionList.push_back(I);
2613       break;
2614     }
2615
2616     case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
2617       // new form of select
2618       // handles select i1 or select [N x i1]
2619       unsigned OpNum = 0;
2620       Value *TrueVal, *FalseVal, *Cond;
2621       if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
2622           popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
2623           getValueTypePair(Record, OpNum, NextValueNo, Cond))
2624         return Error(BitcodeError::InvalidRecord);
2625
2626       // select condition can be either i1 or [N x i1]
2627       if (VectorType* vector_type =
2628           dyn_cast<VectorType>(Cond->getType())) {
2629         // expect <n x i1>
2630         if (vector_type->getElementType() != Type::getInt1Ty(Context))
2631           return Error(BitcodeError::InvalidTypeForValue);
2632       } else {
2633         // expect i1
2634         if (Cond->getType() != Type::getInt1Ty(Context))
2635           return Error(BitcodeError::InvalidTypeForValue);
2636       }
2637
2638       I = SelectInst::Create(Cond, TrueVal, FalseVal);
2639       InstructionList.push_back(I);
2640       break;
2641     }
2642
2643     case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
2644       unsigned OpNum = 0;
2645       Value *Vec, *Idx;
2646       if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
2647           getValueTypePair(Record, OpNum, NextValueNo, Idx))
2648         return Error(BitcodeError::InvalidRecord);
2649       I = ExtractElementInst::Create(Vec, Idx);
2650       InstructionList.push_back(I);
2651       break;
2652     }
2653
2654     case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
2655       unsigned OpNum = 0;
2656       Value *Vec, *Elt, *Idx;
2657       if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
2658           popValue(Record, OpNum, NextValueNo,
2659                    cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
2660           getValueTypePair(Record, OpNum, NextValueNo, Idx))
2661         return Error(BitcodeError::InvalidRecord);
2662       I = InsertElementInst::Create(Vec, Elt, Idx);
2663       InstructionList.push_back(I);
2664       break;
2665     }
2666
2667     case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
2668       unsigned OpNum = 0;
2669       Value *Vec1, *Vec2, *Mask;
2670       if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
2671           popValue(Record, OpNum, NextValueNo, Vec1->getType(), Vec2))
2672         return Error(BitcodeError::InvalidRecord);
2673
2674       if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
2675         return Error(BitcodeError::InvalidRecord);
2676       I = new ShuffleVectorInst(Vec1, Vec2, Mask);
2677       InstructionList.push_back(I);
2678       break;
2679     }
2680
2681     case bitc::FUNC_CODE_INST_CMP:   // CMP: [opty, opval, opval, pred]
2682       // Old form of ICmp/FCmp returning bool
2683       // Existed to differentiate between icmp/fcmp and vicmp/vfcmp which were
2684       // both legal on vectors but had different behaviour.
2685     case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
2686       // FCmp/ICmp returning bool or vector of bool
2687
2688       unsigned OpNum = 0;
2689       Value *LHS, *RHS;
2690       if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2691           popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS) ||
2692           OpNum+1 != Record.size())
2693         return Error(BitcodeError::InvalidRecord);
2694
2695       if (LHS->getType()->isFPOrFPVectorTy())
2696         I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2697       else
2698         I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
2699       InstructionList.push_back(I);
2700       break;
2701     }
2702
2703     case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
2704       {
2705         unsigned Size = Record.size();
2706         if (Size == 0) {
2707           I = ReturnInst::Create(Context);
2708           InstructionList.push_back(I);
2709           break;
2710         }
2711
2712         unsigned OpNum = 0;
2713         Value *Op = nullptr;
2714         if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2715           return Error(BitcodeError::InvalidRecord);
2716         if (OpNum != Record.size())
2717           return Error(BitcodeError::InvalidRecord);
2718
2719         I = ReturnInst::Create(Context, Op);
2720         InstructionList.push_back(I);
2721         break;
2722       }
2723     case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
2724       if (Record.size() != 1 && Record.size() != 3)
2725         return Error(BitcodeError::InvalidRecord);
2726       BasicBlock *TrueDest = getBasicBlock(Record[0]);
2727       if (!TrueDest)
2728         return Error(BitcodeError::InvalidRecord);
2729
2730       if (Record.size() == 1) {
2731         I = BranchInst::Create(TrueDest);
2732         InstructionList.push_back(I);
2733       }
2734       else {
2735         BasicBlock *FalseDest = getBasicBlock(Record[1]);
2736         Value *Cond = getValue(Record, 2, NextValueNo,
2737                                Type::getInt1Ty(Context));
2738         if (!FalseDest || !Cond)
2739           return Error(BitcodeError::InvalidRecord);
2740         I = BranchInst::Create(TrueDest, FalseDest, Cond);
2741         InstructionList.push_back(I);
2742       }
2743       break;
2744     }
2745     case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, op0, op1, ...]
2746       // Check magic
2747       if ((Record[0] >> 16) == SWITCH_INST_MAGIC) {
2748         // "New" SwitchInst format with case ranges. The changes to write this
2749         // format were reverted but we still recognize bitcode that uses it.
2750         // Hopefully someday we will have support for case ranges and can use
2751         // this format again.
2752
2753         Type *OpTy = getTypeByID(Record[1]);
2754         unsigned ValueBitWidth = cast<IntegerType>(OpTy)->getBitWidth();
2755
2756         Value *Cond = getValue(Record, 2, NextValueNo, OpTy);
2757         BasicBlock *Default = getBasicBlock(Record[3]);
2758         if (!OpTy || !Cond || !Default)
2759           return Error(BitcodeError::InvalidRecord);
2760
2761         unsigned NumCases = Record[4];
2762
2763         SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
2764         InstructionList.push_back(SI);
2765
2766         unsigned CurIdx = 5;
2767         for (unsigned i = 0; i != NumCases; ++i) {
2768           SmallVector<ConstantInt*, 1> CaseVals;
2769           unsigned NumItems = Record[CurIdx++];
2770           for (unsigned ci = 0; ci != NumItems; ++ci) {
2771             bool isSingleNumber = Record[CurIdx++];
2772
2773             APInt Low;
2774             unsigned ActiveWords = 1;
2775             if (ValueBitWidth > 64)
2776               ActiveWords = Record[CurIdx++];
2777             Low = ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
2778                                 ValueBitWidth);
2779             CurIdx += ActiveWords;
2780
2781             if (!isSingleNumber) {
2782               ActiveWords = 1;
2783               if (ValueBitWidth > 64)
2784                 ActiveWords = Record[CurIdx++];
2785               APInt High =
2786                   ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
2787                                 ValueBitWidth);
2788               CurIdx += ActiveWords;
2789
2790               // FIXME: It is not clear whether values in the range should be
2791               // compared as signed or unsigned values. The partially
2792               // implemented changes that used this format in the past used
2793               // unsigned comparisons.
2794               for ( ; Low.ule(High); ++Low)
2795                 CaseVals.push_back(ConstantInt::get(Context, Low));
2796             } else
2797               CaseVals.push_back(ConstantInt::get(Context, Low));
2798           }
2799           BasicBlock *DestBB = getBasicBlock(Record[CurIdx++]);
2800           for (SmallVector<ConstantInt*, 1>::iterator cvi = CaseVals.begin(),
2801                  cve = CaseVals.end(); cvi != cve; ++cvi)
2802             SI->addCase(*cvi, DestBB);
2803         }
2804         I = SI;
2805         break;
2806       }
2807
2808       // Old SwitchInst format without case ranges.
2809
2810       if (Record.size() < 3 || (Record.size() & 1) == 0)
2811         return Error(BitcodeError::InvalidRecord);
2812       Type *OpTy = getTypeByID(Record[0]);
2813       Value *Cond = getValue(Record, 1, NextValueNo, OpTy);
2814       BasicBlock *Default = getBasicBlock(Record[2]);
2815       if (!OpTy || !Cond || !Default)
2816         return Error(BitcodeError::InvalidRecord);
2817       unsigned NumCases = (Record.size()-3)/2;
2818       SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
2819       InstructionList.push_back(SI);
2820       for (unsigned i = 0, e = NumCases; i != e; ++i) {
2821         ConstantInt *CaseVal =
2822           dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
2823         BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
2824         if (!CaseVal || !DestBB) {
2825           delete SI;
2826           return Error(BitcodeError::InvalidRecord);
2827         }
2828         SI->addCase(CaseVal, DestBB);
2829       }
2830       I = SI;
2831       break;
2832     }
2833     case bitc::FUNC_CODE_INST_INDIRECTBR: { // INDIRECTBR: [opty, op0, op1, ...]
2834       if (Record.size() < 2)
2835         return Error(BitcodeError::InvalidRecord);
2836       Type *OpTy = getTypeByID(Record[0]);
2837       Value *Address = getValue(Record, 1, NextValueNo, OpTy);
2838       if (!OpTy || !Address)
2839         return Error(BitcodeError::InvalidRecord);
2840       unsigned NumDests = Record.size()-2;
2841       IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
2842       InstructionList.push_back(IBI);
2843       for (unsigned i = 0, e = NumDests; i != e; ++i) {
2844         if (BasicBlock *DestBB = getBasicBlock(Record[2+i])) {
2845           IBI->addDestination(DestBB);
2846         } else {
2847           delete IBI;
2848           return Error(BitcodeError::InvalidRecord);
2849         }
2850       }
2851       I = IBI;
2852       break;
2853     }
2854
2855     case bitc::FUNC_CODE_INST_INVOKE: {
2856       // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
2857       if (Record.size() < 4)
2858         return Error(BitcodeError::InvalidRecord);
2859       AttributeSet PAL = getAttributes(Record[0]);
2860       unsigned CCInfo = Record[1];
2861       BasicBlock *NormalBB = getBasicBlock(Record[2]);
2862       BasicBlock *UnwindBB = getBasicBlock(Record[3]);
2863
2864       unsigned OpNum = 4;
2865       Value *Callee;
2866       if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
2867         return Error(BitcodeError::InvalidRecord);
2868
2869       PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
2870       FunctionType *FTy = !CalleeTy ? nullptr :
2871         dyn_cast<FunctionType>(CalleeTy->getElementType());
2872
2873       // Check that the right number of fixed parameters are here.
2874       if (!FTy || !NormalBB || !UnwindBB ||
2875           Record.size() < OpNum+FTy->getNumParams())
2876         return Error(BitcodeError::InvalidRecord);
2877
2878       SmallVector<Value*, 16> Ops;
2879       for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
2880         Ops.push_back(getValue(Record, OpNum, NextValueNo,
2881                                FTy->getParamType(i)));
2882         if (!Ops.back())
2883           return Error(BitcodeError::InvalidRecord);
2884       }
2885
2886       if (!FTy->isVarArg()) {
2887         if (Record.size() != OpNum)
2888           return Error(BitcodeError::InvalidRecord);
2889       } else {
2890         // Read type/value pairs for varargs params.
2891         while (OpNum != Record.size()) {
2892           Value *Op;
2893           if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2894             return Error(BitcodeError::InvalidRecord);
2895           Ops.push_back(Op);
2896         }
2897       }
2898
2899       I = InvokeInst::Create(Callee, NormalBB, UnwindBB, Ops);
2900       InstructionList.push_back(I);
2901       cast<InvokeInst>(I)->setCallingConv(
2902         static_cast<CallingConv::ID>(CCInfo));
2903       cast<InvokeInst>(I)->setAttributes(PAL);
2904       break;
2905     }
2906     case bitc::FUNC_CODE_INST_RESUME: { // RESUME: [opval]
2907       unsigned Idx = 0;
2908       Value *Val = nullptr;
2909       if (getValueTypePair(Record, Idx, NextValueNo, Val))
2910         return Error(BitcodeError::InvalidRecord);
2911       I = ResumeInst::Create(Val);
2912       InstructionList.push_back(I);
2913       break;
2914     }
2915     case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
2916       I = new UnreachableInst(Context);
2917       InstructionList.push_back(I);
2918       break;
2919     case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
2920       if (Record.size() < 1 || ((Record.size()-1)&1))
2921         return Error(BitcodeError::InvalidRecord);
2922       Type *Ty = getTypeByID(Record[0]);
2923       if (!Ty)
2924         return Error(BitcodeError::InvalidRecord);
2925
2926       PHINode *PN = PHINode::Create(Ty, (Record.size()-1)/2);
2927       InstructionList.push_back(PN);
2928
2929       for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
2930         Value *V;
2931         // With the new function encoding, it is possible that operands have
2932         // negative IDs (for forward references).  Use a signed VBR
2933         // representation to keep the encoding small.
2934         if (UseRelativeIDs)
2935           V = getValueSigned(Record, 1+i, NextValueNo, Ty);
2936         else
2937           V = getValue(Record, 1+i, NextValueNo, Ty);
2938         BasicBlock *BB = getBasicBlock(Record[2+i]);
2939         if (!V || !BB)
2940           return Error(BitcodeError::InvalidRecord);
2941         PN->addIncoming(V, BB);
2942       }
2943       I = PN;
2944       break;
2945     }
2946
2947     case bitc::FUNC_CODE_INST_LANDINGPAD: {
2948       // LANDINGPAD: [ty, val, val, num, (id0,val0 ...)?]
2949       unsigned Idx = 0;
2950       if (Record.size() < 4)
2951         return Error(BitcodeError::InvalidRecord);
2952       Type *Ty = getTypeByID(Record[Idx++]);
2953       if (!Ty)
2954         return Error(BitcodeError::InvalidRecord);
2955       Value *PersFn = nullptr;
2956       if (getValueTypePair(Record, Idx, NextValueNo, PersFn))
2957         return Error(BitcodeError::InvalidRecord);
2958
2959       bool IsCleanup = !!Record[Idx++];
2960       unsigned NumClauses = Record[Idx++];
2961       LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, NumClauses);
2962       LP->setCleanup(IsCleanup);
2963       for (unsigned J = 0; J != NumClauses; ++J) {
2964         LandingPadInst::ClauseType CT =
2965           LandingPadInst::ClauseType(Record[Idx++]); (void)CT;
2966         Value *Val;
2967
2968         if (getValueTypePair(Record, Idx, NextValueNo, Val)) {
2969           delete LP;
2970           return Error(BitcodeError::InvalidRecord);
2971         }
2972
2973         assert((CT != LandingPadInst::Catch ||
2974                 !isa<ArrayType>(Val->getType())) &&
2975                "Catch clause has a invalid type!");
2976         assert((CT != LandingPadInst::Filter ||
2977                 isa<ArrayType>(Val->getType())) &&
2978                "Filter clause has invalid type!");
2979         LP->addClause(cast<Constant>(Val));
2980       }
2981
2982       I = LP;
2983       InstructionList.push_back(I);
2984       break;
2985     }
2986
2987     case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, opty, op, align]
2988       if (Record.size() != 4)
2989         return Error(BitcodeError::InvalidRecord);
2990       PointerType *Ty =
2991         dyn_cast_or_null<PointerType>(getTypeByID(Record[0]));
2992       Type *OpTy = getTypeByID(Record[1]);
2993       Value *Size = getFnValueByID(Record[2], OpTy);
2994       unsigned AlignRecord = Record[3];
2995       bool InAlloca = AlignRecord & (1 << 5);
2996       unsigned Align = AlignRecord & ((1 << 5) - 1);
2997       if (!Ty || !Size)
2998         return Error(BitcodeError::InvalidRecord);
2999       AllocaInst *AI = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
3000       AI->setUsedWithInAlloca(InAlloca);
3001       I = AI;
3002       InstructionList.push_back(I);
3003       break;
3004     }
3005     case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
3006       unsigned OpNum = 0;
3007       Value *Op;
3008       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
3009           OpNum+2 != Record.size())
3010         return Error(BitcodeError::InvalidRecord);
3011
3012       I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1);
3013       InstructionList.push_back(I);
3014       break;
3015     }
3016     case bitc::FUNC_CODE_INST_LOADATOMIC: {
3017        // LOADATOMIC: [opty, op, align, vol, ordering, synchscope]
3018       unsigned OpNum = 0;
3019       Value *Op;
3020       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
3021           OpNum+4 != Record.size())
3022         return Error(BitcodeError::InvalidRecord);
3023
3024       AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
3025       if (Ordering == NotAtomic || Ordering == Release ||
3026           Ordering == AcquireRelease)
3027         return Error(BitcodeError::InvalidRecord);
3028       if (Ordering != NotAtomic && Record[OpNum] == 0)
3029         return Error(BitcodeError::InvalidRecord);
3030       SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
3031
3032       I = new LoadInst(Op, "", Record[OpNum+1], (1 << Record[OpNum]) >> 1,
3033                        Ordering, SynchScope);
3034       InstructionList.push_back(I);
3035       break;
3036     }
3037     case bitc::FUNC_CODE_INST_STORE: { // STORE2:[ptrty, ptr, val, align, vol]
3038       unsigned OpNum = 0;
3039       Value *Val, *Ptr;
3040       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
3041           popValue(Record, OpNum, NextValueNo,
3042                     cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
3043           OpNum+2 != Record.size())
3044         return Error(BitcodeError::InvalidRecord);
3045
3046       I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
3047       InstructionList.push_back(I);
3048       break;
3049     }
3050     case bitc::FUNC_CODE_INST_STOREATOMIC: {
3051       // STOREATOMIC: [ptrty, ptr, val, align, vol, ordering, synchscope]
3052       unsigned OpNum = 0;
3053       Value *Val, *Ptr;
3054       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
3055           popValue(Record, OpNum, NextValueNo,
3056                     cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
3057           OpNum+4 != Record.size())
3058         return Error(BitcodeError::InvalidRecord);
3059
3060       AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
3061       if (Ordering == NotAtomic || Ordering == Acquire ||
3062           Ordering == AcquireRelease)
3063         return Error(BitcodeError::InvalidRecord);
3064       SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
3065       if (Ordering != NotAtomic && Record[OpNum] == 0)
3066         return Error(BitcodeError::InvalidRecord);
3067
3068       I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1,
3069                         Ordering, SynchScope);
3070       InstructionList.push_back(I);
3071       break;
3072     }
3073     case bitc::FUNC_CODE_INST_CMPXCHG: {
3074       // CMPXCHG:[ptrty, ptr, cmp, new, vol, successordering, synchscope,
3075       //          failureordering?, isweak?]
3076       unsigned OpNum = 0;
3077       Value *Ptr, *Cmp, *New;
3078       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
3079           popValue(Record, OpNum, NextValueNo,
3080                     cast<PointerType>(Ptr->getType())->getElementType(), Cmp) ||
3081           popValue(Record, OpNum, NextValueNo,
3082                     cast<PointerType>(Ptr->getType())->getElementType(), New) ||
3083           (Record.size() < OpNum + 3 || Record.size() > OpNum + 5))
3084         return Error(BitcodeError::InvalidRecord);
3085       AtomicOrdering SuccessOrdering = GetDecodedOrdering(Record[OpNum+1]);
3086       if (SuccessOrdering == NotAtomic || SuccessOrdering == Unordered)
3087         return Error(BitcodeError::InvalidRecord);
3088       SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+2]);
3089
3090       AtomicOrdering FailureOrdering;
3091       if (Record.size() < 7)
3092         FailureOrdering =
3093             AtomicCmpXchgInst::getStrongestFailureOrdering(SuccessOrdering);
3094       else
3095         FailureOrdering = GetDecodedOrdering(Record[OpNum+3]);
3096
3097       I = new AtomicCmpXchgInst(Ptr, Cmp, New, SuccessOrdering, FailureOrdering,
3098                                 SynchScope);
3099       cast<AtomicCmpXchgInst>(I)->setVolatile(Record[OpNum]);
3100
3101       if (Record.size() < 8) {
3102         // Before weak cmpxchgs existed, the instruction simply returned the
3103         // value loaded from memory, so bitcode files from that era will be
3104         // expecting the first component of a modern cmpxchg.
3105         CurBB->getInstList().push_back(I);
3106         I = ExtractValueInst::Create(I, 0);
3107       } else {
3108         cast<AtomicCmpXchgInst>(I)->setWeak(Record[OpNum+4]);
3109       }
3110
3111       InstructionList.push_back(I);
3112       break;
3113     }
3114     case bitc::FUNC_CODE_INST_ATOMICRMW: {
3115       // ATOMICRMW:[ptrty, ptr, val, op, vol, ordering, synchscope]
3116       unsigned OpNum = 0;
3117       Value *Ptr, *Val;
3118       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
3119           popValue(Record, OpNum, NextValueNo,
3120                     cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
3121           OpNum+4 != Record.size())
3122         return Error(BitcodeError::InvalidRecord);
3123       AtomicRMWInst::BinOp Operation = GetDecodedRMWOperation(Record[OpNum]);
3124       if (Operation < AtomicRMWInst::FIRST_BINOP ||
3125           Operation > AtomicRMWInst::LAST_BINOP)
3126         return Error(BitcodeError::InvalidRecord);
3127       AtomicOrdering Ordering = GetDecodedOrdering(Record[OpNum+2]);
3128       if (Ordering == NotAtomic || Ordering == Unordered)
3129         return Error(BitcodeError::InvalidRecord);
3130       SynchronizationScope SynchScope = GetDecodedSynchScope(Record[OpNum+3]);
3131       I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);
3132       cast<AtomicRMWInst>(I)->setVolatile(Record[OpNum+1]);
3133       InstructionList.push_back(I);
3134       break;
3135     }
3136     case bitc::FUNC_CODE_INST_FENCE: { // FENCE:[ordering, synchscope]
3137       if (2 != Record.size())
3138         return Error(BitcodeError::InvalidRecord);
3139       AtomicOrdering Ordering = GetDecodedOrdering(Record[0]);
3140       if (Ordering == NotAtomic || Ordering == Unordered ||
3141           Ordering == Monotonic)
3142         return Error(BitcodeError::InvalidRecord);
3143       SynchronizationScope SynchScope = GetDecodedSynchScope(Record[1]);
3144       I = new FenceInst(Context, Ordering, SynchScope);
3145       InstructionList.push_back(I);
3146       break;
3147     }
3148     case bitc::FUNC_CODE_INST_CALL: {
3149       // CALL: [paramattrs, cc, fnty, fnid, arg0, arg1...]
3150       if (Record.size() < 3)
3151         return Error(BitcodeError::InvalidRecord);
3152
3153       AttributeSet PAL = getAttributes(Record[0]);
3154       unsigned CCInfo = Record[1];
3155
3156       unsigned OpNum = 2;
3157       Value *Callee;
3158       if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
3159         return Error(BitcodeError::InvalidRecord);
3160
3161       PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
3162       FunctionType *FTy = nullptr;
3163       if (OpTy) FTy = dyn_cast<FunctionType>(OpTy->getElementType());
3164       if (!FTy || Record.size() < FTy->getNumParams()+OpNum)
3165         return Error(BitcodeError::InvalidRecord);
3166
3167       SmallVector<Value*, 16> Args;
3168       // Read the fixed params.
3169       for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
3170         if (FTy->getParamType(i)->isLabelTy())
3171           Args.push_back(getBasicBlock(Record[OpNum]));
3172         else
3173           Args.push_back(getValue(Record, OpNum, NextValueNo,
3174                                   FTy->getParamType(i)));
3175         if (!Args.back())
3176           return Error(BitcodeError::InvalidRecord);
3177       }
3178
3179       // Read type/value pairs for varargs params.
3180       if (!FTy->isVarArg()) {
3181         if (OpNum != Record.size())
3182           return Error(BitcodeError::InvalidRecord);
3183       } else {
3184         while (OpNum != Record.size()) {
3185           Value *Op;
3186           if (getValueTypePair(Record, OpNum, NextValueNo, Op))
3187             return Error(BitcodeError::InvalidRecord);
3188           Args.push_back(Op);
3189         }
3190       }
3191
3192       I = CallInst::Create(Callee, Args);
3193       InstructionList.push_back(I);
3194       cast<CallInst>(I)->setCallingConv(
3195           static_cast<CallingConv::ID>((~(1U << 14) & CCInfo) >> 1));
3196       CallInst::TailCallKind TCK = CallInst::TCK_None;
3197       if (CCInfo & 1)
3198         TCK = CallInst::TCK_Tail;
3199       if (CCInfo & (1 << 14))
3200         TCK = CallInst::TCK_MustTail;
3201       cast<CallInst>(I)->setTailCallKind(TCK);
3202       cast<CallInst>(I)->setAttributes(PAL);
3203       break;
3204     }
3205     case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
3206       if (Record.size() < 3)
3207         return Error(BitcodeError::InvalidRecord);
3208       Type *OpTy = getTypeByID(Record[0]);
3209       Value *Op = getValue(Record, 1, NextValueNo, OpTy);
3210       Type *ResTy = getTypeByID(Record[2]);
3211       if (!OpTy || !Op || !ResTy)
3212         return Error(BitcodeError::InvalidRecord);
3213       I = new VAArgInst(Op, ResTy);
3214       InstructionList.push_back(I);
3215       break;
3216     }
3217     }
3218
3219     // Add instruction to end of current BB.  If there is no current BB, reject
3220     // this file.
3221     if (!CurBB) {
3222       delete I;
3223       return Error(BitcodeError::InvalidInstructionWithNoBB);
3224     }
3225     CurBB->getInstList().push_back(I);
3226
3227     // If this was a terminator instruction, move to the next block.
3228     if (isa<TerminatorInst>(I)) {
3229       ++CurBBNo;
3230       CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : nullptr;
3231     }
3232
3233     // Non-void values get registered in the value table for future use.
3234     if (I && !I->getType()->isVoidTy())
3235       ValueList.AssignValue(I, NextValueNo++);
3236   }
3237
3238 OutOfRecordLoop:
3239
3240   // Check the function list for unresolved values.
3241   if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
3242     if (!A->getParent()) {
3243       // We found at least one unresolved value.  Nuke them all to avoid leaks.
3244       for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
3245         if ((A = dyn_cast_or_null<Argument>(ValueList[i])) && !A->getParent()) {
3246           A->replaceAllUsesWith(UndefValue::get(A->getType()));
3247           delete A;
3248         }
3249       }
3250       return Error(BitcodeError::NeverResolvedValueFoundInFunction);
3251     }
3252   }
3253
3254   // FIXME: Check for unresolved forward-declared metadata references
3255   // and clean up leaks.
3256
3257   // Trim the value list down to the size it was before we parsed this function.
3258   ValueList.shrinkTo(ModuleValueListSize);
3259   MDValueList.shrinkTo(ModuleMDValueListSize);
3260   std::vector<BasicBlock*>().swap(FunctionBBs);
3261   return std::error_code();
3262 }
3263
3264 /// Find the function body in the bitcode stream
3265 std::error_code BitcodeReader::FindFunctionInStream(
3266     Function *F,
3267     DenseMap<Function *, uint64_t>::iterator DeferredFunctionInfoIterator) {
3268   while (DeferredFunctionInfoIterator->second == 0) {
3269     if (Stream.AtEndOfStream())
3270       return Error(BitcodeError::CouldNotFindFunctionInStream);
3271     // ParseModule will parse the next body in the stream and set its
3272     // position in the DeferredFunctionInfo map.
3273     if (std::error_code EC = ParseModule(true))
3274       return EC;
3275   }
3276   return std::error_code();
3277 }
3278
3279 //===----------------------------------------------------------------------===//
3280 // GVMaterializer implementation
3281 //===----------------------------------------------------------------------===//
3282
3283 void BitcodeReader::releaseBuffer() { Buffer.release(); }
3284
3285 std::error_code BitcodeReader::materialize(GlobalValue *GV) {
3286   Function *F = dyn_cast<Function>(GV);
3287   // If it's not a function or is already material, ignore the request.
3288   if (!F || !F->isMaterializable())
3289     return std::error_code();
3290
3291   DenseMap<Function*, uint64_t>::iterator DFII = DeferredFunctionInfo.find(F);
3292   assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
3293   // If its position is recorded as 0, its body is somewhere in the stream
3294   // but we haven't seen it yet.
3295   if (DFII->second == 0 && LazyStreamer)
3296     if (std::error_code EC = FindFunctionInStream(F, DFII))
3297       return EC;
3298
3299   // Move the bit stream to the saved position of the deferred function body.
3300   Stream.JumpToBit(DFII->second);
3301
3302   if (std::error_code EC = ParseFunctionBody(F))
3303     return EC;
3304   F->setIsMaterializable(false);
3305
3306   // Upgrade any old intrinsic calls in the function.
3307   for (UpgradedIntrinsicMap::iterator I = UpgradedIntrinsics.begin(),
3308        E = UpgradedIntrinsics.end(); I != E; ++I) {
3309     if (I->first != I->second) {
3310       for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3311            UI != UE;) {
3312         if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3313           UpgradeIntrinsicCall(CI, I->second);
3314       }
3315     }
3316   }
3317
3318   // Bring in any functions that this function forward-referenced via
3319   // blockaddresses.
3320   return materializeForwardReferencedFunctions();
3321 }
3322
3323 bool BitcodeReader::isDematerializable(const GlobalValue *GV) const {
3324   const Function *F = dyn_cast<Function>(GV);
3325   if (!F || F->isDeclaration())
3326     return false;
3327
3328   // Dematerializing F would leave dangling references that wouldn't be
3329   // reconnected on re-materialization.
3330   if (BlockAddressesTaken.count(F))
3331     return false;
3332
3333   return DeferredFunctionInfo.count(const_cast<Function*>(F));
3334 }
3335
3336 void BitcodeReader::Dematerialize(GlobalValue *GV) {
3337   Function *F = dyn_cast<Function>(GV);
3338   // If this function isn't dematerializable, this is a noop.
3339   if (!F || !isDematerializable(F))
3340     return;
3341
3342   assert(DeferredFunctionInfo.count(F) && "No info to read function later?");
3343
3344   // Just forget the function body, we can remat it later.
3345   F->dropAllReferences();
3346   F->setIsMaterializable(true);
3347 }
3348
3349 std::error_code BitcodeReader::MaterializeModule(Module *M) {
3350   assert(M == TheModule &&
3351          "Can only Materialize the Module this BitcodeReader is attached to.");
3352
3353   // Promise to materialize all forward references.
3354   WillMaterializeAllForwardRefs = true;
3355
3356   // Iterate over the module, deserializing any functions that are still on
3357   // disk.
3358   for (Module::iterator F = TheModule->begin(), E = TheModule->end();
3359        F != E; ++F) {
3360     if (F->isMaterializable()) {
3361       if (std::error_code EC = materialize(F))
3362         return EC;
3363     }
3364   }
3365   // At this point, if there are any function bodies, the current bit is
3366   // pointing to the END_BLOCK record after them. Now make sure the rest
3367   // of the bits in the module have been read.
3368   if (NextUnreadBit)
3369     ParseModule(true);
3370
3371   // Check that all block address forward references got resolved (as we
3372   // promised above).
3373   if (!BasicBlockFwdRefs.empty())
3374     return Error(BitcodeError::NeverResolvedFunctionFromBlockAddress);
3375
3376   // Upgrade any intrinsic calls that slipped through (should not happen!) and
3377   // delete the old functions to clean up. We can't do this unless the entire
3378   // module is materialized because there could always be another function body
3379   // with calls to the old function.
3380   for (std::vector<std::pair<Function*, Function*> >::iterator I =
3381        UpgradedIntrinsics.begin(), E = UpgradedIntrinsics.end(); I != E; ++I) {
3382     if (I->first != I->second) {
3383       for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3384            UI != UE;) {
3385         if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3386           UpgradeIntrinsicCall(CI, I->second);
3387       }
3388       if (!I->first->use_empty())
3389         I->first->replaceAllUsesWith(I->second);
3390       I->first->eraseFromParent();
3391     }
3392   }
3393   std::vector<std::pair<Function*, Function*> >().swap(UpgradedIntrinsics);
3394
3395   for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
3396     UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
3397
3398   UpgradeDebugInfo(*M);
3399   return std::error_code();
3400 }
3401
3402 std::error_code BitcodeReader::InitStream() {
3403   if (LazyStreamer)
3404     return InitLazyStream();
3405   return InitStreamFromBuffer();
3406 }
3407
3408 std::error_code BitcodeReader::InitStreamFromBuffer() {
3409   const unsigned char *BufPtr = (const unsigned char*)Buffer->getBufferStart();
3410   const unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
3411
3412   if (Buffer->getBufferSize() & 3)
3413     return Error(BitcodeError::InvalidBitcodeSignature);
3414
3415   // If we have a wrapper header, parse it and ignore the non-bc file contents.
3416   // The magic number is 0x0B17C0DE stored in little endian.
3417   if (isBitcodeWrapper(BufPtr, BufEnd))
3418     if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
3419       return Error(BitcodeError::InvalidBitcodeWrapperHeader);
3420
3421   StreamFile.reset(new BitstreamReader(BufPtr, BufEnd));
3422   Stream.init(*StreamFile);
3423
3424   return std::error_code();
3425 }
3426
3427 std::error_code BitcodeReader::InitLazyStream() {
3428   // Check and strip off the bitcode wrapper; BitstreamReader expects never to
3429   // see it.
3430   StreamingMemoryObject *Bytes = new StreamingMemoryObject(LazyStreamer);
3431   StreamFile.reset(new BitstreamReader(Bytes));
3432   Stream.init(*StreamFile);
3433
3434   unsigned char buf[16];
3435   if (Bytes->readBytes(0, 16, buf) == -1)
3436     return Error(BitcodeError::InvalidBitcodeSignature);
3437
3438   if (!isBitcode(buf, buf + 16))
3439     return Error(BitcodeError::InvalidBitcodeSignature);
3440
3441   if (isBitcodeWrapper(buf, buf + 4)) {
3442     const unsigned char *bitcodeStart = buf;
3443     const unsigned char *bitcodeEnd = buf + 16;
3444     SkipBitcodeWrapperHeader(bitcodeStart, bitcodeEnd, false);
3445     Bytes->dropLeadingBytes(bitcodeStart - buf);
3446     Bytes->setKnownObjectSize(bitcodeEnd - bitcodeStart);
3447   }
3448   return std::error_code();
3449 }
3450
3451 namespace {
3452 class BitcodeErrorCategoryType : public std::error_category {
3453   const char *name() const LLVM_NOEXCEPT override {
3454     return "llvm.bitcode";
3455   }
3456   std::string message(int IE) const override {
3457     BitcodeError E = static_cast<BitcodeError>(IE);
3458     switch (E) {
3459     case BitcodeError::ConflictingMETADATA_KINDRecords:
3460       return "Conflicting METADATA_KIND records";
3461     case BitcodeError::CouldNotFindFunctionInStream:
3462       return "Could not find function in stream";
3463     case BitcodeError::ExpectedConstant:
3464       return "Expected a constant";
3465     case BitcodeError::InsufficientFunctionProtos:
3466       return "Insufficient function protos";
3467     case BitcodeError::InvalidBitcodeSignature:
3468       return "Invalid bitcode signature";
3469     case BitcodeError::InvalidBitcodeWrapperHeader:
3470       return "Invalid bitcode wrapper header";
3471     case BitcodeError::InvalidConstantReference:
3472       return "Invalid ronstant reference";
3473     case BitcodeError::InvalidID:
3474       return "Invalid ID";
3475     case BitcodeError::InvalidInstructionWithNoBB:
3476       return "Invalid instruction with no BB";
3477     case BitcodeError::InvalidRecord:
3478       return "Invalid record";
3479     case BitcodeError::InvalidTypeForValue:
3480       return "Invalid type for value";
3481     case BitcodeError::InvalidTYPETable:
3482       return "Invalid TYPE table";
3483     case BitcodeError::InvalidType:
3484       return "Invalid type";
3485     case BitcodeError::MalformedBlock:
3486       return "Malformed block";
3487     case BitcodeError::MalformedGlobalInitializerSet:
3488       return "Malformed global initializer set";
3489     case BitcodeError::InvalidMultipleBlocks:
3490       return "Invalid multiple blocks";
3491     case BitcodeError::NeverResolvedValueFoundInFunction:
3492       return "Never resolved value found in function";
3493     case BitcodeError::NeverResolvedFunctionFromBlockAddress:
3494       return "Never resolved function from blockaddress";
3495     case BitcodeError::InvalidValue:
3496       return "Invalid value";
3497     }
3498     llvm_unreachable("Unknown error type!");
3499   }
3500 };
3501 }
3502
3503 static ManagedStatic<BitcodeErrorCategoryType> ErrorCategory;
3504
3505 const std::error_category &llvm::BitcodeErrorCategory() {
3506   return *ErrorCategory;
3507 }
3508
3509 //===----------------------------------------------------------------------===//
3510 // External interface
3511 //===----------------------------------------------------------------------===//
3512
3513 /// \brief Get a lazy one-at-time loading module from bitcode.
3514 ///
3515 /// This isn't always used in a lazy context.  In particular, it's also used by
3516 /// \a parseBitcodeFile().  If this is truly lazy, then we need to eagerly pull
3517 /// in forward-referenced functions from block address references.
3518 ///
3519 /// \param[in] WillMaterializeAll Set to \c true if the caller promises to
3520 /// materialize everything -- in particular, if this isn't truly lazy.
3521 static ErrorOr<Module *>
3522 getLazyBitcodeModuleImpl(std::unique_ptr<MemoryBuffer> &&Buffer,
3523                          LLVMContext &Context, bool WillMaterializeAll) {
3524   Module *M = new Module(Buffer->getBufferIdentifier(), Context);
3525   BitcodeReader *R = new BitcodeReader(Buffer.get(), Context);
3526   M->setMaterializer(R);
3527
3528   auto cleanupOnError = [&](std::error_code EC) {
3529     R->releaseBuffer(); // Never take ownership on error.
3530     delete M;  // Also deletes R.
3531     return EC;
3532   };
3533
3534   if (std::error_code EC = R->ParseBitcodeInto(M))
3535     return cleanupOnError(EC);
3536
3537   if (!WillMaterializeAll)
3538     // Resolve forward references from blockaddresses.
3539     if (std::error_code EC = R->materializeForwardReferencedFunctions())
3540       return cleanupOnError(EC);
3541
3542   Buffer.release(); // The BitcodeReader owns it now.
3543   return M;
3544 }
3545
3546 ErrorOr<Module *>
3547 llvm::getLazyBitcodeModule(std::unique_ptr<MemoryBuffer> &&Buffer,
3548                            LLVMContext &Context) {
3549   return getLazyBitcodeModuleImpl(std::move(Buffer), Context, false);
3550 }
3551
3552 Module *llvm::getStreamedBitcodeModule(const std::string &name,
3553                                        DataStreamer *streamer,
3554                                        LLVMContext &Context,
3555                                        std::string *ErrMsg) {
3556   Module *M = new Module(name, Context);
3557   BitcodeReader *R = new BitcodeReader(streamer, Context);
3558   M->setMaterializer(R);
3559   if (std::error_code EC = R->ParseBitcodeInto(M)) {
3560     if (ErrMsg)
3561       *ErrMsg = EC.message();
3562     delete M;  // Also deletes R.
3563     return nullptr;
3564   }
3565   return M;
3566 }
3567
3568 ErrorOr<Module *> llvm::parseBitcodeFile(MemoryBufferRef Buffer,
3569                                          LLVMContext &Context) {
3570   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
3571   ErrorOr<Module *> ModuleOrErr =
3572       getLazyBitcodeModuleImpl(std::move(Buf), Context, true);
3573   if (!ModuleOrErr)
3574     return ModuleOrErr;
3575   Module *M = ModuleOrErr.get();
3576   // Read in the entire module, and destroy the BitcodeReader.
3577   if (std::error_code EC = M->materializeAllPermanently()) {
3578     delete M;
3579     return EC;
3580   }
3581
3582   // TODO: Restore the use-lists to the in-memory state when the bitcode was
3583   // written.  We must defer until the Module has been fully materialized.
3584
3585   return M;
3586 }
3587
3588 std::string llvm::getBitcodeTargetTriple(MemoryBufferRef Buffer,
3589                                          LLVMContext &Context) {
3590   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
3591   auto R = llvm::make_unique<BitcodeReader>(Buf.release(), Context);
3592   ErrorOr<std::string> Triple = R->parseTriple();
3593   if (Triple.getError())
3594     return "";
3595   return Triple.get();
3596 }