2 # SPDX-License-Identifier: GPL-2.0
3 # (c) 2014, Sasha Levin <sasha.levin@oracle.com>
8 echo " $0 [vmlinux] [base path] [modules path]"
19 # The structure of symbol at this point is:
20 # ([name]+[offset]/[total length])
23 # do_basic_setup+0x9c/0xbf
25 if [[ $module == "" ]] ; then
26 local objfile
=$vmlinux
27 elif [[ "${modcache[$module]+isset}" == "isset" ]]; then
28 local objfile
=${modcache[$module]}
30 [[ $modpath == "" ]] && return
31 local objfile
=$
(find "$modpath" -name "${module//_/[-_]}.ko*" -print -quit)
32 [[ $objfile == "" ]] && return
33 modcache
[$module]=$objfile
36 # Remove the englobing parenthesis
42 if [[ $symbol == *:* ]] ; then
43 segment
=${symbol%%:*}:
47 # Strip the symbol name so that we could look it up
48 local name
=${symbol%+*}
50 # Use 'nm vmlinux' to figure out the base address of said symbol.
51 # It's actually faster to call it every time than to load it
53 if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then
54 local base_addr
=${cache[$module,$name]}
56 local base_addr
=$
(nm
"$objfile" |
grep -i ' t ' |
awk "/ $name\$/ {print \$1}" |
head -n1)
57 cache
[$module,$name]="$base_addr"
59 # Let's start doing the math to get the exact address into the
60 # symbol. First, strip out the symbol total length.
61 local expr=${symbol%/*}
63 # Now, replace the symbol name with the base address we found
65 expr=${expr/$name/0x$base_addr}
67 # Evaluate it to find the actual address
69 local address
=$
(printf "%x\n" "$expr")
71 # Pass it to addr2line to get filename and line number
72 # Could get more than one result
73 if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then
74 local code
=${cache[$module,$address]}
76 local code
=$
(${CROSS_COMPILE}addr2line
-i -e "$objfile" "$address")
77 cache
[$module,$address]=$code
80 # addr2line doesn't return a proper error code if it fails, so
81 # we detect it using the value it prints so that we could preserve
82 # the offset/size into the function and bail out
83 if [[ $code == "??:0" ]]; then
87 # Strip out the base of the path
88 code
=${code#$basepath/}
90 # In the case of inlines, move everything to same line
91 code
=${code//$'\n'/' '}
93 # Replace old address with pretty line numbers
94 symbol
="$segment$name ($code)"
98 local scripts
=`dirname "${BASH_SOURCE[0]}"`
100 echo "$1" |
$scripts/decodecode
107 read -a words
<<<"$1"
109 # Remove hex numbers. Do it ourselves until it happens in the
112 # We need to know the index of the last element before we
113 # remove elements because arrays are sparse
114 local last
=$
(( ${#words[@]} - 1 ))
116 for i
in "${!words[@]}"; do
118 if [[ ${words[$i]} =~ \
[\
<([^
]]+)\
>\
] ]]; then
122 # Format timestamps with tabs
123 if [[ ${words[$i]} == \
[ && ${words[$i+1]} == *\
] ]]; then
125 words
[$i+1]=$
(printf "[%13s\n" "${words[$i+1]}")
129 if [[ ${words[$last]} =~ \
[([^
]]+)\
] ]]; then
130 module
=${words[$last]}
133 symbol
=${words[$last-1]}
136 # The symbol is the last element, process it
137 symbol
=${words[$last]}
142 parse_symbol
# modifies $symbol
144 # Add up the line number to the symbol
145 echo "${words[@]}" "$symbol $module"
149 # Let's see if we have an address in the line
150 if [[ $line =~ \
[\
<([^
]]+)\
>\
] ]] ||
151 [[ $line =~
[^
+\
]+\
+0x
[0-9a-f]+/0x
[0-9a-f]+ ]]; then
152 # Translate address to line numbers
155 elif [[ $line == *Code
:* ]]; then
158 # Nothing special in this line, show it as is