1 //===- BreakpointPrinter.cpp - Breakpoint location printer ----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 /// \brief Breakpoint location printer.
13 //===----------------------------------------------------------------------===//
14 #include "BreakpointPrinter.h"
15 #include "llvm/ADT/StringSet.h"
16 #include "llvm/IR/DebugInfo.h"
17 #include "llvm/IR/Module.h"
18 #include "llvm/Pass.h"
19 #include "llvm/Support/raw_ostream.h"
25 struct BreakpointPrinter
: public ModulePass
{
29 BreakpointPrinter(raw_ostream
&out
) : ModulePass(ID
), Out(out
) {}
31 void getContextName(const DIScope
*Context
, std::string
&N
) {
32 if (auto *NS
= dyn_cast
<DINamespace
>(Context
)) {
33 if (!NS
->getName().empty()) {
34 getContextName(NS
->getScope(), N
);
35 N
= N
+ NS
->getName().str() + "::";
37 } else if (auto *TY
= dyn_cast
<DIType
>(Context
)) {
38 if (!TY
->getName().empty()) {
39 getContextName(TY
->getScope().resolve(), N
);
40 N
= N
+ TY
->getName().str() + "::";
45 bool runOnModule(Module
&M
) override
{
46 StringSet
<> Processed
;
47 if (NamedMDNode
*NMD
= M
.getNamedMetadata("llvm.dbg.sp"))
48 for (unsigned i
= 0, e
= NMD
->getNumOperands(); i
!= e
; ++i
) {
50 auto *SP
= cast_or_null
<DISubprogram
>(NMD
->getOperand(i
));
53 getContextName(SP
->getScope().resolve(), Name
);
54 Name
= Name
+ SP
->getName().str();
55 if (!Name
.empty() && Processed
.insert(Name
).second
) {
62 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
67 char BreakpointPrinter::ID
= 0;
70 ModulePass
*llvm::createBreakpointPrinter(raw_ostream
&out
) {
71 return new BreakpointPrinter(out
);