[DebugInfoMetadata] Refactor DIExpression::prepend constants (NFC)
[llvm-core.git] / include / llvm / IR / DebugInfoMetadata.h
blobbcef138429c5509a1ff685e8363b6aa5d840eb3d
1 //===- llvm/IR/DebugInfoMetadata.h - Debug info metadata --------*- 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 // Declarations for metadata specific to debug info.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_IR_DEBUGINFOMETADATA_H
14 #define LLVM_IR_DEBUGINFOMETADATA_H
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/BitmaskEnum.h"
18 #include "llvm/ADT/None.h"
19 #include "llvm/ADT/Optional.h"
20 #include "llvm/ADT/PointerUnion.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/ADT/iterator_range.h"
25 #include "llvm/BinaryFormat/Dwarf.h"
26 #include "llvm/IR/Constants.h"
27 #include "llvm/IR/Metadata.h"
28 #include "llvm/Support/Casting.h"
29 #include <cassert>
30 #include <climits>
31 #include <cstddef>
32 #include <cstdint>
33 #include <iterator>
34 #include <type_traits>
35 #include <vector>
37 // Helper macros for defining get() overrides.
38 #define DEFINE_MDNODE_GET_UNPACK_IMPL(...) __VA_ARGS__
39 #define DEFINE_MDNODE_GET_UNPACK(ARGS) DEFINE_MDNODE_GET_UNPACK_IMPL ARGS
40 #define DEFINE_MDNODE_GET_DISTINCT_TEMPORARY(CLASS, FORMAL, ARGS) \
41 static CLASS *getDistinct(LLVMContext &Context, \
42 DEFINE_MDNODE_GET_UNPACK(FORMAL)) { \
43 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Distinct); \
44 } \
45 static Temp##CLASS getTemporary(LLVMContext &Context, \
46 DEFINE_MDNODE_GET_UNPACK(FORMAL)) { \
47 return Temp##CLASS( \
48 getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Temporary)); \
50 #define DEFINE_MDNODE_GET(CLASS, FORMAL, ARGS) \
51 static CLASS *get(LLVMContext &Context, DEFINE_MDNODE_GET_UNPACK(FORMAL)) { \
52 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \
53 } \
54 static CLASS *getIfExists(LLVMContext &Context, \
55 DEFINE_MDNODE_GET_UNPACK(FORMAL)) { \
56 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \
57 /* ShouldCreate */ false); \
58 } \
59 DEFINE_MDNODE_GET_DISTINCT_TEMPORARY(CLASS, FORMAL, ARGS)
61 namespace llvm {
63 class DITypeRefArray {
64 const MDTuple *N = nullptr;
66 public:
67 DITypeRefArray() = default;
68 DITypeRefArray(const MDTuple *N) : N(N) {}
70 explicit operator bool() const { return get(); }
71 explicit operator MDTuple *() const { return get(); }
73 MDTuple *get() const { return const_cast<MDTuple *>(N); }
74 MDTuple *operator->() const { return get(); }
75 MDTuple &operator*() const { return *get(); }
77 // FIXME: Fix callers and remove condition on N.
78 unsigned size() const { return N ? N->getNumOperands() : 0u; }
79 DIType *operator[](unsigned I) const {
80 return cast_or_null<DIType>(N->getOperand(I));
83 class iterator : std::iterator<std::input_iterator_tag, DIType *,
84 std::ptrdiff_t, void, DIType *> {
85 MDNode::op_iterator I = nullptr;
87 public:
88 iterator() = default;
89 explicit iterator(MDNode::op_iterator I) : I(I) {}
91 DIType *operator*() const { return cast_or_null<DIType>(*I); }
93 iterator &operator++() {
94 ++I;
95 return *this;
98 iterator operator++(int) {
99 iterator Temp(*this);
100 ++I;
101 return Temp;
104 bool operator==(const iterator &X) const { return I == X.I; }
105 bool operator!=(const iterator &X) const { return I != X.I; }
108 // FIXME: Fix callers and remove condition on N.
109 iterator begin() const { return N ? iterator(N->op_begin()) : iterator(); }
110 iterator end() const { return N ? iterator(N->op_end()) : iterator(); }
113 /// Tagged DWARF-like metadata node.
115 /// A metadata node with a DWARF tag (i.e., a constant named \c DW_TAG_*,
116 /// defined in llvm/BinaryFormat/Dwarf.h). Called \a DINode because it's
117 /// potentially used for non-DWARF output.
118 class DINode : public MDNode {
119 friend class LLVMContextImpl;
120 friend class MDNode;
122 protected:
123 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
124 ArrayRef<Metadata *> Ops1, ArrayRef<Metadata *> Ops2 = None)
125 : MDNode(C, ID, Storage, Ops1, Ops2) {
126 assert(Tag < 1u << 16);
127 SubclassData16 = Tag;
129 ~DINode() = default;
131 template <class Ty> Ty *getOperandAs(unsigned I) const {
132 return cast_or_null<Ty>(getOperand(I));
135 StringRef getStringOperand(unsigned I) const {
136 if (auto *S = getOperandAs<MDString>(I))
137 return S->getString();
138 return StringRef();
141 static MDString *getCanonicalMDString(LLVMContext &Context, StringRef S) {
142 if (S.empty())
143 return nullptr;
144 return MDString::get(Context, S);
147 /// Allow subclasses to mutate the tag.
148 void setTag(unsigned Tag) { SubclassData16 = Tag; }
150 public:
151 unsigned getTag() const { return SubclassData16; }
153 /// Debug info flags.
155 /// The three accessibility flags are mutually exclusive and rolled together
156 /// in the first two bits.
157 enum DIFlags : uint32_t {
158 #define HANDLE_DI_FLAG(ID, NAME) Flag##NAME = ID,
159 #define DI_FLAG_LARGEST_NEEDED
160 #include "llvm/IR/DebugInfoFlags.def"
161 FlagAccessibility = FlagPrivate | FlagProtected | FlagPublic,
162 FlagPtrToMemberRep = FlagSingleInheritance | FlagMultipleInheritance |
163 FlagVirtualInheritance,
164 LLVM_MARK_AS_BITMASK_ENUM(FlagLargest)
167 static DIFlags getFlag(StringRef Flag);
168 static StringRef getFlagString(DIFlags Flag);
170 /// Split up a flags bitfield.
172 /// Split \c Flags into \c SplitFlags, a vector of its components. Returns
173 /// any remaining (unrecognized) bits.
174 static DIFlags splitFlags(DIFlags Flags,
175 SmallVectorImpl<DIFlags> &SplitFlags);
177 static bool classof(const Metadata *MD) {
178 switch (MD->getMetadataID()) {
179 default:
180 return false;
181 case GenericDINodeKind:
182 case DISubrangeKind:
183 case DIEnumeratorKind:
184 case DIBasicTypeKind:
185 case DIDerivedTypeKind:
186 case DICompositeTypeKind:
187 case DISubroutineTypeKind:
188 case DIFileKind:
189 case DICompileUnitKind:
190 case DISubprogramKind:
191 case DILexicalBlockKind:
192 case DILexicalBlockFileKind:
193 case DINamespaceKind:
194 case DICommonBlockKind:
195 case DITemplateTypeParameterKind:
196 case DITemplateValueParameterKind:
197 case DIGlobalVariableKind:
198 case DILocalVariableKind:
199 case DILabelKind:
200 case DIObjCPropertyKind:
201 case DIImportedEntityKind:
202 case DIModuleKind:
203 return true;
208 /// Generic tagged DWARF-like metadata node.
210 /// An un-specialized DWARF-like metadata node. The first operand is a
211 /// (possibly empty) null-separated \a MDString header that contains arbitrary
212 /// fields. The remaining operands are \a dwarf_operands(), and are pointers
213 /// to other metadata.
214 class GenericDINode : public DINode {
215 friend class LLVMContextImpl;
216 friend class MDNode;
218 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash,
219 unsigned Tag, ArrayRef<Metadata *> Ops1,
220 ArrayRef<Metadata *> Ops2)
221 : DINode(C, GenericDINodeKind, Storage, Tag, Ops1, Ops2) {
222 setHash(Hash);
224 ~GenericDINode() { dropAllReferences(); }
226 void setHash(unsigned Hash) { SubclassData32 = Hash; }
227 void recalculateHash();
229 static GenericDINode *getImpl(LLVMContext &Context, unsigned Tag,
230 StringRef Header, ArrayRef<Metadata *> DwarfOps,
231 StorageType Storage, bool ShouldCreate = true) {
232 return getImpl(Context, Tag, getCanonicalMDString(Context, Header),
233 DwarfOps, Storage, ShouldCreate);
236 static GenericDINode *getImpl(LLVMContext &Context, unsigned Tag,
237 MDString *Header, ArrayRef<Metadata *> DwarfOps,
238 StorageType Storage, bool ShouldCreate = true);
240 TempGenericDINode cloneImpl() const {
241 return getTemporary(
242 getContext(), getTag(), getHeader(),
243 SmallVector<Metadata *, 4>(dwarf_op_begin(), dwarf_op_end()));
246 public:
247 unsigned getHash() const { return SubclassData32; }
249 DEFINE_MDNODE_GET(GenericDINode, (unsigned Tag, StringRef Header,
250 ArrayRef<Metadata *> DwarfOps),
251 (Tag, Header, DwarfOps))
252 DEFINE_MDNODE_GET(GenericDINode, (unsigned Tag, MDString *Header,
253 ArrayRef<Metadata *> DwarfOps),
254 (Tag, Header, DwarfOps))
256 /// Return a (temporary) clone of this.
257 TempGenericDINode clone() const { return cloneImpl(); }
259 unsigned getTag() const { return SubclassData16; }
260 StringRef getHeader() const { return getStringOperand(0); }
261 MDString *getRawHeader() const { return getOperandAs<MDString>(0); }
263 op_iterator dwarf_op_begin() const { return op_begin() + 1; }
264 op_iterator dwarf_op_end() const { return op_end(); }
265 op_range dwarf_operands() const {
266 return op_range(dwarf_op_begin(), dwarf_op_end());
269 unsigned getNumDwarfOperands() const { return getNumOperands() - 1; }
270 const MDOperand &getDwarfOperand(unsigned I) const {
271 return getOperand(I + 1);
273 void replaceDwarfOperandWith(unsigned I, Metadata *New) {
274 replaceOperandWith(I + 1, New);
277 static bool classof(const Metadata *MD) {
278 return MD->getMetadataID() == GenericDINodeKind;
282 /// Array subrange.
284 /// TODO: Merge into node for DW_TAG_array_type, which should have a custom
285 /// type.
286 class DISubrange : public DINode {
287 friend class LLVMContextImpl;
288 friend class MDNode;
290 int64_t LowerBound;
292 DISubrange(LLVMContext &C, StorageType Storage, Metadata *Node,
293 int64_t LowerBound, ArrayRef<Metadata *> Ops)
294 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, Ops),
295 LowerBound(LowerBound) {}
297 ~DISubrange() = default;
299 static DISubrange *getImpl(LLVMContext &Context, int64_t Count,
300 int64_t LowerBound, StorageType Storage,
301 bool ShouldCreate = true);
303 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
304 int64_t LowerBound, StorageType Storage,
305 bool ShouldCreate = true);
307 TempDISubrange cloneImpl() const {
308 return getTemporary(getContext(), getRawCountNode(), getLowerBound());
311 public:
312 DEFINE_MDNODE_GET(DISubrange, (int64_t Count, int64_t LowerBound = 0),
313 (Count, LowerBound))
315 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0),
316 (CountNode, LowerBound))
318 TempDISubrange clone() const { return cloneImpl(); }
320 int64_t getLowerBound() const { return LowerBound; }
322 Metadata *getRawCountNode() const {
323 return getOperand(0).get();
326 typedef PointerUnion<ConstantInt*, DIVariable*> CountType;
328 CountType getCount() const {
329 if (auto *MD = dyn_cast<ConstantAsMetadata>(getRawCountNode()))
330 return CountType(cast<ConstantInt>(MD->getValue()));
332 if (auto *DV = dyn_cast<DIVariable>(getRawCountNode()))
333 return CountType(DV);
335 return CountType();
338 static bool classof(const Metadata *MD) {
339 return MD->getMetadataID() == DISubrangeKind;
343 /// Enumeration value.
345 /// TODO: Add a pointer to the context (DW_TAG_enumeration_type) once that no
346 /// longer creates a type cycle.
347 class DIEnumerator : public DINode {
348 friend class LLVMContextImpl;
349 friend class MDNode;
351 int64_t Value;
352 DIEnumerator(LLVMContext &C, StorageType Storage, int64_t Value,
353 bool IsUnsigned, ArrayRef<Metadata *> Ops)
354 : DINode(C, DIEnumeratorKind, Storage, dwarf::DW_TAG_enumerator, Ops),
355 Value(Value) {
356 SubclassData32 = IsUnsigned;
358 ~DIEnumerator() = default;
360 static DIEnumerator *getImpl(LLVMContext &Context, int64_t Value,
361 bool IsUnsigned, StringRef Name,
362 StorageType Storage, bool ShouldCreate = true) {
363 return getImpl(Context, Value, IsUnsigned,
364 getCanonicalMDString(Context, Name), Storage, ShouldCreate);
366 static DIEnumerator *getImpl(LLVMContext &Context, int64_t Value,
367 bool IsUnsigned, MDString *Name,
368 StorageType Storage, bool ShouldCreate = true);
370 TempDIEnumerator cloneImpl() const {
371 return getTemporary(getContext(), getValue(), isUnsigned(), getName());
374 public:
375 DEFINE_MDNODE_GET(DIEnumerator, (int64_t Value, bool IsUnsigned, StringRef Name),
376 (Value, IsUnsigned, Name))
377 DEFINE_MDNODE_GET(DIEnumerator, (int64_t Value, bool IsUnsigned, MDString *Name),
378 (Value, IsUnsigned, Name))
380 TempDIEnumerator clone() const { return cloneImpl(); }
382 int64_t getValue() const { return Value; }
383 bool isUnsigned() const { return SubclassData32; }
384 StringRef getName() const { return getStringOperand(0); }
386 MDString *getRawName() const { return getOperandAs<MDString>(0); }
388 static bool classof(const Metadata *MD) {
389 return MD->getMetadataID() == DIEnumeratorKind;
393 /// Base class for scope-like contexts.
395 /// Base class for lexical scopes and types (which are also declaration
396 /// contexts).
398 /// TODO: Separate the concepts of declaration contexts and lexical scopes.
399 class DIScope : public DINode {
400 protected:
401 DIScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
402 ArrayRef<Metadata *> Ops)
403 : DINode(C, ID, Storage, Tag, Ops) {}
404 ~DIScope() = default;
406 public:
407 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
409 inline StringRef getFilename() const;
410 inline StringRef getDirectory() const;
411 inline Optional<StringRef> getSource() const;
413 StringRef getName() const;
414 DIScope *getScope() const;
416 /// Return the raw underlying file.
418 /// A \a DIFile is a \a DIScope, but it doesn't point at a separate file (it
419 /// \em is the file). If \c this is an \a DIFile, we need to return \c this.
420 /// Otherwise, return the first operand, which is where all other subclasses
421 /// store their file pointer.
422 Metadata *getRawFile() const {
423 return isa<DIFile>(this) ? const_cast<DIScope *>(this)
424 : static_cast<Metadata *>(getOperand(0));
427 static bool classof(const Metadata *MD) {
428 switch (MD->getMetadataID()) {
429 default:
430 return false;
431 case DIBasicTypeKind:
432 case DIDerivedTypeKind:
433 case DICompositeTypeKind:
434 case DISubroutineTypeKind:
435 case DIFileKind:
436 case DICompileUnitKind:
437 case DISubprogramKind:
438 case DILexicalBlockKind:
439 case DILexicalBlockFileKind:
440 case DINamespaceKind:
441 case DICommonBlockKind:
442 case DIModuleKind:
443 return true;
448 /// File.
450 /// TODO: Merge with directory/file node (including users).
451 /// TODO: Canonicalize paths on creation.
452 class DIFile : public DIScope {
453 friend class LLVMContextImpl;
454 friend class MDNode;
456 public:
457 /// Which algorithm (e.g. MD5) a checksum was generated with.
459 /// The encoding is explicit because it is used directly in Bitcode. The
460 /// value 0 is reserved to indicate the absence of a checksum in Bitcode.
461 enum ChecksumKind {
462 // The first variant was originally CSK_None, encoded as 0. The new
463 // internal representation removes the need for this by wrapping the
464 // ChecksumInfo in an Optional, but to preserve Bitcode compatibility the 0
465 // encoding is reserved.
466 CSK_MD5 = 1,
467 CSK_SHA1 = 2,
468 CSK_Last = CSK_SHA1 // Should be last enumeration.
471 /// A single checksum, represented by a \a Kind and a \a Value (a string).
472 template <typename T>
473 struct ChecksumInfo {
474 /// The kind of checksum which \a Value encodes.
475 ChecksumKind Kind;
476 /// The string value of the checksum.
477 T Value;
479 ChecksumInfo(ChecksumKind Kind, T Value) : Kind(Kind), Value(Value) { }
480 ~ChecksumInfo() = default;
481 bool operator==(const ChecksumInfo<T> &X) const {
482 return Kind == X.Kind && Value == X.Value;
484 bool operator!=(const ChecksumInfo<T> &X) const { return !(*this == X); }
485 StringRef getKindAsString() const { return getChecksumKindAsString(Kind); }
488 private:
489 Optional<ChecksumInfo<MDString *>> Checksum;
490 Optional<MDString *> Source;
492 DIFile(LLVMContext &C, StorageType Storage,
493 Optional<ChecksumInfo<MDString *>> CS, Optional<MDString *> Src,
494 ArrayRef<Metadata *> Ops)
495 : DIScope(C, DIFileKind, Storage, dwarf::DW_TAG_file_type, Ops),
496 Checksum(CS), Source(Src) {}
497 ~DIFile() = default;
499 static DIFile *getImpl(LLVMContext &Context, StringRef Filename,
500 StringRef Directory,
501 Optional<ChecksumInfo<StringRef>> CS,
502 Optional<StringRef> Source,
503 StorageType Storage, bool ShouldCreate = true) {
504 Optional<ChecksumInfo<MDString *>> MDChecksum;
505 if (CS)
506 MDChecksum.emplace(CS->Kind, getCanonicalMDString(Context, CS->Value));
507 return getImpl(Context, getCanonicalMDString(Context, Filename),
508 getCanonicalMDString(Context, Directory), MDChecksum,
509 Source ? Optional<MDString *>(getCanonicalMDString(Context, *Source)) : None,
510 Storage, ShouldCreate);
512 static DIFile *getImpl(LLVMContext &Context, MDString *Filename,
513 MDString *Directory,
514 Optional<ChecksumInfo<MDString *>> CS,
515 Optional<MDString *> Source, StorageType Storage,
516 bool ShouldCreate = true);
518 TempDIFile cloneImpl() const {
519 return getTemporary(getContext(), getFilename(), getDirectory(),
520 getChecksum(), getSource());
523 public:
524 DEFINE_MDNODE_GET(DIFile, (StringRef Filename, StringRef Directory,
525 Optional<ChecksumInfo<StringRef>> CS = None,
526 Optional<StringRef> Source = None),
527 (Filename, Directory, CS, Source))
528 DEFINE_MDNODE_GET(DIFile, (MDString * Filename, MDString *Directory,
529 Optional<ChecksumInfo<MDString *>> CS = None,
530 Optional<MDString *> Source = None),
531 (Filename, Directory, CS, Source))
533 TempDIFile clone() const { return cloneImpl(); }
535 StringRef getFilename() const { return getStringOperand(0); }
536 StringRef getDirectory() const { return getStringOperand(1); }
537 Optional<ChecksumInfo<StringRef>> getChecksum() const {
538 Optional<ChecksumInfo<StringRef>> StringRefChecksum;
539 if (Checksum)
540 StringRefChecksum.emplace(Checksum->Kind, Checksum->Value->getString());
541 return StringRefChecksum;
543 Optional<StringRef> getSource() const {
544 return Source ? Optional<StringRef>((*Source)->getString()) : None;
547 MDString *getRawFilename() const { return getOperandAs<MDString>(0); }
548 MDString *getRawDirectory() const { return getOperandAs<MDString>(1); }
549 Optional<ChecksumInfo<MDString *>> getRawChecksum() const { return Checksum; }
550 Optional<MDString *> getRawSource() const { return Source; }
552 static StringRef getChecksumKindAsString(ChecksumKind CSKind);
553 static Optional<ChecksumKind> getChecksumKind(StringRef CSKindStr);
555 static bool classof(const Metadata *MD) {
556 return MD->getMetadataID() == DIFileKind;
560 StringRef DIScope::getFilename() const {
561 if (auto *F = getFile())
562 return F->getFilename();
563 return "";
566 StringRef DIScope::getDirectory() const {
567 if (auto *F = getFile())
568 return F->getDirectory();
569 return "";
572 Optional<StringRef> DIScope::getSource() const {
573 if (auto *F = getFile())
574 return F->getSource();
575 return None;
578 /// Base class for types.
580 /// TODO: Remove the hardcoded name and context, since many types don't use
581 /// them.
582 /// TODO: Split up flags.
583 class DIType : public DIScope {
584 unsigned Line;
585 DIFlags Flags;
586 uint64_t SizeInBits;
587 uint64_t OffsetInBits;
588 uint32_t AlignInBits;
590 protected:
591 DIType(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
592 unsigned Line, uint64_t SizeInBits, uint32_t AlignInBits,
593 uint64_t OffsetInBits, DIFlags Flags, ArrayRef<Metadata *> Ops)
594 : DIScope(C, ID, Storage, Tag, Ops) {
595 init(Line, SizeInBits, AlignInBits, OffsetInBits, Flags);
597 ~DIType() = default;
599 void init(unsigned Line, uint64_t SizeInBits, uint32_t AlignInBits,
600 uint64_t OffsetInBits, DIFlags Flags) {
601 this->Line = Line;
602 this->Flags = Flags;
603 this->SizeInBits = SizeInBits;
604 this->AlignInBits = AlignInBits;
605 this->OffsetInBits = OffsetInBits;
608 /// Change fields in place.
609 void mutate(unsigned Tag, unsigned Line, uint64_t SizeInBits,
610 uint32_t AlignInBits, uint64_t OffsetInBits, DIFlags Flags) {
611 assert(isDistinct() && "Only distinct nodes can mutate");
612 setTag(Tag);
613 init(Line, SizeInBits, AlignInBits, OffsetInBits, Flags);
616 public:
617 TempDIType clone() const {
618 return TempDIType(cast<DIType>(MDNode::clone().release()));
621 unsigned getLine() const { return Line; }
622 uint64_t getSizeInBits() const { return SizeInBits; }
623 uint32_t getAlignInBits() const { return AlignInBits; }
624 uint32_t getAlignInBytes() const { return getAlignInBits() / CHAR_BIT; }
625 uint64_t getOffsetInBits() const { return OffsetInBits; }
626 DIFlags getFlags() const { return Flags; }
628 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
629 StringRef getName() const { return getStringOperand(2); }
632 Metadata *getRawScope() const { return getOperand(1); }
633 MDString *getRawName() const { return getOperandAs<MDString>(2); }
635 /// Returns a new temporary DIType with updated Flags
636 TempDIType cloneWithFlags(DIFlags NewFlags) const {
637 auto NewTy = clone();
638 NewTy->Flags = NewFlags;
639 return NewTy;
642 bool isPrivate() const {
643 return (getFlags() & FlagAccessibility) == FlagPrivate;
645 bool isProtected() const {
646 return (getFlags() & FlagAccessibility) == FlagProtected;
648 bool isPublic() const {
649 return (getFlags() & FlagAccessibility) == FlagPublic;
651 bool isForwardDecl() const { return getFlags() & FlagFwdDecl; }
652 bool isAppleBlockExtension() const { return getFlags() & FlagAppleBlock; }
653 bool isBlockByrefStruct() const { return getFlags() & FlagBlockByrefStruct; }
654 bool isVirtual() const { return getFlags() & FlagVirtual; }
655 bool isArtificial() const { return getFlags() & FlagArtificial; }
656 bool isObjectPointer() const { return getFlags() & FlagObjectPointer; }
657 bool isObjcClassComplete() const {
658 return getFlags() & FlagObjcClassComplete;
660 bool isVector() const { return getFlags() & FlagVector; }
661 bool isBitField() const { return getFlags() & FlagBitField; }
662 bool isStaticMember() const { return getFlags() & FlagStaticMember; }
663 bool isLValueReference() const { return getFlags() & FlagLValueReference; }
664 bool isRValueReference() const { return getFlags() & FlagRValueReference; }
665 bool isTypePassByValue() const { return getFlags() & FlagTypePassByValue; }
666 bool isTypePassByReference() const {
667 return getFlags() & FlagTypePassByReference;
669 bool isBigEndian() const { return getFlags() & FlagBigEndian; }
670 bool isLittleEndian() const { return getFlags() & FlagLittleEndian; }
672 static bool classof(const Metadata *MD) {
673 switch (MD->getMetadataID()) {
674 default:
675 return false;
676 case DIBasicTypeKind:
677 case DIDerivedTypeKind:
678 case DICompositeTypeKind:
679 case DISubroutineTypeKind:
680 return true;
685 /// Basic type, like 'int' or 'float'.
687 /// TODO: Split out DW_TAG_unspecified_type.
688 /// TODO: Drop unused accessors.
689 class DIBasicType : public DIType {
690 friend class LLVMContextImpl;
691 friend class MDNode;
693 unsigned Encoding;
695 DIBasicType(LLVMContext &C, StorageType Storage, unsigned Tag,
696 uint64_t SizeInBits, uint32_t AlignInBits, unsigned Encoding,
697 DIFlags Flags, ArrayRef<Metadata *> Ops)
698 : DIType(C, DIBasicTypeKind, Storage, Tag, 0, SizeInBits, AlignInBits, 0,
699 Flags, Ops),
700 Encoding(Encoding) {}
701 ~DIBasicType() = default;
703 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
704 StringRef Name, uint64_t SizeInBits,
705 uint32_t AlignInBits, unsigned Encoding,
706 DIFlags Flags, StorageType Storage,
707 bool ShouldCreate = true) {
708 return getImpl(Context, Tag, getCanonicalMDString(Context, Name),
709 SizeInBits, AlignInBits, Encoding, Flags, Storage,
710 ShouldCreate);
712 static DIBasicType *getImpl(LLVMContext &Context, unsigned Tag,
713 MDString *Name, uint64_t SizeInBits,
714 uint32_t AlignInBits, unsigned Encoding,
715 DIFlags Flags, StorageType Storage,
716 bool ShouldCreate = true);
718 TempDIBasicType cloneImpl() const {
719 return getTemporary(getContext(), getTag(), getName(), getSizeInBits(),
720 getAlignInBits(), getEncoding(), getFlags());
723 public:
724 DEFINE_MDNODE_GET(DIBasicType, (unsigned Tag, StringRef Name),
725 (Tag, Name, 0, 0, 0, FlagZero))
726 DEFINE_MDNODE_GET(DIBasicType,
727 (unsigned Tag, StringRef Name, uint64_t SizeInBits,
728 uint32_t AlignInBits, unsigned Encoding, DIFlags Flags),
729 (Tag, Name, SizeInBits, AlignInBits, Encoding, Flags))
730 DEFINE_MDNODE_GET(DIBasicType,
731 (unsigned Tag, MDString *Name, uint64_t SizeInBits,
732 uint32_t AlignInBits, unsigned Encoding, DIFlags Flags),
733 (Tag, Name, SizeInBits, AlignInBits, Encoding, Flags))
735 TempDIBasicType clone() const { return cloneImpl(); }
737 unsigned getEncoding() const { return Encoding; }
739 enum class Signedness { Signed, Unsigned };
741 /// Return the signedness of this type, or None if this type is neither
742 /// signed nor unsigned.
743 Optional<Signedness> getSignedness() const;
745 static bool classof(const Metadata *MD) {
746 return MD->getMetadataID() == DIBasicTypeKind;
750 /// Derived types.
752 /// This includes qualified types, pointers, references, friends, typedefs, and
753 /// class members.
755 /// TODO: Split out members (inheritance, fields, methods, etc.).
756 class DIDerivedType : public DIType {
757 friend class LLVMContextImpl;
758 friend class MDNode;
760 /// The DWARF address space of the memory pointed to or referenced by a
761 /// pointer or reference type respectively.
762 Optional<unsigned> DWARFAddressSpace;
764 DIDerivedType(LLVMContext &C, StorageType Storage, unsigned Tag,
765 unsigned Line, uint64_t SizeInBits, uint32_t AlignInBits,
766 uint64_t OffsetInBits, Optional<unsigned> DWARFAddressSpace,
767 DIFlags Flags, ArrayRef<Metadata *> Ops)
768 : DIType(C, DIDerivedTypeKind, Storage, Tag, Line, SizeInBits,
769 AlignInBits, OffsetInBits, Flags, Ops),
770 DWARFAddressSpace(DWARFAddressSpace) {}
771 ~DIDerivedType() = default;
773 static DIDerivedType *
774 getImpl(LLVMContext &Context, unsigned Tag, StringRef Name, DIFile *File,
775 unsigned Line, DIScope *Scope, DIType *BaseType, uint64_t SizeInBits,
776 uint32_t AlignInBits, uint64_t OffsetInBits,
777 Optional<unsigned> DWARFAddressSpace, DIFlags Flags,
778 Metadata *ExtraData, StorageType Storage, bool ShouldCreate = true) {
779 return getImpl(Context, Tag, getCanonicalMDString(Context, Name), File,
780 Line, Scope, BaseType, SizeInBits, AlignInBits, OffsetInBits,
781 DWARFAddressSpace, Flags, ExtraData, Storage, ShouldCreate);
783 static DIDerivedType *getImpl(LLVMContext &Context, unsigned Tag,
784 MDString *Name, Metadata *File, unsigned Line,
785 Metadata *Scope, Metadata *BaseType,
786 uint64_t SizeInBits, uint32_t AlignInBits,
787 uint64_t OffsetInBits,
788 Optional<unsigned> DWARFAddressSpace,
789 DIFlags Flags, Metadata *ExtraData,
790 StorageType Storage, bool ShouldCreate = true);
792 TempDIDerivedType cloneImpl() const {
793 return getTemporary(getContext(), getTag(), getName(), getFile(), getLine(),
794 getScope(), getBaseType(), getSizeInBits(),
795 getAlignInBits(), getOffsetInBits(),
796 getDWARFAddressSpace(), getFlags(), getExtraData());
799 public:
800 DEFINE_MDNODE_GET(DIDerivedType,
801 (unsigned Tag, MDString *Name, Metadata *File,
802 unsigned Line, Metadata *Scope, Metadata *BaseType,
803 uint64_t SizeInBits, uint32_t AlignInBits,
804 uint64_t OffsetInBits,
805 Optional<unsigned> DWARFAddressSpace, DIFlags Flags,
806 Metadata *ExtraData = nullptr),
807 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
808 AlignInBits, OffsetInBits, DWARFAddressSpace, Flags,
809 ExtraData))
810 DEFINE_MDNODE_GET(DIDerivedType,
811 (unsigned Tag, StringRef Name, DIFile *File, unsigned Line,
812 DIScope *Scope, DIType *BaseType, uint64_t SizeInBits,
813 uint32_t AlignInBits, uint64_t OffsetInBits,
814 Optional<unsigned> DWARFAddressSpace, DIFlags Flags,
815 Metadata *ExtraData = nullptr),
816 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
817 AlignInBits, OffsetInBits, DWARFAddressSpace, Flags,
818 ExtraData))
820 TempDIDerivedType clone() const { return cloneImpl(); }
822 /// Get the base type this is derived from.
823 DIType *getBaseType() const { return cast_or_null<DIType>(getRawBaseType()); }
824 Metadata *getRawBaseType() const { return getOperand(3); }
826 /// \returns The DWARF address space of the memory pointed to or referenced by
827 /// a pointer or reference type respectively.
828 Optional<unsigned> getDWARFAddressSpace() const { return DWARFAddressSpace; }
830 /// Get extra data associated with this derived type.
832 /// Class type for pointer-to-members, objective-c property node for ivars,
833 /// global constant wrapper for static members, or virtual base pointer offset
834 /// for inheritance.
836 /// TODO: Separate out types that need this extra operand: pointer-to-member
837 /// types and member fields (static members and ivars).
838 Metadata *getExtraData() const { return getRawExtraData(); }
839 Metadata *getRawExtraData() const { return getOperand(4); }
841 /// Get casted version of extra data.
842 /// @{
843 DIType *getClassType() const {
844 assert(getTag() == dwarf::DW_TAG_ptr_to_member_type);
845 return cast_or_null<DIType>(getExtraData());
848 DIObjCProperty *getObjCProperty() const {
849 return dyn_cast_or_null<DIObjCProperty>(getExtraData());
852 uint32_t getVBPtrOffset() const {
853 assert(getTag() == dwarf::DW_TAG_inheritance);
854 if (auto *CM = cast_or_null<ConstantAsMetadata>(getExtraData()))
855 if (auto *CI = dyn_cast_or_null<ConstantInt>(CM->getValue()))
856 return static_cast<uint32_t>(CI->getZExtValue());
857 return 0;
860 Constant *getStorageOffsetInBits() const {
861 assert(getTag() == dwarf::DW_TAG_member && isBitField());
862 if (auto *C = cast_or_null<ConstantAsMetadata>(getExtraData()))
863 return C->getValue();
864 return nullptr;
867 Constant *getConstant() const {
868 assert(getTag() == dwarf::DW_TAG_member && isStaticMember());
869 if (auto *C = cast_or_null<ConstantAsMetadata>(getExtraData()))
870 return C->getValue();
871 return nullptr;
873 Constant *getDiscriminantValue() const {
874 assert(getTag() == dwarf::DW_TAG_member && !isStaticMember());
875 if (auto *C = cast_or_null<ConstantAsMetadata>(getExtraData()))
876 return C->getValue();
877 return nullptr;
879 /// @}
881 static bool classof(const Metadata *MD) {
882 return MD->getMetadataID() == DIDerivedTypeKind;
886 /// Composite types.
888 /// TODO: Detach from DerivedTypeBase (split out MDEnumType?).
889 /// TODO: Create a custom, unrelated node for DW_TAG_array_type.
890 class DICompositeType : public DIType {
891 friend class LLVMContextImpl;
892 friend class MDNode;
894 unsigned RuntimeLang;
896 DICompositeType(LLVMContext &C, StorageType Storage, unsigned Tag,
897 unsigned Line, unsigned RuntimeLang, uint64_t SizeInBits,
898 uint32_t AlignInBits, uint64_t OffsetInBits, DIFlags Flags,
899 ArrayRef<Metadata *> Ops)
900 : DIType(C, DICompositeTypeKind, Storage, Tag, Line, SizeInBits,
901 AlignInBits, OffsetInBits, Flags, Ops),
902 RuntimeLang(RuntimeLang) {}
903 ~DICompositeType() = default;
905 /// Change fields in place.
906 void mutate(unsigned Tag, unsigned Line, unsigned RuntimeLang,
907 uint64_t SizeInBits, uint32_t AlignInBits,
908 uint64_t OffsetInBits, DIFlags Flags) {
909 assert(isDistinct() && "Only distinct nodes can mutate");
910 assert(getRawIdentifier() && "Only ODR-uniqued nodes should mutate");
911 this->RuntimeLang = RuntimeLang;
912 DIType::mutate(Tag, Line, SizeInBits, AlignInBits, OffsetInBits, Flags);
915 static DICompositeType *
916 getImpl(LLVMContext &Context, unsigned Tag, StringRef Name, Metadata *File,
917 unsigned Line, DIScope *Scope, DIType *BaseType, uint64_t SizeInBits,
918 uint32_t AlignInBits, uint64_t OffsetInBits, DIFlags Flags,
919 DINodeArray Elements, unsigned RuntimeLang, DIType *VTableHolder,
920 DITemplateParameterArray TemplateParams, StringRef Identifier,
921 DIDerivedType *Discriminator, StorageType Storage,
922 bool ShouldCreate = true) {
923 return getImpl(
924 Context, Tag, getCanonicalMDString(Context, Name), File, Line, Scope,
925 BaseType, SizeInBits, AlignInBits, OffsetInBits, Flags, Elements.get(),
926 RuntimeLang, VTableHolder, TemplateParams.get(),
927 getCanonicalMDString(Context, Identifier), Discriminator, Storage, ShouldCreate);
929 static DICompositeType *
930 getImpl(LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *File,
931 unsigned Line, Metadata *Scope, Metadata *BaseType,
932 uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits,
933 DIFlags Flags, Metadata *Elements, unsigned RuntimeLang,
934 Metadata *VTableHolder, Metadata *TemplateParams,
935 MDString *Identifier, Metadata *Discriminator,
936 StorageType Storage, bool ShouldCreate = true);
938 TempDICompositeType cloneImpl() const {
939 return getTemporary(getContext(), getTag(), getName(), getFile(), getLine(),
940 getScope(), getBaseType(), getSizeInBits(),
941 getAlignInBits(), getOffsetInBits(), getFlags(),
942 getElements(), getRuntimeLang(), getVTableHolder(),
943 getTemplateParams(), getIdentifier(), getDiscriminator());
946 public:
947 DEFINE_MDNODE_GET(DICompositeType,
948 (unsigned Tag, StringRef Name, DIFile *File, unsigned Line,
949 DIScope *Scope, DIType *BaseType, uint64_t SizeInBits,
950 uint32_t AlignInBits, uint64_t OffsetInBits, DIFlags Flags,
951 DINodeArray Elements, unsigned RuntimeLang,
952 DIType *VTableHolder,
953 DITemplateParameterArray TemplateParams = nullptr,
954 StringRef Identifier = "",
955 DIDerivedType *Discriminator = nullptr),
956 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
957 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
958 VTableHolder, TemplateParams, Identifier, Discriminator))
959 DEFINE_MDNODE_GET(DICompositeType,
960 (unsigned Tag, MDString *Name, Metadata *File,
961 unsigned Line, Metadata *Scope, Metadata *BaseType,
962 uint64_t SizeInBits, uint32_t AlignInBits,
963 uint64_t OffsetInBits, DIFlags Flags, Metadata *Elements,
964 unsigned RuntimeLang, Metadata *VTableHolder,
965 Metadata *TemplateParams = nullptr,
966 MDString *Identifier = nullptr,
967 Metadata *Discriminator = nullptr),
968 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
969 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
970 VTableHolder, TemplateParams, Identifier, Discriminator))
972 TempDICompositeType clone() const { return cloneImpl(); }
974 /// Get a DICompositeType with the given ODR identifier.
976 /// If \a LLVMContext::isODRUniquingDebugTypes(), gets the mapped
977 /// DICompositeType for the given ODR \c Identifier. If none exists, creates
978 /// a new node.
980 /// Else, returns \c nullptr.
981 static DICompositeType *
982 getODRType(LLVMContext &Context, MDString &Identifier, unsigned Tag,
983 MDString *Name, Metadata *File, unsigned Line, Metadata *Scope,
984 Metadata *BaseType, uint64_t SizeInBits, uint32_t AlignInBits,
985 uint64_t OffsetInBits, DIFlags Flags, Metadata *Elements,
986 unsigned RuntimeLang, Metadata *VTableHolder,
987 Metadata *TemplateParams, Metadata *Discriminator);
988 static DICompositeType *getODRTypeIfExists(LLVMContext &Context,
989 MDString &Identifier);
991 /// Build a DICompositeType with the given ODR identifier.
993 /// Looks up the mapped DICompositeType for the given ODR \c Identifier. If
994 /// it doesn't exist, creates a new one. If it does exist and \a
995 /// isForwardDecl(), and the new arguments would be a definition, mutates the
996 /// the type in place. In either case, returns the type.
998 /// If not \a LLVMContext::isODRUniquingDebugTypes(), this function returns
999 /// nullptr.
1000 static DICompositeType *
1001 buildODRType(LLVMContext &Context, MDString &Identifier, unsigned Tag,
1002 MDString *Name, Metadata *File, unsigned Line, Metadata *Scope,
1003 Metadata *BaseType, uint64_t SizeInBits, uint32_t AlignInBits,
1004 uint64_t OffsetInBits, DIFlags Flags, Metadata *Elements,
1005 unsigned RuntimeLang, Metadata *VTableHolder,
1006 Metadata *TemplateParams, Metadata *Discriminator);
1008 DIType *getBaseType() const { return cast_or_null<DIType>(getRawBaseType()); }
1009 DINodeArray getElements() const {
1010 return cast_or_null<MDTuple>(getRawElements());
1012 DIType *getVTableHolder() const {
1013 return cast_or_null<DIType>(getRawVTableHolder());
1015 DITemplateParameterArray getTemplateParams() const {
1016 return cast_or_null<MDTuple>(getRawTemplateParams());
1018 StringRef getIdentifier() const { return getStringOperand(7); }
1019 unsigned getRuntimeLang() const { return RuntimeLang; }
1021 Metadata *getRawBaseType() const { return getOperand(3); }
1022 Metadata *getRawElements() const { return getOperand(4); }
1023 Metadata *getRawVTableHolder() const { return getOperand(5); }
1024 Metadata *getRawTemplateParams() const { return getOperand(6); }
1025 MDString *getRawIdentifier() const { return getOperandAs<MDString>(7); }
1026 Metadata *getRawDiscriminator() const { return getOperand(8); }
1027 DIDerivedType *getDiscriminator() const { return getOperandAs<DIDerivedType>(8); }
1029 /// Replace operands.
1031 /// If this \a isUniqued() and not \a isResolved(), on a uniquing collision
1032 /// this will be RAUW'ed and deleted. Use a \a TrackingMDRef to keep track
1033 /// of its movement if necessary.
1034 /// @{
1035 void replaceElements(DINodeArray Elements) {
1036 #ifndef NDEBUG
1037 for (DINode *Op : getElements())
1038 assert(is_contained(Elements->operands(), Op) &&
1039 "Lost a member during member list replacement");
1040 #endif
1041 replaceOperandWith(4, Elements.get());
1044 void replaceVTableHolder(DIType *VTableHolder) {
1045 replaceOperandWith(5, VTableHolder);
1048 void replaceTemplateParams(DITemplateParameterArray TemplateParams) {
1049 replaceOperandWith(6, TemplateParams.get());
1051 /// @}
1053 static bool classof(const Metadata *MD) {
1054 return MD->getMetadataID() == DICompositeTypeKind;
1058 /// Type array for a subprogram.
1060 /// TODO: Fold the array of types in directly as operands.
1061 class DISubroutineType : public DIType {
1062 friend class LLVMContextImpl;
1063 friend class MDNode;
1065 /// The calling convention used with DW_AT_calling_convention. Actually of
1066 /// type dwarf::CallingConvention.
1067 uint8_t CC;
1069 DISubroutineType(LLVMContext &C, StorageType Storage, DIFlags Flags,
1070 uint8_t CC, ArrayRef<Metadata *> Ops)
1071 : DIType(C, DISubroutineTypeKind, Storage, dwarf::DW_TAG_subroutine_type,
1072 0, 0, 0, 0, Flags, Ops),
1073 CC(CC) {}
1074 ~DISubroutineType() = default;
1076 static DISubroutineType *getImpl(LLVMContext &Context, DIFlags Flags,
1077 uint8_t CC, DITypeRefArray TypeArray,
1078 StorageType Storage,
1079 bool ShouldCreate = true) {
1080 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate);
1082 static DISubroutineType *getImpl(LLVMContext &Context, DIFlags Flags,
1083 uint8_t CC, Metadata *TypeArray,
1084 StorageType Storage,
1085 bool ShouldCreate = true);
1087 TempDISubroutineType cloneImpl() const {
1088 return getTemporary(getContext(), getFlags(), getCC(), getTypeArray());
1091 public:
1092 DEFINE_MDNODE_GET(DISubroutineType,
1093 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray),
1094 (Flags, CC, TypeArray))
1095 DEFINE_MDNODE_GET(DISubroutineType,
1096 (DIFlags Flags, uint8_t CC, Metadata *TypeArray),
1097 (Flags, CC, TypeArray))
1099 TempDISubroutineType clone() const { return cloneImpl(); }
1101 uint8_t getCC() const { return CC; }
1103 DITypeRefArray getTypeArray() const {
1104 return cast_or_null<MDTuple>(getRawTypeArray());
1107 Metadata *getRawTypeArray() const { return getOperand(3); }
1109 static bool classof(const Metadata *MD) {
1110 return MD->getMetadataID() == DISubroutineTypeKind;
1114 /// Compile unit.
1115 class DICompileUnit : public DIScope {
1116 friend class LLVMContextImpl;
1117 friend class MDNode;
1119 public:
1120 enum DebugEmissionKind : unsigned {
1121 NoDebug = 0,
1122 FullDebug,
1123 LineTablesOnly,
1124 DebugDirectivesOnly,
1125 LastEmissionKind = DebugDirectivesOnly
1128 enum class DebugNameTableKind : unsigned {
1129 Default = 0,
1130 GNU = 1,
1131 None = 2,
1132 LastDebugNameTableKind = None
1135 static Optional<DebugEmissionKind> getEmissionKind(StringRef Str);
1136 static const char *emissionKindString(DebugEmissionKind EK);
1137 static Optional<DebugNameTableKind> getNameTableKind(StringRef Str);
1138 static const char *nameTableKindString(DebugNameTableKind PK);
1140 private:
1141 unsigned SourceLanguage;
1142 bool IsOptimized;
1143 unsigned RuntimeVersion;
1144 unsigned EmissionKind;
1145 uint64_t DWOId;
1146 bool SplitDebugInlining;
1147 bool DebugInfoForProfiling;
1148 unsigned NameTableKind;
1149 bool RangesBaseAddress;
1151 DICompileUnit(LLVMContext &C, StorageType Storage, unsigned SourceLanguage,
1152 bool IsOptimized, unsigned RuntimeVersion,
1153 unsigned EmissionKind, uint64_t DWOId, bool SplitDebugInlining,
1154 bool DebugInfoForProfiling, unsigned NameTableKind,
1155 bool RangesBaseAddress, ArrayRef<Metadata *> Ops)
1156 : DIScope(C, DICompileUnitKind, Storage, dwarf::DW_TAG_compile_unit, Ops),
1157 SourceLanguage(SourceLanguage), IsOptimized(IsOptimized),
1158 RuntimeVersion(RuntimeVersion), EmissionKind(EmissionKind),
1159 DWOId(DWOId), SplitDebugInlining(SplitDebugInlining),
1160 DebugInfoForProfiling(DebugInfoForProfiling),
1161 NameTableKind(NameTableKind), RangesBaseAddress(RangesBaseAddress) {
1162 assert(Storage != Uniqued);
1164 ~DICompileUnit() = default;
1166 static DICompileUnit *
1167 getImpl(LLVMContext &Context, unsigned SourceLanguage, DIFile *File,
1168 StringRef Producer, bool IsOptimized, StringRef Flags,
1169 unsigned RuntimeVersion, StringRef SplitDebugFilename,
1170 unsigned EmissionKind, DICompositeTypeArray EnumTypes,
1171 DIScopeArray RetainedTypes,
1172 DIGlobalVariableExpressionArray GlobalVariables,
1173 DIImportedEntityArray ImportedEntities, DIMacroNodeArray Macros,
1174 uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling,
1175 unsigned NameTableKind, bool RangesBaseAddress, StorageType Storage,
1176 bool ShouldCreate = true) {
1177 return getImpl(Context, SourceLanguage, File,
1178 getCanonicalMDString(Context, Producer), IsOptimized,
1179 getCanonicalMDString(Context, Flags), RuntimeVersion,
1180 getCanonicalMDString(Context, SplitDebugFilename),
1181 EmissionKind, EnumTypes.get(), RetainedTypes.get(),
1182 GlobalVariables.get(), ImportedEntities.get(), Macros.get(),
1183 DWOId, SplitDebugInlining, DebugInfoForProfiling,
1184 NameTableKind, RangesBaseAddress, Storage, ShouldCreate);
1186 static DICompileUnit *
1187 getImpl(LLVMContext &Context, unsigned SourceLanguage, Metadata *File,
1188 MDString *Producer, bool IsOptimized, MDString *Flags,
1189 unsigned RuntimeVersion, MDString *SplitDebugFilename,
1190 unsigned EmissionKind, Metadata *EnumTypes, Metadata *RetainedTypes,
1191 Metadata *GlobalVariables, Metadata *ImportedEntities,
1192 Metadata *Macros, uint64_t DWOId, bool SplitDebugInlining,
1193 bool DebugInfoForProfiling, unsigned NameTableKind,
1194 bool RangesBaseAddress, StorageType Storage, bool ShouldCreate = true);
1196 TempDICompileUnit cloneImpl() const {
1197 return getTemporary(
1198 getContext(), getSourceLanguage(), getFile(), getProducer(),
1199 isOptimized(), getFlags(), getRuntimeVersion(), getSplitDebugFilename(),
1200 getEmissionKind(), getEnumTypes(), getRetainedTypes(),
1201 getGlobalVariables(), getImportedEntities(), getMacros(), DWOId,
1202 getSplitDebugInlining(), getDebugInfoForProfiling(), getNameTableKind(),
1203 getRangesBaseAddress());
1206 public:
1207 static void get() = delete;
1208 static void getIfExists() = delete;
1210 DEFINE_MDNODE_GET_DISTINCT_TEMPORARY(
1211 DICompileUnit,
1212 (unsigned SourceLanguage, DIFile *File, StringRef Producer,
1213 bool IsOptimized, StringRef Flags, unsigned RuntimeVersion,
1214 StringRef SplitDebugFilename, DebugEmissionKind EmissionKind,
1215 DICompositeTypeArray EnumTypes, DIScopeArray RetainedTypes,
1216 DIGlobalVariableExpressionArray GlobalVariables,
1217 DIImportedEntityArray ImportedEntities, DIMacroNodeArray Macros,
1218 uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling,
1219 DebugNameTableKind NameTableKind, bool RangesBaseAddress),
1220 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1221 SplitDebugFilename, EmissionKind, EnumTypes, RetainedTypes,
1222 GlobalVariables, ImportedEntities, Macros, DWOId, SplitDebugInlining,
1223 DebugInfoForProfiling, (unsigned)NameTableKind, RangesBaseAddress))
1224 DEFINE_MDNODE_GET_DISTINCT_TEMPORARY(
1225 DICompileUnit,
1226 (unsigned SourceLanguage, Metadata *File, MDString *Producer,
1227 bool IsOptimized, MDString *Flags, unsigned RuntimeVersion,
1228 MDString *SplitDebugFilename, unsigned EmissionKind, Metadata *EnumTypes,
1229 Metadata *RetainedTypes, Metadata *GlobalVariables,
1230 Metadata *ImportedEntities, Metadata *Macros, uint64_t DWOId,
1231 bool SplitDebugInlining, bool DebugInfoForProfiling,
1232 unsigned NameTableKind, bool RangesBaseAddress),
1233 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1234 SplitDebugFilename, EmissionKind, EnumTypes, RetainedTypes,
1235 GlobalVariables, ImportedEntities, Macros, DWOId, SplitDebugInlining,
1236 DebugInfoForProfiling, NameTableKind, RangesBaseAddress))
1238 TempDICompileUnit clone() const { return cloneImpl(); }
1240 unsigned getSourceLanguage() const { return SourceLanguage; }
1241 bool isOptimized() const { return IsOptimized; }
1242 unsigned getRuntimeVersion() const { return RuntimeVersion; }
1243 DebugEmissionKind getEmissionKind() const {
1244 return (DebugEmissionKind)EmissionKind;
1246 bool isDebugDirectivesOnly() const {
1247 return EmissionKind == DebugDirectivesOnly;
1249 bool getDebugInfoForProfiling() const { return DebugInfoForProfiling; }
1250 DebugNameTableKind getNameTableKind() const {
1251 return (DebugNameTableKind)NameTableKind;
1253 bool getRangesBaseAddress() const {
1254 return RangesBaseAddress; }
1255 StringRef getProducer() const {
1256 return getStringOperand(1); }
1257 StringRef getFlags() const {
1258 return getStringOperand(2); }
1259 StringRef getSplitDebugFilename() const {
1260 return getStringOperand(3); }
1261 DICompositeTypeArray getEnumTypes() const {
1262 return cast_or_null<MDTuple>(getRawEnumTypes());
1264 DIScopeArray getRetainedTypes() const {
1265 return cast_or_null<MDTuple>(getRawRetainedTypes());
1267 DIGlobalVariableExpressionArray getGlobalVariables() const {
1268 return cast_or_null<MDTuple>(getRawGlobalVariables());
1270 DIImportedEntityArray getImportedEntities() const {
1271 return cast_or_null<MDTuple>(getRawImportedEntities());
1273 DIMacroNodeArray getMacros() const {
1274 return cast_or_null<MDTuple>(getRawMacros());
1276 uint64_t getDWOId() const { return DWOId; }
1277 void setDWOId(uint64_t DwoId) { DWOId = DwoId; }
1278 bool getSplitDebugInlining() const { return SplitDebugInlining; }
1279 void setSplitDebugInlining(bool SplitDebugInlining) {
1280 this->SplitDebugInlining = SplitDebugInlining;
1283 MDString *getRawProducer() const { return getOperandAs<MDString>(1); }
1284 MDString *getRawFlags() const { return getOperandAs<MDString>(2); }
1285 MDString *getRawSplitDebugFilename() const {
1286 return getOperandAs<MDString>(3);
1288 Metadata *getRawEnumTypes() const { return getOperand(4); }
1289 Metadata *getRawRetainedTypes() const { return getOperand(5); }
1290 Metadata *getRawGlobalVariables() const { return getOperand(6); }
1291 Metadata *getRawImportedEntities() const { return getOperand(7); }
1292 Metadata *getRawMacros() const { return getOperand(8); }
1294 /// Replace arrays.
1296 /// If this \a isUniqued() and not \a isResolved(), it will be RAUW'ed and
1297 /// deleted on a uniquing collision. In practice, uniquing collisions on \a
1298 /// DICompileUnit should be fairly rare.
1299 /// @{
1300 void replaceEnumTypes(DICompositeTypeArray N) {
1301 replaceOperandWith(4, N.get());
1303 void replaceRetainedTypes(DITypeArray N) {
1304 replaceOperandWith(5, N.get());
1306 void replaceGlobalVariables(DIGlobalVariableExpressionArray N) {
1307 replaceOperandWith(6, N.get());
1309 void replaceImportedEntities(DIImportedEntityArray N) {
1310 replaceOperandWith(7, N.get());
1312 void replaceMacros(DIMacroNodeArray N) { replaceOperandWith(8, N.get()); }
1313 /// @}
1315 static bool classof(const Metadata *MD) {
1316 return MD->getMetadataID() == DICompileUnitKind;
1320 /// A scope for locals.
1322 /// A legal scope for lexical blocks, local variables, and debug info
1323 /// locations. Subclasses are \a DISubprogram, \a DILexicalBlock, and \a
1324 /// DILexicalBlockFile.
1325 class DILocalScope : public DIScope {
1326 protected:
1327 DILocalScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
1328 ArrayRef<Metadata *> Ops)
1329 : DIScope(C, ID, Storage, Tag, Ops) {}
1330 ~DILocalScope() = default;
1332 public:
1333 /// Get the subprogram for this scope.
1335 /// Return this if it's an \a DISubprogram; otherwise, look up the scope
1336 /// chain.
1337 DISubprogram *getSubprogram() const;
1339 /// Get the first non DILexicalBlockFile scope of this scope.
1341 /// Return this if it's not a \a DILexicalBlockFIle; otherwise, look up the
1342 /// scope chain.
1343 DILocalScope *getNonLexicalBlockFileScope() const;
1345 static bool classof(const Metadata *MD) {
1346 return MD->getMetadataID() == DISubprogramKind ||
1347 MD->getMetadataID() == DILexicalBlockKind ||
1348 MD->getMetadataID() == DILexicalBlockFileKind;
1352 /// Debug location.
1354 /// A debug location in source code, used for debug info and otherwise.
1355 class DILocation : public MDNode {
1356 friend class LLVMContextImpl;
1357 friend class MDNode;
1359 DILocation(LLVMContext &C, StorageType Storage, unsigned Line,
1360 unsigned Column, ArrayRef<Metadata *> MDs, bool ImplicitCode);
1361 ~DILocation() { dropAllReferences(); }
1363 static DILocation *getImpl(LLVMContext &Context, unsigned Line,
1364 unsigned Column, Metadata *Scope,
1365 Metadata *InlinedAt, bool ImplicitCode,
1366 StorageType Storage, bool ShouldCreate = true);
1367 static DILocation *getImpl(LLVMContext &Context, unsigned Line,
1368 unsigned Column, DILocalScope *Scope,
1369 DILocation *InlinedAt, bool ImplicitCode,
1370 StorageType Storage, bool ShouldCreate = true) {
1371 return getImpl(Context, Line, Column, static_cast<Metadata *>(Scope),
1372 static_cast<Metadata *>(InlinedAt), ImplicitCode, Storage,
1373 ShouldCreate);
1376 /// With a given unsigned int \p U, use up to 13 bits to represent it.
1377 /// old_bit 1~5 --> new_bit 1~5
1378 /// old_bit 6~12 --> new_bit 7~13
1379 /// new_bit_6 is 0 if higher bits (7~13) are all 0
1380 static unsigned getPrefixEncodingFromUnsigned(unsigned U) {
1381 U &= 0xfff;
1382 return U > 0x1f ? (((U & 0xfe0) << 1) | (U & 0x1f) | 0x20) : U;
1385 /// Reverse transformation as getPrefixEncodingFromUnsigned.
1386 static unsigned getUnsignedFromPrefixEncoding(unsigned U) {
1387 if (U & 1)
1388 return 0;
1389 U >>= 1;
1390 return (U & 0x20) ? (((U >> 1) & 0xfe0) | (U & 0x1f)) : (U & 0x1f);
1393 /// Returns the next component stored in discriminator.
1394 static unsigned getNextComponentInDiscriminator(unsigned D) {
1395 if ((D & 1) == 0)
1396 return D >> ((D & 0x40) ? 14 : 7);
1397 else
1398 return D >> 1;
1401 TempDILocation cloneImpl() const {
1402 // Get the raw scope/inlinedAt since it is possible to invoke this on
1403 // a DILocation containing temporary metadata.
1404 return getTemporary(getContext(), getLine(), getColumn(), getRawScope(),
1405 getRawInlinedAt(), isImplicitCode());
1408 static unsigned encodeComponent(unsigned C) {
1409 return (C == 0) ? 1U : (getPrefixEncodingFromUnsigned(C) << 1);
1412 static unsigned encodingBits(unsigned C) {
1413 return (C == 0) ? 1 : (C > 0x1f ? 14 : 7);
1416 public:
1417 // Disallow replacing operands.
1418 void replaceOperandWith(unsigned I, Metadata *New) = delete;
1420 DEFINE_MDNODE_GET(DILocation,
1421 (unsigned Line, unsigned Column, Metadata *Scope,
1422 Metadata *InlinedAt = nullptr, bool ImplicitCode = false),
1423 (Line, Column, Scope, InlinedAt, ImplicitCode))
1424 DEFINE_MDNODE_GET(DILocation,
1425 (unsigned Line, unsigned Column, DILocalScope *Scope,
1426 DILocation *InlinedAt = nullptr,
1427 bool ImplicitCode = false),
1428 (Line, Column, Scope, InlinedAt, ImplicitCode))
1430 /// Return a (temporary) clone of this.
1431 TempDILocation clone() const { return cloneImpl(); }
1433 unsigned getLine() const { return SubclassData32; }
1434 unsigned getColumn() const { return SubclassData16; }
1435 DILocalScope *getScope() const { return cast<DILocalScope>(getRawScope()); }
1437 DILocation *getInlinedAt() const {
1438 return cast_or_null<DILocation>(getRawInlinedAt());
1441 /// Check if the location corresponds to an implicit code.
1442 /// When the ImplicitCode flag is true, it means that the Instruction
1443 /// with this DILocation has been added by the front-end but it hasn't been
1444 /// written explicitly by the user (e.g. cleanup stuff in C++ put on a closing
1445 /// bracket). It's useful for code coverage to not show a counter on "empty"
1446 /// lines.
1447 bool isImplicitCode() const { return ImplicitCode; }
1448 void setImplicitCode(bool ImplicitCode) { this->ImplicitCode = ImplicitCode; }
1450 DIFile *getFile() const { return getScope()->getFile(); }
1451 StringRef getFilename() const { return getScope()->getFilename(); }
1452 StringRef getDirectory() const { return getScope()->getDirectory(); }
1453 Optional<StringRef> getSource() const { return getScope()->getSource(); }
1455 /// Get the scope where this is inlined.
1457 /// Walk through \a getInlinedAt() and return \a getScope() from the deepest
1458 /// location.
1459 DILocalScope *getInlinedAtScope() const {
1460 if (auto *IA = getInlinedAt())
1461 return IA->getInlinedAtScope();
1462 return getScope();
1465 /// Get the DWARF discriminator.
1467 /// DWARF discriminators distinguish identical file locations between
1468 /// instructions that are on different basic blocks.
1470 /// There are 3 components stored in discriminator, from lower bits:
1472 /// Base discriminator: assigned by AddDiscriminators pass to identify IRs
1473 /// that are defined by the same source line, but
1474 /// different basic blocks.
1475 /// Duplication factor: assigned by optimizations that will scale down
1476 /// the execution frequency of the original IR.
1477 /// Copy Identifier: assigned by optimizations that clones the IR.
1478 /// Each copy of the IR will be assigned an identifier.
1480 /// Encoding:
1482 /// The above 3 components are encoded into a 32bit unsigned integer in
1483 /// order. If the lowest bit is 1, the current component is empty, and the
1484 /// next component will start in the next bit. Otherwise, the current
1485 /// component is non-empty, and its content starts in the next bit. The
1486 /// value of each components is either 5 bit or 12 bit: if the 7th bit
1487 /// is 0, the bit 2~6 (5 bits) are used to represent the component; if the
1488 /// 7th bit is 1, the bit 2~6 (5 bits) and 8~14 (7 bits) are combined to
1489 /// represent the component. Thus, the number of bits used for a component
1490 /// is either 0 (if it and all the next components are empty); 1 - if it is
1491 /// empty; 7 - if its value is up to and including 0x1f (lsb and msb are both
1492 /// 0); or 14, if its value is up to and including 0x1ff. Note that the last
1493 /// component is also capped at 0x1ff, even in the case when both first
1494 /// components are 0, and we'd technically have 29 bits available.
1496 /// For precise control over the data being encoded in the discriminator,
1497 /// use encodeDiscriminator/decodeDiscriminator.
1499 inline unsigned getDiscriminator() const;
1501 /// Returns a new DILocation with updated \p Discriminator.
1502 inline const DILocation *cloneWithDiscriminator(unsigned Discriminator) const;
1504 /// Returns a new DILocation with updated base discriminator \p BD. Only the
1505 /// base discriminator is set in the new DILocation, the other encoded values
1506 /// are elided.
1507 /// If the discriminator cannot be encoded, the function returns None.
1508 inline Optional<const DILocation *> cloneWithBaseDiscriminator(unsigned BD) const;
1510 /// Returns the duplication factor stored in the discriminator, or 1 if no
1511 /// duplication factor (or 0) is encoded.
1512 inline unsigned getDuplicationFactor() const;
1514 /// Returns the copy identifier stored in the discriminator.
1515 inline unsigned getCopyIdentifier() const;
1517 /// Returns the base discriminator stored in the discriminator.
1518 inline unsigned getBaseDiscriminator() const;
1520 /// Returns a new DILocation with duplication factor \p DF * current
1521 /// duplication factor encoded in the discriminator. The current duplication
1522 /// factor is as defined by getDuplicationFactor().
1523 /// Returns None if encoding failed.
1524 inline Optional<const DILocation *> cloneByMultiplyingDuplicationFactor(unsigned DF) const;
1526 /// When two instructions are combined into a single instruction we also
1527 /// need to combine the original locations into a single location.
1529 /// When the locations are the same we can use either location. When they
1530 /// differ, we need a third location which is distinct from either. If they
1531 /// have the same file/line but have a different discriminator we could
1532 /// create a location with a new discriminator. If they are from different
1533 /// files/lines the location is ambiguous and can't be represented in a line
1534 /// entry. In this case, if \p GenerateLocation is true, we will set the
1535 /// merged debug location as line 0 of the nearest common scope where the two
1536 /// locations are inlined from.
1538 /// \p GenerateLocation: Whether the merged location can be generated when
1539 /// \p LocA and \p LocB differ.
1540 static const DILocation *getMergedLocation(const DILocation *LocA,
1541 const DILocation *LocB);
1543 /// Returns the base discriminator for a given encoded discriminator \p D.
1544 static unsigned getBaseDiscriminatorFromDiscriminator(unsigned D) {
1545 return getUnsignedFromPrefixEncoding(D);
1548 /// Raw encoding of the discriminator. APIs such as cloneWithDuplicationFactor
1549 /// have certain special case behavior (e.g. treating empty duplication factor
1550 /// as the value '1').
1551 /// This API, in conjunction with cloneWithDiscriminator, may be used to encode
1552 /// the raw values provided. \p BD: base discriminator \p DF: duplication factor
1553 /// \p CI: copy index
1554 /// The return is None if the values cannot be encoded in 32 bits - for
1555 /// example, values for BD or DF larger than 12 bits. Otherwise, the return
1556 /// is the encoded value.
1557 static Optional<unsigned> encodeDiscriminator(unsigned BD, unsigned DF, unsigned CI);
1559 /// Raw decoder for values in an encoded discriminator D.
1560 static void decodeDiscriminator(unsigned D, unsigned &BD, unsigned &DF,
1561 unsigned &CI);
1563 /// Returns the duplication factor for a given encoded discriminator \p D, or
1564 /// 1 if no value or 0 is encoded.
1565 static unsigned getDuplicationFactorFromDiscriminator(unsigned D) {
1566 D = getNextComponentInDiscriminator(D);
1567 unsigned Ret = getUnsignedFromPrefixEncoding(D);
1568 if (Ret == 0)
1569 return 1;
1570 return Ret;
1573 /// Returns the copy identifier for a given encoded discriminator \p D.
1574 static unsigned getCopyIdentifierFromDiscriminator(unsigned D) {
1575 return getUnsignedFromPrefixEncoding(getNextComponentInDiscriminator(
1576 getNextComponentInDiscriminator(D)));
1580 Metadata *getRawScope() const { return getOperand(0); }
1581 Metadata *getRawInlinedAt() const {
1582 if (getNumOperands() == 2)
1583 return getOperand(1);
1584 return nullptr;
1587 static bool classof(const Metadata *MD) {
1588 return MD->getMetadataID() == DILocationKind;
1592 /// Subprogram description.
1593 class DISubprogram : public DILocalScope {
1594 friend class LLVMContextImpl;
1595 friend class MDNode;
1597 unsigned Line;
1598 unsigned ScopeLine;
1599 unsigned VirtualIndex;
1601 /// In the MS ABI, the implicit 'this' parameter is adjusted in the prologue
1602 /// of method overrides from secondary bases by this amount. It may be
1603 /// negative.
1604 int ThisAdjustment;
1606 public:
1607 /// Debug info subprogram flags.
1608 enum DISPFlags : uint32_t {
1609 #define HANDLE_DISP_FLAG(ID, NAME) SPFlag##NAME = ID,
1610 #define DISP_FLAG_LARGEST_NEEDED
1611 #include "llvm/IR/DebugInfoFlags.def"
1612 SPFlagNonvirtual = SPFlagZero,
1613 SPFlagVirtuality = SPFlagVirtual | SPFlagPureVirtual,
1614 LLVM_MARK_AS_BITMASK_ENUM(SPFlagLargest)
1617 static DISPFlags getFlag(StringRef Flag);
1618 static StringRef getFlagString(DISPFlags Flag);
1620 /// Split up a flags bitfield for easier printing.
1622 /// Split \c Flags into \c SplitFlags, a vector of its components. Returns
1623 /// any remaining (unrecognized) bits.
1624 static DISPFlags splitFlags(DISPFlags Flags,
1625 SmallVectorImpl<DISPFlags> &SplitFlags);
1627 // Helper for converting old bitfields to new flags word.
1628 static DISPFlags toSPFlags(bool IsLocalToUnit, bool IsDefinition,
1629 bool IsOptimized,
1630 unsigned Virtuality = SPFlagNonvirtual,
1631 bool IsMainSubprogram = false) {
1632 // We're assuming virtuality is the low-order field.
1633 static_assert(
1634 int(SPFlagVirtual) == int(dwarf::DW_VIRTUALITY_virtual) &&
1635 int(SPFlagPureVirtual) == int(dwarf::DW_VIRTUALITY_pure_virtual),
1636 "Virtuality constant mismatch");
1637 return static_cast<DISPFlags>(
1638 (Virtuality & SPFlagVirtuality) |
1639 (IsLocalToUnit ? SPFlagLocalToUnit : SPFlagZero) |
1640 (IsDefinition ? SPFlagDefinition : SPFlagZero) |
1641 (IsOptimized ? SPFlagOptimized : SPFlagZero) |
1642 (IsMainSubprogram ? SPFlagMainSubprogram : SPFlagZero));
1645 private:
1646 DIFlags Flags;
1647 DISPFlags SPFlags;
1649 DISubprogram(LLVMContext &C, StorageType Storage, unsigned Line,
1650 unsigned ScopeLine, unsigned VirtualIndex, int ThisAdjustment,
1651 DIFlags Flags, DISPFlags SPFlags, ArrayRef<Metadata *> Ops)
1652 : DILocalScope(C, DISubprogramKind, Storage, dwarf::DW_TAG_subprogram,
1653 Ops),
1654 Line(Line), ScopeLine(ScopeLine), VirtualIndex(VirtualIndex),
1655 ThisAdjustment(ThisAdjustment), Flags(Flags), SPFlags(SPFlags) {
1656 static_assert(dwarf::DW_VIRTUALITY_max < 4, "Virtuality out of range");
1658 ~DISubprogram() = default;
1660 static DISubprogram *
1661 getImpl(LLVMContext &Context, DIScope *Scope, StringRef Name,
1662 StringRef LinkageName, DIFile *File, unsigned Line,
1663 DISubroutineType *Type, unsigned ScopeLine, DIType *ContainingType,
1664 unsigned VirtualIndex, int ThisAdjustment, DIFlags Flags,
1665 DISPFlags SPFlags, DICompileUnit *Unit,
1666 DITemplateParameterArray TemplateParams, DISubprogram *Declaration,
1667 DINodeArray RetainedNodes, DITypeArray ThrownTypes,
1668 StorageType Storage, bool ShouldCreate = true) {
1669 return getImpl(Context, Scope, getCanonicalMDString(Context, Name),
1670 getCanonicalMDString(Context, LinkageName), File, Line, Type,
1671 ScopeLine, ContainingType, VirtualIndex, ThisAdjustment,
1672 Flags, SPFlags, Unit, TemplateParams.get(), Declaration,
1673 RetainedNodes.get(), ThrownTypes.get(), Storage,
1674 ShouldCreate);
1676 static DISubprogram *getImpl(LLVMContext &Context, Metadata *Scope,
1677 MDString *Name, MDString *LinkageName,
1678 Metadata *File, unsigned Line, Metadata *Type,
1679 unsigned ScopeLine, Metadata *ContainingType,
1680 unsigned VirtualIndex, int ThisAdjustment,
1681 DIFlags Flags, DISPFlags SPFlags, Metadata *Unit,
1682 Metadata *TemplateParams, Metadata *Declaration,
1683 Metadata *RetainedNodes, Metadata *ThrownTypes,
1684 StorageType Storage, bool ShouldCreate = true);
1686 TempDISubprogram cloneImpl() const {
1687 return getTemporary(getContext(), getScope(), getName(), getLinkageName(),
1688 getFile(), getLine(), getType(), getScopeLine(),
1689 getContainingType(), getVirtualIndex(),
1690 getThisAdjustment(), getFlags(), getSPFlags(),
1691 getUnit(), getTemplateParams(), getDeclaration(),
1692 getRetainedNodes(), getThrownTypes());
1695 public:
1696 DEFINE_MDNODE_GET(
1697 DISubprogram,
1698 (DIScope * Scope, StringRef Name, StringRef LinkageName, DIFile *File,
1699 unsigned Line, DISubroutineType *Type, unsigned ScopeLine,
1700 DIType *ContainingType, unsigned VirtualIndex, int ThisAdjustment,
1701 DIFlags Flags, DISPFlags SPFlags, DICompileUnit *Unit,
1702 DITemplateParameterArray TemplateParams = nullptr,
1703 DISubprogram *Declaration = nullptr, DINodeArray RetainedNodes = nullptr,
1704 DITypeArray ThrownTypes = nullptr),
1705 (Scope, Name, LinkageName, File, Line, Type, ScopeLine, ContainingType,
1706 VirtualIndex, ThisAdjustment, Flags, SPFlags, Unit, TemplateParams,
1707 Declaration, RetainedNodes, ThrownTypes))
1709 DEFINE_MDNODE_GET(
1710 DISubprogram,
1711 (Metadata * Scope, MDString *Name, MDString *LinkageName, Metadata *File,
1712 unsigned Line, Metadata *Type, unsigned ScopeLine,
1713 Metadata *ContainingType, unsigned VirtualIndex, int ThisAdjustment,
1714 DIFlags Flags, DISPFlags SPFlags, Metadata *Unit,
1715 Metadata *TemplateParams = nullptr, Metadata *Declaration = nullptr,
1716 Metadata *RetainedNodes = nullptr, Metadata *ThrownTypes = nullptr),
1717 (Scope, Name, LinkageName, File, Line, Type, ScopeLine, ContainingType,
1718 VirtualIndex, ThisAdjustment, Flags, SPFlags, Unit, TemplateParams,
1719 Declaration, RetainedNodes, ThrownTypes))
1721 TempDISubprogram clone() const { return cloneImpl(); }
1723 /// Returns a new temporary DISubprogram with updated Flags
1724 TempDISubprogram cloneWithFlags(DIFlags NewFlags) const {
1725 auto NewSP = clone();
1726 NewSP->Flags = NewFlags;
1727 return NewSP;
1730 public:
1731 unsigned getLine() const { return Line; }
1732 unsigned getVirtuality() const { return getSPFlags() & SPFlagVirtuality; }
1733 unsigned getVirtualIndex() const { return VirtualIndex; }
1734 int getThisAdjustment() const { return ThisAdjustment; }
1735 unsigned getScopeLine() const { return ScopeLine; }
1736 DIFlags getFlags() const { return Flags; }
1737 DISPFlags getSPFlags() const { return SPFlags; }
1738 bool isLocalToUnit() const { return getSPFlags() & SPFlagLocalToUnit; }
1739 bool isDefinition() const { return getSPFlags() & SPFlagDefinition; }
1740 bool isOptimized() const { return getSPFlags() & SPFlagOptimized; }
1741 bool isMainSubprogram() const { return getSPFlags() & SPFlagMainSubprogram; }
1743 bool isArtificial() const { return getFlags() & FlagArtificial; }
1744 bool isPrivate() const {
1745 return (getFlags() & FlagAccessibility) == FlagPrivate;
1747 bool isProtected() const {
1748 return (getFlags() & FlagAccessibility) == FlagProtected;
1750 bool isPublic() const {
1751 return (getFlags() & FlagAccessibility) == FlagPublic;
1753 bool isExplicit() const { return getFlags() & FlagExplicit; }
1754 bool isPrototyped() const { return getFlags() & FlagPrototyped; }
1755 bool areAllCallsDescribed() const {
1756 return getFlags() & FlagAllCallsDescribed;
1758 bool isPure() const { return getSPFlags() & SPFlagPure; }
1759 bool isElemental() const { return getSPFlags() & SPFlagElemental; }
1760 bool isRecursive() const { return getSPFlags() & SPFlagRecursive; }
1762 /// Check if this is reference-qualified.
1764 /// Return true if this subprogram is a C++11 reference-qualified non-static
1765 /// member function (void foo() &).
1766 bool isLValueReference() const { return getFlags() & FlagLValueReference; }
1768 /// Check if this is rvalue-reference-qualified.
1770 /// Return true if this subprogram is a C++11 rvalue-reference-qualified
1771 /// non-static member function (void foo() &&).
1772 bool isRValueReference() const { return getFlags() & FlagRValueReference; }
1774 /// Check if this is marked as noreturn.
1776 /// Return true if this subprogram is C++11 noreturn or C11 _Noreturn
1777 bool isNoReturn() const { return getFlags() & FlagNoReturn; }
1779 // Check if this routine is a compiler-generated thunk.
1781 // Returns true if this subprogram is a thunk generated by the compiler.
1782 bool isThunk() const { return getFlags() & FlagThunk; }
1784 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
1786 StringRef getName() const { return getStringOperand(2); }
1787 StringRef getLinkageName() const { return getStringOperand(3); }
1789 DISubroutineType *getType() const {
1790 return cast_or_null<DISubroutineType>(getRawType());
1792 DIType *getContainingType() const {
1793 return cast_or_null<DIType>(getRawContainingType());
1796 DICompileUnit *getUnit() const {
1797 return cast_or_null<DICompileUnit>(getRawUnit());
1799 void replaceUnit(DICompileUnit *CU) { replaceOperandWith(5, CU); }
1800 DITemplateParameterArray getTemplateParams() const {
1801 return cast_or_null<MDTuple>(getRawTemplateParams());
1803 DISubprogram *getDeclaration() const {
1804 return cast_or_null<DISubprogram>(getRawDeclaration());
1806 DINodeArray getRetainedNodes() const {
1807 return cast_or_null<MDTuple>(getRawRetainedNodes());
1809 DITypeArray getThrownTypes() const {
1810 return cast_or_null<MDTuple>(getRawThrownTypes());
1813 Metadata *getRawScope() const { return getOperand(1); }
1814 MDString *getRawName() const { return getOperandAs<MDString>(2); }
1815 MDString *getRawLinkageName() const { return getOperandAs<MDString>(3); }
1816 Metadata *getRawType() const { return getOperand(4); }
1817 Metadata *getRawUnit() const { return getOperand(5); }
1818 Metadata *getRawDeclaration() const { return getOperand(6); }
1819 Metadata *getRawRetainedNodes() const { return getOperand(7); }
1820 Metadata *getRawContainingType() const {
1821 return getNumOperands() > 8 ? getOperandAs<Metadata>(8) : nullptr;
1823 Metadata *getRawTemplateParams() const {
1824 return getNumOperands() > 9 ? getOperandAs<Metadata>(9) : nullptr;
1826 Metadata *getRawThrownTypes() const {
1827 return getNumOperands() > 10 ? getOperandAs<Metadata>(10) : nullptr;
1830 /// Check if this subprogram describes the given function.
1832 /// FIXME: Should this be looking through bitcasts?
1833 bool describes(const Function *F) const;
1835 static bool classof(const Metadata *MD) {
1836 return MD->getMetadataID() == DISubprogramKind;
1840 class DILexicalBlockBase : public DILocalScope {
1841 protected:
1842 DILexicalBlockBase(LLVMContext &C, unsigned ID, StorageType Storage,
1843 ArrayRef<Metadata *> Ops)
1844 : DILocalScope(C, ID, Storage, dwarf::DW_TAG_lexical_block, Ops) {}
1845 ~DILexicalBlockBase() = default;
1847 public:
1848 DILocalScope *getScope() const { return cast<DILocalScope>(getRawScope()); }
1850 Metadata *getRawScope() const { return getOperand(1); }
1852 static bool classof(const Metadata *MD) {
1853 return MD->getMetadataID() == DILexicalBlockKind ||
1854 MD->getMetadataID() == DILexicalBlockFileKind;
1858 class DILexicalBlock : public DILexicalBlockBase {
1859 friend class LLVMContextImpl;
1860 friend class MDNode;
1862 unsigned Line;
1863 uint16_t Column;
1865 DILexicalBlock(LLVMContext &C, StorageType Storage, unsigned Line,
1866 unsigned Column, ArrayRef<Metadata *> Ops)
1867 : DILexicalBlockBase(C, DILexicalBlockKind, Storage, Ops), Line(Line),
1868 Column(Column) {
1869 assert(Column < (1u << 16) && "Expected 16-bit column");
1871 ~DILexicalBlock() = default;
1873 static DILexicalBlock *getImpl(LLVMContext &Context, DILocalScope *Scope,
1874 DIFile *File, unsigned Line, unsigned Column,
1875 StorageType Storage,
1876 bool ShouldCreate = true) {
1877 return getImpl(Context, static_cast<Metadata *>(Scope),
1878 static_cast<Metadata *>(File), Line, Column, Storage,
1879 ShouldCreate);
1882 static DILexicalBlock *getImpl(LLVMContext &Context, Metadata *Scope,
1883 Metadata *File, unsigned Line, unsigned Column,
1884 StorageType Storage, bool ShouldCreate = true);
1886 TempDILexicalBlock cloneImpl() const {
1887 return getTemporary(getContext(), getScope(), getFile(), getLine(),
1888 getColumn());
1891 public:
1892 DEFINE_MDNODE_GET(DILexicalBlock, (DILocalScope * Scope, DIFile *File,
1893 unsigned Line, unsigned Column),
1894 (Scope, File, Line, Column))
1895 DEFINE_MDNODE_GET(DILexicalBlock, (Metadata * Scope, Metadata *File,
1896 unsigned Line, unsigned Column),
1897 (Scope, File, Line, Column))
1899 TempDILexicalBlock clone() const { return cloneImpl(); }
1901 unsigned getLine() const { return Line; }
1902 unsigned getColumn() const { return Column; }
1904 static bool classof(const Metadata *MD) {
1905 return MD->getMetadataID() == DILexicalBlockKind;
1909 class DILexicalBlockFile : public DILexicalBlockBase {
1910 friend class LLVMContextImpl;
1911 friend class MDNode;
1913 unsigned Discriminator;
1915 DILexicalBlockFile(LLVMContext &C, StorageType Storage,
1916 unsigned Discriminator, ArrayRef<Metadata *> Ops)
1917 : DILexicalBlockBase(C, DILexicalBlockFileKind, Storage, Ops),
1918 Discriminator(Discriminator) {}
1919 ~DILexicalBlockFile() = default;
1921 static DILexicalBlockFile *getImpl(LLVMContext &Context, DILocalScope *Scope,
1922 DIFile *File, unsigned Discriminator,
1923 StorageType Storage,
1924 bool ShouldCreate = true) {
1925 return getImpl(Context, static_cast<Metadata *>(Scope),
1926 static_cast<Metadata *>(File), Discriminator, Storage,
1927 ShouldCreate);
1930 static DILexicalBlockFile *getImpl(LLVMContext &Context, Metadata *Scope,
1931 Metadata *File, unsigned Discriminator,
1932 StorageType Storage,
1933 bool ShouldCreate = true);
1935 TempDILexicalBlockFile cloneImpl() const {
1936 return getTemporary(getContext(), getScope(), getFile(),
1937 getDiscriminator());
1940 public:
1941 DEFINE_MDNODE_GET(DILexicalBlockFile, (DILocalScope * Scope, DIFile *File,
1942 unsigned Discriminator),
1943 (Scope, File, Discriminator))
1944 DEFINE_MDNODE_GET(DILexicalBlockFile,
1945 (Metadata * Scope, Metadata *File, unsigned Discriminator),
1946 (Scope, File, Discriminator))
1948 TempDILexicalBlockFile clone() const { return cloneImpl(); }
1950 // TODO: Remove these once they're gone from DILexicalBlockBase.
1951 unsigned getLine() const = delete;
1952 unsigned getColumn() const = delete;
1954 unsigned getDiscriminator() const { return Discriminator; }
1956 static bool classof(const Metadata *MD) {
1957 return MD->getMetadataID() == DILexicalBlockFileKind;
1961 unsigned DILocation::getDiscriminator() const {
1962 if (auto *F = dyn_cast<DILexicalBlockFile>(getScope()))
1963 return F->getDiscriminator();
1964 return 0;
1967 const DILocation *
1968 DILocation::cloneWithDiscriminator(unsigned Discriminator) const {
1969 DIScope *Scope = getScope();
1970 // Skip all parent DILexicalBlockFile that already have a discriminator
1971 // assigned. We do not want to have nested DILexicalBlockFiles that have
1972 // mutliple discriminators because only the leaf DILexicalBlockFile's
1973 // dominator will be used.
1974 for (auto *LBF = dyn_cast<DILexicalBlockFile>(Scope);
1975 LBF && LBF->getDiscriminator() != 0;
1976 LBF = dyn_cast<DILexicalBlockFile>(Scope))
1977 Scope = LBF->getScope();
1978 DILexicalBlockFile *NewScope =
1979 DILexicalBlockFile::get(getContext(), Scope, getFile(), Discriminator);
1980 return DILocation::get(getContext(), getLine(), getColumn(), NewScope,
1981 getInlinedAt());
1984 unsigned DILocation::getBaseDiscriminator() const {
1985 return getBaseDiscriminatorFromDiscriminator(getDiscriminator());
1988 unsigned DILocation::getDuplicationFactor() const {
1989 return getDuplicationFactorFromDiscriminator(getDiscriminator());
1992 unsigned DILocation::getCopyIdentifier() const {
1993 return getCopyIdentifierFromDiscriminator(getDiscriminator());
1996 Optional<const DILocation *> DILocation::cloneWithBaseDiscriminator(unsigned D) const {
1997 unsigned BD, DF, CI;
1998 decodeDiscriminator(getDiscriminator(), BD, DF, CI);
1999 if (D == BD)
2000 return this;
2001 if (Optional<unsigned> Encoded = encodeDiscriminator(D, DF, CI))
2002 return cloneWithDiscriminator(*Encoded);
2003 return None;
2006 Optional<const DILocation *> DILocation::cloneByMultiplyingDuplicationFactor(unsigned DF) const {
2007 DF *= getDuplicationFactor();
2008 if (DF <= 1)
2009 return this;
2011 unsigned BD = getBaseDiscriminator();
2012 unsigned CI = getCopyIdentifier();
2013 if (Optional<unsigned> D = encodeDiscriminator(BD, DF, CI))
2014 return cloneWithDiscriminator(*D);
2015 return None;
2018 class DINamespace : public DIScope {
2019 friend class LLVMContextImpl;
2020 friend class MDNode;
2022 unsigned ExportSymbols : 1;
2024 DINamespace(LLVMContext &Context, StorageType Storage, bool ExportSymbols,
2025 ArrayRef<Metadata *> Ops)
2026 : DIScope(Context, DINamespaceKind, Storage, dwarf::DW_TAG_namespace,
2027 Ops),
2028 ExportSymbols(ExportSymbols) {}
2029 ~DINamespace() = default;
2031 static DINamespace *getImpl(LLVMContext &Context, DIScope *Scope,
2032 StringRef Name, bool ExportSymbols,
2033 StorageType Storage, bool ShouldCreate = true) {
2034 return getImpl(Context, Scope, getCanonicalMDString(Context, Name),
2035 ExportSymbols, Storage, ShouldCreate);
2037 static DINamespace *getImpl(LLVMContext &Context, Metadata *Scope,
2038 MDString *Name, bool ExportSymbols,
2039 StorageType Storage, bool ShouldCreate = true);
2041 TempDINamespace cloneImpl() const {
2042 return getTemporary(getContext(), getScope(), getName(),
2043 getExportSymbols());
2046 public:
2047 DEFINE_MDNODE_GET(DINamespace,
2048 (DIScope *Scope, StringRef Name, bool ExportSymbols),
2049 (Scope, Name, ExportSymbols))
2050 DEFINE_MDNODE_GET(DINamespace,
2051 (Metadata *Scope, MDString *Name, bool ExportSymbols),
2052 (Scope, Name, ExportSymbols))
2054 TempDINamespace clone() const { return cloneImpl(); }
2056 bool getExportSymbols() const { return ExportSymbols; }
2057 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
2058 StringRef getName() const { return getStringOperand(2); }
2060 Metadata *getRawScope() const { return getOperand(1); }
2061 MDString *getRawName() const { return getOperandAs<MDString>(2); }
2063 static bool classof(const Metadata *MD) {
2064 return MD->getMetadataID() == DINamespaceKind;
2068 /// A (clang) module that has been imported by the compile unit.
2070 class DIModule : public DIScope {
2071 friend class LLVMContextImpl;
2072 friend class MDNode;
2074 DIModule(LLVMContext &Context, StorageType Storage, ArrayRef<Metadata *> Ops)
2075 : DIScope(Context, DIModuleKind, Storage, dwarf::DW_TAG_module, Ops) {}
2076 ~DIModule() = default;
2078 static DIModule *getImpl(LLVMContext &Context, DIScope *Scope,
2079 StringRef Name, StringRef ConfigurationMacros,
2080 StringRef IncludePath, StringRef ISysRoot,
2081 StorageType Storage, bool ShouldCreate = true) {
2082 return getImpl(Context, Scope, getCanonicalMDString(Context, Name),
2083 getCanonicalMDString(Context, ConfigurationMacros),
2084 getCanonicalMDString(Context, IncludePath),
2085 getCanonicalMDString(Context, ISysRoot),
2086 Storage, ShouldCreate);
2088 static DIModule *getImpl(LLVMContext &Context, Metadata *Scope,
2089 MDString *Name, MDString *ConfigurationMacros,
2090 MDString *IncludePath, MDString *ISysRoot,
2091 StorageType Storage, bool ShouldCreate = true);
2093 TempDIModule cloneImpl() const {
2094 return getTemporary(getContext(), getScope(), getName(),
2095 getConfigurationMacros(), getIncludePath(),
2096 getISysRoot());
2099 public:
2100 DEFINE_MDNODE_GET(DIModule, (DIScope *Scope, StringRef Name,
2101 StringRef ConfigurationMacros, StringRef IncludePath,
2102 StringRef ISysRoot),
2103 (Scope, Name, ConfigurationMacros, IncludePath, ISysRoot))
2104 DEFINE_MDNODE_GET(DIModule,
2105 (Metadata *Scope, MDString *Name, MDString *ConfigurationMacros,
2106 MDString *IncludePath, MDString *ISysRoot),
2107 (Scope, Name, ConfigurationMacros, IncludePath, ISysRoot))
2109 TempDIModule clone() const { return cloneImpl(); }
2111 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
2112 StringRef getName() const { return getStringOperand(1); }
2113 StringRef getConfigurationMacros() const { return getStringOperand(2); }
2114 StringRef getIncludePath() const { return getStringOperand(3); }
2115 StringRef getISysRoot() const { return getStringOperand(4); }
2117 Metadata *getRawScope() const { return getOperand(0); }
2118 MDString *getRawName() const { return getOperandAs<MDString>(1); }
2119 MDString *getRawConfigurationMacros() const { return getOperandAs<MDString>(2); }
2120 MDString *getRawIncludePath() const { return getOperandAs<MDString>(3); }
2121 MDString *getRawISysRoot() const { return getOperandAs<MDString>(4); }
2123 static bool classof(const Metadata *MD) {
2124 return MD->getMetadataID() == DIModuleKind;
2128 /// Base class for template parameters.
2129 class DITemplateParameter : public DINode {
2130 protected:
2131 DITemplateParameter(LLVMContext &Context, unsigned ID, StorageType Storage,
2132 unsigned Tag, ArrayRef<Metadata *> Ops)
2133 : DINode(Context, ID, Storage, Tag, Ops) {}
2134 ~DITemplateParameter() = default;
2136 public:
2137 StringRef getName() const { return getStringOperand(0); }
2138 DIType *getType() const { return cast_or_null<DIType>(getRawType()); }
2140 MDString *getRawName() const { return getOperandAs<MDString>(0); }
2141 Metadata *getRawType() const { return getOperand(1); }
2143 static bool classof(const Metadata *MD) {
2144 return MD->getMetadataID() == DITemplateTypeParameterKind ||
2145 MD->getMetadataID() == DITemplateValueParameterKind;
2149 class DITemplateTypeParameter : public DITemplateParameter {
2150 friend class LLVMContextImpl;
2151 friend class MDNode;
2153 DITemplateTypeParameter(LLVMContext &Context, StorageType Storage,
2154 ArrayRef<Metadata *> Ops)
2155 : DITemplateParameter(Context, DITemplateTypeParameterKind, Storage,
2156 dwarf::DW_TAG_template_type_parameter, Ops) {}
2157 ~DITemplateTypeParameter() = default;
2159 static DITemplateTypeParameter *getImpl(LLVMContext &Context, StringRef Name,
2160 DIType *Type, StorageType Storage,
2161 bool ShouldCreate = true) {
2162 return getImpl(Context, getCanonicalMDString(Context, Name), Type, Storage,
2163 ShouldCreate);
2165 static DITemplateTypeParameter *getImpl(LLVMContext &Context, MDString *Name,
2166 Metadata *Type, StorageType Storage,
2167 bool ShouldCreate = true);
2169 TempDITemplateTypeParameter cloneImpl() const {
2170 return getTemporary(getContext(), getName(), getType());
2173 public:
2174 DEFINE_MDNODE_GET(DITemplateTypeParameter, (StringRef Name, DIType *Type),
2175 (Name, Type))
2176 DEFINE_MDNODE_GET(DITemplateTypeParameter, (MDString * Name, Metadata *Type),
2177 (Name, Type))
2179 TempDITemplateTypeParameter clone() const { return cloneImpl(); }
2181 static bool classof(const Metadata *MD) {
2182 return MD->getMetadataID() == DITemplateTypeParameterKind;
2186 class DITemplateValueParameter : public DITemplateParameter {
2187 friend class LLVMContextImpl;
2188 friend class MDNode;
2190 DITemplateValueParameter(LLVMContext &Context, StorageType Storage,
2191 unsigned Tag, ArrayRef<Metadata *> Ops)
2192 : DITemplateParameter(Context, DITemplateValueParameterKind, Storage, Tag,
2193 Ops) {}
2194 ~DITemplateValueParameter() = default;
2196 static DITemplateValueParameter *getImpl(LLVMContext &Context, unsigned Tag,
2197 StringRef Name, DIType *Type,
2198 Metadata *Value, StorageType Storage,
2199 bool ShouldCreate = true) {
2200 return getImpl(Context, Tag, getCanonicalMDString(Context, Name), Type,
2201 Value, Storage, ShouldCreate);
2203 static DITemplateValueParameter *getImpl(LLVMContext &Context, unsigned Tag,
2204 MDString *Name, Metadata *Type,
2205 Metadata *Value, StorageType Storage,
2206 bool ShouldCreate = true);
2208 TempDITemplateValueParameter cloneImpl() const {
2209 return getTemporary(getContext(), getTag(), getName(), getType(),
2210 getValue());
2213 public:
2214 DEFINE_MDNODE_GET(DITemplateValueParameter,
2215 (unsigned Tag, StringRef Name, DIType *Type,
2216 Metadata *Value),
2217 (Tag, Name, Type, Value))
2218 DEFINE_MDNODE_GET(DITemplateValueParameter, (unsigned Tag, MDString *Name,
2219 Metadata *Type, Metadata *Value),
2220 (Tag, Name, Type, Value))
2222 TempDITemplateValueParameter clone() const { return cloneImpl(); }
2224 Metadata *getValue() const { return getOperand(2); }
2226 static bool classof(const Metadata *MD) {
2227 return MD->getMetadataID() == DITemplateValueParameterKind;
2231 /// Base class for variables.
2232 class DIVariable : public DINode {
2233 unsigned Line;
2234 uint32_t AlignInBits;
2236 protected:
2237 DIVariable(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Line,
2238 ArrayRef<Metadata *> Ops, uint32_t AlignInBits = 0)
2239 : DINode(C, ID, Storage, dwarf::DW_TAG_variable, Ops), Line(Line),
2240 AlignInBits(AlignInBits) {}
2241 ~DIVariable() = default;
2243 public:
2244 unsigned getLine() const { return Line; }
2245 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
2246 StringRef getName() const { return getStringOperand(1); }
2247 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
2248 DIType *getType() const { return cast_or_null<DIType>(getRawType()); }
2249 uint32_t getAlignInBits() const { return AlignInBits; }
2250 uint32_t getAlignInBytes() const { return getAlignInBits() / CHAR_BIT; }
2251 /// Determines the size of the variable's type.
2252 Optional<uint64_t> getSizeInBits() const;
2254 /// Return the signedness of this variable's type, or None if this type is
2255 /// neither signed nor unsigned.
2256 Optional<DIBasicType::Signedness> getSignedness() const {
2257 if (auto *BT = dyn_cast<DIBasicType>(getType()))
2258 return BT->getSignedness();
2259 return None;
2262 StringRef getFilename() const {
2263 if (auto *F = getFile())
2264 return F->getFilename();
2265 return "";
2268 StringRef getDirectory() const {
2269 if (auto *F = getFile())
2270 return F->getDirectory();
2271 return "";
2274 Optional<StringRef> getSource() const {
2275 if (auto *F = getFile())
2276 return F->getSource();
2277 return None;
2280 Metadata *getRawScope() const { return getOperand(0); }
2281 MDString *getRawName() const { return getOperandAs<MDString>(1); }
2282 Metadata *getRawFile() const { return getOperand(2); }
2283 Metadata *getRawType() const { return getOperand(3); }
2285 static bool classof(const Metadata *MD) {
2286 return MD->getMetadataID() == DILocalVariableKind ||
2287 MD->getMetadataID() == DIGlobalVariableKind;
2291 /// DWARF expression.
2293 /// This is (almost) a DWARF expression that modifies the location of a
2294 /// variable, or the location of a single piece of a variable, or (when using
2295 /// DW_OP_stack_value) is the constant variable value.
2297 /// TODO: Co-allocate the expression elements.
2298 /// TODO: Separate from MDNode, or otherwise drop Distinct and Temporary
2299 /// storage types.
2300 class DIExpression : public MDNode {
2301 friend class LLVMContextImpl;
2302 friend class MDNode;
2304 std::vector<uint64_t> Elements;
2306 DIExpression(LLVMContext &C, StorageType Storage, ArrayRef<uint64_t> Elements)
2307 : MDNode(C, DIExpressionKind, Storage, None),
2308 Elements(Elements.begin(), Elements.end()) {}
2309 ~DIExpression() = default;
2311 static DIExpression *getImpl(LLVMContext &Context,
2312 ArrayRef<uint64_t> Elements, StorageType Storage,
2313 bool ShouldCreate = true);
2315 TempDIExpression cloneImpl() const {
2316 return getTemporary(getContext(), getElements());
2319 public:
2320 DEFINE_MDNODE_GET(DIExpression, (ArrayRef<uint64_t> Elements), (Elements))
2322 TempDIExpression clone() const { return cloneImpl(); }
2324 ArrayRef<uint64_t> getElements() const { return Elements; }
2326 unsigned getNumElements() const { return Elements.size(); }
2328 uint64_t getElement(unsigned I) const {
2329 assert(I < Elements.size() && "Index out of range");
2330 return Elements[I];
2333 /// Determine whether this represents a standalone constant value.
2334 bool isConstant() const;
2336 using element_iterator = ArrayRef<uint64_t>::iterator;
2338 element_iterator elements_begin() const { return getElements().begin(); }
2339 element_iterator elements_end() const { return getElements().end(); }
2341 /// A lightweight wrapper around an expression operand.
2343 /// TODO: Store arguments directly and change \a DIExpression to store a
2344 /// range of these.
2345 class ExprOperand {
2346 const uint64_t *Op = nullptr;
2348 public:
2349 ExprOperand() = default;
2350 explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
2352 const uint64_t *get() const { return Op; }
2354 /// Get the operand code.
2355 uint64_t getOp() const { return *Op; }
2357 /// Get an argument to the operand.
2359 /// Never returns the operand itself.
2360 uint64_t getArg(unsigned I) const { return Op[I + 1]; }
2362 unsigned getNumArgs() const { return getSize() - 1; }
2364 /// Return the size of the operand.
2366 /// Return the number of elements in the operand (1 + args).
2367 unsigned getSize() const;
2369 /// Append the elements of this operand to \p V.
2370 void appendToVector(SmallVectorImpl<uint64_t> &V) const {
2371 V.append(get(), get() + getSize());
2375 /// An iterator for expression operands.
2376 class expr_op_iterator
2377 : public std::iterator<std::input_iterator_tag, ExprOperand> {
2378 ExprOperand Op;
2380 public:
2381 expr_op_iterator() = default;
2382 explicit expr_op_iterator(element_iterator I) : Op(I) {}
2384 element_iterator getBase() const { return Op.get(); }
2385 const ExprOperand &operator*() const { return Op; }
2386 const ExprOperand *operator->() const { return &Op; }
2388 expr_op_iterator &operator++() {
2389 increment();
2390 return *this;
2392 expr_op_iterator operator++(int) {
2393 expr_op_iterator T(*this);
2394 increment();
2395 return T;
2398 /// Get the next iterator.
2400 /// \a std::next() doesn't work because this is technically an
2401 /// input_iterator, but it's a perfectly valid operation. This is an
2402 /// accessor to provide the same functionality.
2403 expr_op_iterator getNext() const { return ++expr_op_iterator(*this); }
2405 bool operator==(const expr_op_iterator &X) const {
2406 return getBase() == X.getBase();
2408 bool operator!=(const expr_op_iterator &X) const {
2409 return getBase() != X.getBase();
2412 private:
2413 void increment() { Op = ExprOperand(getBase() + Op.getSize()); }
2416 /// Visit the elements via ExprOperand wrappers.
2418 /// These range iterators visit elements through \a ExprOperand wrappers.
2419 /// This is not guaranteed to be a valid range unless \a isValid() gives \c
2420 /// true.
2422 /// \pre \a isValid() gives \c true.
2423 /// @{
2424 expr_op_iterator expr_op_begin() const {
2425 return expr_op_iterator(elements_begin());
2427 expr_op_iterator expr_op_end() const {
2428 return expr_op_iterator(elements_end());
2430 iterator_range<expr_op_iterator> expr_ops() const {
2431 return {expr_op_begin(), expr_op_end()};
2433 /// @}
2435 bool isValid() const;
2437 static bool classof(const Metadata *MD) {
2438 return MD->getMetadataID() == DIExpressionKind;
2441 /// Return whether the first element a DW_OP_deref.
2442 bool startsWithDeref() const {
2443 return getNumElements() > 0 && getElement(0) == dwarf::DW_OP_deref;
2446 /// Holds the characteristics of one fragment of a larger variable.
2447 struct FragmentInfo {
2448 uint64_t SizeInBits;
2449 uint64_t OffsetInBits;
2452 /// Retrieve the details of this fragment expression.
2453 static Optional<FragmentInfo> getFragmentInfo(expr_op_iterator Start,
2454 expr_op_iterator End);
2456 /// Retrieve the details of this fragment expression.
2457 Optional<FragmentInfo> getFragmentInfo() const {
2458 return getFragmentInfo(expr_op_begin(), expr_op_end());
2461 /// Return whether this is a piece of an aggregate variable.
2462 bool isFragment() const { return getFragmentInfo().hasValue(); }
2464 /// Return whether this is an implicit location description.
2465 bool isImplicit() const;
2467 /// Append \p Ops with operations to apply the \p Offset.
2468 static void appendOffset(SmallVectorImpl<uint64_t> &Ops, int64_t Offset);
2470 /// If this is a constant offset, extract it. If there is no expression,
2471 /// return true with an offset of zero.
2472 bool extractIfOffset(int64_t &Offset) const;
2474 /// Checks if the last 4 elements of the expression are DW_OP_constu <DWARF
2475 /// Address Space> DW_OP_swap DW_OP_xderef and extracts the <DWARF Address
2476 /// Space>.
2477 static const DIExpression *extractAddressClass(const DIExpression *Expr,
2478 unsigned &AddrClass);
2480 /// Used for DIExpression::prepend.
2481 enum PrependOps : uint8_t {
2482 ApplyOffset = 0,
2483 DerefBefore = 1 << 0,
2484 DerefAfter = 1 << 1,
2485 StackValue = 1 << 2
2488 /// Prepend \p DIExpr with a deref and offset operation and optionally turn it
2489 /// into a stack value.
2490 static DIExpression *prepend(const DIExpression *Expr, uint8_t Flags,
2491 int64_t Offset = 0);
2493 /// Prepend \p DIExpr with the given opcodes and optionally turn it into a
2494 /// stack value.
2495 static DIExpression *prependOpcodes(const DIExpression *Expr,
2496 SmallVectorImpl<uint64_t> &Ops,
2497 bool StackValue = false);
2499 /// Append the opcodes \p Ops to \p DIExpr. Unlike \ref appendToStack, the
2500 /// returned expression is a stack value only if \p DIExpr is a stack value.
2501 /// If \p DIExpr describes a fragment, the returned expression will describe
2502 /// the same fragment.
2503 static DIExpression *append(const DIExpression *Expr, ArrayRef<uint64_t> Ops);
2505 /// Convert \p DIExpr into a stack value if it isn't one already by appending
2506 /// DW_OP_deref if needed, and appending \p Ops to the resulting expression.
2507 /// If \p DIExpr describes a fragment, the returned expression will describe
2508 /// the same fragment.
2509 static DIExpression *appendToStack(const DIExpression *Expr,
2510 ArrayRef<uint64_t> Ops);
2512 /// Create a DIExpression to describe one part of an aggregate variable that
2513 /// is fragmented across multiple Values. The DW_OP_LLVM_fragment operation
2514 /// will be appended to the elements of \c Expr. If \c Expr already contains
2515 /// a \c DW_OP_LLVM_fragment \c OffsetInBits is interpreted as an offset
2516 /// into the existing fragment.
2518 /// \param OffsetInBits Offset of the piece in bits.
2519 /// \param SizeInBits Size of the piece in bits.
2520 /// \return Creating a fragment expression may fail if \c Expr
2521 /// contains arithmetic operations that would be truncated.
2522 static Optional<DIExpression *>
2523 createFragmentExpression(const DIExpression *Expr, unsigned OffsetInBits,
2524 unsigned SizeInBits);
2526 /// Determine the relative position of the fragments described by this
2527 /// DIExpression and \p Other.
2528 /// Returns -1 if this is entirely before Other, 0 if this and Other overlap,
2529 /// 1 if this is entirely after Other.
2530 int fragmentCmp(const DIExpression *Other) const {
2531 auto Fragment1 = *getFragmentInfo();
2532 auto Fragment2 = *Other->getFragmentInfo();
2533 unsigned l1 = Fragment1.OffsetInBits;
2534 unsigned l2 = Fragment2.OffsetInBits;
2535 unsigned r1 = l1 + Fragment1.SizeInBits;
2536 unsigned r2 = l2 + Fragment2.SizeInBits;
2537 if (r1 <= l2)
2538 return -1;
2539 else if (r2 <= l1)
2540 return 1;
2541 else
2542 return 0;
2545 /// Check if fragments overlap between this DIExpression and \p Other.
2546 bool fragmentsOverlap(const DIExpression *Other) const {
2547 if (!isFragment() || !Other->isFragment())
2548 return true;
2549 return fragmentCmp(Other) == 0;
2553 /// Global variables.
2555 /// TODO: Remove DisplayName. It's always equal to Name.
2556 class DIGlobalVariable : public DIVariable {
2557 friend class LLVMContextImpl;
2558 friend class MDNode;
2560 bool IsLocalToUnit;
2561 bool IsDefinition;
2563 DIGlobalVariable(LLVMContext &C, StorageType Storage, unsigned Line,
2564 bool IsLocalToUnit, bool IsDefinition, uint32_t AlignInBits,
2565 ArrayRef<Metadata *> Ops)
2566 : DIVariable(C, DIGlobalVariableKind, Storage, Line, Ops, AlignInBits),
2567 IsLocalToUnit(IsLocalToUnit), IsDefinition(IsDefinition) {}
2568 ~DIGlobalVariable() = default;
2570 static DIGlobalVariable *
2571 getImpl(LLVMContext &Context, DIScope *Scope, StringRef Name,
2572 StringRef LinkageName, DIFile *File, unsigned Line, DIType *Type,
2573 bool IsLocalToUnit, bool IsDefinition,
2574 DIDerivedType *StaticDataMemberDeclaration, MDTuple *TemplateParams,
2575 uint32_t AlignInBits, StorageType Storage, bool ShouldCreate = true) {
2576 return getImpl(Context, Scope, getCanonicalMDString(Context, Name),
2577 getCanonicalMDString(Context, LinkageName), File, Line, Type,
2578 IsLocalToUnit, IsDefinition, StaticDataMemberDeclaration,
2579 cast_or_null<Metadata>(TemplateParams), AlignInBits, Storage,
2580 ShouldCreate);
2582 static DIGlobalVariable *
2583 getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name,
2584 MDString *LinkageName, Metadata *File, unsigned Line, Metadata *Type,
2585 bool IsLocalToUnit, bool IsDefinition,
2586 Metadata *StaticDataMemberDeclaration, Metadata *TemplateParams,
2587 uint32_t AlignInBits, StorageType Storage, bool ShouldCreate = true);
2589 TempDIGlobalVariable cloneImpl() const {
2590 return getTemporary(getContext(), getScope(), getName(), getLinkageName(),
2591 getFile(), getLine(), getType(), isLocalToUnit(),
2592 isDefinition(), getStaticDataMemberDeclaration(),
2593 getTemplateParams(), getAlignInBits());
2596 public:
2597 DEFINE_MDNODE_GET(DIGlobalVariable,
2598 (DIScope * Scope, StringRef Name, StringRef LinkageName,
2599 DIFile *File, unsigned Line, DIType *Type,
2600 bool IsLocalToUnit, bool IsDefinition,
2601 DIDerivedType *StaticDataMemberDeclaration,
2602 MDTuple *TemplateParams, uint32_t AlignInBits),
2603 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit,
2604 IsDefinition, StaticDataMemberDeclaration, TemplateParams,
2605 AlignInBits))
2606 DEFINE_MDNODE_GET(DIGlobalVariable,
2607 (Metadata * Scope, MDString *Name, MDString *LinkageName,
2608 Metadata *File, unsigned Line, Metadata *Type,
2609 bool IsLocalToUnit, bool IsDefinition,
2610 Metadata *StaticDataMemberDeclaration,
2611 Metadata *TemplateParams, uint32_t AlignInBits),
2612 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit,
2613 IsDefinition, StaticDataMemberDeclaration, TemplateParams,
2614 AlignInBits))
2616 TempDIGlobalVariable clone() const { return cloneImpl(); }
2618 bool isLocalToUnit() const { return IsLocalToUnit; }
2619 bool isDefinition() const { return IsDefinition; }
2620 StringRef getDisplayName() const { return getStringOperand(4); }
2621 StringRef getLinkageName() const { return getStringOperand(5); }
2622 DIDerivedType *getStaticDataMemberDeclaration() const {
2623 return cast_or_null<DIDerivedType>(getRawStaticDataMemberDeclaration());
2626 MDString *getRawLinkageName() const { return getOperandAs<MDString>(5); }
2627 Metadata *getRawStaticDataMemberDeclaration() const { return getOperand(6); }
2628 Metadata *getRawTemplateParams() const { return getOperand(7); }
2629 MDTuple *getTemplateParams() const { return getOperandAs<MDTuple>(7); }
2631 static bool classof(const Metadata *MD) {
2632 return MD->getMetadataID() == DIGlobalVariableKind;
2636 class DICommonBlock : public DIScope {
2637 unsigned LineNo;
2639 friend class LLVMContextImpl;
2640 friend class MDNode;
2642 DICommonBlock(LLVMContext &Context, StorageType Storage, unsigned LineNo,
2643 ArrayRef<Metadata *> Ops)
2644 : DIScope(Context, DICommonBlockKind, Storage, dwarf::DW_TAG_common_block,
2645 Ops), LineNo(LineNo) {}
2647 static DICommonBlock *getImpl(LLVMContext &Context, DIScope *Scope,
2648 DIGlobalVariable *Decl, StringRef Name,
2649 DIFile *File, unsigned LineNo,
2650 StorageType Storage,
2651 bool ShouldCreate = true) {
2652 return getImpl(Context, Scope, Decl, getCanonicalMDString(Context, Name),
2653 File, LineNo, Storage, ShouldCreate);
2655 static DICommonBlock *getImpl(LLVMContext &Context, Metadata *Scope,
2656 Metadata *Decl, MDString *Name, Metadata *File,
2657 unsigned LineNo,
2658 StorageType Storage, bool ShouldCreate = true);
2660 TempDICommonBlock cloneImpl() const {
2661 return getTemporary(getContext(), getScope(), getDecl(), getName(),
2662 getFile(), getLineNo());
2665 public:
2666 DEFINE_MDNODE_GET(DICommonBlock,
2667 (DIScope *Scope, DIGlobalVariable *Decl, StringRef Name,
2668 DIFile *File, unsigned LineNo),
2669 (Scope, Decl, Name, File, LineNo))
2670 DEFINE_MDNODE_GET(DICommonBlock,
2671 (Metadata *Scope, Metadata *Decl, MDString *Name,
2672 Metadata *File, unsigned LineNo),
2673 (Scope, Decl, Name, File, LineNo))
2675 TempDICommonBlock clone() const { return cloneImpl(); }
2677 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
2678 DIGlobalVariable *getDecl() const {
2679 return cast_or_null<DIGlobalVariable>(getRawDecl());
2681 StringRef getName() const { return getStringOperand(2); }
2682 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
2683 unsigned getLineNo() const { return LineNo; }
2685 Metadata *getRawScope() const { return getOperand(0); }
2686 Metadata *getRawDecl() const { return getOperand(1); }
2687 MDString *getRawName() const { return getOperandAs<MDString>(2); }
2688 Metadata *getRawFile() const { return getOperand(3); }
2690 static bool classof(const Metadata *MD) {
2691 return MD->getMetadataID() == DICommonBlockKind;
2695 /// Local variable.
2697 /// TODO: Split up flags.
2698 class DILocalVariable : public DIVariable {
2699 friend class LLVMContextImpl;
2700 friend class MDNode;
2702 unsigned Arg : 16;
2703 DIFlags Flags;
2705 DILocalVariable(LLVMContext &C, StorageType Storage, unsigned Line,
2706 unsigned Arg, DIFlags Flags, uint32_t AlignInBits,
2707 ArrayRef<Metadata *> Ops)
2708 : DIVariable(C, DILocalVariableKind, Storage, Line, Ops, AlignInBits),
2709 Arg(Arg), Flags(Flags) {
2710 assert(Arg < (1 << 16) && "DILocalVariable: Arg out of range");
2712 ~DILocalVariable() = default;
2714 static DILocalVariable *getImpl(LLVMContext &Context, DIScope *Scope,
2715 StringRef Name, DIFile *File, unsigned Line,
2716 DIType *Type, unsigned Arg, DIFlags Flags,
2717 uint32_t AlignInBits, StorageType Storage,
2718 bool ShouldCreate = true) {
2719 return getImpl(Context, Scope, getCanonicalMDString(Context, Name), File,
2720 Line, Type, Arg, Flags, AlignInBits, Storage, ShouldCreate);
2722 static DILocalVariable *getImpl(LLVMContext &Context, Metadata *Scope,
2723 MDString *Name, Metadata *File, unsigned Line,
2724 Metadata *Type, unsigned Arg, DIFlags Flags,
2725 uint32_t AlignInBits, StorageType Storage,
2726 bool ShouldCreate = true);
2728 TempDILocalVariable cloneImpl() const {
2729 return getTemporary(getContext(), getScope(), getName(), getFile(),
2730 getLine(), getType(), getArg(), getFlags(),
2731 getAlignInBits());
2734 public:
2735 DEFINE_MDNODE_GET(DILocalVariable,
2736 (DILocalScope * Scope, StringRef Name, DIFile *File,
2737 unsigned Line, DIType *Type, unsigned Arg, DIFlags Flags,
2738 uint32_t AlignInBits),
2739 (Scope, Name, File, Line, Type, Arg, Flags, AlignInBits))
2740 DEFINE_MDNODE_GET(DILocalVariable,
2741 (Metadata * Scope, MDString *Name, Metadata *File,
2742 unsigned Line, Metadata *Type, unsigned Arg,
2743 DIFlags Flags, uint32_t AlignInBits),
2744 (Scope, Name, File, Line, Type, Arg, Flags, AlignInBits))
2746 TempDILocalVariable clone() const { return cloneImpl(); }
2748 /// Get the local scope for this variable.
2750 /// Variables must be defined in a local scope.
2751 DILocalScope *getScope() const {
2752 return cast<DILocalScope>(DIVariable::getScope());
2755 bool isParameter() const { return Arg; }
2756 unsigned getArg() const { return Arg; }
2757 DIFlags getFlags() const { return Flags; }
2759 bool isArtificial() const { return getFlags() & FlagArtificial; }
2760 bool isObjectPointer() const { return getFlags() & FlagObjectPointer; }
2762 /// Check that a location is valid for this variable.
2764 /// Check that \c DL exists, is in the same subprogram, and has the same
2765 /// inlined-at location as \c this. (Otherwise, it's not a valid attachment
2766 /// to a \a DbgInfoIntrinsic.)
2767 bool isValidLocationForIntrinsic(const DILocation *DL) const {
2768 return DL && getScope()->getSubprogram() == DL->getScope()->getSubprogram();
2771 static bool classof(const Metadata *MD) {
2772 return MD->getMetadataID() == DILocalVariableKind;
2776 /// Label.
2778 class DILabel : public DINode {
2779 friend class LLVMContextImpl;
2780 friend class MDNode;
2782 unsigned Line;
2784 DILabel(LLVMContext &C, StorageType Storage, unsigned Line,
2785 ArrayRef<Metadata *> Ops)
2786 : DINode(C, DILabelKind, Storage, dwarf::DW_TAG_label, Ops), Line(Line) {}
2787 ~DILabel() = default;
2789 static DILabel *getImpl(LLVMContext &Context, DIScope *Scope,
2790 StringRef Name, DIFile *File, unsigned Line,
2791 StorageType Storage,
2792 bool ShouldCreate = true) {
2793 return getImpl(Context, Scope, getCanonicalMDString(Context, Name), File,
2794 Line, Storage, ShouldCreate);
2796 static DILabel *getImpl(LLVMContext &Context, Metadata *Scope,
2797 MDString *Name, Metadata *File, unsigned Line,
2798 StorageType Storage,
2799 bool ShouldCreate = true);
2801 TempDILabel cloneImpl() const {
2802 return getTemporary(getContext(), getScope(), getName(), getFile(),
2803 getLine());
2806 public:
2807 DEFINE_MDNODE_GET(DILabel,
2808 (DILocalScope * Scope, StringRef Name, DIFile *File,
2809 unsigned Line),
2810 (Scope, Name, File, Line))
2811 DEFINE_MDNODE_GET(DILabel,
2812 (Metadata * Scope, MDString *Name, Metadata *File,
2813 unsigned Line),
2814 (Scope, Name, File, Line))
2816 TempDILabel clone() const { return cloneImpl(); }
2818 /// Get the local scope for this label.
2820 /// Labels must be defined in a local scope.
2821 DILocalScope *getScope() const {
2822 return cast_or_null<DILocalScope>(getRawScope());
2824 unsigned getLine() const { return Line; }
2825 StringRef getName() const { return getStringOperand(1); }
2826 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
2828 Metadata *getRawScope() const { return getOperand(0); }
2829 MDString *getRawName() const { return getOperandAs<MDString>(1); }
2830 Metadata *getRawFile() const { return getOperand(2); }
2832 /// Check that a location is valid for this label.
2834 /// Check that \c DL exists, is in the same subprogram, and has the same
2835 /// inlined-at location as \c this. (Otherwise, it's not a valid attachment
2836 /// to a \a DbgInfoIntrinsic.)
2837 bool isValidLocationForIntrinsic(const DILocation *DL) const {
2838 return DL && getScope()->getSubprogram() == DL->getScope()->getSubprogram();
2841 static bool classof(const Metadata *MD) {
2842 return MD->getMetadataID() == DILabelKind;
2846 class DIObjCProperty : public DINode {
2847 friend class LLVMContextImpl;
2848 friend class MDNode;
2850 unsigned Line;
2851 unsigned Attributes;
2853 DIObjCProperty(LLVMContext &C, StorageType Storage, unsigned Line,
2854 unsigned Attributes, ArrayRef<Metadata *> Ops)
2855 : DINode(C, DIObjCPropertyKind, Storage, dwarf::DW_TAG_APPLE_property,
2856 Ops),
2857 Line(Line), Attributes(Attributes) {}
2858 ~DIObjCProperty() = default;
2860 static DIObjCProperty *
2861 getImpl(LLVMContext &Context, StringRef Name, DIFile *File, unsigned Line,
2862 StringRef GetterName, StringRef SetterName, unsigned Attributes,
2863 DIType *Type, StorageType Storage, bool ShouldCreate = true) {
2864 return getImpl(Context, getCanonicalMDString(Context, Name), File, Line,
2865 getCanonicalMDString(Context, GetterName),
2866 getCanonicalMDString(Context, SetterName), Attributes, Type,
2867 Storage, ShouldCreate);
2869 static DIObjCProperty *getImpl(LLVMContext &Context, MDString *Name,
2870 Metadata *File, unsigned Line,
2871 MDString *GetterName, MDString *SetterName,
2872 unsigned Attributes, Metadata *Type,
2873 StorageType Storage, bool ShouldCreate = true);
2875 TempDIObjCProperty cloneImpl() const {
2876 return getTemporary(getContext(), getName(), getFile(), getLine(),
2877 getGetterName(), getSetterName(), getAttributes(),
2878 getType());
2881 public:
2882 DEFINE_MDNODE_GET(DIObjCProperty,
2883 (StringRef Name, DIFile *File, unsigned Line,
2884 StringRef GetterName, StringRef SetterName,
2885 unsigned Attributes, DIType *Type),
2886 (Name, File, Line, GetterName, SetterName, Attributes,
2887 Type))
2888 DEFINE_MDNODE_GET(DIObjCProperty,
2889 (MDString * Name, Metadata *File, unsigned Line,
2890 MDString *GetterName, MDString *SetterName,
2891 unsigned Attributes, Metadata *Type),
2892 (Name, File, Line, GetterName, SetterName, Attributes,
2893 Type))
2895 TempDIObjCProperty clone() const { return cloneImpl(); }
2897 unsigned getLine() const { return Line; }
2898 unsigned getAttributes() const { return Attributes; }
2899 StringRef getName() const { return getStringOperand(0); }
2900 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
2901 StringRef getGetterName() const { return getStringOperand(2); }
2902 StringRef getSetterName() const { return getStringOperand(3); }
2903 DIType *getType() const { return cast_or_null<DIType>(getRawType()); }
2905 StringRef getFilename() const {
2906 if (auto *F = getFile())
2907 return F->getFilename();
2908 return "";
2911 StringRef getDirectory() const {
2912 if (auto *F = getFile())
2913 return F->getDirectory();
2914 return "";
2917 Optional<StringRef> getSource() const {
2918 if (auto *F = getFile())
2919 return F->getSource();
2920 return None;
2923 MDString *getRawName() const { return getOperandAs<MDString>(0); }
2924 Metadata *getRawFile() const { return getOperand(1); }
2925 MDString *getRawGetterName() const { return getOperandAs<MDString>(2); }
2926 MDString *getRawSetterName() const { return getOperandAs<MDString>(3); }
2927 Metadata *getRawType() const { return getOperand(4); }
2929 static bool classof(const Metadata *MD) {
2930 return MD->getMetadataID() == DIObjCPropertyKind;
2934 /// An imported module (C++ using directive or similar).
2935 class DIImportedEntity : public DINode {
2936 friend class LLVMContextImpl;
2937 friend class MDNode;
2939 unsigned Line;
2941 DIImportedEntity(LLVMContext &C, StorageType Storage, unsigned Tag,
2942 unsigned Line, ArrayRef<Metadata *> Ops)
2943 : DINode(C, DIImportedEntityKind, Storage, Tag, Ops), Line(Line) {}
2944 ~DIImportedEntity() = default;
2946 static DIImportedEntity *getImpl(LLVMContext &Context, unsigned Tag,
2947 DIScope *Scope, DINode *Entity, DIFile *File,
2948 unsigned Line, StringRef Name,
2949 StorageType Storage,
2950 bool ShouldCreate = true) {
2951 return getImpl(Context, Tag, Scope, Entity, File, Line,
2952 getCanonicalMDString(Context, Name), Storage, ShouldCreate);
2954 static DIImportedEntity *getImpl(LLVMContext &Context, unsigned Tag,
2955 Metadata *Scope, Metadata *Entity,
2956 Metadata *File, unsigned Line,
2957 MDString *Name, StorageType Storage,
2958 bool ShouldCreate = true);
2960 TempDIImportedEntity cloneImpl() const {
2961 return getTemporary(getContext(), getTag(), getScope(), getEntity(),
2962 getFile(), getLine(), getName());
2965 public:
2966 DEFINE_MDNODE_GET(DIImportedEntity,
2967 (unsigned Tag, DIScope *Scope, DINode *Entity, DIFile *File,
2968 unsigned Line, StringRef Name = ""),
2969 (Tag, Scope, Entity, File, Line, Name))
2970 DEFINE_MDNODE_GET(DIImportedEntity,
2971 (unsigned Tag, Metadata *Scope, Metadata *Entity,
2972 Metadata *File, unsigned Line, MDString *Name),
2973 (Tag, Scope, Entity, File, Line, Name))
2975 TempDIImportedEntity clone() const { return cloneImpl(); }
2977 unsigned getLine() const { return Line; }
2978 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); }
2979 DINode *getEntity() const { return cast_or_null<DINode>(getRawEntity()); }
2980 StringRef getName() const { return getStringOperand(2); }
2981 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
2983 Metadata *getRawScope() const { return getOperand(0); }
2984 Metadata *getRawEntity() const { return getOperand(1); }
2985 MDString *getRawName() const { return getOperandAs<MDString>(2); }
2986 Metadata *getRawFile() const { return getOperand(3); }
2988 static bool classof(const Metadata *MD) {
2989 return MD->getMetadataID() == DIImportedEntityKind;
2993 /// A pair of DIGlobalVariable and DIExpression.
2994 class DIGlobalVariableExpression : public MDNode {
2995 friend class LLVMContextImpl;
2996 friend class MDNode;
2998 DIGlobalVariableExpression(LLVMContext &C, StorageType Storage,
2999 ArrayRef<Metadata *> Ops)
3000 : MDNode(C, DIGlobalVariableExpressionKind, Storage, Ops) {}
3001 ~DIGlobalVariableExpression() = default;
3003 static DIGlobalVariableExpression *
3004 getImpl(LLVMContext &Context, Metadata *Variable, Metadata *Expression,
3005 StorageType Storage, bool ShouldCreate = true);
3007 TempDIGlobalVariableExpression cloneImpl() const {
3008 return getTemporary(getContext(), getVariable(), getExpression());
3011 public:
3012 DEFINE_MDNODE_GET(DIGlobalVariableExpression,
3013 (Metadata * Variable, Metadata *Expression),
3014 (Variable, Expression))
3016 TempDIGlobalVariableExpression clone() const { return cloneImpl(); }
3018 Metadata *getRawVariable() const { return getOperand(0); }
3020 DIGlobalVariable *getVariable() const {
3021 return cast_or_null<DIGlobalVariable>(getRawVariable());
3024 Metadata *getRawExpression() const { return getOperand(1); }
3026 DIExpression *getExpression() const {
3027 return cast<DIExpression>(getRawExpression());
3030 static bool classof(const Metadata *MD) {
3031 return MD->getMetadataID() == DIGlobalVariableExpressionKind;
3035 /// Macro Info DWARF-like metadata node.
3037 /// A metadata node with a DWARF macro info (i.e., a constant named
3038 /// \c DW_MACINFO_*, defined in llvm/BinaryFormat/Dwarf.h). Called \a
3039 /// DIMacroNode
3040 /// because it's potentially used for non-DWARF output.
3041 class DIMacroNode : public MDNode {
3042 friend class LLVMContextImpl;
3043 friend class MDNode;
3045 protected:
3046 DIMacroNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned MIType,
3047 ArrayRef<Metadata *> Ops1, ArrayRef<Metadata *> Ops2 = None)
3048 : MDNode(C, ID, Storage, Ops1, Ops2) {
3049 assert(MIType < 1u << 16);
3050 SubclassData16 = MIType;
3052 ~DIMacroNode() = default;
3054 template <class Ty> Ty *getOperandAs(unsigned I) const {
3055 return cast_or_null<Ty>(getOperand(I));
3058 StringRef getStringOperand(unsigned I) const {
3059 if (auto *S = getOperandAs<MDString>(I))
3060 return S->getString();
3061 return StringRef();
3064 static MDString *getCanonicalMDString(LLVMContext &Context, StringRef S) {
3065 if (S.empty())
3066 return nullptr;
3067 return MDString::get(Context, S);
3070 public:
3071 unsigned getMacinfoType() const { return SubclassData16; }
3073 static bool classof(const Metadata *MD) {
3074 switch (MD->getMetadataID()) {
3075 default:
3076 return false;
3077 case DIMacroKind:
3078 case DIMacroFileKind:
3079 return true;
3084 class DIMacro : public DIMacroNode {
3085 friend class LLVMContextImpl;
3086 friend class MDNode;
3088 unsigned Line;
3090 DIMacro(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line,
3091 ArrayRef<Metadata *> Ops)
3092 : DIMacroNode(C, DIMacroKind, Storage, MIType, Ops), Line(Line) {}
3093 ~DIMacro() = default;
3095 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3096 StringRef Name, StringRef Value, StorageType Storage,
3097 bool ShouldCreate = true) {
3098 return getImpl(Context, MIType, Line, getCanonicalMDString(Context, Name),
3099 getCanonicalMDString(Context, Value), Storage, ShouldCreate);
3101 static DIMacro *getImpl(LLVMContext &Context, unsigned MIType, unsigned Line,
3102 MDString *Name, MDString *Value, StorageType Storage,
3103 bool ShouldCreate = true);
3105 TempDIMacro cloneImpl() const {
3106 return getTemporary(getContext(), getMacinfoType(), getLine(), getName(),
3107 getValue());
3110 public:
3111 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, StringRef Name,
3112 StringRef Value = ""),
3113 (MIType, Line, Name, Value))
3114 DEFINE_MDNODE_GET(DIMacro, (unsigned MIType, unsigned Line, MDString *Name,
3115 MDString *Value),
3116 (MIType, Line, Name, Value))
3118 TempDIMacro clone() const { return cloneImpl(); }
3120 unsigned getLine() const { return Line; }
3122 StringRef getName() const { return getStringOperand(0); }
3123 StringRef getValue() const { return getStringOperand(1); }
3125 MDString *getRawName() const { return getOperandAs<MDString>(0); }
3126 MDString *getRawValue() const { return getOperandAs<MDString>(1); }
3128 static bool classof(const Metadata *MD) {
3129 return MD->getMetadataID() == DIMacroKind;
3133 class DIMacroFile : public DIMacroNode {
3134 friend class LLVMContextImpl;
3135 friend class MDNode;
3137 unsigned Line;
3139 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType,
3140 unsigned Line, ArrayRef<Metadata *> Ops)
3141 : DIMacroNode(C, DIMacroFileKind, Storage, MIType, Ops), Line(Line) {}
3142 ~DIMacroFile() = default;
3144 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType,
3145 unsigned Line, DIFile *File,
3146 DIMacroNodeArray Elements, StorageType Storage,
3147 bool ShouldCreate = true) {
3148 return getImpl(Context, MIType, Line, static_cast<Metadata *>(File),
3149 Elements.get(), Storage, ShouldCreate);
3152 static DIMacroFile *getImpl(LLVMContext &Context, unsigned MIType,
3153 unsigned Line, Metadata *File, Metadata *Elements,
3154 StorageType Storage, bool ShouldCreate = true);
3156 TempDIMacroFile cloneImpl() const {
3157 return getTemporary(getContext(), getMacinfoType(), getLine(), getFile(),
3158 getElements());
3161 public:
3162 DEFINE_MDNODE_GET(DIMacroFile, (unsigned MIType, unsigned Line, DIFile *File,
3163 DIMacroNodeArray Elements),
3164 (MIType, Line, File, Elements))
3165 DEFINE_MDNODE_GET(DIMacroFile, (unsigned MIType, unsigned Line,
3166 Metadata *File, Metadata *Elements),
3167 (MIType, Line, File, Elements))
3169 TempDIMacroFile clone() const { return cloneImpl(); }
3171 void replaceElements(DIMacroNodeArray Elements) {
3172 #ifndef NDEBUG
3173 for (DIMacroNode *Op : getElements())
3174 assert(is_contained(Elements->operands(), Op) &&
3175 "Lost a macro node during macro node list replacement");
3176 #endif
3177 replaceOperandWith(1, Elements.get());
3180 unsigned getLine() const { return Line; }
3181 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
3183 DIMacroNodeArray getElements() const {
3184 return cast_or_null<MDTuple>(getRawElements());
3187 Metadata *getRawFile() const { return getOperand(0); }
3188 Metadata *getRawElements() const { return getOperand(1); }
3190 static bool classof(const Metadata *MD) {
3191 return MD->getMetadataID() == DIMacroFileKind;
3195 } // end namespace llvm
3197 #undef DEFINE_MDNODE_GET_UNPACK_IMPL
3198 #undef DEFINE_MDNODE_GET_UNPACK
3199 #undef DEFINE_MDNODE_GET
3201 #endif // LLVM_IR_DEBUGINFOMETADATA_H