blob: 7af95cb73e58e37083cbf061f3e78dea3567c329 [file] [log] [blame]
Mehdi Aminief27db82016-12-12 19:34:26 +00001//===- MetadataLoader.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 "MetadataLoader.h"
11#include "ValueList.h"
12
13#include "llvm/ADT/APFloat.h"
14#include "llvm/ADT/APInt.h"
15#include "llvm/ADT/ArrayRef.h"
16#include "llvm/ADT/DenseMap.h"
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000017#include "llvm/ADT/DenseSet.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000018#include "llvm/ADT/None.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/SmallVector.h"
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000022#include "llvm/ADT/Statistic.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000023#include "llvm/ADT/StringRef.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000024#include "llvm/ADT/Twine.h"
25#include "llvm/Bitcode/BitcodeReader.h"
26#include "llvm/Bitcode/BitstreamReader.h"
27#include "llvm/Bitcode/LLVMBitCodes.h"
28#include "llvm/IR/Argument.h"
29#include "llvm/IR/Attributes.h"
30#include "llvm/IR/AutoUpgrade.h"
31#include "llvm/IR/BasicBlock.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000032#include "llvm/IR/CallingConv.h"
33#include "llvm/IR/Comdat.h"
34#include "llvm/IR/Constant.h"
35#include "llvm/IR/Constants.h"
36#include "llvm/IR/DebugInfo.h"
37#include "llvm/IR/DebugInfoMetadata.h"
38#include "llvm/IR/DebugLoc.h"
39#include "llvm/IR/DerivedTypes.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000040#include "llvm/IR/DiagnosticPrinter.h"
41#include "llvm/IR/Function.h"
42#include "llvm/IR/GVMaterializer.h"
43#include "llvm/IR/GlobalAlias.h"
44#include "llvm/IR/GlobalIFunc.h"
45#include "llvm/IR/GlobalIndirectSymbol.h"
46#include "llvm/IR/GlobalObject.h"
47#include "llvm/IR/GlobalValue.h"
48#include "llvm/IR/GlobalVariable.h"
49#include "llvm/IR/InlineAsm.h"
50#include "llvm/IR/InstrTypes.h"
51#include "llvm/IR/Instruction.h"
52#include "llvm/IR/Instructions.h"
Adrian Prantl6825fb62017-04-18 01:21:53 +000053#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000054#include "llvm/IR/Intrinsics.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000055#include "llvm/IR/LLVMContext.h"
56#include "llvm/IR/Module.h"
57#include "llvm/IR/ModuleSummaryIndex.h"
58#include "llvm/IR/OperandTraits.h"
Mehdi Aminief27db82016-12-12 19:34:26 +000059#include "llvm/IR/TrackingMDRef.h"
60#include "llvm/IR/Type.h"
61#include "llvm/IR/ValueHandle.h"
62#include "llvm/Support/AtomicOrdering.h"
63#include "llvm/Support/Casting.h"
64#include "llvm/Support/CommandLine.h"
65#include "llvm/Support/Compiler.h"
66#include "llvm/Support/Debug.h"
67#include "llvm/Support/Error.h"
68#include "llvm/Support/ErrorHandling.h"
69#include "llvm/Support/ManagedStatic.h"
70#include "llvm/Support/MemoryBuffer.h"
71#include "llvm/Support/raw_ostream.h"
72#include <algorithm>
73#include <cassert>
74#include <cstddef>
75#include <cstdint>
76#include <deque>
77#include <limits>
78#include <map>
79#include <memory>
80#include <string>
81#include <system_error>
82#include <tuple>
83#include <utility>
84#include <vector>
85
86using namespace llvm;
87
Mehdi Amini19ef4fa2017-01-04 22:54:33 +000088#define DEBUG_TYPE "bitcode-reader"
89
90STATISTIC(NumMDStringLoaded, "Number of MDStrings loaded");
91STATISTIC(NumMDNodeTemporary, "Number of MDNode::Temporary created");
92STATISTIC(NumMDRecordLoaded, "Number of Metadata records loaded");
93
Teresa Johnsona61f5e32016-12-16 21:25:01 +000094/// Flag whether we need to import full type definitions for ThinLTO.
95/// Currently needed for Darwin and LLDB.
96static cl::opt<bool> ImportFullTypeDefinitions(
97 "import-full-type-definitions", cl::init(false), cl::Hidden,
98 cl::desc("Import full type definitions for ThinLTO."));
99
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000100static cl::opt<bool> DisableLazyLoading(
101 "disable-ondemand-mds-loading", cl::init(false), cl::Hidden,
102 cl::desc("Force disable the lazy-loading on-demand of metadata when "
103 "loading bitcode for importing."));
104
Mehdi Aminief27db82016-12-12 19:34:26 +0000105namespace {
106
107static int64_t unrotateSign(uint64_t U) { return U & 1 ? ~(U >> 1) : U >> 1; }
108
109class BitcodeReaderMetadataList {
Mehdi Aminief27db82016-12-12 19:34:26 +0000110 /// Array of metadata references.
111 ///
112 /// Don't use std::vector here. Some versions of libc++ copy (instead of
113 /// move) on resize, and TrackingMDRef is very expensive to copy.
114 SmallVector<TrackingMDRef, 1> MetadataPtrs;
115
Mehdi Amini690952d2016-12-25 04:22:54 +0000116 /// The set of indices in MetadataPtrs above of forward references that were
117 /// generated.
118 SmallDenseSet<unsigned, 1> ForwardReference;
119
120 /// The set of indices in MetadataPtrs above of Metadata that need to be
121 /// resolved.
122 SmallDenseSet<unsigned, 1> UnresolvedNodes;
123
Mehdi Aminief27db82016-12-12 19:34:26 +0000124 /// Structures for resolving old type refs.
125 struct {
126 SmallDenseMap<MDString *, TempMDTuple, 1> Unknown;
127 SmallDenseMap<MDString *, DICompositeType *, 1> Final;
128 SmallDenseMap<MDString *, DICompositeType *, 1> FwdDecls;
129 SmallVector<std::pair<TrackingMDRef, TempMDTuple>, 1> Arrays;
130 } OldTypeRefs;
131
132 LLVMContext &Context;
133
134public:
Mehdi Amini70a9cd42016-12-23 02:20:07 +0000135 BitcodeReaderMetadataList(LLVMContext &C) : Context(C) {}
Mehdi Aminief27db82016-12-12 19:34:26 +0000136
137 // vector compatibility methods
138 unsigned size() const { return MetadataPtrs.size(); }
139 void resize(unsigned N) { MetadataPtrs.resize(N); }
140 void push_back(Metadata *MD) { MetadataPtrs.emplace_back(MD); }
141 void clear() { MetadataPtrs.clear(); }
142 Metadata *back() const { return MetadataPtrs.back(); }
143 void pop_back() { MetadataPtrs.pop_back(); }
144 bool empty() const { return MetadataPtrs.empty(); }
145
146 Metadata *operator[](unsigned i) const {
147 assert(i < MetadataPtrs.size());
148 return MetadataPtrs[i];
149 }
150
151 Metadata *lookup(unsigned I) const {
152 if (I < MetadataPtrs.size())
153 return MetadataPtrs[I];
154 return nullptr;
155 }
156
157 void shrinkTo(unsigned N) {
158 assert(N <= size() && "Invalid shrinkTo request!");
Mehdi Amini690952d2016-12-25 04:22:54 +0000159 assert(ForwardReference.empty() && "Unexpected forward refs");
160 assert(UnresolvedNodes.empty() && "Unexpected unresolved node");
Mehdi Aminief27db82016-12-12 19:34:26 +0000161 MetadataPtrs.resize(N);
162 }
163
164 /// Return the given metadata, creating a replaceable forward reference if
165 /// necessary.
166 Metadata *getMetadataFwdRef(unsigned Idx);
167
Hiroshi Inoue8f976ba2018-01-17 12:29:38 +0000168 /// Return the given metadata only if it is fully resolved.
Mehdi Aminief27db82016-12-12 19:34:26 +0000169 ///
170 /// Gives the same result as \a lookup(), unless \a MDNode::isResolved()
171 /// would give \c false.
172 Metadata *getMetadataIfResolved(unsigned Idx);
173
174 MDNode *getMDNodeFwdRefOrNull(unsigned Idx);
175 void assignValue(Metadata *MD, unsigned Idx);
176 void tryToResolveCycles();
Mehdi Amini690952d2016-12-25 04:22:54 +0000177 bool hasFwdRefs() const { return !ForwardReference.empty(); }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000178 int getNextFwdRef() {
179 assert(hasFwdRefs());
180 return *ForwardReference.begin();
181 }
Mehdi Aminief27db82016-12-12 19:34:26 +0000182
183 /// Upgrade a type that had an MDString reference.
184 void addTypeRef(MDString &UUID, DICompositeType &CT);
185
186 /// Upgrade a type that had an MDString reference.
187 Metadata *upgradeTypeRef(Metadata *MaybeUUID);
188
189 /// Upgrade a type ref array that may have MDString references.
190 Metadata *upgradeTypeRefArray(Metadata *MaybeTuple);
191
192private:
193 Metadata *resolveTypeRefArray(Metadata *MaybeTuple);
194};
195
196void BitcodeReaderMetadataList::assignValue(Metadata *MD, unsigned Idx) {
Mehdi Amini690952d2016-12-25 04:22:54 +0000197 if (auto *MDN = dyn_cast<MDNode>(MD))
198 if (!MDN->isResolved())
199 UnresolvedNodes.insert(Idx);
200
Mehdi Aminief27db82016-12-12 19:34:26 +0000201 if (Idx == size()) {
202 push_back(MD);
203 return;
204 }
205
206 if (Idx >= size())
207 resize(Idx + 1);
208
209 TrackingMDRef &OldMD = MetadataPtrs[Idx];
210 if (!OldMD) {
211 OldMD.reset(MD);
212 return;
213 }
214
215 // If there was a forward reference to this value, replace it.
216 TempMDTuple PrevMD(cast<MDTuple>(OldMD.get()));
217 PrevMD->replaceAllUsesWith(MD);
Mehdi Amini690952d2016-12-25 04:22:54 +0000218 ForwardReference.erase(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +0000219}
220
221Metadata *BitcodeReaderMetadataList::getMetadataFwdRef(unsigned Idx) {
222 if (Idx >= size())
223 resize(Idx + 1);
224
225 if (Metadata *MD = MetadataPtrs[Idx])
226 return MD;
227
228 // Track forward refs to be resolved later.
Mehdi Amini690952d2016-12-25 04:22:54 +0000229 ForwardReference.insert(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +0000230
231 // Create and return a placeholder, which will later be RAUW'd.
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000232 ++NumMDNodeTemporary;
Mehdi Aminief27db82016-12-12 19:34:26 +0000233 Metadata *MD = MDNode::getTemporary(Context, None).release();
234 MetadataPtrs[Idx].reset(MD);
235 return MD;
236}
237
238Metadata *BitcodeReaderMetadataList::getMetadataIfResolved(unsigned Idx) {
239 Metadata *MD = lookup(Idx);
240 if (auto *N = dyn_cast_or_null<MDNode>(MD))
241 if (!N->isResolved())
242 return nullptr;
243 return MD;
244}
245
246MDNode *BitcodeReaderMetadataList::getMDNodeFwdRefOrNull(unsigned Idx) {
247 return dyn_cast_or_null<MDNode>(getMetadataFwdRef(Idx));
248}
249
250void BitcodeReaderMetadataList::tryToResolveCycles() {
Mehdi Amini690952d2016-12-25 04:22:54 +0000251 if (!ForwardReference.empty())
Mehdi Aminief27db82016-12-12 19:34:26 +0000252 // Still forward references... can't resolve cycles.
253 return;
254
Mehdi Aminief27db82016-12-12 19:34:26 +0000255 // Give up on finding a full definition for any forward decls that remain.
256 for (const auto &Ref : OldTypeRefs.FwdDecls)
257 OldTypeRefs.Final.insert(Ref);
258 OldTypeRefs.FwdDecls.clear();
259
260 // Upgrade from old type ref arrays. In strange cases, this could add to
261 // OldTypeRefs.Unknown.
Mehdi Amini690952d2016-12-25 04:22:54 +0000262 for (const auto &Array : OldTypeRefs.Arrays)
Mehdi Aminief27db82016-12-12 19:34:26 +0000263 Array.second->replaceAllUsesWith(resolveTypeRefArray(Array.first.get()));
Mehdi Aminief27db82016-12-12 19:34:26 +0000264 OldTypeRefs.Arrays.clear();
265
266 // Replace old string-based type refs with the resolved node, if possible.
267 // If we haven't seen the node, leave it to the verifier to complain about
268 // the invalid string reference.
269 for (const auto &Ref : OldTypeRefs.Unknown) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000270 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first))
271 Ref.second->replaceAllUsesWith(CT);
272 else
273 Ref.second->replaceAllUsesWith(Ref.first);
274 }
275 OldTypeRefs.Unknown.clear();
276
Mehdi Amini690952d2016-12-25 04:22:54 +0000277 if (UnresolvedNodes.empty())
Mehdi Aminief27db82016-12-12 19:34:26 +0000278 // Nothing to do.
279 return;
280
281 // Resolve any cycles.
Mehdi Amini690952d2016-12-25 04:22:54 +0000282 for (unsigned I : UnresolvedNodes) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000283 auto &MD = MetadataPtrs[I];
284 auto *N = dyn_cast_or_null<MDNode>(MD);
285 if (!N)
286 continue;
287
288 assert(!N->isTemporary() && "Unexpected forward reference");
289 N->resolveCycles();
290 }
291
Mehdi Amini690952d2016-12-25 04:22:54 +0000292 // Make sure we return early again until there's another unresolved ref.
293 UnresolvedNodes.clear();
Mehdi Aminief27db82016-12-12 19:34:26 +0000294}
295
296void BitcodeReaderMetadataList::addTypeRef(MDString &UUID,
297 DICompositeType &CT) {
298 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID");
299 if (CT.isForwardDecl())
300 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT));
301 else
302 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT));
303}
304
305Metadata *BitcodeReaderMetadataList::upgradeTypeRef(Metadata *MaybeUUID) {
306 auto *UUID = dyn_cast_or_null<MDString>(MaybeUUID);
307 if (LLVM_LIKELY(!UUID))
308 return MaybeUUID;
309
310 if (auto *CT = OldTypeRefs.Final.lookup(UUID))
311 return CT;
312
313 auto &Ref = OldTypeRefs.Unknown[UUID];
314 if (!Ref)
315 Ref = MDNode::getTemporary(Context, None);
316 return Ref.get();
317}
318
319Metadata *BitcodeReaderMetadataList::upgradeTypeRefArray(Metadata *MaybeTuple) {
320 auto *Tuple = dyn_cast_or_null<MDTuple>(MaybeTuple);
321 if (!Tuple || Tuple->isDistinct())
322 return MaybeTuple;
323
324 // Look through the array immediately if possible.
325 if (!Tuple->isTemporary())
326 return resolveTypeRefArray(Tuple);
327
328 // Create and return a placeholder to use for now. Eventually
329 // resolveTypeRefArrays() will be resolve this forward reference.
330 OldTypeRefs.Arrays.emplace_back(
331 std::piecewise_construct, std::forward_as_tuple(Tuple),
332 std::forward_as_tuple(MDTuple::getTemporary(Context, None)));
333 return OldTypeRefs.Arrays.back().second.get();
334}
335
336Metadata *BitcodeReaderMetadataList::resolveTypeRefArray(Metadata *MaybeTuple) {
337 auto *Tuple = dyn_cast_or_null<MDTuple>(MaybeTuple);
338 if (!Tuple || Tuple->isDistinct())
339 return MaybeTuple;
340
341 // Look through the DITypeRefArray, upgrading each DITypeRef.
342 SmallVector<Metadata *, 32> Ops;
343 Ops.reserve(Tuple->getNumOperands());
344 for (Metadata *MD : Tuple->operands())
345 Ops.push_back(upgradeTypeRef(MD));
346
347 return MDTuple::get(Context, Ops);
348}
349
350namespace {
351
352class PlaceholderQueue {
353 // Placeholders would thrash around when moved, so store in a std::deque
354 // instead of some sort of vector.
355 std::deque<DistinctMDOperandPlaceholder> PHs;
356
357public:
Mehdi Amini27379892017-01-20 10:18:32 +0000358 ~PlaceholderQueue() {
359 assert(empty() && "PlaceholderQueue hasn't been flushed before being destroyed");
360 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000361 bool empty() { return PHs.empty(); }
Mehdi Aminief27db82016-12-12 19:34:26 +0000362 DistinctMDOperandPlaceholder &getPlaceholderOp(unsigned ID);
363 void flush(BitcodeReaderMetadataList &MetadataList);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000364
365 /// Return the list of temporaries nodes in the queue, these need to be
366 /// loaded before we can flush the queue.
367 void getTemporaries(BitcodeReaderMetadataList &MetadataList,
368 DenseSet<unsigned> &Temporaries) {
369 for (auto &PH : PHs) {
370 auto ID = PH.getID();
371 auto *MD = MetadataList.lookup(ID);
372 if (!MD) {
373 Temporaries.insert(ID);
374 continue;
375 }
376 auto *N = dyn_cast_or_null<MDNode>(MD);
377 if (N && N->isTemporary())
378 Temporaries.insert(ID);
379 }
380 }
Mehdi Aminief27db82016-12-12 19:34:26 +0000381};
382
383} // end anonymous namespace
384
385DistinctMDOperandPlaceholder &PlaceholderQueue::getPlaceholderOp(unsigned ID) {
386 PHs.emplace_back(ID);
387 return PHs.back();
388}
389
390void PlaceholderQueue::flush(BitcodeReaderMetadataList &MetadataList) {
391 while (!PHs.empty()) {
Mehdi Amini4f90ee02016-12-25 03:55:53 +0000392 auto *MD = MetadataList.lookup(PHs.front().getID());
393 assert(MD && "Flushing placeholder on unassigned MD");
Mehdi Amini5ae61702016-12-23 02:20:09 +0000394#ifndef NDEBUG
Mehdi Amini4f90ee02016-12-25 03:55:53 +0000395 if (auto *MDN = dyn_cast<MDNode>(MD))
Mehdi Amini5ae61702016-12-23 02:20:09 +0000396 assert(MDN->isResolved() &&
397 "Flushing Placeholder while cycles aren't resolved");
Mehdi Amini5ae61702016-12-23 02:20:09 +0000398#endif
399 PHs.front().replaceUseWith(MD);
Mehdi Aminief27db82016-12-12 19:34:26 +0000400 PHs.pop_front();
401 }
402}
403
404} // anonynous namespace
405
Florian Hahnffc498d2017-06-14 13:14:38 +0000406static Error error(const Twine &Message) {
407 return make_error<StringError>(
408 Message, make_error_code(BitcodeError::CorruptedBitcode));
409}
410
Mehdi Aminief27db82016-12-12 19:34:26 +0000411class MetadataLoader::MetadataLoaderImpl {
412 BitcodeReaderMetadataList MetadataList;
413 BitcodeReaderValueList &ValueList;
414 BitstreamCursor &Stream;
415 LLVMContext &Context;
416 Module &TheModule;
417 std::function<Type *(unsigned)> getTypeByID;
418
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000419 /// Cursor associated with the lazy-loading of Metadata. This is the easy way
420 /// to keep around the right "context" (Abbrev list) to be able to jump in
421 /// the middle of the metadata block and load any record.
422 BitstreamCursor IndexCursor;
423
424 /// Index that keeps track of MDString values.
425 std::vector<StringRef> MDStringRef;
426
427 /// On-demand loading of a single MDString. Requires the index above to be
428 /// populated.
429 MDString *lazyLoadOneMDString(unsigned Idx);
430
431 /// Index that keeps track of where to find a metadata record in the stream.
432 std::vector<uint64_t> GlobalMetadataBitPosIndex;
433
434 /// Populate the index above to enable lazily loading of metadata, and load
435 /// the named metadata as well as the transitively referenced global
436 /// Metadata.
Mehdi Amini42ef1992017-01-07 18:31:38 +0000437 Expected<bool> lazyLoadModuleMetadataBlock();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000438
439 /// On-demand loading of a single metadata. Requires the index above to be
440 /// populated.
441 void lazyLoadOneMetadata(unsigned Idx, PlaceholderQueue &Placeholders);
442
Mehdi Amini9f926f72016-12-23 03:59:18 +0000443 // Keep mapping of seens pair of old-style CU <-> SP, and update pointers to
444 // point from SP to CU after a block is completly parsed.
445 std::vector<std::pair<DICompileUnit *, Metadata *>> CUSubprograms;
446
Mehdi Aminief27db82016-12-12 19:34:26 +0000447 /// Functions that need to be matched with subprograms when upgrading old
448 /// metadata.
449 SmallDenseMap<Function *, DISubprogram *, 16> FunctionsWithSPs;
450
451 // Map the bitcode's custom MDKind ID to the Module's MDKind ID.
452 DenseMap<unsigned, unsigned> MDKindMap;
453
Mehdi Amini86623052016-12-16 19:16:29 +0000454 bool StripTBAA = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000455 bool HasSeenOldLoopTags = false;
Adrian Prantle37d3142017-02-07 17:35:41 +0000456 bool NeedUpgradeToDIGlobalVariableExpression = false;
Adrian Prantl6825fb62017-04-18 01:21:53 +0000457 bool NeedDeclareExpressionUpgrade = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000458
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000459 /// True if metadata is being parsed for a module being ThinLTO imported.
460 bool IsImporting = false;
461
Mehdi Amini9f926f72016-12-23 03:59:18 +0000462 Error parseOneMetadata(SmallVectorImpl<uint64_t> &Record, unsigned Code,
463 PlaceholderQueue &Placeholders, StringRef Blob,
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000464 unsigned &NextMetadataNo);
Mehdi Aminief27db82016-12-12 19:34:26 +0000465 Error parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob,
Benjamin Kramer061f4a52017-01-13 14:39:03 +0000466 function_ref<void(StringRef)> CallBack);
Mehdi Aminief27db82016-12-12 19:34:26 +0000467 Error parseGlobalObjectAttachment(GlobalObject &GO,
468 ArrayRef<uint64_t> Record);
469 Error parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record);
470
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000471 void resolveForwardRefsAndPlaceholders(PlaceholderQueue &Placeholders);
472
473 /// Upgrade old-style CU <-> SP pointers to point from SP to CU.
474 void upgradeCUSubprograms() {
475 for (auto CU_SP : CUSubprograms)
476 if (auto *SPs = dyn_cast_or_null<MDTuple>(CU_SP.second))
477 for (auto &Op : SPs->operands())
Adrian Prantl9d2f0192017-04-26 23:59:52 +0000478 if (auto *SP = dyn_cast_or_null<DISubprogram>(Op))
479 SP->replaceUnit(CU_SP.first);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000480 CUSubprograms.clear();
481 }
482
Adrian Prantle37d3142017-02-07 17:35:41 +0000483 /// Upgrade old-style bare DIGlobalVariables to DIGlobalVariableExpressions.
484 void upgradeCUVariables() {
485 if (!NeedUpgradeToDIGlobalVariableExpression)
486 return;
487
488 // Upgrade list of variables attached to the CUs.
489 if (NamedMDNode *CUNodes = TheModule.getNamedMetadata("llvm.dbg.cu"))
490 for (unsigned I = 0, E = CUNodes->getNumOperands(); I != E; ++I) {
491 auto *CU = cast<DICompileUnit>(CUNodes->getOperand(I));
492 if (auto *GVs = dyn_cast_or_null<MDTuple>(CU->getRawGlobalVariables()))
493 for (unsigned I = 0; I < GVs->getNumOperands(); I++)
494 if (auto *GV =
495 dyn_cast_or_null<DIGlobalVariable>(GVs->getOperand(I))) {
Adrian Prantl05782212017-08-30 18:06:51 +0000496 auto *DGVE = DIGlobalVariableExpression::getDistinct(
497 Context, GV, DIExpression::get(Context, {}));
Adrian Prantle37d3142017-02-07 17:35:41 +0000498 GVs->replaceOperandWith(I, DGVE);
499 }
500 }
501
502 // Upgrade variables attached to globals.
503 for (auto &GV : TheModule.globals()) {
Davide Italiano56a08b42017-05-16 18:41:46 +0000504 SmallVector<MDNode *, 1> MDs;
Adrian Prantle37d3142017-02-07 17:35:41 +0000505 GV.getMetadata(LLVMContext::MD_dbg, MDs);
506 GV.eraseMetadata(LLVMContext::MD_dbg);
507 for (auto *MD : MDs)
508 if (auto *DGV = dyn_cast_or_null<DIGlobalVariable>(MD)) {
Adrian Prantl05782212017-08-30 18:06:51 +0000509 auto *DGVE = DIGlobalVariableExpression::getDistinct(
510 Context, DGV, DIExpression::get(Context, {}));
Adrian Prantle37d3142017-02-07 17:35:41 +0000511 GV.addMetadata(LLVMContext::MD_dbg, *DGVE);
512 } else
513 GV.addMetadata(LLVMContext::MD_dbg, *MD);
514 }
515 }
516
Adrian Prantl6825fb62017-04-18 01:21:53 +0000517 /// Remove a leading DW_OP_deref from DIExpressions in a dbg.declare that
518 /// describes a function argument.
519 void upgradeDeclareExpressions(Function &F) {
520 if (!NeedDeclareExpressionUpgrade)
521 return;
522
523 for (auto &BB : F)
524 for (auto &I : BB)
525 if (auto *DDI = dyn_cast<DbgDeclareInst>(&I))
526 if (auto *DIExpr = DDI->getExpression())
527 if (DIExpr->startsWithDeref() &&
528 dyn_cast_or_null<Argument>(DDI->getAddress())) {
529 SmallVector<uint64_t, 8> Ops;
530 Ops.append(std::next(DIExpr->elements_begin()),
531 DIExpr->elements_end());
532 auto *E = DIExpression::get(Context, Ops);
533 DDI->setOperand(2, MetadataAsValue::get(Context, E));
534 }
535 }
536
Florian Hahnffc498d2017-06-14 13:14:38 +0000537 /// Upgrade the expression from previous versions.
538 Error upgradeDIExpression(uint64_t FromVersion,
539 MutableArrayRef<uint64_t> &Expr,
540 SmallVectorImpl<uint64_t> &Buffer) {
541 auto N = Expr.size();
542 switch (FromVersion) {
543 default:
544 return error("Invalid record");
545 case 0:
546 if (N >= 3 && Expr[N - 3] == dwarf::DW_OP_bit_piece)
547 Expr[N - 3] = dwarf::DW_OP_LLVM_fragment;
548 LLVM_FALLTHROUGH;
549 case 1:
550 // Move DW_OP_deref to the end.
551 if (N && Expr[0] == dwarf::DW_OP_deref) {
552 auto End = Expr.end();
553 if (Expr.size() >= 3 &&
554 *std::prev(End, 3) == dwarf::DW_OP_LLVM_fragment)
555 End = std::prev(End, 3);
556 std::move(std::next(Expr.begin()), End, Expr.begin());
557 *std::prev(End) = dwarf::DW_OP_deref;
558 }
559 NeedDeclareExpressionUpgrade = true;
560 LLVM_FALLTHROUGH;
561 case 2: {
562 // Change DW_OP_plus to DW_OP_plus_uconst.
563 // Change DW_OP_minus to DW_OP_uconst, DW_OP_minus
564 auto SubExpr = ArrayRef<uint64_t>(Expr);
565 while (!SubExpr.empty()) {
566 // Skip past other operators with their operands
567 // for this version of the IR, obtained from
568 // from historic DIExpression::ExprOperand::getSize().
569 size_t HistoricSize;
570 switch (SubExpr.front()) {
571 default:
572 HistoricSize = 1;
573 break;
574 case dwarf::DW_OP_constu:
575 case dwarf::DW_OP_minus:
576 case dwarf::DW_OP_plus:
577 HistoricSize = 2;
578 break;
579 case dwarf::DW_OP_LLVM_fragment:
580 HistoricSize = 3;
581 break;
582 }
583
584 // If the expression is malformed, make sure we don't
585 // copy more elements than we should.
586 HistoricSize = std::min(SubExpr.size(), HistoricSize);
587 ArrayRef<uint64_t> Args = SubExpr.slice(1, HistoricSize-1);
588
589 switch (SubExpr.front()) {
590 case dwarf::DW_OP_plus:
591 Buffer.push_back(dwarf::DW_OP_plus_uconst);
592 Buffer.append(Args.begin(), Args.end());
593 break;
594 case dwarf::DW_OP_minus:
595 Buffer.push_back(dwarf::DW_OP_constu);
596 Buffer.append(Args.begin(), Args.end());
597 Buffer.push_back(dwarf::DW_OP_minus);
598 break;
599 default:
600 Buffer.push_back(*SubExpr.begin());
601 Buffer.append(Args.begin(), Args.end());
602 break;
603 }
604
605 // Continue with remaining elements.
606 SubExpr = SubExpr.slice(HistoricSize);
607 }
608 Expr = MutableArrayRef<uint64_t>(Buffer);
609 LLVM_FALLTHROUGH;
610 }
611 case 3:
612 // Up-to-date!
613 break;
614 }
615
616 return Error::success();
617 }
618
Adrian Prantle37d3142017-02-07 17:35:41 +0000619 void upgradeDebugInfo() {
620 upgradeCUSubprograms();
621 upgradeCUVariables();
622 }
623
Mehdi Aminief27db82016-12-12 19:34:26 +0000624public:
625 MetadataLoaderImpl(BitstreamCursor &Stream, Module &TheModule,
626 BitcodeReaderValueList &ValueList,
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000627 std::function<Type *(unsigned)> getTypeByID,
628 bool IsImporting)
Mehdi Aminief27db82016-12-12 19:34:26 +0000629 : MetadataList(TheModule.getContext()), ValueList(ValueList),
630 Stream(Stream), Context(TheModule.getContext()), TheModule(TheModule),
Benjamin Kramer061f4a52017-01-13 14:39:03 +0000631 getTypeByID(std::move(getTypeByID)), IsImporting(IsImporting) {}
Mehdi Aminief27db82016-12-12 19:34:26 +0000632
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000633 Error parseMetadata(bool ModuleLevel);
Mehdi Aminief27db82016-12-12 19:34:26 +0000634
635 bool hasFwdRefs() const { return MetadataList.hasFwdRefs(); }
Mehdi Amini3bb4d012017-01-20 20:29:16 +0000636
637 Metadata *getMetadataFwdRefOrLoad(unsigned ID) {
638 if (ID < MDStringRef.size())
639 return lazyLoadOneMDString(ID);
640 if (auto *MD = MetadataList.lookup(ID))
641 return MD;
642 // If lazy-loading is enabled, we try recursively to load the operand
643 // instead of creating a temporary.
644 if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
645 PlaceholderQueue Placeholders;
646 lazyLoadOneMetadata(ID, Placeholders);
647 resolveForwardRefsAndPlaceholders(Placeholders);
648 return MetadataList.lookup(ID);
649 }
650 return MetadataList.getMetadataFwdRef(ID);
Mehdi Aminief27db82016-12-12 19:34:26 +0000651 }
652
653 MDNode *getMDNodeFwdRefOrNull(unsigned Idx) {
654 return MetadataList.getMDNodeFwdRefOrNull(Idx);
655 }
656
657 DISubprogram *lookupSubprogramForFunction(Function *F) {
658 return FunctionsWithSPs.lookup(F);
659 }
660
661 bool hasSeenOldLoopTags() { return HasSeenOldLoopTags; }
662
663 Error parseMetadataAttachment(
664 Function &F, const SmallVectorImpl<Instruction *> &InstructionList);
665
666 Error parseMetadataKinds();
667
Mehdi Amini86623052016-12-16 19:16:29 +0000668 void setStripTBAA(bool Value) { StripTBAA = Value; }
669 bool isStrippingTBAA() { return StripTBAA; }
670
Mehdi Aminief27db82016-12-12 19:34:26 +0000671 unsigned size() const { return MetadataList.size(); }
672 void shrinkTo(unsigned N) { MetadataList.shrinkTo(N); }
Adrian Prantl6825fb62017-04-18 01:21:53 +0000673 void upgradeDebugIntrinsics(Function &F) { upgradeDeclareExpressions(F); }
Mehdi Aminief27db82016-12-12 19:34:26 +0000674};
675
Mehdi Amini42ef1992017-01-07 18:31:38 +0000676Expected<bool>
677MetadataLoader::MetadataLoaderImpl::lazyLoadModuleMetadataBlock() {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000678 IndexCursor = Stream;
679 SmallVector<uint64_t, 64> Record;
680 // Get the abbrevs, and preload record positions to make them lazy-loadable.
681 while (true) {
682 BitstreamEntry Entry = IndexCursor.advanceSkippingSubblocks(
683 BitstreamCursor::AF_DontPopBlockAtEnd);
684 switch (Entry.Kind) {
685 case BitstreamEntry::SubBlock: // Handled for us already.
686 case BitstreamEntry::Error:
687 return error("Malformed block");
688 case BitstreamEntry::EndBlock: {
689 return true;
690 }
691 case BitstreamEntry::Record: {
692 // The interesting case.
693 ++NumMDRecordLoaded;
694 uint64_t CurrentPos = IndexCursor.GetCurrentBitNo();
695 auto Code = IndexCursor.skipRecord(Entry.ID);
696 switch (Code) {
697 case bitc::METADATA_STRINGS: {
698 // Rewind and parse the strings.
699 IndexCursor.JumpToBit(CurrentPos);
700 StringRef Blob;
701 Record.clear();
702 IndexCursor.readRecord(Entry.ID, Record, &Blob);
703 unsigned NumStrings = Record[0];
704 MDStringRef.reserve(NumStrings);
705 auto IndexNextMDString = [&](StringRef Str) {
706 MDStringRef.push_back(Str);
707 };
708 if (auto Err = parseMetadataStrings(Record, Blob, IndexNextMDString))
709 return std::move(Err);
710 break;
711 }
712 case bitc::METADATA_INDEX_OFFSET: {
713 // This is the offset to the index, when we see this we skip all the
714 // records and load only an index to these.
715 IndexCursor.JumpToBit(CurrentPos);
716 Record.clear();
717 IndexCursor.readRecord(Entry.ID, Record);
718 if (Record.size() != 2)
719 return error("Invalid record");
720 auto Offset = Record[0] + (Record[1] << 32);
721 auto BeginPos = IndexCursor.GetCurrentBitNo();
722 IndexCursor.JumpToBit(BeginPos + Offset);
723 Entry = IndexCursor.advanceSkippingSubblocks(
724 BitstreamCursor::AF_DontPopBlockAtEnd);
725 assert(Entry.Kind == BitstreamEntry::Record &&
726 "Corrupted bitcode: Expected `Record` when trying to find the "
727 "Metadata index");
728 Record.clear();
729 auto Code = IndexCursor.readRecord(Entry.ID, Record);
730 (void)Code;
731 assert(Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "
732 "`METADATA_INDEX` when trying "
733 "to find the Metadata index");
734
735 // Delta unpack
736 auto CurrentValue = BeginPos;
737 GlobalMetadataBitPosIndex.reserve(Record.size());
738 for (auto &Elt : Record) {
739 CurrentValue += Elt;
740 GlobalMetadataBitPosIndex.push_back(CurrentValue);
741 }
742 break;
743 }
744 case bitc::METADATA_INDEX:
745 // We don't expect to get there, the Index is loaded when we encounter
746 // the offset.
747 return error("Corrupted Metadata block");
748 case bitc::METADATA_NAME: {
749 // Named metadata need to be materialized now and aren't deferred.
750 IndexCursor.JumpToBit(CurrentPos);
751 Record.clear();
752 unsigned Code = IndexCursor.readRecord(Entry.ID, Record);
753 assert(Code == bitc::METADATA_NAME);
754
755 // Read name of the named metadata.
756 SmallString<8> Name(Record.begin(), Record.end());
757 Code = IndexCursor.ReadCode();
758
759 // Named Metadata comes in two parts, we expect the name to be followed
760 // by the node
761 Record.clear();
762 unsigned NextBitCode = IndexCursor.readRecord(Code, Record);
763 assert(NextBitCode == bitc::METADATA_NAMED_NODE);
764 (void)NextBitCode;
765
766 // Read named metadata elements.
767 unsigned Size = Record.size();
768 NamedMDNode *NMD = TheModule.getOrInsertNamedMetadata(Name);
769 for (unsigned i = 0; i != Size; ++i) {
770 // FIXME: We could use a placeholder here, however NamedMDNode are
771 // taking MDNode as operand and not using the Metadata infrastructure.
772 // It is acknowledged by 'TODO: Inherit from Metadata' in the
773 // NamedMDNode class definition.
774 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[i]);
775 assert(MD && "Invalid record");
776 NMD->addOperand(MD);
777 }
778 break;
779 }
780 case bitc::METADATA_GLOBAL_DECL_ATTACHMENT: {
781 // FIXME: we need to do this early because we don't materialize global
782 // value explicitly.
783 IndexCursor.JumpToBit(CurrentPos);
784 Record.clear();
785 IndexCursor.readRecord(Entry.ID, Record);
786 if (Record.size() % 2 == 0)
787 return error("Invalid record");
788 unsigned ValueID = Record[0];
789 if (ValueID >= ValueList.size())
790 return error("Invalid record");
791 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID]))
792 if (Error Err = parseGlobalObjectAttachment(
793 *GO, ArrayRef<uint64_t>(Record).slice(1)))
794 return std::move(Err);
795 break;
796 }
797 case bitc::METADATA_KIND:
798 case bitc::METADATA_STRING_OLD:
799 case bitc::METADATA_OLD_FN_NODE:
800 case bitc::METADATA_OLD_NODE:
801 case bitc::METADATA_VALUE:
802 case bitc::METADATA_DISTINCT_NODE:
803 case bitc::METADATA_NODE:
804 case bitc::METADATA_LOCATION:
805 case bitc::METADATA_GENERIC_DEBUG:
806 case bitc::METADATA_SUBRANGE:
807 case bitc::METADATA_ENUMERATOR:
808 case bitc::METADATA_BASIC_TYPE:
809 case bitc::METADATA_DERIVED_TYPE:
810 case bitc::METADATA_COMPOSITE_TYPE:
811 case bitc::METADATA_SUBROUTINE_TYPE:
812 case bitc::METADATA_MODULE:
813 case bitc::METADATA_FILE:
814 case bitc::METADATA_COMPILE_UNIT:
815 case bitc::METADATA_SUBPROGRAM:
816 case bitc::METADATA_LEXICAL_BLOCK:
817 case bitc::METADATA_LEXICAL_BLOCK_FILE:
818 case bitc::METADATA_NAMESPACE:
819 case bitc::METADATA_MACRO:
820 case bitc::METADATA_MACRO_FILE:
821 case bitc::METADATA_TEMPLATE_TYPE:
822 case bitc::METADATA_TEMPLATE_VALUE:
823 case bitc::METADATA_GLOBAL_VAR:
824 case bitc::METADATA_LOCAL_VAR:
Shiva Chen2c864552018-05-09 02:40:45 +0000825 case bitc::METADATA_LABEL:
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000826 case bitc::METADATA_EXPRESSION:
827 case bitc::METADATA_OBJC_PROPERTY:
828 case bitc::METADATA_IMPORTED_ENTITY:
829 case bitc::METADATA_GLOBAL_VAR_EXPR:
830 // We don't expect to see any of these, if we see one, give up on
831 // lazy-loading and fallback.
832 MDStringRef.clear();
833 GlobalMetadataBitPosIndex.clear();
834 return false;
835 }
836 break;
837 }
838 }
839 }
840}
841
Mehdi Aminief27db82016-12-12 19:34:26 +0000842/// Parse a METADATA_BLOCK. If ModuleLevel is true then we are parsing
843/// module level metadata.
Mehdi Aminiec68dd42016-12-23 02:20:02 +0000844Error MetadataLoader::MetadataLoaderImpl::parseMetadata(bool ModuleLevel) {
Mehdi Aminief27db82016-12-12 19:34:26 +0000845 if (!ModuleLevel && MetadataList.hasFwdRefs())
846 return error("Invalid metadata: fwd refs into function blocks");
847
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000848 // Record the entry position so that we can jump back here and efficiently
849 // skip the whole block in case we lazy-load.
850 auto EntryPos = Stream.GetCurrentBitNo();
851
Mehdi Aminief27db82016-12-12 19:34:26 +0000852 if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
853 return error("Invalid record");
854
Mehdi Aminief27db82016-12-12 19:34:26 +0000855 SmallVector<uint64_t, 64> Record;
Mehdi Aminief27db82016-12-12 19:34:26 +0000856 PlaceholderQueue Placeholders;
Mehdi Amini9f926f72016-12-23 03:59:18 +0000857
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000858 // We lazy-load module-level metadata: we build an index for each record, and
859 // then load individual record as needed, starting with the named metadata.
860 if (ModuleLevel && IsImporting && MetadataList.empty() &&
861 !DisableLazyLoading) {
Mehdi Amini42ef1992017-01-07 18:31:38 +0000862 auto SuccessOrErr = lazyLoadModuleMetadataBlock();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000863 if (!SuccessOrErr)
864 return SuccessOrErr.takeError();
865 if (SuccessOrErr.get()) {
866 // An index was successfully created and we will be able to load metadata
867 // on-demand.
868 MetadataList.resize(MDStringRef.size() +
869 GlobalMetadataBitPosIndex.size());
870
871 // Reading the named metadata created forward references and/or
872 // placeholders, that we flush here.
873 resolveForwardRefsAndPlaceholders(Placeholders);
Adrian Prantle37d3142017-02-07 17:35:41 +0000874 upgradeDebugInfo();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000875 // Return at the beginning of the block, since it is easy to skip it
876 // entirely from there.
877 Stream.ReadBlockEnd(); // Pop the abbrev block context.
878 Stream.JumpToBit(EntryPos);
879 if (Stream.SkipBlock())
880 return error("Invalid record");
881 return Error::success();
882 }
883 // Couldn't load an index, fallback to loading all the block "old-style".
884 }
885
886 unsigned NextMetadataNo = MetadataList.size();
887
Mehdi Amini9f926f72016-12-23 03:59:18 +0000888 // Read all the records.
889 while (true) {
890 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
891
892 switch (Entry.Kind) {
893 case BitstreamEntry::SubBlock: // Handled for us already.
894 case BitstreamEntry::Error:
895 return error("Malformed block");
896 case BitstreamEntry::EndBlock:
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000897 resolveForwardRefsAndPlaceholders(Placeholders);
Adrian Prantle37d3142017-02-07 17:35:41 +0000898 upgradeDebugInfo();
Mehdi Amini9f926f72016-12-23 03:59:18 +0000899 return Error::success();
900 case BitstreamEntry::Record:
901 // The interesting case.
902 break;
903 }
904
905 // Read a record.
906 Record.clear();
907 StringRef Blob;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000908 ++NumMDRecordLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +0000909 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000910 if (Error Err =
911 parseOneMetadata(Record, Code, Placeholders, Blob, NextMetadataNo))
Mehdi Amini9f926f72016-12-23 03:59:18 +0000912 return Err;
913 }
914}
915
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000916MDString *MetadataLoader::MetadataLoaderImpl::lazyLoadOneMDString(unsigned ID) {
917 ++NumMDStringLoaded;
918 if (Metadata *MD = MetadataList.lookup(ID))
919 return cast<MDString>(MD);
920 auto MDS = MDString::get(Context, MDStringRef[ID]);
921 MetadataList.assignValue(MDS, ID);
922 return MDS;
923}
924
925void MetadataLoader::MetadataLoaderImpl::lazyLoadOneMetadata(
926 unsigned ID, PlaceholderQueue &Placeholders) {
927 assert(ID < (MDStringRef.size()) + GlobalMetadataBitPosIndex.size());
928 assert(ID >= MDStringRef.size() && "Unexpected lazy-loading of MDString");
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000929 // Lookup first if the metadata hasn't already been loaded.
930 if (auto *MD = MetadataList.lookup(ID)) {
931 auto *N = dyn_cast_or_null<MDNode>(MD);
Mehdi Amini67d2cc12017-01-18 18:36:21 +0000932 if (!N->isTemporary())
933 return;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000934 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000935 SmallVector<uint64_t, 64> Record;
936 StringRef Blob;
937 IndexCursor.JumpToBit(GlobalMetadataBitPosIndex[ID - MDStringRef.size()]);
938 auto Entry = IndexCursor.advanceSkippingSubblocks();
939 ++NumMDRecordLoaded;
940 unsigned Code = IndexCursor.readRecord(Entry.ID, Record, &Blob);
941 if (Error Err = parseOneMetadata(Record, Code, Placeholders, Blob, ID))
942 report_fatal_error("Can't lazyload MD");
943}
944
945/// Ensure that all forward-references and placeholders are resolved.
946/// Iteratively lazy-loading metadata on-demand if needed.
947void MetadataLoader::MetadataLoaderImpl::resolveForwardRefsAndPlaceholders(
948 PlaceholderQueue &Placeholders) {
949 DenseSet<unsigned> Temporaries;
950 while (1) {
951 // Populate Temporaries with the placeholders that haven't been loaded yet.
952 Placeholders.getTemporaries(MetadataList, Temporaries);
953
954 // If we don't have any temporary, or FwdReference, we're done!
955 if (Temporaries.empty() && !MetadataList.hasFwdRefs())
956 break;
957
958 // First, load all the temporaries. This can add new placeholders or
959 // forward references.
960 for (auto ID : Temporaries)
961 lazyLoadOneMetadata(ID, Placeholders);
962 Temporaries.clear();
963
964 // Second, load the forward-references. This can also add new placeholders
965 // or forward references.
966 while (MetadataList.hasFwdRefs())
967 lazyLoadOneMetadata(MetadataList.getNextFwdRef(), Placeholders);
968 }
969 // At this point we don't have any forward reference remaining, or temporary
970 // that haven't been loaded. We can safely drop RAUW support and mark cycles
971 // as resolved.
972 MetadataList.tryToResolveCycles();
973
974 // Finally, everything is in place, we can replace the placeholders operands
975 // with the final node they refer to.
976 Placeholders.flush(MetadataList);
977}
978
Mehdi Amini9f926f72016-12-23 03:59:18 +0000979Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
980 SmallVectorImpl<uint64_t> &Record, unsigned Code,
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000981 PlaceholderQueue &Placeholders, StringRef Blob, unsigned &NextMetadataNo) {
Mehdi Amini9f926f72016-12-23 03:59:18 +0000982
983 bool IsDistinct = false;
Mehdi Aminief27db82016-12-12 19:34:26 +0000984 auto getMD = [&](unsigned ID) -> Metadata * {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +0000985 if (ID < MDStringRef.size())
986 return lazyLoadOneMDString(ID);
Mehdi Amini67d2cc12017-01-18 18:36:21 +0000987 if (!IsDistinct) {
988 if (auto *MD = MetadataList.lookup(ID))
989 return MD;
990 // If lazy-loading is enabled, we try recursively to load the operand
991 // instead of creating a temporary.
992 if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
993 // Create a temporary for the node that is referencing the operand we
994 // will lazy-load. It is needed before recursing in case there are
995 // uniquing cycles.
996 MetadataList.getMetadataFwdRef(NextMetadataNo);
997 lazyLoadOneMetadata(ID, Placeholders);
998 return MetadataList.lookup(ID);
999 }
1000 // Return a temporary.
Mehdi Aminief27db82016-12-12 19:34:26 +00001001 return MetadataList.getMetadataFwdRef(ID);
Mehdi Amini67d2cc12017-01-18 18:36:21 +00001002 }
Mehdi Aminief27db82016-12-12 19:34:26 +00001003 if (auto *MD = MetadataList.getMetadataIfResolved(ID))
1004 return MD;
1005 return &Placeholders.getPlaceholderOp(ID);
1006 };
1007 auto getMDOrNull = [&](unsigned ID) -> Metadata * {
1008 if (ID)
1009 return getMD(ID - 1);
1010 return nullptr;
1011 };
1012 auto getMDOrNullWithoutPlaceholders = [&](unsigned ID) -> Metadata * {
1013 if (ID)
1014 return MetadataList.getMetadataFwdRef(ID - 1);
1015 return nullptr;
1016 };
1017 auto getMDString = [&](unsigned ID) -> MDString * {
1018 // This requires that the ID is not really a forward reference. In
1019 // particular, the MDString must already have been resolved.
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001020 auto MDS = getMDOrNull(ID);
1021 return cast_or_null<MDString>(MDS);
Mehdi Aminief27db82016-12-12 19:34:26 +00001022 };
1023
1024 // Support for old type refs.
1025 auto getDITypeRefOrNull = [&](unsigned ID) {
1026 return MetadataList.upgradeTypeRef(getMDOrNull(ID));
1027 };
1028
1029#define GET_OR_DISTINCT(CLASS, ARGS) \
1030 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
1031
Mehdi Amini9f926f72016-12-23 03:59:18 +00001032 switch (Code) {
1033 default: // Default behavior: ignore.
1034 break;
1035 case bitc::METADATA_NAME: {
1036 // Read name of the named metadata.
1037 SmallString<8> Name(Record.begin(), Record.end());
Mehdi Aminief27db82016-12-12 19:34:26 +00001038 Record.clear();
Mehdi Amini9f926f72016-12-23 03:59:18 +00001039 Code = Stream.ReadCode();
Mehdi Aminief27db82016-12-12 19:34:26 +00001040
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001041 ++NumMDRecordLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001042 unsigned NextBitCode = Stream.readRecord(Code, Record);
1043 if (NextBitCode != bitc::METADATA_NAMED_NODE)
1044 return error("METADATA_NAME not followed by METADATA_NAMED_NODE");
Mehdi Aminief27db82016-12-12 19:34:26 +00001045
Mehdi Amini9f926f72016-12-23 03:59:18 +00001046 // Read named metadata elements.
1047 unsigned Size = Record.size();
1048 NamedMDNode *NMD = TheModule.getOrInsertNamedMetadata(Name);
1049 for (unsigned i = 0; i != Size; ++i) {
1050 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[i]);
1051 if (!MD)
1052 return error("Invalid record");
1053 NMD->addOperand(MD);
1054 }
1055 break;
1056 }
1057 case bitc::METADATA_OLD_FN_NODE: {
1058 // FIXME: Remove in 4.0.
1059 // This is a LocalAsMetadata record, the only type of function-local
1060 // metadata.
1061 if (Record.size() % 2 == 1)
1062 return error("Invalid record");
1063
1064 // If this isn't a LocalAsMetadata record, we're dropping it. This used
1065 // to be legal, but there's no upgrade path.
1066 auto dropRecord = [&] {
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001067 MetadataList.assignValue(MDNode::get(Context, None), NextMetadataNo);
1068 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001069 };
1070 if (Record.size() != 2) {
1071 dropRecord();
Mehdi Aminief27db82016-12-12 19:34:26 +00001072 break;
1073 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001074
1075 Type *Ty = getTypeByID(Record[0]);
1076 if (Ty->isMetadataTy() || Ty->isVoidTy()) {
1077 dropRecord();
1078 break;
1079 }
1080
1081 MetadataList.assignValue(
1082 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001083 NextMetadataNo);
1084 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001085 break;
1086 }
1087 case bitc::METADATA_OLD_NODE: {
1088 // FIXME: Remove in 4.0.
1089 if (Record.size() % 2 == 1)
1090 return error("Invalid record");
1091
1092 unsigned Size = Record.size();
1093 SmallVector<Metadata *, 8> Elts;
1094 for (unsigned i = 0; i != Size; i += 2) {
1095 Type *Ty = getTypeByID(Record[i]);
1096 if (!Ty)
Mehdi Aminief27db82016-12-12 19:34:26 +00001097 return error("Invalid record");
Mehdi Amini9f926f72016-12-23 03:59:18 +00001098 if (Ty->isMetadataTy())
1099 Elts.push_back(getMD(Record[i + 1]));
1100 else if (!Ty->isVoidTy()) {
1101 auto *MD =
1102 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty));
1103 assert(isa<ConstantAsMetadata>(MD) &&
1104 "Expected non-function-local metadata");
1105 Elts.push_back(MD);
1106 } else
1107 Elts.push_back(nullptr);
1108 }
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001109 MetadataList.assignValue(MDNode::get(Context, Elts), NextMetadataNo);
1110 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001111 break;
1112 }
1113 case bitc::METADATA_VALUE: {
1114 if (Record.size() != 2)
1115 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001116
Mehdi Amini9f926f72016-12-23 03:59:18 +00001117 Type *Ty = getTypeByID(Record[0]);
1118 if (Ty->isMetadataTy() || Ty->isVoidTy())
1119 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001120
Mehdi Amini9f926f72016-12-23 03:59:18 +00001121 MetadataList.assignValue(
1122 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001123 NextMetadataNo);
1124 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001125 break;
1126 }
1127 case bitc::METADATA_DISTINCT_NODE:
1128 IsDistinct = true;
1129 LLVM_FALLTHROUGH;
1130 case bitc::METADATA_NODE: {
1131 SmallVector<Metadata *, 8> Elts;
1132 Elts.reserve(Record.size());
1133 for (unsigned ID : Record)
1134 Elts.push_back(getMDOrNull(ID));
1135 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts)
1136 : MDNode::get(Context, Elts),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001137 NextMetadataNo);
1138 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001139 break;
1140 }
1141 case bitc::METADATA_LOCATION: {
Vedant Kumar386ad012018-09-20 18:59:33 +00001142 if (Record.size() != 5 && Record.size() != 6)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001143 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001144
Mehdi Amini9f926f72016-12-23 03:59:18 +00001145 IsDistinct = Record[0];
1146 unsigned Line = Record[1];
1147 unsigned Column = Record[2];
1148 Metadata *Scope = getMD(Record[3]);
1149 Metadata *InlinedAt = getMDOrNull(Record[4]);
Vedant Kumar386ad012018-09-20 18:59:33 +00001150 bool ImplicitCode = Record.size() == 6 && Record[5];
Mehdi Amini9f926f72016-12-23 03:59:18 +00001151 MetadataList.assignValue(
Calixte Denizeteb7f6022018-09-20 08:53:06 +00001152 GET_OR_DISTINCT(DILocation, (Context, Line, Column, Scope, InlinedAt,
1153 ImplicitCode)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001154 NextMetadataNo);
1155 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001156 break;
1157 }
1158 case bitc::METADATA_GENERIC_DEBUG: {
1159 if (Record.size() < 4)
1160 return error("Invalid record");
1161
1162 IsDistinct = Record[0];
1163 unsigned Tag = Record[1];
1164 unsigned Version = Record[2];
1165
1166 if (Tag >= 1u << 16 || Version != 0)
1167 return error("Invalid record");
1168
1169 auto *Header = getMDString(Record[3]);
1170 SmallVector<Metadata *, 8> DwarfOps;
1171 for (unsigned I = 4, E = Record.size(); I != E; ++I)
1172 DwarfOps.push_back(getMDOrNull(Record[I]));
1173 MetadataList.assignValue(
1174 GET_OR_DISTINCT(GenericDINode, (Context, Tag, Header, DwarfOps)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001175 NextMetadataNo);
1176 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001177 break;
1178 }
1179 case bitc::METADATA_SUBRANGE: {
Sander de Smalenfdf40912018-01-24 09:56:07 +00001180 Metadata *Val = nullptr;
1181 // Operand 'count' is interpreted as:
1182 // - Signed integer (version 0)
1183 // - Metadata node (version 1)
1184 switch (Record[0] >> 1) {
1185 case 0:
1186 Val = GET_OR_DISTINCT(DISubrange,
1187 (Context, Record[1], unrotateSign(Record.back())));
1188 break;
1189 case 1:
1190 Val = GET_OR_DISTINCT(DISubrange, (Context, getMDOrNull(Record[1]),
1191 unrotateSign(Record.back())));
1192 break;
1193 default:
1194 return error("Invalid record: Unsupported version of DISubrange");
1195 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001196
Sander de Smalenfdf40912018-01-24 09:56:07 +00001197 MetadataList.assignValue(Val, NextMetadataNo);
1198 IsDistinct = Record[0] & 1;
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001199 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001200 break;
1201 }
1202 case bitc::METADATA_ENUMERATOR: {
1203 if (Record.size() != 3)
1204 return error("Invalid record");
1205
Momchil Velikov08dc66e2018-02-12 16:10:09 +00001206 IsDistinct = Record[0] & 1;
1207 bool IsUnsigned = Record[0] & 2;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001208 MetadataList.assignValue(
1209 GET_OR_DISTINCT(DIEnumerator, (Context, unrotateSign(Record[1]),
Momchil Velikov08dc66e2018-02-12 16:10:09 +00001210 IsUnsigned, getMDString(Record[2]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001211 NextMetadataNo);
1212 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001213 break;
1214 }
1215 case bitc::METADATA_BASIC_TYPE: {
Adrian Prantl55f42622018-08-14 19:35:34 +00001216 if (Record.size() < 6 || Record.size() > 7)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001217 return error("Invalid record");
1218
1219 IsDistinct = Record[0];
Adrian Prantl55f42622018-08-14 19:35:34 +00001220 DINode::DIFlags Flags = (Record.size() > 6) ?
1221 static_cast<DINode::DIFlags>(Record[6]) : DINode::FlagZero;
1222
Mehdi Amini9f926f72016-12-23 03:59:18 +00001223 MetadataList.assignValue(
1224 GET_OR_DISTINCT(DIBasicType,
1225 (Context, Record[1], getMDString(Record[2]), Record[3],
Adrian Prantl55f42622018-08-14 19:35:34 +00001226 Record[4], Record[5], Flags)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001227 NextMetadataNo);
1228 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001229 break;
1230 }
1231 case bitc::METADATA_DERIVED_TYPE: {
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001232 if (Record.size() < 12 || Record.size() > 13)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001233 return error("Invalid record");
1234
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001235 // DWARF address space is encoded as N->getDWARFAddressSpace() + 1. 0 means
1236 // that there is no DWARF address space associated with DIDerivedType.
1237 Optional<unsigned> DWARFAddressSpace;
1238 if (Record.size() > 12 && Record[12])
1239 DWARFAddressSpace = Record[12] - 1;
1240
Mehdi Amini9f926f72016-12-23 03:59:18 +00001241 IsDistinct = Record[0];
1242 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1243 MetadataList.assignValue(
1244 GET_OR_DISTINCT(DIDerivedType,
1245 (Context, Record[1], getMDString(Record[2]),
1246 getMDOrNull(Record[3]), Record[4],
1247 getDITypeRefOrNull(Record[5]),
1248 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +00001249 Record[9], DWARFAddressSpace, Flags,
1250 getDITypeRefOrNull(Record[11]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001251 NextMetadataNo);
1252 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001253 break;
1254 }
1255 case bitc::METADATA_COMPOSITE_TYPE: {
Adrian Prantl8c599212018-02-06 23:45:59 +00001256 if (Record.size() < 16 || Record.size() > 17)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001257 return error("Invalid record");
1258
1259 // If we have a UUID and this is not a forward declaration, lookup the
1260 // mapping.
1261 IsDistinct = Record[0] & 0x1;
1262 bool IsNotUsedInTypeRef = Record[0] >= 2;
1263 unsigned Tag = Record[1];
1264 MDString *Name = getMDString(Record[2]);
1265 Metadata *File = getMDOrNull(Record[3]);
1266 unsigned Line = Record[4];
1267 Metadata *Scope = getDITypeRefOrNull(Record[5]);
1268 Metadata *BaseType = nullptr;
1269 uint64_t SizeInBits = Record[7];
1270 if (Record[8] > (uint64_t)std::numeric_limits<uint32_t>::max())
1271 return error("Alignment value is too large");
1272 uint32_t AlignInBits = Record[8];
1273 uint64_t OffsetInBits = 0;
1274 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1275 Metadata *Elements = nullptr;
1276 unsigned RuntimeLang = Record[12];
1277 Metadata *VTableHolder = nullptr;
1278 Metadata *TemplateParams = nullptr;
Adrian Prantl8c599212018-02-06 23:45:59 +00001279 Metadata *Discriminator = nullptr;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001280 auto *Identifier = getMDString(Record[15]);
1281 // If this module is being parsed so that it can be ThinLTO imported
1282 // into another module, composite types only need to be imported
1283 // as type declarations (unless full type definitions requested).
1284 // Create type declarations up front to save memory. Also, buildODRType
1285 // handles the case where this is type ODRed with a definition needed
1286 // by the importing module, in which case the existing definition is
1287 // used.
Teresa Johnson5a8dba52017-01-03 23:19:29 +00001288 if (IsImporting && !ImportFullTypeDefinitions && Identifier &&
Mehdi Amini9f926f72016-12-23 03:59:18 +00001289 (Tag == dwarf::DW_TAG_enumeration_type ||
1290 Tag == dwarf::DW_TAG_class_type ||
1291 Tag == dwarf::DW_TAG_structure_type ||
1292 Tag == dwarf::DW_TAG_union_type)) {
1293 Flags = Flags | DINode::FlagFwdDecl;
1294 } else {
1295 BaseType = getDITypeRefOrNull(Record[6]);
1296 OffsetInBits = Record[9];
1297 Elements = getMDOrNull(Record[11]);
1298 VTableHolder = getDITypeRefOrNull(Record[13]);
1299 TemplateParams = getMDOrNull(Record[14]);
Adrian Prantl8c599212018-02-06 23:45:59 +00001300 if (Record.size() > 16)
1301 Discriminator = getMDOrNull(Record[16]);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001302 }
1303 DICompositeType *CT = nullptr;
1304 if (Identifier)
1305 CT = DICompositeType::buildODRType(
1306 Context, *Identifier, Tag, Name, File, Line, Scope, BaseType,
1307 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
Adrian Prantl8c599212018-02-06 23:45:59 +00001308 VTableHolder, TemplateParams, Discriminator);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001309
1310 // Create a node if we didn't get a lazy ODR type.
1311 if (!CT)
1312 CT = GET_OR_DISTINCT(DICompositeType,
1313 (Context, Tag, Name, File, Line, Scope, BaseType,
1314 SizeInBits, AlignInBits, OffsetInBits, Flags,
1315 Elements, RuntimeLang, VTableHolder, TemplateParams,
Jonas Devliegherea0c9cb12018-09-21 12:03:14 +00001316 Identifier, Discriminator));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001317 if (!IsNotUsedInTypeRef && Identifier)
1318 MetadataList.addTypeRef(*Identifier, *cast<DICompositeType>(CT));
1319
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001320 MetadataList.assignValue(CT, NextMetadataNo);
1321 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001322 break;
1323 }
1324 case bitc::METADATA_SUBROUTINE_TYPE: {
1325 if (Record.size() < 3 || Record.size() > 4)
1326 return error("Invalid record");
1327 bool IsOldTypeRefArray = Record[0] < 2;
1328 unsigned CC = (Record.size() > 3) ? Record[3] : 0;
1329
1330 IsDistinct = Record[0] & 0x1;
1331 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[1]);
1332 Metadata *Types = getMDOrNull(Record[2]);
1333 if (LLVM_UNLIKELY(IsOldTypeRefArray))
1334 Types = MetadataList.upgradeTypeRefArray(Types);
1335
1336 MetadataList.assignValue(
1337 GET_OR_DISTINCT(DISubroutineType, (Context, Flags, CC, Types)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001338 NextMetadataNo);
1339 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001340 break;
1341 }
1342
1343 case bitc::METADATA_MODULE: {
1344 if (Record.size() != 6)
1345 return error("Invalid record");
1346
1347 IsDistinct = Record[0];
1348 MetadataList.assignValue(
1349 GET_OR_DISTINCT(DIModule,
1350 (Context, getMDOrNull(Record[1]),
1351 getMDString(Record[2]), getMDString(Record[3]),
1352 getMDString(Record[4]), getMDString(Record[5]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001353 NextMetadataNo);
1354 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001355 break;
1356 }
1357
1358 case bitc::METADATA_FILE: {
Scott Linder16c7bda2018-02-23 23:01:06 +00001359 if (Record.size() != 3 && Record.size() != 5 && Record.size() != 6)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001360 return error("Invalid record");
1361
1362 IsDistinct = Record[0];
Scott Linder71603842018-02-12 19:45:54 +00001363 Optional<DIFile::ChecksumInfo<MDString *>> Checksum;
1364 // The BitcodeWriter writes null bytes into Record[3:4] when the Checksum
1365 // is not present. This matches up with the old internal representation,
1366 // and the old encoding for CSK_None in the ChecksumKind. The new
1367 // representation reserves the value 0 in the ChecksumKind to continue to
1368 // encode None in a backwards-compatible way.
Scott Linder16c7bda2018-02-23 23:01:06 +00001369 if (Record.size() > 4 && Record[3] && Record[4])
Scott Linder71603842018-02-12 19:45:54 +00001370 Checksum.emplace(static_cast<DIFile::ChecksumKind>(Record[3]),
1371 getMDString(Record[4]));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001372 MetadataList.assignValue(
1373 GET_OR_DISTINCT(
Amjad Aboud7faeecc2016-12-25 10:12:09 +00001374 DIFile,
Scott Linder16c7bda2018-02-23 23:01:06 +00001375 (Context, getMDString(Record[1]), getMDString(Record[2]), Checksum,
1376 Record.size() > 5 ? Optional<MDString *>(getMDString(Record[5]))
1377 : None)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001378 NextMetadataNo);
1379 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001380 break;
1381 }
1382 case bitc::METADATA_COMPILE_UNIT: {
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001383 if (Record.size() < 14 || Record.size() > 19)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001384 return error("Invalid record");
1385
1386 // Ignore Record[0], which indicates whether this compile unit is
1387 // distinct. It's always distinct.
1388 IsDistinct = true;
1389 auto *CU = DICompileUnit::getDistinct(
1390 Context, Record[1], getMDOrNull(Record[2]), getMDString(Record[3]),
1391 Record[4], getMDString(Record[5]), Record[6], getMDString(Record[7]),
1392 Record[8], getMDOrNull(Record[9]), getMDOrNull(Record[10]),
1393 getMDOrNull(Record[12]), getMDOrNull(Record[13]),
1394 Record.size() <= 15 ? nullptr : getMDOrNull(Record[15]),
1395 Record.size() <= 14 ? 0 : Record[14],
Dehao Chen0944a8c2017-02-01 22:45:09 +00001396 Record.size() <= 16 ? true : Record[16],
Peter Collingbourneb52e2362017-09-12 21:50:41 +00001397 Record.size() <= 17 ? false : Record[17],
David Blaikiebb279112018-11-13 20:08:10 +00001398 Record.size() <= 18 ? 0 : Record[18],
1399 Record.size() <= 19 ? 0 : Record[19]);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001400
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001401 MetadataList.assignValue(CU, NextMetadataNo);
1402 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001403
1404 // Move the Upgrade the list of subprograms.
1405 if (Metadata *SPs = getMDOrNullWithoutPlaceholders(Record[11]))
1406 CUSubprograms.push_back({CU, SPs});
1407 break;
1408 }
1409 case bitc::METADATA_SUBPROGRAM: {
Adrian Prantl1d12b882017-04-26 22:56:44 +00001410 if (Record.size() < 18 || Record.size() > 21)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001411 return error("Invalid record");
1412
1413 IsDistinct =
1414 (Record[0] & 1) || Record[8]; // All definitions should be distinct.
1415 // Version 1 has a Function as Record[15].
1416 // Version 2 has removed Record[15].
1417 // Version 3 has the Unit as Record[15].
1418 // Version 4 added thisAdjustment.
1419 bool HasUnit = Record[0] >= 2;
1420 if (HasUnit && Record.size() < 19)
1421 return error("Invalid record");
1422 Metadata *CUorFn = getMDOrNull(Record[15]);
1423 unsigned Offset = Record.size() >= 19 ? 1 : 0;
1424 bool HasFn = Offset && !HasUnit;
1425 bool HasThisAdj = Record.size() >= 20;
Adrian Prantl1d12b882017-04-26 22:56:44 +00001426 bool HasThrownTypes = Record.size() >= 21;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001427 DISubprogram *SP = GET_OR_DISTINCT(
Adrian Prantl1d12b882017-04-26 22:56:44 +00001428 DISubprogram,
1429 (Context,
1430 getDITypeRefOrNull(Record[1]), // scope
1431 getMDString(Record[2]), // name
1432 getMDString(Record[3]), // linkageName
1433 getMDOrNull(Record[4]), // file
1434 Record[5], // line
1435 getMDOrNull(Record[6]), // type
1436 Record[7], // isLocal
1437 Record[8], // isDefinition
1438 Record[9], // scopeLine
1439 getDITypeRefOrNull(Record[10]), // containingType
1440 Record[11], // virtuality
1441 Record[12], // virtualIndex
1442 HasThisAdj ? Record[19] : 0, // thisAdjustment
1443 static_cast<DINode::DIFlags>(Record[13]), // flags
1444 Record[14], // isOptimized
1445 HasUnit ? CUorFn : nullptr, // unit
1446 getMDOrNull(Record[15 + Offset]), // templateParams
1447 getMDOrNull(Record[16 + Offset]), // declaration
Shiva Chen2c864552018-05-09 02:40:45 +00001448 getMDOrNull(Record[17 + Offset]), // retainedNodes
Adrian Prantl1d12b882017-04-26 22:56:44 +00001449 HasThrownTypes ? getMDOrNull(Record[20]) : nullptr // thrownTypes
1450 ));
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001451 MetadataList.assignValue(SP, NextMetadataNo);
1452 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001453
1454 // Upgrade sp->function mapping to function->sp mapping.
1455 if (HasFn) {
1456 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(CUorFn))
1457 if (auto *F = dyn_cast<Function>(CMD->getValue())) {
1458 if (F->isMaterializable())
1459 // Defer until materialized; unmaterialized functions may not have
1460 // metadata.
1461 FunctionsWithSPs[F] = SP;
1462 else if (!F->empty())
1463 F->setSubprogram(SP);
1464 }
1465 }
1466 break;
1467 }
1468 case bitc::METADATA_LEXICAL_BLOCK: {
1469 if (Record.size() != 5)
1470 return error("Invalid record");
1471
1472 IsDistinct = Record[0];
1473 MetadataList.assignValue(
1474 GET_OR_DISTINCT(DILexicalBlock,
1475 (Context, getMDOrNull(Record[1]),
1476 getMDOrNull(Record[2]), Record[3], Record[4])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001477 NextMetadataNo);
1478 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001479 break;
1480 }
1481 case bitc::METADATA_LEXICAL_BLOCK_FILE: {
1482 if (Record.size() != 4)
1483 return error("Invalid record");
1484
1485 IsDistinct = Record[0];
1486 MetadataList.assignValue(
1487 GET_OR_DISTINCT(DILexicalBlockFile,
1488 (Context, getMDOrNull(Record[1]),
1489 getMDOrNull(Record[2]), Record[3])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001490 NextMetadataNo);
1491 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001492 break;
1493 }
1494 case bitc::METADATA_NAMESPACE: {
Adrian Prantlfed4f392017-04-28 22:25:46 +00001495 // Newer versions of DINamespace dropped file and line.
1496 MDString *Name;
1497 if (Record.size() == 3)
1498 Name = getMDString(Record[2]);
1499 else if (Record.size() == 5)
1500 Name = getMDString(Record[3]);
1501 else
Mehdi Amini9f926f72016-12-23 03:59:18 +00001502 return error("Invalid record");
1503
1504 IsDistinct = Record[0] & 1;
1505 bool ExportSymbols = Record[0] & 2;
1506 MetadataList.assignValue(
1507 GET_OR_DISTINCT(DINamespace,
Adrian Prantlfed4f392017-04-28 22:25:46 +00001508 (Context, getMDOrNull(Record[1]), Name, ExportSymbols)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001509 NextMetadataNo);
1510 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001511 break;
1512 }
1513 case bitc::METADATA_MACRO: {
1514 if (Record.size() != 5)
1515 return error("Invalid record");
1516
1517 IsDistinct = Record[0];
1518 MetadataList.assignValue(
1519 GET_OR_DISTINCT(DIMacro,
1520 (Context, Record[1], Record[2], getMDString(Record[3]),
1521 getMDString(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001522 NextMetadataNo);
1523 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001524 break;
1525 }
1526 case bitc::METADATA_MACRO_FILE: {
1527 if (Record.size() != 5)
1528 return error("Invalid record");
1529
1530 IsDistinct = Record[0];
1531 MetadataList.assignValue(
1532 GET_OR_DISTINCT(DIMacroFile,
1533 (Context, Record[1], Record[2], getMDOrNull(Record[3]),
1534 getMDOrNull(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001535 NextMetadataNo);
1536 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001537 break;
1538 }
1539 case bitc::METADATA_TEMPLATE_TYPE: {
1540 if (Record.size() != 3)
1541 return error("Invalid record");
1542
1543 IsDistinct = Record[0];
1544 MetadataList.assignValue(GET_OR_DISTINCT(DITemplateTypeParameter,
1545 (Context, getMDString(Record[1]),
1546 getDITypeRefOrNull(Record[2]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001547 NextMetadataNo);
1548 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001549 break;
1550 }
1551 case bitc::METADATA_TEMPLATE_VALUE: {
1552 if (Record.size() != 5)
1553 return error("Invalid record");
1554
1555 IsDistinct = Record[0];
1556 MetadataList.assignValue(
1557 GET_OR_DISTINCT(DITemplateValueParameter,
1558 (Context, Record[1], getMDString(Record[2]),
1559 getDITypeRefOrNull(Record[3]),
1560 getMDOrNull(Record[4]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001561 NextMetadataNo);
1562 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001563 break;
1564 }
1565 case bitc::METADATA_GLOBAL_VAR: {
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001566 if (Record.size() < 11 || Record.size() > 13)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001567 return error("Invalid record");
1568
1569 IsDistinct = Record[0] & 1;
1570 unsigned Version = Record[0] >> 1;
1571
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001572 if (Version == 2) {
1573 MetadataList.assignValue(
1574 GET_OR_DISTINCT(
1575 DIGlobalVariable,
1576 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1577 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1578 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1579 getMDOrNull(Record[9]), getMDOrNull(Record[10]), Record[11])),
1580 NextMetadataNo);
1581
1582 NextMetadataNo++;
1583 } else if (Version == 1) {
1584 // No upgrade necessary. A null field will be introduced to indicate
1585 // that no parameter information is available.
Mehdi Aminief27db82016-12-12 19:34:26 +00001586 MetadataList.assignValue(
Mehdi Amini9f926f72016-12-23 03:59:18 +00001587 GET_OR_DISTINCT(DIGlobalVariable,
Mehdi Aminief27db82016-12-12 19:34:26 +00001588 (Context, getMDOrNull(Record[1]),
1589 getMDString(Record[2]), getMDString(Record[3]),
Mehdi Amini9f926f72016-12-23 03:59:18 +00001590 getMDOrNull(Record[4]), Record[5],
1591 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001592 getMDOrNull(Record[10]), nullptr, Record[11])),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001593 NextMetadataNo);
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001594
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001595 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001596 } else if (Version == 0) {
1597 // Upgrade old metadata, which stored a global variable reference or a
1598 // ConstantInt here.
Adrian Prantla5bf2d72017-02-08 17:44:43 +00001599 NeedUpgradeToDIGlobalVariableExpression = true;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001600 Metadata *Expr = getMDOrNull(Record[9]);
Mehdi Aminief27db82016-12-12 19:34:26 +00001601 uint32_t AlignInBits = 0;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001602 if (Record.size() > 11) {
1603 if (Record[11] > (uint64_t)std::numeric_limits<uint32_t>::max())
Mehdi Aminief27db82016-12-12 19:34:26 +00001604 return error("Alignment value is too large");
Mehdi Amini9f926f72016-12-23 03:59:18 +00001605 AlignInBits = Record[11];
Mehdi Aminief27db82016-12-12 19:34:26 +00001606 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001607 GlobalVariable *Attach = nullptr;
1608 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(Expr)) {
1609 if (auto *GV = dyn_cast<GlobalVariable>(CMD->getValue())) {
1610 Attach = GV;
1611 Expr = nullptr;
1612 } else if (auto *CI = dyn_cast<ConstantInt>(CMD->getValue())) {
1613 Expr = DIExpression::get(Context,
1614 {dwarf::DW_OP_constu, CI->getZExtValue(),
1615 dwarf::DW_OP_stack_value});
1616 } else {
1617 Expr = nullptr;
1618 }
1619 }
1620 DIGlobalVariable *DGV = GET_OR_DISTINCT(
1621 DIGlobalVariable,
1622 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1623 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1624 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001625 getMDOrNull(Record[10]), nullptr, AlignInBits));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001626
Adrian Prantle37d3142017-02-07 17:35:41 +00001627 DIGlobalVariableExpression *DGVE = nullptr;
1628 if (Attach || Expr)
Adrian Prantl05782212017-08-30 18:06:51 +00001629 DGVE = DIGlobalVariableExpression::getDistinct(
1630 Context, DGV, Expr ? Expr : DIExpression::get(Context, {}));
Mehdi Amini9f926f72016-12-23 03:59:18 +00001631 if (Attach)
1632 Attach->addDebugInfo(DGVE);
Adrian Prantle37d3142017-02-07 17:35:41 +00001633
1634 auto *MDNode = Expr ? cast<Metadata>(DGVE) : cast<Metadata>(DGV);
1635 MetadataList.assignValue(MDNode, NextMetadataNo);
1636 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001637 } else
1638 return error("Invalid record");
1639
1640 break;
1641 }
1642 case bitc::METADATA_LOCAL_VAR: {
1643 // 10th field is for the obseleted 'inlinedAt:' field.
1644 if (Record.size() < 8 || Record.size() > 10)
1645 return error("Invalid record");
1646
1647 IsDistinct = Record[0] & 1;
1648 bool HasAlignment = Record[0] & 2;
1649 // 2nd field used to be an artificial tag, either DW_TAG_auto_variable or
1650 // DW_TAG_arg_variable, if we have alignment flag encoded it means, that
Simon Pilgrim68168d12017-03-30 12:59:53 +00001651 // this is newer version of record which doesn't have artificial tag.
Mehdi Amini9f926f72016-12-23 03:59:18 +00001652 bool HasTag = !HasAlignment && Record.size() > 8;
1653 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[7 + HasTag]);
1654 uint32_t AlignInBits = 0;
1655 if (HasAlignment) {
1656 if (Record[8 + HasTag] > (uint64_t)std::numeric_limits<uint32_t>::max())
1657 return error("Alignment value is too large");
1658 AlignInBits = Record[8 + HasTag];
Mehdi Aminief27db82016-12-12 19:34:26 +00001659 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001660 MetadataList.assignValue(
1661 GET_OR_DISTINCT(DILocalVariable,
1662 (Context, getMDOrNull(Record[1 + HasTag]),
1663 getMDString(Record[2 + HasTag]),
1664 getMDOrNull(Record[3 + HasTag]), Record[4 + HasTag],
1665 getDITypeRefOrNull(Record[5 + HasTag]),
1666 Record[6 + HasTag], Flags, AlignInBits)),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001667 NextMetadataNo);
1668 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001669 break;
1670 }
Shiva Chen2c864552018-05-09 02:40:45 +00001671 case bitc::METADATA_LABEL: {
1672 if (Record.size() != 5)
1673 return error("Invalid record");
1674
1675 IsDistinct = Record[0] & 1;
1676 MetadataList.assignValue(
1677 GET_OR_DISTINCT(DILabel,
1678 (Context, getMDOrNull(Record[1]),
1679 getMDString(Record[2]),
1680 getMDOrNull(Record[3]), Record[4])),
1681 NextMetadataNo);
1682 NextMetadataNo++;
1683 break;
1684 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001685 case bitc::METADATA_EXPRESSION: {
1686 if (Record.size() < 1)
1687 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001688
Mehdi Amini9f926f72016-12-23 03:59:18 +00001689 IsDistinct = Record[0] & 1;
Adrian Prantl6825fb62017-04-18 01:21:53 +00001690 uint64_t Version = Record[0] >> 1;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001691 auto Elts = MutableArrayRef<uint64_t>(Record).slice(1);
Florian Hahnffc498d2017-06-14 13:14:38 +00001692
1693 SmallVector<uint64_t, 6> Buffer;
1694 if (Error Err = upgradeDIExpression(Version, Elts, Buffer))
1695 return Err;
Mehdi Aminief27db82016-12-12 19:34:26 +00001696
Mehdi Amini9f926f72016-12-23 03:59:18 +00001697 MetadataList.assignValue(
Florian Hahnffc498d2017-06-14 13:14:38 +00001698 GET_OR_DISTINCT(DIExpression, (Context, Elts)), NextMetadataNo);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001699 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001700 break;
1701 }
1702 case bitc::METADATA_GLOBAL_VAR_EXPR: {
1703 if (Record.size() != 3)
1704 return error("Invalid record");
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001705
Mehdi Amini9f926f72016-12-23 03:59:18 +00001706 IsDistinct = Record[0];
Adrian Prantl05782212017-08-30 18:06:51 +00001707 Metadata *Expr = getMDOrNull(Record[2]);
1708 if (!Expr)
1709 Expr = DIExpression::get(Context, {});
1710 MetadataList.assignValue(
1711 GET_OR_DISTINCT(DIGlobalVariableExpression,
1712 (Context, getMDOrNull(Record[1]), Expr)),
1713 NextMetadataNo);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001714 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001715 break;
1716 }
1717 case bitc::METADATA_OBJC_PROPERTY: {
1718 if (Record.size() != 8)
1719 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001720
Mehdi Amini9f926f72016-12-23 03:59:18 +00001721 IsDistinct = Record[0];
1722 MetadataList.assignValue(
1723 GET_OR_DISTINCT(DIObjCProperty,
1724 (Context, getMDString(Record[1]),
1725 getMDOrNull(Record[2]), Record[3],
1726 getMDString(Record[4]), getMDString(Record[5]),
1727 Record[6], getDITypeRefOrNull(Record[7]))),
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001728 NextMetadataNo);
1729 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001730 break;
1731 }
1732 case bitc::METADATA_IMPORTED_ENTITY: {
Adrian Prantld63bfd22017-07-19 00:09:54 +00001733 if (Record.size() != 6 && Record.size() != 7)
Mehdi Amini9f926f72016-12-23 03:59:18 +00001734 return error("Invalid record");
Mehdi Aminief27db82016-12-12 19:34:26 +00001735
Mehdi Amini9f926f72016-12-23 03:59:18 +00001736 IsDistinct = Record[0];
Adrian Prantld63bfd22017-07-19 00:09:54 +00001737 bool HasFile = (Record.size() == 7);
Mehdi Amini9f926f72016-12-23 03:59:18 +00001738 MetadataList.assignValue(
1739 GET_OR_DISTINCT(DIImportedEntity,
1740 (Context, Record[1], getMDOrNull(Record[2]),
Adrian Prantld63bfd22017-07-19 00:09:54 +00001741 getDITypeRefOrNull(Record[3]),
1742 HasFile ? getMDOrNull(Record[6]) : nullptr,
1743 HasFile ? Record[4] : 0, getMDString(Record[5]))),
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_STRING_OLD: {
1749 std::string String(Record.begin(), Record.end());
Mehdi Aminief27db82016-12-12 19:34:26 +00001750
Mehdi Amini9f926f72016-12-23 03:59:18 +00001751 // Test for upgrading !llvm.loop.
1752 HasSeenOldLoopTags |= mayBeOldLoopAttachmentTag(String);
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001753 ++NumMDStringLoaded;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001754 Metadata *MD = MDString::get(Context, String);
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001755 MetadataList.assignValue(MD, NextMetadataNo);
1756 NextMetadataNo++;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001757 break;
1758 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001759 case bitc::METADATA_STRINGS: {
1760 auto CreateNextMDString = [&](StringRef Str) {
1761 ++NumMDStringLoaded;
Ivan Krasinc05c9db2017-01-27 15:54:49 +00001762 MetadataList.assignValue(MDString::get(Context, Str), NextMetadataNo);
1763 NextMetadataNo++;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001764 };
1765 if (Error Err = parseMetadataStrings(Record, Blob, CreateNextMDString))
Mehdi Amini9f926f72016-12-23 03:59:18 +00001766 return Err;
1767 break;
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001768 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001769 case bitc::METADATA_GLOBAL_DECL_ATTACHMENT: {
1770 if (Record.size() % 2 == 0)
1771 return error("Invalid record");
1772 unsigned ValueID = Record[0];
1773 if (ValueID >= ValueList.size())
1774 return error("Invalid record");
1775 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID]))
1776 if (Error Err = parseGlobalObjectAttachment(
1777 *GO, ArrayRef<uint64_t>(Record).slice(1)))
Mehdi Aminief27db82016-12-12 19:34:26 +00001778 return Err;
Mehdi Amini9f926f72016-12-23 03:59:18 +00001779 break;
1780 }
1781 case bitc::METADATA_KIND: {
1782 // Support older bitcode files that had METADATA_KIND records in a
1783 // block with METADATA_BLOCK_ID.
1784 if (Error Err = parseMetadataKindRecord(Record))
1785 return Err;
1786 break;
1787 }
Mehdi Aminief27db82016-12-12 19:34:26 +00001788 }
Mehdi Amini9f926f72016-12-23 03:59:18 +00001789 return Error::success();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001790#undef GET_OR_DISTINCT
Mehdi Aminief27db82016-12-12 19:34:26 +00001791}
1792
1793Error MetadataLoader::MetadataLoaderImpl::parseMetadataStrings(
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001794 ArrayRef<uint64_t> Record, StringRef Blob,
Benjamin Kramer061f4a52017-01-13 14:39:03 +00001795 function_ref<void(StringRef)> CallBack) {
Mehdi Aminief27db82016-12-12 19:34:26 +00001796 // All the MDStrings in the block are emitted together in a single
1797 // record. The strings are concatenated and stored in a blob along with
1798 // their sizes.
1799 if (Record.size() != 2)
1800 return error("Invalid record: metadata strings layout");
1801
1802 unsigned NumStrings = Record[0];
1803 unsigned StringsOffset = Record[1];
1804 if (!NumStrings)
1805 return error("Invalid record: metadata strings with no strings");
1806 if (StringsOffset > Blob.size())
1807 return error("Invalid record: metadata strings corrupt offset");
1808
1809 StringRef Lengths = Blob.slice(0, StringsOffset);
1810 SimpleBitstreamCursor R(Lengths);
1811
1812 StringRef Strings = Blob.drop_front(StringsOffset);
1813 do {
1814 if (R.AtEndOfStream())
1815 return error("Invalid record: metadata strings bad length");
1816
1817 unsigned Size = R.ReadVBR(6);
1818 if (Strings.size() < Size)
1819 return error("Invalid record: metadata strings truncated chars");
1820
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001821 CallBack(Strings.slice(0, Size));
Mehdi Aminief27db82016-12-12 19:34:26 +00001822 Strings = Strings.drop_front(Size);
1823 } while (--NumStrings);
1824
1825 return Error::success();
1826}
1827
1828Error MetadataLoader::MetadataLoaderImpl::parseGlobalObjectAttachment(
1829 GlobalObject &GO, ArrayRef<uint64_t> Record) {
1830 assert(Record.size() % 2 == 0);
1831 for (unsigned I = 0, E = Record.size(); I != E; I += 2) {
1832 auto K = MDKindMap.find(Record[I]);
1833 if (K == MDKindMap.end())
1834 return error("Invalid ID");
1835 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[I + 1]);
1836 if (!MD)
1837 return error("Invalid metadata attachment");
1838 GO.addMetadata(K->second, *MD);
1839 }
1840 return Error::success();
1841}
1842
1843/// Parse metadata attachments.
1844Error MetadataLoader::MetadataLoaderImpl::parseMetadataAttachment(
1845 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
1846 if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
1847 return error("Invalid record");
1848
1849 SmallVector<uint64_t, 64> Record;
Mehdi Amini7b0d1452017-01-08 00:44:45 +00001850 PlaceholderQueue Placeholders;
Mehdi Aminief27db82016-12-12 19:34:26 +00001851
1852 while (true) {
1853 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1854
1855 switch (Entry.Kind) {
1856 case BitstreamEntry::SubBlock: // Handled for us already.
1857 case BitstreamEntry::Error:
1858 return error("Malformed block");
1859 case BitstreamEntry::EndBlock:
Mehdi Amini7b0d1452017-01-08 00:44:45 +00001860 resolveForwardRefsAndPlaceholders(Placeholders);
Mehdi Aminief27db82016-12-12 19:34:26 +00001861 return Error::success();
1862 case BitstreamEntry::Record:
1863 // The interesting case.
1864 break;
1865 }
1866
1867 // Read a metadata attachment record.
1868 Record.clear();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001869 ++NumMDRecordLoaded;
Mehdi Aminief27db82016-12-12 19:34:26 +00001870 switch (Stream.readRecord(Entry.ID, Record)) {
1871 default: // Default behavior: ignore.
1872 break;
1873 case bitc::METADATA_ATTACHMENT: {
1874 unsigned RecordLength = Record.size();
1875 if (Record.empty())
1876 return error("Invalid record");
1877 if (RecordLength % 2 == 0) {
1878 // A function attachment.
1879 if (Error Err = parseGlobalObjectAttachment(F, Record))
1880 return Err;
1881 continue;
1882 }
1883
1884 // An instruction attachment.
1885 Instruction *Inst = InstructionList[Record[0]];
1886 for (unsigned i = 1; i != RecordLength; i = i + 2) {
1887 unsigned Kind = Record[i];
1888 DenseMap<unsigned, unsigned>::iterator I = MDKindMap.find(Kind);
1889 if (I == MDKindMap.end())
1890 return error("Invalid ID");
Mehdi Amini86623052016-12-16 19:16:29 +00001891 if (I->second == LLVMContext::MD_tbaa && StripTBAA)
1892 continue;
1893
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001894 auto Idx = Record[i + 1];
1895 if (Idx < (MDStringRef.size() + GlobalMetadataBitPosIndex.size()) &&
Mehdi Aminid5549f32017-01-07 20:24:23 +00001896 !MetadataList.lookup(Idx)) {
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001897 // Load the attachment if it is in the lazy-loadable range and hasn't
1898 // been loaded yet.
1899 lazyLoadOneMetadata(Idx, Placeholders);
Mehdi Aminid5549f32017-01-07 20:24:23 +00001900 resolveForwardRefsAndPlaceholders(Placeholders);
1901 }
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001902
1903 Metadata *Node = MetadataList.getMetadataFwdRef(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +00001904 if (isa<LocalAsMetadata>(Node))
1905 // Drop the attachment. This used to be legal, but there's no
1906 // upgrade path.
1907 break;
1908 MDNode *MD = dyn_cast_or_null<MDNode>(Node);
1909 if (!MD)
1910 return error("Invalid metadata attachment");
1911
1912 if (HasSeenOldLoopTags && I->second == LLVMContext::MD_loop)
1913 MD = upgradeInstructionLoopAttachment(*MD);
1914
1915 if (I->second == LLVMContext::MD_tbaa) {
1916 assert(!MD->isTemporary() && "should load MDs before attachments");
1917 MD = UpgradeTBAANode(*MD);
1918 }
1919 Inst->setMetadata(I->second, MD);
1920 }
1921 break;
1922 }
1923 }
1924 }
1925}
1926
1927/// Parse a single METADATA_KIND record, inserting result in MDKindMap.
1928Error MetadataLoader::MetadataLoaderImpl::parseMetadataKindRecord(
1929 SmallVectorImpl<uint64_t> &Record) {
1930 if (Record.size() < 2)
1931 return error("Invalid record");
1932
1933 unsigned Kind = Record[0];
1934 SmallString<8> Name(Record.begin() + 1, Record.end());
1935
1936 unsigned NewKind = TheModule.getMDKindID(Name.str());
1937 if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1938 return error("Conflicting METADATA_KIND records");
1939 return Error::success();
1940}
1941
1942/// Parse the metadata kinds out of the METADATA_KIND_BLOCK.
1943Error MetadataLoader::MetadataLoaderImpl::parseMetadataKinds() {
1944 if (Stream.EnterSubBlock(bitc::METADATA_KIND_BLOCK_ID))
1945 return error("Invalid record");
1946
1947 SmallVector<uint64_t, 64> Record;
1948
1949 // Read all the records.
1950 while (true) {
1951 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1952
1953 switch (Entry.Kind) {
1954 case BitstreamEntry::SubBlock: // Handled for us already.
1955 case BitstreamEntry::Error:
1956 return error("Malformed block");
1957 case BitstreamEntry::EndBlock:
1958 return Error::success();
1959 case BitstreamEntry::Record:
1960 // The interesting case.
1961 break;
1962 }
1963
1964 // Read a record.
1965 Record.clear();
Mehdi Amini19ef4fa2017-01-04 22:54:33 +00001966 ++NumMDRecordLoaded;
Mehdi Aminief27db82016-12-12 19:34:26 +00001967 unsigned Code = Stream.readRecord(Entry.ID, Record);
1968 switch (Code) {
1969 default: // Default behavior: ignore.
1970 break;
1971 case bitc::METADATA_KIND: {
1972 if (Error Err = parseMetadataKindRecord(Record))
1973 return Err;
1974 break;
1975 }
1976 }
1977 }
1978}
1979
1980MetadataLoader &MetadataLoader::operator=(MetadataLoader &&RHS) {
1981 Pimpl = std::move(RHS.Pimpl);
1982 return *this;
1983}
1984MetadataLoader::MetadataLoader(MetadataLoader &&RHS)
Mehdi Aminiec68dd42016-12-23 02:20:02 +00001985 : Pimpl(std::move(RHS.Pimpl)) {}
Mehdi Aminief27db82016-12-12 19:34:26 +00001986
1987MetadataLoader::~MetadataLoader() = default;
1988MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
1989 BitcodeReaderValueList &ValueList,
Teresa Johnsona61f5e32016-12-16 21:25:01 +00001990 bool IsImporting,
Mehdi Aminief27db82016-12-12 19:34:26 +00001991 std::function<Type *(unsigned)> getTypeByID)
Benjamin Kramer061f4a52017-01-13 14:39:03 +00001992 : Pimpl(llvm::make_unique<MetadataLoaderImpl>(
1993 Stream, TheModule, ValueList, std::move(getTypeByID), IsImporting)) {}
Mehdi Aminief27db82016-12-12 19:34:26 +00001994
1995Error MetadataLoader::parseMetadata(bool ModuleLevel) {
Mehdi Aminiec68dd42016-12-23 02:20:02 +00001996 return Pimpl->parseMetadata(ModuleLevel);
Mehdi Aminief27db82016-12-12 19:34:26 +00001997}
1998
1999bool MetadataLoader::hasFwdRefs() const { return Pimpl->hasFwdRefs(); }
2000
2001/// Return the given metadata, creating a replaceable forward reference if
2002/// necessary.
Mehdi Amini3bb4d012017-01-20 20:29:16 +00002003Metadata *MetadataLoader::getMetadataFwdRefOrLoad(unsigned Idx) {
2004 return Pimpl->getMetadataFwdRefOrLoad(Idx);
Mehdi Aminief27db82016-12-12 19:34:26 +00002005}
2006
2007MDNode *MetadataLoader::getMDNodeFwdRefOrNull(unsigned Idx) {
2008 return Pimpl->getMDNodeFwdRefOrNull(Idx);
2009}
2010
2011DISubprogram *MetadataLoader::lookupSubprogramForFunction(Function *F) {
2012 return Pimpl->lookupSubprogramForFunction(F);
2013}
2014
2015Error MetadataLoader::parseMetadataAttachment(
2016 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
2017 return Pimpl->parseMetadataAttachment(F, InstructionList);
2018}
2019
2020Error MetadataLoader::parseMetadataKinds() {
2021 return Pimpl->parseMetadataKinds();
2022}
2023
Mehdi Amini86623052016-12-16 19:16:29 +00002024void MetadataLoader::setStripTBAA(bool StripTBAA) {
2025 return Pimpl->setStripTBAA(StripTBAA);
2026}
2027
2028bool MetadataLoader::isStrippingTBAA() { return Pimpl->isStrippingTBAA(); }
2029
Mehdi Aminief27db82016-12-12 19:34:26 +00002030unsigned MetadataLoader::size() const { return Pimpl->size(); }
2031void MetadataLoader::shrinkTo(unsigned N) { return Pimpl->shrinkTo(N); }
Adrian Prantl6825fb62017-04-18 01:21:53 +00002032
2033void MetadataLoader::upgradeDebugIntrinsics(Function &F) {
2034 return Pimpl->upgradeDebugIntrinsics(F);
2035}