[PATCH] D13518: Add -address option to symbolizer
khemant@codeaurora.org via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 9 12:58:08 PDT 2015
khemant updated this revision to Diff 36980.
khemant added a comment.
Option is handled inside main. Source is present as comment in test case.
Repository:
rL LLVM
http://reviews.llvm.org/D13518
Files:
docs/CommandGuide/llvm-symbolizer.rst
test/tools/llvm-symbolizer/Inputs/addr.exe
test/tools/llvm-symbolizer/Inputs/addr.inp
test/tools/llvm-symbolizer/sym.test
tools/llvm-symbolizer/llvm-symbolizer.cpp
Index: tools/llvm-symbolizer/llvm-symbolizer.cpp
===================================================================
--- tools/llvm-symbolizer/llvm-symbolizer.cpp
+++ tools/llvm-symbolizer/llvm-symbolizer.cpp
@@ -73,6 +73,9 @@
ClDsymHint("dsym-hint", cl::ZeroOrMore,
cl::desc("Path to .dSYM bundles to search for debug info for the "
"object files"));
+static cl::opt<bool>
+ ClPrintAddress("print-address", cl::init(false),
+ cl::desc("Show address before line information"));
static bool parseCommand(bool &IsData, std::string &ModuleName,
uint64_t &ModuleOffset) {
@@ -152,6 +155,11 @@
std::string Result =
IsData ? Symbolizer.symbolizeData(ModuleName, ModuleOffset)
: Symbolizer.symbolizeCode(ModuleName, ModuleOffset);
+ if (ClPrintAddress) {
+ outs() << "0x";
+ outs().write_hex(ModuleOffset);
+ outs() << "\n";
+ }
outs() << Result << "\n";
outs().flush();
}
Index: test/tools/llvm-symbolizer/sym.test
===================================================================
--- /dev/null
+++ test/tools/llvm-symbolizer/sym.test
@@ -0,0 +1,19 @@
+#Source:
+##include <stdio.h>
+#static inline int inc (int *a) {
+# printf ("%d\n",(*a)++);
+# return (*a)++;
+#}
+#
+#int main () {
+# int x = 1;
+# return inc(&x);
+#}
+#Build as : clang -g -O2 addr.c
+
+RUN: llvm-symbolizer -inlining -print-address -obj=%p/Inputs/addr.exe < %p/Inputs/addr.inp | FileCheck %s
+
+#CHECK: 0x40054d
+#CHECK: main
+#CHECK: /prj/qct/sunray-austin/scratch/khemant/x.c:9:0
+
Index: test/tools/llvm-symbolizer/Inputs/addr.inp
===================================================================
--- /dev/null
+++ test/tools/llvm-symbolizer/Inputs/addr.inp
@@ -0,0 +1 @@
+0x40054d
Index: docs/CommandGuide/llvm-symbolizer.rst
===================================================================
--- docs/CommandGuide/llvm-symbolizer.rst
+++ docs/CommandGuide/llvm-symbolizer.rst
@@ -98,6 +98,8 @@
location, look for the debug info at the .dSYM path provided via the
``-dsym-hint`` flag. This flag can be used multiple times.
+.. option:: -print-address
+ Print address before the source code location. Defaults to false.
EXIT STATUS
-----------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13518.36980.patch
Type: text/x-patch
Size: 2281 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151009/62bffcde/attachment.bin>
More information about the llvm-commits
mailing list