Lines Matching +full:0 +full:- +full:9 +full:a +full:- +full:f
1 #!/bin/awk -f
2 # Usage: objdump -d a.out | awk -f distill.awk | ./test_get_len
4 # - Removes all lines except the disassembled instructions.
5 # - For instructions that exceed 1 line (7 bytes), crams all the hex bytes
6 # into a single line.
7 # - Remove bad(or prefix only) instructions
14 fwait_expr = "^9b "
15 fwait_str="9b\tfwait"
18 /^ *[0-9a-f]+ <[^>]*>:/ {
23 /^ *[0-9a-f]+:/ {
24 if (split($0, field, "\t") < 3) {
25 # This is a continuation of the same insn.
31 # Split fwait from other f* instructions