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

Side by Side Diff: src/trusted/validator_x86/testdata/32/fpu.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: 32
2 OUTCOME: valid
3
4 # Load floating point value
5 # flds (%eax)
6 asm: flds (%eax)
7 hex: D9 00
8
9 # fldl (%eax)
10 asm: fldl (%eax)
11 hex: DD 00
12
13 # fldt (%eax)
14 asm: fldt (%eax)
15 hex: DB 28
16
17
18 # Load integer value
19 # fildl (%eax)
20 asm: fildl (%eax)
21 hex: DB 00
22
23 # fildq (%eax)
24 asm: fildll (%eax)
25 hex: DF 28
26
27
28 # Store floating point value
29 # fsts (%eax)
30 asm: fsts (%eax)
31 hex: D9 10
32
33 # fstl (%eax)
34 asm: fstl (%eax)
35 hex: DD 10
36
37 # fstps (%eax)
38 asm: fstps (%eax)
39 hex: D9 18
40
41 # fstpl (%eax)
42 asm: fstpl (%eax)
43 hex: DD 18
44
45 # fstpt (%eax)
46 asm: fstpt (%eax)
47 hex: DB 38
48
49
50 # Store integer value
51 # fists (%eax)
52 asm: fist (%eax)
53 hex: DF 10
54
55 # fistl (%eax)
56 asm: fistl (%eax)
57 hex: DB 10
58
59 # fistps (%eax)
60 asm: fistp (%eax)
61 hex: DF 18
62
63 # fistpl (%eax)
64 asm: fistpl (%eax)
65 hex: DB 18
66
67 # fistpq (%eax)
68 asm: fistpll (%eax)
69 hex: DF 38
70
71
72 # Basic arithmetic
73 # fadd %st(1),%st(0)
74 asm: fadd %st(1),%st
75 hex: D8 C1
76
77 # faddp %st(0),%st(1)
78 asm: faddp %st,%st(1)
79 hex: DE C1
80
81 # fadds (%eax)
82 asm: fadds (%eax)
83 hex: D8 00
84
85 # faddl (%eax)
86 asm: faddl (%eax)
87 hex: DC 00
88
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698