Skip to content

Commit 0012dd5

Browse files
committed
Add a verbose/human readable mode to llvm-symbolizer to investigate discriminators and other line table/backtrace features
Patch by Simon Que! Differential Revision: https://reviews.llvm.org/D29094 llvm-svn: 293697
1 parent cee3837 commit 0012dd5

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,18 @@ class DIPrinter {
2929
bool PrintFunctionNames;
3030
bool PrintPretty;
3131
int PrintSourceContext;
32+
bool Verbose;
3233

3334
void print(const DILineInfo &Info, bool Inlined);
3435
void printContext(const std::string &FileName, int64_t Line);
3536

3637
public:
3738
DIPrinter(raw_ostream &OS, bool PrintFunctionNames = true,
38-
bool PrintPretty = false, int PrintSourceContext = 0)
39+
bool PrintPretty = false, int PrintSourceContext = 0,
40+
bool Verbose = false)
3941
: OS(OS), PrintFunctionNames(PrintFunctionNames),
40-
PrintPretty(PrintPretty), PrintSourceContext(PrintSourceContext) {}
42+
PrintPretty(PrintPretty), PrintSourceContext(PrintSourceContext),
43+
Verbose(Verbose) {}
4144

4245
DIPrinter &operator<<(const DILineInfo &Info);
4346
DIPrinter &operator<<(const DIInliningInfo &Info);

llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp

+10-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,16 @@ void DIPrinter::print(const DILineInfo &Info, bool Inlined) {
7878
std::string Filename = Info.FileName;
7979
if (Filename == kDILineInfoBadString)
8080
Filename = kBadString;
81-
OS << Filename << ":" << Info.Line << ":" << Info.Column << "\n";
82-
printContext(Filename, Info.Line);
81+
if (!Verbose) {
82+
OS << Filename << ":" << Info.Line << ":" << Info.Column << "\n";
83+
printContext(Filename, Info.Line);
84+
return;
85+
}
86+
OS << " Filename: " << Filename << "\n";
87+
OS << " Line: " << Info.Line << "\n";
88+
OS << " Column: " << Info.Column << "\n";
89+
if (Info.Discriminator)
90+
OS << " Discriminator: " << Info.Discriminator << "\n";
8391
}
8492

8593
DIPrinter &DIPrinter::operator<<(const DILineInfo &Info) {

llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ static cl::opt<int> ClPrintSourceContextLines(
8585
"print-source-context-lines", cl::init(0),
8686
cl::desc("Print N number of source file context"));
8787

88+
static cl::opt<bool> ClVerbose("verbose", cl::init(false),
89+
cl::desc("Print verbose line info"));
90+
8891
template<typename T>
8992
static bool error(Expected<T> &ResOrErr) {
9093
if (ResOrErr)
@@ -160,7 +163,7 @@ int main(int argc, char **argv) {
160163
LLVMSymbolizer Symbolizer(Opts);
161164

162165
DIPrinter Printer(outs(), ClPrintFunctions != FunctionNameKind::None,
163-
ClPrettyPrint, ClPrintSourceContextLines);
166+
ClPrettyPrint, ClPrintSourceContextLines, ClVerbose);
164167

165168
const int kMaxInputStringLength = 1024;
166169
char InputString[kMaxInputStringLength];

0 commit comments

Comments
 (0)