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

Side by Side Diff: src/trusted/validator_x86/testdata/32/load-segment.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 # lds (%eax),%eax
5 asm: lds (%eax),%eax
6 hex: C5 00
7 nc_out: Illegal instruction
8
9 # les (%eax),%eax
10 asm: les (%eax),%eax
11 hex: C4 00
12 nc_out: Illegal instruction
13
14 # lfs (%eax),%eax
15 asm: lfs (%eax),%eax
16 hex: 0F B4 00
17 nc_out: Illegal instruction
18
19 # lgs (%eax),%eax
20 asm: lgs (%eax),%eax
21 hex: 0F B5 00
22 nc_out: Illegal instruction
23
24 # lss (%eax),%eax
25 asm: lss (%eax),%eax
26 hex: 0F B2 00
27 nc_out: Illegal instruction
28
29 # lfs (%eax),%ebx
30 asm: lfs (%eax),%ebx
31 hex: 0F B4 18
32 nc_out: Illegal instruction
33
34 # lgs (%eax),%ebx
35 asm: lgs (%eax),%ebx
36 hex: 0F B5 18
37 nc_out: Illegal instruction
38
39 # lss (%eax),%ebx
40 asm: lss (%eax),%ebx
41 hex: 0F B2 18
42 nc_out: Illegal instruction
43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698