Merge tag 'v3.10.75' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / scripts / decodecode
CommitLineData
dcecc6c7
RD
1#!/bin/sh
2# Disassemble the Code: line in Linux oopses
3# usage: decodecode < oops.file
4#
5# options: set env. variable AFLAGS=options to pass options to "as";
6# e.g., to decode an i386 oops on an x86_64 system, use:
7# AFLAGS=--32 decodecode < 386.oops
8
fa220d89 9cleanup() {
5358db0b 10 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
fa220d89
RD
11 exit 1
12}
13
14die() {
15 echo "$@"
16 exit 1
17}
18
19trap cleanup EXIT
20
21T=`mktemp` || die "cannot create temp file"
dcecc6c7
RD
22code=
23
24while read i ; do
25
26case "$i" in
27*Code:*)
28 code=$i
29 ;;
30esac
31
32done
33
34if [ -z "$code" ]; then
fa220d89 35 rm $T
dcecc6c7
RD
36 exit
37fi
38
39echo $code
40code=`echo $code | sed -e 's/.*Code: //'`
41
5358db0b 42width=`expr index "$code" ' '`
b396aa03 43width=$((($width-1)/2))
5358db0b
RV
44case $width in
451) type=byte ;;
462) type=2byte ;;
474) type=4byte ;;
48esac
49
50disas() {
b396aa03 51 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
5358db0b 52
b396aa03
RV
53 if [ "$ARCH" = "arm" ]; then
54 if [ $width -eq 2 ]; then
5358db0b
RV
55 OBJDUMPFLAGS="-M force-thumb"
56 fi
57
58 ${CROSS_COMPILE}strip $1.o
59 fi
60
61 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
b396aa03 62 grep -v "/tmp\|Disassembly\|\.text\|^$" > $1.dis 2>&1
5358db0b
RV
63}
64
dcecc6c7
RD
65marker=`expr index "$code" "\<"`
66if [ $marker -eq 0 ]; then
67 marker=`expr index "$code" "\("`
68fi
69
846442c8 70touch $T.oo
dcecc6c7 71if [ $marker -ne 0 ]; then
846442c8
AV
72 echo All code >> $T.oo
73 echo ======== >> $T.oo
74 beforemark=`echo "$code"`
5358db0b
RV
75 echo -n " .$type 0x" > $T.s
76 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
77 disas $T
78 cat $T.dis >> $T.oo
79 rm -f $T.o $T.s $T.dis
dcecc6c7
RD
80
81# and fix code at-and-after marker
82 code=`echo "$code" | cut -c$((${marker} + 1))-`
83fi
846442c8
AV
84echo Code starting with the faulting instruction > $T.aa
85echo =========================================== >> $T.aa
5358db0b
RV
86code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
87echo -n " .$type 0x" > $T.s
dcecc6c7 88echo $code >> $T.s
5358db0b
RV
89disas $T
90cat $T.dis >> $T.aa
846442c8 91
18ff44b1
BP
92# (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
93# i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
94# special)
95faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
96 $(wc -l $T.aa | cut -d" " -f1) + 3))
97
2a95e37c 98faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
5358db0b 99faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
846442c8 100
18ff44b1 101cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
846442c8
AV
102echo
103cat $T.aa
104cleanup