2 # SPDX-License-Identifier: GPL-2.0
3 # Disassemble the Code: line in Linux oopses
4 # usage: decodecode < oops.file
6 # options: set env. variable AFLAGS=options to pass options to "as";
7 # e.g., to decode an i386 oops on an x86_64 system, use:
8 # AFLAGS=--32 decodecode < 386.oops
9 # PC=hex - the PC (program counter) the oops points to
12 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
23 T=`mktemp` || die "cannot create temp file"
36 xdump="$(echo $i | grep '^[[:xdigit:]<>[:space:]]\+$')"
37 if [ -n "$xdump" ]; then
48 if [ -z "$code" ]; then
54 code=`echo $code | sed -e 's/.*Code: //'`
56 width=`expr index "$code" ' '`
57 width=$((($width-1)/2))
64 if [ -z "$ARCH" ]; then
66 aarch64*) ARCH=arm64 ;;
71 # Params: (tmp_file, pc_sub)
76 ${CROSS_COMPILE}as $AFLAGS -o $t.o $t.s > /dev/null 2>&1
78 if [ "$ARCH" = "arm" ]; then
79 if [ $width -eq 2 ]; then
80 OBJDUMPFLAGS="-M force-thumb"
83 ${CROSS_COMPILE}strip $t.o
86 if [ "$ARCH" = "arm64" ]; then
87 if [ $width -eq 4 ]; then
91 ${CROSS_COMPILE}strip $t.o
94 if [ $pc_sub -ne 0 ]; then
96 adj_vma=$(( $PC - $pc_sub ))
97 OBJDUMPFLAGS="$OBJDUMPFLAGS --adjust-vma=$adj_vma"
101 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $t.o | \
102 grep -v "/tmp\|Disassembly\|\.text\|^$" > $t.dis 2>&1
105 marker=`expr index "$code" "\<"`
106 if [ $marker -eq 0 ]; then
107 marker=`expr index "$code" "\("`
112 if [ $marker -ne 0 ]; then
113 # 2 opcode bytes and a single space
114 pc_sub=$(( $marker / 3 ))
115 echo All code >> $T.oo
116 echo ======== >> $T.oo
117 beforemark=`echo "$code"`
118 echo -n " .$type 0x" > $T.s
119 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
122 rm -f $T.o $T.s $T.dis
124 # and fix code at-and-after marker
125 code=`echo "$code" | cut -c$((${marker} + 1))-`
127 echo Code starting with the faulting instruction > $T.aa
128 echo =========================================== >> $T.aa
129 code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
130 echo -n " .$type 0x" > $T.s
135 # (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
136 # i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
138 faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
139 $(wc -l $T.aa | cut -d" " -f1) + 3))
141 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
142 faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
144 cat $T.oo | sed -e "${faultlinenum}s/^\([^:]*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"