Lines Matching refs:T
12 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
23 T=`mktemp` || die "cannot create temp file"
49 rm $T
111 touch $T.oo
115 echo All code >> $T.oo
116 echo ======== >> $T.oo
118 echo -n " .$type 0x" > $T.s
119 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
120 disas $T $pc_sub
121 cat $T.dis >> $T.oo
122 rm -f $T.o $T.s $T.dis
127 echo Code starting with the faulting instruction > $T.aa
128 echo =========================================== >> $T.aa
130 echo -n " .$type 0x" > $T.s
131 echo $code >> $T.s
132 disas $T 0
133 cat $T.dis >> $T.aa
138 faultlinenum=$(( $(wc -l $T.oo | cut -d" " -f1) - \
139 $(wc -l $T.aa | cut -d" " -f1) + 3))
141 faultline=`cat $T.dis | head -1 | cut -d":" -f2-`
144 cat $T.oo | sed -e "${faultlinenum}s/^\([^:]*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/"
146 cat $T.aa