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

Side by Side Diff: src/trusted/validator_x86/testdata/32/test_insts.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 # Test sample x86 32-bit instructions.
3 # push %ebp
4 # lea %esi, %ds[%esi+%esp*1]
5 # mov %eax, 0x55667788
6 # mov %ax, 0x7788
7 # mov %al, [0x11223344]
8
9 55
10 8d 74 26 00
11 b8 88 77 66 55
12 66 b8 88 77
13 a0 44 33 22 11
14 @nval:
15 *** <input> is safe ***
16 @dis:
17 00000000: 55 push %ebp
18 00000001: 8d 74 26 00 lea %esi, %ds:[%esi+%es p*1]
19 00000005: b8 88 77 66 55 mov %eax, 0x55667788
20 0000000a: 66 b8 88 77 mov %ax, 0x7788
21 0000000e: a0 44 33 22 11 mov %al, [0x11223344]
22 @vdis:
23 0: 55 push %ebp
24 1: 8d 74 26 00 lea %esi, 0x0[%esi]
25 5: b8 88 77 66 55 mov %eax, 0x55667788
26 a: 66 b8 88 77 mov %eax, 0x7788
27 e: a0 44 33 22 11 mov %al, [0x11223344]
28 @rdfa_output:
29 return code: 0
OLDNEW
« no previous file with comments | « src/trusted/validator_x86/testdata/32/test-9.test ('k') | src/trusted/validator_x86/testdata/32/tls.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698