Lines Matching full:file
27 file=asm_$f.s
28 get_asm $f > $file
29 tot=$(wc -l < $file)
31 rsp=$(grep '(%rsp)' $file | wc -l)
32 push=$(grep 'push' $file | wc -l)
33 pop=$(grep 'pop' $file | wc -l)
34 call=$(grep 'call' $file | wc -l)
35 load=$(egrep 'mov .*\,.*\(.*\)|cmp .*\,.*\(.*\)' $file | wc -l)
36 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
37 mov=$(grep 'mov' $file | wc -l)
38 lea=$(grep 'lea' $file | wc -l)
39 sh=$(grep 'shr\|shl' $file | wc -l)
40 cmp=$(grep 'cmp\|test' $file | wc -l)