Home | History | Annotate | Download | only in tools

Lines Matching refs:bin

0 #!/bin/bash
10 sed -nre 's|([^ ]*/[^ ]*)\(\+0x([^)]*).*|\1 \2|p' "$input"|sort|uniq|while read bin addr; do
11 if test "$lastbin" != "$bin"; then
13 lastbin="$bin"
14 echo "$bin" > "$dir/$i.addrs.bin"
21 bin="$(<"$i.bin")"
22 addr2line -p -e "$bin" -a -f < "$i"|sed -nre 's@^0x0*([^:]*): ([^?]*)$@s|'"$bin"'(+0x\1)|\2|g@gp'
23 rm -f "$i" "$i.bin"