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

Side by Side Diff: src/trusted/validator_x86/testdata/32/bt.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 legal bit commands
5 # btw $0x1,(%esp)
6 asm: btw $0x1,(%esp)
7 hex: 66 0f ba 24 24 01
8 nc_out: Undefined instruction
9
10 asm: nop; nop; nop; nop; nop
11 hex: 90 90 90 90 90
12
13 # btl $0x1,(%esp)
14 asm: btl $0x1,(%esp)
15 hex: 0f ba 24 24 01
16 nc_out: Illegal instruction
17
18 # btrl $0x1,(%esp)
19 asm: btrl $0x1,(%esp)
20 hex: 0f ba 34 24 01
21 nc_out: Illegal instruction
22
23 # btsl $0x1,(%esp)
24 asm: btsl $0x1,(%esp)
25 hex: 0f ba 2c 24 01
26 nc_out: Illegal instruction
27
28 # btcl $0x1,(%esp)
29 asm: btcl $0x1,(%esp)
30 hex: 0f ba 3c 24 01
31 nc_out: Illegal instruction
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698