Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: src/trusted/validator_x86/testdata/32/test-1.tf

Issue 10908137: (abandoned) Validator tests: convert hexes to TFs and run on bots (for prod. validator only) (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: restore 'read overflow' and 'SegmentationError' Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 BITS: 32
2 OUTCOME: invalid
3
4 # test 1: a first very simple test with an illegal inst.
5 asm: push %ebp
6 hex: 55
7
8 asm: mov %esp,%ebp
9 hex: 89 e5
10
11 asm: sub $0x8,%esp
12 hex: 83 ec 08
13
14 asm: call .+134
15 hex: e8 81 00 00 00
16 nc_out: JUMP TARGET out of range
17
18 asm: call .+216
19 hex: e8 d3 00 00 00
20 nc_out: JUMP TARGET out of range
21
22 asm: call .+1272
23 hex: e8 f3 04 00 00
24 nc_out: JUMP TARGET out of range
25
26 asm: leave
27 hex: c9
28
29 asm: ret
30 hex: c3
31 nc_out: ret instruction (not allowed)
32 nc_out: Illegal instruction
33
34 asm: add %al,(%eax); hlt
35 hex: 00 00 f4
36
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698