blob: b4364be91379d9a396d5f916687634ba1b052e21 [file] [log] [blame]
Bill Wendling523bea82013-11-08 08:13:15 +00001//===--- DebugInfo.cpp - Debug Information Helper Classes -----------------===//
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 helper classes used to build and interpret debug
11// information in LLVM IR form.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000015#include "llvm/IR/DebugInfo.h"
Chandler Carruth442f7842014-03-04 10:07:28 +000016#include "LLVMContextImpl.h"
Bill Wendling523bea82013-11-08 08:13:15 +000017#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallString.h"
Duncan P. N. Exon Smithc22a5c22015-02-21 00:43:09 +000020#include "llvm/ADT/StringSwitch.h"
Bill Wendling523bea82013-11-08 08:13:15 +000021#include "llvm/Analysis/ValueTracking.h"
22#include "llvm/IR/Constants.h"
Adrian Prantlb1416832014-08-01 22:11:58 +000023#include "llvm/IR/DIBuilder.h"
Bill Wendling523bea82013-11-08 08:13:15 +000024#include "llvm/IR/DerivedTypes.h"
25#include "llvm/IR/Instructions.h"
26#include "llvm/IR/IntrinsicInst.h"
27#include "llvm/IR/Intrinsics.h"
Rafael Espindola0d68b4c2015-03-30 21:36:43 +000028#include "llvm/IR/GVMaterializer.h"
Bill Wendling523bea82013-11-08 08:13:15 +000029#include "llvm/IR/Module.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000030#include "llvm/IR/ValueHandle.h"
Bill Wendling523bea82013-11-08 08:13:15 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/Dwarf.h"
Bill Wendling523bea82013-11-08 08:13:15 +000033#include "llvm/Support/raw_ostream.h"
34using namespace llvm;
35using namespace llvm::dwarf;
36
37//===----------------------------------------------------------------------===//
38// DIDescriptor
39//===----------------------------------------------------------------------===//
40
Duncan P. N. Exon Smithc22a5c22015-02-21 00:43:09 +000041unsigned DIDescriptor::getFlag(StringRef Flag) {
42 return StringSwitch<unsigned>(Flag)
43#define HANDLE_DI_FLAG(ID, NAME) .Case("DIFlag" #NAME, Flag##NAME)
44#include "llvm/IR/DebugInfoFlags.def"
45 .Default(0);
46}
47
48const char *DIDescriptor::getFlagString(unsigned Flag) {
49 switch (Flag) {
50 default:
51 return "";
52#define HANDLE_DI_FLAG(ID, NAME) \
53 case Flag##NAME: \
54 return "DIFlag" #NAME;
55#include "llvm/IR/DebugInfoFlags.def"
56 }
57}
58
Duncan P. N. Exon Smith269e38d2015-02-21 00:45:26 +000059unsigned DIDescriptor::splitFlags(unsigned Flags,
60 SmallVectorImpl<unsigned> &SplitFlags) {
61 // Accessibility flags need to be specially handled, since they're packed
62 // together.
63 if (unsigned A = Flags & FlagAccessibility) {
64 if (A == FlagPrivate)
65 SplitFlags.push_back(FlagPrivate);
66 else if (A == FlagProtected)
67 SplitFlags.push_back(FlagProtected);
68 else
69 SplitFlags.push_back(FlagPublic);
70 Flags &= ~A;
71 }
72
73#define HANDLE_DI_FLAG(ID, NAME) \
74 if (unsigned Bit = Flags & ID) { \
75 SplitFlags.push_back(Bit); \
76 Flags &= ~Bit; \
77 }
78#include "llvm/IR/DebugInfoFlags.def"
79
80 return Flags;
81}
82
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +000083static Metadata *getField(const MDNode *DbgNode, unsigned Elt) {
Craig Topperc6207612014-04-09 06:08:46 +000084 if (!DbgNode || Elt >= DbgNode->getNumOperands())
85 return nullptr;
Bill Wendling523bea82013-11-08 08:13:15 +000086 return DbgNode->getOperand(Elt);
87}
88
89static MDNode *getNodeField(const MDNode *DbgNode, unsigned Elt) {
90 return dyn_cast_or_null<MDNode>(getField(DbgNode, Elt));
91}
92
Bill Wendling523bea82013-11-08 08:13:15 +000093DIDescriptor DIDescriptor::getDescriptorField(unsigned Elt) const {
94 MDNode *Field = getNodeField(DbgNode, Elt);
95 return DIDescriptor(Field);
96}
97
Duncan P. N. Exon Smith7f637a92014-10-15 17:01:28 +000098/// \brief Return the size reported by the variable's type.
Adrian Prantlb1416832014-08-01 22:11:58 +000099unsigned DIVariable::getSizeInBits(const DITypeIdentifierMap &Map) {
100 DIType Ty = getType().resolve(Map);
101 // Follow derived types until we reach a type that
102 // reports back a size.
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000103 while (isa<MDDerivedType>(Ty) && !Ty.getSizeInBits()) {
104 DIDerivedType DT = cast<MDDerivedType>(Ty);
Adrian Prantlb1416832014-08-01 22:11:58 +0000105 Ty = DT.getTypeDerivedFrom().resolve(Map);
106 }
107 assert(Ty.getSizeInBits() && "type with size 0");
108 return Ty.getSizeInBits();
109}
110
Adrian Prantl27bd01f2015-02-09 23:57:15 +0000111bool DIExpression::isBitPiece() const {
Adrian Prantl34bcbee2015-01-21 00:59:20 +0000112 unsigned N = getNumElements();
Adrian Prantl27bd01f2015-02-09 23:57:15 +0000113 return N >=3 && getElement(N-3) == dwarf::DW_OP_bit_piece;
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000114}
115
Adrian Prantl27bd01f2015-02-09 23:57:15 +0000116uint64_t DIExpression::getBitPieceOffset() const {
117 assert(isBitPiece() && "not a piece");
Adrian Prantl34bcbee2015-01-21 00:59:20 +0000118 return getElement(getNumElements()-2);
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000119}
120
Adrian Prantl27bd01f2015-02-09 23:57:15 +0000121uint64_t DIExpression::getBitPieceSize() const {
122 assert(isBitPiece() && "not a piece");
Adrian Prantl34bcbee2015-01-21 00:59:20 +0000123 return getElement(getNumElements()-1);
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000124}
Adrian Prantlb1416832014-08-01 22:11:58 +0000125
Adrian Prantl0f615792015-03-04 17:39:33 +0000126DIExpression::iterator DIExpression::Operand::getNext() const {
Adrian Prantl70f2a732015-01-23 23:40:47 +0000127 iterator it(I);
Adrian Prantl0f615792015-03-04 17:39:33 +0000128 return ++it;
Adrian Prantl70f2a732015-01-23 23:40:47 +0000129}
130
Bill Wendling523bea82013-11-08 08:13:15 +0000131//===----------------------------------------------------------------------===//
Bill Wendling523bea82013-11-08 08:13:15 +0000132// Simple Descriptor Constructors and other Methods
133//===----------------------------------------------------------------------===//
134
Duncan P. N. Exon Smith9c3b8942015-02-28 23:48:02 +0000135void DIDescriptor::replaceAllUsesWith(LLVMContext &, DIDescriptor D) {
Bill Wendling523bea82013-11-08 08:13:15 +0000136 assert(DbgNode && "Trying to replace an unverified type!");
Duncan P. N. Exon Smith9c3b8942015-02-28 23:48:02 +0000137 assert(DbgNode->isTemporary() && "Expected temporary node");
138 TempMDNode Temp(get());
Bill Wendling523bea82013-11-08 08:13:15 +0000139
140 // Since we use a TrackingVH for the node, its easy for clients to manufacture
141 // legitimate situations where they want to replaceAllUsesWith() on something
142 // which, due to uniquing, has merged with the source. We shield clients from
143 // this detail by allowing a value to be replaced with replaceAllUsesWith()
144 // itself.
Duncan P. N. Exon Smith9c3b8942015-02-28 23:48:02 +0000145 if (Temp.get() == D.get()) {
146 DbgNode = MDNode::replaceWithUniqued(std::move(Temp));
147 return;
Bill Wendling523bea82013-11-08 08:13:15 +0000148 }
David Blaikied3f094a2014-05-06 03:41:57 +0000149
Duncan P. N. Exon Smith9c3b8942015-02-28 23:48:02 +0000150 Temp->replaceAllUsesWith(D.get());
151 DbgNode = D.get();
Bill Wendling523bea82013-11-08 08:13:15 +0000152}
153
Frederic Riss36acf0f2014-09-15 07:50:36 +0000154void DIDescriptor::replaceAllUsesWith(MDNode *D) {
Bill Wendling523bea82013-11-08 08:13:15 +0000155 assert(DbgNode && "Trying to replace an unverified type!");
David Blaikied3f094a2014-05-06 03:41:57 +0000156 assert(DbgNode != D && "This replacement should always happen");
Duncan P. N. Exon Smith946fdcc2015-01-19 20:36:39 +0000157 assert(DbgNode->isTemporary() && "Expected temporary node");
Duncan P. N. Exon Smith9c3b8942015-02-28 23:48:02 +0000158 TempMDNode Node(get());
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000159 Node->replaceAllUsesWith(D);
Bill Wendling523bea82013-11-08 08:13:15 +0000160}
161
Duncan P. N. Exon Smith3b960c92015-03-31 01:47:55 +0000162#ifndef NDEBUG
Duncan P. N. Exon Smith7f637a92014-10-15 17:01:28 +0000163/// \brief Check if a value can be a reference to a type.
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000164static bool isTypeRef(const Metadata *MD) {
165 if (!MD)
166 return true;
167 if (auto *S = dyn_cast<MDString>(MD))
168 return !S->getString().empty();
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000169 return isa<MDType>(MD);
Bill Wendling523bea82013-11-08 08:13:15 +0000170}
171
Duncan P. N. Exon Smith7f637a92014-10-15 17:01:28 +0000172/// \brief Check if a value can be a ScopeRef.
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000173static bool isScopeRef(const Metadata *MD) {
174 if (!MD)
175 return true;
176 if (auto *S = dyn_cast<MDString>(MD))
177 return !S->getString().empty();
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000178 return isa<MDScope>(MD);
Bill Wendling523bea82013-11-08 08:13:15 +0000179}
180
Duncan P. N. Exon Smith2a78e9b2015-02-18 19:39:36 +0000181/// \brief Check if a value can be a DescriptorRef.
182static bool isDescriptorRef(const Metadata *MD) {
183 if (!MD)
184 return true;
185 if (auto *S = dyn_cast<MDString>(MD))
186 return !S->getString().empty();
187 return isa<MDNode>(MD);
188}
Duncan P. N. Exon Smithe4450142015-02-18 19:56:50 +0000189#endif
Duncan P. N. Exon Smith2a78e9b2015-02-18 19:39:36 +0000190
Manman Ren1a125c92014-07-28 19:33:20 +0000191void DICompositeType::setArraysHelper(MDNode *Elements, MDNode *TParams) {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000192 TypedTrackingMDRef<MDCompositeTypeBase> N(get());
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000193 if (Elements)
194 N->replaceElements(cast<MDTuple>(Elements));
Bill Wendling523bea82013-11-08 08:13:15 +0000195 if (TParams)
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000196 N->replaceTemplateParams(cast<MDTuple>(TParams));
Bill Wendling523bea82013-11-08 08:13:15 +0000197 DbgNode = N;
198}
199
Duncan P. N. Exon Smith930f3882015-04-06 18:02:43 +0000200DIScopeRef DIScope::getRef() const { return MDScopeRef::get(get()); }
Bill Wendling523bea82013-11-08 08:13:15 +0000201
Bill Wendling523bea82013-11-08 08:13:15 +0000202void DICompositeType::setContainingType(DICompositeType ContainingType) {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000203 TypedTrackingMDRef<MDCompositeTypeBase> N(get());
Duncan P. N. Exon Smith3ec5fa62015-04-06 19:03:45 +0000204 N->replaceVTableHolder(MDTypeRef::get(ContainingType));
Bill Wendling523bea82013-11-08 08:13:15 +0000205 DbgNode = N;
206}
207
Bill Wendling523bea82013-11-08 08:13:15 +0000208bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
209 assert(CurFn && "Invalid function");
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000210 DISubprogram SP = dyn_cast<MDSubprogram>(getContext());
211 if (!SP)
Bill Wendling523bea82013-11-08 08:13:15 +0000212 return false;
213 // This variable is not inlined function argument if its scope
214 // does not describe current function.
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000215 return !SP.describes(CurFn);
Bill Wendling523bea82013-11-08 08:13:15 +0000216}
217
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000218Function *DISubprogram::getFunction() const {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000219 if (auto *N = get())
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000220 if (auto *C = dyn_cast_or_null<ConstantAsMetadata>(N->getFunction()))
221 return dyn_cast<Function>(C->getValue());
222 return nullptr;
223}
224
Bill Wendling523bea82013-11-08 08:13:15 +0000225bool DISubprogram::describes(const Function *F) {
226 assert(F && "Invalid function");
227 if (F == getFunction())
228 return true;
229 StringRef Name = getLinkageName();
230 if (Name.empty())
231 Name = getName();
232 if (F->getName() == Name)
233 return true;
234 return false;
235}
236
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000237GlobalVariable *DIGlobalVariable::getGlobal() const {
238 return dyn_cast_or_null<GlobalVariable>(getConstant());
Bill Wendling523bea82013-11-08 08:13:15 +0000239}
240
Bill Wendling523bea82013-11-08 08:13:15 +0000241DIScopeRef DIScope::getContext() const {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000242 if (DIType T = dyn_cast<MDType>(*this))
243 return T.getContext();
Bill Wendling523bea82013-11-08 08:13:15 +0000244
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000245 if (DISubprogram SP = dyn_cast<MDSubprogram>(*this))
246 return DIScopeRef(SP.getContext());
Bill Wendling523bea82013-11-08 08:13:15 +0000247
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000248 if (DILexicalBlock LB = dyn_cast<MDLexicalBlockBase>(*this))
249 return DIScopeRef(LB.getContext());
Bill Wendling523bea82013-11-08 08:13:15 +0000250
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000251 if (DINameSpace NS = dyn_cast<MDNamespace>(*this))
252 return DIScopeRef(NS.getContext());
Bill Wendling523bea82013-11-08 08:13:15 +0000253
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000254 assert((isa<MDFile>(*this) || isa<MDCompileUnit>(*this)) &&
255 "Unhandled type of scope.");
Craig Topperc6207612014-04-09 06:08:46 +0000256 return DIScopeRef(nullptr);
Bill Wendling523bea82013-11-08 08:13:15 +0000257}
258
Bill Wendling523bea82013-11-08 08:13:15 +0000259StringRef DIScope::getName() const {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000260 if (DIType T = dyn_cast<MDType>(*this))
261 return T.getName();
262 if (DISubprogram SP = dyn_cast<MDSubprogram>(*this))
263 return SP.getName();
264 if (DINameSpace NS = dyn_cast<MDNamespace>(*this))
265 return NS.getName();
266 assert((isa<MDLexicalBlockBase>(*this) || isa<MDFile>(*this) ||
267 isa<MDCompileUnit>(*this)) &&
Bill Wendling523bea82013-11-08 08:13:15 +0000268 "Unhandled type of scope.");
269 return StringRef();
270}
271
272StringRef DIScope::getFilename() const {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000273 if (auto *N = get())
Duncan P. N. Exon Smith897030c2015-04-06 16:43:40 +0000274 if (auto *F = N->getFile())
275 return F->getFilename();
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000276 return "";
Bill Wendling523bea82013-11-08 08:13:15 +0000277}
278
279StringRef DIScope::getDirectory() const {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000280 if (auto *N = get())
Duncan P. N. Exon Smith897030c2015-04-06 16:43:40 +0000281 if (auto *F = N->getFile())
282 return F->getDirectory();
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000283 return "";
Duncan P. N. Exon Smith176b6912014-10-03 20:01:09 +0000284}
285
286void DICompileUnit::replaceSubprograms(DIArray Subprograms) {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000287 get()->replaceSubprograms(cast_or_null<MDTuple>(Subprograms.get()));
Duncan P. N. Exon Smith176b6912014-10-03 20:01:09 +0000288}
289
290void DICompileUnit::replaceGlobalVariables(DIArray GlobalVariables) {
Duncan P. N. Exon Smith9b9cc2d2015-03-23 21:54:07 +0000291 get()->replaceGlobalVariables(cast_or_null<MDTuple>(GlobalVariables.get()));
Bill Wendling523bea82013-11-08 08:13:15 +0000292}
293
Diego Novillof5041ce2014-03-03 20:06:11 +0000294DILocation DILocation::copyWithNewScope(LLVMContext &Ctx,
David Blaikie2f3f76f2014-08-21 22:45:21 +0000295 DILexicalBlockFile NewScope) {
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000296 assert(NewScope && "Expected valid scope");
297
298 const auto *Old = cast<MDLocation>(DbgNode);
299 return DILocation(MDLocation::get(Ctx, Old->getLine(), Old->getColumn(),
300 NewScope, Old->getInlinedAt()));
Diego Novillof5041ce2014-03-03 20:06:11 +0000301}
302
Diego Novillof5041ce2014-03-03 20:06:11 +0000303unsigned DILocation::computeNewDiscriminator(LLVMContext &Ctx) {
304 std::pair<const char *, unsigned> Key(getFilename().data(), getLineNumber());
305 return ++Ctx.pImpl->DiscriminatorTable[Key];
306}
307
Bill Wendling523bea82013-11-08 08:13:15 +0000308DIVariable llvm::createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
309 LLVMContext &VMContext) {
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000310 return cast<MDLocalVariable>(DV)
311 ->withInline(cast_or_null<MDLocation>(InlinedScope));
Bill Wendling523bea82013-11-08 08:13:15 +0000312}
313
Bill Wendling523bea82013-11-08 08:13:15 +0000314DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) {
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000315 return cast<MDLocalVariable>(DV)->withoutInline();
Bill Wendling523bea82013-11-08 08:13:15 +0000316}
317
Bill Wendling523bea82013-11-08 08:13:15 +0000318DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
Duncan P. N. Exon Smithdd77af82015-03-31 02:06:28 +0000319 if (auto *LocalScope = dyn_cast_or_null<MDLocalScope>(Scope))
320 return LocalScope->getSubprogram();
321 return nullptr;
Bill Wendling523bea82013-11-08 08:13:15 +0000322}
323
Timur Iskhodzhanoveb229ca2014-10-23 23:46:28 +0000324DISubprogram llvm::getDISubprogram(const Function *F) {
325 // We look for the first instr that has a debug annotation leading back to F.
Timur Iskhodzhanoveb229ca2014-10-23 23:46:28 +0000326 for (auto &BB : *F) {
David Majnemerc758df42014-11-01 07:57:14 +0000327 auto Inst = std::find_if(BB.begin(), BB.end(), [](const Instruction &Inst) {
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000328 return Inst.getDebugLoc();
David Majnemerc758df42014-11-01 07:57:14 +0000329 });
330 if (Inst == BB.end())
331 continue;
332 DebugLoc DLoc = Inst->getDebugLoc();
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000333 const MDNode *Scope = DLoc.getInlinedAtScope();
David Majnemerc758df42014-11-01 07:57:14 +0000334 DISubprogram Subprogram = getDISubprogram(Scope);
335 return Subprogram.describes(F) ? Subprogram : DISubprogram();
Timur Iskhodzhanoveb229ca2014-10-23 23:46:28 +0000336 }
337
338 return DISubprogram();
339}
340
Bill Wendling523bea82013-11-08 08:13:15 +0000341DICompositeType llvm::getDICompositeType(DIType T) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000342 if (auto *C = dyn_cast_or_null<MDCompositeTypeBase>(T))
343 return C;
Bill Wendling523bea82013-11-08 08:13:15 +0000344
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000345 if (auto *D = dyn_cast_or_null<MDDerivedTypeBase>(T)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000346 // This function is currently used by dragonegg and dragonegg does
347 // not generate identifier for types, so using an empty map to resolve
348 // DerivedFrom should be fine.
349 DITypeIdentifierMap EmptyMap;
350 return getDICompositeType(
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000351 DIDerivedType(D).getTypeDerivedFrom().resolve(EmptyMap));
Bill Wendling523bea82013-11-08 08:13:15 +0000352 }
353
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000354 return nullptr;
Bill Wendling523bea82013-11-08 08:13:15 +0000355}
356
Bill Wendling523bea82013-11-08 08:13:15 +0000357DITypeIdentifierMap
358llvm::generateDITypeIdentifierMap(const NamedMDNode *CU_Nodes) {
359 DITypeIdentifierMap Map;
360 for (unsigned CUi = 0, CUe = CU_Nodes->getNumOperands(); CUi != CUe; ++CUi) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000361 DICompileUnit CU = cast<MDCompileUnit>(CU_Nodes->getOperand(CUi));
Bill Wendling523bea82013-11-08 08:13:15 +0000362 DIArray Retain = CU.getRetainedTypes();
363 for (unsigned Ti = 0, Te = Retain.getNumElements(); Ti != Te; ++Ti) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000364 if (!isa<MDCompositeType>(Retain.getElement(Ti)))
Bill Wendling523bea82013-11-08 08:13:15 +0000365 continue;
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000366 DICompositeType Ty = cast<MDCompositeType>(Retain.getElement(Ti));
Bill Wendling523bea82013-11-08 08:13:15 +0000367 if (MDString *TypeId = Ty.getIdentifier()) {
368 // Definition has priority over declaration.
369 // Try to insert (TypeId, Ty) to Map.
370 std::pair<DITypeIdentifierMap::iterator, bool> P =
371 Map.insert(std::make_pair(TypeId, Ty));
372 // If TypeId already exists in Map and this is a definition, replace
373 // whatever we had (declaration or definition) with the definition.
374 if (!P.second && !Ty.isForwardDecl())
375 P.first->second = Ty;
376 }
377 }
378 }
379 return Map;
380}
381
382//===----------------------------------------------------------------------===//
383// DebugInfoFinder implementations.
384//===----------------------------------------------------------------------===//
385
386void DebugInfoFinder::reset() {
387 CUs.clear();
388 SPs.clear();
389 GVs.clear();
390 TYs.clear();
391 Scopes.clear();
392 NodesSeen.clear();
393 TypeIdentifierMap.clear();
Manman Ren2085ccc2013-11-17 18:42:37 +0000394 TypeMapInitialized = false;
395}
396
Manman Renb46e5502013-11-17 19:35:03 +0000397void DebugInfoFinder::InitializeTypeMap(const Module &M) {
Manman Ren2085ccc2013-11-17 18:42:37 +0000398 if (!TypeMapInitialized)
399 if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
400 TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes);
401 TypeMapInitialized = true;
402 }
Bill Wendling523bea82013-11-08 08:13:15 +0000403}
404
Bill Wendling523bea82013-11-08 08:13:15 +0000405void DebugInfoFinder::processModule(const Module &M) {
Manman Renb46e5502013-11-17 19:35:03 +0000406 InitializeTypeMap(M);
Bill Wendling523bea82013-11-08 08:13:15 +0000407 if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
Bill Wendling523bea82013-11-08 08:13:15 +0000408 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000409 DICompileUnit CU = cast<MDCompileUnit>(CU_Nodes->getOperand(i));
Bill Wendling523bea82013-11-08 08:13:15 +0000410 addCompileUnit(CU);
411 DIArray GVs = CU.getGlobalVariables();
412 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000413 DIGlobalVariable DIG = cast<MDGlobalVariable>(GVs.getElement(i));
Bill Wendling523bea82013-11-08 08:13:15 +0000414 if (addGlobalVariable(DIG)) {
Manman Renf0a582b2014-11-21 19:55:23 +0000415 processScope(DIG.getContext());
Adrian Prantl1a1647c2014-03-18 02:34:58 +0000416 processType(DIG.getType().resolve(TypeIdentifierMap));
Bill Wendling523bea82013-11-08 08:13:15 +0000417 }
418 }
419 DIArray SPs = CU.getSubprograms();
420 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000421 processSubprogram(cast<MDSubprogram>(SPs.getElement(i)));
Bill Wendling523bea82013-11-08 08:13:15 +0000422 DIArray EnumTypes = CU.getEnumTypes();
423 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000424 processType(cast<MDType>(EnumTypes.getElement(i)));
Bill Wendling523bea82013-11-08 08:13:15 +0000425 DIArray RetainedTypes = CU.getRetainedTypes();
426 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000427 processType(cast<MDType>(RetainedTypes.getElement(i)));
Bill Wendling523bea82013-11-08 08:13:15 +0000428 DIArray Imports = CU.getImportedEntities();
429 for (unsigned i = 0, e = Imports.getNumElements(); i != e; ++i) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000430 DIImportedEntity Import = cast<MDImportedEntity>(Imports.getElement(i));
Adrian Prantld09ba232014-04-01 03:41:04 +0000431 DIDescriptor Entity = Import.getEntity().resolve(TypeIdentifierMap);
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000432 if (auto *T = dyn_cast<MDType>(Entity))
433 processType(T);
434 else if (auto *SP = dyn_cast<MDSubprogram>(Entity))
435 processSubprogram(SP);
436 else if (auto *NS = dyn_cast<MDNamespace>(Entity))
437 processScope(NS->getScope());
Bill Wendling523bea82013-11-08 08:13:15 +0000438 }
439 }
440 }
441}
442
Manman Ren2085ccc2013-11-17 18:42:37 +0000443void DebugInfoFinder::processLocation(const Module &M, DILocation Loc) {
Bill Wendling523bea82013-11-08 08:13:15 +0000444 if (!Loc)
445 return;
Manman Renb46e5502013-11-17 19:35:03 +0000446 InitializeTypeMap(M);
Bill Wendling523bea82013-11-08 08:13:15 +0000447 processScope(Loc.getScope());
Manman Ren2085ccc2013-11-17 18:42:37 +0000448 processLocation(M, Loc.getOrigLocation());
Bill Wendling523bea82013-11-08 08:13:15 +0000449}
450
Bill Wendling523bea82013-11-08 08:13:15 +0000451void DebugInfoFinder::processType(DIType DT) {
452 if (!addType(DT))
453 return;
454 processScope(DT.getContext().resolve(TypeIdentifierMap));
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000455 if (DICompositeType DCT = dyn_cast<MDCompositeTypeBase>(DT)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000456 processType(DCT.getTypeDerivedFrom().resolve(TypeIdentifierMap));
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000457 if (DISubroutineType ST = dyn_cast<MDSubroutineType>(DCT)) {
458 DITypeArray DTA = ST.getTypeArray();
Manman Renf8a19672014-07-28 22:24:06 +0000459 for (unsigned i = 0, e = DTA.getNumElements(); i != e; ++i)
460 processType(DTA.getElement(i).resolve(TypeIdentifierMap));
461 return;
462 }
Manman Renab8ffba2014-07-28 19:14:13 +0000463 DIArray DA = DCT.getElements();
Bill Wendling523bea82013-11-08 08:13:15 +0000464 for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
465 DIDescriptor D = DA.getElement(i);
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000466 if (DIType T = dyn_cast<MDType>(D))
467 processType(T);
468 else if (DISubprogram SP = dyn_cast<MDSubprogram>(D))
469 processSubprogram(SP);
Bill Wendling523bea82013-11-08 08:13:15 +0000470 }
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000471 } else if (DIDerivedType DDT = dyn_cast<MDDerivedTypeBase>(DT)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000472 processType(DDT.getTypeDerivedFrom().resolve(TypeIdentifierMap));
473 }
474}
475
476void DebugInfoFinder::processScope(DIScope Scope) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000477 if (!Scope)
478 return;
479 if (DIType Ty = dyn_cast<MDType>(Scope)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000480 processType(Ty);
481 return;
482 }
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000483 if (DICompileUnit CU = dyn_cast<MDCompileUnit>(Scope)) {
484 addCompileUnit(CU);
Bill Wendling523bea82013-11-08 08:13:15 +0000485 return;
486 }
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000487 if (DISubprogram SP = dyn_cast<MDSubprogram>(Scope)) {
488 processSubprogram(SP);
Bill Wendling523bea82013-11-08 08:13:15 +0000489 return;
490 }
491 if (!addScope(Scope))
492 return;
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000493 if (DILexicalBlock LB = dyn_cast<MDLexicalBlockBase>(Scope)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000494 processScope(LB.getContext());
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000495 } else if (DINameSpace NS = dyn_cast<MDNamespace>(Scope)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000496 processScope(NS.getContext());
497 }
498}
499
Bill Wendling523bea82013-11-08 08:13:15 +0000500void DebugInfoFinder::processSubprogram(DISubprogram SP) {
501 if (!addSubprogram(SP))
502 return;
503 processScope(SP.getContext().resolve(TypeIdentifierMap));
504 processType(SP.getType());
505 DIArray TParams = SP.getTemplateParams();
506 for (unsigned I = 0, E = TParams.getNumElements(); I != E; ++I) {
507 DIDescriptor Element = TParams.getElement(I);
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000508 if (DITemplateTypeParameter TType =
509 dyn_cast<MDTemplateTypeParameter>(Element)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000510 processType(TType.getType().resolve(TypeIdentifierMap));
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000511 } else if (DITemplateValueParameter TVal =
512 dyn_cast<MDTemplateValueParameter>(Element)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000513 processType(TVal.getType().resolve(TypeIdentifierMap));
514 }
515 }
516}
517
Manman Ren2085ccc2013-11-17 18:42:37 +0000518void DebugInfoFinder::processDeclare(const Module &M,
519 const DbgDeclareInst *DDI) {
Bill Wendling523bea82013-11-08 08:13:15 +0000520 MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
521 if (!N)
522 return;
Manman Renb46e5502013-11-17 19:35:03 +0000523 InitializeTypeMap(M);
Bill Wendling523bea82013-11-08 08:13:15 +0000524
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000525 DIVariable DV = dyn_cast<MDLocalVariable>(N);
526 if (!DV)
Bill Wendling523bea82013-11-08 08:13:15 +0000527 return;
528
David Blaikie70573dc2014-11-19 07:49:26 +0000529 if (!NodesSeen.insert(DV).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000530 return;
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000531 processScope(DV.getContext());
532 processType(DV.getType().resolve(TypeIdentifierMap));
Bill Wendling523bea82013-11-08 08:13:15 +0000533}
534
Manman Ren2085ccc2013-11-17 18:42:37 +0000535void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) {
Bill Wendling523bea82013-11-08 08:13:15 +0000536 MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
537 if (!N)
538 return;
Manman Renb46e5502013-11-17 19:35:03 +0000539 InitializeTypeMap(M);
Bill Wendling523bea82013-11-08 08:13:15 +0000540
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000541 DIVariable DV = dyn_cast<MDLocalVariable>(N);
542 if (!DV)
Bill Wendling523bea82013-11-08 08:13:15 +0000543 return;
544
David Blaikie70573dc2014-11-19 07:49:26 +0000545 if (!NodesSeen.insert(DV).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000546 return;
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000547 processScope(DV.getContext());
548 processType(DV.getType().resolve(TypeIdentifierMap));
Bill Wendling523bea82013-11-08 08:13:15 +0000549}
550
Bill Wendling523bea82013-11-08 08:13:15 +0000551bool DebugInfoFinder::addType(DIType DT) {
552 if (!DT)
553 return false;
554
David Blaikie70573dc2014-11-19 07:49:26 +0000555 if (!NodesSeen.insert(DT).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000556 return false;
557
558 TYs.push_back(DT);
559 return true;
560}
561
Bill Wendling523bea82013-11-08 08:13:15 +0000562bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
563 if (!CU)
564 return false;
David Blaikie70573dc2014-11-19 07:49:26 +0000565 if (!NodesSeen.insert(CU).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000566 return false;
567
568 CUs.push_back(CU);
569 return true;
570}
571
Bill Wendling523bea82013-11-08 08:13:15 +0000572bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
573 if (!DIG)
574 return false;
575
David Blaikie70573dc2014-11-19 07:49:26 +0000576 if (!NodesSeen.insert(DIG).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000577 return false;
578
579 GVs.push_back(DIG);
580 return true;
581}
582
Bill Wendling523bea82013-11-08 08:13:15 +0000583bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
584 if (!SP)
585 return false;
586
David Blaikie70573dc2014-11-19 07:49:26 +0000587 if (!NodesSeen.insert(SP).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000588 return false;
589
590 SPs.push_back(SP);
591 return true;
592}
593
594bool DebugInfoFinder::addScope(DIScope Scope) {
595 if (!Scope)
596 return false;
597 // FIXME: Ocaml binding generates a scope with no content, we treat it
598 // as null for now.
599 if (Scope->getNumOperands() == 0)
600 return false;
David Blaikie70573dc2014-11-19 07:49:26 +0000601 if (!NodesSeen.insert(Scope).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000602 return false;
603 Scopes.push_back(Scope);
604 return true;
605}
606
607//===----------------------------------------------------------------------===//
608// DIDescriptor: dump routines for all descriptors.
609//===----------------------------------------------------------------------===//
610
Bill Wendling523bea82013-11-08 08:13:15 +0000611void DIDescriptor::dump() const {
612 print(dbgs());
613 dbgs() << '\n';
614}
615
Bill Wendling523bea82013-11-08 08:13:15 +0000616void DIDescriptor::print(raw_ostream &OS) const {
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000617 if (!get())
Bill Wendling523bea82013-11-08 08:13:15 +0000618 return;
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000619 get()->print(OS);
Bill Wendling523bea82013-11-08 08:13:15 +0000620}
621
622static void printDebugLoc(DebugLoc DL, raw_ostream &CommentOS,
623 const LLVMContext &Ctx) {
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000624 if (!DL)
Duncan P. N. Exon Smith51306ef2015-03-30 18:45:11 +0000625 return;
626
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000627 DIScope Scope = cast<MDScope>(DL.getScope());
Duncan P. N. Exon Smith51306ef2015-03-30 18:45:11 +0000628 // Omit the directory, because it's likely to be long and uninteresting.
629 CommentOS << Scope.getFilename();
630 CommentOS << ':' << DL.getLine();
631 if (DL.getCol() != 0)
632 CommentOS << ':' << DL.getCol();
633
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000634 DebugLoc InlinedAtDL = DL.getInlinedAt();
635 if (!InlinedAtDL)
Duncan P. N. Exon Smith51306ef2015-03-30 18:45:11 +0000636 return;
637
638 CommentOS << " @[ ";
639 printDebugLoc(InlinedAtDL, CommentOS, Ctx);
640 CommentOS << " ]";
Bill Wendling523bea82013-11-08 08:13:15 +0000641}
642
643void DIVariable::printExtendedName(raw_ostream &OS) const {
644 const LLVMContext &Ctx = DbgNode->getContext();
645 StringRef Res = getName();
646 if (!Res.empty())
647 OS << Res << "," << getLineNumber();
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000648 if (auto *InlinedAt = get()->getInlinedAt()) {
649 if (DebugLoc InlinedAtDL = InlinedAt) {
Bill Wendling523bea82013-11-08 08:13:15 +0000650 OS << " @[";
651 printDebugLoc(InlinedAtDL, OS, Ctx);
652 OS << "]";
653 }
654 }
655}
656
Duncan P. N. Exon Smith2a78e9b2015-02-18 19:39:36 +0000657template <> DIRef<DIDescriptor>::DIRef(const Metadata *V) : Val(V) {
658 assert(isDescriptorRef(V) &&
659 "DIDescriptorRef should be a MDString or MDNode");
660}
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000661template <> DIRef<DIScope>::DIRef(const Metadata *V) : Val(V) {
Bill Wendling523bea82013-11-08 08:13:15 +0000662 assert(isScopeRef(V) && "DIScopeRef should be a MDString or MDNode");
663}
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000664template <> DIRef<DIType>::DIRef(const Metadata *V) : Val(V) {
Bill Wendling523bea82013-11-08 08:13:15 +0000665 assert(isTypeRef(V) && "DITypeRef should be a MDString or MDNode");
666}
667
Bill Wendling523bea82013-11-08 08:13:15 +0000668template <>
Duncan P. N. Exon Smith2a78e9b2015-02-18 19:39:36 +0000669DIDescriptorRef DIDescriptor::getFieldAs<DIDescriptorRef>(unsigned Elt) const {
670 return DIDescriptorRef(cast_or_null<Metadata>(getField(DbgNode, Elt)));
671}
672template <>
Bill Wendling523bea82013-11-08 08:13:15 +0000673DIScopeRef DIDescriptor::getFieldAs<DIScopeRef>(unsigned Elt) const {
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000674 return DIScopeRef(cast_or_null<Metadata>(getField(DbgNode, Elt)));
Bill Wendling523bea82013-11-08 08:13:15 +0000675}
Bill Wendling523bea82013-11-08 08:13:15 +0000676template <> DITypeRef DIDescriptor::getFieldAs<DITypeRef>(unsigned Elt) const {
Duncan P. N. Exon Smithc81307a2014-11-14 23:55:03 +0000677 return DITypeRef(cast_or_null<Metadata>(getField(DbgNode, Elt)));
Bill Wendling523bea82013-11-08 08:13:15 +0000678}
Manman Rencb14bbc2013-11-22 22:06:31 +0000679
Duncan P. N. Exon Smith5bf3cdc2015-04-06 22:27:37 +0000680template <>
681DIDescriptor
682DIRef<DIDescriptor>::resolve(const DITypeIdentifierMap &Map) const {
683 return DIDescriptor(DebugNodeRef(Val).resolve(Map));
684}
685template <>
686DIScope DIRef<DIScope>::resolve(const DITypeIdentifierMap &Map) const {
687 return MDScopeRef(Val).resolve(Map);
688}
689template <>
690DIType DIRef<DIType>::resolve(const DITypeIdentifierMap &Map) const {
691 return MDTypeRef(Val).resolve(Map);
692}
693
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000694bool llvm::stripDebugInfo(Function &F) {
695 bool Changed = false;
696 for (BasicBlock &BB : F) {
697 for (Instruction &I : BB) {
698 if (I.getDebugLoc()) {
699 Changed = true;
700 I.setDebugLoc(DebugLoc());
701 }
702 }
703 }
704 return Changed;
705}
706
Manman Rencb14bbc2013-11-22 22:06:31 +0000707bool llvm::StripDebugInfo(Module &M) {
Manman Rencb14bbc2013-11-22 22:06:31 +0000708 bool Changed = false;
709
710 // Remove all of the calls to the debugger intrinsics, and remove them from
711 // the module.
712 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
713 while (!Declare->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000714 CallInst *CI = cast<CallInst>(Declare->user_back());
Manman Rencb14bbc2013-11-22 22:06:31 +0000715 CI->eraseFromParent();
716 }
717 Declare->eraseFromParent();
718 Changed = true;
719 }
720
721 if (Function *DbgVal = M.getFunction("llvm.dbg.value")) {
722 while (!DbgVal->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000723 CallInst *CI = cast<CallInst>(DbgVal->user_back());
Manman Rencb14bbc2013-11-22 22:06:31 +0000724 CI->eraseFromParent();
725 }
726 DbgVal->eraseFromParent();
727 Changed = true;
728 }
729
730 for (Module::named_metadata_iterator NMI = M.named_metadata_begin(),
731 NME = M.named_metadata_end(); NMI != NME;) {
732 NamedMDNode *NMD = NMI;
733 ++NMI;
734 if (NMD->getName().startswith("llvm.dbg.")) {
735 NMD->eraseFromParent();
736 Changed = true;
737 }
738 }
739
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000740 for (Function &F : M)
741 Changed |= stripDebugInfo(F);
742
Rafael Espindola468b8682015-04-01 14:44:59 +0000743 if (GVMaterializer *Materializer = M.getMaterializer())
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000744 Materializer->setStripDebugInfo();
Manman Rencb14bbc2013-11-22 22:06:31 +0000745
746 return Changed;
747}
Manman Ren8b4306c2013-12-02 21:29:56 +0000748
Manman Renbd4daf82013-12-03 00:12:14 +0000749unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) {
David Majnemere7a9cdb2015-02-16 06:04:53 +0000750 if (auto *Val = mdconst::dyn_extract_or_null<ConstantInt>(
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000751 M.getModuleFlag("Debug Info Version")))
752 return Val->getZExtValue();
753 return 0;
Manman Ren8b4306c2013-12-02 21:29:56 +0000754}
David Blaikie6876b3b2014-07-01 20:05:26 +0000755
David Blaikiea8c35092014-07-02 18:30:05 +0000756llvm::DenseMap<const llvm::Function *, llvm::DISubprogram>
757llvm::makeSubprogramMap(const Module &M) {
758 DenseMap<const Function *, DISubprogram> R;
David Blaikie6876b3b2014-07-01 20:05:26 +0000759
760 NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu");
761 if (!CU_Nodes)
762 return R;
763
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000764 for (MDNode *N : CU_Nodes->operands()) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000765 DICompileUnit CUNode = cast<MDCompileUnit>(N);
David Blaikie6876b3b2014-07-01 20:05:26 +0000766 DIArray SPs = CUNode.getSubprograms();
767 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000768 DISubprogram SP = cast<MDSubprogram>(SPs.getElement(i));
David Blaikie6876b3b2014-07-01 20:05:26 +0000769 if (Function *F = SP.getFunction())
770 R.insert(std::make_pair(F, SP));
771 }
772 }
773 return R;
774}