Ensure MDNode used as key in metadata linking map cannot be RAUWed
[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 "llvm/ADT/STLExtras.h"
12 #include "llvm/ADT/SmallString.h"
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/ADT/Triple.h"
15 #include "llvm/Bitcode/BitstreamReader.h"
16 #include "llvm/Bitcode/LLVMBitCodes.h"
17 #include "llvm/IR/AutoUpgrade.h"
18 #include "llvm/IR/Constants.h"
19 #include "llvm/IR/DebugInfo.h"
20 #include "llvm/IR/DebugInfoMetadata.h"
21 #include "llvm/IR/DerivedTypes.h"
22 #include "llvm/IR/DiagnosticPrinter.h"
23 #include "llvm/IR/GVMaterializer.h"
24 #include "llvm/IR/InlineAsm.h"
25 #include "llvm/IR/IntrinsicInst.h"
26 #include "llvm/IR/LLVMContext.h"
27 #include "llvm/IR/Module.h"
28 #include "llvm/IR/OperandTraits.h"
29 #include "llvm/IR/Operator.h"
30 #include "llvm/IR/FunctionInfo.h"
31 #include "llvm/IR/ValueHandle.h"
32 #include "llvm/Support/DataStream.h"
33 #include "llvm/Support/ManagedStatic.h"
34 #include "llvm/Support/MathExtras.h"
35 #include "llvm/Support/MemoryBuffer.h"
36 #include "llvm/Support/raw_ostream.h"
37 #include <deque>
38 using namespace llvm;
39
40 namespace {
41 enum {
42   SWITCH_INST_MAGIC = 0x4B5 // May 2012 => 1205 => Hex
43 };
44
45 class BitcodeReaderValueList {
46   std::vector<WeakVH> ValuePtrs;
47
48   /// As we resolve forward-referenced constants, we add information about them
49   /// to this vector.  This allows us to resolve them in bulk instead of
50   /// resolving each reference at a time.  See the code in
51   /// ResolveConstantForwardRefs for more information about this.
52   ///
53   /// The key of this vector is the placeholder constant, the value is the slot
54   /// number that holds the resolved value.
55   typedef std::vector<std::pair<Constant*, unsigned> > ResolveConstantsTy;
56   ResolveConstantsTy ResolveConstants;
57   LLVMContext &Context;
58 public:
59   BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
60   ~BitcodeReaderValueList() {
61     assert(ResolveConstants.empty() && "Constants not resolved?");
62   }
63
64   // vector compatibility methods
65   unsigned size() const { return ValuePtrs.size(); }
66   void resize(unsigned N) { ValuePtrs.resize(N); }
67   void push_back(Value *V) { ValuePtrs.emplace_back(V); }
68
69   void clear() {
70     assert(ResolveConstants.empty() && "Constants not resolved?");
71     ValuePtrs.clear();
72   }
73
74   Value *operator[](unsigned i) const {
75     assert(i < ValuePtrs.size());
76     return ValuePtrs[i];
77   }
78
79   Value *back() const { return ValuePtrs.back(); }
80     void pop_back() { ValuePtrs.pop_back(); }
81   bool empty() const { return ValuePtrs.empty(); }
82   void shrinkTo(unsigned N) {
83     assert(N <= size() && "Invalid shrinkTo request!");
84     ValuePtrs.resize(N);
85   }
86
87   Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
88   Value *getValueFwdRef(unsigned Idx, Type *Ty);
89
90   void assignValue(Value *V, unsigned Idx);
91
92   /// Once all constants are read, this method bulk resolves any forward
93   /// references.
94   void resolveConstantForwardRefs();
95 };
96
97 class BitcodeReaderMetadataList {
98   unsigned NumFwdRefs;
99   bool AnyFwdRefs;
100   unsigned MinFwdRef;
101   unsigned MaxFwdRef;
102   std::vector<TrackingMDRef> MetadataPtrs;
103
104   LLVMContext &Context;
105 public:
106   BitcodeReaderMetadataList(LLVMContext &C)
107       : NumFwdRefs(0), AnyFwdRefs(false), Context(C) {}
108
109   // vector compatibility methods
110   unsigned size() const { return MetadataPtrs.size(); }
111   void resize(unsigned N) { MetadataPtrs.resize(N); }
112   void push_back(Metadata *MD) { MetadataPtrs.emplace_back(MD); }
113   void clear() { MetadataPtrs.clear(); }
114   Metadata *back() const { return MetadataPtrs.back(); }
115   void pop_back() { MetadataPtrs.pop_back(); }
116   bool empty() const { return MetadataPtrs.empty(); }
117
118   Metadata *operator[](unsigned i) const {
119     assert(i < MetadataPtrs.size());
120     return MetadataPtrs[i];
121   }
122
123   void shrinkTo(unsigned N) {
124     assert(N <= size() && "Invalid shrinkTo request!");
125     MetadataPtrs.resize(N);
126   }
127
128   Metadata *getValueFwdRef(unsigned Idx);
129   void assignValue(Metadata *MD, unsigned Idx);
130   void tryToResolveCycles();
131 };
132
133 class BitcodeReader : public GVMaterializer {
134   LLVMContext &Context;
135   Module *TheModule = nullptr;
136   std::unique_ptr<MemoryBuffer> Buffer;
137   std::unique_ptr<BitstreamReader> StreamFile;
138   BitstreamCursor Stream;
139   // Next offset to start scanning for lazy parsing of function bodies.
140   uint64_t NextUnreadBit = 0;
141   // Last function offset found in the VST.
142   uint64_t LastFunctionBlockBit = 0;
143   bool SeenValueSymbolTable = false;
144   uint64_t VSTOffset = 0;
145   // Contains an arbitrary and optional string identifying the bitcode producer
146   std::string ProducerIdentification;
147   // Number of module level metadata records specified by the
148   // MODULE_CODE_METADATA_VALUES record.
149   unsigned NumModuleMDs = 0;
150   // Support older bitcode without the MODULE_CODE_METADATA_VALUES record.
151   bool SeenModuleValuesRecord = false;
152
153   std::vector<Type*> TypeList;
154   BitcodeReaderValueList ValueList;
155   BitcodeReaderMetadataList MetadataList;
156   std::vector<Comdat *> ComdatList;
157   SmallVector<Instruction *, 64> InstructionList;
158
159   std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInits;
160   std::vector<std::pair<GlobalAlias*, unsigned> > AliasInits;
161   std::vector<std::pair<Function*, unsigned> > FunctionPrefixes;
162   std::vector<std::pair<Function*, unsigned> > FunctionPrologues;
163   std::vector<std::pair<Function*, unsigned> > FunctionPersonalityFns;
164
165   SmallVector<Instruction*, 64> InstsWithTBAATag;
166
167   /// The set of attributes by index.  Index zero in the file is for null, and
168   /// is thus not represented here.  As such all indices are off by one.
169   std::vector<AttributeSet> MAttributes;
170
171   /// The set of attribute groups.
172   std::map<unsigned, AttributeSet> MAttributeGroups;
173
174   /// While parsing a function body, this is a list of the basic blocks for the
175   /// function.
176   std::vector<BasicBlock*> FunctionBBs;
177
178   // When reading the module header, this list is populated with functions that
179   // have bodies later in the file.
180   std::vector<Function*> FunctionsWithBodies;
181
182   // When intrinsic functions are encountered which require upgrading they are
183   // stored here with their replacement function.
184   typedef DenseMap<Function*, Function*> UpgradedIntrinsicMap;
185   UpgradedIntrinsicMap UpgradedIntrinsics;
186
187   // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
188   DenseMap<unsigned, unsigned> MDKindMap;
189
190   // Several operations happen after the module header has been read, but
191   // before function bodies are processed. This keeps track of whether
192   // we've done this yet.
193   bool SeenFirstFunctionBody = false;
194
195   /// When function bodies are initially scanned, this map contains info about
196   /// where to find deferred function body in the stream.
197   DenseMap<Function*, uint64_t> DeferredFunctionInfo;
198
199   /// When Metadata block is initially scanned when parsing the module, we may
200   /// choose to defer parsing of the metadata. This vector contains info about
201   /// which Metadata blocks are deferred.
202   std::vector<uint64_t> DeferredMetadataInfo;
203
204   /// These are basic blocks forward-referenced by block addresses.  They are
205   /// inserted lazily into functions when they're loaded.  The basic block ID is
206   /// its index into the vector.
207   DenseMap<Function *, std::vector<BasicBlock *>> BasicBlockFwdRefs;
208   std::deque<Function *> BasicBlockFwdRefQueue;
209
210   /// Indicates that we are using a new encoding for instruction operands where
211   /// most operands in the current FUNCTION_BLOCK are encoded relative to the
212   /// instruction number, for a more compact encoding.  Some instruction
213   /// operands are not relative to the instruction ID: basic block numbers, and
214   /// types. Once the old style function blocks have been phased out, we would
215   /// not need this flag.
216   bool UseRelativeIDs = false;
217
218   /// True if all functions will be materialized, negating the need to process
219   /// (e.g.) blockaddress forward references.
220   bool WillMaterializeAllForwardRefs = false;
221
222   /// True if any Metadata block has been materialized.
223   bool IsMetadataMaterialized = false;
224
225   bool StripDebugInfo = false;
226
227   /// Functions that need to be matched with subprograms when upgrading old
228   /// metadata.
229   SmallDenseMap<Function *, DISubprogram *, 16> FunctionsWithSPs;
230
231   std::vector<std::string> BundleTags;
232
233 public:
234   std::error_code error(BitcodeError E, const Twine &Message);
235   std::error_code error(BitcodeError E);
236   std::error_code error(const Twine &Message);
237
238   BitcodeReader(MemoryBuffer *Buffer, LLVMContext &Context);
239   BitcodeReader(LLVMContext &Context);
240   ~BitcodeReader() override { freeState(); }
241
242   std::error_code materializeForwardReferencedFunctions();
243
244   void freeState();
245
246   void releaseBuffer();
247
248   std::error_code materialize(GlobalValue *GV) override;
249   std::error_code materializeModule() override;
250   std::vector<StructType *> getIdentifiedStructTypes() const override;
251
252   /// \brief Main interface to parsing a bitcode buffer.
253   /// \returns true if an error occurred.
254   std::error_code parseBitcodeInto(std::unique_ptr<DataStreamer> Streamer,
255                                    Module *M,
256                                    bool ShouldLazyLoadMetadata = false);
257
258   /// \brief Cheap mechanism to just extract module triple
259   /// \returns true if an error occurred.
260   ErrorOr<std::string> parseTriple();
261
262   /// Cheap mechanism to just extract the identification block out of bitcode.
263   ErrorOr<std::string> parseIdentificationBlock();
264
265   static uint64_t decodeSignRotatedValue(uint64_t V);
266
267   /// Materialize any deferred Metadata block.
268   std::error_code materializeMetadata() override;
269
270   void setStripDebugInfo() override;
271
272   /// Save the mapping between the metadata values and the corresponding
273   /// value id that were recorded in the MetadataList during parsing. If
274   /// OnlyTempMD is true, then only record those entries that are still
275   /// temporary metadata. This interface is used when metadata linking is
276   /// performed as a postpass, such as during function importing.
277   void saveMetadataList(DenseMap<const Metadata *, unsigned> &MetadataToIDs,
278                         bool OnlyTempMD) override;
279
280 private:
281   /// Parse the "IDENTIFICATION_BLOCK_ID" block, populate the
282   // ProducerIdentification data member, and do some basic enforcement on the
283   // "epoch" encoded in the bitcode.
284   std::error_code parseBitcodeVersion();
285
286   std::vector<StructType *> IdentifiedStructTypes;
287   StructType *createIdentifiedStructType(LLVMContext &Context, StringRef Name);
288   StructType *createIdentifiedStructType(LLVMContext &Context);
289
290   Type *getTypeByID(unsigned ID);
291   Value *getFnValueByID(unsigned ID, Type *Ty) {
292     if (Ty && Ty->isMetadataTy())
293       return MetadataAsValue::get(Ty->getContext(), getFnMetadataByID(ID));
294     return ValueList.getValueFwdRef(ID, Ty);
295   }
296   Metadata *getFnMetadataByID(unsigned ID) {
297     return MetadataList.getValueFwdRef(ID);
298   }
299   BasicBlock *getBasicBlock(unsigned ID) const {
300     if (ID >= FunctionBBs.size()) return nullptr; // Invalid ID
301     return FunctionBBs[ID];
302   }
303   AttributeSet getAttributes(unsigned i) const {
304     if (i-1 < MAttributes.size())
305       return MAttributes[i-1];
306     return AttributeSet();
307   }
308
309   /// Read a value/type pair out of the specified record from slot 'Slot'.
310   /// Increment Slot past the number of slots used in the record. Return true on
311   /// failure.
312   bool getValueTypePair(SmallVectorImpl<uint64_t> &Record, unsigned &Slot,
313                         unsigned InstNum, Value *&ResVal) {
314     if (Slot == Record.size()) return true;
315     unsigned ValNo = (unsigned)Record[Slot++];
316     // Adjust the ValNo, if it was encoded relative to the InstNum.
317     if (UseRelativeIDs)
318       ValNo = InstNum - ValNo;
319     if (ValNo < InstNum) {
320       // If this is not a forward reference, just return the value we already
321       // have.
322       ResVal = getFnValueByID(ValNo, nullptr);
323       return ResVal == nullptr;
324     }
325     if (Slot == Record.size())
326       return true;
327
328     unsigned TypeNo = (unsigned)Record[Slot++];
329     ResVal = getFnValueByID(ValNo, getTypeByID(TypeNo));
330     return ResVal == nullptr;
331   }
332
333   /// Read a value out of the specified record from slot 'Slot'. Increment Slot
334   /// past the number of slots used by the value in the record. Return true if
335   /// there is an error.
336   bool popValue(SmallVectorImpl<uint64_t> &Record, unsigned &Slot,
337                 unsigned InstNum, Type *Ty, Value *&ResVal) {
338     if (getValue(Record, Slot, InstNum, Ty, ResVal))
339       return true;
340     // All values currently take a single record slot.
341     ++Slot;
342     return false;
343   }
344
345   /// Like popValue, but does not increment the Slot number.
346   bool getValue(SmallVectorImpl<uint64_t> &Record, unsigned Slot,
347                 unsigned InstNum, Type *Ty, Value *&ResVal) {
348     ResVal = getValue(Record, Slot, InstNum, Ty);
349     return ResVal == nullptr;
350   }
351
352   /// Version of getValue that returns ResVal directly, or 0 if there is an
353   /// error.
354   Value *getValue(SmallVectorImpl<uint64_t> &Record, unsigned Slot,
355                   unsigned InstNum, Type *Ty) {
356     if (Slot == Record.size()) return nullptr;
357     unsigned ValNo = (unsigned)Record[Slot];
358     // Adjust the ValNo, if it was encoded relative to the InstNum.
359     if (UseRelativeIDs)
360       ValNo = InstNum - ValNo;
361     return getFnValueByID(ValNo, Ty);
362   }
363
364   /// Like getValue, but decodes signed VBRs.
365   Value *getValueSigned(SmallVectorImpl<uint64_t> &Record, unsigned Slot,
366                         unsigned InstNum, Type *Ty) {
367     if (Slot == Record.size()) return nullptr;
368     unsigned ValNo = (unsigned)decodeSignRotatedValue(Record[Slot]);
369     // Adjust the ValNo, if it was encoded relative to the InstNum.
370     if (UseRelativeIDs)
371       ValNo = InstNum - ValNo;
372     return getFnValueByID(ValNo, Ty);
373   }
374
375   /// Converts alignment exponent (i.e. power of two (or zero)) to the
376   /// corresponding alignment to use. If alignment is too large, returns
377   /// a corresponding error code.
378   std::error_code parseAlignmentValue(uint64_t Exponent, unsigned &Alignment);
379   std::error_code parseAttrKind(uint64_t Code, Attribute::AttrKind *Kind);
380   std::error_code parseModule(uint64_t ResumeBit,
381                               bool ShouldLazyLoadMetadata = false);
382   std::error_code parseAttributeBlock();
383   std::error_code parseAttributeGroupBlock();
384   std::error_code parseTypeTable();
385   std::error_code parseTypeTableBody();
386   std::error_code parseOperandBundleTags();
387
388   ErrorOr<Value *> recordValue(SmallVectorImpl<uint64_t> &Record,
389                                unsigned NameIndex, Triple &TT);
390   std::error_code parseValueSymbolTable(uint64_t Offset = 0);
391   std::error_code parseConstants();
392   std::error_code rememberAndSkipFunctionBodies();
393   std::error_code rememberAndSkipFunctionBody();
394   /// Save the positions of the Metadata blocks and skip parsing the blocks.
395   std::error_code rememberAndSkipMetadata();
396   std::error_code parseFunctionBody(Function *F);
397   std::error_code globalCleanup();
398   std::error_code resolveGlobalAndAliasInits();
399   std::error_code parseMetadata(bool ModuleLevel = false);
400   std::error_code parseMetadataKinds();
401   std::error_code parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record);
402   std::error_code parseMetadataAttachment(Function &F);
403   ErrorOr<std::string> parseModuleTriple();
404   std::error_code parseUseLists();
405   std::error_code initStream(std::unique_ptr<DataStreamer> Streamer);
406   std::error_code initStreamFromBuffer();
407   std::error_code initLazyStream(std::unique_ptr<DataStreamer> Streamer);
408   std::error_code findFunctionInStream(
409       Function *F,
410       DenseMap<Function *, uint64_t>::iterator DeferredFunctionInfoIterator);
411 };
412
413 /// Class to manage reading and parsing function summary index bitcode
414 /// files/sections.
415 class FunctionIndexBitcodeReader {
416   DiagnosticHandlerFunction DiagnosticHandler;
417
418   /// Eventually points to the function index built during parsing.
419   FunctionInfoIndex *TheIndex = nullptr;
420
421   std::unique_ptr<MemoryBuffer> Buffer;
422   std::unique_ptr<BitstreamReader> StreamFile;
423   BitstreamCursor Stream;
424
425   /// \brief Used to indicate whether we are doing lazy parsing of summary data.
426   ///
427   /// If false, the summary section is fully parsed into the index during
428   /// the initial parse. Otherwise, if true, the caller is expected to
429   /// invoke \a readFunctionSummary for each summary needed, and the summary
430   /// section is thus parsed lazily.
431   bool IsLazy = false;
432
433   /// Used to indicate whether caller only wants to check for the presence
434   /// of the function summary bitcode section. All blocks are skipped,
435   /// but the SeenFuncSummary boolean is set.
436   bool CheckFuncSummaryPresenceOnly = false;
437
438   /// Indicates whether we have encountered a function summary section
439   /// yet during parsing, used when checking if file contains function
440   /// summary section.
441   bool SeenFuncSummary = false;
442
443   /// \brief Map populated during function summary section parsing, and
444   /// consumed during ValueSymbolTable parsing.
445   ///
446   /// Used to correlate summary records with VST entries. For the per-module
447   /// index this maps the ValueID to the parsed function summary, and
448   /// for the combined index this maps the summary record's bitcode
449   /// offset to the function summary (since in the combined index the
450   /// VST records do not hold value IDs but rather hold the function
451   /// summary record offset).
452   DenseMap<uint64_t, std::unique_ptr<FunctionSummary>> SummaryMap;
453
454   /// Map populated during module path string table parsing, from the
455   /// module ID to a string reference owned by the index's module
456   /// path string table, used to correlate with combined index function
457   /// summary records.
458   DenseMap<uint64_t, StringRef> ModuleIdMap;
459
460 public:
461   std::error_code error(BitcodeError E, const Twine &Message);
462   std::error_code error(BitcodeError E);
463   std::error_code error(const Twine &Message);
464
465   FunctionIndexBitcodeReader(MemoryBuffer *Buffer,
466                              DiagnosticHandlerFunction DiagnosticHandler,
467                              bool IsLazy = false,
468                              bool CheckFuncSummaryPresenceOnly = false);
469   FunctionIndexBitcodeReader(DiagnosticHandlerFunction DiagnosticHandler,
470                              bool IsLazy = false,
471                              bool CheckFuncSummaryPresenceOnly = false);
472   ~FunctionIndexBitcodeReader() { freeState(); }
473
474   void freeState();
475
476   void releaseBuffer();
477
478   /// Check if the parser has encountered a function summary section.
479   bool foundFuncSummary() { return SeenFuncSummary; }
480
481   /// \brief Main interface to parsing a bitcode buffer.
482   /// \returns true if an error occurred.
483   std::error_code parseSummaryIndexInto(std::unique_ptr<DataStreamer> Streamer,
484                                         FunctionInfoIndex *I);
485
486   /// \brief Interface for parsing a function summary lazily.
487   std::error_code parseFunctionSummary(std::unique_ptr<DataStreamer> Streamer,
488                                        FunctionInfoIndex *I,
489                                        size_t FunctionSummaryOffset);
490
491 private:
492   std::error_code parseModule();
493   std::error_code parseValueSymbolTable();
494   std::error_code parseEntireSummary();
495   std::error_code parseModuleStringTable();
496   std::error_code initStream(std::unique_ptr<DataStreamer> Streamer);
497   std::error_code initStreamFromBuffer();
498   std::error_code initLazyStream(std::unique_ptr<DataStreamer> Streamer);
499 };
500 } // namespace
501
502 BitcodeDiagnosticInfo::BitcodeDiagnosticInfo(std::error_code EC,
503                                              DiagnosticSeverity Severity,
504                                              const Twine &Msg)
505     : DiagnosticInfo(DK_Bitcode, Severity), Msg(Msg), EC(EC) {}
506
507 void BitcodeDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
508
509 static std::error_code error(DiagnosticHandlerFunction DiagnosticHandler,
510                              std::error_code EC, const Twine &Message) {
511   BitcodeDiagnosticInfo DI(EC, DS_Error, Message);
512   DiagnosticHandler(DI);
513   return EC;
514 }
515
516 static std::error_code error(DiagnosticHandlerFunction DiagnosticHandler,
517                              std::error_code EC) {
518   return error(DiagnosticHandler, EC, EC.message());
519 }
520
521 static std::error_code error(LLVMContext &Context, std::error_code EC,
522                              const Twine &Message) {
523   return error([&](const DiagnosticInfo &DI) { Context.diagnose(DI); }, EC,
524                Message);
525 }
526
527 static std::error_code error(LLVMContext &Context, std::error_code EC) {
528   return error(Context, EC, EC.message());
529 }
530
531 static std::error_code error(LLVMContext &Context, const Twine &Message) {
532   return error(Context, make_error_code(BitcodeError::CorruptedBitcode),
533                Message);
534 }
535
536 std::error_code BitcodeReader::error(BitcodeError E, const Twine &Message) {
537   if (!ProducerIdentification.empty()) {
538     return ::error(Context, make_error_code(E),
539                    Message + " (Producer: '" + ProducerIdentification +
540                        "' Reader: 'LLVM " + LLVM_VERSION_STRING "')");
541   }
542   return ::error(Context, make_error_code(E), Message);
543 }
544
545 std::error_code BitcodeReader::error(const Twine &Message) {
546   if (!ProducerIdentification.empty()) {
547     return ::error(Context, make_error_code(BitcodeError::CorruptedBitcode),
548                    Message + " (Producer: '" + ProducerIdentification +
549                        "' Reader: 'LLVM " + LLVM_VERSION_STRING "')");
550   }
551   return ::error(Context, make_error_code(BitcodeError::CorruptedBitcode),
552                  Message);
553 }
554
555 std::error_code BitcodeReader::error(BitcodeError E) {
556   return ::error(Context, make_error_code(E));
557 }
558
559 BitcodeReader::BitcodeReader(MemoryBuffer *Buffer, LLVMContext &Context)
560     : Context(Context), Buffer(Buffer), ValueList(Context),
561       MetadataList(Context) {}
562
563 BitcodeReader::BitcodeReader(LLVMContext &Context)
564     : Context(Context), Buffer(nullptr), ValueList(Context),
565       MetadataList(Context) {}
566
567 std::error_code BitcodeReader::materializeForwardReferencedFunctions() {
568   if (WillMaterializeAllForwardRefs)
569     return std::error_code();
570
571   // Prevent recursion.
572   WillMaterializeAllForwardRefs = true;
573
574   while (!BasicBlockFwdRefQueue.empty()) {
575     Function *F = BasicBlockFwdRefQueue.front();
576     BasicBlockFwdRefQueue.pop_front();
577     assert(F && "Expected valid function");
578     if (!BasicBlockFwdRefs.count(F))
579       // Already materialized.
580       continue;
581
582     // Check for a function that isn't materializable to prevent an infinite
583     // loop.  When parsing a blockaddress stored in a global variable, there
584     // isn't a trivial way to check if a function will have a body without a
585     // linear search through FunctionsWithBodies, so just check it here.
586     if (!F->isMaterializable())
587       return error("Never resolved function from blockaddress");
588
589     // Try to materialize F.
590     if (std::error_code EC = materialize(F))
591       return EC;
592   }
593   assert(BasicBlockFwdRefs.empty() && "Function missing from queue");
594
595   // Reset state.
596   WillMaterializeAllForwardRefs = false;
597   return std::error_code();
598 }
599
600 void BitcodeReader::freeState() {
601   Buffer = nullptr;
602   std::vector<Type*>().swap(TypeList);
603   ValueList.clear();
604   MetadataList.clear();
605   std::vector<Comdat *>().swap(ComdatList);
606
607   std::vector<AttributeSet>().swap(MAttributes);
608   std::vector<BasicBlock*>().swap(FunctionBBs);
609   std::vector<Function*>().swap(FunctionsWithBodies);
610   DeferredFunctionInfo.clear();
611   DeferredMetadataInfo.clear();
612   MDKindMap.clear();
613
614   assert(BasicBlockFwdRefs.empty() && "Unresolved blockaddress fwd references");
615   BasicBlockFwdRefQueue.clear();
616 }
617
618 //===----------------------------------------------------------------------===//
619 //  Helper functions to implement forward reference resolution, etc.
620 //===----------------------------------------------------------------------===//
621
622 /// Convert a string from a record into an std::string, return true on failure.
623 template <typename StrTy>
624 static bool convertToString(ArrayRef<uint64_t> Record, unsigned Idx,
625                             StrTy &Result) {
626   if (Idx > Record.size())
627     return true;
628
629   for (unsigned i = Idx, e = Record.size(); i != e; ++i)
630     Result += (char)Record[i];
631   return false;
632 }
633
634 static bool hasImplicitComdat(size_t Val) {
635   switch (Val) {
636   default:
637     return false;
638   case 1:  // Old WeakAnyLinkage
639   case 4:  // Old LinkOnceAnyLinkage
640   case 10: // Old WeakODRLinkage
641   case 11: // Old LinkOnceODRLinkage
642     return true;
643   }
644 }
645
646 static GlobalValue::LinkageTypes getDecodedLinkage(unsigned Val) {
647   switch (Val) {
648   default: // Map unknown/new linkages to external
649   case 0:
650     return GlobalValue::ExternalLinkage;
651   case 2:
652     return GlobalValue::AppendingLinkage;
653   case 3:
654     return GlobalValue::InternalLinkage;
655   case 5:
656     return GlobalValue::ExternalLinkage; // Obsolete DLLImportLinkage
657   case 6:
658     return GlobalValue::ExternalLinkage; // Obsolete DLLExportLinkage
659   case 7:
660     return GlobalValue::ExternalWeakLinkage;
661   case 8:
662     return GlobalValue::CommonLinkage;
663   case 9:
664     return GlobalValue::PrivateLinkage;
665   case 12:
666     return GlobalValue::AvailableExternallyLinkage;
667   case 13:
668     return GlobalValue::PrivateLinkage; // Obsolete LinkerPrivateLinkage
669   case 14:
670     return GlobalValue::PrivateLinkage; // Obsolete LinkerPrivateWeakLinkage
671   case 15:
672     return GlobalValue::ExternalLinkage; // Obsolete LinkOnceODRAutoHideLinkage
673   case 1: // Old value with implicit comdat.
674   case 16:
675     return GlobalValue::WeakAnyLinkage;
676   case 10: // Old value with implicit comdat.
677   case 17:
678     return GlobalValue::WeakODRLinkage;
679   case 4: // Old value with implicit comdat.
680   case 18:
681     return GlobalValue::LinkOnceAnyLinkage;
682   case 11: // Old value with implicit comdat.
683   case 19:
684     return GlobalValue::LinkOnceODRLinkage;
685   }
686 }
687
688 static GlobalValue::VisibilityTypes getDecodedVisibility(unsigned Val) {
689   switch (Val) {
690   default: // Map unknown visibilities to default.
691   case 0: return GlobalValue::DefaultVisibility;
692   case 1: return GlobalValue::HiddenVisibility;
693   case 2: return GlobalValue::ProtectedVisibility;
694   }
695 }
696
697 static GlobalValue::DLLStorageClassTypes
698 getDecodedDLLStorageClass(unsigned Val) {
699   switch (Val) {
700   default: // Map unknown values to default.
701   case 0: return GlobalValue::DefaultStorageClass;
702   case 1: return GlobalValue::DLLImportStorageClass;
703   case 2: return GlobalValue::DLLExportStorageClass;
704   }
705 }
706
707 static GlobalVariable::ThreadLocalMode getDecodedThreadLocalMode(unsigned Val) {
708   switch (Val) {
709     case 0: return GlobalVariable::NotThreadLocal;
710     default: // Map unknown non-zero value to general dynamic.
711     case 1: return GlobalVariable::GeneralDynamicTLSModel;
712     case 2: return GlobalVariable::LocalDynamicTLSModel;
713     case 3: return GlobalVariable::InitialExecTLSModel;
714     case 4: return GlobalVariable::LocalExecTLSModel;
715   }
716 }
717
718 static int getDecodedCastOpcode(unsigned Val) {
719   switch (Val) {
720   default: return -1;
721   case bitc::CAST_TRUNC   : return Instruction::Trunc;
722   case bitc::CAST_ZEXT    : return Instruction::ZExt;
723   case bitc::CAST_SEXT    : return Instruction::SExt;
724   case bitc::CAST_FPTOUI  : return Instruction::FPToUI;
725   case bitc::CAST_FPTOSI  : return Instruction::FPToSI;
726   case bitc::CAST_UITOFP  : return Instruction::UIToFP;
727   case bitc::CAST_SITOFP  : return Instruction::SIToFP;
728   case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
729   case bitc::CAST_FPEXT   : return Instruction::FPExt;
730   case bitc::CAST_PTRTOINT: return Instruction::PtrToInt;
731   case bitc::CAST_INTTOPTR: return Instruction::IntToPtr;
732   case bitc::CAST_BITCAST : return Instruction::BitCast;
733   case bitc::CAST_ADDRSPACECAST: return Instruction::AddrSpaceCast;
734   }
735 }
736
737 static int getDecodedBinaryOpcode(unsigned Val, Type *Ty) {
738   bool IsFP = Ty->isFPOrFPVectorTy();
739   // BinOps are only valid for int/fp or vector of int/fp types
740   if (!IsFP && !Ty->isIntOrIntVectorTy())
741     return -1;
742
743   switch (Val) {
744   default:
745     return -1;
746   case bitc::BINOP_ADD:
747     return IsFP ? Instruction::FAdd : Instruction::Add;
748   case bitc::BINOP_SUB:
749     return IsFP ? Instruction::FSub : Instruction::Sub;
750   case bitc::BINOP_MUL:
751     return IsFP ? Instruction::FMul : Instruction::Mul;
752   case bitc::BINOP_UDIV:
753     return IsFP ? -1 : Instruction::UDiv;
754   case bitc::BINOP_SDIV:
755     return IsFP ? Instruction::FDiv : Instruction::SDiv;
756   case bitc::BINOP_UREM:
757     return IsFP ? -1 : Instruction::URem;
758   case bitc::BINOP_SREM:
759     return IsFP ? Instruction::FRem : Instruction::SRem;
760   case bitc::BINOP_SHL:
761     return IsFP ? -1 : Instruction::Shl;
762   case bitc::BINOP_LSHR:
763     return IsFP ? -1 : Instruction::LShr;
764   case bitc::BINOP_ASHR:
765     return IsFP ? -1 : Instruction::AShr;
766   case bitc::BINOP_AND:
767     return IsFP ? -1 : Instruction::And;
768   case bitc::BINOP_OR:
769     return IsFP ? -1 : Instruction::Or;
770   case bitc::BINOP_XOR:
771     return IsFP ? -1 : Instruction::Xor;
772   }
773 }
774
775 static AtomicRMWInst::BinOp getDecodedRMWOperation(unsigned Val) {
776   switch (Val) {
777   default: return AtomicRMWInst::BAD_BINOP;
778   case bitc::RMW_XCHG: return AtomicRMWInst::Xchg;
779   case bitc::RMW_ADD: return AtomicRMWInst::Add;
780   case bitc::RMW_SUB: return AtomicRMWInst::Sub;
781   case bitc::RMW_AND: return AtomicRMWInst::And;
782   case bitc::RMW_NAND: return AtomicRMWInst::Nand;
783   case bitc::RMW_OR: return AtomicRMWInst::Or;
784   case bitc::RMW_XOR: return AtomicRMWInst::Xor;
785   case bitc::RMW_MAX: return AtomicRMWInst::Max;
786   case bitc::RMW_MIN: return AtomicRMWInst::Min;
787   case bitc::RMW_UMAX: return AtomicRMWInst::UMax;
788   case bitc::RMW_UMIN: return AtomicRMWInst::UMin;
789   }
790 }
791
792 static AtomicOrdering getDecodedOrdering(unsigned Val) {
793   switch (Val) {
794   case bitc::ORDERING_NOTATOMIC: return NotAtomic;
795   case bitc::ORDERING_UNORDERED: return Unordered;
796   case bitc::ORDERING_MONOTONIC: return Monotonic;
797   case bitc::ORDERING_ACQUIRE: return Acquire;
798   case bitc::ORDERING_RELEASE: return Release;
799   case bitc::ORDERING_ACQREL: return AcquireRelease;
800   default: // Map unknown orderings to sequentially-consistent.
801   case bitc::ORDERING_SEQCST: return SequentiallyConsistent;
802   }
803 }
804
805 static SynchronizationScope getDecodedSynchScope(unsigned Val) {
806   switch (Val) {
807   case bitc::SYNCHSCOPE_SINGLETHREAD: return SingleThread;
808   default: // Map unknown scopes to cross-thread.
809   case bitc::SYNCHSCOPE_CROSSTHREAD: return CrossThread;
810   }
811 }
812
813 static Comdat::SelectionKind getDecodedComdatSelectionKind(unsigned Val) {
814   switch (Val) {
815   default: // Map unknown selection kinds to any.
816   case bitc::COMDAT_SELECTION_KIND_ANY:
817     return Comdat::Any;
818   case bitc::COMDAT_SELECTION_KIND_EXACT_MATCH:
819     return Comdat::ExactMatch;
820   case bitc::COMDAT_SELECTION_KIND_LARGEST:
821     return Comdat::Largest;
822   case bitc::COMDAT_SELECTION_KIND_NO_DUPLICATES:
823     return Comdat::NoDuplicates;
824   case bitc::COMDAT_SELECTION_KIND_SAME_SIZE:
825     return Comdat::SameSize;
826   }
827 }
828
829 static FastMathFlags getDecodedFastMathFlags(unsigned Val) {
830   FastMathFlags FMF;
831   if (0 != (Val & FastMathFlags::UnsafeAlgebra))
832     FMF.setUnsafeAlgebra();
833   if (0 != (Val & FastMathFlags::NoNaNs))
834     FMF.setNoNaNs();
835   if (0 != (Val & FastMathFlags::NoInfs))
836     FMF.setNoInfs();
837   if (0 != (Val & FastMathFlags::NoSignedZeros))
838     FMF.setNoSignedZeros();
839   if (0 != (Val & FastMathFlags::AllowReciprocal))
840     FMF.setAllowReciprocal();
841   return FMF;
842 }
843
844 static void upgradeDLLImportExportLinkage(llvm::GlobalValue *GV, unsigned Val) {
845   switch (Val) {
846   case 5: GV->setDLLStorageClass(GlobalValue::DLLImportStorageClass); break;
847   case 6: GV->setDLLStorageClass(GlobalValue::DLLExportStorageClass); break;
848   }
849 }
850
851 namespace llvm {
852 namespace {
853 /// \brief A class for maintaining the slot number definition
854 /// as a placeholder for the actual definition for forward constants defs.
855 class ConstantPlaceHolder : public ConstantExpr {
856   void operator=(const ConstantPlaceHolder &) = delete;
857
858 public:
859   // allocate space for exactly one operand
860   void *operator new(size_t s) { return User::operator new(s, 1); }
861   explicit ConstantPlaceHolder(Type *Ty, LLVMContext &Context)
862       : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
863     Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
864   }
865
866   /// \brief Methods to support type inquiry through isa, cast, and dyn_cast.
867   static bool classof(const Value *V) {
868     return isa<ConstantExpr>(V) &&
869            cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;
870   }
871
872   /// Provide fast operand accessors
873   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
874 };
875 }
876
877 // FIXME: can we inherit this from ConstantExpr?
878 template <>
879 struct OperandTraits<ConstantPlaceHolder> :
880   public FixedNumOperandTraits<ConstantPlaceHolder, 1> {
881 };
882 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantPlaceHolder, Value)
883 }
884
885 void BitcodeReaderValueList::assignValue(Value *V, unsigned Idx) {
886   if (Idx == size()) {
887     push_back(V);
888     return;
889   }
890
891   if (Idx >= size())
892     resize(Idx+1);
893
894   WeakVH &OldV = ValuePtrs[Idx];
895   if (!OldV) {
896     OldV = V;
897     return;
898   }
899
900   // Handle constants and non-constants (e.g. instrs) differently for
901   // efficiency.
902   if (Constant *PHC = dyn_cast<Constant>(&*OldV)) {
903     ResolveConstants.push_back(std::make_pair(PHC, Idx));
904     OldV = V;
905   } else {
906     // If there was a forward reference to this value, replace it.
907     Value *PrevVal = OldV;
908     OldV->replaceAllUsesWith(V);
909     delete PrevVal;
910   }
911
912   return;
913 }
914
915
916 Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx,
917                                                     Type *Ty) {
918   if (Idx >= size())
919     resize(Idx + 1);
920
921   if (Value *V = ValuePtrs[Idx]) {
922     if (Ty != V->getType())
923       report_fatal_error("Type mismatch in constant table!");
924     return cast<Constant>(V);
925   }
926
927   // Create and return a placeholder, which will later be RAUW'd.
928   Constant *C = new ConstantPlaceHolder(Ty, Context);
929   ValuePtrs[Idx] = C;
930   return C;
931 }
932
933 Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, Type *Ty) {
934   // Bail out for a clearly invalid value. This would make us call resize(0)
935   if (Idx == UINT_MAX)
936     return nullptr;
937
938   if (Idx >= size())
939     resize(Idx + 1);
940
941   if (Value *V = ValuePtrs[Idx]) {
942     // If the types don't match, it's invalid.
943     if (Ty && Ty != V->getType())
944       return nullptr;
945     return V;
946   }
947
948   // No type specified, must be invalid reference.
949   if (!Ty) return nullptr;
950
951   // Create and return a placeholder, which will later be RAUW'd.
952   Value *V = new Argument(Ty);
953   ValuePtrs[Idx] = V;
954   return V;
955 }
956
957 /// Once all constants are read, this method bulk resolves any forward
958 /// references.  The idea behind this is that we sometimes get constants (such
959 /// as large arrays) which reference *many* forward ref constants.  Replacing
960 /// each of these causes a lot of thrashing when building/reuniquing the
961 /// constant.  Instead of doing this, we look at all the uses and rewrite all
962 /// the place holders at once for any constant that uses a placeholder.
963 void BitcodeReaderValueList::resolveConstantForwardRefs() {
964   // Sort the values by-pointer so that they are efficient to look up with a
965   // binary search.
966   std::sort(ResolveConstants.begin(), ResolveConstants.end());
967
968   SmallVector<Constant*, 64> NewOps;
969
970   while (!ResolveConstants.empty()) {
971     Value *RealVal = operator[](ResolveConstants.back().second);
972     Constant *Placeholder = ResolveConstants.back().first;
973     ResolveConstants.pop_back();
974
975     // Loop over all users of the placeholder, updating them to reference the
976     // new value.  If they reference more than one placeholder, update them all
977     // at once.
978     while (!Placeholder->use_empty()) {
979       auto UI = Placeholder->user_begin();
980       User *U = *UI;
981
982       // If the using object isn't uniqued, just update the operands.  This
983       // handles instructions and initializers for global variables.
984       if (!isa<Constant>(U) || isa<GlobalValue>(U)) {
985         UI.getUse().set(RealVal);
986         continue;
987       }
988
989       // Otherwise, we have a constant that uses the placeholder.  Replace that
990       // constant with a new constant that has *all* placeholder uses updated.
991       Constant *UserC = cast<Constant>(U);
992       for (User::op_iterator I = UserC->op_begin(), E = UserC->op_end();
993            I != E; ++I) {
994         Value *NewOp;
995         if (!isa<ConstantPlaceHolder>(*I)) {
996           // Not a placeholder reference.
997           NewOp = *I;
998         } else if (*I == Placeholder) {
999           // Common case is that it just references this one placeholder.
1000           NewOp = RealVal;
1001         } else {
1002           // Otherwise, look up the placeholder in ResolveConstants.
1003           ResolveConstantsTy::iterator It =
1004             std::lower_bound(ResolveConstants.begin(), ResolveConstants.end(),
1005                              std::pair<Constant*, unsigned>(cast<Constant>(*I),
1006                                                             0));
1007           assert(It != ResolveConstants.end() && It->first == *I);
1008           NewOp = operator[](It->second);
1009         }
1010
1011         NewOps.push_back(cast<Constant>(NewOp));
1012       }
1013
1014       // Make the new constant.
1015       Constant *NewC;
1016       if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) {
1017         NewC = ConstantArray::get(UserCA->getType(), NewOps);
1018       } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) {
1019         NewC = ConstantStruct::get(UserCS->getType(), NewOps);
1020       } else if (isa<ConstantVector>(UserC)) {
1021         NewC = ConstantVector::get(NewOps);
1022       } else {
1023         assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
1024         NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
1025       }
1026
1027       UserC->replaceAllUsesWith(NewC);
1028       UserC->destroyConstant();
1029       NewOps.clear();
1030     }
1031
1032     // Update all ValueHandles, they should be the only users at this point.
1033     Placeholder->replaceAllUsesWith(RealVal);
1034     delete Placeholder;
1035   }
1036 }
1037
1038 void BitcodeReaderMetadataList::assignValue(Metadata *MD, unsigned Idx) {
1039   if (Idx == size()) {
1040     push_back(MD);
1041     return;
1042   }
1043
1044   if (Idx >= size())
1045     resize(Idx+1);
1046
1047   TrackingMDRef &OldMD = MetadataPtrs[Idx];
1048   if (!OldMD) {
1049     OldMD.reset(MD);
1050     return;
1051   }
1052
1053   // If there was a forward reference to this value, replace it.
1054   TempMDTuple PrevMD(cast<MDTuple>(OldMD.get()));
1055   PrevMD->replaceAllUsesWith(MD);
1056   --NumFwdRefs;
1057 }
1058
1059 Metadata *BitcodeReaderMetadataList::getValueFwdRef(unsigned Idx) {
1060   if (Idx >= size())
1061     resize(Idx + 1);
1062
1063   if (Metadata *MD = MetadataPtrs[Idx])
1064     return MD;
1065
1066   // Track forward refs to be resolved later.
1067   if (AnyFwdRefs) {
1068     MinFwdRef = std::min(MinFwdRef, Idx);
1069     MaxFwdRef = std::max(MaxFwdRef, Idx);
1070   } else {
1071     AnyFwdRefs = true;
1072     MinFwdRef = MaxFwdRef = Idx;
1073   }
1074   ++NumFwdRefs;
1075
1076   // Create and return a placeholder, which will later be RAUW'd.
1077   Metadata *MD = MDNode::getTemporary(Context, None).release();
1078   MetadataPtrs[Idx].reset(MD);
1079   return MD;
1080 }
1081
1082 void BitcodeReaderMetadataList::tryToResolveCycles() {
1083   if (!AnyFwdRefs)
1084     // Nothing to do.
1085     return;
1086
1087   if (NumFwdRefs)
1088     // Still forward references... can't resolve cycles.
1089     return;
1090
1091   // Resolve any cycles.
1092   for (unsigned I = MinFwdRef, E = MaxFwdRef + 1; I != E; ++I) {
1093     auto &MD = MetadataPtrs[I];
1094     auto *N = dyn_cast_or_null<MDNode>(MD);
1095     if (!N)
1096       continue;
1097
1098     assert(!N->isTemporary() && "Unexpected forward reference");
1099     N->resolveCycles();
1100   }
1101
1102   // Make sure we return early again until there's another forward ref.
1103   AnyFwdRefs = false;
1104 }
1105
1106 Type *BitcodeReader::getTypeByID(unsigned ID) {
1107   // The type table size is always specified correctly.
1108   if (ID >= TypeList.size())
1109     return nullptr;
1110
1111   if (Type *Ty = TypeList[ID])
1112     return Ty;
1113
1114   // If we have a forward reference, the only possible case is when it is to a
1115   // named struct.  Just create a placeholder for now.
1116   return TypeList[ID] = createIdentifiedStructType(Context);
1117 }
1118
1119 StructType *BitcodeReader::createIdentifiedStructType(LLVMContext &Context,
1120                                                       StringRef Name) {
1121   auto *Ret = StructType::create(Context, Name);
1122   IdentifiedStructTypes.push_back(Ret);
1123   return Ret;
1124 }
1125
1126 StructType *BitcodeReader::createIdentifiedStructType(LLVMContext &Context) {
1127   auto *Ret = StructType::create(Context);
1128   IdentifiedStructTypes.push_back(Ret);
1129   return Ret;
1130 }
1131
1132
1133 //===----------------------------------------------------------------------===//
1134 //  Functions for parsing blocks from the bitcode file
1135 //===----------------------------------------------------------------------===//
1136
1137
1138 /// \brief This fills an AttrBuilder object with the LLVM attributes that have
1139 /// been decoded from the given integer. This function must stay in sync with
1140 /// 'encodeLLVMAttributesForBitcode'.
1141 static void decodeLLVMAttributesForBitcode(AttrBuilder &B,
1142                                            uint64_t EncodedAttrs) {
1143   // FIXME: Remove in 4.0.
1144
1145   // The alignment is stored as a 16-bit raw value from bits 31--16.  We shift
1146   // the bits above 31 down by 11 bits.
1147   unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
1148   assert((!Alignment || isPowerOf2_32(Alignment)) &&
1149          "Alignment must be a power of two.");
1150
1151   if (Alignment)
1152     B.addAlignmentAttr(Alignment);
1153   B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
1154                 (EncodedAttrs & 0xffff));
1155 }
1156
1157 std::error_code BitcodeReader::parseAttributeBlock() {
1158   if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
1159     return error("Invalid record");
1160
1161   if (!MAttributes.empty())
1162     return error("Invalid multiple blocks");
1163
1164   SmallVector<uint64_t, 64> Record;
1165
1166   SmallVector<AttributeSet, 8> Attrs;
1167
1168   // Read all the records.
1169   while (1) {
1170     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1171
1172     switch (Entry.Kind) {
1173     case BitstreamEntry::SubBlock: // Handled for us already.
1174     case BitstreamEntry::Error:
1175       return error("Malformed block");
1176     case BitstreamEntry::EndBlock:
1177       return std::error_code();
1178     case BitstreamEntry::Record:
1179       // The interesting case.
1180       break;
1181     }
1182
1183     // Read a record.
1184     Record.clear();
1185     switch (Stream.readRecord(Entry.ID, Record)) {
1186     default:  // Default behavior: ignore.
1187       break;
1188     case bitc::PARAMATTR_CODE_ENTRY_OLD: { // ENTRY: [paramidx0, attr0, ...]
1189       // FIXME: Remove in 4.0.
1190       if (Record.size() & 1)
1191         return error("Invalid record");
1192
1193       for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
1194         AttrBuilder B;
1195         decodeLLVMAttributesForBitcode(B, Record[i+1]);
1196         Attrs.push_back(AttributeSet::get(Context, Record[i], B));
1197       }
1198
1199       MAttributes.push_back(AttributeSet::get(Context, Attrs));
1200       Attrs.clear();
1201       break;
1202     }
1203     case bitc::PARAMATTR_CODE_ENTRY: { // ENTRY: [attrgrp0, attrgrp1, ...]
1204       for (unsigned i = 0, e = Record.size(); i != e; ++i)
1205         Attrs.push_back(MAttributeGroups[Record[i]]);
1206
1207       MAttributes.push_back(AttributeSet::get(Context, Attrs));
1208       Attrs.clear();
1209       break;
1210     }
1211     }
1212   }
1213 }
1214
1215 // Returns Attribute::None on unrecognized codes.
1216 static Attribute::AttrKind getAttrFromCode(uint64_t Code) {
1217   switch (Code) {
1218   default:
1219     return Attribute::None;
1220   case bitc::ATTR_KIND_ALIGNMENT:
1221     return Attribute::Alignment;
1222   case bitc::ATTR_KIND_ALWAYS_INLINE:
1223     return Attribute::AlwaysInline;
1224   case bitc::ATTR_KIND_ARGMEMONLY:
1225     return Attribute::ArgMemOnly;
1226   case bitc::ATTR_KIND_BUILTIN:
1227     return Attribute::Builtin;
1228   case bitc::ATTR_KIND_BY_VAL:
1229     return Attribute::ByVal;
1230   case bitc::ATTR_KIND_IN_ALLOCA:
1231     return Attribute::InAlloca;
1232   case bitc::ATTR_KIND_COLD:
1233     return Attribute::Cold;
1234   case bitc::ATTR_KIND_CONVERGENT:
1235     return Attribute::Convergent;
1236   case bitc::ATTR_KIND_INACCESSIBLEMEM_ONLY:
1237     return Attribute::InaccessibleMemOnly;
1238   case bitc::ATTR_KIND_INACCESSIBLEMEM_OR_ARGMEMONLY:
1239     return Attribute::InaccessibleMemOrArgMemOnly;
1240   case bitc::ATTR_KIND_INLINE_HINT:
1241     return Attribute::InlineHint;
1242   case bitc::ATTR_KIND_IN_REG:
1243     return Attribute::InReg;
1244   case bitc::ATTR_KIND_JUMP_TABLE:
1245     return Attribute::JumpTable;
1246   case bitc::ATTR_KIND_MIN_SIZE:
1247     return Attribute::MinSize;
1248   case bitc::ATTR_KIND_NAKED:
1249     return Attribute::Naked;
1250   case bitc::ATTR_KIND_NEST:
1251     return Attribute::Nest;
1252   case bitc::ATTR_KIND_NO_ALIAS:
1253     return Attribute::NoAlias;
1254   case bitc::ATTR_KIND_NO_BUILTIN:
1255     return Attribute::NoBuiltin;
1256   case bitc::ATTR_KIND_NO_CAPTURE:
1257     return Attribute::NoCapture;
1258   case bitc::ATTR_KIND_NO_DUPLICATE:
1259     return Attribute::NoDuplicate;
1260   case bitc::ATTR_KIND_NO_IMPLICIT_FLOAT:
1261     return Attribute::NoImplicitFloat;
1262   case bitc::ATTR_KIND_NO_INLINE:
1263     return Attribute::NoInline;
1264   case bitc::ATTR_KIND_NO_RECURSE:
1265     return Attribute::NoRecurse;
1266   case bitc::ATTR_KIND_NON_LAZY_BIND:
1267     return Attribute::NonLazyBind;
1268   case bitc::ATTR_KIND_NON_NULL:
1269     return Attribute::NonNull;
1270   case bitc::ATTR_KIND_DEREFERENCEABLE:
1271     return Attribute::Dereferenceable;
1272   case bitc::ATTR_KIND_DEREFERENCEABLE_OR_NULL:
1273     return Attribute::DereferenceableOrNull;
1274   case bitc::ATTR_KIND_NO_RED_ZONE:
1275     return Attribute::NoRedZone;
1276   case bitc::ATTR_KIND_NO_RETURN:
1277     return Attribute::NoReturn;
1278   case bitc::ATTR_KIND_NO_UNWIND:
1279     return Attribute::NoUnwind;
1280   case bitc::ATTR_KIND_OPTIMIZE_FOR_SIZE:
1281     return Attribute::OptimizeForSize;
1282   case bitc::ATTR_KIND_OPTIMIZE_NONE:
1283     return Attribute::OptimizeNone;
1284   case bitc::ATTR_KIND_READ_NONE:
1285     return Attribute::ReadNone;
1286   case bitc::ATTR_KIND_READ_ONLY:
1287     return Attribute::ReadOnly;
1288   case bitc::ATTR_KIND_RETURNED:
1289     return Attribute::Returned;
1290   case bitc::ATTR_KIND_RETURNS_TWICE:
1291     return Attribute::ReturnsTwice;
1292   case bitc::ATTR_KIND_S_EXT:
1293     return Attribute::SExt;
1294   case bitc::ATTR_KIND_STACK_ALIGNMENT:
1295     return Attribute::StackAlignment;
1296   case bitc::ATTR_KIND_STACK_PROTECT:
1297     return Attribute::StackProtect;
1298   case bitc::ATTR_KIND_STACK_PROTECT_REQ:
1299     return Attribute::StackProtectReq;
1300   case bitc::ATTR_KIND_STACK_PROTECT_STRONG:
1301     return Attribute::StackProtectStrong;
1302   case bitc::ATTR_KIND_SAFESTACK:
1303     return Attribute::SafeStack;
1304   case bitc::ATTR_KIND_STRUCT_RET:
1305     return Attribute::StructRet;
1306   case bitc::ATTR_KIND_SANITIZE_ADDRESS:
1307     return Attribute::SanitizeAddress;
1308   case bitc::ATTR_KIND_SANITIZE_THREAD:
1309     return Attribute::SanitizeThread;
1310   case bitc::ATTR_KIND_SANITIZE_MEMORY:
1311     return Attribute::SanitizeMemory;
1312   case bitc::ATTR_KIND_UW_TABLE:
1313     return Attribute::UWTable;
1314   case bitc::ATTR_KIND_Z_EXT:
1315     return Attribute::ZExt;
1316   }
1317 }
1318
1319 std::error_code BitcodeReader::parseAlignmentValue(uint64_t Exponent,
1320                                                    unsigned &Alignment) {
1321   // Note: Alignment in bitcode files is incremented by 1, so that zero
1322   // can be used for default alignment.
1323   if (Exponent > Value::MaxAlignmentExponent + 1)
1324     return error("Invalid alignment value");
1325   Alignment = (1 << static_cast<unsigned>(Exponent)) >> 1;
1326   return std::error_code();
1327 }
1328
1329 std::error_code BitcodeReader::parseAttrKind(uint64_t Code,
1330                                              Attribute::AttrKind *Kind) {
1331   *Kind = getAttrFromCode(Code);
1332   if (*Kind == Attribute::None)
1333     return error(BitcodeError::CorruptedBitcode,
1334                  "Unknown attribute kind (" + Twine(Code) + ")");
1335   return std::error_code();
1336 }
1337
1338 std::error_code BitcodeReader::parseAttributeGroupBlock() {
1339   if (Stream.EnterSubBlock(bitc::PARAMATTR_GROUP_BLOCK_ID))
1340     return error("Invalid record");
1341
1342   if (!MAttributeGroups.empty())
1343     return error("Invalid multiple blocks");
1344
1345   SmallVector<uint64_t, 64> Record;
1346
1347   // Read all the records.
1348   while (1) {
1349     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1350
1351     switch (Entry.Kind) {
1352     case BitstreamEntry::SubBlock: // Handled for us already.
1353     case BitstreamEntry::Error:
1354       return error("Malformed block");
1355     case BitstreamEntry::EndBlock:
1356       return std::error_code();
1357     case BitstreamEntry::Record:
1358       // The interesting case.
1359       break;
1360     }
1361
1362     // Read a record.
1363     Record.clear();
1364     switch (Stream.readRecord(Entry.ID, Record)) {
1365     default:  // Default behavior: ignore.
1366       break;
1367     case bitc::PARAMATTR_GRP_CODE_ENTRY: { // ENTRY: [grpid, idx, a0, a1, ...]
1368       if (Record.size() < 3)
1369         return error("Invalid record");
1370
1371       uint64_t GrpID = Record[0];
1372       uint64_t Idx = Record[1]; // Index of the object this attribute refers to.
1373
1374       AttrBuilder B;
1375       for (unsigned i = 2, e = Record.size(); i != e; ++i) {
1376         if (Record[i] == 0) {        // Enum attribute
1377           Attribute::AttrKind Kind;
1378           if (std::error_code EC = parseAttrKind(Record[++i], &Kind))
1379             return EC;
1380
1381           B.addAttribute(Kind);
1382         } else if (Record[i] == 1) { // Integer attribute
1383           Attribute::AttrKind Kind;
1384           if (std::error_code EC = parseAttrKind(Record[++i], &Kind))
1385             return EC;
1386           if (Kind == Attribute::Alignment)
1387             B.addAlignmentAttr(Record[++i]);
1388           else if (Kind == Attribute::StackAlignment)
1389             B.addStackAlignmentAttr(Record[++i]);
1390           else if (Kind == Attribute::Dereferenceable)
1391             B.addDereferenceableAttr(Record[++i]);
1392           else if (Kind == Attribute::DereferenceableOrNull)
1393             B.addDereferenceableOrNullAttr(Record[++i]);
1394         } else {                     // String attribute
1395           assert((Record[i] == 3 || Record[i] == 4) &&
1396                  "Invalid attribute group entry");
1397           bool HasValue = (Record[i++] == 4);
1398           SmallString<64> KindStr;
1399           SmallString<64> ValStr;
1400
1401           while (Record[i] != 0 && i != e)
1402             KindStr += Record[i++];
1403           assert(Record[i] == 0 && "Kind string not null terminated");
1404
1405           if (HasValue) {
1406             // Has a value associated with it.
1407             ++i; // Skip the '0' that terminates the "kind" string.
1408             while (Record[i] != 0 && i != e)
1409               ValStr += Record[i++];
1410             assert(Record[i] == 0 && "Value string not null terminated");
1411           }
1412
1413           B.addAttribute(KindStr.str(), ValStr.str());
1414         }
1415       }
1416
1417       MAttributeGroups[GrpID] = AttributeSet::get(Context, Idx, B);
1418       break;
1419     }
1420     }
1421   }
1422 }
1423
1424 std::error_code BitcodeReader::parseTypeTable() {
1425   if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
1426     return error("Invalid record");
1427
1428   return parseTypeTableBody();
1429 }
1430
1431 std::error_code BitcodeReader::parseTypeTableBody() {
1432   if (!TypeList.empty())
1433     return error("Invalid multiple blocks");
1434
1435   SmallVector<uint64_t, 64> Record;
1436   unsigned NumRecords = 0;
1437
1438   SmallString<64> TypeName;
1439
1440   // Read all the records for this type table.
1441   while (1) {
1442     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1443
1444     switch (Entry.Kind) {
1445     case BitstreamEntry::SubBlock: // Handled for us already.
1446     case BitstreamEntry::Error:
1447       return error("Malformed block");
1448     case BitstreamEntry::EndBlock:
1449       if (NumRecords != TypeList.size())
1450         return error("Malformed block");
1451       return std::error_code();
1452     case BitstreamEntry::Record:
1453       // The interesting case.
1454       break;
1455     }
1456
1457     // Read a record.
1458     Record.clear();
1459     Type *ResultTy = nullptr;
1460     switch (Stream.readRecord(Entry.ID, Record)) {
1461     default:
1462       return error("Invalid value");
1463     case bitc::TYPE_CODE_NUMENTRY: // TYPE_CODE_NUMENTRY: [numentries]
1464       // TYPE_CODE_NUMENTRY contains a count of the number of types in the
1465       // type list.  This allows us to reserve space.
1466       if (Record.size() < 1)
1467         return error("Invalid record");
1468       TypeList.resize(Record[0]);
1469       continue;
1470     case bitc::TYPE_CODE_VOID:      // VOID
1471       ResultTy = Type::getVoidTy(Context);
1472       break;
1473     case bitc::TYPE_CODE_HALF:     // HALF
1474       ResultTy = Type::getHalfTy(Context);
1475       break;
1476     case bitc::TYPE_CODE_FLOAT:     // FLOAT
1477       ResultTy = Type::getFloatTy(Context);
1478       break;
1479     case bitc::TYPE_CODE_DOUBLE:    // DOUBLE
1480       ResultTy = Type::getDoubleTy(Context);
1481       break;
1482     case bitc::TYPE_CODE_X86_FP80:  // X86_FP80
1483       ResultTy = Type::getX86_FP80Ty(Context);
1484       break;
1485     case bitc::TYPE_CODE_FP128:     // FP128
1486       ResultTy = Type::getFP128Ty(Context);
1487       break;
1488     case bitc::TYPE_CODE_PPC_FP128: // PPC_FP128
1489       ResultTy = Type::getPPC_FP128Ty(Context);
1490       break;
1491     case bitc::TYPE_CODE_LABEL:     // LABEL
1492       ResultTy = Type::getLabelTy(Context);
1493       break;
1494     case bitc::TYPE_CODE_METADATA:  // METADATA
1495       ResultTy = Type::getMetadataTy(Context);
1496       break;
1497     case bitc::TYPE_CODE_X86_MMX:   // X86_MMX
1498       ResultTy = Type::getX86_MMXTy(Context);
1499       break;
1500     case bitc::TYPE_CODE_TOKEN:     // TOKEN
1501       ResultTy = Type::getTokenTy(Context);
1502       break;
1503     case bitc::TYPE_CODE_INTEGER: { // INTEGER: [width]
1504       if (Record.size() < 1)
1505         return error("Invalid record");
1506
1507       uint64_t NumBits = Record[0];
1508       if (NumBits < IntegerType::MIN_INT_BITS ||
1509           NumBits > IntegerType::MAX_INT_BITS)
1510         return error("Bitwidth for integer type out of range");
1511       ResultTy = IntegerType::get(Context, NumBits);
1512       break;
1513     }
1514     case bitc::TYPE_CODE_POINTER: { // POINTER: [pointee type] or
1515                                     //          [pointee type, address space]
1516       if (Record.size() < 1)
1517         return error("Invalid record");
1518       unsigned AddressSpace = 0;
1519       if (Record.size() == 2)
1520         AddressSpace = Record[1];
1521       ResultTy = getTypeByID(Record[0]);
1522       if (!ResultTy ||
1523           !PointerType::isValidElementType(ResultTy))
1524         return error("Invalid type");
1525       ResultTy = PointerType::get(ResultTy, AddressSpace);
1526       break;
1527     }
1528     case bitc::TYPE_CODE_FUNCTION_OLD: {
1529       // FIXME: attrid is dead, remove it in LLVM 4.0
1530       // FUNCTION: [vararg, attrid, retty, paramty x N]
1531       if (Record.size() < 3)
1532         return error("Invalid record");
1533       SmallVector<Type*, 8> ArgTys;
1534       for (unsigned i = 3, e = Record.size(); i != e; ++i) {
1535         if (Type *T = getTypeByID(Record[i]))
1536           ArgTys.push_back(T);
1537         else
1538           break;
1539       }
1540
1541       ResultTy = getTypeByID(Record[2]);
1542       if (!ResultTy || ArgTys.size() < Record.size()-3)
1543         return error("Invalid type");
1544
1545       ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
1546       break;
1547     }
1548     case bitc::TYPE_CODE_FUNCTION: {
1549       // FUNCTION: [vararg, retty, paramty x N]
1550       if (Record.size() < 2)
1551         return error("Invalid record");
1552       SmallVector<Type*, 8> ArgTys;
1553       for (unsigned i = 2, e = Record.size(); i != e; ++i) {
1554         if (Type *T = getTypeByID(Record[i])) {
1555           if (!FunctionType::isValidArgumentType(T))
1556             return error("Invalid function argument type");
1557           ArgTys.push_back(T);
1558         }
1559         else
1560           break;
1561       }
1562
1563       ResultTy = getTypeByID(Record[1]);
1564       if (!ResultTy || ArgTys.size() < Record.size()-2)
1565         return error("Invalid type");
1566
1567       ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]);
1568       break;
1569     }
1570     case bitc::TYPE_CODE_STRUCT_ANON: {  // STRUCT: [ispacked, eltty x N]
1571       if (Record.size() < 1)
1572         return error("Invalid record");
1573       SmallVector<Type*, 8> EltTys;
1574       for (unsigned i = 1, e = Record.size(); i != e; ++i) {
1575         if (Type *T = getTypeByID(Record[i]))
1576           EltTys.push_back(T);
1577         else
1578           break;
1579       }
1580       if (EltTys.size() != Record.size()-1)
1581         return error("Invalid type");
1582       ResultTy = StructType::get(Context, EltTys, Record[0]);
1583       break;
1584     }
1585     case bitc::TYPE_CODE_STRUCT_NAME:   // STRUCT_NAME: [strchr x N]
1586       if (convertToString(Record, 0, TypeName))
1587         return error("Invalid record");
1588       continue;
1589
1590     case bitc::TYPE_CODE_STRUCT_NAMED: { // STRUCT: [ispacked, eltty x N]
1591       if (Record.size() < 1)
1592         return error("Invalid record");
1593
1594       if (NumRecords >= TypeList.size())
1595         return error("Invalid TYPE table");
1596
1597       // Check to see if this was forward referenced, if so fill in the temp.
1598       StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
1599       if (Res) {
1600         Res->setName(TypeName);
1601         TypeList[NumRecords] = nullptr;
1602       } else  // Otherwise, create a new struct.
1603         Res = createIdentifiedStructType(Context, TypeName);
1604       TypeName.clear();
1605
1606       SmallVector<Type*, 8> EltTys;
1607       for (unsigned i = 1, e = Record.size(); i != e; ++i) {
1608         if (Type *T = getTypeByID(Record[i]))
1609           EltTys.push_back(T);
1610         else
1611           break;
1612       }
1613       if (EltTys.size() != Record.size()-1)
1614         return error("Invalid record");
1615       Res->setBody(EltTys, Record[0]);
1616       ResultTy = Res;
1617       break;
1618     }
1619     case bitc::TYPE_CODE_OPAQUE: {       // OPAQUE: []
1620       if (Record.size() != 1)
1621         return error("Invalid record");
1622
1623       if (NumRecords >= TypeList.size())
1624         return error("Invalid TYPE table");
1625
1626       // Check to see if this was forward referenced, if so fill in the temp.
1627       StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]);
1628       if (Res) {
1629         Res->setName(TypeName);
1630         TypeList[NumRecords] = nullptr;
1631       } else  // Otherwise, create a new struct with no body.
1632         Res = createIdentifiedStructType(Context, TypeName);
1633       TypeName.clear();
1634       ResultTy = Res;
1635       break;
1636     }
1637     case bitc::TYPE_CODE_ARRAY:     // ARRAY: [numelts, eltty]
1638       if (Record.size() < 2)
1639         return error("Invalid record");
1640       ResultTy = getTypeByID(Record[1]);
1641       if (!ResultTy || !ArrayType::isValidElementType(ResultTy))
1642         return error("Invalid type");
1643       ResultTy = ArrayType::get(ResultTy, Record[0]);
1644       break;
1645     case bitc::TYPE_CODE_VECTOR:    // VECTOR: [numelts, eltty]
1646       if (Record.size() < 2)
1647         return error("Invalid record");
1648       if (Record[0] == 0)
1649         return error("Invalid vector length");
1650       ResultTy = getTypeByID(Record[1]);
1651       if (!ResultTy || !StructType::isValidElementType(ResultTy))
1652         return error("Invalid type");
1653       ResultTy = VectorType::get(ResultTy, Record[0]);
1654       break;
1655     }
1656
1657     if (NumRecords >= TypeList.size())
1658       return error("Invalid TYPE table");
1659     if (TypeList[NumRecords])
1660       return error(
1661           "Invalid TYPE table: Only named structs can be forward referenced");
1662     assert(ResultTy && "Didn't read a type?");
1663     TypeList[NumRecords++] = ResultTy;
1664   }
1665 }
1666
1667 std::error_code BitcodeReader::parseOperandBundleTags() {
1668   if (Stream.EnterSubBlock(bitc::OPERAND_BUNDLE_TAGS_BLOCK_ID))
1669     return error("Invalid record");
1670
1671   if (!BundleTags.empty())
1672     return error("Invalid multiple blocks");
1673
1674   SmallVector<uint64_t, 64> Record;
1675
1676   while (1) {
1677     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1678
1679     switch (Entry.Kind) {
1680     case BitstreamEntry::SubBlock: // Handled for us already.
1681     case BitstreamEntry::Error:
1682       return error("Malformed block");
1683     case BitstreamEntry::EndBlock:
1684       return std::error_code();
1685     case BitstreamEntry::Record:
1686       // The interesting case.
1687       break;
1688     }
1689
1690     // Tags are implicitly mapped to integers by their order.
1691
1692     if (Stream.readRecord(Entry.ID, Record) != bitc::OPERAND_BUNDLE_TAG)
1693       return error("Invalid record");
1694
1695     // OPERAND_BUNDLE_TAG: [strchr x N]
1696     BundleTags.emplace_back();
1697     if (convertToString(Record, 0, BundleTags.back()))
1698       return error("Invalid record");
1699     Record.clear();
1700   }
1701 }
1702
1703 /// Associate a value with its name from the given index in the provided record.
1704 ErrorOr<Value *> BitcodeReader::recordValue(SmallVectorImpl<uint64_t> &Record,
1705                                             unsigned NameIndex, Triple &TT) {
1706   SmallString<128> ValueName;
1707   if (convertToString(Record, NameIndex, ValueName))
1708     return error("Invalid record");
1709   unsigned ValueID = Record[0];
1710   if (ValueID >= ValueList.size() || !ValueList[ValueID])
1711     return error("Invalid record");
1712   Value *V = ValueList[ValueID];
1713
1714   StringRef NameStr(ValueName.data(), ValueName.size());
1715   if (NameStr.find_first_of(0) != StringRef::npos)
1716     return error("Invalid value name");
1717   V->setName(NameStr);
1718   auto *GO = dyn_cast<GlobalObject>(V);
1719   if (GO) {
1720     if (GO->getComdat() == reinterpret_cast<Comdat *>(1)) {
1721       if (TT.isOSBinFormatMachO())
1722         GO->setComdat(nullptr);
1723       else
1724         GO->setComdat(TheModule->getOrInsertComdat(V->getName()));
1725     }
1726   }
1727   return V;
1728 }
1729
1730 /// Parse the value symbol table at either the current parsing location or
1731 /// at the given bit offset if provided.
1732 std::error_code BitcodeReader::parseValueSymbolTable(uint64_t Offset) {
1733   uint64_t CurrentBit;
1734   // Pass in the Offset to distinguish between calling for the module-level
1735   // VST (where we want to jump to the VST offset) and the function-level
1736   // VST (where we don't).
1737   if (Offset > 0) {
1738     // Save the current parsing location so we can jump back at the end
1739     // of the VST read.
1740     CurrentBit = Stream.GetCurrentBitNo();
1741     Stream.JumpToBit(Offset * 32);
1742 #ifndef NDEBUG
1743     // Do some checking if we are in debug mode.
1744     BitstreamEntry Entry = Stream.advance();
1745     assert(Entry.Kind == BitstreamEntry::SubBlock);
1746     assert(Entry.ID == bitc::VALUE_SYMTAB_BLOCK_ID);
1747 #else
1748     // In NDEBUG mode ignore the output so we don't get an unused variable
1749     // warning.
1750     Stream.advance();
1751 #endif
1752   }
1753
1754   // Compute the delta between the bitcode indices in the VST (the word offset
1755   // to the word-aligned ENTER_SUBBLOCK for the function block, and that
1756   // expected by the lazy reader. The reader's EnterSubBlock expects to have
1757   // already read the ENTER_SUBBLOCK code (size getAbbrevIDWidth) and BlockID
1758   // (size BlockIDWidth). Note that we access the stream's AbbrevID width here
1759   // just before entering the VST subblock because: 1) the EnterSubBlock
1760   // changes the AbbrevID width; 2) the VST block is nested within the same
1761   // outer MODULE_BLOCK as the FUNCTION_BLOCKs and therefore have the same
1762   // AbbrevID width before calling EnterSubBlock; and 3) when we want to
1763   // jump to the FUNCTION_BLOCK using this offset later, we don't want
1764   // to rely on the stream's AbbrevID width being that of the MODULE_BLOCK.
1765   unsigned FuncBitcodeOffsetDelta =
1766       Stream.getAbbrevIDWidth() + bitc::BlockIDWidth;
1767
1768   if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
1769     return error("Invalid record");
1770
1771   SmallVector<uint64_t, 64> Record;
1772
1773   Triple TT(TheModule->getTargetTriple());
1774
1775   // Read all the records for this value table.
1776   SmallString<128> ValueName;
1777   while (1) {
1778     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1779
1780     switch (Entry.Kind) {
1781     case BitstreamEntry::SubBlock: // Handled for us already.
1782     case BitstreamEntry::Error:
1783       return error("Malformed block");
1784     case BitstreamEntry::EndBlock:
1785       if (Offset > 0)
1786         Stream.JumpToBit(CurrentBit);
1787       return std::error_code();
1788     case BitstreamEntry::Record:
1789       // The interesting case.
1790       break;
1791     }
1792
1793     // Read a record.
1794     Record.clear();
1795     switch (Stream.readRecord(Entry.ID, Record)) {
1796     default:  // Default behavior: unknown type.
1797       break;
1798     case bitc::VST_CODE_ENTRY: {  // VST_ENTRY: [valueid, namechar x N]
1799       ErrorOr<Value *> ValOrErr = recordValue(Record, 1, TT);
1800       if (std::error_code EC = ValOrErr.getError())
1801         return EC;
1802       ValOrErr.get();
1803       break;
1804     }
1805     case bitc::VST_CODE_FNENTRY: {
1806       // VST_FNENTRY: [valueid, offset, namechar x N]
1807       ErrorOr<Value *> ValOrErr = recordValue(Record, 2, TT);
1808       if (std::error_code EC = ValOrErr.getError())
1809         return EC;
1810       Value *V = ValOrErr.get();
1811
1812       auto *GO = dyn_cast<GlobalObject>(V);
1813       if (!GO) {
1814         // If this is an alias, need to get the actual Function object
1815         // it aliases, in order to set up the DeferredFunctionInfo entry below.
1816         auto *GA = dyn_cast<GlobalAlias>(V);
1817         if (GA)
1818           GO = GA->getBaseObject();
1819         assert(GO);
1820       }
1821
1822       uint64_t FuncWordOffset = Record[1];
1823       Function *F = dyn_cast<Function>(GO);
1824       assert(F);
1825       uint64_t FuncBitOffset = FuncWordOffset * 32;
1826       DeferredFunctionInfo[F] = FuncBitOffset + FuncBitcodeOffsetDelta;
1827       // Set the LastFunctionBlockBit to point to the last function block.
1828       // Later when parsing is resumed after function materialization,
1829       // we can simply skip that last function block.
1830       if (FuncBitOffset > LastFunctionBlockBit)
1831         LastFunctionBlockBit = FuncBitOffset;
1832       break;
1833     }
1834     case bitc::VST_CODE_BBENTRY: {
1835       if (convertToString(Record, 1, ValueName))
1836         return error("Invalid record");
1837       BasicBlock *BB = getBasicBlock(Record[0]);
1838       if (!BB)
1839         return error("Invalid record");
1840
1841       BB->setName(StringRef(ValueName.data(), ValueName.size()));
1842       ValueName.clear();
1843       break;
1844     }
1845     }
1846   }
1847 }
1848
1849 /// Parse a single METADATA_KIND record, inserting result in MDKindMap.
1850 std::error_code
1851 BitcodeReader::parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record) {
1852   if (Record.size() < 2)
1853     return error("Invalid record");
1854
1855   unsigned Kind = Record[0];
1856   SmallString<8> Name(Record.begin() + 1, Record.end());
1857
1858   unsigned NewKind = TheModule->getMDKindID(Name.str());
1859   if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1860     return error("Conflicting METADATA_KIND records");
1861   return std::error_code();
1862 }
1863
1864 static int64_t unrotateSign(uint64_t U) { return U & 1 ? ~(U >> 1) : U >> 1; }
1865
1866 /// Parse a METADATA_BLOCK. If ModuleLevel is true then we are parsing
1867 /// module level metadata.
1868 std::error_code BitcodeReader::parseMetadata(bool ModuleLevel) {
1869   IsMetadataMaterialized = true;
1870   unsigned NextMetadataNo = MetadataList.size();
1871   if (ModuleLevel && SeenModuleValuesRecord) {
1872     // Now that we are parsing the module level metadata, we want to restart
1873     // the numbering of the MD values, and replace temp MD created earlier
1874     // with their real values. If we saw a METADATA_VALUE record then we
1875     // would have set the MetadataList size to the number specified in that
1876     // record, to support parsing function-level metadata first, and we need
1877     // to reset back to 0 to fill the MetadataList in with the parsed module
1878     // The function-level metadata parsing should have reset the MetadataList
1879     // size back to the value reported by the METADATA_VALUE record, saved in
1880     // NumModuleMDs.
1881     assert(NumModuleMDs == MetadataList.size() &&
1882            "Expected MetadataList to only contain module level values");
1883     NextMetadataNo = 0;
1884   }
1885
1886   if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
1887     return error("Invalid record");
1888
1889   SmallVector<uint64_t, 64> Record;
1890
1891   auto getMD = [&](unsigned ID) -> Metadata * {
1892     return MetadataList.getValueFwdRef(ID);
1893   };
1894   auto getMDOrNull = [&](unsigned ID) -> Metadata *{
1895     if (ID)
1896       return getMD(ID - 1);
1897     return nullptr;
1898   };
1899   auto getMDString = [&](unsigned ID) -> MDString *{
1900     // This requires that the ID is not really a forward reference.  In
1901     // particular, the MDString must already have been resolved.
1902     return cast_or_null<MDString>(getMDOrNull(ID));
1903   };
1904
1905 #define GET_OR_DISTINCT(CLASS, DISTINCT, ARGS)                                 \
1906   (DISTINCT ? CLASS::getDistinct ARGS : CLASS::get ARGS)
1907
1908   // Read all the records.
1909   while (1) {
1910     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1911
1912     switch (Entry.Kind) {
1913     case BitstreamEntry::SubBlock: // Handled for us already.
1914     case BitstreamEntry::Error:
1915       return error("Malformed block");
1916     case BitstreamEntry::EndBlock:
1917       MetadataList.tryToResolveCycles();
1918       assert((!(ModuleLevel && SeenModuleValuesRecord) ||
1919               NumModuleMDs == MetadataList.size()) &&
1920              "Inconsistent bitcode: METADATA_VALUES mismatch");
1921       return std::error_code();
1922     case BitstreamEntry::Record:
1923       // The interesting case.
1924       break;
1925     }
1926
1927     // Read a record.
1928     Record.clear();
1929     unsigned Code = Stream.readRecord(Entry.ID, Record);
1930     bool IsDistinct = false;
1931     switch (Code) {
1932     default:  // Default behavior: ignore.
1933       break;
1934     case bitc::METADATA_NAME: {
1935       // Read name of the named metadata.
1936       SmallString<8> Name(Record.begin(), Record.end());
1937       Record.clear();
1938       Code = Stream.ReadCode();
1939
1940       unsigned NextBitCode = Stream.readRecord(Code, Record);
1941       if (NextBitCode != bitc::METADATA_NAMED_NODE)
1942         return error("METADATA_NAME not followed by METADATA_NAMED_NODE");
1943
1944       // Read named metadata elements.
1945       unsigned Size = Record.size();
1946       NamedMDNode *NMD = TheModule->getOrInsertNamedMetadata(Name);
1947       for (unsigned i = 0; i != Size; ++i) {
1948         MDNode *MD =
1949             dyn_cast_or_null<MDNode>(MetadataList.getValueFwdRef(Record[i]));
1950         if (!MD)
1951           return error("Invalid record");
1952         NMD->addOperand(MD);
1953       }
1954       break;
1955     }
1956     case bitc::METADATA_OLD_FN_NODE: {
1957       // FIXME: Remove in 4.0.
1958       // This is a LocalAsMetadata record, the only type of function-local
1959       // metadata.
1960       if (Record.size() % 2 == 1)
1961         return error("Invalid record");
1962
1963       // If this isn't a LocalAsMetadata record, we're dropping it.  This used
1964       // to be legal, but there's no upgrade path.
1965       auto dropRecord = [&] {
1966         MetadataList.assignValue(MDNode::get(Context, None), NextMetadataNo++);
1967       };
1968       if (Record.size() != 2) {
1969         dropRecord();
1970         break;
1971       }
1972
1973       Type *Ty = getTypeByID(Record[0]);
1974       if (Ty->isMetadataTy() || Ty->isVoidTy()) {
1975         dropRecord();
1976         break;
1977       }
1978
1979       MetadataList.assignValue(
1980           LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
1981           NextMetadataNo++);
1982       break;
1983     }
1984     case bitc::METADATA_OLD_NODE: {
1985       // FIXME: Remove in 4.0.
1986       if (Record.size() % 2 == 1)
1987         return error("Invalid record");
1988
1989       unsigned Size = Record.size();
1990       SmallVector<Metadata *, 8> Elts;
1991       for (unsigned i = 0; i != Size; i += 2) {
1992         Type *Ty = getTypeByID(Record[i]);
1993         if (!Ty)
1994           return error("Invalid record");
1995         if (Ty->isMetadataTy())
1996           Elts.push_back(MetadataList.getValueFwdRef(Record[i + 1]));
1997         else if (!Ty->isVoidTy()) {
1998           auto *MD =
1999               ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty));
2000           assert(isa<ConstantAsMetadata>(MD) &&
2001                  "Expected non-function-local metadata");
2002           Elts.push_back(MD);
2003         } else
2004           Elts.push_back(nullptr);
2005       }
2006       MetadataList.assignValue(MDNode::get(Context, Elts), NextMetadataNo++);
2007       break;
2008     }
2009     case bitc::METADATA_VALUE: {
2010       if (Record.size() != 2)
2011         return error("Invalid record");
2012
2013       Type *Ty = getTypeByID(Record[0]);
2014       if (Ty->isMetadataTy() || Ty->isVoidTy())
2015         return error("Invalid record");
2016
2017       MetadataList.assignValue(
2018           ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
2019           NextMetadataNo++);
2020       break;
2021     }
2022     case bitc::METADATA_DISTINCT_NODE:
2023       IsDistinct = true;
2024       // fallthrough...
2025     case bitc::METADATA_NODE: {
2026       SmallVector<Metadata *, 8> Elts;
2027       Elts.reserve(Record.size());
2028       for (unsigned ID : Record)
2029         Elts.push_back(ID ? MetadataList.getValueFwdRef(ID - 1) : nullptr);
2030       MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts)
2031                                           : MDNode::get(Context, Elts),
2032                                NextMetadataNo++);
2033       break;
2034     }
2035     case bitc::METADATA_LOCATION: {
2036       if (Record.size() != 5)
2037         return error("Invalid record");
2038
2039       unsigned Line = Record[1];
2040       unsigned Column = Record[2];
2041       MDNode *Scope = cast<MDNode>(MetadataList.getValueFwdRef(Record[3]));
2042       Metadata *InlinedAt =
2043           Record[4] ? MetadataList.getValueFwdRef(Record[4] - 1) : nullptr;
2044       MetadataList.assignValue(
2045           GET_OR_DISTINCT(DILocation, Record[0],
2046                           (Context, Line, Column, Scope, InlinedAt)),
2047           NextMetadataNo++);
2048       break;
2049     }
2050     case bitc::METADATA_GENERIC_DEBUG: {
2051       if (Record.size() < 4)
2052         return error("Invalid record");
2053
2054       unsigned Tag = Record[1];
2055       unsigned Version = Record[2];
2056
2057       if (Tag >= 1u << 16 || Version != 0)
2058         return error("Invalid record");
2059
2060       auto *Header = getMDString(Record[3]);
2061       SmallVector<Metadata *, 8> DwarfOps;
2062       for (unsigned I = 4, E = Record.size(); I != E; ++I)
2063         DwarfOps.push_back(
2064             Record[I] ? MetadataList.getValueFwdRef(Record[I] - 1) : nullptr);
2065       MetadataList.assignValue(
2066           GET_OR_DISTINCT(GenericDINode, Record[0],
2067                           (Context, Tag, Header, DwarfOps)),
2068           NextMetadataNo++);
2069       break;
2070     }
2071     case bitc::METADATA_SUBRANGE: {
2072       if (Record.size() != 3)
2073         return error("Invalid record");
2074
2075       MetadataList.assignValue(
2076           GET_OR_DISTINCT(DISubrange, Record[0],
2077                           (Context, Record[1], unrotateSign(Record[2]))),
2078           NextMetadataNo++);
2079       break;
2080     }
2081     case bitc::METADATA_ENUMERATOR: {
2082       if (Record.size() != 3)
2083         return error("Invalid record");
2084
2085       MetadataList.assignValue(
2086           GET_OR_DISTINCT(
2087               DIEnumerator, Record[0],
2088               (Context, unrotateSign(Record[1]), getMDString(Record[2]))),
2089           NextMetadataNo++);
2090       break;
2091     }
2092     case bitc::METADATA_BASIC_TYPE: {
2093       if (Record.size() != 6)
2094         return error("Invalid record");
2095
2096       MetadataList.assignValue(
2097           GET_OR_DISTINCT(DIBasicType, Record[0],
2098                           (Context, Record[1], getMDString(Record[2]),
2099                            Record[3], Record[4], Record[5])),
2100           NextMetadataNo++);
2101       break;
2102     }
2103     case bitc::METADATA_DERIVED_TYPE: {
2104       if (Record.size() != 12)
2105         return error("Invalid record");
2106
2107       MetadataList.assignValue(
2108           GET_OR_DISTINCT(DIDerivedType, Record[0],
2109                           (Context, Record[1], getMDString(Record[2]),
2110                            getMDOrNull(Record[3]), Record[4],
2111                            getMDOrNull(Record[5]), getMDOrNull(Record[6]),
2112                            Record[7], Record[8], Record[9], Record[10],
2113                            getMDOrNull(Record[11]))),
2114           NextMetadataNo++);
2115       break;
2116     }
2117     case bitc::METADATA_COMPOSITE_TYPE: {
2118       if (Record.size() != 16)
2119         return error("Invalid record");
2120
2121       MetadataList.assignValue(
2122           GET_OR_DISTINCT(DICompositeType, Record[0],
2123                           (Context, Record[1], getMDString(Record[2]),
2124                            getMDOrNull(Record[3]), Record[4],
2125                            getMDOrNull(Record[5]), getMDOrNull(Record[6]),
2126                            Record[7], Record[8], Record[9], Record[10],
2127                            getMDOrNull(Record[11]), Record[12],
2128                            getMDOrNull(Record[13]), getMDOrNull(Record[14]),
2129                            getMDString(Record[15]))),
2130           NextMetadataNo++);
2131       break;
2132     }
2133     case bitc::METADATA_SUBROUTINE_TYPE: {
2134       if (Record.size() != 3)
2135         return error("Invalid record");
2136
2137       MetadataList.assignValue(
2138           GET_OR_DISTINCT(DISubroutineType, Record[0],
2139                           (Context, Record[1], getMDOrNull(Record[2]))),
2140           NextMetadataNo++);
2141       break;
2142     }
2143
2144     case bitc::METADATA_MODULE: {
2145       if (Record.size() != 6)
2146         return error("Invalid record");
2147
2148       MetadataList.assignValue(
2149           GET_OR_DISTINCT(DIModule, Record[0],
2150                           (Context, getMDOrNull(Record[1]),
2151                            getMDString(Record[2]), getMDString(Record[3]),
2152                            getMDString(Record[4]), getMDString(Record[5]))),
2153           NextMetadataNo++);
2154       break;
2155     }
2156
2157     case bitc::METADATA_FILE: {
2158       if (Record.size() != 3)
2159         return error("Invalid record");
2160
2161       MetadataList.assignValue(
2162           GET_OR_DISTINCT(DIFile, Record[0], (Context, getMDString(Record[1]),
2163                                               getMDString(Record[2]))),
2164           NextMetadataNo++);
2165       break;
2166     }
2167     case bitc::METADATA_COMPILE_UNIT: {
2168       if (Record.size() < 14 || Record.size() > 16)
2169         return error("Invalid record");
2170
2171       // Ignore Record[0], which indicates whether this compile unit is
2172       // distinct.  It's always distinct.
2173       MetadataList.assignValue(
2174           DICompileUnit::getDistinct(
2175               Context, Record[1], getMDOrNull(Record[2]),
2176               getMDString(Record[3]), Record[4], getMDString(Record[5]),
2177               Record[6], getMDString(Record[7]), Record[8],
2178               getMDOrNull(Record[9]), getMDOrNull(Record[10]),
2179               getMDOrNull(Record[11]), getMDOrNull(Record[12]),
2180               getMDOrNull(Record[13]),
2181               Record.size() <= 15 ? 0 : getMDOrNull(Record[15]),
2182               Record.size() <= 14 ? 0 : Record[14]),
2183           NextMetadataNo++);
2184       break;
2185     }
2186     case bitc::METADATA_SUBPROGRAM: {
2187       if (Record.size() != 18 && Record.size() != 19)
2188         return error("Invalid record");
2189
2190       bool HasFn = Record.size() == 19;
2191       DISubprogram *SP = GET_OR_DISTINCT(
2192           DISubprogram,
2193           Record[0] || Record[8], // All definitions should be distinct.
2194           (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
2195            getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
2196            getMDOrNull(Record[6]), Record[7], Record[8], Record[9],
2197            getMDOrNull(Record[10]), Record[11], Record[12], Record[13],
2198            Record[14], getMDOrNull(Record[15 + HasFn]),
2199            getMDOrNull(Record[16 + HasFn]), getMDOrNull(Record[17 + HasFn])));
2200       MetadataList.assignValue(SP, NextMetadataNo++);
2201
2202       // Upgrade sp->function mapping to function->sp mapping.
2203       if (HasFn && Record[15]) {
2204         if (auto *CMD = dyn_cast<ConstantAsMetadata>(getMDOrNull(Record[15])))
2205           if (auto *F = dyn_cast<Function>(CMD->getValue())) {
2206             if (F->isMaterializable())
2207               // Defer until materialized; unmaterialized functions may not have
2208               // metadata.
2209               FunctionsWithSPs[F] = SP;
2210             else if (!F->empty())
2211               F->setSubprogram(SP);
2212           }
2213       }
2214       break;
2215     }
2216     case bitc::METADATA_LEXICAL_BLOCK: {
2217       if (Record.size() != 5)
2218         return error("Invalid record");
2219
2220       MetadataList.assignValue(
2221           GET_OR_DISTINCT(DILexicalBlock, Record[0],
2222                           (Context, getMDOrNull(Record[1]),
2223                            getMDOrNull(Record[2]), Record[3], Record[4])),
2224           NextMetadataNo++);
2225       break;
2226     }
2227     case bitc::METADATA_LEXICAL_BLOCK_FILE: {
2228       if (Record.size() != 4)
2229         return error("Invalid record");
2230
2231       MetadataList.assignValue(
2232           GET_OR_DISTINCT(DILexicalBlockFile, Record[0],
2233                           (Context, getMDOrNull(Record[1]),
2234                            getMDOrNull(Record[2]), Record[3])),
2235           NextMetadataNo++);
2236       break;
2237     }
2238     case bitc::METADATA_NAMESPACE: {
2239       if (Record.size() != 5)
2240         return error("Invalid record");
2241
2242       MetadataList.assignValue(
2243           GET_OR_DISTINCT(DINamespace, Record[0],
2244                           (Context, getMDOrNull(Record[1]),
2245                            getMDOrNull(Record[2]), getMDString(Record[3]),
2246                            Record[4])),
2247           NextMetadataNo++);
2248       break;
2249     }
2250     case bitc::METADATA_MACRO: {
2251       if (Record.size() != 5)
2252         return error("Invalid record");
2253
2254       MetadataList.assignValue(
2255           GET_OR_DISTINCT(DIMacro, Record[0],
2256                           (Context, Record[1], Record[2],
2257                            getMDString(Record[3]), getMDString(Record[4]))),
2258           NextMetadataNo++);
2259       break;
2260     }
2261     case bitc::METADATA_MACRO_FILE: {
2262       if (Record.size() != 5)
2263         return error("Invalid record");
2264
2265       MetadataList.assignValue(
2266           GET_OR_DISTINCT(DIMacroFile, Record[0],
2267                           (Context, Record[1], Record[2],
2268                            getMDOrNull(Record[3]), getMDOrNull(Record[4]))),
2269           NextMetadataNo++);
2270       break;
2271     }
2272     case bitc::METADATA_TEMPLATE_TYPE: {
2273       if (Record.size() != 3)
2274         return error("Invalid record");
2275
2276       MetadataList.assignValue(GET_OR_DISTINCT(DITemplateTypeParameter,
2277                                                Record[0],
2278                                                (Context, getMDString(Record[1]),
2279                                                 getMDOrNull(Record[2]))),
2280                                NextMetadataNo++);
2281       break;
2282     }
2283     case bitc::METADATA_TEMPLATE_VALUE: {
2284       if (Record.size() != 5)
2285         return error("Invalid record");
2286
2287       MetadataList.assignValue(
2288           GET_OR_DISTINCT(DITemplateValueParameter, Record[0],
2289                           (Context, Record[1], getMDString(Record[2]),
2290                            getMDOrNull(Record[3]), getMDOrNull(Record[4]))),
2291           NextMetadataNo++);
2292       break;
2293     }
2294     case bitc::METADATA_GLOBAL_VAR: {
2295       if (Record.size() != 11)
2296         return error("Invalid record");
2297
2298       MetadataList.assignValue(
2299           GET_OR_DISTINCT(DIGlobalVariable, Record[0],
2300                           (Context, getMDOrNull(Record[1]),
2301                            getMDString(Record[2]), getMDString(Record[3]),
2302                            getMDOrNull(Record[4]), Record[5],
2303                            getMDOrNull(Record[6]), Record[7], Record[8],
2304                            getMDOrNull(Record[9]), getMDOrNull(Record[10]))),
2305           NextMetadataNo++);
2306       break;
2307     }
2308     case bitc::METADATA_LOCAL_VAR: {
2309       // 10th field is for the obseleted 'inlinedAt:' field.
2310       if (Record.size() < 8 || Record.size() > 10)
2311         return error("Invalid record");
2312
2313       // 2nd field used to be an artificial tag, either DW_TAG_auto_variable or
2314       // DW_TAG_arg_variable.
2315       bool HasTag = Record.size() > 8;
2316       MetadataList.assignValue(
2317           GET_OR_DISTINCT(DILocalVariable, Record[0],
2318                           (Context, getMDOrNull(Record[1 + HasTag]),
2319                            getMDString(Record[2 + HasTag]),
2320                            getMDOrNull(Record[3 + HasTag]), Record[4 + HasTag],
2321                            getMDOrNull(Record[5 + HasTag]), Record[6 + HasTag],
2322                            Record[7 + HasTag])),
2323           NextMetadataNo++);
2324       break;
2325     }
2326     case bitc::METADATA_EXPRESSION: {
2327       if (Record.size() < 1)
2328         return error("Invalid record");
2329
2330       MetadataList.assignValue(
2331           GET_OR_DISTINCT(DIExpression, Record[0],
2332                           (Context, makeArrayRef(Record).slice(1))),
2333           NextMetadataNo++);
2334       break;
2335     }
2336     case bitc::METADATA_OBJC_PROPERTY: {
2337       if (Record.size() != 8)
2338         return error("Invalid record");
2339
2340       MetadataList.assignValue(
2341           GET_OR_DISTINCT(DIObjCProperty, Record[0],
2342                           (Context, getMDString(Record[1]),
2343                            getMDOrNull(Record[2]), Record[3],
2344                            getMDString(Record[4]), getMDString(Record[5]),
2345                            Record[6], getMDOrNull(Record[7]))),
2346           NextMetadataNo++);
2347       break;
2348     }
2349     case bitc::METADATA_IMPORTED_ENTITY: {
2350       if (Record.size() != 6)
2351         return error("Invalid record");
2352
2353       MetadataList.assignValue(
2354           GET_OR_DISTINCT(DIImportedEntity, Record[0],
2355                           (Context, Record[1], getMDOrNull(Record[2]),
2356                            getMDOrNull(Record[3]), Record[4],
2357                            getMDString(Record[5]))),
2358           NextMetadataNo++);
2359       break;
2360     }
2361     case bitc::METADATA_STRING: {
2362       std::string String(Record.begin(), Record.end());
2363       llvm::UpgradeMDStringConstant(String);
2364       Metadata *MD = MDString::get(Context, String);
2365       MetadataList.assignValue(MD, NextMetadataNo++);
2366       break;
2367     }
2368     case bitc::METADATA_KIND: {
2369       // Support older bitcode files that had METADATA_KIND records in a
2370       // block with METADATA_BLOCK_ID.
2371       if (std::error_code EC = parseMetadataKindRecord(Record))
2372         return EC;
2373       break;
2374     }
2375     }
2376   }
2377 #undef GET_OR_DISTINCT
2378 }
2379
2380 /// Parse the metadata kinds out of the METADATA_KIND_BLOCK.
2381 std::error_code BitcodeReader::parseMetadataKinds() {
2382   if (Stream.EnterSubBlock(bitc::METADATA_KIND_BLOCK_ID))
2383     return error("Invalid record");
2384
2385   SmallVector<uint64_t, 64> Record;
2386
2387   // Read all the records.
2388   while (1) {
2389     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
2390
2391     switch (Entry.Kind) {
2392     case BitstreamEntry::SubBlock: // Handled for us already.
2393     case BitstreamEntry::Error:
2394       return error("Malformed block");
2395     case BitstreamEntry::EndBlock:
2396       return std::error_code();
2397     case BitstreamEntry::Record:
2398       // The interesting case.
2399       break;
2400     }
2401
2402     // Read a record.
2403     Record.clear();
2404     unsigned Code = Stream.readRecord(Entry.ID, Record);
2405     switch (Code) {
2406     default: // Default behavior: ignore.
2407       break;
2408     case bitc::METADATA_KIND: {
2409       if (std::error_code EC = parseMetadataKindRecord(Record))
2410         return EC;
2411       break;
2412     }
2413     }
2414   }
2415 }
2416
2417 /// Decode a signed value stored with the sign bit in the LSB for dense VBR
2418 /// encoding.
2419 uint64_t BitcodeReader::decodeSignRotatedValue(uint64_t V) {
2420   if ((V & 1) == 0)
2421     return V >> 1;
2422   if (V != 1)
2423     return -(V >> 1);
2424   // There is no such thing as -0 with integers.  "-0" really means MININT.
2425   return 1ULL << 63;
2426 }
2427
2428 /// Resolve all of the initializers for global values and aliases that we can.
2429 std::error_code BitcodeReader::resolveGlobalAndAliasInits() {
2430   std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInitWorklist;
2431   std::vector<std::pair<GlobalAlias*, unsigned> > AliasInitWorklist;
2432   std::vector<std::pair<Function*, unsigned> > FunctionPrefixWorklist;
2433   std::vector<std::pair<Function*, unsigned> > FunctionPrologueWorklist;
2434   std::vector<std::pair<Function*, unsigned> > FunctionPersonalityFnWorklist;
2435
2436   GlobalInitWorklist.swap(GlobalInits);
2437   AliasInitWorklist.swap(AliasInits);
2438   FunctionPrefixWorklist.swap(FunctionPrefixes);
2439   FunctionPrologueWorklist.swap(FunctionPrologues);
2440   FunctionPersonalityFnWorklist.swap(FunctionPersonalityFns);
2441
2442   while (!GlobalInitWorklist.empty()) {
2443     unsigned ValID = GlobalInitWorklist.back().second;
2444     if (ValID >= ValueList.size()) {
2445       // Not ready to resolve this yet, it requires something later in the file.
2446       GlobalInits.push_back(GlobalInitWorklist.back());
2447     } else {
2448       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
2449         GlobalInitWorklist.back().first->setInitializer(C);
2450       else
2451         return error("Expected a constant");
2452     }
2453     GlobalInitWorklist.pop_back();
2454   }
2455
2456   while (!AliasInitWorklist.empty()) {
2457     unsigned ValID = AliasInitWorklist.back().second;
2458     if (ValID >= ValueList.size()) {
2459       AliasInits.push_back(AliasInitWorklist.back());
2460     } else {
2461       Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]);
2462       if (!C)
2463         return error("Expected a constant");
2464       GlobalAlias *Alias = AliasInitWorklist.back().first;
2465       if (C->getType() != Alias->getType())
2466         return error("Alias and aliasee types don't match");
2467       Alias->setAliasee(C);
2468     }
2469     AliasInitWorklist.pop_back();
2470   }
2471
2472   while (!FunctionPrefixWorklist.empty()) {
2473     unsigned ValID = FunctionPrefixWorklist.back().second;
2474     if (ValID >= ValueList.size()) {
2475       FunctionPrefixes.push_back(FunctionPrefixWorklist.back());
2476     } else {
2477       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
2478         FunctionPrefixWorklist.back().first->setPrefixData(C);
2479       else
2480         return error("Expected a constant");
2481     }
2482     FunctionPrefixWorklist.pop_back();
2483   }
2484
2485   while (!FunctionPrologueWorklist.empty()) {
2486     unsigned ValID = FunctionPrologueWorklist.back().second;
2487     if (ValID >= ValueList.size()) {
2488       FunctionPrologues.push_back(FunctionPrologueWorklist.back());
2489     } else {
2490       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
2491         FunctionPrologueWorklist.back().first->setPrologueData(C);
2492       else
2493         return error("Expected a constant");
2494     }
2495     FunctionPrologueWorklist.pop_back();
2496   }
2497
2498   while (!FunctionPersonalityFnWorklist.empty()) {
2499     unsigned ValID = FunctionPersonalityFnWorklist.back().second;
2500     if (ValID >= ValueList.size()) {
2501       FunctionPersonalityFns.push_back(FunctionPersonalityFnWorklist.back());
2502     } else {
2503       if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]))
2504         FunctionPersonalityFnWorklist.back().first->setPersonalityFn(C);
2505       else
2506         return error("Expected a constant");
2507     }
2508     FunctionPersonalityFnWorklist.pop_back();
2509   }
2510
2511   return std::error_code();
2512 }
2513
2514 static APInt readWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) {
2515   SmallVector<uint64_t, 8> Words(Vals.size());
2516   std::transform(Vals.begin(), Vals.end(), Words.begin(),
2517                  BitcodeReader::decodeSignRotatedValue);
2518
2519   return APInt(TypeBits, Words);
2520 }
2521
2522 std::error_code BitcodeReader::parseConstants() {
2523   if (Stream.EnterSubBlock(bitc::CONSTANTS_BLOCK_ID))
2524     return error("Invalid record");
2525
2526   SmallVector<uint64_t, 64> Record;
2527
2528   // Read all the records for this value table.
2529   Type *CurTy = Type::getInt32Ty(Context);
2530   unsigned NextCstNo = ValueList.size();
2531   while (1) {
2532     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
2533
2534     switch (Entry.Kind) {
2535     case BitstreamEntry::SubBlock: // Handled for us already.
2536     case BitstreamEntry::Error:
2537       return error("Malformed block");
2538     case BitstreamEntry::EndBlock:
2539       if (NextCstNo != ValueList.size())
2540         return error("Invalid ronstant reference");
2541
2542       // Once all the constants have been read, go through and resolve forward
2543       // references.
2544       ValueList.resolveConstantForwardRefs();
2545       return std::error_code();
2546     case BitstreamEntry::Record:
2547       // The interesting case.
2548       break;
2549     }
2550
2551     // Read a record.
2552     Record.clear();
2553     Value *V = nullptr;
2554     unsigned BitCode = Stream.readRecord(Entry.ID, Record);
2555     switch (BitCode) {
2556     default:  // Default behavior: unknown constant
2557     case bitc::CST_CODE_UNDEF:     // UNDEF
2558       V = UndefValue::get(CurTy);
2559       break;
2560     case bitc::CST_CODE_SETTYPE:   // SETTYPE: [typeid]
2561       if (Record.empty())
2562         return error("Invalid record");
2563       if (Record[0] >= TypeList.size() || !TypeList[Record[0]])
2564         return error("Invalid record");
2565       CurTy = TypeList[Record[0]];
2566       continue;  // Skip the ValueList manipulation.
2567     case bitc::CST_CODE_NULL:      // NULL
2568       V = Constant::getNullValue(CurTy);
2569       break;
2570     case bitc::CST_CODE_INTEGER:   // INTEGER: [intval]
2571       if (!CurTy->isIntegerTy() || Record.empty())
2572         return error("Invalid record");
2573       V = ConstantInt::get(CurTy, decodeSignRotatedValue(Record[0]));
2574       break;
2575     case bitc::CST_CODE_WIDE_INTEGER: {// WIDE_INTEGER: [n x intval]
2576       if (!CurTy->isIntegerTy() || Record.empty())
2577         return error("Invalid record");
2578
2579       APInt VInt =
2580           readWideAPInt(Record, cast<IntegerType>(CurTy)->getBitWidth());
2581       V = ConstantInt::get(Context, VInt);
2582
2583       break;
2584     }
2585     case bitc::CST_CODE_FLOAT: {    // FLOAT: [fpval]
2586       if (Record.empty())
2587         return error("Invalid record");
2588       if (CurTy->isHalfTy())
2589         V = ConstantFP::get(Context, APFloat(APFloat::IEEEhalf,
2590                                              APInt(16, (uint16_t)Record[0])));
2591       else if (CurTy->isFloatTy())
2592         V = ConstantFP::get(Context, APFloat(APFloat::IEEEsingle,
2593                                              APInt(32, (uint32_t)Record[0])));
2594       else if (CurTy->isDoubleTy())
2595         V = ConstantFP::get(Context, APFloat(APFloat::IEEEdouble,
2596                                              APInt(64, Record[0])));
2597       else if (CurTy->isX86_FP80Ty()) {
2598         // Bits are not stored the same way as a normal i80 APInt, compensate.
2599         uint64_t Rearrange[2];
2600         Rearrange[0] = (Record[1] & 0xffffLL) | (Record[0] << 16);
2601         Rearrange[1] = Record[0] >> 48;
2602         V = ConstantFP::get(Context, APFloat(APFloat::x87DoubleExtended,
2603                                              APInt(80, Rearrange)));
2604       } else if (CurTy->isFP128Ty())
2605         V = ConstantFP::get(Context, APFloat(APFloat::IEEEquad,
2606                                              APInt(128, Record)));
2607       else if (CurTy->isPPC_FP128Ty())
2608         V = ConstantFP::get(Context, APFloat(APFloat::PPCDoubleDouble,
2609                                              APInt(128, Record)));
2610       else
2611         V = UndefValue::get(CurTy);
2612       break;
2613     }
2614
2615     case bitc::CST_CODE_AGGREGATE: {// AGGREGATE: [n x value number]
2616       if (Record.empty())
2617         return error("Invalid record");
2618
2619       unsigned Size = Record.size();
2620       SmallVector<Constant*, 16> Elts;
2621
2622       if (StructType *STy = dyn_cast<StructType>(CurTy)) {
2623         for (unsigned i = 0; i != Size; ++i)
2624           Elts.push_back(ValueList.getConstantFwdRef(Record[i],
2625                                                      STy->getElementType(i)));
2626         V = ConstantStruct::get(STy, Elts);
2627       } else if (ArrayType *ATy = dyn_cast<ArrayType>(CurTy)) {
2628         Type *EltTy = ATy->getElementType();
2629         for (unsigned i = 0; i != Size; ++i)
2630           Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
2631         V = ConstantArray::get(ATy, Elts);
2632       } else if (VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
2633         Type *EltTy = VTy->getElementType();
2634         for (unsigned i = 0; i != Size; ++i)
2635           Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
2636         V = ConstantVector::get(Elts);
2637       } else {
2638         V = UndefValue::get(CurTy);
2639       }
2640       break;
2641     }
2642     case bitc::CST_CODE_STRING:    // STRING: [values]
2643     case bitc::CST_CODE_CSTRING: { // CSTRING: [values]
2644       if (Record.empty())
2645         return error("Invalid record");
2646
2647       SmallString<16> Elts(Record.begin(), Record.end());
2648       V = ConstantDataArray::getString(Context, Elts,
2649                                        BitCode == bitc::CST_CODE_CSTRING);
2650       break;
2651     }
2652     case bitc::CST_CODE_DATA: {// DATA: [n x value]
2653       if (Record.empty())
2654         return error("Invalid record");
2655
2656       Type *EltTy = cast<SequentialType>(CurTy)->getElementType();
2657       unsigned Size = Record.size();
2658
2659       if (EltTy->isIntegerTy(8)) {
2660         SmallVector<uint8_t, 16> Elts(Record.begin(), Record.end());
2661         if (isa<VectorType>(CurTy))
2662           V = ConstantDataVector::get(Context, Elts);
2663         else
2664           V = ConstantDataArray::get(Context, Elts);
2665       } else if (EltTy->isIntegerTy(16)) {
2666         SmallVector<uint16_t, 16> Elts(Record.begin(), Record.end());
2667         if (isa<VectorType>(CurTy))
2668           V = ConstantDataVector::get(Context, Elts);
2669         else
2670           V = ConstantDataArray::get(Context, Elts);
2671       } else if (EltTy->isIntegerTy(32)) {
2672         SmallVector<uint32_t, 16> Elts(Record.begin(), Record.end());
2673         if (isa<VectorType>(CurTy))
2674           V = ConstantDataVector::get(Context, Elts);
2675         else
2676           V = ConstantDataArray::get(Context, Elts);
2677       } else if (EltTy->isIntegerTy(64)) {
2678         SmallVector<uint64_t, 16> Elts(Record.begin(), Record.end());
2679         if (isa<VectorType>(CurTy))
2680           V = ConstantDataVector::get(Context, Elts);
2681         else
2682           V = ConstantDataArray::get(Context, Elts);
2683       } else if (EltTy->isFloatTy()) {
2684         SmallVector<float, 16> Elts(Size);
2685         std::transform(Record.begin(), Record.end(), Elts.begin(), BitsToFloat);
2686         if (isa<VectorType>(CurTy))
2687           V = ConstantDataVector::get(Context, Elts);
2688         else
2689           V = ConstantDataArray::get(Context, Elts);
2690       } else if (EltTy->isDoubleTy()) {
2691         SmallVector<double, 16> Elts(Size);
2692         std::transform(Record.begin(), Record.end(), Elts.begin(),
2693                        BitsToDouble);
2694         if (isa<VectorType>(CurTy))
2695           V = ConstantDataVector::get(Context, Elts);
2696         else
2697           V = ConstantDataArray::get(Context, Elts);
2698       } else {
2699         return error("Invalid type for value");
2700       }
2701       break;
2702     }
2703
2704     case bitc::CST_CODE_CE_BINOP: {  // CE_BINOP: [opcode, opval, opval]
2705       if (Record.size() < 3)
2706         return error("Invalid record");
2707       int Opc = getDecodedBinaryOpcode(Record[0], CurTy);
2708       if (Opc < 0) {
2709         V = UndefValue::get(CurTy);  // Unknown binop.
2710       } else {
2711         Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy);
2712         Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy);
2713         unsigned Flags = 0;
2714         if (Record.size() >= 4) {
2715           if (Opc == Instruction::Add ||
2716               Opc == Instruction::Sub ||
2717               Opc == Instruction::Mul ||
2718               Opc == Instruction::Shl) {
2719             if (Record[3] & (1 << bitc::OBO_NO_SIGNED_WRAP))
2720               Flags |= OverflowingBinaryOperator::NoSignedWrap;
2721             if (Record[3] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
2722               Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2723           } else if (Opc == Instruction::SDiv ||
2724                      Opc == Instruction::UDiv ||
2725                      Opc == Instruction::LShr ||
2726                      Opc == Instruction::AShr) {
2727             if (Record[3] & (1 << bitc::PEO_EXACT))
2728               Flags |= SDivOperator::IsExact;
2729           }
2730         }
2731         V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2732       }
2733       break;
2734     }
2735     case bitc::CST_CODE_CE_CAST: {  // CE_CAST: [opcode, opty, opval]
2736       if (Record.size() < 3)
2737         return error("Invalid record");
2738       int Opc = getDecodedCastOpcode(Record[0]);
2739       if (Opc < 0) {
2740         V = UndefValue::get(CurTy);  // Unknown cast.
2741       } else {
2742         Type *OpTy = getTypeByID(Record[1]);
2743         if (!OpTy)
2744           return error("Invalid record");
2745         Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
2746         V = UpgradeBitCastExpr(Opc, Op, CurTy);
2747         if (!V) V = ConstantExpr::getCast(Opc, Op, CurTy);
2748       }
2749       break;
2750     }
2751     case bitc::CST_CODE_CE_INBOUNDS_GEP:
2752     case bitc::CST_CODE_CE_GEP: {  // CE_GEP:        [n x operands]
2753       unsigned OpNum = 0;
2754       Type *PointeeType = nullptr;
2755       if (Record.size() % 2)
2756         PointeeType = getTypeByID(Record[OpNum++]);
2757       SmallVector<Constant*, 16> Elts;
2758       while (OpNum != Record.size()) {
2759         Type *ElTy = getTypeByID(Record[OpNum++]);
2760         if (!ElTy)
2761           return error("Invalid record");
2762         Elts.push_back(ValueList.getConstantFwdRef(Record[OpNum++], ElTy));
2763       }
2764
2765       if (PointeeType &&
2766           PointeeType !=
2767               cast<SequentialType>(Elts[0]->getType()->getScalarType())
2768                   ->getElementType())
2769         return error("Explicit gep operator type does not match pointee type "
2770                      "of pointer operand");
2771
2772       ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
2773       V = ConstantExpr::getGetElementPtr(PointeeType, Elts[0], Indices,
2774                                          BitCode ==
2775                                              bitc::CST_CODE_CE_INBOUNDS_GEP);
2776       break;
2777     }
2778     case bitc::CST_CODE_CE_SELECT: {  // CE_SELECT: [opval#, opval#, opval#]
2779       if (Record.size() < 3)
2780         return error("Invalid record");
2781
2782       Type *SelectorTy = Type::getInt1Ty(Context);
2783
2784       // The selector might be an i1 or an <n x i1>
2785       // Get the type from the ValueList before getting a forward ref.
2786       if (VectorType *VTy = dyn_cast<VectorType>(CurTy))
2787         if (Value *V = ValueList[Record[0]])
2788           if (SelectorTy != V->getType())
2789             SelectorTy = VectorType::get(SelectorTy, VTy->getNumElements());
2790
2791       V = ConstantExpr::getSelect(ValueList.getConstantFwdRef(Record[0],
2792                                                               SelectorTy),
2793                                   ValueList.getConstantFwdRef(Record[1],CurTy),
2794                                   ValueList.getConstantFwdRef(Record[2],CurTy));
2795       break;
2796     }
2797     case bitc::CST_CODE_CE_EXTRACTELT
2798         : { // CE_EXTRACTELT: [opty, opval, opty, opval]
2799       if (Record.size() < 3)
2800         return error("Invalid record");
2801       VectorType *OpTy =
2802         dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
2803       if (!OpTy)
2804         return error("Invalid record");
2805       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
2806       Constant *Op1 = nullptr;
2807       if (Record.size() == 4) {
2808         Type *IdxTy = getTypeByID(Record[2]);
2809         if (!IdxTy)
2810           return error("Invalid record");
2811         Op1 = ValueList.getConstantFwdRef(Record[3], IdxTy);
2812       } else // TODO: Remove with llvm 4.0
2813         Op1 = ValueList.getConstantFwdRef(Record[2], Type::getInt32Ty(Context));
2814       if (!Op1)
2815         return error("Invalid record");
2816       V = ConstantExpr::getExtractElement(Op0, Op1);
2817       break;
2818     }
2819     case bitc::CST_CODE_CE_INSERTELT
2820         : { // CE_INSERTELT: [opval, opval, opty, opval]
2821       VectorType *OpTy = dyn_cast<VectorType>(CurTy);
2822       if (Record.size() < 3 || !OpTy)
2823         return error("Invalid record");
2824       Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
2825       Constant *Op1 = ValueList.getConstantFwdRef(Record[1],
2826                                                   OpTy->getElementType());
2827       Constant *Op2 = nullptr;
2828       if (Record.size() == 4) {
2829         Type *IdxTy = getTypeByID(Record[2]);
2830         if (!IdxTy)
2831           return error("Invalid record");
2832         Op2 = ValueList.getConstantFwdRef(Record[3], IdxTy);
2833       } else // TODO: Remove with llvm 4.0
2834         Op2 = ValueList.getConstantFwdRef(Record[2], Type::getInt32Ty(Context));
2835       if (!Op2)
2836         return error("Invalid record");
2837       V = ConstantExpr::getInsertElement(Op0, Op1, Op2);
2838       break;
2839     }
2840     case bitc::CST_CODE_CE_SHUFFLEVEC: { // CE_SHUFFLEVEC: [opval, opval, opval]
2841       VectorType *OpTy = dyn_cast<VectorType>(CurTy);
2842       if (Record.size() < 3 || !OpTy)
2843         return error("Invalid record");
2844       Constant *Op0 = ValueList.getConstantFwdRef(Record[0], OpTy);
2845       Constant *Op1 = ValueList.getConstantFwdRef(Record[1], OpTy);
2846       Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
2847                                                  OpTy->getNumElements());
2848       Constant *Op2 = ValueList.getConstantFwdRef(Record[2], ShufTy);
2849       V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
2850       break;
2851     }
2852     case bitc::CST_CODE_CE_SHUFVEC_EX: { // [opty, opval, opval, opval]
2853       VectorType *RTy = dyn_cast<VectorType>(CurTy);
2854       VectorType *OpTy =
2855         dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
2856       if (Record.size() < 4 || !RTy || !OpTy)
2857         return error("Invalid record");
2858       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
2859       Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
2860       Type *ShufTy = VectorType::get(Type::getInt32Ty(Context),
2861                                                  RTy->getNumElements());
2862       Constant *Op2 = ValueList.getConstantFwdRef(Record[3], ShufTy);
2863       V = ConstantExpr::getShuffleVector(Op0, Op1, Op2);
2864       break;
2865     }
2866     case bitc::CST_CODE_CE_CMP: {     // CE_CMP: [opty, opval, opval, pred]
2867       if (Record.size() < 4)
2868         return error("Invalid record");
2869       Type *OpTy = getTypeByID(Record[0]);
2870       if (!OpTy)
2871         return error("Invalid record");
2872       Constant *Op0 = ValueList.getConstantFwdRef(Record[1], OpTy);
2873       Constant *Op1 = ValueList.getConstantFwdRef(Record[2], OpTy);
2874
2875       if (OpTy->isFPOrFPVectorTy())
2876         V = ConstantExpr::getFCmp(Record[3], Op0, Op1);
2877       else
2878         V = ConstantExpr::getICmp(Record[3], Op0, Op1);
2879       break;
2880     }
2881     // This maintains backward compatibility, pre-asm dialect keywords.
2882     // FIXME: Remove with the 4.0 release.
2883     case bitc::CST_CODE_INLINEASM_OLD: {
2884       if (Record.size() < 2)
2885         return error("Invalid record");
2886       std::string AsmStr, ConstrStr;
2887       bool HasSideEffects = Record[0] & 1;
2888       bool IsAlignStack = Record[0] >> 1;
2889       unsigned AsmStrSize = Record[1];
2890       if (2+AsmStrSize >= Record.size())
2891         return error("Invalid record");
2892       unsigned ConstStrSize = Record[2+AsmStrSize];
2893       if (3+AsmStrSize+ConstStrSize > Record.size())
2894         return error("Invalid record");
2895
2896       for (unsigned i = 0; i != AsmStrSize; ++i)
2897         AsmStr += (char)Record[2+i];
2898       for (unsigned i = 0; i != ConstStrSize; ++i)
2899         ConstrStr += (char)Record[3+AsmStrSize+i];
2900       PointerType *PTy = cast<PointerType>(CurTy);
2901       V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
2902                          AsmStr, ConstrStr, HasSideEffects, IsAlignStack);
2903       break;
2904     }
2905     // This version adds support for the asm dialect keywords (e.g.,
2906     // inteldialect).
2907     case bitc::CST_CODE_INLINEASM: {
2908       if (Record.size() < 2)
2909         return error("Invalid record");
2910       std::string AsmStr, ConstrStr;
2911       bool HasSideEffects = Record[0] & 1;
2912       bool IsAlignStack = (Record[0] >> 1) & 1;
2913       unsigned AsmDialect = Record[0] >> 2;
2914       unsigned AsmStrSize = Record[1];
2915       if (2+AsmStrSize >= Record.size())
2916         return error("Invalid record");
2917       unsigned ConstStrSize = Record[2+AsmStrSize];
2918       if (3+AsmStrSize+ConstStrSize > Record.size())
2919         return error("Invalid record");
2920
2921       for (unsigned i = 0; i != AsmStrSize; ++i)
2922         AsmStr += (char)Record[2+i];
2923       for (unsigned i = 0; i != ConstStrSize; ++i)
2924         ConstrStr += (char)Record[3+AsmStrSize+i];
2925       PointerType *PTy = cast<PointerType>(CurTy);
2926       V = InlineAsm::get(cast<FunctionType>(PTy->getElementType()),
2927                          AsmStr, ConstrStr, HasSideEffects, IsAlignStack,
2928                          InlineAsm::AsmDialect(AsmDialect));
2929       break;
2930     }
2931     case bitc::CST_CODE_BLOCKADDRESS:{
2932       if (Record.size() < 3)
2933         return error("Invalid record");
2934       Type *FnTy = getTypeByID(Record[0]);
2935       if (!FnTy)
2936         return error("Invalid record");
2937       Function *Fn =
2938         dyn_cast_or_null<Function>(ValueList.getConstantFwdRef(Record[1],FnTy));
2939       if (!Fn)
2940         return error("Invalid record");
2941
2942       // If the function is already parsed we can insert the block address right
2943       // away.
2944       BasicBlock *BB;
2945       unsigned BBID = Record[2];
2946       if (!BBID)
2947         // Invalid reference to entry block.
2948         return error("Invalid ID");
2949       if (!Fn->empty()) {
2950         Function::iterator BBI = Fn->begin(), BBE = Fn->end();
2951         for (size_t I = 0, E = BBID; I != E; ++I) {
2952           if (BBI == BBE)
2953             return error("Invalid ID");
2954           ++BBI;
2955         }
2956         BB = &*BBI;
2957       } else {
2958         // Otherwise insert a placeholder and remember it so it can be inserted
2959         // when the function is parsed.
2960         auto &FwdBBs = BasicBlockFwdRefs[Fn];
2961         if (FwdBBs.empty())
2962           BasicBlockFwdRefQueue.push_back(Fn);
2963         if (FwdBBs.size() < BBID + 1)
2964           FwdBBs.resize(BBID + 1);
2965         if (!FwdBBs[BBID])
2966           FwdBBs[BBID] = BasicBlock::Create(Context);
2967         BB = FwdBBs[BBID];
2968       }
2969       V = BlockAddress::get(Fn, BB);
2970       break;
2971     }
2972     }
2973
2974     ValueList.assignValue(V, NextCstNo);
2975     ++NextCstNo;
2976   }
2977 }
2978
2979 std::error_code BitcodeReader::parseUseLists() {
2980   if (Stream.EnterSubBlock(bitc::USELIST_BLOCK_ID))
2981     return error("Invalid record");
2982
2983   // Read all the records.
2984   SmallVector<uint64_t, 64> Record;
2985   while (1) {
2986     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
2987
2988     switch (Entry.Kind) {
2989     case BitstreamEntry::SubBlock: // Handled for us already.
2990     case BitstreamEntry::Error:
2991       return error("Malformed block");
2992     case BitstreamEntry::EndBlock:
2993       return std::error_code();
2994     case BitstreamEntry::Record:
2995       // The interesting case.
2996       break;
2997     }
2998
2999     // Read a use list record.
3000     Record.clear();
3001     bool IsBB = false;
3002     switch (Stream.readRecord(Entry.ID, Record)) {
3003     default:  // Default behavior: unknown type.
3004       break;
3005     case bitc::USELIST_CODE_BB:
3006       IsBB = true;
3007       // fallthrough
3008     case bitc::USELIST_CODE_DEFAULT: {
3009       unsigned RecordLength = Record.size();
3010       if (RecordLength < 3)
3011         // Records should have at least an ID and two indexes.
3012         return error("Invalid record");
3013       unsigned ID = Record.back();
3014       Record.pop_back();
3015
3016       Value *V;
3017       if (IsBB) {
3018         assert(ID < FunctionBBs.size() && "Basic block not found");
3019         V = FunctionBBs[ID];
3020       } else
3021         V = ValueList[ID];
3022       unsigned NumUses = 0;
3023       SmallDenseMap<const Use *, unsigned, 16> Order;
3024       for (const Use &U : V->materialized_uses()) {
3025         if (++NumUses > Record.size())
3026           break;
3027         Order[&U] = Record[NumUses - 1];
3028       }
3029       if (Order.size() != Record.size() || NumUses > Record.size())
3030         // Mismatches can happen if the functions are being materialized lazily
3031         // (out-of-order), or a value has been upgraded.
3032         break;
3033
3034       V->sortUseList([&](const Use &L, const Use &R) {
3035         return Order.lookup(&L) < Order.lookup(&R);
3036       });
3037       break;
3038     }
3039     }
3040   }
3041 }
3042
3043 /// When we see the block for metadata, remember where it is and then skip it.
3044 /// This lets us lazily deserialize the metadata.
3045 std::error_code BitcodeReader::rememberAndSkipMetadata() {
3046   // Save the current stream state.
3047   uint64_t CurBit = Stream.GetCurrentBitNo();
3048   DeferredMetadataInfo.push_back(CurBit);
3049
3050   // Skip over the block for now.
3051   if (Stream.SkipBlock())
3052     return error("Invalid record");
3053   return std::error_code();
3054 }
3055
3056 std::error_code BitcodeReader::materializeMetadata() {
3057   for (uint64_t BitPos : DeferredMetadataInfo) {
3058     // Move the bit stream to the saved position.
3059     Stream.JumpToBit(BitPos);
3060     if (std::error_code EC = parseMetadata(true))
3061       return EC;
3062   }
3063   DeferredMetadataInfo.clear();
3064   return std::error_code();
3065 }
3066
3067 void BitcodeReader::setStripDebugInfo() { StripDebugInfo = true; }
3068
3069 void BitcodeReader::saveMetadataList(
3070     DenseMap<const Metadata *, unsigned> &MetadataToIDs, bool OnlyTempMD) {
3071   for (unsigned ID = 0; ID < MetadataList.size(); ++ID) {
3072     Metadata *MD = MetadataList[ID];
3073     auto *N = dyn_cast_or_null<MDNode>(MD);
3074     assert((!N || (N->isResolved() || N->isTemporary())) &&
3075            "Found non-resolved non-temp MDNode while saving metadata");
3076     // Save all values if !OnlyTempMD, otherwise just the temporary metadata.
3077     // Note that in the !OnlyTempMD case we need to save all Metadata, not
3078     // just MDNode, as we may have references to other types of module-level
3079     // metadata (e.g. ValueAsMetadata) from instructions.
3080     if (!OnlyTempMD || (N && N->isTemporary())) {
3081       // Will call this after materializing each function, in order to
3082       // handle remapping of the function's instructions/metadata.
3083       // See if we already have an entry in that case.
3084       if (OnlyTempMD && MetadataToIDs.count(MD)) {
3085         assert(MetadataToIDs[MD] == ID && "Inconsistent metadata value id");
3086         continue;
3087       }
3088       if (N && N->isTemporary())
3089         // Ensure that we assert if someone tries to RAUW this temporary
3090         // metadata while it is the key of a map. The flag will be set back
3091         // to true when the saved metadata list is destroyed.
3092         N->setCanReplace(false);
3093       MetadataToIDs[MD] = ID;
3094     }
3095   }
3096 }
3097
3098 /// When we see the block for a function body, remember where it is and then
3099 /// skip it.  This lets us lazily deserialize the functions.
3100 std::error_code BitcodeReader::rememberAndSkipFunctionBody() {
3101   // Get the function we are talking about.
3102   if (FunctionsWithBodies.empty())
3103     return error("Insufficient function protos");
3104
3105   Function *Fn = FunctionsWithBodies.back();
3106   FunctionsWithBodies.pop_back();
3107
3108   // Save the current stream state.
3109   uint64_t CurBit = Stream.GetCurrentBitNo();
3110   assert(
3111       (DeferredFunctionInfo[Fn] == 0 || DeferredFunctionInfo[Fn] == CurBit) &&
3112       "Mismatch between VST and scanned function offsets");
3113   DeferredFunctionInfo[Fn] = CurBit;
3114
3115   // Skip over the function block for now.
3116   if (Stream.SkipBlock())
3117     return error("Invalid record");
3118   return std::error_code();
3119 }
3120
3121 std::error_code BitcodeReader::globalCleanup() {
3122   // Patch the initializers for globals and aliases up.
3123   resolveGlobalAndAliasInits();
3124   if (!GlobalInits.empty() || !AliasInits.empty())
3125     return error("Malformed global initializer set");
3126
3127   // Look for intrinsic functions which need to be upgraded at some point
3128   for (Function &F : *TheModule) {
3129     Function *NewFn;
3130     if (UpgradeIntrinsicFunction(&F, NewFn))
3131       UpgradedIntrinsics[&F] = NewFn;
3132   }
3133
3134   // Look for global variables which need to be renamed.
3135   for (GlobalVariable &GV : TheModule->globals())
3136     UpgradeGlobalVariable(&GV);
3137
3138   // Force deallocation of memory for these vectors to favor the client that
3139   // want lazy deserialization.
3140   std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits);
3141   std::vector<std::pair<GlobalAlias*, unsigned> >().swap(AliasInits);
3142   return std::error_code();
3143 }
3144
3145 /// Support for lazy parsing of function bodies. This is required if we
3146 /// either have an old bitcode file without a VST forward declaration record,
3147 /// or if we have an anonymous function being materialized, since anonymous
3148 /// functions do not have a name and are therefore not in the VST.
3149 std::error_code BitcodeReader::rememberAndSkipFunctionBodies() {
3150   Stream.JumpToBit(NextUnreadBit);
3151
3152   if (Stream.AtEndOfStream())
3153     return error("Could not find function in stream");
3154
3155   if (!SeenFirstFunctionBody)
3156     return error("Trying to materialize functions before seeing function blocks");
3157
3158   // An old bitcode file with the symbol table at the end would have
3159   // finished the parse greedily.
3160   assert(SeenValueSymbolTable);
3161
3162   SmallVector<uint64_t, 64> Record;
3163
3164   while (1) {
3165     BitstreamEntry Entry = Stream.advance();
3166     switch (Entry.Kind) {
3167     default:
3168       return error("Expect SubBlock");
3169     case BitstreamEntry::SubBlock:
3170       switch (Entry.ID) {
3171       default:
3172         return error("Expect function block");
3173       case bitc::FUNCTION_BLOCK_ID:
3174         if (std::error_code EC = rememberAndSkipFunctionBody())
3175           return EC;
3176         NextUnreadBit = Stream.GetCurrentBitNo();
3177         return std::error_code();
3178       }
3179     }
3180   }
3181 }
3182
3183 std::error_code BitcodeReader::parseBitcodeVersion() {
3184   if (Stream.EnterSubBlock(bitc::IDENTIFICATION_BLOCK_ID))
3185     return error("Invalid record");
3186
3187   // Read all the records.
3188   SmallVector<uint64_t, 64> Record;
3189   while (1) {
3190     BitstreamEntry Entry = Stream.advance();
3191
3192     switch (Entry.Kind) {
3193     default:
3194     case BitstreamEntry::Error:
3195       return error("Malformed block");
3196     case BitstreamEntry::EndBlock:
3197       return std::error_code();
3198     case BitstreamEntry::Record:
3199       // The interesting case.
3200       break;
3201     }
3202
3203     // Read a record.
3204     Record.clear();
3205     unsigned BitCode = Stream.readRecord(Entry.ID, Record);
3206     switch (BitCode) {
3207     default: // Default behavior: reject
3208       return error("Invalid value");
3209     case bitc::IDENTIFICATION_CODE_STRING: { // IDENTIFICATION:      [strchr x
3210                                              // N]
3211       convertToString(Record, 0, ProducerIdentification);
3212       break;
3213     }
3214     case bitc::IDENTIFICATION_CODE_EPOCH: { // EPOCH:      [epoch#]
3215       unsigned epoch = (unsigned)Record[0];
3216       if (epoch != bitc::BITCODE_CURRENT_EPOCH) {
3217         return error(
3218           Twine("Incompatible epoch: Bitcode '") + Twine(epoch) +
3219           "' vs current: '" + Twine(bitc::BITCODE_CURRENT_EPOCH) + "'");
3220       }
3221     }
3222     }
3223   }
3224 }
3225
3226 std::error_code BitcodeReader::parseModule(uint64_t ResumeBit,
3227                                            bool ShouldLazyLoadMetadata) {
3228   if (ResumeBit)
3229     Stream.JumpToBit(ResumeBit);
3230   else if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
3231     return error("Invalid record");
3232
3233   SmallVector<uint64_t, 64> Record;
3234   std::vector<std::string> SectionTable;
3235   std::vector<std::string> GCTable;
3236
3237   // Read all the records for this module.
3238   while (1) {
3239     BitstreamEntry Entry = Stream.advance();
3240
3241     switch (Entry.Kind) {
3242     case BitstreamEntry::Error:
3243       return error("Malformed block");
3244     case BitstreamEntry::EndBlock:
3245       return globalCleanup();
3246
3247     case BitstreamEntry::SubBlock:
3248       switch (Entry.ID) {
3249       default:  // Skip unknown content.
3250         if (Stream.SkipBlock())
3251           return error("Invalid record");
3252         break;
3253       case bitc::BLOCKINFO_BLOCK_ID:
3254         if (Stream.ReadBlockInfoBlock())
3255           return error("Malformed block");
3256         break;
3257       case bitc::PARAMATTR_BLOCK_ID:
3258         if (std::error_code EC = parseAttributeBlock())
3259           return EC;
3260         break;
3261       case bitc::PARAMATTR_GROUP_BLOCK_ID:
3262         if (std::error_code EC = parseAttributeGroupBlock())
3263           return EC;
3264         break;
3265       case bitc::TYPE_BLOCK_ID_NEW:
3266         if (std::error_code EC = parseTypeTable())
3267           return EC;
3268         break;
3269       case bitc::VALUE_SYMTAB_BLOCK_ID:
3270         if (!SeenValueSymbolTable) {
3271           // Either this is an old form VST without function index and an
3272           // associated VST forward declaration record (which would have caused
3273           // the VST to be jumped to and parsed before it was encountered
3274           // normally in the stream), or there were no function blocks to
3275           // trigger an earlier parsing of the VST.
3276           assert(VSTOffset == 0 || FunctionsWithBodies.empty());
3277           if (std::error_code EC = parseValueSymbolTable())
3278             return EC;
3279           SeenValueSymbolTable = true;
3280         } else {
3281           // We must have had a VST forward declaration record, which caused
3282           // the parser to jump to and parse the VST earlier.
3283           assert(VSTOffset > 0);
3284           if (Stream.SkipBlock())
3285             return error("Invalid record");
3286         }
3287         break;
3288       case bitc::CONSTANTS_BLOCK_ID:
3289         if (std::error_code EC = parseConstants())
3290           return EC;
3291         if (std::error_code EC = resolveGlobalAndAliasInits())
3292           return EC;
3293         break;
3294       case bitc::METADATA_BLOCK_ID:
3295         if (ShouldLazyLoadMetadata && !IsMetadataMaterialized) {
3296           if (std::error_code EC = rememberAndSkipMetadata())
3297             return EC;
3298           break;
3299         }
3300         assert(DeferredMetadataInfo.empty() && "Unexpected deferred metadata");
3301         if (std::error_code EC = parseMetadata(true))
3302           return EC;
3303         break;
3304       case bitc::METADATA_KIND_BLOCK_ID:
3305         if (std::error_code EC = parseMetadataKinds())
3306           return EC;
3307         break;
3308       case bitc::FUNCTION_BLOCK_ID:
3309         // If this is the first function body we've seen, reverse the
3310         // FunctionsWithBodies list.
3311         if (!SeenFirstFunctionBody) {
3312           std::reverse(FunctionsWithBodies.begin(), FunctionsWithBodies.end());
3313           if (std::error_code EC = globalCleanup())
3314             return EC;
3315           SeenFirstFunctionBody = true;
3316         }
3317
3318         if (VSTOffset > 0) {
3319           // If we have a VST forward declaration record, make sure we
3320           // parse the VST now if we haven't already. It is needed to
3321           // set up the DeferredFunctionInfo vector for lazy reading.
3322           if (!SeenValueSymbolTable) {
3323             if (std::error_code EC =
3324                     BitcodeReader::parseValueSymbolTable(VSTOffset))
3325               return EC;
3326             SeenValueSymbolTable = true;
3327             // Fall through so that we record the NextUnreadBit below.
3328             // This is necessary in case we have an anonymous function that
3329             // is later materialized. Since it will not have a VST entry we
3330             // need to fall back to the lazy parse to find its offset.
3331           } else {
3332             // If we have a VST forward declaration record, but have already
3333             // parsed the VST (just above, when the first function body was
3334             // encountered here), then we are resuming the parse after
3335             // materializing functions. The ResumeBit points to the
3336             // start of the last function block recorded in the
3337             // DeferredFunctionInfo map. Skip it.
3338             if (Stream.SkipBlock())
3339               return error("Invalid record");
3340             continue;
3341           }
3342         }
3343
3344         // Support older bitcode files that did not have the function
3345         // index in the VST, nor a VST forward declaration record, as
3346         // well as anonymous functions that do not have VST entries.
3347         // Build the DeferredFunctionInfo vector on the fly.
3348         if (std::error_code EC = rememberAndSkipFunctionBody())
3349           return EC;
3350
3351         // Suspend parsing when we reach the function bodies. Subsequent
3352         // materialization calls will resume it when necessary. If the bitcode
3353         // file is old, the symbol table will be at the end instead and will not
3354         // have been seen yet. In this case, just finish the parse now.
3355         if (SeenValueSymbolTable) {
3356           NextUnreadBit = Stream.GetCurrentBitNo();
3357           return std::error_code();
3358         }
3359         break;
3360       case bitc::USELIST_BLOCK_ID:
3361         if (std::error_code EC = parseUseLists())
3362           return EC;
3363         break;
3364       case bitc::OPERAND_BUNDLE_TAGS_BLOCK_ID:
3365         if (std::error_code EC = parseOperandBundleTags())
3366           return EC;
3367         break;
3368       }
3369       continue;
3370
3371     case BitstreamEntry::Record:
3372       // The interesting case.
3373       break;
3374     }
3375
3376
3377     // Read a record.
3378     auto BitCode = Stream.readRecord(Entry.ID, Record);
3379     switch (BitCode) {
3380     default: break;  // Default behavior, ignore unknown content.
3381     case bitc::MODULE_CODE_VERSION: {  // VERSION: [version#]
3382       if (Record.size() < 1)
3383         return error("Invalid record");
3384       // Only version #0 and #1 are supported so far.
3385       unsigned module_version = Record[0];
3386       switch (module_version) {
3387         default:
3388           return error("Invalid value");
3389         case 0:
3390           UseRelativeIDs = false;
3391           break;
3392         case 1:
3393           UseRelativeIDs = true;
3394           break;
3395       }
3396       break;
3397     }
3398     case bitc::MODULE_CODE_TRIPLE: {  // TRIPLE: [strchr x N]
3399       std::string S;
3400       if (convertToString(Record, 0, S))
3401         return error("Invalid record");
3402       TheModule->setTargetTriple(S);
3403       break;
3404     }
3405     case bitc::MODULE_CODE_DATALAYOUT: {  // DATALAYOUT: [strchr x N]
3406       std::string S;
3407       if (convertToString(Record, 0, S))
3408         return error("Invalid record");
3409       TheModule->setDataLayout(S);
3410       break;
3411     }
3412     case bitc::MODULE_CODE_ASM: {  // ASM: [strchr x N]
3413       std::string S;
3414       if (convertToString(Record, 0, S))
3415         return error("Invalid record");
3416       TheModule->setModuleInlineAsm(S);
3417       break;
3418     }
3419     case bitc::MODULE_CODE_DEPLIB: {  // DEPLIB: [strchr x N]
3420       // FIXME: Remove in 4.0.
3421       std::string S;
3422       if (convertToString(Record, 0, S))
3423         return error("Invalid record");
3424       // Ignore value.
3425       break;
3426     }
3427     case bitc::MODULE_CODE_SECTIONNAME: {  // SECTIONNAME: [strchr x N]
3428       std::string S;
3429       if (convertToString(Record, 0, S))
3430         return error("Invalid record");
3431       SectionTable.push_back(S);
3432       break;
3433     }
3434     case bitc::MODULE_CODE_GCNAME: {  // SECTIONNAME: [strchr x N]
3435       std::string S;
3436       if (convertToString(Record, 0, S))
3437         return error("Invalid record");
3438       GCTable.push_back(S);
3439       break;
3440     }
3441     case bitc::MODULE_CODE_COMDAT: { // COMDAT: [selection_kind, name]
3442       if (Record.size() < 2)
3443         return error("Invalid record");
3444       Comdat::SelectionKind SK = getDecodedComdatSelectionKind(Record[0]);
3445       unsigned ComdatNameSize = Record[1];
3446       std::string ComdatName;
3447       ComdatName.reserve(ComdatNameSize);
3448       for (unsigned i = 0; i != ComdatNameSize; ++i)
3449         ComdatName += (char)Record[2 + i];
3450       Comdat *C = TheModule->getOrInsertComdat(ComdatName);
3451       C->setSelectionKind(SK);
3452       ComdatList.push_back(C);
3453       break;
3454     }
3455     // GLOBALVAR: [pointer type, isconst, initid,
3456     //             linkage, alignment, section, visibility, threadlocal,
3457     //             unnamed_addr, externally_initialized, dllstorageclass,
3458     //             comdat]
3459     case bitc::MODULE_CODE_GLOBALVAR: {
3460       if (Record.size() < 6)
3461         return error("Invalid record");
3462       Type *Ty = getTypeByID(Record[0]);
3463       if (!Ty)
3464         return error("Invalid record");
3465       bool isConstant = Record[1] & 1;
3466       bool explicitType = Record[1] & 2;
3467       unsigned AddressSpace;
3468       if (explicitType) {
3469         AddressSpace = Record[1] >> 2;
3470       } else {
3471         if (!Ty->isPointerTy())
3472           return error("Invalid type for value");
3473         AddressSpace = cast<PointerType>(Ty)->getAddressSpace();
3474         Ty = cast<PointerType>(Ty)->getElementType();
3475       }
3476
3477       uint64_t RawLinkage = Record[3];
3478       GlobalValue::LinkageTypes Linkage = getDecodedLinkage(RawLinkage);
3479       unsigned Alignment;
3480       if (std::error_code EC = parseAlignmentValue(Record[4], Alignment))
3481         return EC;
3482       std::string Section;
3483       if (Record[5]) {
3484         if (Record[5]-1 >= SectionTable.size())
3485           return error("Invalid ID");
3486         Section = SectionTable[Record[5]-1];
3487       }
3488       GlobalValue::VisibilityTypes Visibility = GlobalValue::DefaultVisibility;
3489       // Local linkage must have default visibility.
3490       if (Record.size() > 6 && !GlobalValue::isLocalLinkage(Linkage))
3491         // FIXME: Change to an error if non-default in 4.0.
3492         Visibility = getDecodedVisibility(Record[6]);
3493
3494       GlobalVariable::ThreadLocalMode TLM = GlobalVariable::NotThreadLocal;
3495       if (Record.size() > 7)
3496         TLM = getDecodedThreadLocalMode(Record[7]);
3497
3498       bool UnnamedAddr = false;
3499       if (Record.size() > 8)
3500         UnnamedAddr = Record[8];
3501
3502       bool ExternallyInitialized = false;
3503       if (Record.size() > 9)
3504         ExternallyInitialized = Record[9];
3505
3506       GlobalVariable *NewGV =
3507         new GlobalVariable(*TheModule, Ty, isConstant, Linkage, nullptr, "", nullptr,
3508                            TLM, AddressSpace, ExternallyInitialized);
3509       NewGV->setAlignment(Alignment);
3510       if (!Section.empty())
3511         NewGV->setSection(Section);
3512       NewGV->setVisibility(Visibility);
3513       NewGV->setUnnamedAddr(UnnamedAddr);
3514
3515       if (Record.size() > 10)
3516         NewGV->setDLLStorageClass(getDecodedDLLStorageClass(Record[10]));
3517       else
3518         upgradeDLLImportExportLinkage(NewGV, RawLinkage);
3519
3520       ValueList.push_back(NewGV);
3521
3522       // Remember which value to use for the global initializer.
3523       if (unsigned InitID = Record[2])
3524         GlobalInits.push_back(std::make_pair(NewGV, InitID-1));
3525
3526       if (Record.size() > 11) {
3527         if (unsigned ComdatID = Record[11]) {
3528           if (ComdatID > ComdatList.size())
3529             return error("Invalid global variable comdat ID");
3530           NewGV->setComdat(ComdatList[ComdatID - 1]);
3531         }
3532       } else if (hasImplicitComdat(RawLinkage)) {
3533         NewGV->setComdat(reinterpret_cast<Comdat *>(1));
3534       }
3535       break;
3536     }
3537     // FUNCTION:  [type, callingconv, isproto, linkage, paramattr,
3538     //             alignment, section, visibility, gc, unnamed_addr,
3539     //             prologuedata, dllstorageclass, comdat, prefixdata]
3540     case bitc::MODULE_CODE_FUNCTION: {
3541       if (Record.size() < 8)
3542         return error("Invalid record");
3543       Type *Ty = getTypeByID(Record[0]);
3544       if (!Ty)
3545         return error("Invalid record");
3546       if (auto *PTy = dyn_cast<PointerType>(Ty))
3547         Ty = PTy->getElementType();
3548       auto *FTy = dyn_cast<FunctionType>(Ty);
3549       if (!FTy)
3550         return error("Invalid type for value");
3551       auto CC = static_cast<CallingConv::ID>(Record[1]);
3552       if (CC & ~CallingConv::MaxID)
3553         return error("Invalid calling convention ID");
3554
3555       Function *Func = Function::Create(FTy, GlobalValue::ExternalLinkage,
3556                                         "", TheModule);
3557
3558       Func->setCallingConv(CC);
3559       bool isProto = Record[2];
3560       uint64_t RawLinkage = Record[3];
3561       Func->setLinkage(getDecodedLinkage(RawLinkage));
3562       Func->setAttributes(getAttributes(Record[4]));
3563
3564       unsigned Alignment;
3565       if (std::error_code EC = parseAlignmentValue(Record[5], Alignment))
3566         return EC;
3567       Func->setAlignment(Alignment);
3568       if (Record[6]) {
3569         if (Record[6]-1 >= SectionTable.size())
3570           return error("Invalid ID");
3571         Func->setSection(SectionTable[Record[6]-1]);
3572       }
3573       // Local linkage must have default visibility.
3574       if (!Func->hasLocalLinkage())
3575         // FIXME: Change to an error if non-default in 4.0.
3576         Func->setVisibility(getDecodedVisibility(Record[7]));
3577       if (Record.size() > 8 && Record[8]) {
3578         if (Record[8]-1 >= GCTable.size())
3579           return error("Invalid ID");
3580         Func->setGC(GCTable[Record[8]-1].c_str());
3581       }
3582       bool UnnamedAddr = false;
3583       if (Record.size() > 9)
3584         UnnamedAddr = Record[9];
3585       Func->setUnnamedAddr(UnnamedAddr);
3586       if (Record.size() > 10 && Record[10] != 0)
3587         FunctionPrologues.push_back(std::make_pair(Func, Record[10]-1));
3588
3589       if (Record.size() > 11)
3590         Func->setDLLStorageClass(getDecodedDLLStorageClass(Record[11]));
3591       else
3592         upgradeDLLImportExportLinkage(Func, RawLinkage);
3593
3594       if (Record.size() > 12) {
3595         if (unsigned ComdatID = Record[12]) {
3596           if (ComdatID > ComdatList.size())
3597             return error("Invalid function comdat ID");
3598           Func->setComdat(ComdatList[ComdatID - 1]);
3599         }
3600       } else if (hasImplicitComdat(RawLinkage)) {
3601         Func->setComdat(reinterpret_cast<Comdat *>(1));
3602       }
3603
3604       if (Record.size() > 13 && Record[13] != 0)
3605         FunctionPrefixes.push_back(std::make_pair(Func, Record[13]-1));
3606
3607       if (Record.size() > 14 && Record[14] != 0)
3608         FunctionPersonalityFns.push_back(std::make_pair(Func, Record[14] - 1));
3609
3610       ValueList.push_back(Func);
3611
3612       // If this is a function with a body, remember the prototype we are
3613       // creating now, so that we can match up the body with them later.
3614       if (!isProto) {
3615         Func->setIsMaterializable(true);
3616         FunctionsWithBodies.push_back(Func);
3617         DeferredFunctionInfo[Func] = 0;
3618       }
3619       break;
3620     }
3621     // ALIAS: [alias type, addrspace, aliasee val#, linkage]
3622     // ALIAS: [alias type, addrspace, aliasee val#, linkage, visibility, dllstorageclass]
3623     case bitc::MODULE_CODE_ALIAS:
3624     case bitc::MODULE_CODE_ALIAS_OLD: {
3625       bool NewRecord = BitCode == bitc::MODULE_CODE_ALIAS;
3626       if (Record.size() < (3 + (unsigned)NewRecord))
3627         return error("Invalid record");
3628       unsigned OpNum = 0;
3629       Type *Ty = getTypeByID(Record[OpNum++]);
3630       if (!Ty)
3631         return error("Invalid record");
3632
3633       unsigned AddrSpace;
3634       if (!NewRecord) {
3635         auto *PTy = dyn_cast<PointerType>(Ty);
3636         if (!PTy)
3637           return error("Invalid type for value");
3638         Ty = PTy->getElementType();
3639         AddrSpace = PTy->getAddressSpace();
3640       } else {
3641         AddrSpace = Record[OpNum++];
3642       }
3643
3644       auto Val = Record[OpNum++];
3645       auto Linkage = Record[OpNum++];
3646       auto *NewGA = GlobalAlias::create(
3647           Ty, AddrSpace, getDecodedLinkage(Linkage), "", TheModule);
3648       // Old bitcode files didn't have visibility field.
3649       // Local linkage must have default visibility.
3650       if (OpNum != Record.size()) {
3651         auto VisInd = OpNum++;
3652         if (!NewGA->hasLocalLinkage())
3653           // FIXME: Change to an error if non-default in 4.0.
3654           NewGA->setVisibility(getDecodedVisibility(Record[VisInd]));
3655       }
3656       if (OpNum != Record.size())
3657         NewGA->setDLLStorageClass(getDecodedDLLStorageClass(Record[OpNum++]));
3658       else
3659         upgradeDLLImportExportLinkage(NewGA, Linkage);
3660       if (OpNum != Record.size())
3661         NewGA->setThreadLocalMode(getDecodedThreadLocalMode(Record[OpNum++]));
3662       if (OpNum != Record.size())
3663         NewGA->setUnnamedAddr(Record[OpNum++]);
3664       ValueList.push_back(NewGA);
3665       AliasInits.push_back(std::make_pair(NewGA, Val));
3666       break;
3667     }
3668     /// MODULE_CODE_PURGEVALS: [numvals]
3669     case bitc::MODULE_CODE_PURGEVALS:
3670       // Trim down the value list to the specified size.
3671       if (Record.size() < 1 || Record[0] > ValueList.size())
3672         return error("Invalid record");
3673       ValueList.shrinkTo(Record[0]);
3674       break;
3675     /// MODULE_CODE_VSTOFFSET: [offset]
3676     case bitc::MODULE_CODE_VSTOFFSET:
3677       if (Record.size() < 1)
3678         return error("Invalid record");
3679       VSTOffset = Record[0];
3680       break;
3681     /// MODULE_CODE_METADATA_VALUES: [numvals]
3682     case bitc::MODULE_CODE_METADATA_VALUES:
3683       if (Record.size() < 1)
3684         return error("Invalid record");
3685       assert(!IsMetadataMaterialized);
3686       // This record contains the number of metadata values in the module-level
3687       // METADATA_BLOCK. It is used to support lazy parsing of metadata as
3688       // a postpass, where we will parse function-level metadata first.
3689       // This is needed because the ids of metadata are assigned implicitly
3690       // based on their ordering in the bitcode, with the function-level
3691       // metadata ids starting after the module-level metadata ids. Otherwise,
3692       // we would have to parse the module-level metadata block to prime the
3693       // MetadataList when we are lazy loading metadata during function
3694       // importing. Initialize the MetadataList size here based on the
3695       // record value, regardless of whether we are doing lazy metadata
3696       // loading, so that we have consistent handling and assertion
3697       // checking in parseMetadata for module-level metadata.
3698       NumModuleMDs = Record[0];
3699       SeenModuleValuesRecord = true;
3700       assert(MetadataList.size() == 0);
3701       MetadataList.resize(NumModuleMDs);
3702       break;
3703     }
3704     Record.clear();
3705   }
3706 }
3707
3708 /// Helper to read the header common to all bitcode files.
3709 static bool hasValidBitcodeHeader(BitstreamCursor &Stream) {
3710   // Sniff for the signature.
3711   if (Stream.Read(8) != 'B' ||
3712       Stream.Read(8) != 'C' ||
3713       Stream.Read(4) != 0x0 ||
3714       Stream.Read(4) != 0xC ||
3715       Stream.Read(4) != 0xE ||
3716       Stream.Read(4) != 0xD)
3717     return false;
3718   return true;
3719 }
3720
3721 std::error_code
3722 BitcodeReader::parseBitcodeInto(std::unique_ptr<DataStreamer> Streamer,
3723                                 Module *M, bool ShouldLazyLoadMetadata) {
3724   TheModule = M;
3725
3726   if (std::error_code EC = initStream(std::move(Streamer)))
3727     return EC;
3728
3729   // Sniff for the signature.
3730   if (!hasValidBitcodeHeader(Stream))
3731     return error("Invalid bitcode signature");
3732
3733   // We expect a number of well-defined blocks, though we don't necessarily
3734   // need to understand them all.
3735   while (1) {
3736     if (Stream.AtEndOfStream()) {
3737       // We didn't really read a proper Module.
3738       return error("Malformed IR file");
3739     }
3740
3741     BitstreamEntry Entry =
3742       Stream.advance(BitstreamCursor::AF_DontAutoprocessAbbrevs);
3743
3744     if (Entry.Kind != BitstreamEntry::SubBlock)
3745       return error("Malformed block");
3746
3747     if (Entry.ID == bitc::IDENTIFICATION_BLOCK_ID) {
3748       parseBitcodeVersion();
3749       continue;
3750     }
3751
3752     if (Entry.ID == bitc::MODULE_BLOCK_ID)
3753       return parseModule(0, ShouldLazyLoadMetadata);
3754
3755     if (Stream.SkipBlock())
3756       return error("Invalid record");
3757   }
3758 }
3759
3760 ErrorOr<std::string> BitcodeReader::parseModuleTriple() {
3761   if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
3762     return error("Invalid record");
3763
3764   SmallVector<uint64_t, 64> Record;
3765
3766   std::string Triple;
3767   // Read all the records for this module.
3768   while (1) {
3769     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
3770
3771     switch (Entry.Kind) {
3772     case BitstreamEntry::SubBlock: // Handled for us already.
3773     case BitstreamEntry::Error:
3774       return error("Malformed block");
3775     case BitstreamEntry::EndBlock:
3776       return Triple;
3777     case BitstreamEntry::Record:
3778       // The interesting case.
3779       break;
3780     }
3781
3782     // Read a record.
3783     switch (Stream.readRecord(Entry.ID, Record)) {
3784     default: break;  // Default behavior, ignore unknown content.
3785     case bitc::MODULE_CODE_TRIPLE: {  // TRIPLE: [strchr x N]
3786       std::string S;
3787       if (convertToString(Record, 0, S))
3788         return error("Invalid record");
3789       Triple = S;
3790       break;
3791     }
3792     }
3793     Record.clear();
3794   }
3795   llvm_unreachable("Exit infinite loop");
3796 }
3797
3798 ErrorOr<std::string> BitcodeReader::parseTriple() {
3799   if (std::error_code EC = initStream(nullptr))
3800     return EC;
3801
3802   // Sniff for the signature.
3803   if (!hasValidBitcodeHeader(Stream))
3804     return error("Invalid bitcode signature");
3805
3806   // We expect a number of well-defined blocks, though we don't necessarily
3807   // need to understand them all.
3808   while (1) {
3809     BitstreamEntry Entry = Stream.advance();
3810
3811     switch (Entry.Kind) {
3812     case BitstreamEntry::Error:
3813       return error("Malformed block");
3814     case BitstreamEntry::EndBlock:
3815       return std::error_code();
3816
3817     case BitstreamEntry::SubBlock:
3818       if (Entry.ID == bitc::MODULE_BLOCK_ID)
3819         return parseModuleTriple();
3820
3821       // Ignore other sub-blocks.
3822       if (Stream.SkipBlock())
3823         return error("Malformed block");
3824       continue;
3825
3826     case BitstreamEntry::Record:
3827       Stream.skipRecord(Entry.ID);
3828       continue;
3829     }
3830   }
3831 }
3832
3833 ErrorOr<std::string> BitcodeReader::parseIdentificationBlock() {
3834   if (std::error_code EC = initStream(nullptr))
3835     return EC;
3836
3837   // Sniff for the signature.
3838   if (!hasValidBitcodeHeader(Stream))
3839     return error("Invalid bitcode signature");
3840
3841   // We expect a number of well-defined blocks, though we don't necessarily
3842   // need to understand them all.
3843   while (1) {
3844     BitstreamEntry Entry = Stream.advance();
3845     switch (Entry.Kind) {
3846     case BitstreamEntry::Error:
3847       return error("Malformed block");
3848     case BitstreamEntry::EndBlock:
3849       return std::error_code();
3850
3851     case BitstreamEntry::SubBlock:
3852       if (Entry.ID == bitc::IDENTIFICATION_BLOCK_ID) {
3853         if (std::error_code EC = parseBitcodeVersion())
3854           return EC;
3855         return ProducerIdentification;
3856       }
3857       // Ignore other sub-blocks.
3858       if (Stream.SkipBlock())
3859         return error("Malformed block");
3860       continue;
3861     case BitstreamEntry::Record:
3862       Stream.skipRecord(Entry.ID);
3863       continue;
3864     }
3865   }
3866 }
3867
3868 /// Parse metadata attachments.
3869 std::error_code BitcodeReader::parseMetadataAttachment(Function &F) {
3870   if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
3871     return error("Invalid record");
3872
3873   SmallVector<uint64_t, 64> Record;
3874   while (1) {
3875     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
3876
3877     switch (Entry.Kind) {
3878     case BitstreamEntry::SubBlock: // Handled for us already.
3879     case BitstreamEntry::Error:
3880       return error("Malformed block");
3881     case BitstreamEntry::EndBlock:
3882       return std::error_code();
3883     case BitstreamEntry::Record:
3884       // The interesting case.
3885       break;
3886     }
3887
3888     // Read a metadata attachment record.
3889     Record.clear();
3890     switch (Stream.readRecord(Entry.ID, Record)) {
3891     default:  // Default behavior: ignore.
3892       break;
3893     case bitc::METADATA_ATTACHMENT: {
3894       unsigned RecordLength = Record.size();
3895       if (Record.empty())
3896         return error("Invalid record");
3897       if (RecordLength % 2 == 0) {
3898         // A function attachment.
3899         for (unsigned I = 0; I != RecordLength; I += 2) {
3900           auto K = MDKindMap.find(Record[I]);
3901           if (K == MDKindMap.end())
3902             return error("Invalid ID");
3903           Metadata *MD = MetadataList.getValueFwdRef(Record[I + 1]);
3904           F.setMetadata(K->second, cast<MDNode>(MD));
3905         }
3906         continue;
3907       }
3908
3909       // An instruction attachment.
3910       Instruction *Inst = InstructionList[Record[0]];
3911       for (unsigned i = 1; i != RecordLength; i = i+2) {
3912         unsigned Kind = Record[i];
3913         DenseMap<unsigned, unsigned>::iterator I =
3914           MDKindMap.find(Kind);
3915         if (I == MDKindMap.end())
3916           return error("Invalid ID");
3917         Metadata *Node = MetadataList.getValueFwdRef(Record[i + 1]);
3918         if (isa<LocalAsMetadata>(Node))
3919           // Drop the attachment.  This used to be legal, but there's no
3920           // upgrade path.
3921           break;
3922         Inst->setMetadata(I->second, cast<MDNode>(Node));
3923         if (I->second == LLVMContext::MD_tbaa)
3924           InstsWithTBAATag.push_back(Inst);
3925       }
3926       break;
3927     }
3928     }
3929   }
3930 }
3931
3932 static std::error_code typeCheckLoadStoreInst(Type *ValType, Type *PtrType) {
3933   LLVMContext &Context = PtrType->getContext();
3934   if (!isa<PointerType>(PtrType))
3935     return error(Context, "Load/Store operand is not a pointer type");
3936   Type *ElemType = cast<PointerType>(PtrType)->getElementType();
3937
3938   if (ValType && ValType != ElemType)
3939     return error(Context, "Explicit load/store type does not match pointee "
3940                           "type of pointer operand");
3941   if (!PointerType::isLoadableOrStorableType(ElemType))
3942     return error(Context, "Cannot load/store from pointer");
3943   return std::error_code();
3944 }
3945
3946 /// Lazily parse the specified function body block.
3947 std::error_code BitcodeReader::parseFunctionBody(Function *F) {
3948   if (Stream.EnterSubBlock(bitc::FUNCTION_BLOCK_ID))
3949     return error("Invalid record");
3950
3951   InstructionList.clear();
3952   unsigned ModuleValueListSize = ValueList.size();
3953   unsigned ModuleMetadataListSize = MetadataList.size();
3954
3955   // Add all the function arguments to the value table.
3956   for (Argument &I : F->args())
3957     ValueList.push_back(&I);
3958
3959   unsigned NextValueNo = ValueList.size();
3960   BasicBlock *CurBB = nullptr;
3961   unsigned CurBBNo = 0;
3962
3963   DebugLoc LastLoc;
3964   auto getLastInstruction = [&]() -> Instruction * {
3965     if (CurBB && !CurBB->empty())
3966       return &CurBB->back();
3967     else if (CurBBNo && FunctionBBs[CurBBNo - 1] &&
3968              !FunctionBBs[CurBBNo - 1]->empty())
3969       return &FunctionBBs[CurBBNo - 1]->back();
3970     return nullptr;
3971   };
3972
3973   std::vector<OperandBundleDef> OperandBundles;
3974
3975   // Read all the records.
3976   SmallVector<uint64_t, 64> Record;
3977   while (1) {
3978     BitstreamEntry Entry = Stream.advance();
3979
3980     switch (Entry.Kind) {
3981     case BitstreamEntry::Error:
3982       return error("Malformed block");
3983     case BitstreamEntry::EndBlock:
3984       goto OutOfRecordLoop;
3985
3986     case BitstreamEntry::SubBlock:
3987       switch (Entry.ID) {
3988       default:  // Skip unknown content.
3989         if (Stream.SkipBlock())
3990           return error("Invalid record");
3991         break;
3992       case bitc::CONSTANTS_BLOCK_ID:
3993         if (std::error_code EC = parseConstants())
3994           return EC;
3995         NextValueNo = ValueList.size();
3996         break;
3997       case bitc::VALUE_SYMTAB_BLOCK_ID:
3998         if (std::error_code EC = parseValueSymbolTable())
3999           return EC;
4000         break;
4001       case bitc::METADATA_ATTACHMENT_ID:
4002         if (std::error_code EC = parseMetadataAttachment(*F))
4003           return EC;
4004         break;
4005       case bitc::METADATA_BLOCK_ID:
4006         if (std::error_code EC = parseMetadata())
4007           return EC;
4008         break;
4009       case bitc::USELIST_BLOCK_ID:
4010         if (std::error_code EC = parseUseLists())
4011           return EC;
4012         break;
4013       }
4014       continue;
4015
4016     case BitstreamEntry::Record:
4017       // The interesting case.
4018       break;
4019     }
4020
4021     // Read a record.
4022     Record.clear();
4023     Instruction *I = nullptr;
4024     unsigned BitCode = Stream.readRecord(Entry.ID, Record);
4025     switch (BitCode) {
4026     default: // Default behavior: reject
4027       return error("Invalid value");
4028     case bitc::FUNC_CODE_DECLAREBLOCKS: {   // DECLAREBLOCKS: [nblocks]
4029       if (Record.size() < 1 || Record[0] == 0)
4030         return error("Invalid record");
4031       // Create all the basic blocks for the function.
4032       FunctionBBs.resize(Record[0]);
4033
4034       // See if anything took the address of blocks in this function.
4035       auto BBFRI = BasicBlockFwdRefs.find(F);
4036       if (BBFRI == BasicBlockFwdRefs.end()) {
4037         for (unsigned i = 0, e = FunctionBBs.size(); i != e; ++i)
4038           FunctionBBs[i] = BasicBlock::Create(Context, "", F);
4039       } else {
4040         auto &BBRefs = BBFRI->second;
4041         // Check for invalid basic block references.
4042         if (BBRefs.size() > FunctionBBs.size())
4043           return error("Invalid ID");
4044         assert(!BBRefs.empty() && "Unexpected empty array");
4045         assert(!BBRefs.front() && "Invalid reference to entry block");
4046         for (unsigned I = 0, E = FunctionBBs.size(), RE = BBRefs.size(); I != E;
4047              ++I)
4048           if (I < RE && BBRefs[I]) {
4049             BBRefs[I]->insertInto(F);
4050             FunctionBBs[I] = BBRefs[I];
4051           } else {
4052             FunctionBBs[I] = BasicBlock::Create(Context, "", F);
4053           }
4054
4055         // Erase from the table.
4056         BasicBlockFwdRefs.erase(BBFRI);
4057       }
4058
4059       CurBB = FunctionBBs[0];
4060       continue;
4061     }
4062
4063     case bitc::FUNC_CODE_DEBUG_LOC_AGAIN:  // DEBUG_LOC_AGAIN
4064       // This record indicates that the last instruction is at the same
4065       // location as the previous instruction with a location.
4066       I = getLastInstruction();
4067
4068       if (!I)
4069         return error("Invalid record");
4070       I->setDebugLoc(LastLoc);
4071       I = nullptr;
4072       continue;
4073
4074     case bitc::FUNC_CODE_DEBUG_LOC: {      // DEBUG_LOC: [line, col, scope, ia]
4075       I = getLastInstruction();
4076       if (!I || Record.size() < 4)
4077         return error("Invalid record");
4078
4079       unsigned Line = Record[0], Col = Record[1];
4080       unsigned ScopeID = Record[2], IAID = Record[3];
4081
4082       MDNode *Scope = nullptr, *IA = nullptr;
4083       if (ScopeID)
4084         Scope = cast<MDNode>(MetadataList.getValueFwdRef(ScopeID - 1));
4085       if (IAID)
4086         IA = cast<MDNode>(MetadataList.getValueFwdRef(IAID - 1));
4087       LastLoc = DebugLoc::get(Line, Col, Scope, IA);
4088       I->setDebugLoc(LastLoc);
4089       I = nullptr;
4090       continue;
4091     }
4092
4093     case bitc::FUNC_CODE_INST_BINOP: {    // BINOP: [opval, ty, opval, opcode]
4094       unsigned OpNum = 0;
4095       Value *LHS, *RHS;
4096       if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
4097           popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS) ||
4098           OpNum+1 > Record.size())
4099         return error("Invalid record");
4100
4101       int Opc = getDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
4102       if (Opc == -1)
4103         return error("Invalid record");
4104       I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
4105       InstructionList.push_back(I);
4106       if (OpNum < Record.size()) {
4107         if (Opc == Instruction::Add ||
4108             Opc == Instruction::Sub ||
4109             Opc == Instruction::Mul ||
4110             Opc == Instruction::Shl) {
4111           if (Record[OpNum] & (1 << bitc::OBO_NO_SIGNED_WRAP))
4112             cast<BinaryOperator>(I)->setHasNoSignedWrap(true);
4113           if (Record[OpNum] & (1 << bitc::OBO_NO_UNSIGNED_WRAP))
4114             cast<BinaryOperator>(I)->setHasNoUnsignedWrap(true);
4115         } else if (Opc == Instruction::SDiv ||
4116                    Opc == Instruction::UDiv ||
4117                    Opc == Instruction::LShr ||
4118                    Opc == Instruction::AShr) {
4119           if (Record[OpNum] & (1 << bitc::PEO_EXACT))
4120             cast<BinaryOperator>(I)->setIsExact(true);
4121         } else if (isa<FPMathOperator>(I)) {
4122           FastMathFlags FMF = getDecodedFastMathFlags(Record[OpNum]);
4123           if (FMF.any())
4124             I->setFastMathFlags(FMF);
4125         }
4126
4127       }
4128       break;
4129     }
4130     case bitc::FUNC_CODE_INST_CAST: {    // CAST: [opval, opty, destty, castopc]
4131       unsigned OpNum = 0;
4132       Value *Op;
4133       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
4134           OpNum+2 != Record.size())
4135         return error("Invalid record");
4136
4137       Type *ResTy = getTypeByID(Record[OpNum]);
4138       int Opc = getDecodedCastOpcode(Record[OpNum + 1]);
4139       if (Opc == -1 || !ResTy)
4140         return error("Invalid record");
4141       Instruction *Temp = nullptr;
4142       if ((I = UpgradeBitCastInst(Opc, Op, ResTy, Temp))) {
4143         if (Temp) {
4144           InstructionList.push_back(Temp);
4145           CurBB->getInstList().push_back(Temp);
4146         }
4147       } else {
4148         auto CastOp = (Instruction::CastOps)Opc;
4149         if (!CastInst::castIsValid(CastOp, Op, ResTy))
4150           return error("Invalid cast");
4151         I = CastInst::Create(CastOp, Op, ResTy);
4152       }
4153       InstructionList.push_back(I);
4154       break;
4155     }
4156     case bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD:
4157     case bitc::FUNC_CODE_INST_GEP_OLD:
4158     case bitc::FUNC_CODE_INST_GEP: { // GEP: type, [n x operands]
4159       unsigned OpNum = 0;
4160
4161       Type *Ty;
4162       bool InBounds;
4163
4164       if (BitCode == bitc::FUNC_CODE_INST_GEP) {
4165         InBounds = Record[OpNum++];
4166         Ty = getTypeByID(Record[OpNum++]);
4167       } else {
4168         InBounds = BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD;
4169         Ty = nullptr;
4170       }
4171
4172       Value *BasePtr;
4173       if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
4174         return error("Invalid record");
4175
4176       if (!Ty)
4177         Ty = cast<SequentialType>(BasePtr->getType()->getScalarType())
4178                  ->getElementType();
4179       else if (Ty !=
4180                cast<SequentialType>(BasePtr->getType()->getScalarType())
4181                    ->getElementType())
4182         return error(
4183             "Explicit gep type does not match pointee type of pointer operand");
4184
4185       SmallVector<Value*, 16> GEPIdx;
4186       while (OpNum != Record.size()) {
4187         Value *Op;
4188         if (getValueTypePair(Record, OpNum, NextValueNo, Op))
4189           return error("Invalid record");
4190         GEPIdx.push_back(Op);
4191       }
4192
4193       I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx);
4194
4195       InstructionList.push_back(I);
4196       if (InBounds)
4197         cast<GetElementPtrInst>(I)->setIsInBounds(true);
4198       break;
4199     }
4200
4201     case bitc::FUNC_CODE_INST_EXTRACTVAL: {
4202                                        // EXTRACTVAL: [opty, opval, n x indices]
4203       unsigned OpNum = 0;
4204       Value *Agg;
4205       if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
4206         return error("Invalid record");
4207
4208       unsigned RecSize = Record.size();
4209       if (OpNum == RecSize)
4210         return error("EXTRACTVAL: Invalid instruction with 0 indices");
4211
4212       SmallVector<unsigned, 4> EXTRACTVALIdx;
4213       Type *CurTy = Agg->getType();
4214       for (; OpNum != RecSize; ++OpNum) {
4215         bool IsArray = CurTy->isArrayTy();
4216         bool IsStruct = CurTy->isStructTy();
4217         uint64_t Index = Record[OpNum];
4218
4219         if (!IsStruct && !IsArray)
4220           return error("EXTRACTVAL: Invalid type");
4221         if ((unsigned)Index != Index)
4222           return error("Invalid value");
4223         if (IsStruct && Index >= CurTy->subtypes().size())
4224           return error("EXTRACTVAL: Invalid struct index");
4225         if (IsArray && Index >= CurTy->getArrayNumElements())
4226           return error("EXTRACTVAL: Invalid array index");
4227         EXTRACTVALIdx.push_back((unsigned)Index);
4228
4229         if (IsStruct)
4230           CurTy = CurTy->subtypes()[Index];
4231         else
4232           CurTy = CurTy->subtypes()[0];
4233       }
4234
4235       I = ExtractValueInst::Create(Agg, EXTRACTVALIdx);
4236       InstructionList.push_back(I);
4237       break;
4238     }
4239
4240     case bitc::FUNC_CODE_INST_INSERTVAL: {
4241                            // INSERTVAL: [opty, opval, opty, opval, n x indices]
4242       unsigned OpNum = 0;
4243       Value *Agg;
4244       if (getValueTypePair(Record, OpNum, NextValueNo, Agg))
4245         return error("Invalid record");
4246       Value *Val;
4247       if (getValueTypePair(Record, OpNum, NextValueNo, Val))
4248         return error("Invalid record");
4249
4250       unsigned RecSize = Record.size();
4251       if (OpNum == RecSize)
4252         return error("INSERTVAL: Invalid instruction with 0 indices");
4253
4254       SmallVector<unsigned, 4> INSERTVALIdx;
4255       Type *CurTy = Agg->getType();
4256       for (; OpNum != RecSize; ++OpNum) {
4257         bool IsArray = CurTy->isArrayTy();
4258         bool IsStruct = CurTy->isStructTy();
4259         uint64_t Index = Record[OpNum];
4260
4261         if (!IsStruct && !IsArray)
4262           return error("INSERTVAL: Invalid type");
4263         if ((unsigned)Index != Index)
4264           return error("Invalid value");
4265         if (IsStruct && Index >= CurTy->subtypes().size())
4266           return error("INSERTVAL: Invalid struct index");
4267         if (IsArray && Index >= CurTy->getArrayNumElements())
4268           return error("INSERTVAL: Invalid array index");
4269
4270         INSERTVALIdx.push_back((unsigned)Index);
4271         if (IsStruct)
4272           CurTy = CurTy->subtypes()[Index];
4273         else
4274           CurTy = CurTy->subtypes()[0];
4275       }
4276
4277       if (CurTy != Val->getType())
4278         return error("Inserted value type doesn't match aggregate type");
4279
4280       I = InsertValueInst::Create(Agg, Val, INSERTVALIdx);
4281       InstructionList.push_back(I);
4282       break;
4283     }
4284
4285     case bitc::FUNC_CODE_INST_SELECT: { // SELECT: [opval, ty, opval, opval]
4286       // obsolete form of select
4287       // handles select i1 ... in old bitcode
4288       unsigned OpNum = 0;
4289       Value *TrueVal, *FalseVal, *Cond;
4290       if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
4291           popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
4292           popValue(Record, OpNum, NextValueNo, Type::getInt1Ty(Context), Cond))
4293         return error("Invalid record");
4294
4295       I = SelectInst::Create(Cond, TrueVal, FalseVal);
4296       InstructionList.push_back(I);
4297       break;
4298     }
4299
4300     case bitc::FUNC_CODE_INST_VSELECT: {// VSELECT: [ty,opval,opval,predty,pred]
4301       // new form of select
4302       // handles select i1 or select [N x i1]
4303       unsigned OpNum = 0;
4304       Value *TrueVal, *FalseVal, *Cond;
4305       if (getValueTypePair(Record, OpNum, NextValueNo, TrueVal) ||
4306           popValue(Record, OpNum, NextValueNo, TrueVal->getType(), FalseVal) ||
4307           getValueTypePair(Record, OpNum, NextValueNo, Cond))
4308         return error("Invalid record");
4309
4310       // select condition can be either i1 or [N x i1]
4311       if (VectorType* vector_type =
4312           dyn_cast<VectorType>(Cond->getType())) {
4313         // expect <n x i1>
4314         if (vector_type->getElementType() != Type::getInt1Ty(Context))
4315           return error("Invalid type for value");
4316       } else {
4317         // expect i1
4318         if (Cond->getType() != Type::getInt1Ty(Context))
4319           return error("Invalid type for value");
4320       }
4321
4322       I = SelectInst::Create(Cond, TrueVal, FalseVal);
4323       InstructionList.push_back(I);
4324       break;
4325     }
4326
4327     case bitc::FUNC_CODE_INST_EXTRACTELT: { // EXTRACTELT: [opty, opval, opval]
4328       unsigned OpNum = 0;
4329       Value *Vec, *Idx;
4330       if (getValueTypePair(Record, OpNum, NextValueNo, Vec) ||
4331           getValueTypePair(Record, OpNum, NextValueNo, Idx))
4332         return error("Invalid record");
4333       if (!Vec->getType()->isVectorTy())
4334         return error("Invalid type for value");
4335       I = ExtractElementInst::Create(Vec, Idx);
4336       InstructionList.push_back(I);
4337       break;
4338     }
4339
4340     case bitc::FUNC_CODE_INST_INSERTELT: { // INSERTELT: [ty, opval,opval,opval]
4341       unsigned OpNum = 0;
4342       Value *Vec, *Elt, *Idx;
4343       if (getValueTypePair(Record, OpNum, NextValueNo, Vec))
4344         return error("Invalid record");
4345       if (!Vec->getType()->isVectorTy())
4346         return error("Invalid type for value");
4347       if (popValue(Record, OpNum, NextValueNo,
4348                    cast<VectorType>(Vec->getType())->getElementType(), Elt) ||
4349           getValueTypePair(Record, OpNum, NextValueNo, Idx))
4350         return error("Invalid record");
4351       I = InsertElementInst::Create(Vec, Elt, Idx);
4352       InstructionList.push_back(I);
4353       break;
4354     }
4355
4356     case bitc::FUNC_CODE_INST_SHUFFLEVEC: {// SHUFFLEVEC: [opval,ty,opval,opval]
4357       unsigned OpNum = 0;
4358       Value *Vec1, *Vec2, *Mask;
4359       if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) ||
4360           popValue(Record, OpNum, NextValueNo, Vec1->getType(), Vec2))
4361         return error("Invalid record");
4362
4363       if (getValueTypePair(Record, OpNum, NextValueNo, Mask))
4364         return error("Invalid record");
4365       if (!Vec1->getType()->isVectorTy() || !Vec2->getType()->isVectorTy())
4366         return error("Invalid type for value");
4367       I = new ShuffleVectorInst(Vec1, Vec2, Mask);
4368       InstructionList.push_back(I);
4369       break;
4370     }
4371
4372     case bitc::FUNC_CODE_INST_CMP:   // CMP: [opty, opval, opval, pred]
4373       // Old form of ICmp/FCmp returning bool
4374       // Existed to differentiate between icmp/fcmp and vicmp/vfcmp which were
4375       // both legal on vectors but had different behaviour.
4376     case bitc::FUNC_CODE_INST_CMP2: { // CMP2: [opty, opval, opval, pred]
4377       // FCmp/ICmp returning bool or vector of bool
4378
4379       unsigned OpNum = 0;
4380       Value *LHS, *RHS;
4381       if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
4382           popValue(Record, OpNum, NextValueNo, LHS->getType(), RHS))
4383         return error("Invalid record");
4384
4385       unsigned PredVal = Record[OpNum];
4386       bool IsFP = LHS->getType()->isFPOrFPVectorTy();
4387       FastMathFlags FMF;
4388       if (IsFP && Record.size() > OpNum+1)
4389         FMF = getDecodedFastMathFlags(Record[++OpNum]);
4390
4391       if (OpNum+1 != Record.size())
4392         return error("Invalid record");
4393
4394       if (LHS->getType()->isFPOrFPVectorTy())
4395         I = new FCmpInst((FCmpInst::Predicate)PredVal, LHS, RHS);
4396       else
4397         I = new ICmpInst((ICmpInst::Predicate)PredVal, LHS, RHS);
4398
4399       if (FMF.any())
4400         I->setFastMathFlags(FMF);
4401       InstructionList.push_back(I);
4402       break;
4403     }
4404
4405     case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
4406       {
4407         unsigned Size = Record.size();
4408         if (Size == 0) {
4409           I = ReturnInst::Create(Context);
4410           InstructionList.push_back(I);
4411           break;
4412         }
4413
4414         unsigned OpNum = 0;
4415         Value *Op = nullptr;
4416         if (getValueTypePair(Record, OpNum, NextValueNo, Op))
4417           return error("Invalid record");
4418         if (OpNum != Record.size())
4419           return error("Invalid record");
4420
4421         I = ReturnInst::Create(Context, Op);
4422         InstructionList.push_back(I);
4423         break;
4424       }
4425     case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
4426       if (Record.size() != 1 && Record.size() != 3)
4427         return error("Invalid record");
4428       BasicBlock *TrueDest = getBasicBlock(Record[0]);
4429       if (!TrueDest)
4430         return error("Invalid record");
4431
4432       if (Record.size() == 1) {
4433         I = BranchInst::Create(TrueDest);
4434         InstructionList.push_back(I);
4435       }
4436       else {
4437         BasicBlock *FalseDest = getBasicBlock(Record[1]);
4438         Value *Cond = getValue(Record, 2, NextValueNo,
4439                                Type::getInt1Ty(Context));
4440         if (!FalseDest || !Cond)
4441           return error("Invalid record");
4442         I = BranchInst::Create(TrueDest, FalseDest, Cond);
4443         InstructionList.push_back(I);
4444       }
4445       break;
4446     }
4447     case bitc::FUNC_CODE_INST_CLEANUPRET: { // CLEANUPRET: [val] or [val,bb#]
4448       if (Record.size() != 1 && Record.size() != 2)
4449         return error("Invalid record");
4450       unsigned Idx = 0;
4451       Value *CleanupPad =
4452           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
4453       if (!CleanupPad)
4454         return error("Invalid record");
4455       BasicBlock *UnwindDest = nullptr;
4456       if (Record.size() == 2) {
4457         UnwindDest = getBasicBlock(Record[Idx++]);
4458         if (!UnwindDest)
4459           return error("Invalid record");
4460       }
4461
4462       I = CleanupReturnInst::Create(CleanupPad, UnwindDest);
4463       InstructionList.push_back(I);
4464       break;
4465     }
4466     case bitc::FUNC_CODE_INST_CATCHRET: { // CATCHRET: [val,bb#]
4467       if (Record.size() != 2)
4468         return error("Invalid record");
4469       unsigned Idx = 0;
4470       Value *CatchPad =
4471           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
4472       if (!CatchPad)
4473         return error("Invalid record");
4474       BasicBlock *BB = getBasicBlock(Record[Idx++]);
4475       if (!BB)
4476         return error("Invalid record");
4477
4478       I = CatchReturnInst::Create(CatchPad, BB);
4479       InstructionList.push_back(I);
4480       break;
4481     }
4482     case bitc::FUNC_CODE_INST_CATCHSWITCH: { // CATCHSWITCH: [tok,num,(bb)*,bb?]
4483       // We must have, at minimum, the outer scope and the number of arguments.
4484       if (Record.size() < 2)
4485         return error("Invalid record");
4486
4487       unsigned Idx = 0;
4488
4489       Value *ParentPad =
4490           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
4491
4492       unsigned NumHandlers = Record[Idx++];
4493
4494       SmallVector<BasicBlock *, 2> Handlers;
4495       for (unsigned Op = 0; Op != NumHandlers; ++Op) {
4496         BasicBlock *BB = getBasicBlock(Record[Idx++]);
4497         if (!BB)
4498           return error("Invalid record");
4499         Handlers.push_back(BB);
4500       }
4501
4502       BasicBlock *UnwindDest = nullptr;
4503       if (Idx + 1 == Record.size()) {
4504         UnwindDest = getBasicBlock(Record[Idx++]);
4505         if (!UnwindDest)
4506           return error("Invalid record");
4507       }
4508
4509       if (Record.size() != Idx)
4510         return error("Invalid record");
4511
4512       auto *CatchSwitch =
4513           CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers);
4514       for (BasicBlock *Handler : Handlers)
4515         CatchSwitch->addHandler(Handler);
4516       I = CatchSwitch;
4517       InstructionList.push_back(I);
4518       break;
4519     }
4520     case bitc::FUNC_CODE_INST_CATCHPAD:
4521     case bitc::FUNC_CODE_INST_CLEANUPPAD: { // [tok,num,(ty,val)*]
4522       // We must have, at minimum, the outer scope and the number of arguments.
4523       if (Record.size() < 2)
4524         return error("Invalid record");
4525
4526       unsigned Idx = 0;
4527
4528       Value *ParentPad =
4529           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
4530
4531       unsigned NumArgOperands = Record[Idx++];
4532
4533       SmallVector<Value *, 2> Args;
4534       for (unsigned Op = 0; Op != NumArgOperands; ++Op) {
4535         Value *Val;
4536         if (getValueTypePair(Record, Idx, NextValueNo, Val))
4537           return error("Invalid record");
4538         Args.push_back(Val);
4539       }
4540
4541       if (Record.size() != Idx)
4542         return error("Invalid record");
4543
4544       if (BitCode == bitc::FUNC_CODE_INST_CLEANUPPAD)
4545         I = CleanupPadInst::Create(ParentPad, Args);
4546       else
4547         I = CatchPadInst::Create(ParentPad, Args);
4548       InstructionList.push_back(I);
4549       break;
4550     }
4551     case bitc::FUNC_CODE_INST_SWITCH: { // SWITCH: [opty, op0, op1, ...]
4552       // Check magic
4553       if ((Record[0] >> 16) == SWITCH_INST_MAGIC) {
4554         // "New" SwitchInst format with case ranges. The changes to write this
4555         // format were reverted but we still recognize bitcode that uses it.
4556         // Hopefully someday we will have support for case ranges and can use
4557         // this format again.
4558
4559         Type *OpTy = getTypeByID(Record[1]);
4560         unsigned ValueBitWidth = cast<IntegerType>(OpTy)->getBitWidth();
4561
4562         Value *Cond = getValue(Record, 2, NextValueNo, OpTy);
4563         BasicBlock *Default = getBasicBlock(Record[3]);
4564         if (!OpTy || !Cond || !Default)
4565           return error("Invalid record");
4566
4567         unsigned NumCases = Record[4];
4568
4569         SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
4570         InstructionList.push_back(SI);
4571
4572         unsigned CurIdx = 5;
4573         for (unsigned i = 0; i != NumCases; ++i) {
4574           SmallVector<ConstantInt*, 1> CaseVals;
4575           unsigned NumItems = Record[CurIdx++];
4576           for (unsigned ci = 0; ci != NumItems; ++ci) {
4577             bool isSingleNumber = Record[CurIdx++];
4578
4579             APInt Low;
4580             unsigned ActiveWords = 1;
4581             if (ValueBitWidth > 64)
4582               ActiveWords = Record[CurIdx++];
4583             Low = readWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
4584                                 ValueBitWidth);
4585             CurIdx += ActiveWords;
4586
4587             if (!isSingleNumber) {
4588               ActiveWords = 1;
4589               if (ValueBitWidth > 64)
4590                 ActiveWords = Record[CurIdx++];
4591               APInt High = readWideAPInt(
4592                   makeArrayRef(&Record[CurIdx], ActiveWords), ValueBitWidth);
4593               CurIdx += ActiveWords;
4594
4595               // FIXME: It is not clear whether values in the range should be
4596               // compared as signed or unsigned values. The partially
4597               // implemented changes that used this format in the past used
4598               // unsigned comparisons.
4599               for ( ; Low.ule(High); ++Low)
4600                 CaseVals.push_back(ConstantInt::get(Context, Low));
4601             } else
4602               CaseVals.push_back(ConstantInt::get(Context, Low));
4603           }
4604           BasicBlock *DestBB = getBasicBlock(Record[CurIdx++]);
4605           for (SmallVector<ConstantInt*, 1>::iterator cvi = CaseVals.begin(),
4606                  cve = CaseVals.end(); cvi != cve; ++cvi)
4607             SI->addCase(*cvi, DestBB);
4608         }
4609         I = SI;
4610         break;
4611       }
4612
4613       // Old SwitchInst format without case ranges.
4614
4615       if (Record.size() < 3 || (Record.size() & 1) == 0)
4616         return error("Invalid record");
4617       Type *OpTy = getTypeByID(Record[0]);
4618       Value *Cond = getValue(Record, 1, NextValueNo, OpTy);
4619       BasicBlock *Default = getBasicBlock(Record[2]);
4620       if (!OpTy || !Cond || !Default)
4621         return error("Invalid record");
4622       unsigned NumCases = (Record.size()-3)/2;
4623       SwitchInst *SI = SwitchInst::Create(Cond, Default, NumCases);
4624       InstructionList.push_back(SI);
4625       for (unsigned i = 0, e = NumCases; i != e; ++i) {
4626         ConstantInt *CaseVal =
4627           dyn_cast_or_null<ConstantInt>(getFnValueByID(Record[3+i*2], OpTy));
4628         BasicBlock *DestBB = getBasicBlock(Record[1+3+i*2]);
4629         if (!CaseVal || !DestBB) {
4630           delete SI;
4631           return error("Invalid record");
4632         }
4633         SI->addCase(CaseVal, DestBB);
4634       }
4635       I = SI;
4636       break;
4637     }
4638     case bitc::FUNC_CODE_INST_INDIRECTBR: { // INDIRECTBR: [opty, op0, op1, ...]
4639       if (Record.size() < 2)
4640         return error("Invalid record");
4641       Type *OpTy = getTypeByID(Record[0]);
4642       Value *Address = getValue(Record, 1, NextValueNo, OpTy);
4643       if (!OpTy || !Address)
4644         return error("Invalid record");
4645       unsigned NumDests = Record.size()-2;
4646       IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
4647       InstructionList.push_back(IBI);
4648       for (unsigned i = 0, e = NumDests; i != e; ++i) {
4649         if (BasicBlock *DestBB = getBasicBlock(Record[2+i])) {
4650           IBI->addDestination(DestBB);
4651         } else {
4652           delete IBI;
4653           return error("Invalid record");
4654         }
4655       }
4656       I = IBI;
4657       break;
4658     }
4659
4660     case bitc::FUNC_CODE_INST_INVOKE: {
4661       // INVOKE: [attrs, cc, normBB, unwindBB, fnty, op0,op1,op2, ...]
4662       if (Record.size() < 4)
4663         return error("Invalid record");
4664       unsigned OpNum = 0;
4665       AttributeSet PAL = getAttributes(Record[OpNum++]);
4666       unsigned CCInfo = Record[OpNum++];
4667       BasicBlock *NormalBB = getBasicBlock(Record[OpNum++]);
4668       BasicBlock *UnwindBB = getBasicBlock(Record[OpNum++]);
4669
4670       FunctionType *FTy = nullptr;
4671       if (CCInfo >> 13 & 1 &&
4672           !(FTy = dyn_cast<FunctionType>(getTypeByID(Record[OpNum++]))))
4673         return error("Explicit invoke type is not a function type");
4674
4675       Value *Callee;
4676       if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
4677         return error("Invalid record");
4678
4679       PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
4680       if (!CalleeTy)
4681         return error("Callee is not a pointer");
4682       if (!FTy) {
4683         FTy = dyn_cast<FunctionType>(CalleeTy->getElementType());
4684         if (!FTy)
4685           return error("Callee is not of pointer to function type");
4686       } else if (CalleeTy->getElementType() != FTy)
4687         return error("Explicit invoke type does not match pointee type of "
4688                      "callee operand");
4689       if (Record.size() < FTy->getNumParams() + OpNum)
4690         return error("Insufficient operands to call");
4691
4692       SmallVector<Value*, 16> Ops;
4693       for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
4694         Ops.push_back(getValue(Record, OpNum, NextValueNo,
4695                                FTy->getParamType(i)));
4696         if (!Ops.back())
4697           return error("Invalid record");
4698       }
4699
4700       if (!FTy->isVarArg()) {
4701         if (Record.size() != OpNum)
4702           return error("Invalid record");
4703       } else {
4704         // Read type/value pairs for varargs params.
4705         while (OpNum != Record.size()) {
4706           Value *Op;
4707           if (getValueTypePair(Record, OpNum, NextValueNo, Op))
4708             return error("Invalid record");
4709           Ops.push_back(Op);
4710         }
4711       }
4712
4713       I = InvokeInst::Create(Callee, NormalBB, UnwindBB, Ops, OperandBundles);
4714       OperandBundles.clear();
4715       InstructionList.push_back(I);
4716       cast<InvokeInst>(I)->setCallingConv(
4717           static_cast<CallingConv::ID>(CallingConv::MaxID & CCInfo));
4718       cast<InvokeInst>(I)->setAttributes(PAL);
4719       break;
4720     }
4721     case bitc::FUNC_CODE_INST_RESUME: { // RESUME: [opval]
4722       unsigned Idx = 0;
4723       Value *Val = nullptr;
4724       if (getValueTypePair(Record, Idx, NextValueNo, Val))
4725         return error("Invalid record");
4726       I = ResumeInst::Create(Val);
4727       InstructionList.push_back(I);
4728       break;
4729     }
4730     case bitc::FUNC_CODE_INST_UNREACHABLE: // UNREACHABLE
4731       I = new UnreachableInst(Context);
4732       InstructionList.push_back(I);
4733       break;
4734     case bitc::FUNC_CODE_INST_PHI: { // PHI: [ty, val0,bb0, ...]
4735       if (Record.size() < 1 || ((Record.size()-1)&1))
4736         return error("Invalid record");
4737       Type *Ty = getTypeByID(Record[0]);
4738       if (!Ty)
4739         return error("Invalid record");
4740
4741       PHINode *PN = PHINode::Create(Ty, (Record.size()-1)/2);
4742       InstructionList.push_back(PN);
4743
4744       for (unsigned i = 0, e = Record.size()-1; i != e; i += 2) {
4745         Value *V;
4746         // With the new function encoding, it is possible that operands have
4747         // negative IDs (for forward references).  Use a signed VBR
4748         // representation to keep the encoding small.
4749         if (UseRelativeIDs)
4750           V = getValueSigned(Record, 1+i, NextValueNo, Ty);
4751         else
4752           V = getValue(Record, 1+i, NextValueNo, Ty);
4753         BasicBlock *BB = getBasicBlock(Record[2+i]);
4754         if (!V || !BB)
4755           return error("Invalid record");
4756         PN->addIncoming(V, BB);
4757       }
4758       I = PN;
4759       break;
4760     }
4761
4762     case bitc::FUNC_CODE_INST_LANDINGPAD:
4763     case bitc::FUNC_CODE_INST_LANDINGPAD_OLD: {
4764       // LANDINGPAD: [ty, val, val, num, (id0,val0 ...)?]
4765       unsigned Idx = 0;
4766       if (BitCode == bitc::FUNC_CODE_INST_LANDINGPAD) {
4767         if (Record.size() < 3)
4768           return error("Invalid record");
4769       } else {
4770         assert(BitCode == bitc::FUNC_CODE_INST_LANDINGPAD_OLD);
4771         if (Record.size() < 4)
4772           return error("Invalid record");
4773       }
4774       Type *Ty = getTypeByID(Record[Idx++]);
4775       if (!Ty)
4776         return error("Invalid record");
4777       if (BitCode == bitc::FUNC_CODE_INST_LANDINGPAD_OLD) {
4778         Value *PersFn = nullptr;
4779         if (getValueTypePair(Record, Idx, NextValueNo, PersFn))
4780           return error("Invalid record");
4781
4782         if (!F->hasPersonalityFn())
4783           F->setPersonalityFn(cast<Constant>(PersFn));
4784         else if (F->getPersonalityFn() != cast<Constant>(PersFn))
4785           return error("Personality function mismatch");
4786       }
4787
4788       bool IsCleanup = !!Record[Idx++];
4789       unsigned NumClauses = Record[Idx++];
4790       LandingPadInst *LP = LandingPadInst::Create(Ty, NumClauses);
4791       LP->setCleanup(IsCleanup);
4792       for (unsigned J = 0; J != NumClauses; ++J) {
4793         LandingPadInst::ClauseType CT =
4794           LandingPadInst::ClauseType(Record[Idx++]); (void)CT;
4795         Value *Val;
4796
4797         if (getValueTypePair(Record, Idx, NextValueNo, Val)) {
4798           delete LP;
4799           return error("Invalid record");
4800         }
4801
4802         assert((CT != LandingPadInst::Catch ||
4803                 !isa<ArrayType>(Val->getType())) &&
4804                "Catch clause has a invalid type!");
4805         assert((CT != LandingPadInst::Filter ||
4806                 isa<ArrayType>(Val->getType())) &&
4807                "Filter clause has invalid type!");
4808         LP->addClause(cast<Constant>(Val));
4809       }
4810
4811       I = LP;
4812       InstructionList.push_back(I);
4813       break;
4814     }
4815
4816     case bitc::FUNC_CODE_INST_ALLOCA: { // ALLOCA: [instty, opty, op, align]
4817       if (Record.size() != 4)
4818         return error("Invalid record");
4819       uint64_t AlignRecord = Record[3];
4820       const uint64_t InAllocaMask = uint64_t(1) << 5;
4821       const uint64_t ExplicitTypeMask = uint64_t(1) << 6;
4822       // Reserve bit 7 for SwiftError flag.
4823       // const uint64_t SwiftErrorMask = uint64_t(1) << 7;
4824       const uint64_t FlagMask = InAllocaMask | ExplicitTypeMask;
4825       bool InAlloca = AlignRecord & InAllocaMask;
4826       Type *Ty = getTypeByID(Record[0]);
4827       if ((AlignRecord & ExplicitTypeMask) == 0) {
4828         auto *PTy = dyn_cast_or_null<PointerType>(Ty);
4829         if (!PTy)
4830           return error("Old-style alloca with a non-pointer type");
4831         Ty = PTy->getElementType();
4832       }
4833       Type *OpTy = getTypeByID(Record[1]);
4834       Value *Size = getFnValueByID(Record[2], OpTy);
4835       unsigned Align;
4836       if (std::error_code EC =
4837               parseAlignmentValue(AlignRecord & ~FlagMask, Align)) {
4838         return EC;
4839       }
4840       if (!Ty || !Size)
4841         return error("Invalid record");
4842       AllocaInst *AI = new AllocaInst(Ty, Size, Align);
4843       AI->setUsedWithInAlloca(InAlloca);
4844       I = AI;
4845       InstructionList.push_back(I);
4846       break;
4847     }
4848     case bitc::FUNC_CODE_INST_LOAD: { // LOAD: [opty, op, align, vol]
4849       unsigned OpNum = 0;
4850       Value *Op;
4851       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
4852           (OpNum + 2 != Record.size() && OpNum + 3 != Record.size()))
4853         return error("Invalid record");
4854
4855       Type *Ty = nullptr;
4856       if (OpNum + 3 == Record.size())
4857         Ty = getTypeByID(Record[OpNum++]);
4858       if (std::error_code EC = typeCheckLoadStoreInst(Ty, Op->getType()))
4859         return EC;
4860       if (!Ty)
4861         Ty = cast<PointerType>(Op->getType())->getElementType();
4862
4863       unsigned Align;
4864       if (std::error_code EC = parseAlignmentValue(Record[OpNum], Align))
4865         return EC;
4866       I = new LoadInst(Ty, Op, "", Record[OpNum + 1], Align);
4867
4868       InstructionList.push_back(I);
4869       break;
4870     }
4871     case bitc::FUNC_CODE_INST_LOADATOMIC: {
4872        // LOADATOMIC: [opty, op, align, vol, ordering, synchscope]
4873       unsigned OpNum = 0;
4874       Value *Op;
4875       if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
4876           (OpNum + 4 != Record.size() && OpNum + 5 != Record.size()))
4877         return error("Invalid record");
4878
4879       Type *Ty = nullptr;
4880       if (OpNum + 5 == Record.size())
4881         Ty = getTypeByID(Record[OpNum++]);
4882       if (std::error_code EC = typeCheckLoadStoreInst(Ty, Op->getType()))
4883         return EC;
4884       if (!Ty)
4885         Ty = cast<PointerType>(Op->getType())->getElementType();
4886
4887       AtomicOrdering Ordering = getDecodedOrdering(Record[OpNum + 2]);
4888       if (Ordering == NotAtomic || Ordering == Release ||
4889           Ordering == AcquireRelease)
4890         return error("Invalid record");
4891       if (Ordering != NotAtomic && Record[OpNum] == 0)
4892         return error("Invalid record");
4893       SynchronizationScope SynchScope = getDecodedSynchScope(Record[OpNum + 3]);
4894
4895       unsigned Align;
4896       if (std::error_code EC = parseAlignmentValue(Record[OpNum], Align))
4897         return EC;
4898       I = new LoadInst(Op, "", Record[OpNum+1], Align, Ordering, SynchScope);
4899
4900       InstructionList.push_back(I);
4901       break;
4902     }
4903     case bitc::FUNC_CODE_INST_STORE:
4904     case bitc::FUNC_CODE_INST_STORE_OLD: { // STORE2:[ptrty, ptr, val, align, vol]
4905       unsigned OpNum = 0;
4906       Value *Val, *Ptr;
4907       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
4908           (BitCode == bitc::FUNC_CODE_INST_STORE
4909                ? getValueTypePair(Record, OpNum, NextValueNo, Val)
4910                : popValue(Record, OpNum, NextValueNo,
4911                           cast<PointerType>(Ptr->getType())->getElementType(),
4912                           Val)) ||
4913           OpNum + 2 != Record.size())
4914         return error("Invalid record");
4915
4916       if (std::error_code EC =
4917               typeCheckLoadStoreInst(Val->getType(), Ptr->getType()))
4918         return EC;
4919       unsigned Align;
4920       if (std::error_code EC = parseAlignmentValue(Record[OpNum], Align))
4921         return EC;
4922       I = new StoreInst(Val, Ptr, Record[OpNum+1], Align);
4923       InstructionList.push_back(I);
4924       break;
4925     }
4926     case bitc::FUNC_CODE_INST_STOREATOMIC:
4927     case bitc::FUNC_CODE_INST_STOREATOMIC_OLD: {
4928       // STOREATOMIC: [ptrty, ptr, val, align, vol, ordering, synchscope]
4929       unsigned OpNum = 0;
4930       Value *Val, *Ptr;
4931       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
4932           (BitCode == bitc::FUNC_CODE_INST_STOREATOMIC
4933                ? getValueTypePair(Record, OpNum, NextValueNo, Val)
4934                : popValue(Record, OpNum, NextValueNo,
4935                           cast<PointerType>(Ptr->getType())->getElementType(),
4936                           Val)) ||
4937           OpNum + 4 != Record.size())
4938         return error("Invalid record");
4939
4940       if (std::error_code EC =
4941               typeCheckLoadStoreInst(Val->getType(), Ptr->getType()))
4942         return EC;
4943       AtomicOrdering Ordering = getDecodedOrdering(Record[OpNum + 2]);
4944       if (Ordering == NotAtomic || Ordering == Acquire ||
4945           Ordering == AcquireRelease)
4946         return error("Invalid record");
4947       SynchronizationScope SynchScope = getDecodedSynchScope(Record[OpNum + 3]);
4948       if (Ordering != NotAtomic && Record[OpNum] == 0)
4949         return error("Invalid record");
4950
4951       unsigned Align;
4952       if (std::error_code EC = parseAlignmentValue(Record[OpNum], Align))
4953         return EC;
4954       I = new StoreInst(Val, Ptr, Record[OpNum+1], Align, Ordering, SynchScope);
4955       InstructionList.push_back(I);
4956       break;
4957     }
4958     case bitc::FUNC_CODE_INST_CMPXCHG_OLD:
4959     case bitc::FUNC_CODE_INST_CMPXCHG: {
4960       // CMPXCHG:[ptrty, ptr, cmp, new, vol, successordering, synchscope,
4961       //          failureordering?, isweak?]
4962       unsigned OpNum = 0;
4963       Value *Ptr, *Cmp, *New;
4964       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
4965           (BitCode == bitc::FUNC_CODE_INST_CMPXCHG
4966                ? getValueTypePair(Record, OpNum, NextValueNo, Cmp)
4967                : popValue(Record, OpNum, NextValueNo,
4968                           cast<PointerType>(Ptr->getType())->getElementType(),
4969                           Cmp)) ||
4970           popValue(Record, OpNum, NextValueNo, Cmp->getType(), New) ||
4971           Record.size() < OpNum + 3 || Record.size() > OpNum + 5)
4972         return error("Invalid record");
4973       AtomicOrdering SuccessOrdering = getDecodedOrdering(Record[OpNum + 1]);
4974       if (SuccessOrdering == NotAtomic || SuccessOrdering == Unordered)
4975         return error("Invalid record");
4976       SynchronizationScope SynchScope = getDecodedSynchScope(Record[OpNum + 2]);
4977
4978       if (std::error_code EC =
4979               typeCheckLoadStoreInst(Cmp->getType(), Ptr->getType()))
4980         return EC;
4981       AtomicOrdering FailureOrdering;
4982       if (Record.size() < 7)
4983         FailureOrdering =
4984             AtomicCmpXchgInst::getStrongestFailureOrdering(SuccessOrdering);
4985       else
4986         FailureOrdering = getDecodedOrdering(Record[OpNum + 3]);
4987
4988       I = new AtomicCmpXchgInst(Ptr, Cmp, New, SuccessOrdering, FailureOrdering,
4989                                 SynchScope);
4990       cast<AtomicCmpXchgInst>(I)->setVolatile(Record[OpNum]);
4991
4992       if (Record.size() < 8) {
4993         // Before weak cmpxchgs existed, the instruction simply returned the
4994         // value loaded from memory, so bitcode files from that era will be
4995         // expecting the first component of a modern cmpxchg.
4996         CurBB->getInstList().push_back(I);
4997         I = ExtractValueInst::Create(I, 0);
4998       } else {
4999         cast<AtomicCmpXchgInst>(I)->setWeak(Record[OpNum+4]);
5000       }
5001
5002       InstructionList.push_back(I);
5003       break;
5004     }
5005     case bitc::FUNC_CODE_INST_ATOMICRMW: {
5006       // ATOMICRMW:[ptrty, ptr, val, op, vol, ordering, synchscope]
5007       unsigned OpNum = 0;
5008       Value *Ptr, *Val;
5009       if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
5010           popValue(Record, OpNum, NextValueNo,
5011                     cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
5012           OpNum+4 != Record.size())
5013         return error("Invalid record");
5014       AtomicRMWInst::BinOp Operation = getDecodedRMWOperation(Record[OpNum]);
5015       if (Operation < AtomicRMWInst::FIRST_BINOP ||
5016           Operation > AtomicRMWInst::LAST_BINOP)
5017         return error("Invalid record");
5018       AtomicOrdering Ordering = getDecodedOrdering(Record[OpNum + 2]);
5019       if (Ordering == NotAtomic || Ordering == Unordered)
5020         return error("Invalid record");
5021       SynchronizationScope SynchScope = getDecodedSynchScope(Record[OpNum + 3]);
5022       I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);
5023       cast<AtomicRMWInst>(I)->setVolatile(Record[OpNum+1]);
5024       InstructionList.push_back(I);
5025       break;
5026     }
5027     case bitc::FUNC_CODE_INST_FENCE: { // FENCE:[ordering, synchscope]
5028       if (2 != Record.size())
5029         return error("Invalid record");
5030       AtomicOrdering Ordering = getDecodedOrdering(Record[0]);
5031       if (Ordering == NotAtomic || Ordering == Unordered ||
5032           Ordering == Monotonic)
5033         return error("Invalid record");
5034       SynchronizationScope SynchScope = getDecodedSynchScope(Record[1]);
5035       I = new FenceInst(Context, Ordering, SynchScope);
5036       InstructionList.push_back(I);
5037       break;
5038     }
5039     case bitc::FUNC_CODE_INST_CALL: {
5040       // CALL: [paramattrs, cc, fmf, fnty, fnid, arg0, arg1...]
5041       if (Record.size() < 3)
5042         return error("Invalid record");
5043
5044       unsigned OpNum = 0;
5045       AttributeSet PAL = getAttributes(Record[OpNum++]);
5046       unsigned CCInfo = Record[OpNum++];
5047
5048       FastMathFlags FMF;
5049       if ((CCInfo >> bitc::CALL_FMF) & 1) {
5050         FMF = getDecodedFastMathFlags(Record[OpNum++]);
5051         if (!FMF.any())
5052           return error("Fast math flags indicator set for call with no FMF");
5053       }
5054
5055       FunctionType *FTy = nullptr;
5056       if (CCInfo >> bitc::CALL_EXPLICIT_TYPE & 1 &&
5057           !(FTy = dyn_cast<FunctionType>(getTypeByID(Record[OpNum++]))))
5058         return error("Explicit call type is not a function type");
5059
5060       Value *Callee;
5061       if (getValueTypePair(Record, OpNum, NextValueNo, Callee))
5062         return error("Invalid record");
5063
5064       PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
5065       if (!OpTy)
5066         return error("Callee is not a pointer type");
5067       if (!FTy) {
5068         FTy = dyn_cast<FunctionType>(OpTy->getElementType());
5069         if (!FTy)
5070           return error("Callee is not of pointer to function type");
5071       } else if (OpTy->getElementType() != FTy)
5072         return error("Explicit call type does not match pointee type of "
5073                      "callee operand");
5074       if (Record.size() < FTy->getNumParams() + OpNum)
5075         return error("Insufficient operands to call");
5076
5077       SmallVector<Value*, 16> Args;
5078       // Read the fixed params.
5079       for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i, ++OpNum) {
5080         if (FTy->getParamType(i)->isLabelTy())
5081           Args.push_back(getBasicBlock(Record[OpNum]));
5082         else
5083           Args.push_back(getValue(Record, OpNum, NextValueNo,
5084                                   FTy->getParamType(i)));
5085         if (!Args.back())
5086           return error("Invalid record");
5087       }
5088
5089       // Read type/value pairs for varargs params.
5090       if (!FTy->isVarArg()) {
5091         if (OpNum != Record.size())
5092           return error("Invalid record");
5093       } else {
5094         while (OpNum != Record.size()) {
5095           Value *Op;
5096           if (getValueTypePair(Record, OpNum, NextValueNo, Op))
5097             return error("Invalid record");
5098           Args.push_back(Op);
5099         }
5100       }
5101
5102       I = CallInst::Create(FTy, Callee, Args, OperandBundles);
5103       OperandBundles.clear();
5104       InstructionList.push_back(I);
5105       cast<CallInst>(I)->setCallingConv(
5106           static_cast<CallingConv::ID>((0x7ff & CCInfo) >> bitc::CALL_CCONV));
5107       CallInst::TailCallKind TCK = CallInst::TCK_None;
5108       if (CCInfo & 1 << bitc::CALL_TAIL)
5109         TCK = CallInst::TCK_Tail;
5110       if (CCInfo & (1 << bitc::CALL_MUSTTAIL))
5111         TCK = CallInst::TCK_MustTail;
5112       if (CCInfo & (1 << bitc::CALL_NOTAIL))
5113         TCK = CallInst::TCK_NoTail;
5114       cast<CallInst>(I)->setTailCallKind(TCK);
5115       cast<CallInst>(I)->setAttributes(PAL);
5116       if (FMF.any()) {
5117         if (!isa<FPMathOperator>(I))
5118           return error("Fast-math-flags specified for call without "
5119                        "floating-point scalar or vector return type");
5120         I->setFastMathFlags(FMF);
5121       }
5122       break;
5123     }
5124     case bitc::FUNC_CODE_INST_VAARG: { // VAARG: [valistty, valist, instty]
5125       if (Record.size() < 3)
5126         return error("Invalid record");
5127       Type *OpTy = getTypeByID(Record[0]);
5128       Value *Op = getValue(Record, 1, NextValueNo, OpTy);
5129       Type *ResTy = getTypeByID(Record[2]);
5130       if (!OpTy || !Op || !ResTy)
5131         return error("Invalid record");
5132       I = new VAArgInst(Op, ResTy);
5133       InstructionList.push_back(I);
5134       break;
5135     }
5136
5137     case bitc::FUNC_CODE_OPERAND_BUNDLE: {
5138       // A call or an invoke can be optionally prefixed with some variable
5139       // number of operand bundle blocks.  These blocks are read into
5140       // OperandBundles and consumed at the next call or invoke instruction.
5141
5142       if (Record.size() < 1 || Record[0] >= BundleTags.size())
5143         return error("Invalid record");
5144
5145       std::vector<Value *> Inputs;
5146
5147       unsigned OpNum = 1;
5148       while (OpNum != Record.size()) {
5149         Value *Op;
5150         if (getValueTypePair(Record, OpNum, NextValueNo, Op))
5151           return error("Invalid record");
5152         Inputs.push_back(Op);
5153       }
5154
5155       OperandBundles.emplace_back(BundleTags[Record[0]], std::move(Inputs));
5156       continue;
5157     }
5158     }
5159
5160     // Add instruction to end of current BB.  If there is no current BB, reject
5161     // this file.
5162     if (!CurBB) {
5163       delete I;
5164       return error("Invalid instruction with no BB");
5165     }
5166     if (!OperandBundles.empty()) {
5167       delete I;
5168       return error("Operand bundles found with no consumer");
5169     }
5170     CurBB->getInstList().push_back(I);
5171
5172     // If this was a terminator instruction, move to the next block.
5173     if (isa<TerminatorInst>(I)) {
5174       ++CurBBNo;
5175       CurBB = CurBBNo < FunctionBBs.size() ? FunctionBBs[CurBBNo] : nullptr;
5176     }
5177
5178     // Non-void values get registered in the value table for future use.
5179     if (I && !I->getType()->isVoidTy())
5180       ValueList.assignValue(I, NextValueNo++);
5181   }
5182
5183 OutOfRecordLoop:
5184
5185   if (!OperandBundles.empty())
5186     return error("Operand bundles found with no consumer");
5187
5188   // Check the function list for unresolved values.
5189   if (Argument *A = dyn_cast<Argument>(ValueList.back())) {
5190     if (!A->getParent()) {
5191       // We found at least one unresolved value.  Nuke them all to avoid leaks.
5192       for (unsigned i = ModuleValueListSize, e = ValueList.size(); i != e; ++i){
5193         if ((A = dyn_cast_or_null<Argument>(ValueList[i])) && !A->getParent()) {
5194           A->replaceAllUsesWith(UndefValue::get(A->getType()));
5195           delete A;
5196         }
5197       }
5198       return error("Never resolved value found in function");
5199     }
5200   }
5201
5202   // FIXME: Check for unresolved forward-declared metadata references
5203   // and clean up leaks.
5204
5205   // Trim the value list down to the size it was before we parsed this function.
5206   ValueList.shrinkTo(ModuleValueListSize);
5207   MetadataList.shrinkTo(ModuleMetadataListSize);
5208   std::vector<BasicBlock*>().swap(FunctionBBs);
5209   return std::error_code();
5210 }
5211
5212 /// Find the function body in the bitcode stream
5213 std::error_code BitcodeReader::findFunctionInStream(
5214     Function *F,
5215     DenseMap<Function *, uint64_t>::iterator DeferredFunctionInfoIterator) {
5216   while (DeferredFunctionInfoIterator->second == 0) {
5217     // This is the fallback handling for the old format bitcode that
5218     // didn't contain the function index in the VST, or when we have
5219     // an anonymous function which would not have a VST entry.
5220     // Assert that we have one of those two cases.
5221     assert(VSTOffset == 0 || !F->hasName());
5222     // Parse the next body in the stream and set its position in the
5223     // DeferredFunctionInfo map.
5224     if (std::error_code EC = rememberAndSkipFunctionBodies())
5225       return EC;
5226   }
5227   return std::error_code();
5228 }
5229
5230 //===----------------------------------------------------------------------===//
5231 // GVMaterializer implementation
5232 //===----------------------------------------------------------------------===//
5233
5234 void BitcodeReader::releaseBuffer() { Buffer.release(); }
5235
5236 std::error_code BitcodeReader::materialize(GlobalValue *GV) {
5237   // In older bitcode we must materialize the metadata before parsing
5238   // any functions, in order to set up the MetadataList properly.
5239   if (!SeenModuleValuesRecord) {
5240     if (std::error_code EC = materializeMetadata())
5241       return EC;
5242   }
5243
5244   Function *F = dyn_cast<Function>(GV);
5245   // If it's not a function or is already material, ignore the request.
5246   if (!F || !F->isMaterializable())
5247     return std::error_code();
5248
5249   DenseMap<Function*, uint64_t>::iterator DFII = DeferredFunctionInfo.find(F);
5250   assert(DFII != DeferredFunctionInfo.end() && "Deferred function not found!");
5251   // If its position is recorded as 0, its body is somewhere in the stream
5252   // but we haven't seen it yet.
5253   if (DFII->second == 0)
5254     if (std::error_code EC = findFunctionInStream(F, DFII))
5255       return EC;
5256
5257   // Move the bit stream to the saved position of the deferred function body.
5258   Stream.JumpToBit(DFII->second);
5259
5260   if (std::error_code EC = parseFunctionBody(F))
5261     return EC;
5262   F->setIsMaterializable(false);
5263
5264   if (StripDebugInfo)
5265     stripDebugInfo(*F);
5266
5267   // Upgrade any old intrinsic calls in the function.
5268   for (auto &I : UpgradedIntrinsics) {
5269     for (auto UI = I.first->materialized_user_begin(), UE = I.first->user_end();
5270          UI != UE;) {
5271       User *U = *UI;
5272       ++UI;
5273       if (CallInst *CI = dyn_cast<CallInst>(U))
5274         UpgradeIntrinsicCall(CI, I.second);
5275     }
5276   }
5277
5278   // Finish fn->subprogram upgrade for materialized functions.
5279   if (DISubprogram *SP = FunctionsWithSPs.lookup(F))
5280     F->setSubprogram(SP);
5281
5282   // Bring in any functions that this function forward-referenced via
5283   // blockaddresses.
5284   return materializeForwardReferencedFunctions();
5285 }
5286
5287 std::error_code BitcodeReader::materializeModule() {
5288   if (std::error_code EC = materializeMetadata())
5289     return EC;
5290
5291   // Promise to materialize all forward references.
5292   WillMaterializeAllForwardRefs = true;
5293
5294   // Iterate over the module, deserializing any functions that are still on
5295   // disk.
5296   for (Function &F : *TheModule) {
5297     if (std::error_code EC = materialize(&F))
5298       return EC;
5299   }
5300   // At this point, if there are any function bodies, parse the rest of
5301   // the bits in the module past the last function block we have recorded
5302   // through either lazy scanning or the VST.
5303   if (LastFunctionBlockBit || NextUnreadBit)
5304     parseModule(LastFunctionBlockBit > NextUnreadBit ? LastFunctionBlockBit
5305                                                      : NextUnreadBit);
5306
5307   // Check that all block address forward references got resolved (as we
5308   // promised above).
5309   if (!BasicBlockFwdRefs.empty())
5310     return error("Never resolved function from blockaddress");
5311
5312   // Upgrade any intrinsic calls that slipped through (should not happen!) and
5313   // delete the old functions to clean up. We can't do this unless the entire
5314   // module is materialized because there could always be another function body
5315   // with calls to the old function.
5316   for (auto &I : UpgradedIntrinsics) {
5317     for (auto *U : I.first->users()) {
5318       if (CallInst *CI = dyn_cast<CallInst>(U))
5319         UpgradeIntrinsicCall(CI, I.second);
5320     }
5321     if (!I.first->use_empty())
5322       I.first->replaceAllUsesWith(I.second);
5323     I.first->eraseFromParent();
5324   }
5325   UpgradedIntrinsics.clear();
5326
5327   for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
5328     UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
5329
5330   UpgradeDebugInfo(*TheModule);
5331   return std::error_code();
5332 }
5333
5334 std::vector<StructType *> BitcodeReader::getIdentifiedStructTypes() const {
5335   return IdentifiedStructTypes;
5336 }
5337
5338 std::error_code
5339 BitcodeReader::initStream(std::unique_ptr<DataStreamer> Streamer) {
5340   if (Streamer)
5341     return initLazyStream(std::move(Streamer));
5342   return initStreamFromBuffer();
5343 }
5344
5345 std::error_code BitcodeReader::initStreamFromBuffer() {
5346   const unsigned char *BufPtr = (const unsigned char*)Buffer->getBufferStart();
5347   const unsigned char *BufEnd = BufPtr+Buffer->getBufferSize();
5348
5349   if (Buffer->getBufferSize() & 3)
5350     return error("Invalid bitcode signature");
5351
5352   // If we have a wrapper header, parse it and ignore the non-bc file contents.
5353   // The magic number is 0x0B17C0DE stored in little endian.
5354   if (isBitcodeWrapper(BufPtr, BufEnd))
5355     if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
5356       return error("Invalid bitcode wrapper header");
5357
5358   StreamFile.reset(new BitstreamReader(BufPtr, BufEnd));
5359   Stream.init(&*StreamFile);
5360
5361   return std::error_code();
5362 }
5363
5364 std::error_code
5365 BitcodeReader::initLazyStream(std::unique_ptr<DataStreamer> Streamer) {
5366   // Check and strip off the bitcode wrapper; BitstreamReader expects never to
5367   // see it.
5368   auto OwnedBytes =
5369       llvm::make_unique<StreamingMemoryObject>(std::move(Streamer));
5370   StreamingMemoryObject &Bytes = *OwnedBytes;
5371   StreamFile = llvm::make_unique<BitstreamReader>(std::move(OwnedBytes));
5372   Stream.init(&*StreamFile);
5373
5374   unsigned char buf[16];
5375   if (Bytes.readBytes(buf, 16, 0) != 16)
5376     return error("Invalid bitcode signature");
5377
5378   if (!isBitcode(buf, buf + 16))
5379     return error("Invalid bitcode signature");
5380
5381   if (isBitcodeWrapper(buf, buf + 4)) {
5382     const unsigned char *bitcodeStart = buf;
5383     const unsigned char *bitcodeEnd = buf + 16;
5384     SkipBitcodeWrapperHeader(bitcodeStart, bitcodeEnd, false);
5385     Bytes.dropLeadingBytes(bitcodeStart - buf);
5386     Bytes.setKnownObjectSize(bitcodeEnd - bitcodeStart);
5387   }
5388   return std::error_code();
5389 }
5390
5391 std::error_code FunctionIndexBitcodeReader::error(BitcodeError E,
5392                                                   const Twine &Message) {
5393   return ::error(DiagnosticHandler, make_error_code(E), Message);
5394 }
5395
5396 std::error_code FunctionIndexBitcodeReader::error(const Twine &Message) {
5397   return ::error(DiagnosticHandler,
5398                  make_error_code(BitcodeError::CorruptedBitcode), Message);
5399 }
5400
5401 std::error_code FunctionIndexBitcodeReader::error(BitcodeError E) {
5402   return ::error(DiagnosticHandler, make_error_code(E));
5403 }
5404
5405 FunctionIndexBitcodeReader::FunctionIndexBitcodeReader(
5406     MemoryBuffer *Buffer, DiagnosticHandlerFunction DiagnosticHandler,
5407     bool IsLazy, bool CheckFuncSummaryPresenceOnly)
5408     : DiagnosticHandler(DiagnosticHandler), Buffer(Buffer), IsLazy(IsLazy),
5409       CheckFuncSummaryPresenceOnly(CheckFuncSummaryPresenceOnly) {}
5410
5411 FunctionIndexBitcodeReader::FunctionIndexBitcodeReader(
5412     DiagnosticHandlerFunction DiagnosticHandler, bool IsLazy,
5413     bool CheckFuncSummaryPresenceOnly)
5414     : DiagnosticHandler(DiagnosticHandler), Buffer(nullptr), IsLazy(IsLazy),
5415       CheckFuncSummaryPresenceOnly(CheckFuncSummaryPresenceOnly) {}
5416
5417 void FunctionIndexBitcodeReader::freeState() { Buffer = nullptr; }
5418
5419 void FunctionIndexBitcodeReader::releaseBuffer() { Buffer.release(); }
5420
5421 // Specialized value symbol table parser used when reading function index
5422 // blocks where we don't actually create global values.
5423 // At the end of this routine the function index is populated with a map
5424 // from function name to FunctionInfo. The function info contains
5425 // the function block's bitcode offset as well as the offset into the
5426 // function summary section.
5427 std::error_code FunctionIndexBitcodeReader::parseValueSymbolTable() {
5428   if (Stream.EnterSubBlock(bitc::VALUE_SYMTAB_BLOCK_ID))
5429     return error("Invalid record");
5430
5431   SmallVector<uint64_t, 64> Record;
5432
5433   // Read all the records for this value table.
5434   SmallString<128> ValueName;
5435   while (1) {
5436     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
5437
5438     switch (Entry.Kind) {
5439     case BitstreamEntry::SubBlock: // Handled for us already.
5440     case BitstreamEntry::Error:
5441       return error("Malformed block");
5442     case BitstreamEntry::EndBlock:
5443       return std::error_code();
5444     case BitstreamEntry::Record:
5445       // The interesting case.
5446       break;
5447     }
5448
5449     // Read a record.
5450     Record.clear();
5451     switch (Stream.readRecord(Entry.ID, Record)) {
5452     default: // Default behavior: ignore (e.g. VST_CODE_BBENTRY records).
5453       break;
5454     case bitc::VST_CODE_FNENTRY: {
5455       // VST_FNENTRY: [valueid, offset, namechar x N]
5456       if (convertToString(Record, 2, ValueName))
5457         return error("Invalid record");
5458       unsigned ValueID = Record[0];
5459       uint64_t FuncOffset = Record[1];
5460       std::unique_ptr<FunctionInfo> FuncInfo =
5461           llvm::make_unique<FunctionInfo>(FuncOffset);
5462       if (foundFuncSummary() && !IsLazy) {
5463         DenseMap<uint64_t, std::unique_ptr<FunctionSummary>>::iterator SMI =
5464             SummaryMap.find(ValueID);
5465         assert(SMI != SummaryMap.end() && "Summary info not found");
5466         FuncInfo->setFunctionSummary(std::move(SMI->second));
5467       }
5468       TheIndex->addFunctionInfo(ValueName, std::move(FuncInfo));
5469
5470       ValueName.clear();
5471       break;
5472     }
5473     case bitc::VST_CODE_COMBINED_FNENTRY: {
5474       // VST_FNENTRY: [offset, namechar x N]
5475       if (convertToString(Record, 1, ValueName))
5476         return error("Invalid record");
5477       uint64_t FuncSummaryOffset = Record[0];
5478       std::unique_ptr<FunctionInfo> FuncInfo =
5479           llvm::make_unique<FunctionInfo>(FuncSummaryOffset);
5480       if (foundFuncSummary() && !IsLazy) {
5481         DenseMap<uint64_t, std::unique_ptr<FunctionSummary>>::iterator SMI =
5482             SummaryMap.find(FuncSummaryOffset);
5483         assert(SMI != SummaryMap.end() && "Summary info not found");
5484         FuncInfo->setFunctionSummary(std::move(SMI->second));
5485       }
5486       TheIndex->addFunctionInfo(ValueName, std::move(FuncInfo));
5487
5488       ValueName.clear();
5489       break;
5490     }
5491     }
5492   }
5493 }
5494
5495 // Parse just the blocks needed for function index building out of the module.
5496 // At the end of this routine the function Index is populated with a map
5497 // from function name to FunctionInfo. The function info contains
5498 // either the parsed function summary information (when parsing summaries
5499 // eagerly), or just to the function summary record's offset
5500 // if parsing lazily (IsLazy).
5501 std::error_code FunctionIndexBitcodeReader::parseModule() {
5502   if (Stream.EnterSubBlock(bitc::MODULE_BLOCK_ID))
5503     return error("Invalid record");
5504
5505   // Read the function index for this module.
5506   while (1) {
5507     BitstreamEntry Entry = Stream.advance();
5508
5509     switch (Entry.Kind) {
5510     case BitstreamEntry::Error:
5511       return error("Malformed block");
5512     case BitstreamEntry::EndBlock:
5513       return std::error_code();
5514
5515     case BitstreamEntry::SubBlock:
5516       if (CheckFuncSummaryPresenceOnly) {
5517         if (Entry.ID == bitc::FUNCTION_SUMMARY_BLOCK_ID) {
5518           SeenFuncSummary = true;
5519           // No need to parse the rest since we found the summary.
5520           return std::error_code();
5521         }
5522         if (Stream.SkipBlock())
5523           return error("Invalid record");
5524         continue;
5525       }
5526       switch (Entry.ID) {
5527       default: // Skip unknown content.
5528         if (Stream.SkipBlock())
5529           return error("Invalid record");
5530         break;
5531       case bitc::BLOCKINFO_BLOCK_ID:
5532         // Need to parse these to get abbrev ids (e.g. for VST)
5533         if (Stream.ReadBlockInfoBlock())
5534           return error("Malformed block");
5535         break;
5536       case bitc::VALUE_SYMTAB_BLOCK_ID:
5537         if (std::error_code EC = parseValueSymbolTable())
5538           return EC;
5539         break;
5540       case bitc::FUNCTION_SUMMARY_BLOCK_ID:
5541         SeenFuncSummary = true;
5542         if (IsLazy) {
5543           // Lazy parsing of summary info, skip it.
5544           if (Stream.SkipBlock())
5545             return error("Invalid record");
5546         } else if (std::error_code EC = parseEntireSummary())
5547           return EC;
5548         break;
5549       case bitc::MODULE_STRTAB_BLOCK_ID:
5550         if (std::error_code EC = parseModuleStringTable())
5551           return EC;
5552         break;
5553       }
5554       continue;
5555
5556     case BitstreamEntry::Record:
5557       Stream.skipRecord(Entry.ID);
5558       continue;
5559     }
5560   }
5561 }
5562
5563 // Eagerly parse the entire function summary block (i.e. for all functions
5564 // in the index). This populates the FunctionSummary objects in
5565 // the index.
5566 std::error_code FunctionIndexBitcodeReader::parseEntireSummary() {
5567   if (Stream.EnterSubBlock(bitc::FUNCTION_SUMMARY_BLOCK_ID))
5568     return error("Invalid record");
5569
5570   SmallVector<uint64_t, 64> Record;
5571
5572   while (1) {
5573     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
5574
5575     switch (Entry.Kind) {
5576     case BitstreamEntry::SubBlock: // Handled for us already.
5577     case BitstreamEntry::Error:
5578       return error("Malformed block");
5579     case BitstreamEntry::EndBlock:
5580       return std::error_code();
5581     case BitstreamEntry::Record:
5582       // The interesting case.
5583       break;
5584     }
5585
5586     // Read a record. The record format depends on whether this
5587     // is a per-module index or a combined index file. In the per-module
5588     // case the records contain the associated value's ID for correlation
5589     // with VST entries. In the combined index the correlation is done
5590     // via the bitcode offset of the summary records (which were saved
5591     // in the combined index VST entries). The records also contain
5592     // information used for ThinLTO renaming and importing.
5593     Record.clear();
5594     uint64_t CurRecordBit = Stream.GetCurrentBitNo();
5595     switch (Stream.readRecord(Entry.ID, Record)) {
5596     default: // Default behavior: ignore.
5597       break;
5598     // FS_PERMODULE_ENTRY: [valueid, islocal, instcount]
5599     case bitc::FS_CODE_PERMODULE_ENTRY: {
5600       unsigned ValueID = Record[0];
5601       bool IsLocal = Record[1];
5602       unsigned InstCount = Record[2];
5603       std::unique_ptr<FunctionSummary> FS =
5604           llvm::make_unique<FunctionSummary>(InstCount);
5605       FS->setLocalFunction(IsLocal);
5606       // The module path string ref set in the summary must be owned by the
5607       // index's module string table. Since we don't have a module path
5608       // string table section in the per-module index, we create a single
5609       // module path string table entry with an empty (0) ID to take
5610       // ownership.
5611       FS->setModulePath(
5612           TheIndex->addModulePath(Buffer->getBufferIdentifier(), 0));
5613       SummaryMap[ValueID] = std::move(FS);
5614     }
5615     // FS_COMBINED_ENTRY: [modid, instcount]
5616     case bitc::FS_CODE_COMBINED_ENTRY: {
5617       uint64_t ModuleId = Record[0];
5618       unsigned InstCount = Record[1];
5619       std::unique_ptr<FunctionSummary> FS =
5620           llvm::make_unique<FunctionSummary>(InstCount);
5621       FS->setModulePath(ModuleIdMap[ModuleId]);
5622       SummaryMap[CurRecordBit] = std::move(FS);
5623     }
5624     }
5625   }
5626   llvm_unreachable("Exit infinite loop");
5627 }
5628
5629 // Parse the  module string table block into the Index.
5630 // This populates the ModulePathStringTable map in the index.
5631 std::error_code FunctionIndexBitcodeReader::parseModuleStringTable() {
5632   if (Stream.EnterSubBlock(bitc::MODULE_STRTAB_BLOCK_ID))
5633     return error("Invalid record");
5634
5635   SmallVector<uint64_t, 64> Record;
5636
5637   SmallString<128> ModulePath;
5638   while (1) {
5639     BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
5640
5641     switch (Entry.Kind) {
5642     case BitstreamEntry::SubBlock: // Handled for us already.
5643     case BitstreamEntry::Error:
5644       return error("Malformed block");
5645     case BitstreamEntry::EndBlock:
5646       return std::error_code();
5647     case BitstreamEntry::Record:
5648       // The interesting case.
5649       break;
5650     }
5651
5652     Record.clear();
5653     switch (Stream.readRecord(Entry.ID, Record)) {
5654     default: // Default behavior: ignore.
5655       break;
5656     case bitc::MST_CODE_ENTRY: {
5657       // MST_ENTRY: [modid, namechar x N]
5658       if (convertToString(Record, 1, ModulePath))
5659         return error("Invalid record");
5660       uint64_t ModuleId = Record[0];
5661       StringRef ModulePathInMap = TheIndex->addModulePath(ModulePath, ModuleId);
5662       ModuleIdMap[ModuleId] = ModulePathInMap;
5663       ModulePath.clear();
5664       break;
5665     }
5666     }
5667   }
5668   llvm_unreachable("Exit infinite loop");
5669 }
5670
5671 // Parse the function info index from the bitcode streamer into the given index.
5672 std::error_code FunctionIndexBitcodeReader::parseSummaryIndexInto(
5673     std::unique_ptr<DataStreamer> Streamer, FunctionInfoIndex *I) {
5674   TheIndex = I;
5675
5676   if (std::error_code EC = initStream(std::move(Streamer)))
5677     return EC;
5678
5679   // Sniff for the signature.
5680   if (!hasValidBitcodeHeader(Stream))
5681     return error("Invalid bitcode signature");
5682
5683   // We expect a number of well-defined blocks, though we don't necessarily
5684   // need to understand them all.
5685   while (1) {
5686     if (Stream.AtEndOfStream()) {
5687       // We didn't really read a proper Module block.
5688       return error("Malformed block");
5689     }
5690
5691     BitstreamEntry Entry =
5692         Stream.advance(BitstreamCursor::AF_DontAutoprocessAbbrevs);
5693
5694     if (Entry.Kind != BitstreamEntry::SubBlock)
5695       return error("Malformed block");
5696
5697     // If we see a MODULE_BLOCK, parse it to find the blocks needed for
5698     // building the function summary index.
5699     if (Entry.ID == bitc::MODULE_BLOCK_ID)
5700       return parseModule();
5701
5702     if (Stream.SkipBlock())
5703       return error("Invalid record");
5704   }
5705 }
5706
5707 // Parse the function information at the given offset in the buffer into
5708 // the index. Used to support lazy parsing of function summaries from the
5709 // combined index during importing.
5710 // TODO: This function is not yet complete as it won't have a consumer
5711 // until ThinLTO function importing is added.
5712 std::error_code FunctionIndexBitcodeReader::parseFunctionSummary(
5713     std::unique_ptr<DataStreamer> Streamer, FunctionInfoIndex *I,
5714     size_t FunctionSummaryOffset) {
5715   TheIndex = I;
5716
5717   if (std::error_code EC = initStream(std::move(Streamer)))
5718     return EC;
5719
5720   // Sniff for the signature.
5721   if (!hasValidBitcodeHeader(Stream))
5722     return error("Invalid bitcode signature");
5723
5724   Stream.JumpToBit(FunctionSummaryOffset);
5725
5726   BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
5727
5728   switch (Entry.Kind) {
5729   default:
5730     return error("Malformed block");
5731   case BitstreamEntry::Record:
5732     // The expected case.
5733     break;
5734   }
5735
5736   // TODO: Read a record. This interface will be completed when ThinLTO
5737   // importing is added so that it can be tested.
5738   SmallVector<uint64_t, 64> Record;
5739   switch (Stream.readRecord(Entry.ID, Record)) {
5740   case bitc::FS_CODE_COMBINED_ENTRY:
5741   default:
5742     return error("Invalid record");
5743   }
5744
5745   return std::error_code();
5746 }
5747
5748 std::error_code
5749 FunctionIndexBitcodeReader::initStream(std::unique_ptr<DataStreamer> Streamer) {
5750   if (Streamer)
5751     return initLazyStream(std::move(Streamer));
5752   return initStreamFromBuffer();
5753 }
5754
5755 std::error_code FunctionIndexBitcodeReader::initStreamFromBuffer() {
5756   const unsigned char *BufPtr = (const unsigned char *)Buffer->getBufferStart();
5757   const unsigned char *BufEnd = BufPtr + Buffer->getBufferSize();
5758
5759   if (Buffer->getBufferSize() & 3)
5760     return error("Invalid bitcode signature");
5761
5762   // If we have a wrapper header, parse it and ignore the non-bc file contents.
5763   // The magic number is 0x0B17C0DE stored in little endian.
5764   if (isBitcodeWrapper(BufPtr, BufEnd))
5765     if (SkipBitcodeWrapperHeader(BufPtr, BufEnd, true))
5766       return error("Invalid bitcode wrapper header");
5767
5768   StreamFile.reset(new BitstreamReader(BufPtr, BufEnd));
5769   Stream.init(&*StreamFile);
5770
5771   return std::error_code();
5772 }
5773
5774 std::error_code FunctionIndexBitcodeReader::initLazyStream(
5775     std::unique_ptr<DataStreamer> Streamer) {
5776   // Check and strip off the bitcode wrapper; BitstreamReader expects never to
5777   // see it.
5778   auto OwnedBytes =
5779       llvm::make_unique<StreamingMemoryObject>(std::move(Streamer));
5780   StreamingMemoryObject &Bytes = *OwnedBytes;
5781   StreamFile = llvm::make_unique<BitstreamReader>(std::move(OwnedBytes));
5782   Stream.init(&*StreamFile);
5783
5784   unsigned char buf[16];
5785   if (Bytes.readBytes(buf, 16, 0) != 16)
5786     return error("Invalid bitcode signature");
5787
5788   if (!isBitcode(buf, buf + 16))
5789     return error("Invalid bitcode signature");
5790
5791   if (isBitcodeWrapper(buf, buf + 4)) {
5792     const unsigned char *bitcodeStart = buf;
5793     const unsigned char *bitcodeEnd = buf + 16;
5794     SkipBitcodeWrapperHeader(bitcodeStart, bitcodeEnd, false);
5795     Bytes.dropLeadingBytes(bitcodeStart - buf);
5796     Bytes.setKnownObjectSize(bitcodeEnd - bitcodeStart);
5797   }
5798   return std::error_code();
5799 }
5800
5801 namespace {
5802 class BitcodeErrorCategoryType : public std::error_category {
5803   const char *name() const LLVM_NOEXCEPT override {
5804     return "llvm.bitcode";
5805   }
5806   std::string message(int IE) const override {
5807     BitcodeError E = static_cast<BitcodeError>(IE);
5808     switch (E) {
5809     case BitcodeError::InvalidBitcodeSignature:
5810       return "Invalid bitcode signature";
5811     case BitcodeError::CorruptedBitcode:
5812       return "Corrupted bitcode";
5813     }
5814     llvm_unreachable("Unknown error type!");
5815   }
5816 };
5817 }
5818
5819 static ManagedStatic<BitcodeErrorCategoryType> ErrorCategory;
5820
5821 const std::error_category &llvm::BitcodeErrorCategory() {
5822   return *ErrorCategory;
5823 }
5824
5825 //===----------------------------------------------------------------------===//
5826 // External interface
5827 //===----------------------------------------------------------------------===//
5828
5829 static ErrorOr<std::unique_ptr<Module>>
5830 getBitcodeModuleImpl(std::unique_ptr<DataStreamer> Streamer, StringRef Name,
5831                      BitcodeReader *R, LLVMContext &Context,
5832                      bool MaterializeAll, bool ShouldLazyLoadMetadata) {
5833   std::unique_ptr<Module> M = make_unique<Module>(Name, Context);
5834   M->setMaterializer(R);
5835
5836   auto cleanupOnError = [&](std::error_code EC) {
5837     R->releaseBuffer(); // Never take ownership on error.
5838     return EC;
5839   };
5840
5841   // Delay parsing Metadata if ShouldLazyLoadMetadata is true.
5842   if (std::error_code EC = R->parseBitcodeInto(std::move(Streamer), M.get(),
5843                                                ShouldLazyLoadMetadata))
5844     return cleanupOnError(EC);
5845
5846   if (MaterializeAll) {
5847     // Read in the entire module, and destroy the BitcodeReader.
5848     if (std::error_code EC = M->materializeAll())
5849       return cleanupOnError(EC);
5850   } else {
5851     // Resolve forward references from blockaddresses.
5852     if (std::error_code EC = R->materializeForwardReferencedFunctions())
5853       return cleanupOnError(EC);
5854   }
5855   return std::move(M);
5856 }
5857
5858 /// \brief Get a lazy one-at-time loading module from bitcode.
5859 ///
5860 /// This isn't always used in a lazy context.  In particular, it's also used by
5861 /// \a parseBitcodeFile().  If this is truly lazy, then we need to eagerly pull
5862 /// in forward-referenced functions from block address references.
5863 ///
5864 /// \param[in] MaterializeAll Set to \c true if we should materialize
5865 /// everything.
5866 static ErrorOr<std::unique_ptr<Module>>
5867 getLazyBitcodeModuleImpl(std::unique_ptr<MemoryBuffer> &&Buffer,
5868                          LLVMContext &Context, bool MaterializeAll,
5869                          bool ShouldLazyLoadMetadata = false) {
5870   BitcodeReader *R = new BitcodeReader(Buffer.get(), Context);
5871
5872   ErrorOr<std::unique_ptr<Module>> Ret =
5873       getBitcodeModuleImpl(nullptr, Buffer->getBufferIdentifier(), R, Context,
5874                            MaterializeAll, ShouldLazyLoadMetadata);
5875   if (!Ret)
5876     return Ret;
5877
5878   Buffer.release(); // The BitcodeReader owns it now.
5879   return Ret;
5880 }
5881
5882 ErrorOr<std::unique_ptr<Module>>
5883 llvm::getLazyBitcodeModule(std::unique_ptr<MemoryBuffer> &&Buffer,
5884                            LLVMContext &Context, bool ShouldLazyLoadMetadata) {
5885   return getLazyBitcodeModuleImpl(std::move(Buffer), Context, false,
5886                                   ShouldLazyLoadMetadata);
5887 }
5888
5889 ErrorOr<std::unique_ptr<Module>>
5890 llvm::getStreamedBitcodeModule(StringRef Name,
5891                                std::unique_ptr<DataStreamer> Streamer,
5892                                LLVMContext &Context) {
5893   std::unique_ptr<Module> M = make_unique<Module>(Name, Context);
5894   BitcodeReader *R = new BitcodeReader(Context);
5895
5896   return getBitcodeModuleImpl(std::move(Streamer), Name, R, Context, false,
5897                               false);
5898 }
5899
5900 ErrorOr<std::unique_ptr<Module>> llvm::parseBitcodeFile(MemoryBufferRef Buffer,
5901                                                         LLVMContext &Context) {
5902   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5903   return getLazyBitcodeModuleImpl(std::move(Buf), Context, true);
5904   // TODO: Restore the use-lists to the in-memory state when the bitcode was
5905   // written.  We must defer until the Module has been fully materialized.
5906 }
5907
5908 std::string llvm::getBitcodeTargetTriple(MemoryBufferRef Buffer,
5909                                          LLVMContext &Context) {
5910   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5911   auto R = llvm::make_unique<BitcodeReader>(Buf.release(), Context);
5912   ErrorOr<std::string> Triple = R->parseTriple();
5913   if (Triple.getError())
5914     return "";
5915   return Triple.get();
5916 }
5917
5918 std::string llvm::getBitcodeProducerString(MemoryBufferRef Buffer,
5919                                            LLVMContext &Context) {
5920   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5921   BitcodeReader R(Buf.release(), Context);
5922   ErrorOr<std::string> ProducerString = R.parseIdentificationBlock();
5923   if (ProducerString.getError())
5924     return "";
5925   return ProducerString.get();
5926 }
5927
5928 // Parse the specified bitcode buffer, returning the function info index.
5929 // If IsLazy is false, parse the entire function summary into
5930 // the index. Otherwise skip the function summary section, and only create
5931 // an index object with a map from function name to function summary offset.
5932 // The index is used to perform lazy function summary reading later.
5933 ErrorOr<std::unique_ptr<FunctionInfoIndex>>
5934 llvm::getFunctionInfoIndex(MemoryBufferRef Buffer,
5935                            DiagnosticHandlerFunction DiagnosticHandler,
5936                            bool IsLazy) {
5937   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5938   FunctionIndexBitcodeReader R(Buf.get(), DiagnosticHandler, IsLazy);
5939
5940   auto Index = llvm::make_unique<FunctionInfoIndex>();
5941
5942   auto cleanupOnError = [&](std::error_code EC) {
5943     R.releaseBuffer(); // Never take ownership on error.
5944     return EC;
5945   };
5946
5947   if (std::error_code EC = R.parseSummaryIndexInto(nullptr, Index.get()))
5948     return cleanupOnError(EC);
5949
5950   Buf.release(); // The FunctionIndexBitcodeReader owns it now.
5951   return std::move(Index);
5952 }
5953
5954 // Check if the given bitcode buffer contains a function summary block.
5955 bool llvm::hasFunctionSummary(MemoryBufferRef Buffer,
5956                               DiagnosticHandlerFunction DiagnosticHandler) {
5957   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5958   FunctionIndexBitcodeReader R(Buf.get(), DiagnosticHandler, false, true);
5959
5960   auto cleanupOnError = [&](std::error_code EC) {
5961     R.releaseBuffer(); // Never take ownership on error.
5962     return false;
5963   };
5964
5965   if (std::error_code EC = R.parseSummaryIndexInto(nullptr, nullptr))
5966     return cleanupOnError(EC);
5967
5968   Buf.release(); // The FunctionIndexBitcodeReader owns it now.
5969   return R.foundFuncSummary();
5970 }
5971
5972 // This method supports lazy reading of function summary data from the combined
5973 // index during ThinLTO function importing. When reading the combined index
5974 // file, getFunctionInfoIndex is first invoked with IsLazy=true.
5975 // Then this method is called for each function considered for importing,
5976 // to parse the summary information for the given function name into
5977 // the index.
5978 std::error_code llvm::readFunctionSummary(
5979     MemoryBufferRef Buffer, DiagnosticHandlerFunction DiagnosticHandler,
5980     StringRef FunctionName, std::unique_ptr<FunctionInfoIndex> Index) {
5981   std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Buffer, false);
5982   FunctionIndexBitcodeReader R(Buf.get(), DiagnosticHandler);
5983
5984   auto cleanupOnError = [&](std::error_code EC) {
5985     R.releaseBuffer(); // Never take ownership on error.
5986     return EC;
5987   };
5988
5989   // Lookup the given function name in the FunctionMap, which may
5990   // contain a list of function infos in the case of a COMDAT. Walk through
5991   // and parse each function summary info at the function summary offset
5992   // recorded when parsing the value symbol table.
5993   for (const auto &FI : Index->getFunctionInfoList(FunctionName)) {
5994     size_t FunctionSummaryOffset = FI->bitcodeIndex();
5995     if (std::error_code EC =
5996             R.parseFunctionSummary(nullptr, Index.get(), FunctionSummaryOffset))
5997       return cleanupOnError(EC);
5998   }
5999
6000   Buf.release(); // The FunctionIndexBitcodeReader owns it now.
6001   return std::error_code();
6002 }