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

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

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: 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 # movslq %ebp, %edx
3 63 d5
4 # sub (%rbp, %rdx), %eax
5 2b 44 15 00
6
7 # movslq %ebp, %rdx
8 48 63 d5
9 # sub (%rbp, %rdx), %eax
10 2b 44 15 00
11 @rval:
12 VALIDATOR: 0000000000000009: 2b 44 15 00 sub %eax, [%rbp+%rdx*1]
13 VALIDATOR: ERROR: Invalid index register in memory offset
14 VALIDATOR: Checking jump targets: 0 to d
15 VALIDATOR: Checking that basic blocks are aligned
16 *** <input> IS UNSAFE ***
17 @dis:
18 0000000000000000: 63 d5 movsxd %edx, %e bp
19 0000000000000002: 2b 44 15 00 sub %eax, [%rbp +%rdx*1]
20 0000000000000006: 48 63 d5 movsxd %rdx, %e bp
21 0000000000000009: 2b 44 15 00 sub %eax, [%rbp +%rdx*1]
22 @rdfa_output:
23 9: [0] improper memory address - bad index
24 return code: 1
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698