2014-02-12 16:48:02 +00:00
|
|
|
//===- BreakpointPrinter.cpp - Breakpoint location printer ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief Breakpoint location printer.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "BreakpointPrinter.h"
|
|
|
|
#include "llvm/ADT/StringSet.h"
|
2014-03-06 00:46:21 +00:00
|
|
|
#include "llvm/IR/DebugInfo.h"
|
2014-02-12 16:48:02 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct BreakpointPrinter : public ModulePass {
|
|
|
|
raw_ostream &Out;
|
|
|
|
static char ID;
|
|
|
|
DITypeIdentifierMap TypeIdentifierMap;
|
|
|
|
|
|
|
|
BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {}
|
|
|
|
|
2015-04-29 16:38:44 +00:00
|
|
|
void getContextName(const DIScope *Context, std::string &N) {
|
|
|
|
if (auto *NS = dyn_cast<DINamespace>(Context)) {
|
2015-04-14 03:01:27 +00:00
|
|
|
if (!NS->getName().empty()) {
|
|
|
|
getContextName(NS->getScope(), N);
|
|
|
|
N = N + NS->getName().str() + "::";
|
2014-02-12 16:48:02 +00:00
|
|
|
}
|
2015-04-29 16:38:44 +00:00
|
|
|
} else if (auto *TY = dyn_cast<DIType>(Context)) {
|
2015-04-16 01:01:28 +00:00
|
|
|
if (!TY->getName().empty()) {
|
|
|
|
getContextName(TY->getScope().resolve(TypeIdentifierMap), N);
|
|
|
|
N = N + TY->getName().str() + "::";
|
2014-02-12 16:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-08 08:27:28 +00:00
|
|
|
bool runOnModule(Module &M) override {
|
2014-02-12 16:48:02 +00:00
|
|
|
TypeIdentifierMap.clear();
|
|
|
|
NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu");
|
|
|
|
if (CU_Nodes)
|
|
|
|
TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes);
|
|
|
|
|
|
|
|
StringSet<> Processed;
|
|
|
|
if (NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.sp"))
|
|
|
|
for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
|
|
|
|
std::string Name;
|
2015-04-29 16:38:44 +00:00
|
|
|
auto *SP = cast_or_null<DISubprogram>(NMD->getOperand(i));
|
2014-02-12 16:48:02 +00:00
|
|
|
if (!SP)
|
|
|
|
continue;
|
2015-04-14 03:40:37 +00:00
|
|
|
getContextName(SP->getScope().resolve(TypeIdentifierMap), Name);
|
|
|
|
Name = Name + SP->getDisplayName().str();
|
2014-11-19 02:56:00 +00:00
|
|
|
if (!Name.empty() && Processed.insert(Name).second) {
|
2014-02-12 16:48:02 +00:00
|
|
|
Out << Name << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-08 08:27:28 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2014-02-12 16:48:02 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char BreakpointPrinter::ID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) {
|
|
|
|
return new BreakpointPrinter(out);
|
|
|
|
}
|