Lines Matching refs:T
14 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
25 T=`mktemp` || die "cannot create temp file"
51 rm $T
215 touch $T.oo
221 echo All code >> $T.oo
222 echo ======== >> $T.oo
224 echo -n " .$type 0x" > $T.s
226 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
228 disas $T $pc_sub
230 cat $T.dis >> $T.oo
232 get_faultlinenum "$code" "$T.dis" $pc_sub
238 rm -f $T.o $T.s $T.dis
241 echo Code starting with the faulting instruction > $T.aa
242 echo =========================================== >> $T.aa
244 echo -n " .$type 0x" > $T.s
245 echo $code >> $T.s
246 disas $T 0
247 cat $T.dis >> $T.aa
249 cat $T.oo | sed -e "${faultlinenum}s/^\([^:]*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
251 cat $T.aa