]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - scripts/decodecode
x86/msr-index: Cleanup bit defines
[mirror_ubuntu-bionic-kernel.git] / scripts / decodecode
CommitLineData
dcecc6c7 1#!/bin/sh
b2441318 2# SPDX-License-Identifier: GPL-2.0
dcecc6c7
RD
3# Disassemble the Code: line in Linux oopses
4# usage: decodecode < oops.file
5#
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
fa220d89 10cleanup() {
5358db0b 11 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
fa220d89
RD
12 exit 1
13}
14
15die() {
16 echo "$@"
17 exit 1
18}
19
20trap cleanup EXIT
21
22T=`mktemp` || die "cannot create temp file"
dcecc6c7
RD
23code=
24
25while read i ; do
26
27case "$i" in
28*Code:*)
29 code=$i
30 ;;
31esac
32
33done
34
35if [ -z "$code" ]; then
fa220d89 36 rm $T
dcecc6c7
RD
37 exit
38fi
39
40echo $code
41code=`echo $code | sed -e 's/.*Code: //'`
42
5358db0b 43width=`expr index "$code" ' '`
b396aa03 44width=$((($width-1)/2))
5358db0b
RV
45case $width in
461) type=byte ;;
472) type=2byte ;;
484) type=4byte ;;
49esac
50
51disas() {
b396aa03 52 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
5358db0b 53
b396aa03
RV
54 if [ "$ARCH" = "arm" ]; then
55 if [ $width -eq 2 ]; then
5358db0b
RV
56 OBJDUMPFLAGS="-M force-thumb"
57 fi
58
59 ${CROSS_COMPILE}strip $1.o
60 fi
61
be9fa663
WD
62 if [ "$ARCH" = "arm64" ]; then
63 if [ $width -eq 4 ]; then
64 type=inst
65 fi
66
67 ${CROSS_COMPILE}strip $1.o
68 fi
69
5358db0b 70 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $1.o | \
b396aa03 71 grep -v "/tmp\|Disassembly\|\.text\|^$" > $1.dis 2>&1
5358db0b
RV
72}
73
dcecc6c7
RD
74marker=`expr index "$code" "\<"`
75if [ $marker -eq 0 ]; then
76 marker=`expr index "$code" "\("`
77fi
78
846442c8 79touch $T.oo
dcecc6c7 80if [ $marker -ne 0 ]; then
846442c8
AV
81 echo All code >> $T.oo
82 echo ======== >> $T.oo
83 beforemark=`echo "$code"`
5358db0b
RV
84 echo -n " .$type 0x" > $T.s
85 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
86 disas $T
87 cat $T.dis >> $T.oo
88 rm -f $T.o $T.s $T.dis
dcecc6c7
RD
89
90# and fix code at-and-after marker
91 code=`echo "$code" | cut -c$((${marker} + 1))-`
92fi
846442c8
AV
93echo Code starting with the faulting instruction > $T.aa
94echo =========================================== >> $T.aa
5358db0b
RV
95code=`echo $code | sed -e 's/ [<(]/ /;s/[>)] / /;s/ /,0x/g; s/[>)]$//'`
96echo -n " .$type 0x" > $T.s
dcecc6c7 97echo $code >> $T.s
5358db0b
RV
98disas $T
99cat $T.dis >> $T.aa
846442c8 100
18ff44b1
BP
101# (lines of whole $T.oo) - (lines of $T.aa, i.e. "Code starting") + 3,
102# i.e. the title + the "===..=" line (sed is counting from 1, 0 address is
103# special)
104faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
105 $(wc -l $T.aa | cut -d" " -f1) + 3))
106
2a95e37c 107faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
5358db0b 108faultline=`echo "$faultline" | sed -e 's/\[/\\\[/g; s/\]/\\\]/g'`
846442c8 109
18ff44b1 110cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
846442c8
AV
111echo
112cat $T.aa
113cleanup