Bug Summary

File:include/llvm/Bitcode/BitstreamReader.h
Warning:line 208, column 39
The result of the right shift is undefined due to shifting by '64', which is greater or equal to the width of type 'llvm::SimpleBitstreamCursor::word_t'

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name MetadataLoader.cpp -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -mthread-model posix -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -momit-leaf-frame-pointer -ffunction-sections -fdata-sections -resource-dir /usr/lib/llvm-9/lib/clang/9.0.0 -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -I /build/llvm-toolchain-snapshot-9~svn362543/build-llvm/lib/Bitcode/Reader -I /build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader -I /build/llvm-toolchain-snapshot-9~svn362543/build-llvm/include -I /build/llvm-toolchain-snapshot-9~svn362543/include -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/x86_64-linux-gnu/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/x86_64-linux-gnu/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/backward -internal-isystem /usr/include/clang/9.0.0/include/ -internal-isystem /usr/local/include -internal-isystem /usr/lib/llvm-9/lib/clang/9.0.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O2 -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-comment -std=c++11 -fdeprecated-macro -fdebug-compilation-dir /build/llvm-toolchain-snapshot-9~svn362543/build-llvm/lib/Bitcode/Reader -fdebug-prefix-map=/build/llvm-toolchain-snapshot-9~svn362543=. -ferror-limit 19 -fmessage-length 0 -fvisibility-inlines-hidden -stack-protector 2 -fobjc-runtime=gcc -fdiagnostics-show-option -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -o /tmp/scan-build-2019-06-05-060531-1271-1 -x c++ /build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp -faddrsig

/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp

