blob: 92f3f21f754c97a5c6c9ee0a9e129ef6bbef2046 [file] [log] [blame]
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +00001//===- DebugInfoMetadata.cpp - Implement debug info metadata --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the debug info Metadata classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/IR/DebugInfoMetadata.h"
15#include "LLVMContextImpl.h"
16#include "MetadataImpl.h"
David Blaikie4976f0e2018-08-23 22:35:58 +000017#include "llvm/ADT/SmallSet.h"
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +000018#include "llvm/ADT/StringSwitch.h"
Andrew Ng9d0dc962017-04-28 08:44:30 +000019#include "llvm/IR/DIBuilder.h"
Duncan P. N. Exon Smitha9d82a52015-02-18 20:32:57 +000020#include "llvm/IR/Function.h"
Vedant Kumar0ffa8792017-11-06 23:15:21 +000021#include "llvm/IR/Instructions.h"
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000022
Mircea Trofin001ab102018-12-21 22:48:50 +000023#include <numeric>
24
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000025using namespace llvm;
26
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +000027DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line,
Calixte Denizet44db1d12018-09-20 08:53:06 +000028 unsigned Column, ArrayRef<Metadata *> MDs,
29 bool ImplicitCode)
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +000030 : MDNode(C, DILocationKind, Storage, MDs) {
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000031 assert((MDs.size() == 1 || MDs.size() == 2) &&
32 "Expected a scope and optional inlined-at");
33
34 // Set line and column.
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000035 assert(Column < (1u << 16) && "Expected 16-bit column");
36
37 SubclassData32 = Line;
38 SubclassData16 = Column;
Calixte Denizet44db1d12018-09-20 08:53:06 +000039
40 setImplicitCode(ImplicitCode);
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000041}
42
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000043static void adjustColumn(unsigned &Column) {
44 // Set to unknown on overflow. We only have 16 bits to play with here.
45 if (Column >= (1u << 16))
46 Column = 0;
47}
48
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +000049DILocation *DILocation::getImpl(LLVMContext &Context, unsigned Line,
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000050 unsigned Column, Metadata *Scope,
Calixte Denizet44db1d12018-09-20 08:53:06 +000051 Metadata *InlinedAt, bool ImplicitCode,
52 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith8713d992015-02-06 22:50:13 +000053 // Fixup column.
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000054 adjustColumn(Column);
55
56 if (Storage == Uniqued) {
Calixte Denizet44db1d12018-09-20 08:53:06 +000057 if (auto *N = getUniqued(Context.pImpl->DILocations,
58 DILocationInfo::KeyTy(Line, Column, Scope,
59 InlinedAt, ImplicitCode)))
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000060 return N;
61 if (!ShouldCreate)
62 return nullptr;
63 } else {
64 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
65 }
66
67 SmallVector<Metadata *, 2> Ops;
68 Ops.push_back(Scope);
69 if (InlinedAt)
70 Ops.push_back(InlinedAt);
Calixte Denizet44db1d12018-09-20 08:53:06 +000071 return storeImpl(new (Ops.size()) DILocation(Context, Storage, Line, Column,
72 Ops, ImplicitCode),
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +000073 Storage, Context.pImpl->DILocations);
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +000074}
75
Vedant Kumar85af7e12018-04-12 20:58:24 +000076const DILocation *DILocation::getMergedLocation(const DILocation *LocA,
David Blaikie4976f0e2018-08-23 22:35:58 +000077 const DILocation *LocB) {
Vedant Kumar0ffa8792017-11-06 23:15:21 +000078 if (!LocA || !LocB)
79 return nullptr;
80
David Blaikie4976f0e2018-08-23 22:35:58 +000081 if (LocA == LocB)
Vedant Kumar0ffa8792017-11-06 23:15:21 +000082 return LocA;
83
Vedant Kumar0ffa8792017-11-06 23:15:21 +000084 SmallPtrSet<DILocation *, 5> InlinedLocationsA;
85 for (DILocation *L = LocA->getInlinedAt(); L; L = L->getInlinedAt())
86 InlinedLocationsA.insert(L);
David Blaikie4976f0e2018-08-23 22:35:58 +000087 SmallSet<std::pair<DIScope *, DILocation *>, 5> Locations;
88 DIScope *S = LocA->getScope();
89 DILocation *L = LocA->getInlinedAt();
90 while (S) {
91 Locations.insert(std::make_pair(S, L));
92 S = S->getScope().resolve();
93 if (!S && L) {
94 S = L->getScope();
95 L = L->getInlinedAt();
96 }
Vedant Kumar0ffa8792017-11-06 23:15:21 +000097 }
David Blaikie4976f0e2018-08-23 22:35:58 +000098 const DILocation *Result = LocB;
99 S = LocB->getScope();
100 L = LocB->getInlinedAt();
101 while (S) {
102 if (Locations.count(std::make_pair(S, L)))
103 break;
104 S = S->getScope().resolve();
105 if (!S && L) {
106 S = L->getScope();
107 L = L->getInlinedAt();
108 }
109 }
Adrian Prantl59c0c362018-08-24 23:30:57 +0000110
111 // If the two locations are irreconsilable, just pick one. This is misleading,
112 // but on the other hand, it's a "line 0" location.
113 if (!S || !isa<DILocalScope>(S))
114 S = LocA->getScope();
David Blaikie4976f0e2018-08-23 22:35:58 +0000115 return DILocation::get(Result->getContext(), 0, 0, S, L);
Vedant Kumar0ffa8792017-11-06 23:15:21 +0000116}
117
Mircea Trofin001ab102018-12-21 22:48:50 +0000118Optional<unsigned> DILocation::encodeDiscriminator(unsigned BD, unsigned DF, unsigned CI) {
119 SmallVector<unsigned, 3> Components = {BD, DF, CI};
120 uint64_t RemainingWork = 0U;
121 // We use RemainingWork to figure out if we have no remaining components to
122 // encode. For example: if BD != 0 but DF == 0 && CI == 0, we don't need to
123 // encode anything for the latter 2.
124 // Since any of the input components is at most 32 bits, their sum will be
125 // less than 34 bits, and thus RemainingWork won't overflow.
126 RemainingWork = std::accumulate(Components.begin(), Components.end(), RemainingWork);
127
128 int I = 0;
129 unsigned Ret = 0;
130 unsigned NextBitInsertionIndex = 0;
131 while (RemainingWork > 0) {
132 unsigned C = Components[I++];
133 RemainingWork -= C;
134 unsigned EC = encodeComponent(C);
135 Ret |= (EC << NextBitInsertionIndex);
136 NextBitInsertionIndex += encodingBits(C);
137 }
138
139 // Encoding may be unsuccessful because of overflow. We determine success by
140 // checking equivalence of components before & after encoding. Alternatively,
141 // we could determine Success during encoding, but the current alternative is
142 // simpler.
143 unsigned TBD, TDF, TCI = 0;
144 decodeDiscriminator(Ret, TBD, TDF, TCI);
145 if (TBD == BD && TDF == DF && TCI == CI)
146 return Ret;
147 return None;
148}
149
150void DILocation::decodeDiscriminator(unsigned D, unsigned &BD, unsigned &DF,
151 unsigned &CI) {
152 BD = getUnsignedFromPrefixEncoding(D);
153 DF = getUnsignedFromPrefixEncoding(getNextComponentInDiscriminator(D));
154 CI = getUnsignedFromPrefixEncoding(
155 getNextComponentInDiscriminator(getNextComponentInDiscriminator(D)));
156}
157
158
Leny Kholodovd9478f82016-09-06 10:46:28 +0000159DINode::DIFlags DINode::getFlag(StringRef Flag) {
160 return StringSwitch<DIFlags>(Flag)
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000161#define HANDLE_DI_FLAG(ID, NAME) .Case("DIFlag" #NAME, Flag##NAME)
162#include "llvm/IR/DebugInfoFlags.def"
Leny Kholodovd9478f82016-09-06 10:46:28 +0000163 .Default(DINode::FlagZero);
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000164}
165
Mehdi Aminiafe556b2016-10-01 05:57:50 +0000166StringRef DINode::getFlagString(DIFlags Flag) {
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000167 switch (Flag) {
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000168#define HANDLE_DI_FLAG(ID, NAME) \
169 case Flag##NAME: \
170 return "DIFlag" #NAME;
171#include "llvm/IR/DebugInfoFlags.def"
172 }
Leny Kholodovd9478f82016-09-06 10:46:28 +0000173 return "";
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000174}
175
Leny Kholodovd9478f82016-09-06 10:46:28 +0000176DINode::DIFlags DINode::splitFlags(DIFlags Flags,
Leny Kholodov01dd3d92016-09-06 17:03:02 +0000177 SmallVectorImpl<DIFlags> &SplitFlags) {
Bob Haarman157b7f52016-10-25 22:11:52 +0000178 // Flags that are packed together need to be specially handled, so
179 // that, for example, we emit "DIFlagPublic" and not
180 // "DIFlagPrivate | DIFlagProtected".
Leny Kholodovd9478f82016-09-06 10:46:28 +0000181 if (DIFlags A = Flags & FlagAccessibility) {
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000182 if (A == FlagPrivate)
183 SplitFlags.push_back(FlagPrivate);
184 else if (A == FlagProtected)
185 SplitFlags.push_back(FlagProtected);
186 else
187 SplitFlags.push_back(FlagPublic);
188 Flags &= ~A;
189 }
Leny Kholodovd9478f82016-09-06 10:46:28 +0000190 if (DIFlags R = Flags & FlagPtrToMemberRep) {
Reid Klecknera450edf2016-06-17 21:31:33 +0000191 if (R == FlagSingleInheritance)
192 SplitFlags.push_back(FlagSingleInheritance);
193 else if (R == FlagMultipleInheritance)
194 SplitFlags.push_back(FlagMultipleInheritance);
195 else
196 SplitFlags.push_back(FlagVirtualInheritance);
197 Flags &= ~R;
198 }
Bob Haarman157b7f52016-10-25 22:11:52 +0000199 if ((Flags & FlagIndirectVirtualBase) == FlagIndirectVirtualBase) {
200 Flags &= ~FlagIndirectVirtualBase;
201 SplitFlags.push_back(FlagIndirectVirtualBase);
202 }
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000203
204#define HANDLE_DI_FLAG(ID, NAME) \
Leny Kholodovd9478f82016-09-06 10:46:28 +0000205 if (DIFlags Bit = Flags & Flag##NAME) { \
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000206 SplitFlags.push_back(Bit); \
207 Flags &= ~Bit; \
208 }
209#include "llvm/IR/DebugInfoFlags.def"
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000210 return Flags;
211}
212
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000213DIScopeRef DIScope::getScope() const {
214 if (auto *T = dyn_cast<DIType>(this))
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000215 return T->getScope();
216
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000217 if (auto *SP = dyn_cast<DISubprogram>(this))
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000218 return SP->getScope();
219
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000220 if (auto *LB = dyn_cast<DILexicalBlockBase>(this))
Duncan P. N. Exon Smithde748402016-04-23 21:08:00 +0000221 return LB->getScope();
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000222
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000223 if (auto *NS = dyn_cast<DINamespace>(this))
Duncan P. N. Exon Smithde748402016-04-23 21:08:00 +0000224 return NS->getScope();
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000225
Adrian Prantl71776472015-06-29 23:03:47 +0000226 if (auto *M = dyn_cast<DIModule>(this))
Duncan P. N. Exon Smithde748402016-04-23 21:08:00 +0000227 return M->getScope();
Adrian Prantl71776472015-06-29 23:03:47 +0000228
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000229 assert((isa<DIFile>(this) || isa<DICompileUnit>(this)) &&
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000230 "Unhandled type of scope.");
231 return nullptr;
232}
233
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000234StringRef DIScope::getName() const {
235 if (auto *T = dyn_cast<DIType>(this))
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000236 return T->getName();
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000237 if (auto *SP = dyn_cast<DISubprogram>(this))
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000238 return SP->getName();
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000239 if (auto *NS = dyn_cast<DINamespace>(this))
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000240 return NS->getName();
Adrian Prantl71776472015-06-29 23:03:47 +0000241 if (auto *M = dyn_cast<DIModule>(this))
242 return M->getName();
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000243 assert((isa<DILexicalBlockBase>(this) || isa<DIFile>(this) ||
244 isa<DICompileUnit>(this)) &&
Duncan P. N. Exon Smith4e1b79b2015-04-11 17:37:23 +0000245 "Unhandled type of scope.");
246 return "";
247}
Duncan P. N. Exon Smith5f3bcf72015-04-07 01:21:40 +0000248
Duncan P. N. Exon Smith48da1912015-02-02 20:20:56 +0000249#ifndef NDEBUG
Duncan P. N. Exon Smith2a11d592015-02-02 20:01:03 +0000250static bool isCanonical(const MDString *S) {
251 return !S || !S->getString().empty();
Duncan P. N. Exon Smith265dc3e2015-02-02 19:54:05 +0000252}
Duncan P. N. Exon Smith48da1912015-02-02 20:20:56 +0000253#endif
Duncan P. N. Exon Smith265dc3e2015-02-02 19:54:05 +0000254
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000255GenericDINode *GenericDINode::getImpl(LLVMContext &Context, unsigned Tag,
256 MDString *Header,
257 ArrayRef<Metadata *> DwarfOps,
258 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +0000259 unsigned Hash = 0;
260 if (Storage == Uniqued) {
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000261 GenericDINodeInfo::KeyTy Key(Tag, Header, DwarfOps);
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000262 if (auto *N = getUniqued(Context.pImpl->GenericDINodes, Key))
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +0000263 return N;
264 if (!ShouldCreate)
265 return nullptr;
266 Hash = Key.getHash();
267 } else {
268 assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
269 }
270
271 // Use a nullptr for empty headers.
Duncan P. N. Exon Smith2a11d592015-02-02 20:01:03 +0000272 assert(isCanonical(Header) && "Expected canonical MDString");
273 Metadata *PreOps[] = {Header};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000274 return storeImpl(new (DwarfOps.size() + 1) GenericDINode(
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +0000275 Context, Storage, Hash, Tag, PreOps, DwarfOps),
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000276 Storage, Context.pImpl->GenericDINodes);
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +0000277}
278
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000279void GenericDINode::recalculateHash() {
280 setHash(GenericDINodeInfo::KeyTy::calculateHash(this));
Duncan P. N. Exon Smithca8d3bf2015-02-02 18:53:21 +0000281}
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000282
283#define UNWRAP_ARGS_IMPL(...) __VA_ARGS__
284#define UNWRAP_ARGS(ARGS) UNWRAP_ARGS_IMPL ARGS
285#define DEFINE_GETIMPL_LOOKUP(CLASS, ARGS) \
286 do { \
287 if (Storage == Uniqued) { \
288 if (auto *N = getUniqued(Context.pImpl->CLASS##s, \
289 CLASS##Info::KeyTy(UNWRAP_ARGS(ARGS)))) \
290 return N; \
291 if (!ShouldCreate) \
292 return nullptr; \
293 } else { \
294 assert(ShouldCreate && \
295 "Expected non-uniqued nodes to always be created"); \
296 } \
297 } while (false)
298#define DEFINE_GETIMPL_STORE(CLASS, ARGS, OPS) \
David Blaikiec7e68af2016-04-13 17:42:56 +0000299 return storeImpl(new (array_lengthof(OPS)) \
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000300 CLASS(Context, Storage, UNWRAP_ARGS(ARGS), OPS), \
301 Storage, Context.pImpl->CLASS##s)
302#define DEFINE_GETIMPL_STORE_NO_OPS(CLASS, ARGS) \
303 return storeImpl(new (0u) CLASS(Context, Storage, UNWRAP_ARGS(ARGS)), \
304 Storage, Context.pImpl->CLASS##s)
Duncan P. N. Exon Smith3740ae42015-02-10 01:59:57 +0000305#define DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(CLASS, OPS) \
David Blaikiec7e68af2016-04-13 17:42:56 +0000306 return storeImpl(new (array_lengthof(OPS)) CLASS(Context, Storage, OPS), \
Duncan P. N. Exon Smith3740ae42015-02-10 01:59:57 +0000307 Storage, Context.pImpl->CLASS##s)
Adrian Prantl9d291ed2017-04-26 23:59:52 +0000308#define DEFINE_GETIMPL_STORE_N(CLASS, ARGS, OPS, NUM_OPS) \
309 return storeImpl(new (NUM_OPS) \
310 CLASS(Context, Storage, UNWRAP_ARGS(ARGS), OPS), \
311 Storage, Context.pImpl->CLASS##s)
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000312
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000313DISubrange *DISubrange::getImpl(LLVMContext &Context, int64_t Count, int64_t Lo,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000314 StorageType Storage, bool ShouldCreate) {
Sander de Smalen959cee72018-01-24 09:56:07 +0000315 auto *CountNode = ConstantAsMetadata::get(
316 ConstantInt::getSigned(Type::getInt64Ty(Context), Count));
317 return getImpl(Context, CountNode, Lo, Storage, ShouldCreate);
318}
319
320DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode,
321 int64_t Lo, StorageType Storage,
322 bool ShouldCreate) {
323 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, Lo));
324 Metadata *Ops[] = { CountNode };
325 DEFINE_GETIMPL_STORE(DISubrange, (CountNode, Lo), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000326}
327
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000328DIEnumerator *DIEnumerator::getImpl(LLVMContext &Context, int64_t Value,
Momchil Velikov0c69bf42018-02-12 16:10:09 +0000329 bool IsUnsigned, MDString *Name,
330 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000331 assert(isCanonical(Name) && "Expected canonical MDString");
Momchil Velikov0c69bf42018-02-12 16:10:09 +0000332 DEFINE_GETIMPL_LOOKUP(DIEnumerator, (Value, IsUnsigned, Name));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000333 Metadata *Ops[] = {Name};
Momchil Velikov0c69bf42018-02-12 16:10:09 +0000334 DEFINE_GETIMPL_STORE(DIEnumerator, (Value, IsUnsigned), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000335}
336
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000337DIBasicType *DIBasicType::getImpl(LLVMContext &Context, unsigned Tag,
Duncan P. N. Exon Smith8a76ab62015-02-19 23:56:07 +0000338 MDString *Name, uint64_t SizeInBits,
Victor Leschuk58be60c2016-10-18 14:31:22 +0000339 uint32_t AlignInBits, unsigned Encoding,
Adrian Prantlc4d19092018-08-14 19:35:34 +0000340 DIFlags Flags, StorageType Storage,
341 bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000342 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000343 DEFINE_GETIMPL_LOOKUP(DIBasicType,
Adrian Prantlc4d19092018-08-14 19:35:34 +0000344 (Tag, Name, SizeInBits, AlignInBits, Encoding, Flags));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000345 Metadata *Ops[] = {nullptr, nullptr, Name};
Adrian Prantlc4d19092018-08-14 19:35:34 +0000346 DEFINE_GETIMPL_STORE(DIBasicType, (Tag, SizeInBits, AlignInBits, Encoding,
347 Flags), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000348}
349
Vedant Kumar0f83e1f2018-07-06 17:32:39 +0000350Optional<DIBasicType::Signedness> DIBasicType::getSignedness() const {
351 switch (getEncoding()) {
352 case dwarf::DW_ATE_signed:
353 case dwarf::DW_ATE_signed_char:
354 return Signedness::Signed;
355 case dwarf::DW_ATE_unsigned:
356 case dwarf::DW_ATE_unsigned_char:
357 return Signedness::Unsigned;
358 default:
359 return None;
360 }
361}
362
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000363DIDerivedType *DIDerivedType::getImpl(
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000364 LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *File,
Duncan P. N. Exon Smith8a76ab62015-02-19 23:56:07 +0000365 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
Konstantin Zhuravlyov2cee5cc2017-03-08 23:55:44 +0000366 uint32_t AlignInBits, uint64_t OffsetInBits,
367 Optional<unsigned> DWARFAddressSpace, DIFlags Flags, Metadata *ExtraData,
368 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000369 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000370 DEFINE_GETIMPL_LOOKUP(DIDerivedType,
371 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
Konstantin Zhuravlyov2cee5cc2017-03-08 23:55:44 +0000372 AlignInBits, OffsetInBits, DWARFAddressSpace, Flags,
373 ExtraData));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000374 Metadata *Ops[] = {File, Scope, Name, BaseType, ExtraData};
375 DEFINE_GETIMPL_STORE(
Konstantin Zhuravlyov2cee5cc2017-03-08 23:55:44 +0000376 DIDerivedType, (Tag, Line, SizeInBits, AlignInBits, OffsetInBits,
377 DWARFAddressSpace, Flags), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000378}
379
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000380DICompositeType *DICompositeType::getImpl(
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000381 LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *File,
Duncan P. N. Exon Smith8a76ab62015-02-19 23:56:07 +0000382 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
Victor Leschuk58be60c2016-10-18 14:31:22 +0000383 uint32_t AlignInBits, uint64_t OffsetInBits, DIFlags Flags,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000384 Metadata *Elements, unsigned RuntimeLang, Metadata *VTableHolder,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000385 Metadata *TemplateParams, MDString *Identifier, Metadata *Discriminator,
386 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000387 assert(isCanonical(Name) && "Expected canonical MDString");
Duncan P. N. Exon Smith9bb5d5d2016-04-17 03:58:21 +0000388
Duncan P. N. Exon Smithd33fbe42016-04-19 18:00:19 +0000389 // Keep this in sync with buildODRType.
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000390 DEFINE_GETIMPL_LOOKUP(
391 DICompositeType, (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
392 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000393 VTableHolder, TemplateParams, Identifier, Discriminator));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000394 Metadata *Ops[] = {File, Scope, Name, BaseType,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000395 Elements, VTableHolder, TemplateParams, Identifier,
396 Discriminator};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000397 DEFINE_GETIMPL_STORE(DICompositeType, (Tag, Line, RuntimeLang, SizeInBits,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000398 AlignInBits, OffsetInBits, Flags),
399 Ops);
400}
401
Duncan P. N. Exon Smithd33fbe42016-04-19 18:00:19 +0000402DICompositeType *DICompositeType::buildODRType(
403 LLVMContext &Context, MDString &Identifier, unsigned Tag, MDString *Name,
404 Metadata *File, unsigned Line, Metadata *Scope, Metadata *BaseType,
Victor Leschuk58be60c2016-10-18 14:31:22 +0000405 uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits,
Leny Kholodovd9478f82016-09-06 10:46:28 +0000406 DIFlags Flags, Metadata *Elements, unsigned RuntimeLang,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000407 Metadata *VTableHolder, Metadata *TemplateParams, Metadata *Discriminator) {
Duncan P. N. Exon Smithd33fbe42016-04-19 18:00:19 +0000408 assert(!Identifier.getString().empty() && "Expected valid identifier");
409 if (!Context.isODRUniquingDebugTypes())
410 return nullptr;
411 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier];
412 if (!CT)
413 return CT = DICompositeType::getDistinct(
414 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
415 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000416 VTableHolder, TemplateParams, &Identifier, Discriminator);
Duncan P. N. Exon Smithd33fbe42016-04-19 18:00:19 +0000417
418 // Only mutate CT if it's a forward declaration and the new operands aren't.
419 assert(CT->getRawIdentifier() == &Identifier && "Wrong ODR identifier?");
420 if (!CT->isForwardDecl() || (Flags & DINode::FlagFwdDecl))
421 return CT;
422
423 // Mutate CT in place. Keep this in sync with getImpl.
424 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits,
425 Flags);
426 Metadata *Ops[] = {File, Scope, Name, BaseType,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000427 Elements, VTableHolder, TemplateParams, &Identifier,
428 Discriminator};
Simon Pilgrim8bb8e812016-05-02 16:45:02 +0000429 assert((std::end(Ops) - std::begin(Ops)) == (int)CT->getNumOperands() &&
Duncan P. N. Exon Smithd33fbe42016-04-19 18:00:19 +0000430 "Mismatched number of operands");
431 for (unsigned I = 0, E = CT->getNumOperands(); I != E; ++I)
432 if (Ops[I] != CT->getOperand(I))
433 CT->setOperand(I, Ops[I]);
434 return CT;
435}
436
Duncan P. N. Exon Smith511eb032016-04-19 14:55:09 +0000437DICompositeType *DICompositeType::getODRType(
438 LLVMContext &Context, MDString &Identifier, unsigned Tag, MDString *Name,
439 Metadata *File, unsigned Line, Metadata *Scope, Metadata *BaseType,
Victor Leschuk58be60c2016-10-18 14:31:22 +0000440 uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits,
Leny Kholodovd9478f82016-09-06 10:46:28 +0000441 DIFlags Flags, Metadata *Elements, unsigned RuntimeLang,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000442 Metadata *VTableHolder, Metadata *TemplateParams, Metadata *Discriminator) {
Duncan P. N. Exon Smith511eb032016-04-19 14:55:09 +0000443 assert(!Identifier.getString().empty() && "Expected valid identifier");
444 if (!Context.isODRUniquingDebugTypes())
445 return nullptr;
446 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier];
447 if (!CT)
448 CT = DICompositeType::getDistinct(
449 Context, Tag, Name, File, Line, Scope, BaseType, SizeInBits,
450 AlignInBits, OffsetInBits, Flags, Elements, RuntimeLang, VTableHolder,
Adrian Prantl04aa6502018-02-06 23:45:59 +0000451 TemplateParams, &Identifier, Discriminator);
Duncan P. N. Exon Smith511eb032016-04-19 14:55:09 +0000452 return CT;
453}
454
455DICompositeType *DICompositeType::getODRTypeIfExists(LLVMContext &Context,
456 MDString &Identifier) {
457 assert(!Identifier.getString().empty() && "Expected valid identifier");
458 if (!Context.isODRUniquingDebugTypes())
459 return nullptr;
460 return Context.pImpl->DITypeMap->lookup(&Identifier);
461}
462
Leny Kholodov01dd3d92016-09-06 17:03:02 +0000463DISubroutineType *DISubroutineType::getImpl(LLVMContext &Context, DIFlags Flags,
464 uint8_t CC, Metadata *TypeArray,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000465 StorageType Storage,
466 bool ShouldCreate) {
Reid Kleckner3d3aca22016-06-08 20:34:29 +0000467 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray));
Duncan P. N. Exon Smithe5f2fce2015-07-24 20:56:36 +0000468 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray};
Reid Kleckner3d3aca22016-06-08 20:34:29 +0000469 DEFINE_GETIMPL_STORE(DISubroutineType, (Flags, CC), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000470}
471
Reid Kleckner3796a452017-09-19 18:14:45 +0000472// FIXME: Implement this string-enum correspondence with a .def file and macros,
473// so that the association is explicit rather than implied.
Scott Linder48632522018-02-12 19:45:54 +0000474static const char *ChecksumKindName[DIFile::CSK_Last] = {
Amjad Aboud4e2e80b2016-12-25 10:12:09 +0000475 "CSK_MD5",
476 "CSK_SHA1"
477};
478
Scott Linder48632522018-02-12 19:45:54 +0000479StringRef DIFile::getChecksumKindAsString(ChecksumKind CSKind) {
480 assert(CSKind <= DIFile::CSK_Last && "Invalid checksum kind");
481 // The first space was originally the CSK_None variant, which is now
482 // obsolete, but the space is still reserved in ChecksumKind, so we account
483 // for it here.
484 return ChecksumKindName[CSKind - 1];
Amjad Aboud4e2e80b2016-12-25 10:12:09 +0000485}
486
Scott Linder48632522018-02-12 19:45:54 +0000487Optional<DIFile::ChecksumKind> DIFile::getChecksumKind(StringRef CSKindStr) {
488 return StringSwitch<Optional<DIFile::ChecksumKind>>(CSKindStr)
489 .Case("CSK_MD5", DIFile::CSK_MD5)
490 .Case("CSK_SHA1", DIFile::CSK_SHA1)
491 .Default(None);
Amjad Aboud4e2e80b2016-12-25 10:12:09 +0000492}
493
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000494DIFile *DIFile::getImpl(LLVMContext &Context, MDString *Filename,
Scott Linder48632522018-02-12 19:45:54 +0000495 MDString *Directory,
496 Optional<DIFile::ChecksumInfo<MDString *>> CS,
Scott Linder5e4b5152018-02-23 23:01:06 +0000497 Optional<MDString *> Source, StorageType Storage,
498 bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000499 assert(isCanonical(Filename) && "Expected canonical MDString");
500 assert(isCanonical(Directory) && "Expected canonical MDString");
Scott Linder48632522018-02-12 19:45:54 +0000501 assert((!CS || isCanonical(CS->Value)) && "Expected canonical MDString");
Scott Linder5e4b5152018-02-23 23:01:06 +0000502 assert((!Source || isCanonical(*Source)) && "Expected canonical MDString");
503 DEFINE_GETIMPL_LOOKUP(DIFile, (Filename, Directory, CS, Source));
504 Metadata *Ops[] = {Filename, Directory, CS ? CS->Value : nullptr,
505 Source.getValueOr(nullptr)};
506 DEFINE_GETIMPL_STORE(DIFile, (CS, Source), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000507}
508
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000509DICompileUnit *DICompileUnit::getImpl(
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000510 LLVMContext &Context, unsigned SourceLanguage, Metadata *File,
511 MDString *Producer, bool IsOptimized, MDString *Flags,
512 unsigned RuntimeVersion, MDString *SplitDebugFilename,
513 unsigned EmissionKind, Metadata *EnumTypes, Metadata *RetainedTypes,
Adrian Prantl4eeaa0d2016-04-15 15:57:41 +0000514 Metadata *GlobalVariables, Metadata *ImportedEntities, Metadata *Macros,
Dehao Chenfe462302017-02-01 22:45:09 +0000515 uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling,
David Blaikieecc582a2018-11-13 20:08:10 +0000516 unsigned NameTableKind, bool RangesBaseAddress, StorageType Storage,
517 bool ShouldCreate) {
Duncan P. N. Exon Smithc61bc482015-08-03 17:26:41 +0000518 assert(Storage != Uniqued && "Cannot unique DICompileUnit");
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000519 assert(isCanonical(Producer) && "Expected canonical MDString");
520 assert(isCanonical(Flags) && "Expected canonical MDString");
521 assert(isCanonical(SplitDebugFilename) && "Expected canonical MDString");
Duncan P. N. Exon Smithc61bc482015-08-03 17:26:41 +0000522
Adrian Prantl4eeaa0d2016-04-15 15:57:41 +0000523 Metadata *Ops[] = {
524 File, Producer, Flags, SplitDebugFilename,
525 EnumTypes, RetainedTypes, GlobalVariables, ImportedEntities,
526 Macros};
Peter Collingbourne76221cb2017-09-12 21:50:41 +0000527 return storeImpl(new (array_lengthof(Ops)) DICompileUnit(
528 Context, Storage, SourceLanguage, IsOptimized,
529 RuntimeVersion, EmissionKind, DWOId, SplitDebugInlining,
David Blaikieecc582a2018-11-13 20:08:10 +0000530 DebugInfoForProfiling, NameTableKind, RangesBaseAddress,
531 Ops),
Duncan P. N. Exon Smithc61bc482015-08-03 17:26:41 +0000532 Storage);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000533}
534
Adrian Prantl39bb84a2016-03-31 23:56:58 +0000535Optional<DICompileUnit::DebugEmissionKind>
536DICompileUnit::getEmissionKind(StringRef Str) {
537 return StringSwitch<Optional<DebugEmissionKind>>(Str)
538 .Case("NoDebug", NoDebug)
539 .Case("FullDebug", FullDebug)
540 .Case("LineTablesOnly", LineTablesOnly)
Alexey Bataev83de8212018-08-01 19:38:20 +0000541 .Case("DebugDirectivesOnly", DebugDirectivesOnly)
Adrian Prantl39bb84a2016-03-31 23:56:58 +0000542 .Default(None);
543}
544
David Blaikiecf8a4a52018-08-16 21:29:55 +0000545Optional<DICompileUnit::DebugNameTableKind>
546DICompileUnit::getNameTableKind(StringRef Str) {
547 return StringSwitch<Optional<DebugNameTableKind>>(Str)
548 .Case("Default", DebugNameTableKind::Default)
549 .Case("GNU", DebugNameTableKind::GNU)
550 .Case("None", DebugNameTableKind::None)
551 .Default(None);
552}
553
Fangrui Songcfc86d42018-07-06 19:26:00 +0000554const char *DICompileUnit::emissionKindString(DebugEmissionKind EK) {
Adrian Prantl39bb84a2016-03-31 23:56:58 +0000555 switch (EK) {
556 case NoDebug: return "NoDebug";
557 case FullDebug: return "FullDebug";
558 case LineTablesOnly: return "LineTablesOnly";
Alexey Bataevd18e2f22018-08-23 17:43:40 +0000559 case DebugDirectivesOnly: return "DebugDirectivesOnly";
Adrian Prantl39bb84a2016-03-31 23:56:58 +0000560 }
561 return nullptr;
562}
563
David Blaikiecf8a4a52018-08-16 21:29:55 +0000564const char *DICompileUnit::nameTableKindString(DebugNameTableKind NTK) {
565 switch (NTK) {
566 case DebugNameTableKind::Default:
567 return nullptr;
568 case DebugNameTableKind::GNU:
569 return "GNU";
570 case DebugNameTableKind::None:
571 return "None";
572 }
573 return nullptr;
574}
575
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000576DISubprogram *DILocalScope::getSubprogram() const {
577 if (auto *Block = dyn_cast<DILexicalBlockBase>(this))
Duncan P. N. Exon Smith494ae8d2015-03-30 21:32:28 +0000578 return Block->getScope()->getSubprogram();
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000579 return const_cast<DISubprogram *>(cast<DISubprogram>(this));
Duncan P. N. Exon Smith494ae8d2015-03-30 21:32:28 +0000580}
581
Amjad Aboud12686212016-04-21 16:58:49 +0000582DILocalScope *DILocalScope::getNonLexicalBlockFileScope() const {
583 if (auto *File = dyn_cast<DILexicalBlockFile>(this))
584 return File->getScope()->getNonLexicalBlockFileScope();
585 return const_cast<DILocalScope *>(this);
586}
587
Paul Robinsonccefd882018-11-28 21:14:32 +0000588DISubprogram::DISPFlags DISubprogram::getFlag(StringRef Flag) {
589 return StringSwitch<DISPFlags>(Flag)
590#define HANDLE_DISP_FLAG(ID, NAME) .Case("DISPFlag" #NAME, SPFlag##NAME)
591#include "llvm/IR/DebugInfoFlags.def"
592 .Default(SPFlagZero);
593}
594
595StringRef DISubprogram::getFlagString(DISPFlags Flag) {
596 switch (Flag) {
Paul Robinson74929cb2018-11-29 21:13:51 +0000597 // Appease a warning.
598 case SPFlagVirtuality:
Paul Robinsonccefd882018-11-28 21:14:32 +0000599 return "";
600#define HANDLE_DISP_FLAG(ID, NAME) \
601 case SPFlag##NAME: \
602 return "DISPFlag" #NAME;
603#include "llvm/IR/DebugInfoFlags.def"
604 }
605 return "";
606}
607
608DISubprogram::DISPFlags
609DISubprogram::splitFlags(DISPFlags Flags,
610 SmallVectorImpl<DISPFlags> &SplitFlags) {
611 // Multi-bit fields can require special handling. In our case, however, the
612 // only multi-bit field is virtuality, and all its values happen to be
613 // single-bit values, so the right behavior just falls out.
614#define HANDLE_DISP_FLAG(ID, NAME) \
615 if (DISPFlags Bit = Flags & SPFlag##NAME) { \
616 SplitFlags.push_back(Bit); \
617 Flags &= ~Bit; \
618 }
619#include "llvm/IR/DebugInfoFlags.def"
620 return Flags;
621}
622
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000623DISubprogram *DISubprogram::getImpl(
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000624 LLVMContext &Context, Metadata *Scope, MDString *Name,
625 MDString *LinkageName, Metadata *File, unsigned Line, Metadata *Type,
Paul Robinsoneaa73532018-11-19 18:29:28 +0000626 unsigned ScopeLine, Metadata *ContainingType, unsigned VirtualIndex,
627 int ThisAdjustment, DIFlags Flags, DISPFlags SPFlags, Metadata *Unit,
Shiva Chena8a13bc2018-05-09 02:40:45 +0000628 Metadata *TemplateParams, Metadata *Declaration, Metadata *RetainedNodes,
Adrian Prantl1bf62972017-04-26 22:56:44 +0000629 Metadata *ThrownTypes, StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000630 assert(isCanonical(Name) && "Expected canonical MDString");
631 assert(isCanonical(LinkageName) && "Expected canonical MDString");
Paul Robinsoneaa73532018-11-19 18:29:28 +0000632 DEFINE_GETIMPL_LOOKUP(DISubprogram,
633 (Scope, Name, LinkageName, File, Line, Type, ScopeLine,
634 ContainingType, VirtualIndex, ThisAdjustment, Flags,
635 SPFlags, Unit, TemplateParams, Declaration,
636 RetainedNodes, ThrownTypes));
Adrian Prantl9d291ed2017-04-26 23:59:52 +0000637 SmallVector<Metadata *, 11> Ops = {
Shiva Chena8a13bc2018-05-09 02:40:45 +0000638 File, Scope, Name, LinkageName, Type, Unit,
639 Declaration, RetainedNodes, ContainingType, TemplateParams, ThrownTypes};
Adrian Prantl9d291ed2017-04-26 23:59:52 +0000640 if (!ThrownTypes) {
641 Ops.pop_back();
642 if (!TemplateParams) {
643 Ops.pop_back();
644 if (!ContainingType)
645 Ops.pop_back();
646 }
647 }
Paul Robinsoneaa73532018-11-19 18:29:28 +0000648 DEFINE_GETIMPL_STORE_N(
649 DISubprogram,
650 (Line, ScopeLine, VirtualIndex, ThisAdjustment, Flags, SPFlags), Ops,
651 Ops.size());
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000652}
653
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000654bool DISubprogram::describes(const Function *F) const {
Duncan P. N. Exon Smith8ca57e62015-04-13 19:07:27 +0000655 assert(F && "Invalid function");
Peter Collingbourne5f220be2015-11-05 22:03:56 +0000656 if (F->getSubprogram() == this)
Duncan P. N. Exon Smith8ca57e62015-04-13 19:07:27 +0000657 return true;
658 StringRef Name = getLinkageName();
659 if (Name.empty())
660 Name = getName();
661 return F->getName() == Name;
662}
663
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000664DILexicalBlock *DILexicalBlock::getImpl(LLVMContext &Context, Metadata *Scope,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000665 Metadata *File, unsigned Line,
666 unsigned Column, StorageType Storage,
667 bool ShouldCreate) {
Duncan P. N. Exon Smith091adc72015-08-28 22:58:50 +0000668 // Fixup column.
669 adjustColumn(Column);
670
Duncan P. N. Exon Smithd3ec0ca2015-03-30 16:37:48 +0000671 assert(Scope && "Expected scope");
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000672 DEFINE_GETIMPL_LOOKUP(DILexicalBlock, (Scope, File, Line, Column));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000673 Metadata *Ops[] = {File, Scope};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000674 DEFINE_GETIMPL_STORE(DILexicalBlock, (Line, Column), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000675}
676
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000677DILexicalBlockFile *DILexicalBlockFile::getImpl(LLVMContext &Context,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000678 Metadata *Scope, Metadata *File,
679 unsigned Discriminator,
680 StorageType Storage,
681 bool ShouldCreate) {
Duncan P. N. Exon Smithd3ec0ca2015-03-30 16:37:48 +0000682 assert(Scope && "Expected scope");
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000683 DEFINE_GETIMPL_LOOKUP(DILexicalBlockFile, (Scope, File, Discriminator));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000684 Metadata *Ops[] = {File, Scope};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000685 DEFINE_GETIMPL_STORE(DILexicalBlockFile, (Discriminator), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000686}
687
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000688DINamespace *DINamespace::getImpl(LLVMContext &Context, Metadata *Scope,
Adrian Prantl841400b2017-04-28 22:25:46 +0000689 MDString *Name, bool ExportSymbols,
690 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000691 assert(isCanonical(Name) && "Expected canonical MDString");
Adrian Prantl841400b2017-04-28 22:25:46 +0000692 DEFINE_GETIMPL_LOOKUP(DINamespace, (Scope, Name, ExportSymbols));
693 // The nullptr is for DIScope's File operand. This should be refactored.
694 Metadata *Ops[] = {nullptr, Scope, Name};
695 DEFINE_GETIMPL_STORE(DINamespace, (ExportSymbols), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000696}
697
Adrian Prantl71776472015-06-29 23:03:47 +0000698DIModule *DIModule::getImpl(LLVMContext &Context, Metadata *Scope,
699 MDString *Name, MDString *ConfigurationMacros,
700 MDString *IncludePath, MDString *ISysRoot,
701 StorageType Storage, bool ShouldCreate) {
702 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000703 DEFINE_GETIMPL_LOOKUP(
704 DIModule, (Scope, Name, ConfigurationMacros, IncludePath, ISysRoot));
Adrian Prantl71776472015-06-29 23:03:47 +0000705 Metadata *Ops[] = {Scope, Name, ConfigurationMacros, IncludePath, ISysRoot};
706 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DIModule, Ops);
707}
708
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000709DITemplateTypeParameter *DITemplateTypeParameter::getImpl(LLVMContext &Context,
Duncan P. N. Exon Smitheac950e2015-02-19 00:37:21 +0000710 MDString *Name,
711 Metadata *Type,
712 StorageType Storage,
713 bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000714 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000715 DEFINE_GETIMPL_LOOKUP(DITemplateTypeParameter, (Name, Type));
Duncan P. N. Exon Smitheac950e2015-02-19 00:37:21 +0000716 Metadata *Ops[] = {Name, Type};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000717 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DITemplateTypeParameter, Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000718}
719
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000720DITemplateValueParameter *DITemplateValueParameter::getImpl(
Duncan P. N. Exon Smitheac950e2015-02-19 00:37:21 +0000721 LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *Type,
722 Metadata *Value, StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000723 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +0000724 DEFINE_GETIMPL_LOOKUP(DITemplateValueParameter, (Tag, Name, Type, Value));
Duncan P. N. Exon Smitheac950e2015-02-19 00:37:21 +0000725 Metadata *Ops[] = {Name, Type, Value};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000726 DEFINE_GETIMPL_STORE(DITemplateValueParameter, (Tag), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000727}
728
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000729DIGlobalVariable *
730DIGlobalVariable::getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000731 MDString *LinkageName, Metadata *File, unsigned Line,
732 Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000733 Metadata *StaticDataMemberDeclaration,
Matthew Vossfff44e62018-10-03 18:44:53 +0000734 Metadata *TemplateParams, uint32_t AlignInBits,
735 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000736 assert(isCanonical(Name) && "Expected canonical MDString");
737 assert(isCanonical(LinkageName) && "Expected canonical MDString");
Matthew Vossfff44e62018-10-03 18:44:53 +0000738 DEFINE_GETIMPL_LOOKUP(DIGlobalVariable, (Scope, Name, LinkageName, File, Line,
739 Type, IsLocalToUnit, IsDefinition,
740 StaticDataMemberDeclaration,
741 TemplateParams, AlignInBits));
742 Metadata *Ops[] = {Scope,
743 Name,
744 File,
745 Type,
746 Name,
747 LinkageName,
748 StaticDataMemberDeclaration,
749 TemplateParams};
Victor Leschuke69c4592016-10-20 00:13:12 +0000750 DEFINE_GETIMPL_STORE(DIGlobalVariable,
Matthew Vossfff44e62018-10-03 18:44:53 +0000751 (Line, IsLocalToUnit, IsDefinition, AlignInBits), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000752}
753
Duncan P. N. Exon Smithbf2040f2015-07-31 18:58:39 +0000754DILocalVariable *DILocalVariable::getImpl(LLVMContext &Context, Metadata *Scope,
755 MDString *Name, Metadata *File,
756 unsigned Line, Metadata *Type,
Leny Kholodovd9478f82016-09-06 10:46:28 +0000757 unsigned Arg, DIFlags Flags,
Victor Leschuk7614f6d2016-10-26 21:32:29 +0000758 uint32_t AlignInBits,
Duncan P. N. Exon Smithbf2040f2015-07-31 18:58:39 +0000759 StorageType Storage,
Duncan P. N. Exon Smith88e419d2015-04-15 22:29:27 +0000760 bool ShouldCreate) {
Duncan P. N. Exon Smithfef48362015-04-28 01:07:33 +0000761 // 64K ought to be enough for any frontend.
762 assert(Arg <= UINT16_MAX && "Expected argument number to fit in 16-bits");
Duncan P. N. Exon Smitha342d822015-02-13 01:39:44 +0000763
Duncan P. N. Exon Smith2cee1c92015-03-27 17:56:39 +0000764 assert(Scope && "Expected scope");
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000765 assert(isCanonical(Name) && "Expected canonical MDString");
Duncan P. N. Exon Smithbf2040f2015-07-31 18:58:39 +0000766 DEFINE_GETIMPL_LOOKUP(DILocalVariable,
Victor Leschuke69c4592016-10-20 00:13:12 +0000767 (Scope, Name, File, Line, Type, Arg, Flags,
768 AlignInBits));
Duncan P. N. Exon Smith88e419d2015-04-15 22:29:27 +0000769 Metadata *Ops[] = {Scope, Name, File, Type};
Victor Leschuke69c4592016-10-20 00:13:12 +0000770 DEFINE_GETIMPL_STORE(DILocalVariable, (Line, Arg, Flags, AlignInBits), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000771}
772
Adrian Prantle707c0c2017-11-28 00:57:51 +0000773Optional<uint64_t> DIVariable::getSizeInBits() const {
774 // This is used by the Verifier so be mindful of broken types.
775 const Metadata *RawType = getRawType();
776 while (RawType) {
777 // Try to get the size directly.
778 if (auto *T = dyn_cast<DIType>(RawType))
779 if (uint64_t Size = T->getSizeInBits())
780 return Size;
781
782 if (auto *DT = dyn_cast<DIDerivedType>(RawType)) {
783 // Look at the base type.
784 RawType = DT->getRawBaseType();
785 continue;
786 }
787
788 // Missing type or size.
789 break;
790 }
791
792 // Fail gracefully.
793 return None;
794}
795
Shiva Chena8a13bc2018-05-09 02:40:45 +0000796DILabel *DILabel::getImpl(LLVMContext &Context, Metadata *Scope,
797 MDString *Name, Metadata *File, unsigned Line,
798 StorageType Storage,
799 bool ShouldCreate) {
800 assert(Scope && "Expected scope");
801 assert(isCanonical(Name) && "Expected canonical MDString");
802 DEFINE_GETIMPL_LOOKUP(DILabel,
803 (Scope, Name, File, Line));
804 Metadata *Ops[] = {Scope, Name, File};
805 DEFINE_GETIMPL_STORE(DILabel, (Line), Ops);
806}
807
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000808DIExpression *DIExpression::getImpl(LLVMContext &Context,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000809 ArrayRef<uint64_t> Elements,
810 StorageType Storage, bool ShouldCreate) {
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000811 DEFINE_GETIMPL_LOOKUP(DIExpression, (Elements));
812 DEFINE_GETIMPL_STORE_NO_OPS(DIExpression, (Elements));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +0000813}
814
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000815unsigned DIExpression::ExprOperand::getSize() const {
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000816 switch (getOp()) {
Adrian Prantl460dd602016-12-05 18:04:47 +0000817 case dwarf::DW_OP_LLVM_fragment:
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000818 return 3;
Peter Collingbourne5420de32016-09-13 01:12:59 +0000819 case dwarf::DW_OP_constu:
Florian Hahn10ccfa62017-06-13 16:54:44 +0000820 case dwarf::DW_OP_plus_uconst:
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000821 return 2;
822 default:
823 return 1;
824 }
825}
826
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +0000827bool DIExpression::isValid() const {
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000828 for (auto I = expr_op_begin(), E = expr_op_end(); I != E; ++I) {
829 // Check that there's space for the operand.
830 if (I->get() + I->getSize() > E->get())
831 return false;
832
833 // Check that the operand is valid.
834 switch (I->getOp()) {
835 default:
836 return false;
Adrian Prantl460dd602016-12-05 18:04:47 +0000837 case dwarf::DW_OP_LLVM_fragment:
Adrian Prantl7b500b42016-12-20 02:09:43 +0000838 // A fragment operator must appear at the end.
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000839 return I->get() + I->getSize() == E->get();
Adrian Prantl7b500b42016-12-20 02:09:43 +0000840 case dwarf::DW_OP_stack_value: {
841 // Must be the last one or followed by a DW_OP_LLVM_fragment.
842 if (I->get() + I->getSize() == E->get())
843 break;
844 auto J = I;
845 if ((++J)->getOp() != dwarf::DW_OP_LLVM_fragment)
846 return false;
847 break;
848 }
Konstantin Zhuravlyovdf032da2017-03-08 00:28:57 +0000849 case dwarf::DW_OP_swap: {
850 // Must be more than one implicit element on the stack.
851
852 // FIXME: A better way to implement this would be to add a local variable
853 // that keeps track of the stack depth and introduce something like a
854 // DW_LLVM_OP_implicit_location as a placeholder for the location this
855 // DIExpression is attached to, or else pass the number of implicit stack
856 // elements into isValid.
857 if (getNumElements() == 1)
858 return false;
859 break;
860 }
Peter Collingbourne5420de32016-09-13 01:12:59 +0000861 case dwarf::DW_OP_constu:
Florian Hahn10ccfa62017-06-13 16:54:44 +0000862 case dwarf::DW_OP_plus_uconst:
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000863 case dwarf::DW_OP_plus:
Evgeniy Stepanov1eca6972015-09-30 19:55:43 +0000864 case dwarf::DW_OP_minus:
Strahinja Petrovice6b7c562017-09-21 10:04:02 +0000865 case dwarf::DW_OP_mul:
Vedant Kumar2bbd7342018-02-13 01:09:52 +0000866 case dwarf::DW_OP_div:
867 case dwarf::DW_OP_mod:
Vedant Kumarafa0bdd2018-02-09 19:19:55 +0000868 case dwarf::DW_OP_or:
Petar Jovanovic4ef378e2018-02-14 13:10:35 +0000869 case dwarf::DW_OP_and:
Vedant Kumar1ca28942018-02-13 01:09:46 +0000870 case dwarf::DW_OP_xor:
Vedant Kumarca78c752018-02-13 01:09:49 +0000871 case dwarf::DW_OP_shl:
872 case dwarf::DW_OP_shr:
873 case dwarf::DW_OP_shra:
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000874 case dwarf::DW_OP_deref:
Konstantin Zhuravlyovdf032da2017-03-08 00:28:57 +0000875 case dwarf::DW_OP_xderef:
Vedant Kumar0f83e1f2018-07-06 17:32:39 +0000876 case dwarf::DW_OP_lit0:
877 case dwarf::DW_OP_not:
878 case dwarf::DW_OP_dup:
Duncan P. N. Exon Smith74734852015-02-13 01:07:46 +0000879 break;
880 }
881 }
882 return true;
883}
884
Adrian Prantlf53a7ab2016-12-22 05:27:12 +0000885Optional<DIExpression::FragmentInfo>
886DIExpression::getFragmentInfo(expr_op_iterator Start, expr_op_iterator End) {
887 for (auto I = Start; I != End; ++I)
888 if (I->getOp() == dwarf::DW_OP_LLVM_fragment) {
889 DIExpression::FragmentInfo Info = {I->getArg(1), I->getArg(0)};
890 return Info;
891 }
892 return None;
Duncan P. N. Exon Smithc6ac80b2015-04-07 03:49:59 +0000893}
894
Andrew Ng9d0dc962017-04-28 08:44:30 +0000895void DIExpression::appendOffset(SmallVectorImpl<uint64_t> &Ops,
896 int64_t Offset) {
897 if (Offset > 0) {
Florian Hahn50963b32017-06-14 13:14:38 +0000898 Ops.push_back(dwarf::DW_OP_plus_uconst);
Andrew Ng9d0dc962017-04-28 08:44:30 +0000899 Ops.push_back(Offset);
900 } else if (Offset < 0) {
Florian Hahn50963b32017-06-14 13:14:38 +0000901 Ops.push_back(dwarf::DW_OP_constu);
Andrew Ng9d0dc962017-04-28 08:44:30 +0000902 Ops.push_back(-Offset);
Florian Hahn50963b32017-06-14 13:14:38 +0000903 Ops.push_back(dwarf::DW_OP_minus);
Andrew Ng9d0dc962017-04-28 08:44:30 +0000904 }
905}
906
Reid Klecknere32aebf2017-05-09 19:59:29 +0000907bool DIExpression::extractIfOffset(int64_t &Offset) const {
908 if (getNumElements() == 0) {
909 Offset = 0;
910 return true;
911 }
Florian Hahn50963b32017-06-14 13:14:38 +0000912
913 if (getNumElements() == 2 && Elements[0] == dwarf::DW_OP_plus_uconst) {
Reid Klecknere32aebf2017-05-09 19:59:29 +0000914 Offset = Elements[1];
915 return true;
916 }
Florian Hahn50963b32017-06-14 13:14:38 +0000917
918 if (getNumElements() == 3 && Elements[0] == dwarf::DW_OP_constu) {
919 if (Elements[2] == dwarf::DW_OP_plus) {
920 Offset = Elements[1];
921 return true;
922 }
923 if (Elements[2] == dwarf::DW_OP_minus) {
924 Offset = -Elements[1];
925 return true;
926 }
Reid Klecknere32aebf2017-05-09 19:59:29 +0000927 }
Florian Hahn50963b32017-06-14 13:14:38 +0000928
Reid Klecknere32aebf2017-05-09 19:59:29 +0000929 return false;
930}
931
Adrian Prantl0375b232017-12-08 21:58:18 +0000932DIExpression *DIExpression::prepend(const DIExpression *Expr, bool DerefBefore,
933 int64_t Offset, bool DerefAfter,
934 bool StackValue) {
Andrew Ng9d0dc962017-04-28 08:44:30 +0000935 SmallVector<uint64_t, 8> Ops;
Adrian Prantl0375b232017-12-08 21:58:18 +0000936 if (DerefBefore)
Andrew Ng9d0dc962017-04-28 08:44:30 +0000937 Ops.push_back(dwarf::DW_OP_deref);
Bjorn Petterssona1ff84e2018-07-03 12:39:52 +0000938
Adrian Prantl0375b232017-12-08 21:58:18 +0000939 appendOffset(Ops, Offset);
940 if (DerefAfter)
941 Ops.push_back(dwarf::DW_OP_deref);
942
Adrian Prantl73de5c12018-04-27 21:41:36 +0000943 return prependOpcodes(Expr, Ops, StackValue);
Vedant Kumarafa0bdd2018-02-09 19:19:55 +0000944}
945
Adrian Prantl73de5c12018-04-27 21:41:36 +0000946DIExpression *DIExpression::prependOpcodes(const DIExpression *Expr,
947 SmallVectorImpl<uint64_t> &Ops,
948 bool StackValue) {
Vedant Kumar21926ea2018-07-06 21:06:20 +0000949 assert(Expr && "Can't prepend ops to this expression");
950
Bjorn Pettersson13e9d312018-07-03 11:29:00 +0000951 // If there are no ops to prepend, do not even add the DW_OP_stack_value.
952 if (Ops.empty())
953 StackValue = false;
Vedant Kumar21926ea2018-07-06 21:06:20 +0000954 for (auto Op : Expr->expr_ops()) {
955 // A DW_OP_stack_value comes at the end, but before a DW_OP_LLVM_fragment.
956 if (StackValue) {
957 if (Op.getOp() == dwarf::DW_OP_stack_value)
958 StackValue = false;
959 else if (Op.getOp() == dwarf::DW_OP_LLVM_fragment) {
960 Ops.push_back(dwarf::DW_OP_stack_value);
961 StackValue = false;
Andrew Ng9d0dc962017-04-28 08:44:30 +0000962 }
Andrew Ng9d0dc962017-04-28 08:44:30 +0000963 }
Vedant Kumarca9c12e2018-07-06 21:06:21 +0000964 Op.appendToVector(Ops);
Vedant Kumar21926ea2018-07-06 21:06:20 +0000965 }
Andrew Ng9d0dc962017-04-28 08:44:30 +0000966 if (StackValue)
967 Ops.push_back(dwarf::DW_OP_stack_value);
Adrian Prantl2a5bddd2017-04-28 17:51:05 +0000968 return DIExpression::get(Expr->getContext(), Ops);
Andrew Ng9d0dc962017-04-28 08:44:30 +0000969}
970
Vedant Kumar081d2112018-07-26 20:56:53 +0000971DIExpression *DIExpression::append(const DIExpression *Expr,
972 ArrayRef<uint64_t> Ops) {
973 assert(Expr && !Ops.empty() && "Can't append ops to this expression");
974
975 // Copy Expr's current op list.
976 SmallVector<uint64_t, 16> NewOps;
977 for (auto Op : Expr->expr_ops()) {
978 // Append new opcodes before DW_OP_{stack_value, LLVM_fragment}.
979 if (Op.getOp() == dwarf::DW_OP_stack_value ||
980 Op.getOp() == dwarf::DW_OP_LLVM_fragment) {
981 NewOps.append(Ops.begin(), Ops.end());
982
983 // Ensure that the new opcodes are only appended once.
984 Ops = None;
985 }
986 Op.appendToVector(NewOps);
987 }
988
989 NewOps.append(Ops.begin(), Ops.end());
990 return DIExpression::get(Expr->getContext(), NewOps);
991}
992
Vedant Kumar0f83e1f2018-07-06 17:32:39 +0000993DIExpression *DIExpression::appendToStack(const DIExpression *Expr,
994 ArrayRef<uint64_t> Ops) {
995 assert(Expr && !Ops.empty() && "Can't append ops to this expression");
Vedant Kumar081d2112018-07-26 20:56:53 +0000996 assert(none_of(Ops,
997 [](uint64_t Op) {
998 return Op == dwarf::DW_OP_stack_value ||
999 Op == dwarf::DW_OP_LLVM_fragment;
1000 }) &&
1001 "Can't append this op");
Vedant Kumar0f83e1f2018-07-06 17:32:39 +00001002
1003 // Append a DW_OP_deref after Expr's current op list if it's non-empty and
1004 // has no DW_OP_stack_value.
1005 //
1006 // Match .* DW_OP_stack_value (DW_OP_LLVM_fragment A B)?.
1007 Optional<FragmentInfo> FI = Expr->getFragmentInfo();
1008 unsigned DropUntilStackValue = FI.hasValue() ? 3 : 0;
Vedant Kumar081d2112018-07-26 20:56:53 +00001009 ArrayRef<uint64_t> ExprOpsBeforeFragment =
1010 Expr->getElements().drop_back(DropUntilStackValue);
1011 bool NeedsDeref = (Expr->getNumElements() > DropUntilStackValue) &&
1012 (ExprOpsBeforeFragment.back() != dwarf::DW_OP_stack_value);
1013 bool NeedsStackValue = NeedsDeref || ExprOpsBeforeFragment.empty();
Vedant Kumar0f83e1f2018-07-06 17:32:39 +00001014
Vedant Kumar081d2112018-07-26 20:56:53 +00001015 // Append a DW_OP_deref after Expr's current op list if needed, then append
1016 // the new ops, and finally ensure that a single DW_OP_stack_value is present.
Vedant Kumar0f83e1f2018-07-06 17:32:39 +00001017 SmallVector<uint64_t, 16> NewOps;
Vedant Kumar0f83e1f2018-07-06 17:32:39 +00001018 if (NeedsDeref)
1019 NewOps.push_back(dwarf::DW_OP_deref);
1020 NewOps.append(Ops.begin(), Ops.end());
Vedant Kumar081d2112018-07-26 20:56:53 +00001021 if (NeedsStackValue)
1022 NewOps.push_back(dwarf::DW_OP_stack_value);
1023 return DIExpression::append(Expr, NewOps);
Vedant Kumar0f83e1f2018-07-06 17:32:39 +00001024}
1025
Adrian Prantl0227fe52017-11-07 00:45:34 +00001026Optional<DIExpression *> DIExpression::createFragmentExpression(
1027 const DIExpression *Expr, unsigned OffsetInBits, unsigned SizeInBits) {
Adrian Prantl5c6206f2017-08-30 20:04:17 +00001028 SmallVector<uint64_t, 8> Ops;
1029 // Copy over the expression, but leave off any trailing DW_OP_LLVM_fragment.
1030 if (Expr) {
1031 for (auto Op : Expr->expr_ops()) {
Adrian Prantl0227fe52017-11-07 00:45:34 +00001032 switch (Op.getOp()) {
1033 default: break;
1034 case dwarf::DW_OP_plus:
1035 case dwarf::DW_OP_minus:
1036 // We can't safely split arithmetic into multiple fragments because we
1037 // can't express carry-over between fragments.
1038 //
1039 // FIXME: We *could* preserve the lowest fragment of a constant offset
1040 // operation if the offset fits into SizeInBits.
1041 return None;
1042 case dwarf::DW_OP_LLVM_fragment: {
Adrian Prantl5c6206f2017-08-30 20:04:17 +00001043 // Make the new offset point into the existing fragment.
1044 uint64_t FragmentOffsetInBits = Op.getArg(0);
Bjorn Petterssonad2b36f2018-05-03 17:04:21 +00001045 uint64_t FragmentSizeInBits = Op.getArg(1);
1046 (void)FragmentSizeInBits;
1047 assert((OffsetInBits + SizeInBits <= FragmentSizeInBits) &&
Adrian Prantl5c6206f2017-08-30 20:04:17 +00001048 "new fragment outside of original fragment");
1049 OffsetInBits += FragmentOffsetInBits;
Adrian Prantl0227fe52017-11-07 00:45:34 +00001050 continue;
1051 }
Adrian Prantl5c6206f2017-08-30 20:04:17 +00001052 }
Vedant Kumarca9c12e2018-07-06 21:06:21 +00001053 Op.appendToVector(Ops);
Adrian Prantl5c6206f2017-08-30 20:04:17 +00001054 }
1055 }
1056 Ops.push_back(dwarf::DW_OP_LLVM_fragment);
1057 Ops.push_back(OffsetInBits);
1058 Ops.push_back(SizeInBits);
1059 return DIExpression::get(Expr->getContext(), Ops);
1060}
1061
Adrian Prantl7b500b42016-12-20 02:09:43 +00001062bool DIExpression::isConstant() const {
1063 // Recognize DW_OP_constu C DW_OP_stack_value (DW_OP_LLVM_fragment Len Ofs)?.
1064 if (getNumElements() != 3 && getNumElements() != 6)
1065 return false;
1066 if (getElement(0) != dwarf::DW_OP_constu ||
1067 getElement(2) != dwarf::DW_OP_stack_value)
1068 return false;
1069 if (getNumElements() == 6 && getElement(3) != dwarf::DW_OP_LLVM_fragment)
1070 return false;
1071 return true;
1072}
1073
1074DIGlobalVariableExpression *
1075DIGlobalVariableExpression::getImpl(LLVMContext &Context, Metadata *Variable,
1076 Metadata *Expression, StorageType Storage,
1077 bool ShouldCreate) {
1078 DEFINE_GETIMPL_LOOKUP(DIGlobalVariableExpression, (Variable, Expression));
1079 Metadata *Ops[] = {Variable, Expression};
1080 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DIGlobalVariableExpression, Ops);
1081}
1082
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +00001083DIObjCProperty *DIObjCProperty::getImpl(
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001084 LLVMContext &Context, MDString *Name, Metadata *File, unsigned Line,
1085 MDString *GetterName, MDString *SetterName, unsigned Attributes,
1086 Metadata *Type, StorageType Storage, bool ShouldCreate) {
1087 assert(isCanonical(Name) && "Expected canonical MDString");
1088 assert(isCanonical(GetterName) && "Expected canonical MDString");
1089 assert(isCanonical(SetterName) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +00001090 DEFINE_GETIMPL_LOOKUP(DIObjCProperty, (Name, File, Line, GetterName,
1091 SetterName, Attributes, Type));
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001092 Metadata *Ops[] = {Name, File, GetterName, SetterName, Type};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +00001093 DEFINE_GETIMPL_STORE(DIObjCProperty, (Line, Attributes), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001094}
1095
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +00001096DIImportedEntity *DIImportedEntity::getImpl(LLVMContext &Context, unsigned Tag,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001097 Metadata *Scope, Metadata *Entity,
Adrian Prantl9563b5a2017-07-19 00:09:54 +00001098 Metadata *File, unsigned Line,
1099 MDString *Name, StorageType Storage,
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001100 bool ShouldCreate) {
1101 assert(isCanonical(Name) && "Expected canonical MDString");
Adrian Prantl9563b5a2017-07-19 00:09:54 +00001102 DEFINE_GETIMPL_LOOKUP(DIImportedEntity,
1103 (Tag, Scope, Entity, File, Line, Name));
1104 Metadata *Ops[] = {Scope, Entity, Name, File};
Duncan P. N. Exon Smithe56023a2015-04-29 16:38:44 +00001105 DEFINE_GETIMPL_STORE(DIImportedEntity, (Tag, Line), Ops);
Duncan P. N. Exon Smith14fcfef2015-02-10 00:52:32 +00001106}
Amjad Aboud7db39802015-12-10 12:56:35 +00001107
1108DIMacro *DIMacro::getImpl(LLVMContext &Context, unsigned MIType,
1109 unsigned Line, MDString *Name, MDString *Value,
1110 StorageType Storage, bool ShouldCreate) {
1111 assert(isCanonical(Name) && "Expected canonical MDString");
Mehdi Aminibef5d7a2016-03-19 01:02:34 +00001112 DEFINE_GETIMPL_LOOKUP(DIMacro, (MIType, Line, Name, Value));
Amjad Aboud7db39802015-12-10 12:56:35 +00001113 Metadata *Ops[] = { Name, Value };
1114 DEFINE_GETIMPL_STORE(DIMacro, (MIType, Line), Ops);
1115}
1116
1117DIMacroFile *DIMacroFile::getImpl(LLVMContext &Context, unsigned MIType,
1118 unsigned Line, Metadata *File,
1119 Metadata *Elements, StorageType Storage,
1120 bool ShouldCreate) {
1121 DEFINE_GETIMPL_LOOKUP(DIMacroFile,
1122 (MIType, Line, File, Elements));
1123 Metadata *Ops[] = { File, Elements };
1124 DEFINE_GETIMPL_STORE(DIMacroFile, (MIType, Line), Ops);
1125}