Lines Matching refs:T
11 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
22 T=`mktemp` || die "cannot create temp file"
48 rm $T
91 touch $T.oo
93 echo All code >> $T.oo
94 echo ======== >> $T.oo
96 echo -n " .$type 0x" > $T.s
97 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
98 disas $T
99 cat $T.dis >> $T.oo
100 rm -f $T.o $T.s $T.dis
105 echo Code starting with the faulting instruction > $T.aa
106 echo =========================================== >> $T.aa
108 echo -n " .$type 0x" > $T.s
109 echo $code >> $T.s
110 disas $T
111 cat $T.dis >> $T.aa
116 faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
117 $(wc -l $T.aa | cut -d" " -f1) + 3))
119 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
122 cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
124 cat $T.aa