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

Side by Side Diff: src/trusted/validator_x86/testdata/32/stubout.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 # Sample stubout code, with multiple stubouts.
5 #
6 # add %ds:[%eax], %al
7 hex: 00 00
8
9 # ret
10 asm: ret
11 hex: c3
12 nc_out: ret instruction (not allowed)
13 nc_out: Illegal instruction
14
15 # add %eax, %eax
16 asm: add %eax,%eax
17 hex: 01 c0
18
19 # Too many prefix bytes
20 hex: 66 66 66 66 00 00
21 nc_out: Bad prefix usage
22
23 # nop
24 asm: nop
25 hex: 90
26
27 # lea %esi, %ds:[%esi+%esp*1]
28 hex: 8d 74 26 00
29
30 # Too many prefix bytes
31 hex: 66 66 66 66 00 00
32 nc_out: Bad prefix usage
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698