1//===- MetadataLoader.cpp - Internal BitcodeReader implementation ---------===//
2//
3// 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
6//
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"
16#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/None.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/Statistic.h"
22#include "llvm/ADT/StringRef.h"
23#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"
31#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"
39#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"
52#include "llvm/IR/IntrinsicInst.h"
53#include "llvm/IR/Intrinsics.h"
54#include "llvm/IR/LLVMContext.h"
55#include "llvm/IR/Module.h"
56#include "llvm/IR/ModuleSummaryIndex.h"
57#include "llvm/IR/OperandTraits.h"
58#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
87#define DEBUG_TYPE"bitcode-reader" "bitcode-reader"
88
89STATISTIC(NumMDStringLoaded, "Number of MDStrings loaded")static llvm::Statistic NumMDStringLoaded = {"bitcode-reader",
"NumMDStringLoaded", "Number of MDStrings loaded", {0}, {false
}}
;
90STATISTIC(NumMDNodeTemporary, "Number of MDNode::Temporary created")static llvm::Statistic NumMDNodeTemporary = {"bitcode-reader"
, "NumMDNodeTemporary", "Number of MDNode::Temporary created"
, {0}, {false}}
;
91STATISTIC(NumMDRecordLoaded, "Number of Metadata records loaded")static llvm::Statistic NumMDRecordLoaded = {"bitcode-reader",
"NumMDRecordLoaded", "Number of Metadata records loaded", {0
}, {false}}
;
92
93/// 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
99static 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
104namespace {
105
106static int64_t unrotateSign(uint64_t U) { return (U & 1) ? ~(U >> 1) : U >> 1; }
107
108class BitcodeReaderMetadataList {
109 /// 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
115 /// 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
123 /// 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:
134 BitcodeReaderMetadataList(LLVMContext &C) : Context(C) {}
135
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())((i < MetadataPtrs.size()) ? static_cast<void> (0) :
__assert_fail ("i < MetadataPtrs.size()", "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 146, __PRETTY_FUNCTION__))
;
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!")((N <= size() && "Invalid shrinkTo request!") ? static_cast
<void> (0) : __assert_fail ("N <= size() && \"Invalid shrinkTo request!\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 157, __PRETTY_FUNCTION__))
;
158 assert(ForwardReference.empty() && "Unexpected forward refs")((ForwardReference.empty() && "Unexpected forward refs"
) ? static_cast<void> (0) : __assert_fail ("ForwardReference.empty() && \"Unexpected forward refs\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 158, __PRETTY_FUNCTION__))
;
159 assert(UnresolvedNodes.empty() && "Unexpected unresolved node")((UnresolvedNodes.empty() && "Unexpected unresolved node"
) ? static_cast<void> (0) : __assert_fail ("UnresolvedNodes.empty() && \"Unexpected unresolved node\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 159, __PRETTY_FUNCTION__))
;
160 MetadataPtrs.resize(N);
161 }
162
163 /// Return the given metadata, creating a replaceable forward reference if
164 /// necessary.
165 Metadata *getMetadataFwdRef(unsigned Idx);
166
167 /// Return the given metadata only if it is fully resolved.
168 ///
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();
176 bool hasFwdRefs() const { return !ForwardReference.empty(); }
177 int getNextFwdRef() {
178 assert(hasFwdRefs())((hasFwdRefs()) ? static_cast<void> (0) : __assert_fail
("hasFwdRefs()", "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 178, __PRETTY_FUNCTION__))
;
179 return *ForwardReference.begin();
180 }
181
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) {
196 if (auto *MDN = dyn_cast<MDNode>(MD))
197 if (!MDN->isResolved())
198 UnresolvedNodes.insert(Idx);
199
200 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);
217 ForwardReference.erase(Idx);
218}
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.
228 ForwardReference.insert(Idx);
229
230 // Create and return a placeholder, which will later be RAUW'd.
231 ++NumMDNodeTemporary;
232 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() {
250 if (!ForwardReference.empty())
251 // Still forward references... can't resolve cycles.
252 return;
253
254 // 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.
261 for (const auto &Array : OldTypeRefs.Arrays)
262 Array.second->replaceAllUsesWith(resolveTypeRefArray(Array.first.get()));
263 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) {
269 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
276 if (UnresolvedNodes.empty())
277 // Nothing to do.
278 return;
279
280 // Resolve any cycles.
281 for (unsigned I : UnresolvedNodes) {
282 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")((!N->isTemporary() && "Unexpected forward reference"
) ? static_cast<void> (0) : __assert_fail ("!N->isTemporary() && \"Unexpected forward reference\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 287, __PRETTY_FUNCTION__))
;
288 N->resolveCycles();
289 }
290
291 // Make sure we return early again until there's another unresolved ref.
292 UnresolvedNodes.clear();
293}
294
295void BitcodeReaderMetadataList::addTypeRef(MDString &UUID,
296 DICompositeType &CT) {
297 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID")((CT.getRawIdentifier() == &UUID && "Mismatched UUID"
) ? static_cast<void> (0) : __assert_fail ("CT.getRawIdentifier() == &UUID && \"Mismatched UUID\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 297, __PRETTY_FUNCTION__))
;
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)__builtin_expect((bool)(!UUID), true))
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 DIType *.
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:
357 ~PlaceholderQueue() {
358 assert(empty() && "PlaceholderQueue hasn't been flushed before being destroyed")((empty() && "PlaceholderQueue hasn't been flushed before being destroyed"
) ? static_cast<void> (0) : __assert_fail ("empty() && \"PlaceholderQueue hasn't been flushed before being destroyed\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 358, __PRETTY_FUNCTION__))
;
359 }
360 bool empty() { return PHs.empty(); }
361 DistinctMDOperandPlaceholder &getPlaceholderOp(unsigned ID);
362 void flush(BitcodeReaderMetadataList &MetadataList);
363
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 }
380};
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()) {
391 auto *MD = MetadataList.lookup(PHs.front().getID());
392 assert(MD && "Flushing placeholder on unassigned MD")((MD && "Flushing placeholder on unassigned MD") ? static_cast
<void> (0) : __assert_fail ("MD && \"Flushing placeholder on unassigned MD\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 392, __PRETTY_FUNCTION__))
;
393#ifndef NDEBUG
394 if (auto *MDN = dyn_cast<MDNode>(MD))
395 assert(MDN->isResolved() &&((MDN->isResolved() && "Flushing Placeholder while cycles aren't resolved"
) ? static_cast<void> (0) : __assert_fail ("MDN->isResolved() && \"Flushing Placeholder while cycles aren't resolved\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 396, __PRETTY_FUNCTION__))
396 "Flushing Placeholder while cycles aren't resolved")((MDN->isResolved() && "Flushing Placeholder while cycles aren't resolved"
) ? static_cast<void> (0) : __assert_fail ("MDN->isResolved() && \"Flushing Placeholder while cycles aren't resolved\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 396, __PRETTY_FUNCTION__))
;
397#endif
398 PHs.front().replaceUseWith(MD);
399 PHs.pop_front();
400 }
401}
402
403} // anonynous namespace
404
405static Error error(const Twine &Message) {
406 return make_error<StringError>(
407 Message, make_error_code(BitcodeError::CorruptedBitcode));
408}
409
410class MetadataLoader::MetadataLoaderImpl {
411 BitcodeReaderMetadataList MetadataList;
412 BitcodeReaderValueList &ValueList;
413 BitstreamCursor &Stream;
414 LLVMContext &Context;
415 Module &TheModule;
416 std::function<Type *(unsigned)> getTypeByID;
417
418 /// 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.
436 Expected<bool> lazyLoadModuleMetadataBlock();
437
438 /// On-demand loading of a single metadata. Requires the index above to be
439 /// populated.
440 void lazyLoadOneMetadata(unsigned Idx, PlaceholderQueue &Placeholders);
441
442 // 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
446 /// 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
453 bool StripTBAA = false;
454 bool HasSeenOldLoopTags = false;
455 bool NeedUpgradeToDIGlobalVariableExpression = false;
456 bool NeedDeclareExpressionUpgrade = false;
457
458 /// True if metadata is being parsed for a module being ThinLTO imported.
459 bool IsImporting = false;
460
461 Error parseOneMetadata(SmallVectorImpl<uint64_t> &Record, unsigned Code,
462 PlaceholderQueue &Placeholders, StringRef Blob,
463 unsigned &NextMetadataNo);
464 Error parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob,
465 function_ref<void(StringRef)> CallBack);
466 Error parseGlobalObjectAttachment(GlobalObject &GO,
467 ArrayRef<uint64_t> Record);
468 Error parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record);
469
470 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())
477 if (auto *SP = dyn_cast_or_null<DISubprogram>(Op))
478 SP->replaceUnit(CU_SP.first);
479 CUSubprograms.clear();
480 }
481
482 /// 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))) {
495 auto *DGVE = DIGlobalVariableExpression::getDistinct(
496 Context, GV, DIExpression::get(Context, {}));
497 GVs->replaceOperandWith(I, DGVE);
498 }
499 }
500
501 // Upgrade variables attached to globals.
502 for (auto &GV : TheModule.globals()) {
503 SmallVector<MDNode *, 1> MDs;
504 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)) {
508 auto *DGVE = DIGlobalVariableExpression::getDistinct(
509 Context, DGV, DIExpression::get(Context, {}));
510 GV.addMetadata(LLVMContext::MD_dbg, *DGVE);
511 } else
512 GV.addMetadata(LLVMContext::MD_dbg, *MD);
513 }
514 }
515
516 /// 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
536 /// 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[[clang::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[[clang::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[[clang::fallthrough]];
609 }
610 case 3:
611 // Up-to-date!
612 break;
613 }
614
615 return Error::success();
616 }
617
618 void upgradeDebugInfo() {
619 upgradeCUSubprograms();
620 upgradeCUVariables();
621 }
622
623public:
624 MetadataLoaderImpl(BitstreamCursor &Stream, Module &TheModule,
625 BitcodeReaderValueList &ValueList,
626 std::function<Type *(unsigned)> getTypeByID,
627 bool IsImporting)
628 : MetadataList(TheModule.getContext()), ValueList(ValueList),
629 Stream(Stream), Context(TheModule.getContext()), TheModule(TheModule),
630 getTypeByID(std::move(getTypeByID)), IsImporting(IsImporting) {}
631
632 Error parseMetadata(bool ModuleLevel);
633
634 bool hasFwdRefs() const { return MetadataList.hasFwdRefs(); }
635
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);
650 }
651
652 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
663 void setStripTBAA(bool Value) { StripTBAA = Value; }
664 bool isStrippingTBAA() { return StripTBAA; }
665
666 unsigned size() const { return MetadataList.size(); }
667 void shrinkTo(unsigned N) { MetadataList.shrinkTo(N); }
668 void upgradeDebugIntrinsics(Function &F) { upgradeDeclareExpressions(F); }
669};
670
671Expected<bool>
672MetadataLoader::MetadataLoaderImpl::lazyLoadModuleMetadataBlock() {
673 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 &&((Entry.Kind == BitstreamEntry::Record && "Corrupted bitcode: Expected `Record` when trying to find the "
"Metadata index") ? static_cast<void> (0) : __assert_fail
("Entry.Kind == BitstreamEntry::Record && \"Corrupted bitcode: Expected `Record` when trying to find the \" \"Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 722, __PRETTY_FUNCTION__))
721 "Corrupted bitcode: Expected `Record` when trying to find the "((Entry.Kind == BitstreamEntry::Record && "Corrupted bitcode: Expected `Record` when trying to find the "
"Metadata index") ? static_cast<void> (0) : __assert_fail
("Entry.Kind == BitstreamEntry::Record && \"Corrupted bitcode: Expected `Record` when trying to find the \" \"Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 722, __PRETTY_FUNCTION__))
722 "Metadata index")((Entry.Kind == BitstreamEntry::Record && "Corrupted bitcode: Expected `Record` when trying to find the "
"Metadata index") ? static_cast<void> (0) : __assert_fail
("Entry.Kind == BitstreamEntry::Record && \"Corrupted bitcode: Expected `Record` when trying to find the \" \"Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 722, __PRETTY_FUNCTION__))
;
723 Record.clear();
724 auto Code = IndexCursor.readRecord(Entry.ID, Record);
725 (void)Code;
726 assert(Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "((Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "
"`METADATA_INDEX` when trying " "to find the Metadata index"
) ? static_cast<void> (0) : __assert_fail ("Code == bitc::METADATA_INDEX && \"Corrupted bitcode: Expected \" \"`METADATA_INDEX` when trying \" \"to find the Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 728, __PRETTY_FUNCTION__))
727 "`METADATA_INDEX` when trying "((Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "
"`METADATA_INDEX` when trying " "to find the Metadata index"
) ? static_cast<void> (0) : __assert_fail ("Code == bitc::METADATA_INDEX && \"Corrupted bitcode: Expected \" \"`METADATA_INDEX` when trying \" \"to find the Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 728, __PRETTY_FUNCTION__))
728 "to find the Metadata index")((Code == bitc::METADATA_INDEX && "Corrupted bitcode: Expected "
"`METADATA_INDEX` when trying " "to find the Metadata index"
) ? static_cast<void> (0) : __assert_fail ("Code == bitc::METADATA_INDEX && \"Corrupted bitcode: Expected \" \"`METADATA_INDEX` when trying \" \"to find the Metadata index\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 728, __PRETTY_FUNCTION__))
;
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)((Code == bitc::METADATA_NAME) ? static_cast<void> (0) :
__assert_fail ("Code == bitc::METADATA_NAME", "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 748, __PRETTY_FUNCTION__))
;
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)((NextBitCode == bitc::METADATA_NAMED_NODE) ? static_cast<
void> (0) : __assert_fail ("NextBitCode == bitc::METADATA_NAMED_NODE"
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 758, __PRETTY_FUNCTION__))
;
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]);
770 assert(MD && "Invalid metadata: expect fwd ref to MDNode")((MD && "Invalid metadata: expect fwd ref to MDNode")
? static_cast<void> (0) : __assert_fail ("MD && \"Invalid metadata: expect fwd ref to MDNode\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 770, __PRETTY_FUNCTION__))
;
771 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_COMMON_BLOCK:
815 case bitc::METADATA_MACRO:
816 case bitc::METADATA_MACRO_FILE:
817 case bitc::METADATA_TEMPLATE_TYPE:
818 case bitc::METADATA_TEMPLATE_VALUE:
819 case bitc::METADATA_GLOBAL_VAR:
820 case bitc::METADATA_LOCAL_VAR:
821 case bitc::METADATA_LABEL:
822 case bitc::METADATA_EXPRESSION:
823 case bitc::METADATA_OBJC_PROPERTY:
824 case bitc::METADATA_IMPORTED_ENTITY:
825 case bitc::METADATA_GLOBAL_VAR_EXPR:
826 // We don't expect to see any of these, if we see one, give up on
827 // lazy-loading and fallback.
828 MDStringRef.clear();
829 GlobalMetadataBitPosIndex.clear();
830 return false;
831 }
832 break;
833 }
834 }
835 }
836}
837
838/// Parse a METADATA_BLOCK. If ModuleLevel is true then we are parsing
839/// module level metadata.
840Error MetadataLoader::MetadataLoaderImpl::parseMetadata(bool ModuleLevel) {
841 if (!ModuleLevel && MetadataList.hasFwdRefs())
842 return error("Invalid metadata: fwd refs into function blocks");
843
844 // Record the entry position so that we can jump back here and efficiently
845 // skip the whole block in case we lazy-load.
846 auto EntryPos = Stream.GetCurrentBitNo();
847
848 if (Stream.EnterSubBlock(bitc::METADATA_BLOCK_ID))
849 return error("Invalid record");
850
851 SmallVector<uint64_t, 64> Record;
852 PlaceholderQueue Placeholders;
853
854 // We lazy-load module-level metadata: we build an index for each record, and
855 // then load individual record as needed, starting with the named metadata.
856 if (ModuleLevel && IsImporting && MetadataList.empty() &&
857 !DisableLazyLoading) {
858 auto SuccessOrErr = lazyLoadModuleMetadataBlock();
859 if (!SuccessOrErr)
860 return SuccessOrErr.takeError();
861 if (SuccessOrErr.get()) {
862 // An index was successfully created and we will be able to load metadata
863 // on-demand.
864 MetadataList.resize(MDStringRef.size() +
865 GlobalMetadataBitPosIndex.size());
866
867 // Reading the named metadata created forward references and/or
868 // placeholders, that we flush here.
869 resolveForwardRefsAndPlaceholders(Placeholders);
870 upgradeDebugInfo();
871 // Return at the beginning of the block, since it is easy to skip it
872 // entirely from there.
873 Stream.ReadBlockEnd(); // Pop the abbrev block context.
874 Stream.JumpToBit(EntryPos);
875 if (Stream.SkipBlock())
876 return error("Invalid record");
877 return Error::success();
878 }
879 // Couldn't load an index, fallback to loading all the block "old-style".
880 }
881
882 unsigned NextMetadataNo = MetadataList.size();
883
884 // Read all the records.
885 while (true) {
886 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
887
888 switch (Entry.Kind) {
889 case BitstreamEntry::SubBlock: // Handled for us already.
890 case BitstreamEntry::Error:
891 return error("Malformed block");
892 case BitstreamEntry::EndBlock:
893 resolveForwardRefsAndPlaceholders(Placeholders);
894 upgradeDebugInfo();
895 return Error::success();
896 case BitstreamEntry::Record:
897 // The interesting case.
898 break;
899 }
900
901 // Read a record.
902 Record.clear();
903 StringRef Blob;
904 ++NumMDRecordLoaded;
905 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
906 if (Error Err =
907 parseOneMetadata(Record, Code, Placeholders, Blob, NextMetadataNo))
908 return Err;
909 }
910}
911
912MDString *MetadataLoader::MetadataLoaderImpl::lazyLoadOneMDString(unsigned ID) {
913 ++NumMDStringLoaded;
914 if (Metadata *MD = MetadataList.lookup(ID))
915 return cast<MDString>(MD);
916 auto MDS = MDString::get(Context, MDStringRef[ID]);
917 MetadataList.assignValue(MDS, ID);
918 return MDS;
919}
920
921void MetadataLoader::MetadataLoaderImpl::lazyLoadOneMetadata(
922 unsigned ID, PlaceholderQueue &Placeholders) {
923 assert(ID < (MDStringRef.size()) + GlobalMetadataBitPosIndex.size())((ID < (MDStringRef.size()) + GlobalMetadataBitPosIndex.size
()) ? static_cast<void> (0) : __assert_fail ("ID < (MDStringRef.size()) + GlobalMetadataBitPosIndex.size()"
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 923, __PRETTY_FUNCTION__))
;
924 assert(ID >= MDStringRef.size() && "Unexpected lazy-loading of MDString")((ID >= MDStringRef.size() && "Unexpected lazy-loading of MDString"
) ? static_cast<void> (0) : __assert_fail ("ID >= MDStringRef.size() && \"Unexpected lazy-loading of MDString\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 924, __PRETTY_FUNCTION__))
;
925 // Lookup first if the metadata hasn't already been loaded.
926 if (auto *MD = MetadataList.lookup(ID)) {
927 auto *N = dyn_cast_or_null<MDNode>(MD);
928 if (!N->isTemporary())
929 return;
930 }
931 SmallVector<uint64_t, 64> Record;
932 StringRef Blob;
933 IndexCursor.JumpToBit(GlobalMetadataBitPosIndex[ID - MDStringRef.size()]);
934 auto Entry = IndexCursor.advanceSkippingSubblocks();
935 ++NumMDRecordLoaded;
936 unsigned Code = IndexCursor.readRecord(Entry.ID, Record, &Blob);
937 if (Error Err = parseOneMetadata(Record, Code, Placeholders, Blob, ID))
938 report_fatal_error("Can't lazyload MD");
939}
940
941/// Ensure that all forward-references and placeholders are resolved.
942/// Iteratively lazy-loading metadata on-demand if needed.
943void MetadataLoader::MetadataLoaderImpl::resolveForwardRefsAndPlaceholders(
944 PlaceholderQueue &Placeholders) {
945 DenseSet<unsigned> Temporaries;
946 while (1) {
947 // Populate Temporaries with the placeholders that haven't been loaded yet.
948 Placeholders.getTemporaries(MetadataList, Temporaries);
949
950 // If we don't have any temporary, or FwdReference, we're done!
951 if (Temporaries.empty() && !MetadataList.hasFwdRefs())
952 break;
953
954 // First, load all the temporaries. This can add new placeholders or
955 // forward references.
956 for (auto ID : Temporaries)
957 lazyLoadOneMetadata(ID, Placeholders);
958 Temporaries.clear();
959
960 // Second, load the forward-references. This can also add new placeholders
961 // or forward references.
962 while (MetadataList.hasFwdRefs())
963 lazyLoadOneMetadata(MetadataList.getNextFwdRef(), Placeholders);
964 }
965 // At this point we don't have any forward reference remaining, or temporary
966 // that haven't been loaded. We can safely drop RAUW support and mark cycles
967 // as resolved.
968 MetadataList.tryToResolveCycles();
969
970 // Finally, everything is in place, we can replace the placeholders operands
971 // with the final node they refer to.
972 Placeholders.flush(MetadataList);
973}
974
975Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
976 SmallVectorImpl<uint64_t> &Record, unsigned Code,
977 PlaceholderQueue &Placeholders, StringRef Blob, unsigned &NextMetadataNo) {
978
979 bool IsDistinct = false;
980 auto getMD = [&](unsigned ID) -> Metadata * {
981 if (ID < MDStringRef.size())
982 return lazyLoadOneMDString(ID);
983 if (!IsDistinct) {
984 if (auto *MD = MetadataList.lookup(ID))
985 return MD;
986 // If lazy-loading is enabled, we try recursively to load the operand
987 // instead of creating a temporary.
988 if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
989 // Create a temporary for the node that is referencing the operand we
990 // will lazy-load. It is needed before recursing in case there are
991 // uniquing cycles.
992 MetadataList.getMetadataFwdRef(NextMetadataNo);
993 lazyLoadOneMetadata(ID, Placeholders);
994 return MetadataList.lookup(ID);
995 }
996 // Return a temporary.
997 return MetadataList.getMetadataFwdRef(ID);
998 }
999 if (auto *MD = MetadataList.getMetadataIfResolved(ID))
1000 return MD;
1001 return &Placeholders.getPlaceholderOp(ID);
1002 };
1003 auto getMDOrNull = [&](unsigned ID) -> Metadata * {
1004 if (ID)
1005 return getMD(ID - 1);
1006 return nullptr;
1007 };
1008 auto getMDOrNullWithoutPlaceholders = [&](unsigned ID) -> Metadata * {
1009 if (ID)
1010 return MetadataList.getMetadataFwdRef(ID - 1);
1011 return nullptr;
1012 };
1013 auto getMDString = [&](unsigned ID) -> MDString * {
1014 // This requires that the ID is not really a forward reference. In
1015 // particular, the MDString must already have been resolved.
1016 auto MDS = getMDOrNull(ID);
1017 return cast_or_null<MDString>(MDS);
1018 };
1019
1020 // Support for old type refs.
1021 auto getDITypeRefOrNull = [&](unsigned ID) {
1022 return MetadataList.upgradeTypeRef(getMDOrNull(ID));
1023 };
1024
1025#define GET_OR_DISTINCT(CLASS, ARGS) \
1026 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
1027
1028 switch (Code) {
1029 default: // Default behavior: ignore.
1030 break;
1031 case bitc::METADATA_NAME: {
1032 // Read name of the named metadata.
1033 SmallString<8> Name(Record.begin(), Record.end());
1034 Record.clear();
1035 Code = Stream.ReadCode();
1036
1037 ++NumMDRecordLoaded;
1038 unsigned NextBitCode = Stream.readRecord(Code, Record);
1039 if (NextBitCode != bitc::METADATA_NAMED_NODE)
1040 return error("METADATA_NAME not followed by METADATA_NAMED_NODE");
1041
1042 // Read named metadata elements.
1043 unsigned Size = Record.size();
1044 NamedMDNode *NMD = TheModule.getOrInsertNamedMetadata(Name);
1045 for (unsigned i = 0; i != Size; ++i) {
1046 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[i]);
1047 if (!MD)
1048 return error("Invalid named metadata: expect fwd ref to MDNode");
1049 NMD->addOperand(MD);
1050 }
1051 break;
1052 }
1053 case bitc::METADATA_OLD_FN_NODE: {
1054 // FIXME: Remove in 4.0.
1055 // This is a LocalAsMetadata record, the only type of function-local
1056 // metadata.
1057 if (Record.size() % 2 == 1)
1058 return error("Invalid record");
1059
1060 // If this isn't a LocalAsMetadata record, we're dropping it. This used
1061 // to be legal, but there's no upgrade path.
1062 auto dropRecord = [&] {
1063 MetadataList.assignValue(MDNode::get(Context, None), NextMetadataNo);
1064 NextMetadataNo++;
1065 };
1066 if (Record.size() != 2) {
1067 dropRecord();
1068 break;
1069 }
1070
1071 Type *Ty = getTypeByID(Record[0]);
1072 if (Ty->isMetadataTy() || Ty->isVoidTy()) {
1073 dropRecord();
1074 break;
1075 }
1076
1077 MetadataList.assignValue(
1078 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
1079 NextMetadataNo);
1080 NextMetadataNo++;
1081 break;
1082 }
1083 case bitc::METADATA_OLD_NODE: {
1084 // FIXME: Remove in 4.0.
1085 if (Record.size() % 2 == 1)
1086 return error("Invalid record");
1087
1088 unsigned Size = Record.size();
1089 SmallVector<Metadata *, 8> Elts;
1090 for (unsigned i = 0; i != Size; i += 2) {
1091 Type *Ty = getTypeByID(Record[i]);
1092 if (!Ty)
1093 return error("Invalid record");
1094 if (Ty->isMetadataTy())
1095 Elts.push_back(getMD(Record[i + 1]));
1096 else if (!Ty->isVoidTy()) {
1097 auto *MD =
1098 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty));
1099 assert(isa<ConstantAsMetadata>(MD) &&((isa<ConstantAsMetadata>(MD) && "Expected non-function-local metadata"
) ? static_cast<void> (0) : __assert_fail ("isa<ConstantAsMetadata>(MD) && \"Expected non-function-local metadata\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 1100, __PRETTY_FUNCTION__))
1100 "Expected non-function-local metadata")((isa<ConstantAsMetadata>(MD) && "Expected non-function-local metadata"
) ? static_cast<void> (0) : __assert_fail ("isa<ConstantAsMetadata>(MD) && \"Expected non-function-local metadata\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 1100, __PRETTY_FUNCTION__))
;
1101 Elts.push_back(MD);
1102 } else
1103 Elts.push_back(nullptr);
1104 }
1105 MetadataList.assignValue(MDNode::get(Context, Elts), NextMetadataNo);
1106 NextMetadataNo++;
1107 break;
1108 }
1109 case bitc::METADATA_VALUE: {
1110 if (Record.size() != 2)
1111 return error("Invalid record");
1112
1113 Type *Ty = getTypeByID(Record[0]);
1114 if (Ty->isMetadataTy() || Ty->isVoidTy())
1115 return error("Invalid record");
1116
1117 MetadataList.assignValue(
1118 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)),
1119 NextMetadataNo);
1120 NextMetadataNo++;
1121 break;
1122 }
1123 case bitc::METADATA_DISTINCT_NODE:
1124 IsDistinct = true;
1125 LLVM_FALLTHROUGH[[clang::fallthrough]];
1126 case bitc::METADATA_NODE: {
1127 SmallVector<Metadata *, 8> Elts;
1128 Elts.reserve(Record.size());
1129 for (unsigned ID : Record)
1130 Elts.push_back(getMDOrNull(ID));
1131 MetadataList.assignValue(IsDistinct ? MDNode::getDistinct(Context, Elts)
1132 : MDNode::get(Context, Elts),
1133 NextMetadataNo);
1134 NextMetadataNo++;
1135 break;
1136 }
1137 case bitc::METADATA_LOCATION: {
1138 if (Record.size() != 5 && Record.size() != 6)
1139 return error("Invalid record");
1140
1141 IsDistinct = Record[0];
1142 unsigned Line = Record[1];
1143 unsigned Column = Record[2];
1144 Metadata *Scope = getMD(Record[3]);
1145 Metadata *InlinedAt = getMDOrNull(Record[4]);
1146 bool ImplicitCode = Record.size() == 6 && Record[5];
1147 MetadataList.assignValue(
1148 GET_OR_DISTINCT(DILocation, (Context, Line, Column, Scope, InlinedAt,
1149 ImplicitCode)),
1150 NextMetadataNo);
1151 NextMetadataNo++;
1152 break;
1153 }
1154 case bitc::METADATA_GENERIC_DEBUG: {
1155 if (Record.size() < 4)
1156 return error("Invalid record");
1157
1158 IsDistinct = Record[0];
1159 unsigned Tag = Record[1];
1160 unsigned Version = Record[2];
1161
1162 if (Tag >= 1u << 16 || Version != 0)
1163 return error("Invalid record");
1164
1165 auto *Header = getMDString(Record[3]);
1166 SmallVector<Metadata *, 8> DwarfOps;
1167 for (unsigned I = 4, E = Record.size(); I != E; ++I)
1168 DwarfOps.push_back(getMDOrNull(Record[I]));
1169 MetadataList.assignValue(
1170 GET_OR_DISTINCT(GenericDINode, (Context, Tag, Header, DwarfOps)),
1171 NextMetadataNo);
1172 NextMetadataNo++;
1173 break;
1174 }
1175 case bitc::METADATA_SUBRANGE: {
1176 Metadata *Val = nullptr;
1177 // Operand 'count' is interpreted as:
1178 // - Signed integer (version 0)
1179 // - Metadata node (version 1)
1180 switch (Record[0] >> 1) {
1181 case 0:
1182 Val = GET_OR_DISTINCT(DISubrange,
1183 (Context, Record[1], unrotateSign(Record.back())));
1184 break;
1185 case 1:
1186 Val = GET_OR_DISTINCT(DISubrange, (Context, getMDOrNull(Record[1]),
1187 unrotateSign(Record.back())));
1188 break;
1189 default:
1190 return error("Invalid record: Unsupported version of DISubrange");
1191 }
1192
1193 MetadataList.assignValue(Val, NextMetadataNo);
1194 IsDistinct = Record[0] & 1;
1195 NextMetadataNo++;
1196 break;
1197 }
1198 case bitc::METADATA_ENUMERATOR: {
1199 if (Record.size() != 3)
1200 return error("Invalid record");
1201
1202 IsDistinct = Record[0] & 1;
1203 bool IsUnsigned = Record[0] & 2;
1204 MetadataList.assignValue(
1205 GET_OR_DISTINCT(DIEnumerator, (Context, unrotateSign(Record[1]),
1206 IsUnsigned, getMDString(Record[2]))),
1207 NextMetadataNo);
1208 NextMetadataNo++;
1209 break;
1210 }
1211 case bitc::METADATA_BASIC_TYPE: {
1212 if (Record.size() < 6 || Record.size() > 7)
1213 return error("Invalid record");
1214
1215 IsDistinct = Record[0];
1216 DINode::DIFlags Flags = (Record.size() > 6) ?
1217 static_cast<DINode::DIFlags>(Record[6]) : DINode::FlagZero;
1218
1219 MetadataList.assignValue(
1220 GET_OR_DISTINCT(DIBasicType,
1221 (Context, Record[1], getMDString(Record[2]), Record[3],
1222 Record[4], Record[5], Flags)),
1223 NextMetadataNo);
1224 NextMetadataNo++;
1225 break;
1226 }
1227 case bitc::METADATA_DERIVED_TYPE: {
1228 if (Record.size() < 12 || Record.size() > 13)
1229 return error("Invalid record");
1230
1231 // DWARF address space is encoded as N->getDWARFAddressSpace() + 1. 0 means
1232 // that there is no DWARF address space associated with DIDerivedType.
1233 Optional<unsigned> DWARFAddressSpace;
1234 if (Record.size() > 12 && Record[12])
1235 DWARFAddressSpace = Record[12] - 1;
1236
1237 IsDistinct = Record[0];
1238 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1239 MetadataList.assignValue(
1240 GET_OR_DISTINCT(DIDerivedType,
1241 (Context, Record[1], getMDString(Record[2]),
1242 getMDOrNull(Record[3]), Record[4],
1243 getDITypeRefOrNull(Record[5]),
1244 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1245 Record[9], DWARFAddressSpace, Flags,
1246 getDITypeRefOrNull(Record[11]))),
1247 NextMetadataNo);
1248 NextMetadataNo++;
1249 break;
1250 }
1251 case bitc::METADATA_COMPOSITE_TYPE: {
1252 if (Record.size() < 16 || Record.size() > 17)
1253 return error("Invalid record");
1254
1255 // If we have a UUID and this is not a forward declaration, lookup the
1256 // mapping.
1257 IsDistinct = Record[0] & 0x1;
1258 bool IsNotUsedInTypeRef = Record[0] >= 2;
1259 unsigned Tag = Record[1];
1260 MDString *Name = getMDString(Record[2]);
1261 Metadata *File = getMDOrNull(Record[3]);
1262 unsigned Line = Record[4];
1263 Metadata *Scope = getDITypeRefOrNull(Record[5]);
1264 Metadata *BaseType = nullptr;
1265 uint64_t SizeInBits = Record[7];
1266 if (Record[8] > (uint64_t)std::numeric_limits<uint32_t>::max())
1267 return error("Alignment value is too large");
1268 uint32_t AlignInBits = Record[8];
1269 uint64_t OffsetInBits = 0;
1270 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[10]);
1271 Metadata *Elements = nullptr;
1272 unsigned RuntimeLang = Record[12];
1273 Metadata *VTableHolder = nullptr;
1274 Metadata *TemplateParams = nullptr;
1275 Metadata *Discriminator = nullptr;
1276 auto *Identifier = getMDString(Record[15]);
1277 // If this module is being parsed so that it can be ThinLTO imported
1278 // into another module, composite types only need to be imported
1279 // as type declarations (unless full type definitions requested).
1280 // Create type declarations up front to save memory. Also, buildODRType
1281 // handles the case where this is type ODRed with a definition needed
1282 // by the importing module, in which case the existing definition is
1283 // used.
1284 if (IsImporting && !ImportFullTypeDefinitions && Identifier &&
1285 (Tag == dwarf::DW_TAG_enumeration_type ||
1286 Tag == dwarf::DW_TAG_class_type ||
1287 Tag == dwarf::DW_TAG_structure_type ||
1288 Tag == dwarf::DW_TAG_union_type)) {
1289 Flags = Flags | DINode::FlagFwdDecl;
1290 } else {
1291 BaseType = getDITypeRefOrNull(Record[6]);
1292 OffsetInBits = Record[9];
1293 Elements = getMDOrNull(Record[11]);
1294 VTableHolder = getDITypeRefOrNull(Record[13]);
1295 TemplateParams = getMDOrNull(Record[14]);
1296 if (Record.size() > 16)
1297 Discriminator = getMDOrNull(Record[16]);
1298 }
1299 DICompositeType *CT = nullptr;
1300 if (Identifier)
1301 CT = DICompositeType::buildODRType(
1302 Context, *Identifier, Tag, Name, File, Line, Scope, BaseType,
1303 SizeInBits, AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
1304 VTableHolder, TemplateParams, Discriminator);
1305
1306 // Create a node if we didn't get a lazy ODR type.
1307 if (!CT)
1308 CT = GET_OR_DISTINCT(DICompositeType,
1309 (Context, Tag, Name, File, Line, Scope, BaseType,
1310 SizeInBits, AlignInBits, OffsetInBits, Flags,
1311 Elements, RuntimeLang, VTableHolder, TemplateParams,
1312 Identifier, Discriminator));
1313 if (!IsNotUsedInTypeRef && Identifier)
1314 MetadataList.addTypeRef(*Identifier, *cast<DICompositeType>(CT));
1315
1316 MetadataList.assignValue(CT, NextMetadataNo);
1317 NextMetadataNo++;
1318 break;
1319 }
1320 case bitc::METADATA_SUBROUTINE_TYPE: {
1321 if (Record.size() < 3 || Record.size() > 4)
1322 return error("Invalid record");
1323 bool IsOldTypeRefArray = Record[0] < 2;
1324 unsigned CC = (Record.size() > 3) ? Record[3] : 0;
1325
1326 IsDistinct = Record[0] & 0x1;
1327 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[1]);
1328 Metadata *Types = getMDOrNull(Record[2]);
1329 if (LLVM_UNLIKELY(IsOldTypeRefArray)__builtin_expect((bool)(IsOldTypeRefArray), false))
1330 Types = MetadataList.upgradeTypeRefArray(Types);
1331
1332 MetadataList.assignValue(
1333 GET_OR_DISTINCT(DISubroutineType, (Context, Flags, CC, Types)),
1334 NextMetadataNo);
1335 NextMetadataNo++;
1336 break;
1337 }
1338
1339 case bitc::METADATA_MODULE: {
1340 if (Record.size() != 6)
1341 return error("Invalid record");
1342
1343 IsDistinct = Record[0];
1344 MetadataList.assignValue(
1345 GET_OR_DISTINCT(DIModule,
1346 (Context, getMDOrNull(Record[1]),
1347 getMDString(Record[2]), getMDString(Record[3]),
1348 getMDString(Record[4]), getMDString(Record[5]))),
1349 NextMetadataNo);
1350 NextMetadataNo++;
1351 break;
1352 }
1353
1354 case bitc::METADATA_FILE: {
1355 if (Record.size() != 3 && Record.size() != 5 && Record.size() != 6)
1356 return error("Invalid record");
1357
1358 IsDistinct = Record[0];
1359 Optional<DIFile::ChecksumInfo<MDString *>> Checksum;
1360 // The BitcodeWriter writes null bytes into Record[3:4] when the Checksum
1361 // is not present. This matches up with the old internal representation,
1362 // and the old encoding for CSK_None in the ChecksumKind. The new
1363 // representation reserves the value 0 in the ChecksumKind to continue to
1364 // encode None in a backwards-compatible way.
1365 if (Record.size() > 4 && Record[3] && Record[4])
1366 Checksum.emplace(static_cast<DIFile::ChecksumKind>(Record[3]),
1367 getMDString(Record[4]));
1368 MetadataList.assignValue(
1369 GET_OR_DISTINCT(
1370 DIFile,
1371 (Context, getMDString(Record[1]), getMDString(Record[2]), Checksum,
1372 Record.size() > 5 ? Optional<MDString *>(getMDString(Record[5]))
1373 : None)),
1374 NextMetadataNo);
1375 NextMetadataNo++;
1376 break;
1377 }
1378 case bitc::METADATA_COMPILE_UNIT: {
1379 if (Record.size() < 14 || Record.size() > 19)
1380 return error("Invalid record");
1381
1382 // Ignore Record[0], which indicates whether this compile unit is
1383 // distinct. It's always distinct.
1384 IsDistinct = true;
1385 auto *CU = DICompileUnit::getDistinct(
1386 Context, Record[1], getMDOrNull(Record[2]), getMDString(Record[3]),
1387 Record[4], getMDString(Record[5]), Record[6], getMDString(Record[7]),
1388 Record[8], getMDOrNull(Record[9]), getMDOrNull(Record[10]),
1389 getMDOrNull(Record[12]), getMDOrNull(Record[13]),
1390 Record.size() <= 15 ? nullptr : getMDOrNull(Record[15]),
1391 Record.size() <= 14 ? 0 : Record[14],
1392 Record.size() <= 16 ? true : Record[16],
1393 Record.size() <= 17 ? false : Record[17],
1394 Record.size() <= 18 ? 0 : Record[18],
1395 Record.size() <= 19 ? 0 : Record[19]);
1396
1397 MetadataList.assignValue(CU, NextMetadataNo);
1398 NextMetadataNo++;
1399
1400 // Move the Upgrade the list of subprograms.
1401 if (Metadata *SPs = getMDOrNullWithoutPlaceholders(Record[11]))
1402 CUSubprograms.push_back({CU, SPs});
1403 break;
1404 }
1405 case bitc::METADATA_SUBPROGRAM: {
1406 if (Record.size() < 18 || Record.size() > 21)
1407 return error("Invalid record");
1408
1409 bool HasSPFlags = Record[0] & 4;
1410
1411 DINode::DIFlags Flags;
1412 DISubprogram::DISPFlags SPFlags;
1413 if (!HasSPFlags)
1414 Flags = static_cast<DINode::DIFlags>(Record[11 + 2]);
1415 else {
1416 Flags = static_cast<DINode::DIFlags>(Record[11]);
1417 SPFlags = static_cast<DISubprogram::DISPFlags>(Record[9]);
1418 }
1419
1420 // Support for old metadata when
1421 // subprogram specific flags are placed in DIFlags.
1422 const unsigned DIFlagMainSubprogram = 1 << 21;
1423 bool HasOldMainSubprogramFlag = Flags & DIFlagMainSubprogram;
1424 if (HasOldMainSubprogramFlag)
1425 // Remove old DIFlagMainSubprogram from DIFlags.
1426 // Note: This assumes that any future use of bit 21 defaults to it
1427 // being 0.
1428 Flags &= ~static_cast<DINode::DIFlags>(DIFlagMainSubprogram);
1429
1430 if (HasOldMainSubprogramFlag && HasSPFlags)
1431 SPFlags |= DISubprogram::SPFlagMainSubprogram;
1432 else if (!HasSPFlags)
1433 SPFlags = DISubprogram::toSPFlags(
1434 /*IsLocalToUnit=*/Record[7], /*IsDefinition=*/Record[8],
1435 /*IsOptimized=*/Record[14], /*Virtuality=*/Record[11],
1436 /*DIFlagMainSubprogram*/HasOldMainSubprogramFlag);
1437
1438 // All definitions should be distinct.
1439 IsDistinct = (Record[0] & 1) || (SPFlags & DISubprogram::SPFlagDefinition);
1440 // Version 1 has a Function as Record[15].
1441 // Version 2 has removed Record[15].
1442 // Version 3 has the Unit as Record[15].
1443 // Version 4 added thisAdjustment.
1444 // Version 5 repacked flags into DISPFlags, changing many element numbers.
1445 bool HasUnit = Record[0] & 2;
1446 if (!HasSPFlags && HasUnit && Record.size() < 19)
1447 return error("Invalid record");
1448 if (HasSPFlags && !HasUnit)
1449 return error("Invalid record");
1450 // Accommodate older formats.
1451 bool HasFn = false;
1452 bool HasThisAdj = true;
1453 bool HasThrownTypes = true;
1454 unsigned OffsetA = 0;
1455 unsigned OffsetB = 0;
1456 if (!HasSPFlags) {
1457 OffsetA = 2;
1458 OffsetB = 2;
1459 if (Record.size() >= 19) {
1460 HasFn = !HasUnit;
1461 OffsetB++;
1462 }
1463 HasThisAdj = Record.size() >= 20;
1464 HasThrownTypes = Record.size() >= 21;
1465 }
1466 Metadata *CUorFn = getMDOrNull(Record[12 + OffsetB]);
1467 DISubprogram *SP = GET_OR_DISTINCT(
1468 DISubprogram,
1469 (Context,
1470 getDITypeRefOrNull(Record[1]), // scope
1471 getMDString(Record[2]), // name
1472 getMDString(Record[3]), // linkageName
1473 getMDOrNull(Record[4]), // file
1474 Record[5], // line
1475 getMDOrNull(Record[6]), // type
1476 Record[7 + OffsetA], // scopeLine
1477 getDITypeRefOrNull(Record[8 + OffsetA]), // containingType
1478 Record[10 + OffsetA], // virtualIndex
1479 HasThisAdj ? Record[16 + OffsetB] : 0, // thisAdjustment
1480 Flags, // flags
1481 SPFlags, // SPFlags
1482 HasUnit ? CUorFn : nullptr, // unit
1483 getMDOrNull(Record[13 + OffsetB]), // templateParams
1484 getMDOrNull(Record[14 + OffsetB]), // declaration
1485 getMDOrNull(Record[15 + OffsetB]), // retainedNodes
1486 HasThrownTypes ? getMDOrNull(Record[17 + OffsetB])
1487 : nullptr // thrownTypes
1488 ));
1489 MetadataList.assignValue(SP, NextMetadataNo);
1490 NextMetadataNo++;
1491
1492 // Upgrade sp->function mapping to function->sp mapping.
1493 if (HasFn) {
1494 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(CUorFn))
1495 if (auto *F = dyn_cast<Function>(CMD->getValue())) {
1496 if (F->isMaterializable())
1497 // Defer until materialized; unmaterialized functions may not have
1498 // metadata.
1499 FunctionsWithSPs[F] = SP;
1500 else if (!F->empty())
1501 F->setSubprogram(SP);
1502 }
1503 }
1504 break;
1505 }
1506 case bitc::METADATA_LEXICAL_BLOCK: {
1507 if (Record.size() != 5)
1508 return error("Invalid record");
1509
1510 IsDistinct = Record[0];
1511 MetadataList.assignValue(
1512 GET_OR_DISTINCT(DILexicalBlock,
1513 (Context, getMDOrNull(Record[1]),
1514 getMDOrNull(Record[2]), Record[3], Record[4])),
1515 NextMetadataNo);
1516 NextMetadataNo++;
1517 break;
1518 }
1519 case bitc::METADATA_LEXICAL_BLOCK_FILE: {
1520 if (Record.size() != 4)
1521 return error("Invalid record");
1522
1523 IsDistinct = Record[0];
1524 MetadataList.assignValue(
1525 GET_OR_DISTINCT(DILexicalBlockFile,
1526 (Context, getMDOrNull(Record[1]),
1527 getMDOrNull(Record[2]), Record[3])),
1528 NextMetadataNo);
1529 NextMetadataNo++;
1530 break;
1531 }
1532 case bitc::METADATA_COMMON_BLOCK: {
1533 IsDistinct = Record[0] & 1;
1534 MetadataList.assignValue(
1535 GET_OR_DISTINCT(DICommonBlock,
1536 (Context, getMDOrNull(Record[1]),
1537 getMDOrNull(Record[2]), getMDString(Record[3]),
1538 getMDOrNull(Record[4]), Record[5])),
1539 NextMetadataNo);
1540 NextMetadataNo++;
1541 break;
1542 }
1543 case bitc::METADATA_NAMESPACE: {
1544 // Newer versions of DINamespace dropped file and line.
1545 MDString *Name;
1546 if (Record.size() == 3)
1547 Name = getMDString(Record[2]);
1548 else if (Record.size() == 5)
1549 Name = getMDString(Record[3]);
1550 else
1551 return error("Invalid record");
1552
1553 IsDistinct = Record[0] & 1;
1554 bool ExportSymbols = Record[0] & 2;
1555 MetadataList.assignValue(
1556 GET_OR_DISTINCT(DINamespace,
1557 (Context, getMDOrNull(Record[1]), Name, ExportSymbols)),
1558 NextMetadataNo);
1559 NextMetadataNo++;
1560 break;
1561 }
1562 case bitc::METADATA_MACRO: {
1563 if (Record.size() != 5)
1564 return error("Invalid record");
1565
1566 IsDistinct = Record[0];
1567 MetadataList.assignValue(
1568 GET_OR_DISTINCT(DIMacro,
1569 (Context, Record[1], Record[2], getMDString(Record[3]),
1570 getMDString(Record[4]))),
1571 NextMetadataNo);
1572 NextMetadataNo++;
1573 break;
1574 }
1575 case bitc::METADATA_MACRO_FILE: {
1576 if (Record.size() != 5)
1577 return error("Invalid record");
1578
1579 IsDistinct = Record[0];
1580 MetadataList.assignValue(
1581 GET_OR_DISTINCT(DIMacroFile,
1582 (Context, Record[1], Record[2], getMDOrNull(Record[3]),
1583 getMDOrNull(Record[4]))),
1584 NextMetadataNo);
1585 NextMetadataNo++;
1586 break;
1587 }
1588 case bitc::METADATA_TEMPLATE_TYPE: {
1589 if (Record.size() != 3)
1590 return error("Invalid record");
1591
1592 IsDistinct = Record[0];
1593 MetadataList.assignValue(GET_OR_DISTINCT(DITemplateTypeParameter,
1594 (Context, getMDString(Record[1]),
1595 getDITypeRefOrNull(Record[2]))),
1596 NextMetadataNo);
1597 NextMetadataNo++;
1598 break;
1599 }
1600 case bitc::METADATA_TEMPLATE_VALUE: {
1601 if (Record.size() != 5)
1602 return error("Invalid record");
1603
1604 IsDistinct = Record[0];
1605 MetadataList.assignValue(
1606 GET_OR_DISTINCT(DITemplateValueParameter,
1607 (Context, Record[1], getMDString(Record[2]),
1608 getDITypeRefOrNull(Record[3]),
1609 getMDOrNull(Record[4]))),
1610 NextMetadataNo);
1611 NextMetadataNo++;
1612 break;
1613 }
1614 case bitc::METADATA_GLOBAL_VAR: {
1615 if (Record.size() < 11 || Record.size() > 13)
1616 return error("Invalid record");
1617
1618 IsDistinct = Record[0] & 1;
1619 unsigned Version = Record[0] >> 1;
1620
1621 if (Version == 2) {
1622 MetadataList.assignValue(
1623 GET_OR_DISTINCT(
1624 DIGlobalVariable,
1625 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1626 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1627 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1628 getMDOrNull(Record[9]), getMDOrNull(Record[10]), Record[11])),
1629 NextMetadataNo);
1630
1631 NextMetadataNo++;
1632 } else if (Version == 1) {
1633 // No upgrade necessary. A null field will be introduced to indicate
1634 // that no parameter information is available.
1635 MetadataList.assignValue(
1636 GET_OR_DISTINCT(DIGlobalVariable,
1637 (Context, getMDOrNull(Record[1]),
1638 getMDString(Record[2]), getMDString(Record[3]),
1639 getMDOrNull(Record[4]), Record[5],
1640 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1641 getMDOrNull(Record[10]), nullptr, Record[11])),
1642 NextMetadataNo);
1643
1644 NextMetadataNo++;
1645 } else if (Version == 0) {
1646 // Upgrade old metadata, which stored a global variable reference or a
1647 // ConstantInt here.
1648 NeedUpgradeToDIGlobalVariableExpression = true;
1649 Metadata *Expr = getMDOrNull(Record[9]);
1650 uint32_t AlignInBits = 0;
1651 if (Record.size() > 11) {
1652 if (Record[11] > (uint64_t)std::numeric_limits<uint32_t>::max())
1653 return error("Alignment value is too large");
1654 AlignInBits = Record[11];
1655 }
1656 GlobalVariable *Attach = nullptr;
1657 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(Expr)) {
1658 if (auto *GV = dyn_cast<GlobalVariable>(CMD->getValue())) {
1659 Attach = GV;
1660 Expr = nullptr;
1661 } else if (auto *CI = dyn_cast<ConstantInt>(CMD->getValue())) {
1662 Expr = DIExpression::get(Context,
1663 {dwarf::DW_OP_constu, CI->getZExtValue(),
1664 dwarf::DW_OP_stack_value});
1665 } else {
1666 Expr = nullptr;
1667 }
1668 }
1669 DIGlobalVariable *DGV = GET_OR_DISTINCT(
1670 DIGlobalVariable,
1671 (Context, getMDOrNull(Record[1]), getMDString(Record[2]),
1672 getMDString(Record[3]), getMDOrNull(Record[4]), Record[5],
1673 getDITypeRefOrNull(Record[6]), Record[7], Record[8],
1674 getMDOrNull(Record[10]), nullptr, AlignInBits));
1675
1676 DIGlobalVariableExpression *DGVE = nullptr;
1677 if (Attach || Expr)
1678 DGVE = DIGlobalVariableExpression::getDistinct(
1679 Context, DGV, Expr ? Expr : DIExpression::get(Context, {}));
1680 if (Attach)
1681 Attach->addDebugInfo(DGVE);
1682
1683 auto *MDNode = Expr ? cast<Metadata>(DGVE) : cast<Metadata>(DGV);
1684 MetadataList.assignValue(MDNode, NextMetadataNo);
1685 NextMetadataNo++;
1686 } else
1687 return error("Invalid record");
1688
1689 break;
1690 }
1691 case bitc::METADATA_LOCAL_VAR: {
1692 // 10th field is for the obseleted 'inlinedAt:' field.
1693 if (Record.size() < 8 || Record.size() > 10)
1694 return error("Invalid record");
1695
1696 IsDistinct = Record[0] & 1;
1697 bool HasAlignment = Record[0] & 2;
1698 // 2nd field used to be an artificial tag, either DW_TAG_auto_variable or
1699 // DW_TAG_arg_variable, if we have alignment flag encoded it means, that
1700 // this is newer version of record which doesn't have artificial tag.
1701 bool HasTag = !HasAlignment && Record.size() > 8;
1702 DINode::DIFlags Flags = static_cast<DINode::DIFlags>(Record[7 + HasTag]);
1703 uint32_t AlignInBits = 0;
1704 if (HasAlignment) {
1705 if (Record[8 + HasTag] > (uint64_t)std::numeric_limits<uint32_t>::max())
1706 return error("Alignment value is too large");
1707 AlignInBits = Record[8 + HasTag];
1708 }
1709 MetadataList.assignValue(
1710 GET_OR_DISTINCT(DILocalVariable,
1711 (Context, getMDOrNull(Record[1 + HasTag]),
1712 getMDString(Record[2 + HasTag]),
1713 getMDOrNull(Record[3 + HasTag]), Record[4 + HasTag],
1714 getDITypeRefOrNull(Record[5 + HasTag]),
1715 Record[6 + HasTag], Flags, AlignInBits)),
1716 NextMetadataNo);
1717 NextMetadataNo++;
1718 break;
1719 }
1720 case bitc::METADATA_LABEL: {
1721 if (Record.size() != 5)
1722 return error("Invalid record");
1723
1724 IsDistinct = Record[0] & 1;
1725 MetadataList.assignValue(
1726 GET_OR_DISTINCT(DILabel,
1727 (Context, getMDOrNull(Record[1]),
1728 getMDString(Record[2]),
1729 getMDOrNull(Record[3]), Record[4])),
1730 NextMetadataNo);
1731 NextMetadataNo++;
1732 break;
1733 }
1734 case bitc::METADATA_EXPRESSION: {
1735 if (Record.size() < 1)
1736 return error("Invalid record");
1737
1738 IsDistinct = Record[0] & 1;
1739 uint64_t Version = Record[0] >> 1;
1740 auto Elts = MutableArrayRef<uint64_t>(Record).slice(1);
1741
1742 SmallVector<uint64_t, 6> Buffer;
1743 if (Error Err = upgradeDIExpression(Version, Elts, Buffer))
1744 return Err;
1745
1746 MetadataList.assignValue(
1747 GET_OR_DISTINCT(DIExpression, (Context, Elts)), NextMetadataNo);
1748 NextMetadataNo++;
1749 break;
1750 }
1751 case bitc::METADATA_GLOBAL_VAR_EXPR: {
1752 if (Record.size() != 3)
1753 return error("Invalid record");
1754
1755 IsDistinct = Record[0];
1756 Metadata *Expr = getMDOrNull(Record[2]);
1757 if (!Expr)
1758 Expr = DIExpression::get(Context, {});
1759 MetadataList.assignValue(
1760 GET_OR_DISTINCT(DIGlobalVariableExpression,
1761 (Context, getMDOrNull(Record[1]), Expr)),
1762 NextMetadataNo);
1763 NextMetadataNo++;
1764 break;
1765 }
1766 case bitc::METADATA_OBJC_PROPERTY: {
1767 if (Record.size() != 8)
1768 return error("Invalid record");
1769
1770 IsDistinct = Record[0];
1771 MetadataList.assignValue(
1772 GET_OR_DISTINCT(DIObjCProperty,
1773 (Context, getMDString(Record[1]),
1774 getMDOrNull(Record[2]), Record[3],
1775 getMDString(Record[4]), getMDString(Record[5]),
1776 Record[6], getDITypeRefOrNull(Record[7]))),
1777 NextMetadataNo);
1778 NextMetadataNo++;
1779 break;
1780 }
1781 case bitc::METADATA_IMPORTED_ENTITY: {
1782 if (Record.size() != 6 && Record.size() != 7)
1783 return error("Invalid record");
1784
1785 IsDistinct = Record[0];
1786 bool HasFile = (Record.size() == 7);
1787 MetadataList.assignValue(
1788 GET_OR_DISTINCT(DIImportedEntity,
1789 (Context, Record[1], getMDOrNull(Record[2]),
1790 getDITypeRefOrNull(Record[3]),
1791 HasFile ? getMDOrNull(Record[6]) : nullptr,
1792 HasFile ? Record[4] : 0, getMDString(Record[5]))),
1793 NextMetadataNo);
1794 NextMetadataNo++;
1795 break;
1796 }
1797 case bitc::METADATA_STRING_OLD: {
1798 std::string String(Record.begin(), Record.end());
1799
1800 // Test for upgrading !llvm.loop.
1801 HasSeenOldLoopTags |= mayBeOldLoopAttachmentTag(String);
1802 ++NumMDStringLoaded;
1803 Metadata *MD = MDString::get(Context, String);
1804 MetadataList.assignValue(MD, NextMetadataNo);
1805 NextMetadataNo++;
1806 break;
1807 }
1808 case bitc::METADATA_STRINGS: {
1809 auto CreateNextMDString = [&](StringRef Str) {
1810 ++NumMDStringLoaded;
1811 MetadataList.assignValue(MDString::get(Context, Str), NextMetadataNo);
1812 NextMetadataNo++;
1813 };
1814 if (Error Err = parseMetadataStrings(Record, Blob, CreateNextMDString))
1815 return Err;
1816 break;
1817 }
1818 case bitc::METADATA_GLOBAL_DECL_ATTACHMENT: {
1819 if (Record.size() % 2 == 0)
1820 return error("Invalid record");
1821 unsigned ValueID = Record[0];
1822 if (ValueID >= ValueList.size())
1823 return error("Invalid record");
1824 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID]))
1825 if (Error Err = parseGlobalObjectAttachment(
1826 *GO, ArrayRef<uint64_t>(Record).slice(1)))
1827 return Err;
1828 break;
1829 }
1830 case bitc::METADATA_KIND: {
1831 // Support older bitcode files that had METADATA_KIND records in a
1832 // block with METADATA_BLOCK_ID.
1833 if (Error Err = parseMetadataKindRecord(Record))
1834 return Err;
1835 break;
1836 }
1837 }
1838 return Error::success();
1839#undef GET_OR_DISTINCT
1840}
1841
1842Error MetadataLoader::MetadataLoaderImpl::parseMetadataStrings(
1843 ArrayRef<uint64_t> Record, StringRef Blob,
1844 function_ref<void(StringRef)> CallBack) {
1845 // All the MDStrings in the block are emitted together in a single
1846 // record. The strings are concatenated and stored in a blob along with
1847 // their sizes.
1848 if (Record.size() != 2)
1849 return error("Invalid record: metadata strings layout");
1850
1851 unsigned NumStrings = Record[0];
1852 unsigned StringsOffset = Record[1];
1853 if (!NumStrings)
1854 return error("Invalid record: metadata strings with no strings");
1855 if (StringsOffset > Blob.size())
1856 return error("Invalid record: metadata strings corrupt offset");
1857
1858 StringRef Lengths = Blob.slice(0, StringsOffset);
1859 SimpleBitstreamCursor R(Lengths);
1860
1861 StringRef Strings = Blob.drop_front(StringsOffset);
1862 do {
1863 if (R.AtEndOfStream())
1864 return error("Invalid record: metadata strings bad length");
1865
1866 unsigned Size = R.ReadVBR(6);
1867 if (Strings.size() < Size)
1868 return error("Invalid record: metadata strings truncated chars");
1869
1870 CallBack(Strings.slice(0, Size));
1871 Strings = Strings.drop_front(Size);
1872 } while (--NumStrings);
1873
1874 return Error::success();
1875}
1876
1877Error MetadataLoader::MetadataLoaderImpl::parseGlobalObjectAttachment(
1878 GlobalObject &GO, ArrayRef<uint64_t> Record) {
1879 assert(Record.size() % 2 == 0)((Record.size() % 2 == 0) ? static_cast<void> (0) : __assert_fail
("Record.size() % 2 == 0", "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 1879, __PRETTY_FUNCTION__))
;
1880 for (unsigned I = 0, E = Record.size(); I != E; I += 2) {
1881 auto K = MDKindMap.find(Record[I]);
1882 if (K == MDKindMap.end())
1883 return error("Invalid ID");
1884 MDNode *MD = MetadataList.getMDNodeFwdRefOrNull(Record[I + 1]);
1885 if (!MD)
1886 return error("Invalid metadata attachment: expect fwd ref to MDNode");
1887 GO.addMetadata(K->second, *MD);
1888 }
1889 return Error::success();
1890}
1891
1892/// Parse metadata attachments.
1893Error MetadataLoader::MetadataLoaderImpl::parseMetadataAttachment(
1894 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
1895 if (Stream.EnterSubBlock(bitc::METADATA_ATTACHMENT_ID))
1896 return error("Invalid record");
1897
1898 SmallVector<uint64_t, 64> Record;
1899 PlaceholderQueue Placeholders;
1900
1901 while (true) {
1902 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
1903
1904 switch (Entry.Kind) {
1905 case BitstreamEntry::SubBlock: // Handled for us already.
1906 case BitstreamEntry::Error:
1907 return error("Malformed block");
1908 case BitstreamEntry::EndBlock:
1909 resolveForwardRefsAndPlaceholders(Placeholders);
1910 return Error::success();
1911 case BitstreamEntry::Record:
1912 // The interesting case.
1913 break;
1914 }
1915
1916 // Read a metadata attachment record.
1917 Record.clear();
1918 ++NumMDRecordLoaded;
1919 switch (Stream.readRecord(Entry.ID, Record)) {
1920 default: // Default behavior: ignore.
1921 break;
1922 case bitc::METADATA_ATTACHMENT: {
1923 unsigned RecordLength = Record.size();
1924 if (Record.empty())
1925 return error("Invalid record");
1926 if (RecordLength % 2 == 0) {
1927 // A function attachment.
1928 if (Error Err = parseGlobalObjectAttachment(F, Record))
1929 return Err;
1930 continue;
1931 }
1932
1933 // An instruction attachment.
1934 Instruction *Inst = InstructionList[Record[0]];
1935 for (unsigned i = 1; i != RecordLength; i = i + 2) {
1936 unsigned Kind = Record[i];
1937 DenseMap<unsigned, unsigned>::iterator I = MDKindMap.find(Kind);
1938 if (I == MDKindMap.end())
1939 return error("Invalid ID");
1940 if (I->second == LLVMContext::MD_tbaa && StripTBAA)
1941 continue;
1942
1943 auto Idx = Record[i + 1];
1944 if (Idx < (MDStringRef.size() + GlobalMetadataBitPosIndex.size()) &&
1945 !MetadataList.lookup(Idx)) {
1946 // Load the attachment if it is in the lazy-loadable range and hasn't
1947 // been loaded yet.
1948 lazyLoadOneMetadata(Idx, Placeholders);
1949 resolveForwardRefsAndPlaceholders(Placeholders);
1950 }
1951
1952 Metadata *Node = MetadataList.getMetadataFwdRef(Idx);
1953 if (isa<LocalAsMetadata>(Node))
1954 // Drop the attachment. This used to be legal, but there's no
1955 // upgrade path.
1956 break;
1957 MDNode *MD = dyn_cast_or_null<MDNode>(Node);
1958 if (!MD)
1959 return error("Invalid metadata attachment");
1960
1961 if (HasSeenOldLoopTags && I->second == LLVMContext::MD_loop)
1962 MD = upgradeInstructionLoopAttachment(*MD);
1963
1964 if (I->second == LLVMContext::MD_tbaa) {
1965 assert(!MD->isTemporary() && "should load MDs before attachments")((!MD->isTemporary() && "should load MDs before attachments"
) ? static_cast<void> (0) : __assert_fail ("!MD->isTemporary() && \"should load MDs before attachments\""
, "/build/llvm-toolchain-snapshot-9~svn362543/lib/Bitcode/Reader/MetadataLoader.cpp"
, 1965, __PRETTY_FUNCTION__))
;
1966 MD = UpgradeTBAANode(*MD);
1967 }
1968 Inst->setMetadata(I->second, MD);
1969 }
1970 break;
1971 }
1972 }
1973 }
1974}
1975
1976/// Parse a single METADATA_KIND record, inserting result in MDKindMap.
1977Error MetadataLoader::MetadataLoaderImpl::parseMetadataKindRecord(
1978 SmallVectorImpl<uint64_t> &Record) {
1979 if (Record.size() < 2)
1980 return error("Invalid record");
1981
1982 unsigned Kind = Record[0];
1983 SmallString<8> Name(Record.begin() + 1, Record.end());
1984
1985 unsigned NewKind = TheModule.getMDKindID(Name.str());
1986 if (!MDKindMap.insert(std::make_pair(Kind, NewKind)).second)
1987 return error("Conflicting METADATA_KIND records");
1988 return Error::success();
1989}
1990
1991/// Parse the metadata kinds out of the METADATA_KIND_BLOCK.
1992Error MetadataLoader::MetadataLoaderImpl::parseMetadataKinds() {
1993 if (Stream.EnterSubBlock(bitc::METADATA_KIND_BLOCK_ID))
2
Assuming the condition is false
3
Taking false branch
1994 return error("Invalid record");
1995
1996 SmallVector<uint64_t, 64> Record;
1997
1998 // Read all the records.
1999 while (true) {
4
Loop condition is true. Entering loop body
2000 BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
5
Calling 'BitstreamCursor::advanceSkippingSubblocks'
2001
2002 switch (Entry.Kind) {
2003 case BitstreamEntry::SubBlock: // Handled for us already.
2004 case BitstreamEntry::Error:
2005 return error("Malformed block");
2006 case BitstreamEntry::EndBlock:
2007 return Error::success();
2008 case BitstreamEntry::Record:
2009 // The interesting case.
2010 break;
2011 }
2012
2013 // Read a record.
2014 Record.clear();
2015 ++NumMDRecordLoaded;
2016 unsigned Code = Stream.readRecord(Entry.ID, Record);
2017 switch (Code) {
2018 default: // Default behavior: ignore.
2019 break;
2020 case bitc::METADATA_KIND: {
2021 if (Error Err = parseMetadataKindRecord(Record))
2022 return Err;
2023 break;
2024 }
2025 }
2026 }
2027}
2028
2029MetadataLoader &MetadataLoader::operator=(MetadataLoader &&RHS) {
2030 Pimpl = std::move(RHS.Pimpl);
2031 return *this;
2032}
2033MetadataLoader::MetadataLoader(MetadataLoader &&RHS)
2034 : Pimpl(std::move(RHS.Pimpl)) {}
2035
2036MetadataLoader::~MetadataLoader() = default;
2037MetadataLoader::MetadataLoader(BitstreamCursor &Stream, Module &TheModule,
2038 BitcodeReaderValueList &ValueList,
2039 bool IsImporting,
2040 std::function<Type *(unsigned)> getTypeByID)
2041 : Pimpl(llvm::make_unique<MetadataLoaderImpl>(
2042 Stream, TheModule, ValueList, std::move(getTypeByID), IsImporting)) {}
2043
2044Error MetadataLoader::parseMetadata(bool ModuleLevel) {
2045 return Pimpl->parseMetadata(ModuleLevel);
2046}
2047
2048bool MetadataLoader::hasFwdRefs() const { return Pimpl->hasFwdRefs(); }
2049
2050/// Return the given metadata, creating a replaceable forward reference if
2051/// necessary.
2052Metadata *MetadataLoader::getMetadataFwdRefOrLoad(unsigned Idx) {
2053 return Pimpl->getMetadataFwdRefOrLoad(Idx);
2054}
2055
2056DISubprogram *MetadataLoader::lookupSubprogramForFunction(Function *F) {
2057 return Pimpl->lookupSubprogramForFunction(F);
2058}
2059
2060Error MetadataLoader::parseMetadataAttachment(
2061 Function &F, const SmallVectorImpl<Instruction *> &InstructionList) {
2062 return Pimpl->parseMetadataAttachment(F, InstructionList);
2063}
2064
2065Error MetadataLoader::parseMetadataKinds() {
2066 return Pimpl->parseMetadataKinds();
1
Calling 'MetadataLoaderImpl::parseMetadataKinds'
2067}
2068
2069void MetadataLoader::setStripTBAA(bool StripTBAA) {
2070 return Pimpl->setStripTBAA(StripTBAA);
2071}
2072
2073bool MetadataLoader::isStrippingTBAA() { return Pimpl->isStrippingTBAA(); }
2074
2075unsigned MetadataLoader::size() const { return Pimpl->size(); }
2076void MetadataLoader::shrinkTo(unsigned N) { return Pimpl->shrinkTo(N); }
2077
2078void MetadataLoader::upgradeDebugIntrinsics(Function &F) {
2079 return Pimpl->upgradeDebugIntrinsics(F);
2080}

/build/llvm-toolchain-snapshot-9~svn362543/include/llvm/Bitcode/BitstreamReader.h

1//===- BitstreamReader.h - Low-level bitstream reader interface -*- C++ -*-===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8//
9// This header defines the BitstreamReader class. This class can be used to
10// read an arbitrary bitstream, regardless of its contents.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_BITCODE_BITSTREAMREADER_H
15#define LLVM_BITCODE_BITSTREAMREADER_H
16
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/Bitcode/BitCodes.h"
20#include "llvm/Support/Endian.h"
21#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/MathExtras.h"
23#include "llvm/Support/MemoryBuffer.h"
24#include <algorithm>
25#include <cassert>
26#include <climits>
27#include <cstddef>
28#include <cstdint>
29#include <memory>
30#include <string>
31#include <utility>
32#include <vector>
33
34namespace llvm {
35
36/// This class maintains the abbreviations read from a block info block.
37class BitstreamBlockInfo {
38public:
39 /// This contains information emitted to BLOCKINFO_BLOCK blocks. These
40 /// describe abbreviations that all blocks of the specified ID inherit.
41 struct BlockInfo {
42 unsigned BlockID;
43 std::vector<std::shared_ptr<BitCodeAbbrev>> Abbrevs;
44 std::string Name;
45 std::vector<std::pair<unsigned, std::string>> RecordNames;
46 };
47
48private:
49 std::vector<BlockInfo> BlockInfoRecords;
50
51public:
52 /// If there is block info for the specified ID, return it, otherwise return
53 /// null.
54 const BlockInfo *getBlockInfo(unsigned BlockID) const {
55 // Common case, the most recent entry matches BlockID.
56 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
57 return &BlockInfoRecords.back();
58
59 for (unsigned i = 0, e = static_cast<unsigned>(BlockInfoRecords.size());
60 i != e; ++i)
61 if (BlockInfoRecords[i].BlockID == BlockID)
62 return &BlockInfoRecords[i];
63 return nullptr;
64 }
65
66 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) {
67 if (const BlockInfo *BI = getBlockInfo(BlockID))
68 return *const_cast<BlockInfo*>(BI);
69
70 // Otherwise, add a new record.
71 BlockInfoRecords.emplace_back();
72 BlockInfoRecords.back().BlockID = BlockID;
73 return BlockInfoRecords.back();
74 }
75};
76
77/// This represents a position within a bitstream. There may be multiple
78/// independent cursors reading within one bitstream, each maintaining their
79/// own local state.
80class SimpleBitstreamCursor {
81 ArrayRef<uint8_t> BitcodeBytes;
82 size_t NextChar = 0;
83
84public:
85 /// This is the current data we have pulled from the stream but have not
86 /// returned to the client. This is specifically and intentionally defined to
87 /// follow the word size of the host machine for efficiency. We use word_t in
88 /// places that are aware of this to make it perfectly explicit what is going
89 /// on.
90 using word_t = size_t;
91
92private:
93 word_t CurWord = 0;
94
95 /// This is the number of bits in CurWord that are valid. This is always from
96 /// [0...bits_of(size_t)-1] inclusive.
97 unsigned BitsInCurWord = 0;
98
99public:
100 static const size_t MaxChunkSize = sizeof(word_t) * 8;
101
102 SimpleBitstreamCursor() = default;
103 explicit SimpleBitstreamCursor(ArrayRef<uint8_t> BitcodeBytes)
104 : BitcodeBytes(BitcodeBytes) {}
105 explicit SimpleBitstreamCursor(StringRef BitcodeBytes)
106 : BitcodeBytes(arrayRefFromStringRef(BitcodeBytes)) {}
107 explicit SimpleBitstreamCursor(MemoryBufferRef BitcodeBytes)
108 : SimpleBitstreamCursor(BitcodeBytes.getBuffer()) {}
109
110 bool canSkipToPos(size_t pos) const {
111 // pos can be skipped to if it is a valid address or one byte past the end.
112 return pos <= BitcodeBytes.size();
113 }
114
115 bool AtEndOfStream() {
116 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar;
117 }
118
119 /// Return the bit # of the bit we are reading.
120 uint64_t GetCurrentBitNo() const {
121 return NextChar*CHAR_BIT8 - BitsInCurWord;
122 }
123
124 // Return the byte # of the current bit.
125 uint64_t getCurrentByteNo() const { return GetCurrentBitNo() / 8; }
126
127 ArrayRef<uint8_t> getBitcodeBytes() const { return BitcodeBytes; }
128
129 /// Reset the stream to the specified bit number.
130 void JumpToBit(uint64_t BitNo) {
131 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1);
132 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1));
133 assert(canSkipToPos(ByteNo) && "Invalid location")((canSkipToPos(ByteNo) && "Invalid location") ? static_cast
<void> (0) : __assert_fail ("canSkipToPos(ByteNo) && \"Invalid location\""
, "/build/llvm-toolchain-snapshot-9~svn362543/include/llvm/Bitcode/BitstreamReader.h"
, 133, __PRETTY_FUNCTION__))
;
134
135 // Move the cursor to the right word.
136 NextChar = ByteNo;
137 BitsInCurWord = 0;
138
139 // Skip over any bits that are already consumed.
140 if (WordBitNo)
141 Read(WordBitNo);
142 }
143
144 /// Get a pointer into the bitstream at the specified byte offset.
145 const uint8_t *getPointerToByte(uint64_t ByteNo, uint64_t NumBytes) {
146 return BitcodeBytes.data() + ByteNo;
147 }
148
149 /// Get a pointer into the bitstream at the specified bit offset.
150 ///
151 /// The bit offset must be on a byte boundary.
152 const uint8_t *getPointerToBit(uint64_t BitNo, uint64_t NumBytes) {
153 assert(!(BitNo % 8) && "Expected bit on byte boundary")((!(BitNo % 8) && "Expected bit on byte boundary") ? static_cast
<void> (0) : __assert_fail ("!(BitNo % 8) && \"Expected bit on byte boundary\""
, "/build/llvm-toolchain-snapshot-9~svn362543/include/llvm/Bitcode/BitstreamReader.h"
, 153, __PRETTY_FUNCTION__))
;
154 return getPointerToByte(BitNo / 8, NumBytes);
155 }
156
157 void fillCurWord() {
158 if (NextChar >= BitcodeBytes.size())
159 report_fatal_error("Unexpected end of file");
160
161 // Read the next word from the stream.
162 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar;
163 unsigned BytesRead;
164 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) {
165 BytesRead = sizeof(word_t);
166 CurWord =
167 support::endian::read<word_t, support::little, support::unaligned>(
168 NextCharPtr);
169 } else {
170 // Short read.
171 BytesRead = BitcodeBytes.size() - NextChar;
172 CurWord = 0;
173 for (unsigned B = 0; B != BytesRead; ++B)
174 CurWord |= uint64_t(NextCharPtr[B]) << (B * 8);
175 }
176 NextChar += BytesRead;
177 BitsInCurWord = BytesRead * 8;
178 }
179
180 word_t Read(unsigned NumBits) {
181 static const unsigned BitsInWord = MaxChunkSize;
182
183 assert(NumBits && NumBits <= BitsInWord &&((NumBits && NumBits <= BitsInWord && "Cannot return zero or more than BitsInWord bits!"
) ? static_cast<void> (0) : __assert_fail ("NumBits && NumBits <= BitsInWord && \"Cannot return zero or more than BitsInWord bits!\""
, "/build/llvm-toolchain-snapshot-9~svn362543/include/llvm/Bitcode/BitstreamReader.h"
, 184, __PRETTY_FUNCTION__))
12
Assuming 'NumBits' is not equal to 0
13
Assuming 'NumBits' is <= 'BitsInWord'
14
'?' condition is true
184 "Cannot return zero or more than BitsInWord bits!")((NumBits && NumBits <= BitsInWord && "Cannot return zero or more than BitsInWord bits!"
) ? static_cast<void> (0) : __assert_fail ("NumBits && NumBits <= BitsInWord && \"Cannot return zero or more than BitsInWord bits!\""
, "/build/llvm-toolchain-snapshot-9~svn362543/include/llvm/Bitcode/BitstreamReader.h"
, 184, __PRETTY_FUNCTION__))
;
185
186 static const unsigned Mask = sizeof(word_t) > 4 ? 0x3f : 0x1f;
15
'?' condition is true
187
188 // If the field is fully contained by CurWord, return it quickly.
189 if (BitsInCurWord >= NumBits) {
16
Assuming the condition is false
17
Taking false branch
190 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits));
191
192 // Use a mask to avoid undefined behavior.
193 CurWord >>= (NumBits & Mask);
194
195 BitsInCurWord -= NumBits;
196 return R;
197 }
198
199 word_t R = BitsInCurWord ? CurWord : 0;
18
'?' condition is true
200 unsigned BitsLeft = NumBits - BitsInCurWord;
201
202 fillCurWord();
203
204 // If we run out of data, abort.
205 if (BitsLeft > BitsInCurWord)
19
Assuming the condition is false
20
Taking false branch
206 report_fatal_error("Unexpected end of file");
207
208 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
21
The result of the right shift is undefined due to shifting by '64', which is greater or equal to the width of type 'llvm::SimpleBitstreamCursor::word_t'
209
210 // Use a mask to avoid undefined behavior.
211 CurWord >>= (BitsLeft & Mask);
212
213 BitsInCurWord -= BitsLeft;
214
215 R |= R2 << (NumBits - BitsLeft);
216
217 return R;
218 }
219
220 uint32_t ReadVBR(unsigned NumBits) {
221 uint32_t Piece = Read(NumBits);
222 if ((Piece & (1U << (NumBits-1))) == 0)
223 return Piece;
224
225 uint32_t Result = 0;
226 unsigned NextBit = 0;
227 while (true) {
228 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
229
230 if ((Piece & (1U << (NumBits-1))) == 0)
231 return Result;
232
233 NextBit += NumBits-1;
234 Piece = Read(NumBits);
235 }
236 }
237
238 // Read a VBR that may have a value up to 64-bits in size. The chunk size of
239 // the VBR must still be <= 32 bits though.
240 uint64_t ReadVBR64(unsigned NumBits) {
241 uint32_t Piece = Read(NumBits);
242 if ((Piece & (1U << (NumBits-1))) == 0)
243 return uint64_t(Piece);
244
245 uint64_t Result = 0;
246 unsigned NextBit = 0;
247 while (true) {
248 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit;
249
250 if ((Piece & (1U << (NumBits-1))) == 0)
251 return Result;
252
253 NextBit += NumBits-1;
254 Piece = Read(NumBits);
255 }
256 }
257
258 void SkipToFourByteBoundary() {
259 // If word_t is 64-bits and if we've read less than 32 bits, just dump
260 // the bits we have up to the next 32-bit boundary.
261 if (sizeof(word_t) > 4 &&
262 BitsInCurWord >= 32) {
263 CurWord >>= BitsInCurWord-32;
264 BitsInCurWord = 32;
265 return;
266 }
267
268 BitsInCurWord = 0;
269 }
270
271 /// Skip to the end of the file.
272 void skipToEnd() { NextChar = BitcodeBytes.size(); }
273};
274
275/// When advancing through a bitstream cursor, each advance can discover a few
276/// different kinds of entries:
277struct BitstreamEntry {
278 enum {
279 Error, // Malformed bitcode was found.
280 EndBlock, // We've reached the end of the current block, (or the end of the
281 // file, which is treated like a series of EndBlock records.
282 SubBlock, // This is the start of a new subblock of a specific ID.
283 Record // This is a record with a specific AbbrevID.
284 } Kind;
285
286 unsigned ID;
287
288 static BitstreamEntry getError() {
289 BitstreamEntry E; E.Kind = Error; return E;
290 }
291
292 static BitstreamEntry getEndBlock() {
293 BitstreamEntry E; E.Kind = EndBlock; return E;
294 }
295
296 static BitstreamEntry getSubBlock(unsigned ID) {
297 BitstreamEntry E; E.Kind = SubBlock; E.ID = ID; return E;
298 }
299
300 static BitstreamEntry getRecord(unsigned AbbrevID) {
301 BitstreamEntry E; E.Kind = Record; E.ID = AbbrevID; return E;
302 }
303};
304
305/// This represents a position within a bitcode file, implemented on top of a
306/// SimpleBitstreamCursor.
307///
308/// Unlike iterators, BitstreamCursors are heavy-weight objects that should not
309/// be passed by value.
310class BitstreamCursor : SimpleBitstreamCursor {
311 // This is the declared size of code values used for the current block, in
312 // bits.
313 unsigned CurCodeSize = 2;
314
315 /// Abbrevs installed at in this block.
316 std::vector<std::shared_ptr<BitCodeAbbrev>> CurAbbrevs;
317
318 struct Block {
319 unsigned PrevCodeSize;
320 std::vector<std::shared_ptr<BitCodeAbbrev>> PrevAbbrevs;
321
322 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {}
323 };
324
325 /// This tracks the codesize of parent blocks.
326 SmallVector<Block, 8> BlockScope;
327
328 BitstreamBlockInfo *BlockInfo = nullptr;
329
330public:
331 static const size_t MaxChunkSize = sizeof(word_t) * 8;
332
333 BitstreamCursor() = default;
334 explicit BitstreamCursor(ArrayRef<uint8_t> BitcodeBytes)
335 : SimpleBitstreamCursor(BitcodeBytes) {}
336 explicit BitstreamCursor(StringRef BitcodeBytes)
337 : SimpleBitstreamCursor(BitcodeBytes) {}
338 explicit BitstreamCursor(MemoryBufferRef BitcodeBytes)
339 : SimpleBitstreamCursor(BitcodeBytes) {}
340
341 using SimpleBitstreamCursor::canSkipToPos;
342 using SimpleBitstreamCursor::AtEndOfStream;
343 using SimpleBitstreamCursor::getBitcodeBytes;
344 using SimpleBitstreamCursor::GetCurrentBitNo;
345 using SimpleBitstreamCursor::getCurrentByteNo;
346 using SimpleBitstreamCursor::getPointerToByte;
347 using SimpleBitstreamCursor::JumpToBit;
348 using SimpleBitstreamCursor::fillCurWord;
349 using SimpleBitstreamCursor::Read;
350 using SimpleBitstreamCursor::ReadVBR;
351 using SimpleBitstreamCursor::ReadVBR64;
352
353 /// Return the number of bits used to encode an abbrev #.
354 unsigned getAbbrevIDWidth() const { return CurCodeSize; }
355
356 /// Flags that modify the behavior of advance().
357 enum {
358 /// If this flag is used, the advance() method does not automatically pop
359 /// the block scope when the end of a block is reached.
360 AF_DontPopBlockAtEnd = 1,
361
362 /// If this flag is used, abbrev entries are returned just like normal
363 /// records.
364 AF_DontAutoprocessAbbrevs = 2
365 };
366
367 /// Advance the current bitstream, returning the next entry in the stream.
368 BitstreamEntry advance(unsigned Flags = 0) {
369 while (true) {
8
Loop condition is true. Entering loop body
370 if (AtEndOfStream())
9
Taking false branch
371 return BitstreamEntry::getError();
372
373 unsigned Code = ReadCode();
10
Calling 'BitstreamCursor::ReadCode'
374 if (Code == bitc::END_BLOCK) {
375 // Pop the end of the block unless Flags tells us not to.
376 if (!(Flags & AF_DontPopBlockAtEnd) && ReadBlockEnd())
377 return BitstreamEntry::getError();
378 return BitstreamEntry::getEndBlock();
379 }
380
381 if (Code == bitc::ENTER_SUBBLOCK)
382 return BitstreamEntry::getSubBlock(ReadSubBlockID());
383
384 if (Code == bitc::DEFINE_ABBREV &&
385 !(Flags & AF_DontAutoprocessAbbrevs)) {
386 // We read and accumulate abbrev's, the client can't do anything with
387 // them anyway.
388 ReadAbbrevRecord();
389 continue;
390 }
391
392 return BitstreamEntry::getRecord(Code);
393 }
394 }
395
396 /// This is a convenience function for clients that don't expect any
397 /// subblocks. This just skips over them automatically.
398 BitstreamEntry advanceSkippingSubblocks(unsigned Flags = 0) {
399 while (true) {
6
Loop condition is true. Entering loop body
400 // If we found a normal entry, return it.
401 BitstreamEntry Entry = advance(Flags);
7
Calling 'BitstreamCursor::advance'
402 if (Entry.Kind != BitstreamEntry::SubBlock)
403 return Entry;
404
405 // If we found a sub-block, just skip over it and check the next entry.
406 if (SkipBlock())
407 return BitstreamEntry::getError();
408 }
409 }
410
411 unsigned ReadCode() {
412 return Read(CurCodeSize);
11
Calling 'SimpleBitstreamCursor::Read'
413 }
414
415 // Block header:
416 // [ENTER_SUBBLOCK, blockid, newcodelen, <align4bytes>, blocklen]
417
418 /// Having read the ENTER_SUBBLOCK code, read the BlockID for the block.
419 unsigned ReadSubBlockID() {
420 return ReadVBR(bitc::BlockIDWidth);
421 }
422
423 /// Having read the ENTER_SUBBLOCK abbrevid and a BlockID, skip over the body
424 /// of this block. If the block record is malformed, return true.
425 bool SkipBlock() {
426 // Read and ignore the codelen value. Since we are skipping this block, we
427 // don't care what code widths are used inside of it.
428 ReadVBR(bitc::CodeLenWidth);
429 SkipToFourByteBoundary();
430 size_t NumFourBytes = Read(bitc::BlockSizeWidth);
431
432 // Check that the block wasn't partially defined, and that the offset isn't
433 // bogus.
434 size_t SkipTo = GetCurrentBitNo() + NumFourBytes*4*8;
435 if (AtEndOfStream() || !canSkipToPos(SkipTo/8))
436 return true;
437
438 JumpToBit(SkipTo);
439 return false;
440 }
441
442 /// Having read the ENTER_SUBBLOCK abbrevid, enter the block, and return true
443 /// if the block has an error.
444 bool EnterSubBlock(unsigned BlockID, unsigned *NumWordsP = nullptr);
445
446 bool ReadBlockEnd() {
447 if (BlockScope.empty()) return true;
448
449 // Block tail:
450 // [END_BLOCK, <align4bytes>]
451 SkipToFourByteBoundary();
452
453 popBlockScope();
454 return false;
455 }
456
457private:
458 void popBlockScope() {
459 CurCodeSize = BlockScope.back().PrevCodeSize;
460
461 CurAbbrevs = std::move(BlockScope.back().PrevAbbrevs);
462 BlockScope.pop_back();
463 }
464
465 //===--------------------------------------------------------------------===//
466 // Record Processing
467 //===--------------------------------------------------------------------===//
468
469public:
470 /// Return the abbreviation for the specified AbbrevId.
471 const BitCodeAbbrev *getAbbrev(unsigned AbbrevID) {
472 unsigned AbbrevNo = AbbrevID - bitc::FIRST_APPLICATION_ABBREV;
473 if (AbbrevNo >= CurAbbrevs.size())
474 report_fatal_error("Invalid abbrev number");
475 return CurAbbrevs[AbbrevNo].get();
476 }
477
478 /// Read the current record and discard it, returning the code for the record.
479 unsigned skipRecord(unsigned AbbrevID);
480
481 unsigned readRecord(unsigned AbbrevID, SmallVectorImpl<uint64_t> &Vals,
482 StringRef *Blob = nullptr);
483
484 //===--------------------------------------------------------------------===//
485 // Abbrev Processing
486 //===--------------------------------------------------------------------===//
487 void ReadAbbrevRecord();
488
489 /// Read and return a block info block from the bitstream. If an error was
490 /// encountered, return None.
491 ///
492 /// \param ReadBlockInfoNames Whether to read block/record name information in
493 /// the BlockInfo block. Only llvm-bcanalyzer uses this.
494 Optional<BitstreamBlockInfo>
495 ReadBlockInfoBlock(bool ReadBlockInfoNames = false);
496
497 /// Set the block info to be used by this BitstreamCursor to interpret
498 /// abbreviated records.
499 void setBlockInfo(BitstreamBlockInfo *BI) { BlockInfo = BI; }
500};
501
502} // end llvm namespace
503
504#endif // LLVM_BITCODE_BITSTREAMREADER_H