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

Side by Side Diff: src/trusted/validator_x86/testdata/64/change-subregs.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: 64
2 OUTCOME: invalid
3
4 # Sample of updating subregisters of protected registers rsp, rbp, and r15
5 # 66 29 c4 sub %sp, %ax
6 # 66 29 c5 sub %bp, %ax
7 # 47 29 c7 sub %r15d, %r8d
8 asm: sub %ax,%sp
9 hex: 66 29 c4
10 nc_out: ERROR: Changing RegSP changes the value of RegRSP
11
12 asm: sub %ax,%bp
13 hex: 66 29 c5
14 nc_out: ERROR: Changing RegBP changes the value of RegRBP
15
16 hex: 47 29 c7
17 nc_out: ERROR: Changing RegR15D changes the value of RegR15
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698