2014-02-12 17:48:02 +01: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 01:46:21 +01:00
|
|
|
#include "llvm/IR/DebugInfo.h"
|
2014-02-12 17:48:02 +01: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;
|
|
|
|
|
|
|
|
BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {}
|
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
void getContextName(const DIScope *Context, std::string &N) {
|
|
|
|
if (auto *NS = dyn_cast<DINamespace>(Context)) {
|
2015-04-14 05:01:27 +02:00
|
|
|
if (!NS->getName().empty()) {
|
|
|
|
getContextName(NS->getScope(), N);
|
|
|
|
N = N + NS->getName().str() + "::";
|
2014-02-12 17:48:02 +01:00
|
|
|
}
|
2015-04-29 18:38:44 +02:00
|
|
|
} else if (auto *TY = dyn_cast<DIType>(Context)) {
|
2015-04-16 03:01:28 +02:00
|
|
|
if (!TY->getName().empty()) {
|
2016-04-23 23:08:00 +02:00
|
|
|
getContextName(TY->getScope().resolve(), N);
|
2015-04-16 03:01:28 +02:00
|
|
|
N = N + TY->getName().str() + "::";
|
2014-02-12 17:48:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-08 09:27:28 +01:00
|
|
|
bool runOnModule(Module &M) override {
|
2014-02-12 17:48:02 +01:00
|
|
|
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 18:38:44 +02:00
|
|
|
auto *SP = cast_or_null<DISubprogram>(NMD->getOperand(i));
|
2014-02-12 17:48:02 +01:00
|
|
|
if (!SP)
|
|
|
|
continue;
|
2016-04-23 23:08:00 +02:00
|
|
|
getContextName(SP->getScope().resolve(), Name);
|
2017-04-27 01:59:52 +02:00
|
|
|
Name = Name + SP->getName().str();
|
2014-11-19 03:56:00 +01:00
|
|
|
if (!Name.empty() && Processed.insert(Name).second) {
|
2014-02-12 17:48:02 +01:00
|
|
|
Out << Name << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-08 09:27:28 +01:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2014-02-12 17:48:02 +01:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char BreakpointPrinter::ID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) {
|
|
|
|
return new BreakpointPrinter(out);
|
|
|
|
}
|