. . .nr rst2man-indent-level 0 . \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .rstReportMargin pre:
. RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .rstReportMargin post:
.. . RE indent \\n[an-margin]
old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1 new: \\n[rst2man-indent\\n[rst2man-indent-level]]
..
// test.h extern \(dqC\(dq inline int foz() { return 1234; }NINDENT NINDENT NDENT 0.0 NDENT 3.5
// test.cpp #include \(dqtest.h\(dq int bar=42; int foo() { return bar; } int baz() { volatile int k = 42; return foz() + k; } int main() { return foo() + baz(); }NINDENT NINDENT These files are built as follows: NDENT 0.0 NDENT 3.5
$ clang -g test.cpp -o test.elf $ clang -g -O2 test.cpp -o inlined.elfNINDENT NINDENT Example 1 - addresses and object on command-line: NDENT 0.0 NDENT 3.5
$ llvm-symbolizer --obj=test.elf 0x4004d0 0x400490 foz /tmp/test.h:1:0 baz() /tmp/test.cpp:11:0NINDENT NINDENT Example 2 - addresses on standard input: NDENT 0.0 NDENT 3.5
$ cat addr.txt 0x4004a0 0x400490 0x4004d0 $ llvm-symbolizer --obj=test.elf < addr.txt main /tmp/test.cpp:15:0 baz() /tmp/test.cpp:11:0 foz /tmp/./test.h:1:0NINDENT NINDENT Example 3 - object specified with address: NDENT 0.0 NDENT 3.5
$ llvm-symbolizer \(dqtest.elf 0x400490\(dq \(dqFILE:inlined.elf 0x400480\(dq baz() /tmp/test.cpp:11:0 foo() /tmp/test.cpp:8:10 $ cat addr2.txt FILE:test.elf 0x4004a0 inlined.elf 0x400480 $ llvm-symbolizer < addr2.txt main /tmp/test.cpp:15:0 foo() /tmp/test.cpp:8:10NINDENT NINDENT Example 4 - BUILDID and FILE prefixes: NDENT 0.0 NDENT 3.5
$ llvm-symbolizer \(dqFILE:test.elf 0x400490\(dq \(dqDATA BUILDID:123456789abcdef 0x601028\(dq baz() /tmp/test.cpp:11:0 bar 6295592 4 $ cat addr3.txt FILE:test.elf 0x400490 DATA BUILDID:123456789abcdef 0x601028 $ llvm-symbolizer < addr3.txt baz() /tmp/test.cpp:11:0 bar 6295592 4NINDENT NINDENT Example 5 - CODE and DATA prefixes: NDENT 0.0 NDENT 3.5
$ llvm-symbolizer --obj=test.elf \(dqCODE 0x400490\(dq \(dqDATA 0x601028\(dq baz() /tmp/test.cpp:11:0 bar 6295592 4 $ cat addr4.txt CODE test.elf 0x4004a0 DATA inlined.elf 0x601028 $ llvm-symbolizer < addr4.txt main /tmp/test.cpp:15:0 bar 6295592 4NINDENT NINDENT Example 6 - path-style options: This example uses the same source file as above, but the source file\(aqs full path is /tmp/foo/test.cpp and is compiled as follows. The first case shows the default absolute path, the second --basenames, and the third shows --relativenames. NDENT 0.0 NDENT 3.5
$ pwd /tmp $ clang -g foo/test.cpp -o test.elf $ llvm-symbolizer --obj=test.elf 0x4004a0 main /tmp/foo/test.cpp:15:0 $ llvm-symbolizer --obj=test.elf 0x4004a0 --basenames main test.cpp:15:0 $ llvm-symbolizer --obj=test.elf 0x4004a0 --relativenames main foo/test.cpp:15:0NINDENT NINDENT
--adjust-vma <offset> Add the specified offset to object file addresses when performing lookups. This can be used to perform lookups as if the object were relocated by the offset. NINDENT NDENT 0.0
--basenames, -s Print just the file\(aqs name without any directories, instead of the absolute path. NINDENT NDENT 0.0
--build-id Look up the object using the given build ID, specified as a hexadecimal string. Mutually exclusive with \%--obj. NINDENT NDENT 0.0
--color [=<always|auto|never>] Specify whether to use color in \%--filter-markup mode. Defaults to auto, which detects whether standard output supports color. Specifying --color alone is equivalent to --color=always. NINDENT NDENT 0.0
--debug-file-directory <path> Provide a path to a directory with a .build-id subdirectory to search for debug information for stripped binaries. Multiple instances of this argument are searched in the order given. NINDENT NDENT 0.0
--debuginfod, --no-debuginfod Whether or not to try debuginfod lookups for debug binaries. Unless specified, debuginfod is only enabled if libcurl was compiled in (LLVM_ENABLE_CURL) and at least one server URL was provided by the environment variable DEBUGINFOD_URLS. NINDENT NDENT 0.0
--demangle, -C Print demangled function names, if the names are mangled (e.g. the mangled name _Z3bazv becomes baz(), whilst the non-mangled name foz is printed as is). Defaults to true. NINDENT NDENT 0.0
--dwp <path> Use the specified DWP file at <path> for any CUs that have split DWARF debug data. NINDENT NDENT 0.0
--fallback-debug-path <path> When a separate file contains debug data, and is referenced by a GNU debug link section, use the specified path as a basis for locating the debug data if it cannot be found relative to the object. NINDENT NDENT 0.0
--filter-markup Reads from standard input, converts contained \%Symbolizer Markup into human-readable form, and prints the results to standard output. The following markup elements are not yet supported: NDENT 7.0
--functions [=<none|short|linkage>], -f Specify the way function names are printed (omit function name, print short function name, or print full linkage name, respectively). Defaults to linkage. NINDENT NDENT 0.0
--help, -h Show help and usage for this command. NINDENT NDENT 0.0
--inlining, --inlines, -i If a source code location is in an inlined function, prints all the inlined frames. This is the default. NINDENT NDENT 0.0
--no-inlines Don\(aqt print inlined frames. NINDENT NDENT 0.0
--no-demangle Don\(aqt print demangled function names. NINDENT NDENT 0.0
--obj <path>, --exe, -e Path to object file to be symbolized. If - is specified, read the object directly from the standard input stream. Mutually exclusive with \%--build-id. NINDENT NDENT 0.0
--output-style <LLVM|GNU|JSON> Specify the preferred output style. Defaults to LLVM. When the output style is set to GNU, the tool follows the style of GNU\(aqs addr2line. The differences from the LLVM style are: NDENT 7.0
JSON style provides a machine readable output in JSON. If addresses are supplied via stdin, the output JSON will be a series of individual objects. Otherwise, all results will be contained in a single array. NINDENT NDENT 7.0 NDENT 3.5
$ llvm-symbolizer --obj=inlined.elf 0x4004be 0x400486 -p baz() at /tmp/test.cpp:11:18 (inlined by) main at /tmp/test.cpp:15:0 foo() at /tmp/test.cpp:6:3 $ llvm-symbolizer --output-style=LLVM --obj=inlined.elf 0x4004be 0x400486 -p --no-inlines main at /tmp/test.cpp:11:18 foo() at /tmp/test.cpp:6:3 $ llvm-symbolizer --output-style=GNU --obj=inlined.elf 0x4004be 0x400486 -p --no-inlines baz() at /tmp/test.cpp:11 foo() at /tmp/test.cpp:6 $ clang -g -fdebug-info-for-profiling test.cpp -o profiling.elf $ llvm-symbolizer --output-style=GNU --obj=profiling.elf 0x401167 -p --no-inlines main at /tmp/test.cpp:15 (discriminator 2) $ llvm-symbolizer --output-style=JSON --obj=inlined.elf 0x4004be 0x400486 -p [ { \(dqAddress\(dq: \(dq0x4004be\(dq, \(dqModuleName\(dq: \(dqinlined.elf\(dq, \(dqSymbol\(dq: [ { \(dqColumn\(dq: 18, \(dqDiscriminator\(dq: 0, \(dqFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqFunctionName\(dq: \(dqbaz()\(dq, \(dqLine\(dq: 11, \(dqStartAddress\(dq: \(dq0x4004be\(dq, \(dqStartFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqStartLine\(dq: 9 }, { \(dqColumn\(dq: 0, \(dqDiscriminator\(dq: 0, \(dqFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqFunctionName\(dq: \(dqmain\(dq, \(dqLine\(dq: 15, \(dqStartAddress\(dq: \(dq0x4004be\(dq, \(dqStartFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqStartLine\(dq: 14 } ] }, { \(dqAddress\(dq: \(dq0x400486\(dq, \(dqModuleName\(dq: \(dqinlined.elf\(dq, \(dqSymbol\(dq: [ { \(dqColumn\(dq: 3, \(dqDiscriminator\(dq: 0, \(dqFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqFunctionName\(dq: \(dqfoo()\(dq, \(dqLine\(dq: 6, \(dqStartAddress\(dq: \(dq0x400486\(dq, \(dqStartFileName\(dq: \(dq/tmp/test.cpp\(dq, \(dqStartLine\(dq: 5 } ] } ]NINDENT NINDENT NINDENT NDENT 0.0
--pretty-print, -p Print human readable output. If \%--inlining is specified, the enclosing scope is prefixed by (inlined by). For JSON output, the option will cause JSON to be indented and split over new lines. Otherwise, the JSON output will be printed in a compact form. NDENT 7.0 NDENT 3.5
$ llvm-symbolizer --obj=inlined.elf 0x4004be --inlining --pretty-print baz() at /tmp/test.cpp:11:18 (inlined by) main at /tmp/test.cpp:15:0NINDENT NINDENT NINDENT NDENT 0.0
--print-address, --addresses, -a Print address before the source code location. Defaults to false. NDENT 7.0 NDENT 3.5
$ llvm-symbolizer --obj=inlined.elf --print-address 0x4004be 0x4004be baz() /tmp/test.cpp:11:18 main /tmp/test.cpp:15:0 $ llvm-symbolizer --obj=inlined.elf 0x4004be --pretty-print --print-address 0x4004be: baz() at /tmp/test.cpp:11:18 (inlined by) main at /tmp/test.cpp:15:0NINDENT NINDENT NINDENT NDENT 0.0
--print-source-context-lines <N> Print N lines of source context for each symbolized address. NDENT 7.0 NDENT 3.5
$ llvm-symbolizer --obj=test.elf 0x400490 --print-source-context-lines=3 baz() /tmp/test.cpp:11:0 10 : volatile int k = 42; 11 >: return foz() + k; 12 : }NINDENT NINDENT NINDENT NDENT 0.0
--relativenames Print the file\(aqs path relative to the compilation directory, instead of the absolute path. If the command-line to the compiler included the full path, this will be the same as the default. NINDENT NDENT 0.0
--verbose Print verbose address, line and column information. NDENT 7.0 NDENT 3.5
$ llvm-symbolizer --obj=inlined.elf --verbose 0x4004be baz() Filename: /tmp/test.cpp Function start filename: /tmp/test.cpp Function start line: 9 Function start address: 0x4004b6 Line: 11 Column: 18 main Filename: /tmp/test.cpp Function start filename: /tmp/test.cpp Function start line: 14 Function start address: 0x4004b0 Line: 15 Column: 18NINDENT NINDENT NINDENT NDENT 0.0
--version, -v Print version information for the tool. NINDENT NDENT 0.0
@<FILE> Read command-line options from response file <FILE>. NINDENT
NDENT 0.0--dia Use the Windows DIA SDK for symbolization. If the DIA SDK is not found, llvm-symbolizer will fall back to the native implementation. NINDENT
--default-arch <arch> If a binary contains object files for multiple architectures (e.g. it is a Mach-O universal binary), symbolize the object file for a given architecture. You can also specify the architecture by writing binary_name:arch_name in the input (see example below). If the architecture is not specified in either way, the address will not be symbolized. Defaults to empty string. NDENT 7.0 NDENT 3.5
$ cat addr.txt /tmp/mach_universal_binary:i386 0x1f84 /tmp/mach_universal_binary:x86_64 0x100000f24 $ llvm-symbolizer < addr.txt _main /tmp/source_i386.cc:8 _main /tmp/source_x86_64.cc:8NINDENT NINDENT NINDENT NDENT 0.0
--dsym-hint <path/to/file.dSYM> If the debug info for a binary isn\(aqt present in the default location, look for the debug info at the .dSYM path provided via this option. This flag can be used multiple times. NINDENT
.