-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisas
executable file
·44 lines (40 loc) · 1.13 KB
/
disas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
## Prettyfier of objdump assembly (AT&T, nice line graphics)
# One-liner:
#objdump --disassembler-options=suffix --insn-width=12 --visualize-jumps=extended-color -dr "$@" | c++filt | less
color='--disassembler-color=extended'
jumps="--visualize-jumps=extended-color"
insns="--insn-width=12"
prefix=""
default=""
while getopts "cijp" arg; do
case "$arg" in
h)
echo "Usage: $0 [-cijp] objectfile"
exit
;;
c) color= ;;
i) insns="--no-show-raw-insn" ;;
j) jumps= ;;
p) prefix="--prefix-addresses" ;;
esac
done
shift $((OPTIND-1))
# https://symbl.cc/en/unicode/blocks/box-drawing/
# !separation matters, order matters!
objdump "$default" "$color" "$prefix" "$insns" "$jumps" \
-dr "$@" | c++filt |
sed -e 's/\s+[\/,]-/┌─/' |
sed -e 's/\s+[\/,]\([^m]*m\)-/┌\1─/' |
sed -e "s/[\\']/└/g" |
sed -e 's/|/│/g' |
sed -e 's/---/───/g' |
sed -e 's/--/──/g' |
sed -e 's/─-/──/g' |
sed -e 's/─\([^m]*m\)-/─\1─/g' |
sed -e 's/-\([^m]*m\)-/─\1─/g' |
sed -e 's/->/─>/' |
sed -e 's/-\([^m]*m\)>/─\>/' |
sed -e 's/[+>]─/├─/' |
sed -e 's/[+>]\([^m]*m\)─/├\1─/' |
less