OLD | NEW |
| (Empty) |
1 @hex: | |
2 # test 15: invalid instruction | |
3 90 0f ae 21 | |
4 90 90 90 90 90 90 f4 | |
5 @nval: | |
6 VALIDATOR: 1: Illegal instruction | |
7 *** <input> IS UNSAFE *** | |
8 @nvals: | |
9 VALIDATOR: 1: Illegal instruction | |
10 *** <input> IS UNSAFE *** | |
11 | |
12 Opcode Histogram; | |
13 1 0x0f 7 0x90 1 0xf4 | |
14 Analysis Summary: | |
15 9 Checked instructions | |
16 0 checked jump targets | |
17 0 calls/jumps need dynamic checking (0.00%) | |
18 | |
19 Problems: | |
20 1 illegal instructions | |
21 0 bad jump targets | |
22 0 illegal unprotected indirect jumps (including ret) | |
23 0 instruction alignment defects | |
24 0 segmentation errors | |
25 0 bad prefix | |
26 0 bad instruction length | |
27 0 internal errors | |
28 @dis: | |
29 00000000: 90 nop | |
30 00000001: 0f ae 21 invalid | |
31 00000004: 90 nop | |
32 00000005: 90 nop | |
33 00000006: 90 nop | |
34 00000007: 90 nop | |
35 00000008: 90 nop | |
36 00000009: 90 nop | |
37 0000000a: f4 hlt | |
38 @vdis: | |
39 0: 90 nop | |
40 1: 0f ae 21 invalid [%ecx] | |
41 4: 90 nop | |
42 5: 90 nop | |
43 6: 90 nop | |
44 7: 90 nop | |
45 8: 90 nop | |
46 9: 90 nop | |
47 a: f4 hlt | |
48 @rdfa_output: | |
49 1: [0] unrecognized instruction | |
50 return code: 1 | |
OLD | NEW |