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
98 touch $T.oo
100 echo All code >> $T.oo
101 echo ======== >> $T.oo
103 echo -n " .$type 0x" > $T.s
104 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
105 disas $T
106 cat $T.dis >> $T.oo
107 rm -f $T.o $T.s $T.dis
112 echo Code starting with the faulting instruction > $T.aa
113 echo =========================================== >> $T.aa
115 echo -n " .$type 0x" > $T.s
116 echo $code >> $T.s
117 disas $T
118 cat $T.dis >> $T.aa
123 faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
124 $(wc -l $T.aa | cut -d" " -f1) + 3))
126 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
129 cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
131 cat $T.aa