blob: 9013d28bb67d2d7b8134ce90fdf3f66ede2f6375 [file] [log] [blame]
Chris Lattner8cb2aeb2010-04-01 00:37:44 +00001//===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Support/DebugLoc.h"
Nick Lewyckyddc72892011-04-06 05:36:52 +000011#include "llvm/ADT/DenseMapInfo.h"
Chris Lattner8cb2aeb2010-04-01 00:37:44 +000012#include "LLVMContextImpl.h"
13using namespace llvm;
14
15//===----------------------------------------------------------------------===//
16// DebugLoc Implementation
17//===----------------------------------------------------------------------===//
18
Chris Lattner593916d2010-04-02 20:21:22 +000019MDNode *DebugLoc::getScope(const LLVMContext &Ctx) const {
Chris Lattner8cb2aeb2010-04-01 00:37:44 +000020 if (ScopeIdx == 0) return 0;
21
22 if (ScopeIdx > 0) {
23 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
24 // position specified.
25 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
26 "Invalid ScopeIdx!");
27 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
28 }
29
30 // Otherwise, the index is in the ScopeInlinedAtRecords array.
31 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
32 "Invalid ScopeIdx");
33 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
34}
35
Chris Lattner593916d2010-04-02 20:21:22 +000036MDNode *DebugLoc::getInlinedAt(const LLVMContext &Ctx) const {
Chris Lattner8cb2aeb2010-04-01 00:37:44 +000037 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
38 // position specified. Zero is invalid.
39 if (ScopeIdx >= 0) return 0;
40
41 // Otherwise, the index is in the ScopeInlinedAtRecords array.
42 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
43 "Invalid ScopeIdx");
44 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
45}
46
47/// Return both the Scope and the InlinedAt values.
Chris Lattner593916d2010-04-02 20:21:22 +000048void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
49 const LLVMContext &Ctx) const {
Chris Lattner8cb2aeb2010-04-01 00:37:44 +000050 if (ScopeIdx == 0) {
51 Scope = IA = 0;
52 return;
53 }
54
55 if (ScopeIdx > 0) {
56 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
57 // position specified.
58 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
59 "Invalid ScopeIdx!");
60 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
61 IA = 0;
62 return;
63 }
64
65 // Otherwise, the index is in the ScopeInlinedAtRecords array.
66 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
67 "Invalid ScopeIdx");
68 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
69 IA = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
70}
71
72
Chris Lattner593916d2010-04-02 20:21:22 +000073DebugLoc DebugLoc::get(unsigned Line, unsigned Col,
74 MDNode *Scope, MDNode *InlinedAt) {
75 DebugLoc Result;
Chris Lattner8cb2aeb2010-04-01 00:37:44 +000076
77 // If no scope is available, this is an unknown location.
78 if (Scope == 0) return Result;
79
80 // Saturate line and col to "unknown".
81 if (Col > 255) Col = 0;
82 if (Line >= (1 << 24)) Line = 0;
83 Result.LineCol = Line | (Col << 24);
84
85 LLVMContext &Ctx = Scope->getContext();
86
87 // If there is no inlined-at location, use the ScopeRecords array.
88 if (InlinedAt == 0)
89 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeRecordIdxEntry(Scope, 0);
90 else
91 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeInlinedAtIdxEntry(Scope,
92 InlinedAt, 0);
93
94 return Result;
95}
96
97/// getAsMDNode - This method converts the compressed DebugLoc node into a
98/// DILocation compatible MDNode.
Chris Lattner593916d2010-04-02 20:21:22 +000099MDNode *DebugLoc::getAsMDNode(const LLVMContext &Ctx) const {
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000100 if (isUnknown()) return 0;
101
102 MDNode *Scope, *IA;
103 getScopeAndInlinedAt(Scope, IA, Ctx);
104 assert(Scope && "If scope is null, this should be isUnknown()");
105
106 LLVMContext &Ctx2 = Scope->getContext();
Chris Lattner229907c2011-07-18 04:54:35 +0000107 Type *Int32 = Type::getInt32Ty(Ctx2);
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000108 Value *Elts[] = {
109 ConstantInt::get(Int32, getLine()), ConstantInt::get(Int32, getCol()),
110 Scope, IA
111 };
Jay Foad5514afe2011-04-21 19:59:31 +0000112 return MDNode::get(Ctx2, Elts);
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000113}
114
Chris Lattner593916d2010-04-02 20:21:22 +0000115/// getFromDILocation - Translate the DILocation quad into a DebugLoc.
116DebugLoc DebugLoc::getFromDILocation(MDNode *N) {
117 if (N == 0 || N->getNumOperands() != 4) return DebugLoc();
Chris Lattner56e4b4a2010-04-01 03:55:42 +0000118
119 MDNode *Scope = dyn_cast_or_null<MDNode>(N->getOperand(2));
Chris Lattner593916d2010-04-02 20:21:22 +0000120 if (Scope == 0) return DebugLoc();
Chris Lattner56e4b4a2010-04-01 03:55:42 +0000121
122 unsigned LineNo = 0, ColNo = 0;
123 if (ConstantInt *Line = dyn_cast_or_null<ConstantInt>(N->getOperand(0)))
124 LineNo = Line->getZExtValue();
125 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(1)))
126 ColNo = Col->getZExtValue();
127
128 return get(LineNo, ColNo, Scope, dyn_cast_or_null<MDNode>(N->getOperand(3)));
129}
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000130
Devang Patel07d61ed2011-07-14 01:14:57 +0000131/// getFromDILexicalBlock - Translate the DILexicalBlock into a DebugLoc.
132DebugLoc DebugLoc::getFromDILexicalBlock(MDNode *N) {
133 if (N == 0 || N->getNumOperands() < 3) return DebugLoc();
134
135 MDNode *Scope = dyn_cast_or_null<MDNode>(N->getOperand(1));
136 if (Scope == 0) return DebugLoc();
137
138 unsigned LineNo = 0, ColNo = 0;
139 if (ConstantInt *Line = dyn_cast_or_null<ConstantInt>(N->getOperand(2)))
140 LineNo = Line->getZExtValue();
141 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(3)))
142 ColNo = Col->getZExtValue();
143
144 return get(LineNo, ColNo, Scope, NULL);
145}
146
Devang Patel4db38442011-07-14 21:50:04 +0000147void DebugLoc::dump(const LLVMContext &Ctx) const {
148#ifndef NDEBUG
149 if (!isUnknown()) {
150 dbgs() << getLine();
151 if (getCol() != 0)
152 dbgs() << ',' << getCol();
153 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(getInlinedAt(Ctx));
154 if (!InlinedAtDL.isUnknown()) {
155 dbgs() << " @ ";
156 InlinedAtDL.dump(Ctx);
157 } else
158 dbgs() << "\n";
159 }
160#endif
161}
162
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000163//===----------------------------------------------------------------------===//
Nick Lewyckyddc72892011-04-06 05:36:52 +0000164// DenseMap specialization
165//===----------------------------------------------------------------------===//
166
167DebugLoc DenseMapInfo<DebugLoc>::getEmptyKey() {
Nick Lewyckyd4b3d292011-04-06 06:49:59 +0000168 return DebugLoc::getEmptyKey();
Nick Lewyckyddc72892011-04-06 05:36:52 +0000169}
170
171DebugLoc DenseMapInfo<DebugLoc>::getTombstoneKey() {
172 return DebugLoc::getTombstoneKey();
173}
174
175unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
Benjamin Kramer7a426b52012-04-11 14:06:39 +0000176 return static_cast<unsigned>(hash_combine(Key.LineCol, Key.ScopeIdx));
Nick Lewyckyddc72892011-04-06 05:36:52 +0000177}
178
179bool DenseMapInfo<DebugLoc>::isEqual(const DebugLoc &LHS, const DebugLoc &RHS) {
180 return LHS == RHS;
181}
182
183//===----------------------------------------------------------------------===//
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000184// LLVMContextImpl Implementation
185//===----------------------------------------------------------------------===//
186
187int LLVMContextImpl::getOrAddScopeRecordIdxEntry(MDNode *Scope,
188 int ExistingIdx) {
189 // If we already have an entry for this scope, return it.
190 int &Idx = ScopeRecordIdx[Scope];
191 if (Idx) return Idx;
192
193 // If we don't have an entry, but ExistingIdx is specified, use it.
194 if (ExistingIdx)
195 return Idx = ExistingIdx;
196
197 // Otherwise add a new entry.
198
199 // Start out ScopeRecords with a minimal reasonable size to avoid
200 // excessive reallocation starting out.
201 if (ScopeRecords.empty())
202 ScopeRecords.reserve(128);
203
204 // Index is biased by 1 for index.
205 Idx = ScopeRecords.size()+1;
206 ScopeRecords.push_back(DebugRecVH(Scope, this, Idx));
207 return Idx;
208}
209
210int LLVMContextImpl::getOrAddScopeInlinedAtIdxEntry(MDNode *Scope, MDNode *IA,
211 int ExistingIdx) {
212 // If we already have an entry, return it.
213 int &Idx = ScopeInlinedAtIdx[std::make_pair(Scope, IA)];
214 if (Idx) return Idx;
215
216 // If we don't have an entry, but ExistingIdx is specified, use it.
217 if (ExistingIdx)
218 return Idx = ExistingIdx;
219
220 // Start out ScopeInlinedAtRecords with a minimal reasonable size to avoid
221 // excessive reallocation starting out.
222 if (ScopeInlinedAtRecords.empty())
223 ScopeInlinedAtRecords.reserve(128);
224
225 // Index is biased by 1 and negated.
226 Idx = -ScopeInlinedAtRecords.size()-1;
227 ScopeInlinedAtRecords.push_back(std::make_pair(DebugRecVH(Scope, this, Idx),
228 DebugRecVH(IA, this, Idx)));
229 return Idx;
230}
231
232
233//===----------------------------------------------------------------------===//
234// DebugRecVH Implementation
235//===----------------------------------------------------------------------===//
236
237/// deleted - The MDNode this is pointing to got deleted, so this pointer needs
238/// to drop to null and we need remove our entry from the DenseMap.
239void DebugRecVH::deleted() {
Eric Christophercbce39c2011-10-11 22:58:58 +0000240 // If this is a non-canonical reference, just drop the value to null, we know
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000241 // it doesn't have a map entry.
242 if (Idx == 0) {
243 setValPtr(0);
244 return;
245 }
246
247 MDNode *Cur = get();
248
249 // If the index is positive, it is an entry in ScopeRecords.
250 if (Idx > 0) {
251 assert(Ctx->ScopeRecordIdx[Cur] == Idx && "Mapping out of date!");
252 Ctx->ScopeRecordIdx.erase(Cur);
253 // Reset this VH to null and we're done.
254 setValPtr(0);
255 Idx = 0;
256 return;
257 }
258
259 // Otherwise, it is an entry in ScopeInlinedAtRecords, we don't know if it
260 // is the scope or the inlined-at record entry.
261 assert(unsigned(-Idx-1) < Ctx->ScopeInlinedAtRecords.size());
262 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1];
263 assert((this == &Entry.first || this == &Entry.second) &&
264 "Mapping out of date!");
265
266 MDNode *OldScope = Entry.first.get();
267 MDNode *OldInlinedAt = Entry.second.get();
268 assert(OldScope != 0 && OldInlinedAt != 0 &&
269 "Entry should be non-canonical if either val dropped to null");
270
271 // Otherwise, we do have an entry in it, nuke it and we're done.
272 assert(Ctx->ScopeInlinedAtIdx[std::make_pair(OldScope, OldInlinedAt)] == Idx&&
273 "Mapping out of date");
274 Ctx->ScopeInlinedAtIdx.erase(std::make_pair(OldScope, OldInlinedAt));
275
Chris Lattnercf25a892010-04-01 05:12:07 +0000276 // Reset this VH to null. Drop both 'Idx' values to null to indicate that
277 // we're in non-canonical form now.
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000278 setValPtr(0);
Chris Lattnercf25a892010-04-01 05:12:07 +0000279 Entry.first.Idx = Entry.second.Idx = 0;
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000280}
281
282void DebugRecVH::allUsesReplacedWith(Value *NewVa) {
283 // If being replaced with a non-mdnode value (e.g. undef) handle this as if
284 // the mdnode got deleted.
285 MDNode *NewVal = dyn_cast<MDNode>(NewVa);
286 if (NewVal == 0) return deleted();
287
288 // If this is a non-canonical reference, just change it, we know it already
289 // doesn't have a map entry.
290 if (Idx == 0) {
291 setValPtr(NewVa);
292 return;
293 }
294
295 MDNode *OldVal = get();
296 assert(OldVal != NewVa && "Node replaced with self?");
297
298 // If the index is positive, it is an entry in ScopeRecords.
299 if (Idx > 0) {
300 assert(Ctx->ScopeRecordIdx[OldVal] == Idx && "Mapping out of date!");
301 Ctx->ScopeRecordIdx.erase(OldVal);
302 setValPtr(NewVal);
303
304 int NewEntry = Ctx->getOrAddScopeRecordIdxEntry(NewVal, Idx);
305
306 // If NewVal already has an entry, this becomes a non-canonical reference,
307 // just drop Idx to 0 to signify this.
308 if (NewEntry != Idx)
309 Idx = 0;
310 return;
311 }
312
313 // Otherwise, it is an entry in ScopeInlinedAtRecords, we don't know if it
314 // is the scope or the inlined-at record entry.
315 assert(unsigned(-Idx-1) < Ctx->ScopeInlinedAtRecords.size());
316 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1];
317 assert((this == &Entry.first || this == &Entry.second) &&
318 "Mapping out of date!");
319
320 MDNode *OldScope = Entry.first.get();
321 MDNode *OldInlinedAt = Entry.second.get();
322 assert(OldScope != 0 && OldInlinedAt != 0 &&
323 "Entry should be non-canonical if either val dropped to null");
324
325 // Otherwise, we do have an entry in it, nuke it and we're done.
326 assert(Ctx->ScopeInlinedAtIdx[std::make_pair(OldScope, OldInlinedAt)] == Idx&&
327 "Mapping out of date");
328 Ctx->ScopeInlinedAtIdx.erase(std::make_pair(OldScope, OldInlinedAt));
329
330 // Reset this VH to the new value.
331 setValPtr(NewVal);
332
333 int NewIdx = Ctx->getOrAddScopeInlinedAtIdxEntry(Entry.first.get(),
334 Entry.second.get(), Idx);
335 // If NewVal already has an entry, this becomes a non-canonical reference,
336 // just drop Idx to 0 to signify this.
Chris Lattnercf25a892010-04-01 05:12:07 +0000337 if (NewIdx != Idx) {
338 std::pair<DebugRecVH, DebugRecVH> &Entry=Ctx->ScopeInlinedAtRecords[-Idx-1];
339 Entry.first.Idx = Entry.second.Idx = 0;
340 }
Chris Lattner8cb2aeb2010-04-01 00:37:44 +0000341}