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

Unified Diff: src/trusted/validator_x86/testdata/64/indirect_jmp_masked.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 side-by-side diff with in-line comments
Download patch
Index: src/trusted/validator_x86/testdata/64/indirect_jmp_masked.test
diff --git a/src/trusted/validator_x86/testdata/64/indirect_jmp_masked.test b/src/trusted/validator_x86/testdata/64/indirect_jmp_masked.test
deleted file mode 100644
index 724feafb118b707d113bc6d57034acc39dce2860..0000000000000000000000000000000000000000
--- a/src/trusted/validator_x86/testdata/64/indirect_jmp_masked.test
+++ /dev/null
@@ -1,57 +0,0 @@
-@hex:
- # Model a case where an indirect jump is properly masked.
- # and %edx, 0xe0
- 83 e2 e0
- # add %rdx, %r15
- 4c 01 fa
- # jmp %rdx
- ff e2
- #
- # Model a case where an indirect jump is no longer properly masked.
- # and %edx, 0xe0
- 83 e2 e0
- # lea %r9, [%r15+%rdx*1]
- 4D 8D 0C 17
- # jmp %r9
- 41 FF E1
-
-@val:
- VALIDATOR: 000000000000000f: 41 ff e1 jmp %r9
- VALIDATOR: ERROR: Invalid indirect jump
- VALIDATOR: Checking jump targets: 0 to 12
- VALIDATOR: Checking that basic blocks are aligned
- *** <input> IS UNSAFE ***
-@rval:
- VALIDATOR: 000000000000000f: 41 ff e1 jmp %r9
- VALIDATOR: ERROR: Invalid indirect jump
- VALIDATOR: Checking jump targets: 0 to 12
- VALIDATOR: Checking that basic blocks are aligned
- *** <input> IS UNSAFE ***
-@rvald:
- VALIDATOR: 000000000000000f: 41 ff e1 jmp %r9
- VALIDATOR: ERROR: Invalid indirect jump
- VALIDATOR: Checking block alignment and jump targets: 0 to 12
- *** <input> IS UNSAFE ***
-@vd-rval:
- VALIDATOR: 000000000000000f: 41 ff e1 [P] dontcarejump %rip (s), %r9 (u)
- VALIDATOR: ERROR: Invalid indirect jump
- VALIDATOR: Checking jump targets: 0 to 12
- VALIDATOR: Checking that basic blocks are aligned
- *** <input> IS UNSAFE ***
-@dis:
- 0000000000000000: 83 e2 e0 and %edx, 0xe0
- 0000000000000003: 4c 01 fa add %rdx, %r15
- 0000000000000006: ff e2 jmp %rdx
- 0000000000000008: 83 e2 e0 and %edx, 0xe0
- 000000000000000b: 4d 8d 0c 17 lea %r9, [%r15+%rdx*1]
- 000000000000000f: 41 ff e1 jmp %r9
-@vdis:
- 0000000000000000: 83 e2 e0 and %edx, 0xe0
- 0000000000000003: 4c 01 fa add %rdx, %r15
- 0000000000000006: ff e2 [P] dontcarejump %rip (s), %rdx (u)
- 0000000000000008: 83 e2 e0 and %edx, 0xe0
- 000000000000000b: 4d 8d 0c 17 lea %r9, [%r15+%rdx*1]
- 000000000000000f: 41 ff e1 [P] dontcarejump %rip (s), %r9 (u)
-@rdfa_output:
- f: [0] unrecognized instruction
- return code: 1
« no previous file with comments | « src/trusted/validator_x86/testdata/64/incno67.test ('k') | src/trusted/validator_x86/testdata/64/indirect_jmp_not_masked.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698