blob: f6b26104149956da2de2047da18f15caf7af2c73 [file] [log] [blame]
Mehdi Aminief27db82016-12-12 19:34:26 +00001//===- MetadataLoader.cpp - Internal BitcodeReader implementation ---------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Mehdi Aminief27db82016-12-12 19:34:26 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "MetadataLoader.h"
10#include "ValueList.h"
11
12#include "llvm/ADT/APFloat.h"
13#include "llvm/ADT/APInt.h"
14#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/DenseMap.h"
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000016#include "llvm/ADT/DenseSet.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000017#include "llvm/ADT/None.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/SmallVector.h"
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000021#include "llvm/ADT/Statistic.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000022#include "llvm/ADT/StringRef.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000023#include "llvm/ADT/Twine.h"
24#include "llvm/Bitcode/BitcodeReader.h"
25#include "llvm/Bitcode/BitstreamReader.h"
26#include "llvm/Bitcode/LLVMBitCodes.h"
27#include "llvm/IR/Argument.h"
28#include "llvm/IR/Attributes.h"
29#include "llvm/IR/AutoUpgrade.h"
30#include "llvm/IR/BasicBlock.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000031#include "llvm/IR/CallingConv.h"
32#include "llvm/IR/Comdat.h"
33#include "llvm/IR/Constant.h"
34#include "llvm/IR/Constants.h"
35#include "llvm/IR/DebugInfo.h"
36#include "llvm/IR/DebugInfoMetadata.h"
37#include "llvm/IR/DebugLoc.h"
38#include "llvm/IR/DerivedTypes.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000039#include "llvm/IR/DiagnosticPrinter.h"
40#include "llvm/IR/Function.h"
41#include "llvm/IR/GVMaterializer.h"
42#include "llvm/IR/GlobalAlias.h"
43#include "llvm/IR/GlobalIFunc.h"
44#include "llvm/IR/GlobalIndirectSymbol.h"
45#include "llvm/IR/GlobalObject.h"
46#include "llvm/IR/GlobalValue.h"
47#include "llvm/IR/GlobalVariable.h"
48#include "llvm/IR/InlineAsm.h"
49#include "llvm/IR/InstrTypes.h"
50#include "llvm/IR/Instruction.h"
51#include "llvm/IR/Instructions.h"
Adrian Prantl6825fb62017-04-18 01:21:53 +000052#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000053#include "llvm/IR/Intrinsics.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000054#include "llvm/IR/LLVMContext.h"
55#include "llvm/IR/Module.h"
56#include "llvm/IR/ModuleSummaryIndex.h"
57#include "llvm/IR/OperandTraits.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000058#include "llvm/IR/TrackingMDRef.h"
59#include "llvm/IR/Type.h"
60#include "llvm/IR/ValueHandle.h"
61#include "llvm/Support/AtomicOrdering.h"
62#include "llvm/Support/Casting.h"
63#include "llvm/Support/CommandLine.h"
64#include "llvm/Support/Compiler.h"
65#include "llvm/Support/Debug.h"
66#include "llvm/Support/Error.h"
67#include "llvm/Support/ErrorHandling.h"
68#include "llvm/Support/ManagedStatic.h"
69#include "llvm/Support/MemoryBuffer.h"
70#include "llvm/Support/raw_ostream.h"
71#include <algorithm>
72#include <cassert>
73#include <cstddef>
74#include <cstdint>
75#include <deque>
76#include <limits>
77#include <map>
78#include <memory>
79#include <string>
80#include <system_error>
81#include <tuple>
82#include <utility>
83#include <vector>
84
85using namespace llvm;
86
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000087#define DEBUG_TYPE "bitcode-reader"
88
89STATISTIC(NumMDStringLoaded, "Number of MDStrings loaded");
90STATISTIC(NumMDNodeTemporary, "Number of MDNode::Temporary created");
91STATISTIC(NumMDRecordLoaded, "Number of Metadata records loaded");
92
Teresa Johnsona61f5e32016-12-16 21:25:01 +000093/// Flag whether we need to import full type definitions for ThinLTO.
94/// Currently needed for Darwin and LLDB.
95static cl::opt<bool> ImportFullTypeDefinitions(
96 "import-full-type-definitions", cl::init(false), cl::Hidden,
97 cl::desc("Import full type definitions for ThinLTO."));
98
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000099static cl::opt<bool> DisableLazyLoading(
100 "disable-ondemand-mds-loading", cl::init(false), cl::Hidden,
101 cl::desc("Force disable the lazy-loading on-demand of metadata when "
102 "loading bitcode for importing."));
103
Mehdi Aminief27db82016-12-12 19:34:26 +0000104namespace {
105
106static int64_t unrotateSign(uint64_t U) { return U & 1 ? ~(U >> 1) : U >> 1; }
107
108class BitcodeReaderMetadataList {
Mehdi Aminief27db82016-12-12 19:34:26 +0000109 /// Array of metadata references.
110 ///
111 /// Don't use std::vector here. Some versions of libc++ copy (instead of
112 /// move) on resize, and TrackingMDRef is very expensive to copy.
113 SmallVector<TrackingMDRef, 1> MetadataPtrs;
114
Mehdi Amini690952d2016-12-25 04:22:54 +0000115 /// The set of indices in MetadataPtrs above of forward references that were
116 /// generated.
117 SmallDenseSet<unsigned, 1> ForwardReference;
118
119 /// The set of indices in MetadataPtrs above of Metadata that need to be
120 /// resolved.
121 SmallDenseSet<unsigned, 1> UnresolvedNodes;
122
Mehdi Aminief27db82016-12-12 19:34:26 +0000123 /// Structures for resolving old type refs.
124 struct {
125 SmallDenseMap<MDString *, TempMDTuple, 1> Unknown;
126 SmallDenseMap<MDString *, DICompositeType *, 1> Final;
127 SmallDenseMap<MDString *, DICompositeType *, 1> FwdDecls;
128 SmallVector<std::pair<TrackingMDRef, TempMDTuple>, 1> Arrays;
129 } OldTypeRefs;
130
131 LLVMContext &Context;
132
133public:
Mehdi Amini70a9cd42016-12-23 02:20:07 +0000134 BitcodeReaderMetadataList(LLVMContext &C) : Context(C) {}
Mehdi Aminief27db82016-12-12 19:34:26 +0000135
136 // vector compatibility methods
137 unsigned size() const { return MetadataPtrs.size(); }
138 void resize(unsigned N) { MetadataPtrs.resize(N); }
139 void push_back(Metadata *MD) { MetadataPtrs.emplace_back(MD); }
140 void clear() { MetadataPtrs.clear(); }
141 Metadata *back() const { return MetadataPtrs.back(); }
142 void pop_back() { MetadataPtrs.pop_back(); }
143 bool empty() const { return MetadataPtrs.empty(); }
144
145 Metadata *operator[](unsigned i) const {
146 assert(i < MetadataPtrs.size());
147 return MetadataPtrs[i];
148 }
149
150 Metadata *lookup(unsigned I) const {
151 if (I < MetadataPtrs.size())
152 return MetadataPtrs[I];
153 return nullptr;
154 }
155
156 void shrinkTo(unsigned N) {
157 assert(N <= size() && "Invalid shrinkTo request!");
Mehdi Amini690952d2016-12-25 04:22:54 +0000158 assert(ForwardReference.empty() && "Unexpected forward refs");
159 assert(UnresolvedNodes.empty() && "Unexpected unresolved node");
Mehdi Aminief27db82016-12-12 19:34:26 +0000160 MetadataPtrs.resize(N);
161 }
162
163 /// Return the given metadata, creating a replaceable forward reference if
164 /// necessary.
165 Metadata *getMetadataFwdRef(unsigned Idx);
166
Hiroshi Inoue8f976ba2018-01-17 12:29:38 +0000167 /// Return the given metadata only if it is fully resolved.
Mehdi Aminief27db82016-12-12 19:34:26 +0000168 ///
169 /// Gives the same result as \a lookup(), unless \a MDNode::isResolved()
170 /// would give \c false.
171 Metadata *getMetadataIfResolved(unsigned Idx);
172
173 MDNode *getMDNodeFwdRefOrNull(unsigned Idx);
174 void assignValue(Metadata *MD, unsigned Idx);
175 void tryToResolveCycles();
Mehdi Amini690952d2016-12-25 04:22:54 +0000176 bool hasFwdRefs() const { return !ForwardReference.empty(); }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000177 int getNextFwdRef() {
178 assert(hasFwdRefs());
179 return *ForwardReference.begin();
180 }
Mehdi Aminief27db82016-12-12 19:34:26 +0000181
182 /// Upgrade a type that had an MDString reference.
183 void addTypeRef(MDString &UUID, DICompositeType &CT);
184
185 /// Upgrade a type that had an MDString reference.
186 Metadata *upgradeTypeRef(Metadata *MaybeUUID);
187
188 /// Upgrade a type ref array that may have MDString references.
189 Metadata *upgradeTypeRefArray(Metadata *MaybeTuple);
190
191private:
192 Metadata *resolveTypeRefArray(Metadata *MaybeTuple);
193};
194
195void BitcodeReaderMetadataList::assignValue(Metadata *MD, unsigned Idx) {
Mehdi Amini690952d2016-12-25 04:22:54 +0000196 if (auto *MDN = dyn_cast<MDNode>(MD))
197 if (!MDN->isResolved())
198 UnresolvedNodes.insert(Idx);
199
Mehdi Aminief27db82016-12-12 19:34:26 +0000200 if (Idx == size()) {
201 push_back(MD);
202 return;
203 }
204
205 if (Idx >= size())
206 resize(Idx + 1);
207
208 TrackingMDRef &OldMD = MetadataPtrs[Idx];
209 if (!OldMD) {
210 OldMD.reset(MD);
211 return;
212 }
213
214 // If there was a forward reference to this value, replace it.
215 TempMDTuple PrevMD(cast<MDTuple>(OldMD.get()));
216 PrevMD->replaceAllUsesWith(MD);
Mehdi Amini690952d2016-12-25 04:22:54 +0000217 ForwardReference.erase(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +0000218}
219
220Metadata *BitcodeReaderMetadataList::getMetadataFwdRef(unsigned Idx) {
221 if (Idx >= size())
222 resize(Idx + 1);
223
224 if (Metadata *MD = MetadataPtrs[Idx])
225 return MD;
226
227 // Track forward refs to be resolved later.
Mehdi Amini690952d2016-12-25 04:22:54 +0000228 ForwardReference.insert(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +0000229
230 // Create and return a placeholder, which will later be RAUW'd.
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000231 ++NumMDNodeTemporary;
Mehdi Aminief27db82016-12-12 19:34:26 +0000232 Metadata *MD = MDNode::getTemporary(Context, None).release();
233 MetadataPtrs[Idx].reset(MD);
234 return MD;
235}
236
237Metadata *BitcodeReaderMetadataList::getMetadataIfResolved(unsigned Idx) {
238 Metadata *MD = lookup(Idx);
239 if (auto *N = dyn_cast_or_null<MDNode>(MD))
240 if (!N->isResolved())
241 return nullptr;
242 return MD;
243}
244
245MDNode *BitcodeReaderMetadataList::getMDNodeFwdRefOrNull(unsigned Idx) {
246 return dyn_cast_or_null<MDNode>(getMetadataFwdRef(Idx));
247}
248
249void BitcodeReaderMetadataList::tryToResolveCycles() {
Mehdi Amini690952d2016-12-25 04:22:54 +0000250 if (!ForwardReference.empty())
Mehdi Aminief27db82016-12-12 19:34:26 +0000251 // Still forward references... can't resolve cycles.
252 return;
253
Mehdi Aminief27db82016-12-12 19:34:26 +0000254 // Give up on finding a full definition for any forward decls that remain.
255 for (const auto &Ref : OldTypeRefs.FwdDecls)
256 OldTypeRefs.Final.insert(Ref);
257 OldTypeRefs.FwdDecls.clear();
258
259 // Upgrade from old type ref arrays. In strange cases, this could add to
260 // OldTypeRefs.Unknown.
Mehdi Amini690952d2016-12-25 04:22:54 +0000261 for (const auto &Array : OldTypeRefs.Arrays)
Mehdi Aminief27db82016-12-12 19:34:26 +0000262 Array.second->replaceAllUsesWith(resolveTypeRefArray(Array.first.get()));
Mehdi Aminief27db82016-12-12 19:34:26 +0000263 OldTypeRefs.Arrays.clear();
264
265 // Replace old string-based type refs with the resolved node, if possible.
266 // If we haven't seen the node, leave it to the verifier to complain about
267 // the invalid string reference.
268 for (const auto &Ref : OldTypeRefs.Unknown) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000269 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first))
270 Ref.second->replaceAllUsesWith(CT);
271 else
272 Ref.second->replaceAllUsesWith(Ref.first);
273 }
274 OldTypeRefs.Unknown.clear();
275
Mehdi Amini690952d2016-12-25 04:22:54 +0000276 if (UnresolvedNodes.empty())
Mehdi Aminief27db82016-12-12 19:34:26 +0000277 // Nothing to do.
278 return;
279
280 // Resolve any cycles.
Mehdi Amini690952d2016-12-25 04:22:54 +0000281 for (unsigned I : UnresolvedNodes) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000282 auto &MD = MetadataPtrs[I];
283 auto *N = dyn_cast_or_null<MDNode>(MD);
284 if (!N)
285 continue;
286
287 assert(!N->isTemporary() && "Unexpected forward reference");
288 N->resolveCycles();
289 }
290
Mehdi Amini690952d2016-12-25 04:22:54 +0000291 // Make sure we return early again until there's another unresolved ref.
292 UnresolvedNodes.clear();
Mehdi Aminief27db82016-12-12 19:34:26 +0000293}
294
295void BitcodeReaderMetadataList::addTypeRef(MDString &UUID,
296 DICompositeType &CT) {
297 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID");
298 if (CT.isForwardDecl())
299 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT));
300 else
301 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT));
302}
303
304Metadata *BitcodeReaderMetadataList::upgradeTypeRef(Metadata *MaybeUUID) {
305 auto *UUID = dyn_cast_or_null<MDString>(MaybeUUID);
306 if (LLVM_LIKELY(!UUID))
307 return MaybeUUID;
308
309 if (auto *CT = OldTypeRefs.Final.lookup(UUID))
310 return CT;
311
312 auto &Ref = OldTypeRefs.Unknown[UUID];
313 if (!Ref)
314 Ref = MDNode::getTemporary(Context, None);
315 return Ref.get();
316}
317
318Metadata *BitcodeReaderMetadataList::upgradeTypeRefArray(Metadata *MaybeTuple) {
319 auto *Tuple = dyn_cast_or_null<MDTuple>(MaybeTuple);
320 if (!Tuple || Tuple->isDistinct())
321 return MaybeTuple;
322
323 // Look through the array immediately if possible.
324 if (!Tuple->isTemporary())
325 return resolveTypeRefArray(Tuple);
326
327 // Create and return a placeholder to use for now. Eventually
328 // resolveTypeRefArrays() will be resolve this forward reference.
329 OldTypeRefs.Arrays.emplace_back(
330 std::piecewise_construct, std::forward_as_tuple(Tuple),
331 std::forward_as_tuple(MDTuple::getTemporary(Context, None)));
332 return OldTypeRefs.Arrays.back().second.get();
333}
334
335Metadata *BitcodeReaderMetadataList::resolveTypeRefArray(Metadata *MaybeTuple) {
336 auto *Tuple = dyn_cast_or_null<MDTuple>(MaybeTuple);
337 if (!Tuple || Tuple->isDistinct())
338 return MaybeTuple;
339
340 // Look through the DITypeRefArray, upgrading each DITypeRef.
341 SmallVector<Metadata *, 32> Ops;
342 Ops.reserve(Tuple->getNumOperands());
343 for (Metadata *MD : Tuple->operands())
344 Ops.push_back(upgradeTypeRef(MD));
345
346 return MDTuple::get(Context, Ops);
347}
348
349namespace {
350
351class PlaceholderQueue {
352 // Placeholders would thrash around when moved, so store in a std::deque
353 // instead of some sort of vector.
354 std::deque<DistinctMDOperandPlaceholder> PHs;
355
356public:
Mehdi Amini27379892017-01-20 10:18:32 +0000357 ~PlaceholderQueue() {
358 assert(empty() && "PlaceholderQueue hasn't been flushed before being destroyed");
359 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000360 bool empty() { return PHs.empty(); }
Mehdi Aminief27db82016-12-12 19:34:26 +0000361 DistinctMDOperandPlaceholder &getPlaceholderOp(unsigned ID);
362 void flush(BitcodeReaderMetadataList &MetadataList);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000363
364 /// Return the list of temporaries nodes in the queue, these need to be
365 /// loaded before we can flush the queue.
366 void getTemporaries(BitcodeReaderMetadataList &MetadataList,
367 DenseSet<unsigned> &Temporaries) {
368 for (auto &PH : PHs) {
369 auto ID = PH.getID();
370 auto *MD = MetadataList.lookup(ID);
371 if (!MD) {
372 Temporaries.insert(ID);
373 continue;
374 }
375 auto *N = dyn_cast_or_null<MDNode>(MD);
376 if (N && N->isTemporary())
377 Temporaries.insert(ID);
378 }
379 }
Mehdi Aminief27db82016-12-12 19:34:26 +0000380};
381
382} // end anonymous namespace
383
384DistinctMDOperandPlaceholder &PlaceholderQueue::getPlaceholderOp(unsigned ID) {
385 PHs.emplace_back(ID);
386 return PHs.back();
387}
388
389void PlaceholderQueue::flush(BitcodeReaderMetadataList &MetadataList) {
390 while (!PHs.empty()) {
Mehdi Amini4f90ee02016-12-25 03:55:53 +0000391 auto *MD = MetadataList.lookup(PHs.front().getID());
392 assert(MD && "Flushing placeholder on unassigned MD");
Mehdi Amini5ae61702016-12-23 02:20:09 +0000393#ifndef NDEBUG
Mehdi Amini4f90ee02016-12-25 03:55:53 +0000394 if (auto *MDN = dyn_cast<MDNode>(MD))
Mehdi Amini5ae61702016-12-23 02:20:09 +0000395 assert(MDN->isResolved() &&
396 "Flushing Placeholder while cycles aren't resolved");
Mehdi Amini5ae61702016-12-23 02:20:09 +0000397#endif
398 PHs.front().replaceUseWith(MD);
Mehdi Aminief27db82016-12-12 19:34:26 +0000399 PHs.pop_front();
400 }
401}
402
403} // anonynous namespace
404
Florian Hahnffc498d2017-06-14 13:14:38 +0000405static Error error(const Twine &Message) {
406 return make_error<StringError>(
407 Message, make_error_code(BitcodeError::CorruptedBitcode));
408}
409
Mehdi Aminief27db82016-12-12 19:34:26 +0000410class MetadataLoader::MetadataLoaderImpl {
411 BitcodeReaderMetadataList MetadataList;
412 BitcodeReaderValueList &ValueList;
413 BitstreamCursor &Stream;
414 LLVMContext &Context;
415 Module &TheModule;
416 std::function<Type *(unsigned)> getTypeByID;
417
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000418 /// Cursor associated with the lazy-loading of Metadata. This is the easy way
419 /// to keep around the right "context" (Abbrev list) to be able to jump in
420 /// the middle of the metadata block and load any record.
421 BitstreamCursor IndexCursor;
422
423 /// Index that keeps track of MDString values.
424 std::vector<StringRef> MDStringRef;
425
426 /// On-demand loading of a single MDString. Requires the index above to be
427 /// populated.
428 MDString *lazyLoadOneMDString(unsigned Idx);
429
430 /// Index that keeps track of where to find a metadata record in the stream.
431 std::vector<uint64_t> GlobalMetadataBitPosIndex;
432
433 /// Populate the index above to enable lazily loading of metadata, and load
434 /// the named metadata as well as the transitively referenced global
435 /// Metadata.
Mehdi Amini42ef1992017-01-07 18:31:38 +0000436 Expected<bool> lazyLoadModuleMetadataBlock();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000437
438 /// On-demand loading of a single metadata. Requires the index above to be
439 /// populated.
440 void lazyLoadOneMetadata(unsigned Idx, PlaceholderQueue &Placeholders);
441
Mehdi Amini9f926f72016-12-23 03:59:18 +0000442 // Keep mapping of seens pair of old-style CU <-> SP, and update pointers to
443 // point from SP to CU after a block is completly parsed.
444 std::vector<std::pair<DICompileUnit *, Metadata *>> CUSubprograms;
445
Mehdi Aminief27db82016-12-12 19:34:26 +0000446 /// Functions that need to be matched with subprograms when upgrading old
447 /// metadata.
448 SmallDenseMap<Function *, DISubprogram *, 16> FunctionsWithSPs;
449
450 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
451 DenseMap<unsigned, unsigned> MDKindMap;
452
Mehdi Amini86623052016-12-16 19:16:29 +0000453 bool StripTBAA = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000454 bool HasSeenOldLoopTags = false;
Adrian Prantle37d3142017-02-07 17:35:41 +0000455 bool NeedUpgradeToDIGlobalVariableExpression = false;
Adrian Prantl6825fb62017-04-18 01:21:53 +0000456 bool NeedDeclareExpressionUpgrade = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000457
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000458 /// True if metadata is being parsed for a module being ThinLTO imported.
459 bool IsImporting = false;
460
Mehdi Amini9f926f72016-12-23 03:59:18 +0000461 Error parseOneMetadata(SmallVectorImpl<uint64_t> &Record, unsigned Code,
462 PlaceholderQueue &Placeholders, StringRef Blob,
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000463 unsigned &NextMetadataNo);
Mehdi Aminief27db82016-12-12 19:34:26 +0000464 Error parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob,
Benjamin Kramer061f4a52017-01-13 14:39:03 +0000465 function_ref<void(StringRef)> CallBack);
Mehdi Aminief27db82016-12-12 19:34:26 +0000466 Error parseGlobalObjectAttachment(GlobalObject &GO,
467 ArrayRef<uint64_t> Record);
468 Error parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record);
469
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000470 void resolveForwardRefsAndPlaceholders(PlaceholderQueue &Placeholders);
471
472 /// Upgrade old-style CU <-> SP pointers to point from SP to CU.
473 void upgradeCUSubprograms() {
474 for (auto CU_SP : CUSubprograms)
475 if (auto *SPs = dyn_cast_or_null<MDTuple>(CU_SP.second))
476 for (auto &Op : SPs->operands())
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000477 if (auto *SP = dyn_cast_or_null<DISubprogram>(Op))
478 SP->replaceUnit(CU_SP.first);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000479 CUSubprograms.clear();
480 }
481
Adrian Prantle37d3142017-02-07 17:35:41 +0000482 /// Upgrade old-style bare DIGlobalVariables to DIGlobalVariableExpressions.
483 void upgradeCUVariables() {
484 if (!NeedUpgradeToDIGlobalVariableExpression)
485 return;
486
487 // Upgrade list of variables attached to the CUs.
488 if (NamedMDNode *CUNodes = TheModule.getNamedMetadata("llvm.dbg.cu"))
489 for (unsigned I = 0, E = CUNodes->getNumOperands(); I != E; ++I) {
490 auto *CU = cast<DICompileUnit>(CUNodes->getOperand(I));
491 if (auto *GVs = dyn_cast_or_null<MDTuple>(CU->getRawGlobalVariables()))
492 for (unsigned I = 0; I < GVs->getNumOperands(); I++)
493 if (auto *GV =
494 dyn_cast_or_null<DIGlobalVariable>(GVs->getOperand(I))) {
Adrian Prantl05782212017-08-30 18:06:51 +0000495 auto *DGVE = DIGlobalVariableExpression::getDistinct(
496 Context, GV, DIExpression::get(Context, {}));
Adrian Prantle37d3142017-02-07 17:35:41 +0000497 GVs->replaceOperandWith(I, DGVE);
498 }
499 }
500
501 // Upgrade variables attached to globals.
502 for (auto &GV : TheModule.globals()) {
Davide Italiano56a08b42017-05-16 18:41:46 +0000503 SmallVector<MDNode *, 1> MDs;
Adrian Prantle37d3142017-02-07 17:35:41 +0000504 GV.getMetadata(LLVMContext::MD_dbg, MDs);
505 GV.eraseMetadata(LLVMContext::MD_dbg);
506 for (auto *MD : MDs)
507 if (auto *DGV = dyn_cast_or_null<DIGlobalVariable>(MD)) {
Adrian Prantl05782212017-08-30 18:06:51 +0000508 auto *DGVE = DIGlobalVariableExpression::getDistinct(
509 Context, DGV, DIExpression::get(Context, {}));
Adrian Prantle37d3142017-02-07 17:35:41 +0000510 GV.addMetadata(LLVMContext::MD_dbg, *DGVE);
511 } else
512 GV.addMetadata(LLVMContext::MD_dbg, *MD);
513 }
514 }
515
Adrian Prantl6825fb62017-04-18 01:21:53 +0000516 /// Remove a leading DW_OP_deref from DIExpressions in a dbg.declare that
517 /// describes a function argument.
518 void upgradeDeclareExpressions(Function &F) {
519 if (!NeedDeclareExpressionUpgrade)
520 return;
521
522 for (auto &BB : F)
523 for (auto &I : BB)
524 if (auto *DDI = dyn_cast<DbgDeclareInst>(&I))
525 if (auto *DIExpr = DDI->getExpression())
526 if (DIExpr->startsWithDeref() &&
527 dyn_cast_or_null<Argument>(DDI->getAddress())) {
528 SmallVector<uint64_t, 8> Ops;
529 Ops.append(std::next(DIExpr->elements_begin()),
530 DIExpr->elements_end());
531 auto *E = DIExpression::get(Context, Ops);
532 DDI->setOperand(2, MetadataAsValue::get(Context, E));
533 }
534 }
535
Florian Hahnffc498d2017-06-14 13:14:38 +0000536 /// Upgrade the expression from previous versions.
537 Error upgradeDIExpression(uint64_t FromVersion,
538 MutableArrayRef<uint64_t> &Expr,
539 SmallVectorImpl<uint64_t> &Buffer) {
540 auto N = Expr.size();
541 switch (FromVersion) {
542 default:
543 return error("Invalid record");
544 case 0:
545 if (N >= 3 && Expr[N - 3] == dwarf::DW_OP_bit_piece)
546 Expr[N - 3] = dwarf::DW_OP_LLVM_fragment;
547 LLVM_FALLTHROUGH;
548 case 1:
549 // Move DW_OP_deref to the end.
550 if (N && Expr[0] == dwarf::DW_OP_deref) {
551 auto End = Expr.end();
552 if (Expr.size() >= 3 &&
553 *std::prev(End, 3) == dwarf::DW_OP_LLVM_fragment)
554 End = std::prev(End, 3);
555 std::move(std::next(Expr.begin()), End, Expr.begin());
556 *std::prev(End) = dwarf::DW_OP_deref;
557 }
558 NeedDeclareExpressionUpgrade = true;
559 LLVM_FALLTHROUGH;
560 case 2: {
561 // Change DW_OP_plus to DW_OP_plus_uconst.
562 // Change DW_OP_minus to DW_OP_uconst, DW_OP_minus
563 auto SubExpr = ArrayRef<uint64_t>(Expr);
564 while (!SubExpr.empty()) {
565 // Skip past other operators with their operands
566 // for this version of the IR, obtained from
567 // from historic DIExpression::ExprOperand::getSize().
568 size_t HistoricSize;
569 switch (SubExpr.front()) {
570 default:
571 HistoricSize = 1;
572 break;
573 case dwarf::DW_OP_constu:
574 case dwarf::DW_OP_minus:
575 case dwarf::DW_OP_plus:
576 HistoricSize = 2;
577 break;
578 case dwarf::DW_OP_LLVM_fragment:
579 HistoricSize = 3;
580 break;
581 }
582
583 // If the expression is malformed, make sure we don't
584 // copy more elements than we should.
585 HistoricSize = std::min(SubExpr.size(), HistoricSize);
586 ArrayRef<uint64_t> Args = SubExpr.slice(1, HistoricSize-1);
587
588 switch (SubExpr.front()) {
589 case dwarf::DW_OP_plus:
590 Buffer.push_back(dwarf::DW_OP_plus_uconst);
591 Buffer.append(Args.begin(), Args.end());
592 break;
593 case dwarf::DW_OP_minus:
594 Buffer.push_back(dwarf::DW_OP_constu);
595 Buffer.append(Args.begin(), Args.end());
596 Buffer.push_back(dwarf::DW_OP_minus);
597 break;
598 default:
599 Buffer.push_back(*SubExpr.begin());
600 Buffer.append(Args.begin(), Args.end());
601 break;
602 }
603
604 // Continue with remaining elements.
605 SubExpr = SubExpr.slice(HistoricSize);
606 }
607 Expr = MutableArrayRef<uint64_t>(Buffer);
608 LLVM_FALLTHROUGH;
609 }
610 case 3:
611 // Up-to-date!
612 break;
613 }
614
615 return Error::success();
616 }
617
Adrian Prantle37d3142017-02-07 17:35:41 +0000618 void upgradeDebugInfo() {
619 upgradeCUSubprograms();
620 upgradeCUVariables();
621 }
622
Mehdi Aminief27db82016-12-12 19:34:26 +0000623public:
624 MetadataLoaderImpl(BitstreamCursor &Stream, Module &TheModule,
625 BitcodeReaderValueList &ValueList,
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000626 std::function<Type *(unsigned)> getTypeByID,
627 bool IsImporting)
Mehdi Aminief27db82016-12-12 19:34:26 +0000628 : MetadataList(TheModule.getContext()), ValueList(ValueList),
629 Stream(Stream), Context(TheModule.getContext()), TheModule(TheModule),
Benjamin Kramer061f4a52017-01-13 14:39:03 +0000630 getTypeByID(std::move(getTypeByID)), IsImporting(IsImporting) {}
Mehdi Aminief27db82016-12-12 19:34:26 +0000631
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000632 Error parseMetadata(bool ModuleLevel);
Mehdi Aminief27db82016-12-12 19:34:26 +0000633
634 bool hasFwdRefs() const { return MetadataList.hasFwdRefs(); }
Mehdi Amini3bb4d012017-01-20 20:29:16 +0000635
636 Metadata *getMetadataFwdRefOrLoad(unsigned ID) {
637 if (ID < MDStringRef.size())
638 return lazyLoadOneMDString(ID);
639 if (auto *MD = MetadataList.lookup(ID))
640 return MD;
641 // If lazy-loading is enabled, we try recursively to load the operand
642 // instead of creating a temporary.
643 if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
644 PlaceholderQueue Placeholders;
645 lazyLoadOneMetadata(ID, Placeholders);
646 resolveForwardRefsAndPlaceholders(Placeholders);
647 return MetadataList.lookup(ID);
648 }
649 return MetadataList.getMetadataFwdRef(ID);
Mehdi Aminief27db82016-12-12 19:34:26 +0000650 }
651
Mehdi Aminief27db82016-12-12 19:34:26 +0000652 DISubprogram *lookupSubprogramForFunction(Function *F) {
653 return FunctionsWithSPs.lookup(F);
654 }
655
656 bool hasSeenOldLoopTags() { return HasSeenOldLoopTags; }
657
658 Error parseMetadataAttachment(
659 Function &F, const SmallVectorImpl<Instruction *> &InstructionList);
660
661 Error parseMetadataKinds();
662
Mehdi Amini86623052016-12-16 19:16:29 +0000663 void setStripTBAA(bool Value) { StripTBAA = Value; }
664 bool isStrippingTBAA() { return StripTBAA; }
665
Mehdi Aminief27db82016-12-12 19:34:26 +0000666 unsigned size() const { return MetadataList.size(); }
667 void shrinkTo(unsigned N) { MetadataList.shrinkTo(N); }
Adrian Prantl6825fb62017-04-18 01:21:53 +0000668 void upgradeDebugIntrinsics(Function &F) { upgradeDeclareExpressions(F); }
Mehdi Aminief27db82016-12-12 19:34:26 +0000669};
670
Mehdi Amini42ef1992017-01-07 18:31:38 +0000671Expected<bool>
672MetadataLoader::MetadataLoaderImpl::lazyLoadModuleMetadataBlock() {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000673 IndexCursor = Stream;
674 SmallVector<uint64_t, 64> Record;
675 // Get the abbrevs, and preload record positions to make them lazy-loadable.
676 while (true) {
677 BitstreamEntry Entry = IndexCursor.advanceSkippingSubblocks(
678 BitstreamCursor::AF_DontPopBlockAtEnd);
679 switch (Entry.Kind) {
680 case BitstreamEntry::SubBlock: // Handled for us already.
681 case BitstreamEntry::Error:
682 return error("Malformed block");
683 case BitstreamEntry::EndBlock: {
684 return true;
685 }
686 case BitstreamEntry::Record: {
687 // The interesting case.
688 ++NumMDRecordLoaded;
689 uint64_t CurrentPos = IndexCursor.GetCurrentBitNo();
690 auto Code = IndexCursor.skipRecord(Entry.ID);
691 switch (Code) {
692 case bitc::METADATA_STRINGS: {
693 // Rewind and parse the strings.
694 IndexCursor.JumpToBit(CurrentPos);
695 StringRef Blob;
696 Record.clear();
697 IndexCursor.readRecord(Entry.ID, Record, &Blob);
698 unsigned NumStrings = Record[0];
699 MDStringRef.reserve(NumStrings);
700 auto IndexNextMDString = [&](StringRef Str) {
701 MDStringRef.push_back(Str);
702 };
703 if (auto Err = parseMetadataStrings(Record, Blob, IndexNextMDString))
704 return std::move(Err);
705 break;
706 }
707 case bitc::METADATA_INDEX_OFFSET: {
708 // This is the offset to the index, when we see this we skip all the
709 // records and load only an index to these.
710 IndexCursor.JumpToBit(CurrentPos);
711 Record.clear();
712 IndexCursor.readRecord(Entry.ID, Record);
713 if (Record.size() != 2)
714 return error("Invalid record");
715 auto Offset = Record[0] + (Record[1] << 32);
716 auto BeginPos = IndexCursor.GetCurrentBitNo();
717 IndexCursor.JumpToBit(BeginPos + Offset);
718 Entry = IndexCursor.advanceSkippingSubblocks(
719 BitstreamCursor::AF_DontPopBlockAtEnd);
720 assert(Entry.Kind == BitstreamEntry::Record &&
721 "Corrupted bitcode: Expected `Record` when trying to find the "
722 "Metadata index");
723 Record.clear();
724 auto Code = IndexCursor.readRecord(Entry.ID, Record);
725 (void)Code;
726 assert(Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "
727 "`METADATA_INDEX` when trying "
728 "to find the Metadata index");
729
730 // Delta unpack
731 auto CurrentValue = BeginPos;
732 GlobalMetadataBitPosIndex.reserve(Record.size());
733 for (auto &Elt : Record) {
734 CurrentValue += Elt;
735 GlobalMetadataBitPosIndex.push_back(CurrentValue);
736 }
737 break;
738 }
739 case bitc::METADATA_INDEX:
740 // We don't expect to get there, the Index is loaded when we encounter
741 // the offset.
742 return error("Corrupted Metadata block");
743 case bitc::METADATA_NAME: {
744 // Named metadata need to be materialized now and aren't deferred.
745 IndexCursor.JumpToBit(CurrentPos);
746 Record.clear();
747 unsigned Code = IndexCursor.readRecord(Entry.ID, Record);
748 assert(Code == bitc::METADATA_NAME);
749
750 // Read name of the named metadata.
751 SmallString<8> Name(Record.begin(), Record.end());
752 Code = IndexCursor.ReadCode();
753
754 // Named Metadata comes in two parts, we expect the name to be followed
755 // by the node
756 Record.clear();
757 unsigned NextBitCode = IndexCursor.readRecord(Code, Record);
758 assert(NextBitCode == bitc::METADATA_NAMED_NODE);
759 (void)NextBitCode;
760
761 // Read named metadata elements.
762 unsigned Size = Record.size();
763 NamedMDNode *NMD = TheModule.getOrInsertNamedMetadata(Name);
764 for (unsigned i = 0; i != Size; ++i) {
765 // FIXME: We could use a placeholder here, however NamedMDNode are
766 // taking MDNode as operand and not using the Metadata infrastructure.
767 // It is acknowledged by 'TODO: Inherit from Metadata' in the
768 // NamedMDNode class definition.
769 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[i]);
Teresa Johnsonf3d2453d2018-11-14 21:57:51 +0000770 assert(MD && "Invalid metadata: expect fwd ref to MDNode");
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000771 NMD->addOperand(MD);
772 }
773 break;
774 }
775 case bitc::METADATA_GLOBAL_DECL_ATTACHMENT: {
776 // FIXME: we need to do this early because we don't materialize global
777 // value explicitly.
778 IndexCursor.JumpToBit(CurrentPos);
779 Record.clear();
780 IndexCursor.readRecord(Entry.ID, Record);
781 if (Record.size() % 2 == 0)
782 return error("Invalid record");
783 unsigned ValueID = Record[0];
784 if (ValueID >= ValueList.size())
785 return error("Invalid record");
786 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID]))
787 if (Error Err = parseGlobalObjectAttachment(
788 *GO, ArrayRef<uint64_t>(Record).slice(1)))
789 return std::move(Err);
790 break;
791 }
792 case bitc::METADATA_KIND:
793 case bitc::METADATA_STRING_OLD:
794 case bitc::METADATA_OLD_FN_NODE:
795 case bitc::METADATA_OLD_NODE:
796 case bitc::METADATA_VALUE:
797 case bitc::METADATA_DISTINCT_NODE:
798 case bitc::METADATA_NODE:
799 case bitc::METADATA_LOCATION:
800 case bitc::METADATA_GENERIC_DEBUG:
801 case bitc::METADATA_SUBRANGE:
802 case bitc::METADATA_ENUMERATOR:
803 case bitc::METADATA_BASIC_TYPE:
804 case bitc::METADATA_DERIVED_TYPE:
805 case bitc::METADATA_COMPOSITE_TYPE:
806 case bitc::METADATA_SUBROUTINE_TYPE:
807 case bitc::METADATA_MODULE:
808 case bitc::METADATA_FILE:
809 case bitc::METADATA_COMPILE_UNIT:
810 case bitc::METADATA_SUBPROGRAM:
811 case bitc::METADATA_LEXICAL_BLOCK:
812 case bitc::METADATA_LEXICAL_BLOCK_FILE:
813 case bitc::METADATA_NAMESPACE:
814 case bitc::METADATA_MACRO:
815 case bitc::METADATA_MACRO_FILE:
816 case bitc::METADATA_TEMPLATE_TYPE:
817 case bitc::METADATA_TEMPLATE_VALUE:
818 case bitc::METADATA_GLOBAL_VAR:
819 case bitc::METADATA_LOCAL_VAR:
Shiva Chen2c864552018-05-09 02:40:45 +0000820 case bitc::METADATA_LABEL:
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000821 case bitc::METADATA_EXPRESSION:
822 case bitc::METADATA_OBJC_PROPERTY:
823 case bitc::METADATA_IMPORTED_ENTITY:
824 case bitc::METADATA_GLOBAL_VAR_EXPR:
825 // We don't expect to see any of these, if we see one, give up on
826 // lazy-loading and fallback.
827 MDStringRef.clear();
828 GlobalMetadataBitPosIndex.clear();
829 return false;
830 }
831 break;
832 }
833 }
834 }
835}
836
Mehdi Aminief27db82016-12-12 19:34:26 +0000837/// Parse a METADATA_BLOCK. If ModuleLevel is true then we are parsing
838/// module level metadata.
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000839Error MetadataLoader::MetadataLoaderImpl::parseMetadata(bool ModuleLevel) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000840 if (!ModuleLevel && MetadataList.hasFwdRefs())
841 return error("Invalid metadata: fwd refs into function blocks");
842
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000843 // Record the entry position so that we can jump back here and efficiently
844 // skip the whole block in case we lazy-load.
845 auto EntryPos = Stream.GetCurrentBitNo();
846
Mehdi Aminief27db82016-12-12 19:34:26 +0000847 if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
848 return error("Invalid record");
849
Mehdi Aminief27db82016-12-12 19:34:26 +0000850 SmallVector<uint64_t, 64> Record;
Mehdi Aminief27db82016-12-12 19:34:26 +0000851 PlaceholderQueue Placeholders;
Mehdi Amini9f926f72016-12-23 03:59:18 +0000852
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000853 // We lazy-load module-level metadata: we build an index for each record, and
854 // then load individual record as needed, starting with the named metadata.
855 if (ModuleLevel && IsImporting && MetadataList.empty() &&
856 !DisableLazyLoading) {
Mehdi Amini42ef1992017-01-07 18:31:38 +0000857 auto SuccessOrErr = lazyLoadModuleMetadataBlock();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000858 if (!SuccessOrErr)
859 return SuccessOrErr.takeError();
860 if (SuccessOrErr.get()) {
861 // An index was successfully created and we will be able to load metadata
862 // on-demand.
863 MetadataList.resize(MDStringRef.size() +
864 GlobalMetadataBitPosIndex.size());
865
866 // Reading the named metadata created forward references and/or
867 // placeholders, that we flush here.
868 resolveForwardRefsAndPlaceholders(Placeholders);
Adrian Prantle37d3142017-02-07 17:35:41 +0000869 upgradeDebugInfo();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000870 // Return at the beginning of the block, since it is easy to skip it
871 // entirely from there.
872 Stream.ReadBlockEnd(); // Pop the abbrev block context.
873 Stream.JumpToBit(EntryPos);
874 if (Stream.SkipBlock())
875 return error("Invalid record");
876 return Error::success();
877 }
878 // Couldn't load an index, fallback to loading all the block "old-style".
879 }
880
881 unsigned NextMetadataNo = MetadataList.size();
882
Mehdi Amini9f926f72016-12-23 03:59:18 +0000883 // Read all the records.
884 while (true) {
885 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
886
887 switch (Entry.Kind) {
888 case BitstreamEntry::SubBlock: // Handled for us already.
889 case BitstreamEntry::Error:
890 return error("Malformed block");
891 case BitstreamEntry::EndBlock:
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000892 resolveForwardRefsAndPlaceholders(Placeholders);
Adrian Prantle37d3142017-02-07 17:35:41 +0000893 upgradeDebugInfo();
Mehdi Amini9f926f72016-12-23 03:59:18 +0000894 return Error::success();
895 case BitstreamEntry::Record:
896 // The interesting case.
897 break;
898 }
899
900 // Read a record.
901 Record.clear();
902 StringRef Blob;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000903 ++NumMDRecordLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +0000904 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000905 if (Error Err =
906 parseOneMetadata(Record, Code, Placeholders, Blob, NextMetadataNo))
Mehdi Amini9f926f72016-12-23 03:59:18 +0000907 return Err;
908 }
909}
910
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000911MDString *MetadataLoader::MetadataLoaderImpl::lazyLoadOneMDString(unsigned ID) {
912 ++NumMDStringLoaded;
913 if (Metadata *MD = MetadataList.lookup(ID))
914 return cast<MDString>(MD);
915 auto MDS = MDString::get(Context, MDStringRef[ID]);
916 MetadataList.assignValue(MDS, ID);
917 return MDS;
918}
919
920void MetadataLoader::MetadataLoaderImpl::lazyLoadOneMetadata(
921 unsigned ID, PlaceholderQueue &Placeholders) {
922 assert(ID < (MDStringRef.size()) + GlobalMetadataBitPosIndex.size());
923 assert(ID >= MDStringRef.size() && "Unexpected lazy-loading of MDString");
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000924 // Lookup first if the metadata hasn't already been loaded.
925 if (auto *MD = MetadataList.lookup(ID)) {
926 auto *N = dyn_cast_or_null<MDNode>(MD);
Mehdi Amini67d2cc12017-01-18 18:36:21 +0000927 if (!N->isTemporary())
928 return;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000929 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000930 SmallVector<uint64_t, 64> Record;
931 StringRef Blob;
932 IndexCursor.JumpToBit(GlobalMetadataBitPosIndex[ID - MDStringRef.size()]);
933 auto Entry = IndexCursor.advanceSkippingSubblocks();
934 ++NumMDRecordLoaded;
935 unsigned Code = IndexCursor.readRecord(Entry.ID, Record, &Blob);
936 if (Error Err = parseOneMetadata(Record, Code, Placeholders, Blob, ID))
937 report_fatal_error("Can't lazyload MD");
938}
939
940/// Ensure that all forward-references and placeholders are resolved.
941/// Iteratively lazy-loading metadata on-demand if needed.
942void MetadataLoader::MetadataLoaderImpl::resolveForwardRefsAndPlaceholders(
943 PlaceholderQueue &Placeholders) {
944 DenseSet<unsigned> Temporaries;
945 while (1) {
946 // Populate Temporaries with the placeholders that haven't been loaded yet.
947 Placeholders.getTemporaries(MetadataList, Temporaries);
948
949 // If we don't have any temporary, or FwdReference, we're done!
950 if (Temporaries.empty() && !MetadataList.hasFwdRefs())
951 break;
952
953 // First, load all the temporaries. This can add new placeholders or
954 // forward references.
955 for (auto ID : Temporaries)
956 lazyLoadOneMetadata(ID, Placeholders);
957 Temporaries.clear();
958
959 // Second, load the forward-references. This can also add new placeholders
960 // or forward references.
961 while (MetadataList.hasFwdRefs())
962 lazyLoadOneMetadata(MetadataList.getNextFwdRef(), Placeholders);
963 }
964 // At this point we don't have any forward reference remaining, or temporary
965 // that haven't been loaded. We can safely drop RAUW support and mark cycles
966 // as resolved.
967 MetadataList.tryToResolveCycles();
968
969 // Finally, everything is in place, we can replace the placeholders operands
970 // with the final node they refer to.
971 Placeholders.flush(MetadataList);
972}
973
Mehdi Amini9f926f72016-12-23 03:59:18 +0000974Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
975 SmallVectorImpl<uint64_t> &Record, unsigned Code,
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000976 PlaceholderQueue &Placeholders, StringRef Blob, unsigned &NextMetadataNo) {
Mehdi Amini9f926f72016-12-23 03:59:18 +0000977
978 bool IsDistinct = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000979 auto getMD = [&](unsigned ID) -> Metadata * {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000980 if (ID < MDStringRef.size())
981 return lazyLoadOneMDString(ID);
Mehdi Amini67d2cc12017-01-18 18:36:21 +0000982 if (!IsDistinct) {
983 if (auto *MD = MetadataList.lookup(ID))
984 return MD;
985 // If lazy-loading is enabled, we try recursively to load the operand
986 // instead of creating a temporary.
987 if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
988 // Create a temporary for the node that is referencing the operand we
989 // will lazy-load. It is needed before recursing in case there are
990 // uniquing cycles.
991 MetadataList.getMetadataFwdRef(NextMetadataNo);
992 lazyLoadOneMetadata(ID, Placeholders);
993 return MetadataList.lookup(ID);
994 }
995 // Return a temporary.
Mehdi Aminief27db82016-12-12 19:34:26 +0000996 return MetadataList.getMetadataFwdRef(ID);
Mehdi Amini67d2cc12017-01-18 18:36:21 +0000997 }
Mehdi Aminief27db82016-12-12 19:34:26 +0000998 if (auto *MD = MetadataList.getMetadataIfResolved(ID))
999 return MD;
1000 return &Placeholders.getPlaceholderOp(ID);
1001 };
1002 auto getMDOrNull = [&](unsigned ID) -> Metadata * {
1003 if (ID)
1004 return getMD(ID - 1);
1005 return nullptr;
1006 };
1007 auto getMDOrNullWithoutPlaceholders = [&](unsigned ID) -> Metadata * {
1008 if (ID)
1009 return MetadataList.getMetadataFwdRef(ID - 1);
1010 return nullptr;
1011 };
1012 auto getMDString = [&](unsigned ID) -> MDString * {
1013 // This requires that the ID is not really a forward reference. In
1014 // particular, the MDString must already have been resolved.
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001015 auto MDS = getMDOrNull(ID);
1016 return cast_or_null<MDString>(MDS);
Mehdi Aminief27db82016-12-12 19:34:26 +00001017 };
1018
1019 // Support for old type refs.
1020 auto getDITypeRefOrNull = [&](unsigned ID) {
1021 return MetadataList.upgradeTypeRef(getMDOrNull(ID));
1022 };
1023
1024#define GET_OR_DISTINCT(CLASS, ARGS) \
1025 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
1026
Mehdi Amini9f926f72016-12-23 03:59:18 +00001027 switch (Code) {
1028 default: // Default behavior: ignore.
1029 break;
1030 case bitc::METADATA_NAME: {
1031 // Read name of the named metadata.
1032 SmallString<8> Name(Record.begin(), Record.end());
Mehdi Aminief27db82016-12-12 19:34:26 +00001033 Record.clear();
Mehdi Amini9f926f72016-12-23 03:59:18 +00001034 Code = Stream.ReadCode();
Mehdi Aminief27db82016-12-12 19:34:26 +00001035
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001036 ++NumMDRecordLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001037 unsigned NextBitCode = Stream.readRecord(Code, Record);
1038 if (NextBitCode != bitc::METADATA_NAMED_NODE)
1039 return error("METADATA_NAME not followed by METADATA_NAMED_NODE");
Mehdi Aminief27db82016-12-12 19:34:26 +00001040
Mehdi Amini9f926f72016-12-23 03:59:18 +00001041 // Read named metadata elements.
1042 unsigned Size = Record.size();
1043 NamedMDNode *NMD = TheModule.getOrInsertNamedMetadata(Name);
1044 for (unsigned i = 0; i != Size; ++i) {
1045 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[i]);
1046 if (!MD)
Teresa Johnsonf3d2453d2018-11-14 21:57:51 +00001047 return error("Invalid named metadata: expect fwd ref to MDNode");
Mehdi Amini9f926f72016-12-23 03:59:18 +00001048 NMD->addOperand(MD);
1049 }
1050 break;
1051 }
1052 case bitc::METADATA_OLD_FN_NODE: {
1053 // FIXME: Remove in 4.0.
1054 // This is a LocalAsMetadata record, the only type of function-local
1055 // metadata.
1056 if (Record.size() % 2 == 1)
1057 return error("Invalid record");
1058
1059 // If this isn't a LocalAsMetadata record, we're dropping it. This used
1060 // to be legal, but there's no upgrade path.
1061 auto dropRecord = [&] {
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001062 MetadataList.assignValue(MDNode::get(Context, None), NextMetadataNo);
1063 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001064 };
1065 if (Record.size() != 2) {
1066 dropRecord();
Mehdi Aminief27db82016-12-12 19:34:26 +00001067 break;
1068 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001069
1070 Type *Ty = getTypeByID(Record[0]);
1071 if (Ty->isMetadataTy() || Ty->isVoidTy()) {
1072 dropRecord();
1073 break;
1074 }
1075
1076 MetadataList.assignValue(
1077 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001078 NextMetadataNo);
1079 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001080 break;
1081 }
1082 case bitc::METADATA_OLD_NODE: {
1083 // FIXME: Remove in 4.0.
1084 if (Record.size() % 2 == 1)
1085 return error("Invalid record");
1086
1087 unsigned Size = Record.size();
1088 SmallVector<Metadata *, 8> Elts;
1089 for (unsigned i = 0; i != Size; i += 2) {
1090 Type *Ty = getTypeByID(Record[i]);
1091 if (!Ty)
Mehdi Aminief27db82016-12-12 19:34:26 +00001092 return error("Invalid record");
Mehdi Amini9f926f72016-12-23 03:59:18 +00001093 if (Ty->isMetadataTy())
1094 Elts.push_back(getMD(Record[i + 1]));
1095 else if (!Ty->isVoidTy()) {
1096 auto *MD =
1097 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty));
1098 assert(isa<ConstantAsMetadata>(MD) &&
1099 "Expected non-function-local metadata");
1100 Elts.push_back(MD);
1101 } else
1102 Elts.push_back(nullptr);
1103 }
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001104 MetadataList.assignValue(MDNode::get(Context, Elts), NextMetadataNo);
1105 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001106 break;
1107 }
1108 case bitc::METADATA_VALUE: {
1109 if (Record.size() != 2)
1110 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001111
Mehdi Amini9f926f72016-12-23 03:59:18 +00001112 Type *Ty = getTypeByID(Record[0]);
1113 if (Ty->isMetadataTy() || Ty->isVoidTy())
1114 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001115
Mehdi Amini9f926f72016-12-23 03:59:18 +00001116 MetadataList.assignValue(
1117 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001118 NextMetadataNo);
1119 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001120 break;
1121 }
1122 case bitc::METADATA_DISTINCT_NODE:
1123 IsDistinct = true;
1124 LLVM_FALLTHROUGH;
1125 case bitc::METADATA_NODE: {
1126 SmallVector<Metadata *, 8> Elts;
1127 Elts.reserve(Record.size());
1128 for (unsigned ID : Record)
1129 Elts.push_back(getMDOrNull(ID));
1130 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts)
1131 : MDNode::get(Context, Elts),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001132 NextMetadataNo);
1133 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001134 break;
1135 }
1136 case bitc::METADATA_LOCATION: {
Vedant Kumar386ad012018-09-20 18:59:33 +00001137 if (Record.size() != 5 && Record.size() != 6)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001138 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001139
Mehdi Amini9f926f72016-12-23 03:59:18 +00001140 IsDistinct = Record[0];
1141 unsigned Line = Record[1];
1142 unsigned Column = Record[2];
1143 Metadata *Scope = getMD(Record[3]);
1144 Metadata *InlinedAt = getMDOrNull(Record[4]);
Vedant Kumar386ad012018-09-20 18:59:33 +00001145 bool ImplicitCode = Record.size() == 6 && Record[5];
Mehdi Amini9f926f72016-12-23 03:59:18 +00001146 MetadataList.assignValue(
Calixte Denizeteb7f6022018-09-20 08:53:06 +00001147 GET_OR_DISTINCT(DILocation, (Context, Line, Column, Scope, InlinedAt,
1148 ImplicitCode)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001149 NextMetadataNo);
1150 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001151 break;
1152 }
1153 case bitc::METADATA_GENERIC_DEBUG: {
1154 if (Record.size() < 4)
1155 return error("Invalid record");
1156
1157 IsDistinct = Record[0];
1158 unsigned Tag = Record[1];
1159 unsigned Version = Record[2];
1160
1161 if (Tag >= 1u << 16 || Version != 0)
1162 return error("Invalid record");
1163
1164 auto *Header = getMDString(Record[3]);
1165 SmallVector<Metadata *, 8> DwarfOps;
1166 for (unsigned I = 4, E = Record.size(); I != E; ++I)
1167 DwarfOps.push_back(getMDOrNull(Record[I]));
1168 MetadataList.assignValue(
1169 GET_OR_DISTINCT(GenericDINode, (Context, Tag, Header, DwarfOps)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001170 NextMetadataNo);
1171 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001172 break;
1173 }
1174 case bitc::METADATA_SUBRANGE: {
Sander de Smalenfdf40912018-01-24 09:56:07 +00001175 Metadata *Val = nullptr;
1176 // Operand 'count' is interpreted as:
1177 // - Signed integer (version 0)
1178 // - Metadata node (version 1)
1179 switch (Record[0] >> 1) {
1180 case 0:
1181 Val = GET_OR_DISTINCT(DISubrange,
1182 (Context, Record[1], unrotateSign(Record.back())));
1183 break;
1184 case 1:
1185 Val = GET_OR_DISTINCT(DISubrange, (Context, getMDOrNull(Record[1]),
1186 unrotateSign(Record.back())));
1187 break;
1188 default:
1189 return error("Invalid record: Unsupported version of DISubrange");
1190 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001191
Sander de Smalenfdf40912018-01-24 09:56:07 +00001192 MetadataList.assignValue(Val, NextMetadataNo);
1193 IsDistinct = Record[0] & 1;
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001194 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001195 break;
1196 }
1197 case bitc::METADATA_ENUMERATOR: {
1198 if (Record.size() != 3)
1199 return error("Invalid record");
1200
Momchil Velikov08dc66e2018-02-12 16:10:09 +00001201 IsDistinct = Record[0] & 1;
1202 bool IsUnsigned = Record[0] & 2;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001203 MetadataList.assignValue(
1204 GET_OR_DISTINCT(DIEnumerator, (Context, unrotateSign(Record[1]),
Momchil Velikov08dc66e2018-02-12 16:10:09 +00001205 IsUnsigned, getMDString(Record[2]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001206 NextMetadataNo);
1207 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001208 break;
1209 }
1210 case bitc::METADATA_BASIC_TYPE: {
Adrian Prantl55f42622018-08-14 19:35:34 +00001211 if (Record.size() < 6 || Record.size() > 7)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001212 return error("Invalid record");
1213
1214 IsDistinct = Record[0];
Adrian Prantl55f42622018-08-14 19:35:34 +00001215 DINode::DIFlags Flags = (Record.size() > 6) ?
1216 static_cast<DINode::DIFlags>(Record[6]) : DINode::FlagZero;
1217
Mehdi Amini9f926f72016-12-23 03:59:18 +00001218 MetadataList.assignValue(
1219 GET_OR_DISTINCT(DIBasicType,
1220 (Context, Record[1], getMDString(Record[2]), Record[3],
Adrian Prantl55f42622018-08-14 19:35:34 +00001221 Record[4], Record[5], Flags)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001222 NextMetadataNo);
1223 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001224 break;
1225 }
1226 case bitc::METADATA_DERIVED_TYPE: {
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001227 if (Record.size() < 12 || Record.size() > 13)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001228 return error("Invalid record");
1229
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001230 // DWARF address space is encoded as N->getDWARFAddressSpace() + 1. 0 means
1231 // that there is no DWARF address space associated with DIDerivedType.
1232 Optional<unsigned> DWARFAddressSpace;
1233 if (Record.size() > 12 && Record[12])
1234 DWARFAddressSpace = Record[12] - 1;
1235
Mehdi Amini9f926f72016-12-23 03:59:18 +00001236 IsDistinct = Record[0];
1237 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1238 MetadataList.assignValue(
1239 GET_OR_DISTINCT(DIDerivedType,
1240 (Context, Record[1], getMDString(Record[2]),
1241 getMDOrNull(Record[3]), Record[4],
1242 getDITypeRefOrNull(Record[5]),
1243 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001244 Record[9], DWARFAddressSpace, Flags,
1245 getDITypeRefOrNull(Record[11]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001246 NextMetadataNo);
1247 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001248 break;
1249 }
1250 case bitc::METADATA_COMPOSITE_TYPE: {
Adrian Prantl8c599212018-02-06 23:45:59 +00001251 if (Record.size() < 16 || Record.size() > 17)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001252 return error("Invalid record");
1253
1254 // If we have a UUID and this is not a forward declaration, lookup the
1255 // mapping.
1256 IsDistinct = Record[0] & 0x1;
1257 bool IsNotUsedInTypeRef = Record[0] >= 2;
1258 unsigned Tag = Record[1];
1259 MDString *Name = getMDString(Record[2]);
1260 Metadata *File = getMDOrNull(Record[3]);
1261 unsigned Line = Record[4];
1262 Metadata *Scope = getDITypeRefOrNull(Record[5]);
1263 Metadata *BaseType = nullptr;
1264 uint64_t SizeInBits = Record[7];
1265 if (Record[8] > (uint64_t)std::numeric_limits<uint32_t>::max())
1266 return error("Alignment value is too large");
1267 uint32_t AlignInBits = Record[8];
1268 uint64_t OffsetInBits = 0;
1269 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1270 Metadata *Elements = nullptr;
1271 unsigned RuntimeLang = Record[12];
1272 Metadata *VTableHolder = nullptr;
1273 Metadata *TemplateParams = nullptr;
Adrian Prantl8c599212018-02-06 23:45:59 +00001274 Metadata *Discriminator = nullptr;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001275 auto *Identifier = getMDString(Record[15]);
1276 // If this module is being parsed so that it can be ThinLTO imported
1277 // into another module, composite types only need to be imported
1278 // as type declarations (unless full type definitions requested).
1279 // Create type declarations up front to save memory. Also, buildODRType
1280 // handles the case where this is type ODRed with a definition needed
1281 // by the importing module, in which case the existing definition is
1282 // used.
Teresa Johnson5a8dba52017-01-03 23:19:29 +00001283 if (IsImporting && !ImportFullTypeDefinitions && Identifier &&
Mehdi Amini9f926f72016-12-23 03:59:18 +00001284 (Tag == dwarf::DW_TAG_enumeration_type ||
1285 Tag == dwarf::DW_TAG_class_type ||
1286 Tag == dwarf::DW_TAG_structure_type ||
1287 Tag == dwarf::DW_TAG_union_type)) {
1288 Flags = Flags | DINode::FlagFwdDecl;
1289 } else {
1290 BaseType = getDITypeRefOrNull(Record[6]);
1291 OffsetInBits = Record[9];
1292 Elements = getMDOrNull(Record[11]);
1293 VTableHolder = getDITypeRefOrNull(Record[13]);
1294 TemplateParams = getMDOrNull(Record[14]);
Adrian Prantl8c599212018-02-06 23:45:59 +00001295 if (Record.size() > 16)
1296 Discriminator = getMDOrNull(Record[16]);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001297 }
1298 DICompositeType *CT = nullptr;
1299 if (Identifier)
1300 CT = DICompositeType::buildODRType(
1301 Context, *Identifier, Tag, Name, File, Line, Scope, BaseType,
1302 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
Adrian Prantl8c599212018-02-06 23:45:59 +00001303 VTableHolder, TemplateParams, Discriminator);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001304
1305 // Create a node if we didn't get a lazy ODR type.
1306 if (!CT)
1307 CT = GET_OR_DISTINCT(DICompositeType,
1308 (Context, Tag, Name, File, Line, Scope, BaseType,
1309 SizeInBits, AlignInBits, OffsetInBits, Flags,
1310 Elements, RuntimeLang, VTableHolder, TemplateParams,
Jonas Devliegherea0c9cb12018-09-21 12:03:14 +00001311 Identifier, Discriminator));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001312 if (!IsNotUsedInTypeRef && Identifier)
1313 MetadataList.addTypeRef(*Identifier, *cast<DICompositeType>(CT));
1314
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001315 MetadataList.assignValue(CT, NextMetadataNo);
1316 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001317 break;
1318 }
1319 case bitc::METADATA_SUBROUTINE_TYPE: {
1320 if (Record.size() < 3 || Record.size() > 4)
1321 return error("Invalid record");
1322 bool IsOldTypeRefArray = Record[0] < 2;
1323 unsigned CC = (Record.size() > 3) ? Record[3] : 0;
1324
1325 IsDistinct = Record[0] & 0x1;
1326 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[1]);
1327 Metadata *Types = getMDOrNull(Record[2]);
1328 if (LLVM_UNLIKELY(IsOldTypeRefArray))
1329 Types = MetadataList.upgradeTypeRefArray(Types);
1330
1331 MetadataList.assignValue(
1332 GET_OR_DISTINCT(DISubroutineType, (Context, Flags, CC, Types)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001333 NextMetadataNo);
1334 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001335 break;
1336 }
1337
1338 case bitc::METADATA_MODULE: {
1339 if (Record.size() != 6)
1340 return error("Invalid record");
1341
1342 IsDistinct = Record[0];
1343 MetadataList.assignValue(
1344 GET_OR_DISTINCT(DIModule,
1345 (Context, getMDOrNull(Record[1]),
1346 getMDString(Record[2]), getMDString(Record[3]),
1347 getMDString(Record[4]), getMDString(Record[5]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001348 NextMetadataNo);
1349 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001350 break;
1351 }
1352
1353 case bitc::METADATA_FILE: {
Scott Linder16c7bda2018-02-23 23:01:06 +00001354 if (Record.size() != 3 && Record.size() != 5 && Record.size() != 6)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001355 return error("Invalid record");
1356
1357 IsDistinct = Record[0];
Scott Linder71603842018-02-12 19:45:54 +00001358 Optional<DIFile::ChecksumInfo<MDString *>> Checksum;
1359 // The BitcodeWriter writes null bytes into Record[3:4] when the Checksum
1360 // is not present. This matches up with the old internal representation,
1361 // and the old encoding for CSK_None in the ChecksumKind. The new
1362 // representation reserves the value 0 in the ChecksumKind to continue to
1363 // encode None in a backwards-compatible way.
Scott Linder16c7bda2018-02-23 23:01:06 +00001364 if (Record.size() > 4 && Record[3] && Record[4])
Scott Linder71603842018-02-12 19:45:54 +00001365 Checksum.emplace(static_cast<DIFile::ChecksumKind>(Record[3]),
1366 getMDString(Record[4]));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001367 MetadataList.assignValue(
1368 GET_OR_DISTINCT(
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001369 DIFile,
Scott Linder16c7bda2018-02-23 23:01:06 +00001370 (Context, getMDString(Record[1]), getMDString(Record[2]), Checksum,
1371 Record.size() > 5 ? Optional<MDString *>(getMDString(Record[5]))
1372 : None)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001373 NextMetadataNo);
1374 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001375 break;
1376 }
1377 case bitc::METADATA_COMPILE_UNIT: {
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001378 if (Record.size() < 14 || Record.size() > 19)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001379 return error("Invalid record");
1380
1381 // Ignore Record[0], which indicates whether this compile unit is
1382 // distinct. It's always distinct.
1383 IsDistinct = true;
1384 auto *CU = DICompileUnit::getDistinct(
1385 Context, Record[1], getMDOrNull(Record[2]), getMDString(Record[3]),
1386 Record[4], getMDString(Record[5]), Record[6], getMDString(Record[7]),
1387 Record[8], getMDOrNull(Record[9]), getMDOrNull(Record[10]),
1388 getMDOrNull(Record[12]), getMDOrNull(Record[13]),
1389 Record.size() <= 15 ? nullptr : getMDOrNull(Record[15]),
1390 Record.size() <= 14 ? 0 : Record[14],
Dehao Chen0944a8c2017-02-01 22:45:09 +00001391 Record.size() <= 16 ? true : Record[16],
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001392 Record.size() <= 17 ? false : Record[17],
David Blaikiebb279112018-11-13 20:08:10 +00001393 Record.size() <= 18 ? 0 : Record[18],
1394 Record.size() <= 19 ? 0 : Record[19]);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001395
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001396 MetadataList.assignValue(CU, NextMetadataNo);
1397 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001398
1399 // Move the Upgrade the list of subprograms.
1400 if (Metadata *SPs = getMDOrNullWithoutPlaceholders(Record[11]))
1401 CUSubprograms.push_back({CU, SPs});
1402 break;
1403 }
1404 case bitc::METADATA_SUBPROGRAM: {
Adrian Prantl1d12b882017-04-26 22:56:44 +00001405 if (Record.size() < 18 || Record.size() > 21)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001406 return error("Invalid record");
1407
Paul Robinsonadcdc1b2018-11-28 21:14:32 +00001408 bool HasSPFlags = Record[0] & 4;
1409 DISubprogram::DISPFlags SPFlags =
1410 HasSPFlags
1411 ? static_cast<DISubprogram::DISPFlags>(Record[9])
1412 : DISubprogram::toSPFlags(
1413 /*IsLocalToUnit=*/Record[7], /*IsDefinition=*/Record[8],
1414 /*IsOptimized=*/Record[14], /*Virtuality=*/Record[11]);
1415
1416 // All definitions should be distinct.
1417 IsDistinct = (Record[0] & 1) || (SPFlags & DISubprogram::SPFlagDefinition);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001418 // Version 1 has a Function as Record[15].
1419 // Version 2 has removed Record[15].
1420 // Version 3 has the Unit as Record[15].
1421 // Version 4 added thisAdjustment.
Paul Robinsonadcdc1b2018-11-28 21:14:32 +00001422 // Version 5 repacked flags into DISPFlags, changing many element numbers.
1423 bool HasUnit = Record[0] & 2;
1424 if (!HasSPFlags && HasUnit && Record.size() < 19)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001425 return error("Invalid record");
Paul Robinsonadcdc1b2018-11-28 21:14:32 +00001426 if (HasSPFlags && !HasUnit)
1427 return error("Invalid record");
1428 // Accommodate older formats.
1429 bool HasFn = false;
1430 bool HasThisAdj = true;
1431 bool HasThrownTypes = true;
1432 unsigned OffsetA = 0;
1433 unsigned OffsetB = 0;
1434 if (!HasSPFlags) {
1435 OffsetA = 2;
1436 OffsetB = 2;
1437 if (Record.size() >= 19) {
1438 HasFn = !HasUnit;
1439 OffsetB++;
1440 }
1441 HasThisAdj = Record.size() >= 20;
1442 HasThrownTypes = Record.size() >= 21;
1443 }
1444 Metadata *CUorFn = getMDOrNull(Record[12 + OffsetB]);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001445 DISubprogram *SP = GET_OR_DISTINCT(
Adrian Prantl1d12b882017-04-26 22:56:44 +00001446 DISubprogram,
1447 (Context,
1448 getDITypeRefOrNull(Record[1]), // scope
1449 getMDString(Record[2]), // name
1450 getMDString(Record[3]), // linkageName
1451 getMDOrNull(Record[4]), // file
1452 Record[5], // line
1453 getMDOrNull(Record[6]), // type
Paul Robinsonadcdc1b2018-11-28 21:14:32 +00001454 Record[7 + OffsetA], // scopeLine
1455 getDITypeRefOrNull(Record[8 + OffsetA]), // containingType
1456 Record[10 + OffsetA], // virtualIndex
1457 HasThisAdj ? Record[16 + OffsetB] : 0, // thisAdjustment
1458 static_cast<DINode::DIFlags>(Record[11 + OffsetA]),// flags
Paul Robinsoncda54212018-11-19 18:29:28 +00001459 SPFlags, // SPFlags
Adrian Prantl1d12b882017-04-26 22:56:44 +00001460 HasUnit ? CUorFn : nullptr, // unit
Paul Robinsonadcdc1b2018-11-28 21:14:32 +00001461 getMDOrNull(Record[13 + OffsetB]), // templateParams
1462 getMDOrNull(Record[14 + OffsetB]), // declaration
1463 getMDOrNull(Record[15 + OffsetB]), // retainedNodes
1464 HasThrownTypes ? getMDOrNull(Record[17 + OffsetB])
1465 : nullptr // thrownTypes
Adrian Prantl1d12b882017-04-26 22:56:44 +00001466 ));
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001467 MetadataList.assignValue(SP, NextMetadataNo);
1468 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001469
1470 // Upgrade sp->function mapping to function->sp mapping.
1471 if (HasFn) {
1472 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(CUorFn))
1473 if (auto *F = dyn_cast<Function>(CMD->getValue())) {
1474 if (F->isMaterializable())
1475 // Defer until materialized; unmaterialized functions may not have
1476 // metadata.
1477 FunctionsWithSPs[F] = SP;
1478 else if (!F->empty())
1479 F->setSubprogram(SP);
1480 }
1481 }
1482 break;
1483 }
1484 case bitc::METADATA_LEXICAL_BLOCK: {
1485 if (Record.size() != 5)
1486 return error("Invalid record");
1487
1488 IsDistinct = Record[0];
1489 MetadataList.assignValue(
1490 GET_OR_DISTINCT(DILexicalBlock,
1491 (Context, getMDOrNull(Record[1]),
1492 getMDOrNull(Record[2]), Record[3], Record[4])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001493 NextMetadataNo);
1494 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001495 break;
1496 }
1497 case bitc::METADATA_LEXICAL_BLOCK_FILE: {
1498 if (Record.size() != 4)
1499 return error("Invalid record");
1500
1501 IsDistinct = Record[0];
1502 MetadataList.assignValue(
1503 GET_OR_DISTINCT(DILexicalBlockFile,
1504 (Context, getMDOrNull(Record[1]),
1505 getMDOrNull(Record[2]), Record[3])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001506 NextMetadataNo);
1507 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001508 break;
1509 }
1510 case bitc::METADATA_NAMESPACE: {
Adrian Prantlfed4f392017-04-28 22:25:46 +00001511 // Newer versions of DINamespace dropped file and line.
1512 MDString *Name;
1513 if (Record.size() == 3)
1514 Name = getMDString(Record[2]);
1515 else if (Record.size() == 5)
1516 Name = getMDString(Record[3]);
1517 else
Mehdi Amini9f926f72016-12-23 03:59:18 +00001518 return error("Invalid record");
1519
1520 IsDistinct = Record[0] & 1;
1521 bool ExportSymbols = Record[0] & 2;
1522 MetadataList.assignValue(
1523 GET_OR_DISTINCT(DINamespace,
Adrian Prantlfed4f392017-04-28 22:25:46 +00001524 (Context, getMDOrNull(Record[1]), Name, ExportSymbols)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001525 NextMetadataNo);
1526 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001527 break;
1528 }
1529 case bitc::METADATA_MACRO: {
1530 if (Record.size() != 5)
1531 return error("Invalid record");
1532
1533 IsDistinct = Record[0];
1534 MetadataList.assignValue(
1535 GET_OR_DISTINCT(DIMacro,
1536 (Context, Record[1], Record[2], getMDString(Record[3]),
1537 getMDString(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001538 NextMetadataNo);
1539 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001540 break;
1541 }
1542 case bitc::METADATA_MACRO_FILE: {
1543 if (Record.size() != 5)
1544 return error("Invalid record");
1545
1546 IsDistinct = Record[0];
1547 MetadataList.assignValue(
1548 GET_OR_DISTINCT(DIMacroFile,
1549 (Context, Record[1], Record[2], getMDOrNull(Record[3]),
1550 getMDOrNull(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001551 NextMetadataNo);
1552 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001553 break;
1554 }
1555 case bitc::METADATA_TEMPLATE_TYPE: {
1556 if (Record.size() != 3)
1557 return error("Invalid record");
1558
1559 IsDistinct = Record[0];
1560 MetadataList.assignValue(GET_OR_DISTINCT(DITemplateTypeParameter,
1561 (Context, getMDString(Record[1]),
1562 getDITypeRefOrNull(Record[2]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001563 NextMetadataNo);
1564 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001565 break;
1566 }
1567 case bitc::METADATA_TEMPLATE_VALUE: {
1568 if (Record.size() != 5)
1569 return error("Invalid record");
1570
1571 IsDistinct = Record[0];
1572 MetadataList.assignValue(
1573 GET_OR_DISTINCT(DITemplateValueParameter,
1574 (Context, Record[1], getMDString(Record[2]),
1575 getDITypeRefOrNull(Record[3]),
1576 getMDOrNull(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001577 NextMetadataNo);
1578 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001579 break;
1580 }
1581 case bitc::METADATA_GLOBAL_VAR: {
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001582 if (Record.size() < 11 || Record.size() > 13)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001583 return error("Invalid record");
1584
1585 IsDistinct = Record[0] & 1;
1586 unsigned Version = Record[0] >> 1;
1587
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001588 if (Version == 2) {
1589 MetadataList.assignValue(
1590 GET_OR_DISTINCT(
1591 DIGlobalVariable,
1592 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1593 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1594 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1595 getMDOrNull(Record[9]), getMDOrNull(Record[10]), Record[11])),
1596 NextMetadataNo);
1597
1598 NextMetadataNo++;
1599 } else if (Version == 1) {
1600 // No upgrade necessary. A null field will be introduced to indicate
1601 // that no parameter information is available.
Mehdi Aminief27db82016-12-12 19:34:26 +00001602 MetadataList.assignValue(
Mehdi Amini9f926f72016-12-23 03:59:18 +00001603 GET_OR_DISTINCT(DIGlobalVariable,
Mehdi Aminief27db82016-12-12 19:34:26 +00001604 (Context, getMDOrNull(Record[1]),
1605 getMDString(Record[2]), getMDString(Record[3]),
Mehdi Amini9f926f72016-12-23 03:59:18 +00001606 getMDOrNull(Record[4]), Record[5],
1607 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001608 getMDOrNull(Record[10]), nullptr, Record[11])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001609 NextMetadataNo);
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001610
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001611 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001612 } else if (Version == 0) {
1613 // Upgrade old metadata, which stored a global variable reference or a
1614 // ConstantInt here.
Adrian Prantla5bf2d72017-02-08 17:44:43 +00001615 NeedUpgradeToDIGlobalVariableExpression = true;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001616 Metadata *Expr = getMDOrNull(Record[9]);
Mehdi Aminief27db82016-12-12 19:34:26 +00001617 uint32_t AlignInBits = 0;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001618 if (Record.size() > 11) {
1619 if (Record[11] > (uint64_t)std::numeric_limits<uint32_t>::max())
Mehdi Aminief27db82016-12-12 19:34:26 +00001620 return error("Alignment value is too large");
Mehdi Amini9f926f72016-12-23 03:59:18 +00001621 AlignInBits = Record[11];
Mehdi Aminief27db82016-12-12 19:34:26 +00001622 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001623 GlobalVariable *Attach = nullptr;
1624 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(Expr)) {
1625 if (auto *GV = dyn_cast<GlobalVariable>(CMD->getValue())) {
1626 Attach = GV;
1627 Expr = nullptr;
1628 } else if (auto *CI = dyn_cast<ConstantInt>(CMD->getValue())) {
1629 Expr = DIExpression::get(Context,
1630 {dwarf::DW_OP_constu, CI->getZExtValue(),
1631 dwarf::DW_OP_stack_value});
1632 } else {
1633 Expr = nullptr;
1634 }
1635 }
1636 DIGlobalVariable *DGV = GET_OR_DISTINCT(
1637 DIGlobalVariable,
1638 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1639 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1640 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001641 getMDOrNull(Record[10]), nullptr, AlignInBits));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001642
Adrian Prantle37d3142017-02-07 17:35:41 +00001643 DIGlobalVariableExpression *DGVE = nullptr;
1644 if (Attach || Expr)
Adrian Prantl05782212017-08-30 18:06:51 +00001645 DGVE = DIGlobalVariableExpression::getDistinct(
1646 Context, DGV, Expr ? Expr : DIExpression::get(Context, {}));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001647 if (Attach)
1648 Attach->addDebugInfo(DGVE);
Adrian Prantle37d3142017-02-07 17:35:41 +00001649
1650 auto *MDNode = Expr ? cast<Metadata>(DGVE) : cast<Metadata>(DGV);
1651 MetadataList.assignValue(MDNode, NextMetadataNo);
1652 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001653 } else
1654 return error("Invalid record");
1655
1656 break;
1657 }
1658 case bitc::METADATA_LOCAL_VAR: {
1659 // 10th field is for the obseleted 'inlinedAt:' field.
1660 if (Record.size() < 8 || Record.size() > 10)
1661 return error("Invalid record");
1662
1663 IsDistinct = Record[0] & 1;
1664 bool HasAlignment = Record[0] & 2;
1665 // 2nd field used to be an artificial tag, either DW_TAG_auto_variable or
1666 // DW_TAG_arg_variable, if we have alignment flag encoded it means, that
Simon Pilgrim68168d12017-03-30 12:59:53 +00001667 // this is newer version of record which doesn't have artificial tag.
Mehdi Amini9f926f72016-12-23 03:59:18 +00001668 bool HasTag = !HasAlignment && Record.size() > 8;
1669 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[7 + HasTag]);
1670 uint32_t AlignInBits = 0;
1671 if (HasAlignment) {
1672 if (Record[8 + HasTag] > (uint64_t)std::numeric_limits<uint32_t>::max())
1673 return error("Alignment value is too large");
1674 AlignInBits = Record[8 + HasTag];
Mehdi Aminief27db82016-12-12 19:34:26 +00001675 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001676 MetadataList.assignValue(
1677 GET_OR_DISTINCT(DILocalVariable,
1678 (Context, getMDOrNull(Record[1 + HasTag]),
1679 getMDString(Record[2 + HasTag]),
1680 getMDOrNull(Record[3 + HasTag]), Record[4 + HasTag],
1681 getDITypeRefOrNull(Record[5 + HasTag]),
1682 Record[6 + HasTag], Flags, AlignInBits)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001683 NextMetadataNo);
1684 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001685 break;
1686 }
Shiva Chen2c864552018-05-09 02:40:45 +00001687 case bitc::METADATA_LABEL: {
1688 if (Record.size() != 5)
1689 return error("Invalid record");
1690
1691 IsDistinct = Record[0] & 1;
1692 MetadataList.assignValue(
1693 GET_OR_DISTINCT(DILabel,
1694 (Context, getMDOrNull(Record[1]),
1695 getMDString(Record[2]),
1696 getMDOrNull(Record[3]), Record[4])),
1697 NextMetadataNo);
1698 NextMetadataNo++;
1699 break;
1700 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001701 case bitc::METADATA_EXPRESSION: {
1702 if (Record.size() < 1)
1703 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001704
Mehdi Amini9f926f72016-12-23 03:59:18 +00001705 IsDistinct = Record[0] & 1;
Adrian Prantl6825fb62017-04-18 01:21:53 +00001706 uint64_t Version = Record[0] >> 1;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001707 auto Elts = MutableArrayRef<uint64_t>(Record).slice(1);
Florian Hahnffc498d2017-06-14 13:14:38 +00001708
1709 SmallVector<uint64_t, 6> Buffer;
1710 if (Error Err = upgradeDIExpression(Version, Elts, Buffer))
1711 return Err;
Mehdi Aminief27db82016-12-12 19:34:26 +00001712
Mehdi Amini9f926f72016-12-23 03:59:18 +00001713 MetadataList.assignValue(
Florian Hahnffc498d2017-06-14 13:14:38 +00001714 GET_OR_DISTINCT(DIExpression, (Context, Elts)), NextMetadataNo);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001715 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001716 break;
1717 }
1718 case bitc::METADATA_GLOBAL_VAR_EXPR: {
1719 if (Record.size() != 3)
1720 return error("Invalid record");
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001721
Mehdi Amini9f926f72016-12-23 03:59:18 +00001722 IsDistinct = Record[0];
Adrian Prantl05782212017-08-30 18:06:51 +00001723 Metadata *Expr = getMDOrNull(Record[2]);
1724 if (!Expr)
1725 Expr = DIExpression::get(Context, {});
1726 MetadataList.assignValue(
1727 GET_OR_DISTINCT(DIGlobalVariableExpression,
1728 (Context, getMDOrNull(Record[1]), Expr)),
1729 NextMetadataNo);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001730 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001731 break;
1732 }
1733 case bitc::METADATA_OBJC_PROPERTY: {
1734 if (Record.size() != 8)
1735 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001736
Mehdi Amini9f926f72016-12-23 03:59:18 +00001737 IsDistinct = Record[0];
1738 MetadataList.assignValue(
1739 GET_OR_DISTINCT(DIObjCProperty,
1740 (Context, getMDString(Record[1]),
1741 getMDOrNull(Record[2]), Record[3],
1742 getMDString(Record[4]), getMDString(Record[5]),
1743 Record[6], getDITypeRefOrNull(Record[7]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001744 NextMetadataNo);
1745 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001746 break;
1747 }
1748 case bitc::METADATA_IMPORTED_ENTITY: {
Adrian Prantld63bfd22017-07-19 00:09:54 +00001749 if (Record.size() != 6 && Record.size() != 7)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001750 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001751
Mehdi Amini9f926f72016-12-23 03:59:18 +00001752 IsDistinct = Record[0];
Adrian Prantld63bfd22017-07-19 00:09:54 +00001753 bool HasFile = (Record.size() == 7);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001754 MetadataList.assignValue(
1755 GET_OR_DISTINCT(DIImportedEntity,
1756 (Context, Record[1], getMDOrNull(Record[2]),
Adrian Prantld63bfd22017-07-19 00:09:54 +00001757 getDITypeRefOrNull(Record[3]),
1758 HasFile ? getMDOrNull(Record[6]) : nullptr,
1759 HasFile ? Record[4] : 0, getMDString(Record[5]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001760 NextMetadataNo);
1761 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001762 break;
1763 }
1764 case bitc::METADATA_STRING_OLD: {
1765 std::string String(Record.begin(), Record.end());
Mehdi Aminief27db82016-12-12 19:34:26 +00001766
Mehdi Amini9f926f72016-12-23 03:59:18 +00001767 // Test for upgrading !llvm.loop.
1768 HasSeenOldLoopTags |= mayBeOldLoopAttachmentTag(String);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001769 ++NumMDStringLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001770 Metadata *MD = MDString::get(Context, String);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001771 MetadataList.assignValue(MD, NextMetadataNo);
1772 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001773 break;
1774 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001775 case bitc::METADATA_STRINGS: {
1776 auto CreateNextMDString = [&](StringRef Str) {
1777 ++NumMDStringLoaded;
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001778 MetadataList.assignValue(MDString::get(Context, Str), NextMetadataNo);
1779 NextMetadataNo++;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001780 };
1781 if (Error Err = parseMetadataStrings(Record, Blob, CreateNextMDString))
Mehdi Amini9f926f72016-12-23 03:59:18 +00001782 return Err;
1783 break;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001784 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001785 case bitc::METADATA_GLOBAL_DECL_ATTACHMENT: {
1786 if (Record.size() % 2 == 0)
1787 return error("Invalid record");
1788 unsigned ValueID = Record[0];
1789 if (ValueID >= ValueList.size())
1790 return error("Invalid record");
1791 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID]))
1792 if (Error Err = parseGlobalObjectAttachment(
1793 *GO, ArrayRef<uint64_t>(Record).slice(1)))
Mehdi Aminief27db82016-12-12 19:34:26 +00001794 return Err;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001795 break;
1796 }
1797 case bitc::METADATA_KIND: {
1798 // Support older bitcode files that had METADATA_KIND records in a
1799 // block with METADATA_BLOCK_ID.
1800 if (Error Err = parseMetadataKindRecord(Record))
1801 return Err;
1802 break;
1803 }
Mehdi Aminief27db82016-12-12 19:34:26 +00001804 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001805 return Error::success();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001806#undef GET_OR_DISTINCT
Mehdi Aminief27db82016-12-12 19:34:26 +00001807}
1808
1809Error MetadataLoader::MetadataLoaderImpl::parseMetadataStrings(
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001810 ArrayRef<uint64_t> Record, StringRef Blob,
Benjamin Kramer061f4a52017-01-13 14:39:03 +00001811 function_ref<void(StringRef)> CallBack) {
Mehdi Aminief27db82016-12-12 19:34:26 +00001812 // All the MDStrings in the block are emitted together in a single
1813 // record. The strings are concatenated and stored in a blob along with
1814 // their sizes.
1815 if (Record.size() != 2)
1816 return error("Invalid record: metadata strings layout");
1817
1818 unsigned NumStrings = Record[0];
1819 unsigned StringsOffset = Record[1];
1820 if (!NumStrings)
1821 return error("Invalid record: metadata strings with no strings");
1822 if (StringsOffset > Blob.size())
1823 return error("Invalid record: metadata strings corrupt offset");
1824
1825 StringRef Lengths = Blob.slice(0, StringsOffset);
1826 SimpleBitstreamCursor R(Lengths);
1827
1828 StringRef Strings = Blob.drop_front(StringsOffset);
1829 do {
1830 if (R.AtEndOfStream())
1831 return error("Invalid record: metadata strings bad length");
1832
1833 unsigned Size = R.ReadVBR(6);
1834 if (Strings.size() < Size)
1835 return error("Invalid record: metadata strings truncated chars");
1836
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001837 CallBack(Strings.slice(0, Size));
Mehdi Aminief27db82016-12-12 19:34:26 +00001838 Strings = Strings.drop_front(Size);
1839 } while (--NumStrings);
1840
1841 return Error::success();
1842}
1843
1844Error MetadataLoader::MetadataLoaderImpl::parseGlobalObjectAttachment(
1845 GlobalObject &GO, ArrayRef<uint64_t> Record) {
1846 assert(Record.size() % 2 == 0);
1847 for (unsigned I = 0, E = Record.size(); I != E; I += 2) {
1848 auto K = MDKindMap.find(Record[I]);
1849 if (K == MDKindMap.end())
1850 return error("Invalid ID");
1851 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[I + 1]);
1852 if (!MD)
Teresa Johnsonf3d2453d2018-11-14 21:57:51 +00001853 return error("Invalid metadata attachment: expect fwd ref to MDNode");
Mehdi Aminief27db82016-12-12 19:34:26 +00001854 GO.addMetadata(K->second, *MD);
1855 }
1856 return Error::success();
1857}
1858
1859/// Parse metadata attachments.
1860Error MetadataLoader::MetadataLoaderImpl::parseMetadataAttachment(
1861 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
1862 if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
1863 return error("Invalid record");
1864
1865 SmallVector<uint64_t, 64> Record;
Mehdi Amini7b0d1452017-01-08 00:44:45 +00001866 PlaceholderQueue Placeholders;
Mehdi Aminief27db82016-12-12 19:34:26 +00001867
1868 while (true) {
1869 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1870
1871 switch (Entry.Kind) {
1872 case BitstreamEntry::SubBlock: // Handled for us already.
1873 case BitstreamEntry::Error:
1874 return error("Malformed block");
1875 case BitstreamEntry::EndBlock:
Mehdi Amini7b0d1452017-01-08 00:44:45 +00001876 resolveForwardRefsAndPlaceholders(Placeholders);
Mehdi Aminief27db82016-12-12 19:34:26 +00001877 return Error::success();
1878 case BitstreamEntry::Record:
1879 // The interesting case.
1880 break;
1881 }
1882
1883 // Read a metadata attachment record.
1884 Record.clear();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001885 ++NumMDRecordLoaded;
Mehdi Aminief27db82016-12-12 19:34:26 +00001886 switch (Stream.readRecord(Entry.ID, Record)) {
1887 default: // Default behavior: ignore.
1888 break;
1889 case bitc::METADATA_ATTACHMENT: {
1890 unsigned RecordLength = Record.size();
1891 if (Record.empty())
1892 return error("Invalid record");
1893 if (RecordLength % 2 == 0) {
1894 // A function attachment.
1895 if (Error Err = parseGlobalObjectAttachment(F, Record))
1896 return Err;
1897 continue;
1898 }
1899
1900 // An instruction attachment.
1901 Instruction *Inst = InstructionList[Record[0]];
1902 for (unsigned i = 1; i != RecordLength; i = i + 2) {
1903 unsigned Kind = Record[i];
1904 DenseMap<unsigned, unsigned>::iterator I = MDKindMap.find(Kind);
1905 if (I == MDKindMap.end())
1906 return error("Invalid ID");
Mehdi Amini86623052016-12-16 19:16:29 +00001907 if (I->second == LLVMContext::MD_tbaa && StripTBAA)
1908 continue;
1909
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001910 auto Idx = Record[i + 1];
1911 if (Idx < (MDStringRef.size() + GlobalMetadataBitPosIndex.size()) &&
Mehdi Aminid5549f32017-01-07 20:24:23 +00001912 !MetadataList.lookup(Idx)) {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001913 // Load the attachment if it is in the lazy-loadable range and hasn't
1914 // been loaded yet.
1915 lazyLoadOneMetadata(Idx, Placeholders);
Mehdi Aminid5549f32017-01-07 20:24:23 +00001916 resolveForwardRefsAndPlaceholders(Placeholders);
1917 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001918
1919 Metadata *Node = MetadataList.getMetadataFwdRef(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +00001920 if (isa<LocalAsMetadata>(Node))
1921 // Drop the attachment. This used to be legal, but there's no
1922 // upgrade path.
1923 break;
1924 MDNode *MD = dyn_cast_or_null<MDNode>(Node);
1925 if (!MD)
1926 return error("Invalid metadata attachment");
1927
1928 if (HasSeenOldLoopTags && I->second == LLVMContext::MD_loop)
1929 MD = upgradeInstructionLoopAttachment(*MD);
1930
1931 if (I->second == LLVMContext::MD_tbaa) {
1932 assert(!MD->isTemporary() && "should load MDs before attachments");
1933 MD = UpgradeTBAANode(*MD);
1934 }
1935 Inst->setMetadata(I->second, MD);
1936 }
1937 break;
1938 }
1939 }
1940 }
1941}
1942
1943/// Parse a single METADATA_KIND record, inserting result in MDKindMap.
1944Error MetadataLoader::MetadataLoaderImpl::parseMetadataKindRecord(
1945 SmallVectorImpl<uint64_t> &Record) {
1946 if (Record.size() < 2)
1947 return error("Invalid record");
1948
1949 unsigned Kind = Record[0];
1950 SmallString<8> Name(Record.begin() + 1, Record.end());
1951
1952 unsigned NewKind = TheModule.getMDKindID(Name.str());
1953 if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1954 return error("Conflicting METADATA_KIND records");
1955 return Error::success();
1956}
1957
1958/// Parse the metadata kinds out of the METADATA_KIND_BLOCK.
1959Error MetadataLoader::MetadataLoaderImpl::parseMetadataKinds() {
1960 if (Stream.EnterSubBlock(bitc::METADATA_KIND_BLOCK_ID))
1961 return error("Invalid record");
1962
1963 SmallVector<uint64_t, 64> Record;
1964
1965 // Read all the records.
1966 while (true) {
1967 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1968
1969 switch (Entry.Kind) {
1970 case BitstreamEntry::SubBlock: // Handled for us already.
1971 case BitstreamEntry::Error:
1972 return error("Malformed block");
1973 case BitstreamEntry::EndBlock:
1974 return Error::success();
1975 case BitstreamEntry::Record:
1976 // The interesting case.
1977 break;
1978 }
1979
1980 // Read a record.
1981 Record.clear();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001982 ++NumMDRecordLoaded;
Mehdi Aminief27db82016-12-12 19:34:26 +00001983 unsigned Code = Stream.readRecord(Entry.ID, Record);
1984 switch (Code) {
1985 default: // Default behavior: ignore.
1986 break;
1987 case bitc::METADATA_KIND: {
1988 if (Error Err = parseMetadataKindRecord(Record))
1989 return Err;
1990 break;
1991 }
1992 }
1993 }
1994}
1995
1996MetadataLoader &MetadataLoader::operator=(MetadataLoader &&RHS) {
1997 Pimpl = std::move(RHS.Pimpl);
1998 return *this;
1999}
2000MetadataLoader::MetadataLoader(MetadataLoader &&RHS)
Mehdi Aminiec68dd42016-12-23 02:20:02 +00002001 : Pimpl(std::move(RHS.Pimpl)) {}
Mehdi Aminief27db82016-12-12 19:34:26 +00002002
2003MetadataLoader::~MetadataLoader() = default;
2004MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
2005 BitcodeReaderValueList &ValueList,
Teresa Johnsona61f5e32016-12-16 21:25:01 +00002006 bool IsImporting,
Mehdi Aminief27db82016-12-12 19:34:26 +00002007 std::function<Type *(unsigned)> getTypeByID)
Benjamin Kramer061f4a52017-01-13 14:39:03 +00002008 : Pimpl(llvm::make_unique<MetadataLoaderImpl>(
2009 Stream, TheModule, ValueList, std::move(getTypeByID), IsImporting)) {}
Mehdi Aminief27db82016-12-12 19:34:26 +00002010
2011Error MetadataLoader::parseMetadata(bool ModuleLevel) {
Mehdi Aminiec68dd42016-12-23 02:20:02 +00002012 return Pimpl->parseMetadata(ModuleLevel);
Mehdi Aminief27db82016-12-12 19:34:26 +00002013}
2014
2015bool MetadataLoader::hasFwdRefs() const { return Pimpl->hasFwdRefs(); }
2016
2017/// Return the given metadata, creating a replaceable forward reference if
2018/// necessary.
Mehdi Amini3bb4d012017-01-20 20:29:16 +00002019Metadata *MetadataLoader::getMetadataFwdRefOrLoad(unsigned Idx) {
2020 return Pimpl->getMetadataFwdRefOrLoad(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +00002021}
2022
Mehdi Aminief27db82016-12-12 19:34:26 +00002023DISubprogram *MetadataLoader::lookupSubprogramForFunction(Function *F) {
2024 return Pimpl->lookupSubprogramForFunction(F);
2025}
2026
2027Error MetadataLoader::parseMetadataAttachment(
2028 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
2029 return Pimpl->parseMetadataAttachment(F, InstructionList);
2030}
2031
2032Error MetadataLoader::parseMetadataKinds() {
2033 return Pimpl->parseMetadataKinds();
2034}
2035
Mehdi Amini86623052016-12-16 19:16:29 +00002036void MetadataLoader::setStripTBAA(bool StripTBAA) {
2037 return Pimpl->setStripTBAA(StripTBAA);
2038}
2039
2040bool MetadataLoader::isStrippingTBAA() { return Pimpl->isStrippingTBAA(); }
2041
Mehdi Aminief27db82016-12-12 19:34:26 +00002042unsigned MetadataLoader::size() const { return Pimpl->size(); }
2043void MetadataLoader::shrinkTo(unsigned N) { return Pimpl->shrinkTo(N); }
Adrian Prantl6825fb62017-04-18 01:21:53 +00002044
2045void MetadataLoader::upgradeDebugIntrinsics(Function &F) {
2046 return Pimpl->upgradeDebugIntrinsics(F);
2047}