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

Side by Side Diff: src/trusted/validator_x86/testdata/64/inc_dec.test

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 @hex:
2 # Check that inc and dec are considered zero-extending instructions.
3 # inc %ecx
4 ff c1 \\
5 # and (%rsp, %rcx, 1), %esi
6 23 34 0c
7
8 # dec %ecx
9 ff c9 \\
10 # and (%rsp, %rcx, 1), %esi
11 23 34 0c
12 @rval:
13 VALIDATOR: Checking jump targets: 0 to a
14 VALIDATOR: Checking that basic blocks are aligned
15 *** <input> is safe ***
16 @dis:
17 0000000000000000: ff c1 inc %ecx
18 0000000000000002: 23 34 0c and %esi, [%rsp +%rcx*1]
19 0000000000000005: ff c9 dec %ecx
20 0000000000000007: 23 34 0c and %esi, [%rsp +%rcx*1]
21 @rdfa_output:
22 return code: 0
OLDNEW
« no previous file with comments | « src/trusted/validator_x86/testdata/64/inc67.test ('k') | src/trusted/validator_x86/testdata/64/incno67.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698