annotate src/cpu/sparc/vm/sparc.ad @ 420:a1980da045cc

6462850: generate biased locking code in C2 ideal graph Summary: Inline biased locking code in C2 ideal graph during macro nodes expansion Reviewed-by: never
author kvn
date Fri, 07 Nov 2008 09:29:38 -0800
parents 4d9884b01ba6
children 6c4cda924d2e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 //
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 182
diff changeset
2 // Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 //
a61af66fc99e Initial load
duke
parents:
diff changeset
5 // This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 // under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 // published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9 // This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 // version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 // accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 //
a61af66fc99e Initial load
duke
parents:
diff changeset
15 // You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 // 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 // Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 //
a61af66fc99e Initial load
duke
parents:
diff changeset
19 // Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 // CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 // have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 //
a61af66fc99e Initial load
duke
parents:
diff changeset
23 //
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // SPARC Architecture Description File
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 //----------REGISTER DEFINITION BLOCK------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // This information is used by the matcher and the register allocator to
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // describe individual registers and classes of registers within the target
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // archtecture.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 register %{
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //----------Architecture Description Register Definitions----------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // General Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // "reg_def" name ( register save type, C convention save type,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // ideal register type, encoding, vm name );
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Register Save Types:
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // NS = No-Save: The register allocator assumes that these registers
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // can be used without saving upon entry to the method, &
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // that they do not need to be saved at call sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 //
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // SOC = Save-On-Call: The register allocator assumes that these registers
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // can be used without saving upon entry to the method,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // but that they must be saved at call sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 //
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // SOE = Save-On-Entry: The register allocator assumes that these registers
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // must be saved before using them upon entry to the
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // method, but they do not need to be saved at call
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 //
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // AS = Always-Save: The register allocator assumes that these registers
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // must be saved before using them upon entry to the
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // method, & that they must be saved at call sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Ideal Register Type is used to determine how to save & restore a
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // register. Op_RegI will get spilled with LoadI/StoreI, Op_RegP will get
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // spilled with LoadP/StoreP. If the register supports both, use Op_RegI.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 //
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // The encoding number is the actual bit-pattern placed into the opcodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Integer/Long Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Need to expose the hi/lo aspect of 64-bit registers
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // This register set is used for both the 64-bit build and
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // the 32-bit build with 1-register longs.
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Global Registers 0-7
a61af66fc99e Initial load
duke
parents:
diff changeset
71 reg_def R_G0H( NS, NS, Op_RegI,128, G0->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
72 reg_def R_G0 ( NS, NS, Op_RegI, 0, G0->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
73 reg_def R_G1H(SOC, SOC, Op_RegI,129, G1->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
74 reg_def R_G1 (SOC, SOC, Op_RegI, 1, G1->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
75 reg_def R_G2H( NS, NS, Op_RegI,130, G2->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
76 reg_def R_G2 ( NS, NS, Op_RegI, 2, G2->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
77 reg_def R_G3H(SOC, SOC, Op_RegI,131, G3->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
78 reg_def R_G3 (SOC, SOC, Op_RegI, 3, G3->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
79 reg_def R_G4H(SOC, SOC, Op_RegI,132, G4->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
80 reg_def R_G4 (SOC, SOC, Op_RegI, 4, G4->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
81 reg_def R_G5H(SOC, SOC, Op_RegI,133, G5->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
82 reg_def R_G5 (SOC, SOC, Op_RegI, 5, G5->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
83 reg_def R_G6H( NS, NS, Op_RegI,134, G6->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
84 reg_def R_G6 ( NS, NS, Op_RegI, 6, G6->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
85 reg_def R_G7H( NS, NS, Op_RegI,135, G7->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
86 reg_def R_G7 ( NS, NS, Op_RegI, 7, G7->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Output Registers 0-7
a61af66fc99e Initial load
duke
parents:
diff changeset
89 reg_def R_O0H(SOC, SOC, Op_RegI,136, O0->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
90 reg_def R_O0 (SOC, SOC, Op_RegI, 8, O0->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
91 reg_def R_O1H(SOC, SOC, Op_RegI,137, O1->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
92 reg_def R_O1 (SOC, SOC, Op_RegI, 9, O1->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
93 reg_def R_O2H(SOC, SOC, Op_RegI,138, O2->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
94 reg_def R_O2 (SOC, SOC, Op_RegI, 10, O2->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
95 reg_def R_O3H(SOC, SOC, Op_RegI,139, O3->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
96 reg_def R_O3 (SOC, SOC, Op_RegI, 11, O3->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
97 reg_def R_O4H(SOC, SOC, Op_RegI,140, O4->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
98 reg_def R_O4 (SOC, SOC, Op_RegI, 12, O4->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
99 reg_def R_O5H(SOC, SOC, Op_RegI,141, O5->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
100 reg_def R_O5 (SOC, SOC, Op_RegI, 13, O5->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
101 reg_def R_SPH( NS, NS, Op_RegI,142, SP->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
102 reg_def R_SP ( NS, NS, Op_RegI, 14, SP->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
103 reg_def R_O7H(SOC, SOC, Op_RegI,143, O7->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
104 reg_def R_O7 (SOC, SOC, Op_RegI, 15, O7->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Local Registers 0-7
a61af66fc99e Initial load
duke
parents:
diff changeset
107 reg_def R_L0H( NS, NS, Op_RegI,144, L0->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
108 reg_def R_L0 ( NS, NS, Op_RegI, 16, L0->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
109 reg_def R_L1H( NS, NS, Op_RegI,145, L1->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
110 reg_def R_L1 ( NS, NS, Op_RegI, 17, L1->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
111 reg_def R_L2H( NS, NS, Op_RegI,146, L2->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
112 reg_def R_L2 ( NS, NS, Op_RegI, 18, L2->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
113 reg_def R_L3H( NS, NS, Op_RegI,147, L3->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
114 reg_def R_L3 ( NS, NS, Op_RegI, 19, L3->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
115 reg_def R_L4H( NS, NS, Op_RegI,148, L4->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
116 reg_def R_L4 ( NS, NS, Op_RegI, 20, L4->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
117 reg_def R_L5H( NS, NS, Op_RegI,149, L5->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
118 reg_def R_L5 ( NS, NS, Op_RegI, 21, L5->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
119 reg_def R_L6H( NS, NS, Op_RegI,150, L6->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
120 reg_def R_L6 ( NS, NS, Op_RegI, 22, L6->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
121 reg_def R_L7H( NS, NS, Op_RegI,151, L7->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
122 reg_def R_L7 ( NS, NS, Op_RegI, 23, L7->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Input Registers 0-7
a61af66fc99e Initial load
duke
parents:
diff changeset
125 reg_def R_I0H( NS, NS, Op_RegI,152, I0->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
126 reg_def R_I0 ( NS, NS, Op_RegI, 24, I0->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
127 reg_def R_I1H( NS, NS, Op_RegI,153, I1->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
128 reg_def R_I1 ( NS, NS, Op_RegI, 25, I1->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
129 reg_def R_I2H( NS, NS, Op_RegI,154, I2->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 reg_def R_I2 ( NS, NS, Op_RegI, 26, I2->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
131 reg_def R_I3H( NS, NS, Op_RegI,155, I3->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
132 reg_def R_I3 ( NS, NS, Op_RegI, 27, I3->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
133 reg_def R_I4H( NS, NS, Op_RegI,156, I4->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
134 reg_def R_I4 ( NS, NS, Op_RegI, 28, I4->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
135 reg_def R_I5H( NS, NS, Op_RegI,157, I5->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
136 reg_def R_I5 ( NS, NS, Op_RegI, 29, I5->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
137 reg_def R_FPH( NS, NS, Op_RegI,158, FP->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
138 reg_def R_FP ( NS, NS, Op_RegI, 30, FP->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
139 reg_def R_I7H( NS, NS, Op_RegI,159, I7->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
140 reg_def R_I7 ( NS, NS, Op_RegI, 31, I7->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Float/Double Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Float Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
147 reg_def R_F0 ( SOC, SOC, Op_RegF, 0, F0->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
148 reg_def R_F1 ( SOC, SOC, Op_RegF, 1, F1->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
149 reg_def R_F2 ( SOC, SOC, Op_RegF, 2, F2->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
150 reg_def R_F3 ( SOC, SOC, Op_RegF, 3, F3->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
151 reg_def R_F4 ( SOC, SOC, Op_RegF, 4, F4->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
152 reg_def R_F5 ( SOC, SOC, Op_RegF, 5, F5->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
153 reg_def R_F6 ( SOC, SOC, Op_RegF, 6, F6->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
154 reg_def R_F7 ( SOC, SOC, Op_RegF, 7, F7->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
155 reg_def R_F8 ( SOC, SOC, Op_RegF, 8, F8->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
156 reg_def R_F9 ( SOC, SOC, Op_RegF, 9, F9->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
157 reg_def R_F10( SOC, SOC, Op_RegF, 10, F10->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
158 reg_def R_F11( SOC, SOC, Op_RegF, 11, F11->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
159 reg_def R_F12( SOC, SOC, Op_RegF, 12, F12->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
160 reg_def R_F13( SOC, SOC, Op_RegF, 13, F13->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
161 reg_def R_F14( SOC, SOC, Op_RegF, 14, F14->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
162 reg_def R_F15( SOC, SOC, Op_RegF, 15, F15->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
163 reg_def R_F16( SOC, SOC, Op_RegF, 16, F16->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
164 reg_def R_F17( SOC, SOC, Op_RegF, 17, F17->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
165 reg_def R_F18( SOC, SOC, Op_RegF, 18, F18->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
166 reg_def R_F19( SOC, SOC, Op_RegF, 19, F19->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
167 reg_def R_F20( SOC, SOC, Op_RegF, 20, F20->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
168 reg_def R_F21( SOC, SOC, Op_RegF, 21, F21->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
169 reg_def R_F22( SOC, SOC, Op_RegF, 22, F22->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
170 reg_def R_F23( SOC, SOC, Op_RegF, 23, F23->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
171 reg_def R_F24( SOC, SOC, Op_RegF, 24, F24->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
172 reg_def R_F25( SOC, SOC, Op_RegF, 25, F25->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
173 reg_def R_F26( SOC, SOC, Op_RegF, 26, F26->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
174 reg_def R_F27( SOC, SOC, Op_RegF, 27, F27->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
175 reg_def R_F28( SOC, SOC, Op_RegF, 28, F28->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
176 reg_def R_F29( SOC, SOC, Op_RegF, 29, F29->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
177 reg_def R_F30( SOC, SOC, Op_RegF, 30, F30->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
178 reg_def R_F31( SOC, SOC, Op_RegF, 31, F31->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Double Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // The rules of ADL require that double registers be defined in pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Each pair must be two 32-bit values, but not necessarily a pair of
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // single float registers. In each pair, ADLC-assigned register numbers
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // must be adjacent, with the lower number even. Finally, when the
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // CPU stores such a register pair to memory, the word associated with
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // the lower ADLC-assigned number must be stored to the lower address.
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // These definitions specify the actual bit encodings of the sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // double fp register numbers. FloatRegisterImpl in register_sparc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // wants 0-63, so we have to convert every time we want to use fp regs
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // with the macroassembler, using reg_to_DoubleFloatRegister_object().
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // 255 is a flag meaning 'dont go here'.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // I believe we can't handle callee-save doubles D32 and up until
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // the place in the sparc stack crawler that asserts on the 255 is
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // fixed up.
a61af66fc99e Initial load
duke
parents:
diff changeset
196 reg_def R_D32x(SOC, SOC, Op_RegD,255, F32->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
197 reg_def R_D32 (SOC, SOC, Op_RegD, 1, F32->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
198 reg_def R_D34x(SOC, SOC, Op_RegD,255, F34->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
199 reg_def R_D34 (SOC, SOC, Op_RegD, 3, F34->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
200 reg_def R_D36x(SOC, SOC, Op_RegD,255, F36->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
201 reg_def R_D36 (SOC, SOC, Op_RegD, 5, F36->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
202 reg_def R_D38x(SOC, SOC, Op_RegD,255, F38->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
203 reg_def R_D38 (SOC, SOC, Op_RegD, 7, F38->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
204 reg_def R_D40x(SOC, SOC, Op_RegD,255, F40->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
205 reg_def R_D40 (SOC, SOC, Op_RegD, 9, F40->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
206 reg_def R_D42x(SOC, SOC, Op_RegD,255, F42->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
207 reg_def R_D42 (SOC, SOC, Op_RegD, 11, F42->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
208 reg_def R_D44x(SOC, SOC, Op_RegD,255, F44->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
209 reg_def R_D44 (SOC, SOC, Op_RegD, 13, F44->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
210 reg_def R_D46x(SOC, SOC, Op_RegD,255, F46->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
211 reg_def R_D46 (SOC, SOC, Op_RegD, 15, F46->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
212 reg_def R_D48x(SOC, SOC, Op_RegD,255, F48->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
213 reg_def R_D48 (SOC, SOC, Op_RegD, 17, F48->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
214 reg_def R_D50x(SOC, SOC, Op_RegD,255, F50->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
215 reg_def R_D50 (SOC, SOC, Op_RegD, 19, F50->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
216 reg_def R_D52x(SOC, SOC, Op_RegD,255, F52->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
217 reg_def R_D52 (SOC, SOC, Op_RegD, 21, F52->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
218 reg_def R_D54x(SOC, SOC, Op_RegD,255, F54->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
219 reg_def R_D54 (SOC, SOC, Op_RegD, 23, F54->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
220 reg_def R_D56x(SOC, SOC, Op_RegD,255, F56->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
221 reg_def R_D56 (SOC, SOC, Op_RegD, 25, F56->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
222 reg_def R_D58x(SOC, SOC, Op_RegD,255, F58->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
223 reg_def R_D58 (SOC, SOC, Op_RegD, 27, F58->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
224 reg_def R_D60x(SOC, SOC, Op_RegD,255, F60->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
225 reg_def R_D60 (SOC, SOC, Op_RegD, 29, F60->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
226 reg_def R_D62x(SOC, SOC, Op_RegD,255, F62->as_VMReg());
a61af66fc99e Initial load
duke
parents:
diff changeset
227 reg_def R_D62 (SOC, SOC, Op_RegD, 31, F62->as_VMReg()->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // Special Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Condition Codes Flag Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // I tried to break out ICC and XCC but it's not very pretty.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Every Sparc instruction which defs/kills one also kills the other.
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Hence every compare instruction which defs one kind of flags ends
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // up needing a kill of the other.
a61af66fc99e Initial load
duke
parents:
diff changeset
237 reg_def CCR (SOC, SOC, Op_RegFlags, 0, VMRegImpl::Bad());
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 reg_def FCC0(SOC, SOC, Op_RegFlags, 0, VMRegImpl::Bad());
a61af66fc99e Initial load
duke
parents:
diff changeset
240 reg_def FCC1(SOC, SOC, Op_RegFlags, 1, VMRegImpl::Bad());
a61af66fc99e Initial load
duke
parents:
diff changeset
241 reg_def FCC2(SOC, SOC, Op_RegFlags, 2, VMRegImpl::Bad());
a61af66fc99e Initial load
duke
parents:
diff changeset
242 reg_def FCC3(SOC, SOC, Op_RegFlags, 3, VMRegImpl::Bad());
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Specify the enum values for the registers. These enums are only used by the
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // OptoReg "class". We can convert these enum values at will to VMReg when needed
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // for visibility to the rest of the vm. The order of this enum influences the
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // register allocator so having the freedom to set this order and not be stuck
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // with the order that is natural for the rest of the vm is worth it.
a61af66fc99e Initial load
duke
parents:
diff changeset
250 alloc_class chunk0(
a61af66fc99e Initial load
duke
parents:
diff changeset
251 R_L0,R_L0H, R_L1,R_L1H, R_L2,R_L2H, R_L3,R_L3H, R_L4,R_L4H, R_L5,R_L5H, R_L6,R_L6H, R_L7,R_L7H,
a61af66fc99e Initial load
duke
parents:
diff changeset
252 R_G0,R_G0H, R_G1,R_G1H, R_G2,R_G2H, R_G3,R_G3H, R_G4,R_G4H, R_G5,R_G5H, R_G6,R_G6H, R_G7,R_G7H,
a61af66fc99e Initial load
duke
parents:
diff changeset
253 R_O7,R_O7H, R_SP,R_SPH, R_O0,R_O0H, R_O1,R_O1H, R_O2,R_O2H, R_O3,R_O3H, R_O4,R_O4H, R_O5,R_O5H,
a61af66fc99e Initial load
duke
parents:
diff changeset
254 R_I0,R_I0H, R_I1,R_I1H, R_I2,R_I2H, R_I3,R_I3H, R_I4,R_I4H, R_I5,R_I5H, R_FP,R_FPH, R_I7,R_I7H);
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Note that a register is not allocatable unless it is also mentioned
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // in a widely-used reg_class below. Thus, R_G7 and R_G0 are outside i_reg.
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 alloc_class chunk1(
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // The first registers listed here are those most likely to be used
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // as temporaries. We move F0..F7 away from the front of the list,
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // to reduce the likelihood of interferences with parameters and
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // return values. Likewise, we avoid using F0/F1 for parameters,
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // since they are used for return values.
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // This FPU fine-tuning is worth about 1% on the SPEC geomean.
a61af66fc99e Initial load
duke
parents:
diff changeset
266 R_F8 ,R_F9 ,R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
a61af66fc99e Initial load
duke
parents:
diff changeset
267 R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,
a61af66fc99e Initial load
duke
parents:
diff changeset
268 R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,R_F30,R_F31,
a61af66fc99e Initial load
duke
parents:
diff changeset
269 R_F0 ,R_F1 ,R_F2 ,R_F3 ,R_F4 ,R_F5 ,R_F6 ,R_F7 , // used for arguments and return values
a61af66fc99e Initial load
duke
parents:
diff changeset
270 R_D32,R_D32x,R_D34,R_D34x,R_D36,R_D36x,R_D38,R_D38x,
a61af66fc99e Initial load
duke
parents:
diff changeset
271 R_D40,R_D40x,R_D42,R_D42x,R_D44,R_D44x,R_D46,R_D46x,
a61af66fc99e Initial load
duke
parents:
diff changeset
272 R_D48,R_D48x,R_D50,R_D50x,R_D52,R_D52x,R_D54,R_D54x,
a61af66fc99e Initial load
duke
parents:
diff changeset
273 R_D56,R_D56x,R_D58,R_D58x,R_D60,R_D60x,R_D62,R_D62x);
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 alloc_class chunk2(CCR, FCC0, FCC1, FCC2, FCC3);
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 //----------Architecture Description Register Classes--------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Several register classes are automatically defined based upon information in
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // this architecture description.
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // 1) reg_class inline_cache_reg ( as defined in frame section )
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // 2) reg_class interpreter_method_oop_reg ( as defined in frame section )
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // 3) reg_class stack_slots( /* one chunk of stack-based "registers" */ )
a61af66fc99e Initial load
duke
parents:
diff changeset
283 //
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // G0 is not included in integer class since it has special meaning.
a61af66fc99e Initial load
duke
parents:
diff changeset
286 reg_class g0_reg(R_G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // Integer Register Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // Exclusions from i_reg:
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // R_G0: hardwired zero
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // R_G2: reserved by HotSpot to the TLS register (invariant within Java)
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // R_G6: reserved by Solaris ABI to tools
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // R_G7: reserved by Solaris ABI to libthread
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // R_O7: Used as a temp in many encodings
a61af66fc99e Initial load
duke
parents:
diff changeset
297 reg_class int_reg(R_G1,R_G3,R_G4,R_G5,R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Class for all integer registers, except the G registers. This is used for
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // encodings which use G registers as temps. The regular inputs to such
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // instructions use a "notemp_" prefix, as a hack to ensure that the allocator
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // will not put an input into a temp register.
a61af66fc99e Initial load
duke
parents:
diff changeset
303 reg_class notemp_int_reg(R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 reg_class g1_regI(R_G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 reg_class g3_regI(R_G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 reg_class g4_regI(R_G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 reg_class o0_regI(R_O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 reg_class o7_regI(R_O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // Pointer Register Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
314 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // 64-bit build means 64-bit pointers means hi/lo pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
316 reg_class ptr_reg( R_G1H,R_G1, R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
317 R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5,
a61af66fc99e Initial load
duke
parents:
diff changeset
318 R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
319 R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // Lock encodings use G3 and G4 internally
a61af66fc99e Initial load
duke
parents:
diff changeset
321 reg_class lock_ptr_reg( R_G1H,R_G1, R_G5H,R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
322 R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5,
a61af66fc99e Initial load
duke
parents:
diff changeset
323 R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
324 R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
325 // Special class for storeP instructions, which can store SP or RPC to TLS.
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // It is also used for memory addressing, allowing direct TLS addressing.
a61af66fc99e Initial load
duke
parents:
diff changeset
327 reg_class sp_ptr_reg( R_G1H,R_G1, R_G2H,R_G2, R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
328 R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5, R_SPH,R_SP,
a61af66fc99e Initial load
duke
parents:
diff changeset
329 R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5, R_FPH,R_FP );
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // R_L7 is the lowest-priority callee-save (i.e., NS) register
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // We use it to save R_G2 across calls out of Java.
a61af66fc99e Initial load
duke
parents:
diff changeset
333 reg_class l7_regP(R_L7H,R_L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // Other special pointer regs
a61af66fc99e Initial load
duke
parents:
diff changeset
336 reg_class g1_regP(R_G1H,R_G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 reg_class g2_regP(R_G2H,R_G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 reg_class g3_regP(R_G3H,R_G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 reg_class g4_regP(R_G4H,R_G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 reg_class g5_regP(R_G5H,R_G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
341 reg_class i0_regP(R_I0H,R_I0);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 reg_class o0_regP(R_O0H,R_O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 reg_class o1_regP(R_O1H,R_O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 reg_class o2_regP(R_O2H,R_O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 reg_class o7_regP(R_O7H,R_O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // 32-bit build means 32-bit pointers means 1 register.
a61af66fc99e Initial load
duke
parents:
diff changeset
349 reg_class ptr_reg( R_G1, R_G3,R_G4,R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
350 R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,
a61af66fc99e Initial load
duke
parents:
diff changeset
351 R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
352 R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // Lock encodings use G3 and G4 internally
a61af66fc99e Initial load
duke
parents:
diff changeset
354 reg_class lock_ptr_reg(R_G1, R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
355 R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,
a61af66fc99e Initial load
duke
parents:
diff changeset
356 R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
357 R_I0,R_I1,R_I2,R_I3,R_I4,R_I5);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Special class for storeP instructions, which can store SP or RPC to TLS.
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // It is also used for memory addressing, allowing direct TLS addressing.
a61af66fc99e Initial load
duke
parents:
diff changeset
360 reg_class sp_ptr_reg( R_G1,R_G2,R_G3,R_G4,R_G5,
a61af66fc99e Initial load
duke
parents:
diff changeset
361 R_O0,R_O1,R_O2,R_O3,R_O4,R_O5,R_SP,
a61af66fc99e Initial load
duke
parents:
diff changeset
362 R_L0,R_L1,R_L2,R_L3,R_L4,R_L5,R_L6,R_L7,
a61af66fc99e Initial load
duke
parents:
diff changeset
363 R_I0,R_I1,R_I2,R_I3,R_I4,R_I5,R_FP);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // R_L7 is the lowest-priority callee-save (i.e., NS) register
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // We use it to save R_G2 across calls out of Java.
a61af66fc99e Initial load
duke
parents:
diff changeset
366 reg_class l7_regP(R_L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // Other special pointer regs
a61af66fc99e Initial load
duke
parents:
diff changeset
369 reg_class g1_regP(R_G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 reg_class g2_regP(R_G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 reg_class g3_regP(R_G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 reg_class g4_regP(R_G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 reg_class g5_regP(R_G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 reg_class i0_regP(R_I0);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 reg_class o0_regP(R_O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 reg_class o1_regP(R_O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 reg_class o2_regP(R_O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 reg_class o7_regP(R_O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // Long Register Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // Longs in 1 register. Aligned adjacent hi/lo pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // Note: O7 is never in this class; it is sometimes used as an encoding temp.
a61af66fc99e Initial load
duke
parents:
diff changeset
387 reg_class long_reg( R_G1H,R_G1, R_G3H,R_G3, R_G4H,R_G4, R_G5H,R_G5
a61af66fc99e Initial load
duke
parents:
diff changeset
388 ,R_O0H,R_O0, R_O1H,R_O1, R_O2H,R_O2, R_O3H,R_O3, R_O4H,R_O4, R_O5H,R_O5
a61af66fc99e Initial load
duke
parents:
diff changeset
389 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // 64-bit, longs in 1 register: use all 64-bit integer registers
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // 32-bit, longs in 1 register: cannot use I's and L's. Restrict to O's and G's.
a61af66fc99e Initial load
duke
parents:
diff changeset
392 ,R_L0H,R_L0, R_L1H,R_L1, R_L2H,R_L2, R_L3H,R_L3, R_L4H,R_L4, R_L5H,R_L5, R_L6H,R_L6, R_L7H,R_L7
a61af66fc99e Initial load
duke
parents:
diff changeset
393 ,R_I0H,R_I0, R_I1H,R_I1, R_I2H,R_I2, R_I3H,R_I3, R_I4H,R_I4, R_I5H,R_I5
a61af66fc99e Initial load
duke
parents:
diff changeset
394 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
395 );
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 reg_class g1_regL(R_G1H,R_G1);
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
398 reg_class g3_regL(R_G3H,R_G3);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
399 reg_class o2_regL(R_O2H,R_O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
400 reg_class o7_regL(R_O7H,R_O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // Special Class for Condition Code Flags Register
a61af66fc99e Initial load
duke
parents:
diff changeset
404 reg_class int_flags(CCR);
a61af66fc99e Initial load
duke
parents:
diff changeset
405 reg_class float_flags(FCC0,FCC1,FCC2,FCC3);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 reg_class float_flag0(FCC0);
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // Float Point Register Classes
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // ----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // Skip F30/F31, they are reserved for mem-mem copies
a61af66fc99e Initial load
duke
parents:
diff changeset
413 reg_class sflt_reg(R_F0,R_F1,R_F2,R_F3,R_F4,R_F5,R_F6,R_F7,R_F8,R_F9,R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29);
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // Paired floating point registers--they show up in the same order as the floats,
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
417 reg_class dflt_reg(R_F0, R_F1, R_F2, R_F3, R_F4, R_F5, R_F6, R_F7, R_F8, R_F9, R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
a61af66fc99e Initial load
duke
parents:
diff changeset
418 R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,
a61af66fc99e Initial load
duke
parents:
diff changeset
419 /* Use extra V9 double registers; this AD file does not support V8 */
a61af66fc99e Initial load
duke
parents:
diff changeset
420 R_D32,R_D32x,R_D34,R_D34x,R_D36,R_D36x,R_D38,R_D38x,R_D40,R_D40x,R_D42,R_D42x,R_D44,R_D44x,R_D46,R_D46x,
a61af66fc99e Initial load
duke
parents:
diff changeset
421 R_D48,R_D48x,R_D50,R_D50x,R_D52,R_D52x,R_D54,R_D54x,R_D56,R_D56x,R_D58,R_D58x,R_D60,R_D60x,R_D62,R_D62x
a61af66fc99e Initial load
duke
parents:
diff changeset
422 );
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // Paired floating point registers--they show up in the same order as the floats,
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // but they are used with the "Op_RegD" type, and always occur in even/odd pairs.
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // This class is usable for mis-aligned loads as happen in I2C adapters.
a61af66fc99e Initial load
duke
parents:
diff changeset
427 reg_class dflt_low_reg(R_F0, R_F1, R_F2, R_F3, R_F4, R_F5, R_F6, R_F7, R_F8, R_F9, R_F10,R_F11,R_F12,R_F13,R_F14,R_F15,
a61af66fc99e Initial load
duke
parents:
diff changeset
428 R_F16,R_F17,R_F18,R_F19,R_F20,R_F21,R_F22,R_F23,R_F24,R_F25,R_F26,R_F27,R_F28,R_F29,R_F30,R_F31 );
a61af66fc99e Initial load
duke
parents:
diff changeset
429 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431 //----------DEFINITION BLOCK---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // Define name --> value mappings to inform the ADLC of an integer valued name
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // Current support includes integer values in the range [0, 0x7FFFFFFF]
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // Format:
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // int_def <name> ( <int_value>, <expression>);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Generated Code in ad_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // #define <name> (<expression>)
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // // value == <int_value>
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // Generated code in ad_<arch>.cpp adlc_verification()
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // assert( <name> == <int_value>, "Expect (<expression>) to equal <int_value>");
a61af66fc99e Initial load
duke
parents:
diff changeset
441 //
a61af66fc99e Initial load
duke
parents:
diff changeset
442 definitions %{
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // The default cost (of an ALU instruction).
a61af66fc99e Initial load
duke
parents:
diff changeset
444 int_def DEFAULT_COST ( 100, 100);
a61af66fc99e Initial load
duke
parents:
diff changeset
445 int_def HUGE_COST (1000000, 1000000);
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // Memory refs are twice as expensive as run-of-the-mill.
a61af66fc99e Initial load
duke
parents:
diff changeset
448 int_def MEMORY_REF_COST ( 200, DEFAULT_COST * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // Branches are even more expensive.
a61af66fc99e Initial load
duke
parents:
diff changeset
451 int_def BRANCH_COST ( 300, DEFAULT_COST * 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
452 int_def CALL_COST ( 300, DEFAULT_COST * 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 //----------SOURCE BLOCK-------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // This is a block of C++ code which provides values, functions, and
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // definitions necessary in the rest of the architecture description
a61af66fc99e Initial load
duke
parents:
diff changeset
459 source_hpp %{
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // Must be visible to the DFA in dfa_sparc.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
461 extern bool can_branch_register( Node *bol, Node *cmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // Macros to extract hi & lo halves from a long pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // G0 is not part of any long pair, so assert on that.
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // Prevents accidently using G1 instead of G0.
a61af66fc99e Initial load
duke
parents:
diff changeset
466 #define LONG_HI_REG(x) (x)
a61af66fc99e Initial load
duke
parents:
diff changeset
467 #define LONG_LO_REG(x) (x)
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 source %{
a61af66fc99e Initial load
duke
parents:
diff changeset
472 #define __ _masm.
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // tertiary op of a LoadP or StoreP encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
475 #define REGP_OP true
a61af66fc99e Initial load
duke
parents:
diff changeset
476
a61af66fc99e Initial load
duke
parents:
diff changeset
477 static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 static Register reg_to_register_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Used by the DFA in dfa_sparc.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // Check for being able to use a V9 branch-on-register. Requires a
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // compare-vs-zero, equal/not-equal, of a value which was zero- or sign-
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // extended. Doesn't work following an integer ADD, for example, because of
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // overflow (-1 incremented yields 0 plus a carry in the high-order word). On
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // 32-bit V9 systems, interrupts currently blow away the high-order 32 bits and
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // replace them with zero, which could become sign-extension in a different OS
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // release. There's no obvious reason why an interrupt will ever fill these
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // bits with non-zero junk (the registers are reloaded with standard LD
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // instructions which either zero-fill or sign-fill).
a61af66fc99e Initial load
duke
parents:
diff changeset
491 bool can_branch_register( Node *bol, Node *cmp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 if( !BranchOnRegister ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if( cmp->Opcode() == Op_CmpP )
a61af66fc99e Initial load
duke
parents:
diff changeset
495 return true; // No problems with pointer compares
a61af66fc99e Initial load
duke
parents:
diff changeset
496 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
497 if( cmp->Opcode() == Op_CmpL )
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return true; // No problems with long compares
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 if( !SparcV9RegsHiBitsZero ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
501 if( bol->as_Bool()->_test._test != BoolTest::ne &&
a61af66fc99e Initial load
duke
parents:
diff changeset
502 bol->as_Bool()->_test._test != BoolTest::eq )
a61af66fc99e Initial load
duke
parents:
diff changeset
503 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // Check for comparing against a 'safe' value. Any operation which
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // clears out the high word is safe. Thus, loads and certain shifts
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // are safe, as are non-negative constants. Any operation which
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // preserves zero bits in the high word is safe as long as each of its
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // inputs are safe. Thus, phis and bitwise booleans are safe if their
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // inputs are safe. At present, the only important case to recognize
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // seems to be loads. Constants should fold away, and shifts &
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // logicals can use the 'cc' forms.
a61af66fc99e Initial load
duke
parents:
diff changeset
513 Node *x = cmp->in(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
514 if( x->is_Load() ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 if( x->is_Phi() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 for( uint i = 1; i < x->req(); i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if( !x->in(i)->is_Load() )
a61af66fc99e Initial load
duke
parents:
diff changeset
518 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
521 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // ****************************************************************************
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // REQUIRED FUNCTIONALITY
a61af66fc99e Initial load
duke
parents:
diff changeset
527
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // !!!!! Special hack to get all type of calls to specify the byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // from the start of the call to the point where the return address
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // will point.
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // The "return address" is the address of the call instruction, plus 8.
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 int MachCallStaticJavaNode::ret_addr_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 return NativeCall::instruction_size; // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 int MachCallDynamicJavaNode::ret_addr_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 int vtable_index = this->_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 if (vtable_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // must be invalid_vtable_index, not nonvirtual_vtable_index
a61af66fc99e Initial load
duke
parents:
diff changeset
541 assert(vtable_index == methodOopDesc::invalid_vtable_index, "correct sentinel value");
a61af66fc99e Initial load
duke
parents:
diff changeset
542 return (NativeMovConstReg::instruction_size +
a61af66fc99e Initial load
duke
parents:
diff changeset
543 NativeCall::instruction_size); // sethi; setlo; call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
544 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
545 assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
a61af66fc99e Initial load
duke
parents:
diff changeset
546 int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
547 int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
548 int klass_load_size;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
549 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
550 klass_load_size = 3*BytesPerInstWord; // see MacroAssembler::load_klass()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
551 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
552 klass_load_size = 1*BytesPerInstWord;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
553 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
554 if( Assembler::is_simm13(v_off) ) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
555 return klass_load_size +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
556 (2*BytesPerInstWord + // ld_ptr, ld_ptr
0
a61af66fc99e Initial load
duke
parents:
diff changeset
557 NativeCall::instruction_size); // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
558 } else {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
559 return klass_load_size +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
560 (4*BytesPerInstWord + // set_hi, set, ld_ptr, ld_ptr
0
a61af66fc99e Initial load
duke
parents:
diff changeset
561 NativeCall::instruction_size); // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 int MachCallRuntimeNode::ret_addr_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
567 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
568 return NativeFarCall::instruction_size; // farcall; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
569 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
570 return NativeCall::instruction_size; // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
571 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Indicate if the safepoint node needs the polling page as an input.
a61af66fc99e Initial load
duke
parents:
diff changeset
575 // Since Sparc does not have absolute addressing, it does.
a61af66fc99e Initial load
duke
parents:
diff changeset
576 bool SafePointNode::needs_polling_address_input() {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 // emit an interrupt that is caught by the debugger (for debugging compiler)
a61af66fc99e Initial load
duke
parents:
diff changeset
581 void emit_break(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
582 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
583 __ breakpoint_trap();
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
587 void MachBreakpointNode::format( PhaseRegAlloc *, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 st->print("TA");
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 void MachBreakpointNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 emit_break(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 uint MachBreakpointNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
597 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // Traceable jump
a61af66fc99e Initial load
duke
parents:
diff changeset
601 void emit_jmpl(CodeBuffer &cbuf, int jump_target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 Register rdest = reg_to_register_object(jump_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
604 __ JMP(rdest, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
605 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // Traceable jump and set exception pc
a61af66fc99e Initial load
duke
parents:
diff changeset
609 void emit_jmpl_set_exception_pc(CodeBuffer &cbuf, int jump_target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
610 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
611 Register rdest = reg_to_register_object(jump_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
612 __ JMP(rdest, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
613 __ delayed()->add(O7, frame::pc_return_offset, Oissuing_pc );
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 void emit_nop(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
617 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
618 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620
a61af66fc99e Initial load
duke
parents:
diff changeset
621 void emit_illtrap(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
623 __ illtrap(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 intptr_t get_offset_from_base(const MachNode* n, const TypePtr* atype, int disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 assert(n->rule() != loadUB_rule, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 intptr_t offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
631 const TypePtr *adr_type = TYPE_PTR_SENTINAL; // Check for base==RegI, disp==immP
a61af66fc99e Initial load
duke
parents:
diff changeset
632 const Node* addr = n->get_base_and_disp(offset, adr_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
633 assert(adr_type == (const TypePtr*)-1, "VerifyOops: no support for sparc operands with base==RegI, disp==immP");
a61af66fc99e Initial load
duke
parents:
diff changeset
634 assert(addr != NULL && addr != (Node*)-1, "invalid addr");
a61af66fc99e Initial load
duke
parents:
diff changeset
635 assert(addr->bottom_type()->isa_oopptr() == atype, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
636 atype = atype->add_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
637 assert(disp32 == offset, "wrong disp32");
a61af66fc99e Initial load
duke
parents:
diff changeset
638 return atype->_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 intptr_t get_offset_from_base_2(const MachNode* n, const TypePtr* atype, int disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
643 assert(n->rule() != loadUB_rule, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
644
a61af66fc99e Initial load
duke
parents:
diff changeset
645 intptr_t offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
646 Node* addr = n->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
647 assert(addr->bottom_type()->isa_oopptr() == atype, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
648 if (addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
649 Node* a = addr->in(2/*AddPNode::Address*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
650 Node* o = addr->in(3/*AddPNode::Offset*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 offset = o->is_Con() ? o->bottom_type()->is_intptr_t()->get_con() : Type::OffsetBot;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 atype = a->bottom_type()->is_ptr()->add_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
653 assert(atype->isa_oop_ptr(), "still an oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655 offset = atype->is_ptr()->_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 if (offset != Type::OffsetBot) offset += disp32;
a61af66fc99e Initial load
duke
parents:
diff changeset
657 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // Standard Sparc opcode form2 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
661 static inline void emit2_19(CodeBuffer &cbuf, int f30, int f29, int f25, int f22, int f20, int f19, int f0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 f0 &= (1<<19)-1; // Mask displacement to 19 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
663 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
664 (f29 << 29) |
a61af66fc99e Initial load
duke
parents:
diff changeset
665 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
666 (f22 << 22) |
a61af66fc99e Initial load
duke
parents:
diff changeset
667 (f20 << 20) |
a61af66fc99e Initial load
duke
parents:
diff changeset
668 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
669 (f0 << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
671 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
672 }
a61af66fc99e Initial load
duke
parents:
diff changeset
673
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // Standard Sparc opcode form2 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
675 static inline void emit2_22(CodeBuffer &cbuf, int f30, int f25, int f22, int f0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
676 f0 >>= 10; // Drop 10 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
677 f0 &= (1<<22)-1; // Mask displacement to 22 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
678 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
679 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
680 (f22 << 22) |
a61af66fc99e Initial load
duke
parents:
diff changeset
681 (f0 << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
682 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
683 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // Standard Sparc opcode form3 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
687 static inline void emit3(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int f5, int f0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
689 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
690 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
691 (f14 << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
692 (f5 << 5) |
a61af66fc99e Initial load
duke
parents:
diff changeset
693 (f0 << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
695 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
696 }
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 // Standard Sparc opcode form3 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
699 static inline void emit3_simm13(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm13 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 simm13 &= (1<<13)-1; // Mask to 13 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
701 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
702 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
703 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
704 (f14 << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
705 (1 << 13) | // bit to indicate immediate-mode
a61af66fc99e Initial load
duke
parents:
diff changeset
706 (simm13<<0);
a61af66fc99e Initial load
duke
parents:
diff changeset
707 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
708 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
709 }
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 static inline void emit3_simm10(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm10 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 simm10 &= (1<<10)-1; // Mask to 10 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
713 emit3_simm13(cbuf,f30,f25,f19,f14,simm10);
a61af66fc99e Initial load
duke
parents:
diff changeset
714 }
a61af66fc99e Initial load
duke
parents:
diff changeset
715
a61af66fc99e Initial load
duke
parents:
diff changeset
716 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // Helper function for VerifyOops in emit_form3_mem_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
718 void verify_oops_warning(const MachNode *n, int ideal_op, int mem_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
719 warning("VerifyOops encountered unexpected instruction:");
a61af66fc99e Initial load
duke
parents:
diff changeset
720 n->dump(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
721 warning("Instruction has ideal_Opcode==Op_%s and op_ld==Op_%s \n", NodeClassNames[ideal_op], NodeClassNames[mem_op]);
a61af66fc99e Initial load
duke
parents:
diff changeset
722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
723 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
724
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 void emit_form3_mem_reg(CodeBuffer &cbuf, const MachNode* n, int primary, int tertiary,
a61af66fc99e Initial load
duke
parents:
diff changeset
727 int src1_enc, int disp32, int src2_enc, int dst_enc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
730 // The following code implements the +VerifyOops feature.
a61af66fc99e Initial load
duke
parents:
diff changeset
731 // It verifies oop values which are loaded into or stored out of
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // the current method activation. +VerifyOops complements techniques
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // like ScavengeALot, because it eagerly inspects oops in transit,
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // as they enter or leave the stack, as opposed to ScavengeALot,
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // which inspects oops "at rest", in the stack or heap, at safepoints.
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // For this reason, +VerifyOops can sometimes detect bugs very close
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // to their point of creation. It can also serve as a cross-check
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // on the validity of oop maps, when used toegether with ScavengeALot.
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740 // It would be good to verify oops at other points, especially
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // when an oop is used as a base pointer for a load or store.
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // This is presently difficult, because it is hard to know when
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // a base address is biased or not. (If we had such information,
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // it would be easy and useful to make a two-argument version of
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // verify_oop which unbiases the base, and performs verification.)
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 assert((uint)tertiary == 0xFFFFFFFF || tertiary == REGP_OP, "valid tertiary");
a61af66fc99e Initial load
duke
parents:
diff changeset
748 bool is_verified_oop_base = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
749 bool is_verified_oop_load = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
750 bool is_verified_oop_store = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
751 int tmp_enc = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 if (VerifyOops && src1_enc != R_SP_enc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 // classify the op, mainly for an assert check
a61af66fc99e Initial load
duke
parents:
diff changeset
754 int st_op = 0, ld_op = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 switch (primary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 case Assembler::stb_op3: st_op = Op_StoreB; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 case Assembler::sth_op3: st_op = Op_StoreC; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
758 case Assembler::stx_op3: // may become StoreP or stay StoreI or StoreD0
a61af66fc99e Initial load
duke
parents:
diff changeset
759 case Assembler::stw_op3: st_op = Op_StoreI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
760 case Assembler::std_op3: st_op = Op_StoreL; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
761 case Assembler::stf_op3: st_op = Op_StoreF; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 case Assembler::stdf_op3: st_op = Op_StoreD; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 case Assembler::ldsb_op3: ld_op = Op_LoadB; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
765 case Assembler::lduh_op3: ld_op = Op_LoadC; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
766 case Assembler::ldsh_op3: ld_op = Op_LoadS; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
767 case Assembler::ldx_op3: // may become LoadP or stay LoadI
a61af66fc99e Initial load
duke
parents:
diff changeset
768 case Assembler::ldsw_op3: // may become LoadP or stay LoadI
a61af66fc99e Initial load
duke
parents:
diff changeset
769 case Assembler::lduw_op3: ld_op = Op_LoadI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
770 case Assembler::ldd_op3: ld_op = Op_LoadL; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
771 case Assembler::ldf_op3: ld_op = Op_LoadF; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
772 case Assembler::lddf_op3: ld_op = Op_LoadD; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
773 case Assembler::ldub_op3: ld_op = Op_LoadB; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
774 case Assembler::prefetch_op3: ld_op = Op_LoadI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
775
a61af66fc99e Initial load
duke
parents:
diff changeset
776 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
777 }
a61af66fc99e Initial load
duke
parents:
diff changeset
778 if (tertiary == REGP_OP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 if (st_op == Op_StoreI) st_op = Op_StoreP;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 else if (ld_op == Op_LoadI) ld_op = Op_LoadP;
a61af66fc99e Initial load
duke
parents:
diff changeset
781 else ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
782 if (st_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
783 // a store
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // inputs are (0:control, 1:memory, 2:address, 3:value)
a61af66fc99e Initial load
duke
parents:
diff changeset
785 Node* n2 = n->in(3);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 if (n2 != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 const Type* t = n2->bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
788 is_verified_oop_store = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
a61af66fc99e Initial load
duke
parents:
diff changeset
789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
790 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // a load
a61af66fc99e Initial load
duke
parents:
diff changeset
792 const Type* t = n->bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
793 is_verified_oop_load = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
a61af66fc99e Initial load
duke
parents:
diff changeset
794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 if (ld_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
798 // a Load
a61af66fc99e Initial load
duke
parents:
diff changeset
799 // inputs are (0:control, 1:memory, 2:address)
a61af66fc99e Initial load
duke
parents:
diff changeset
800 if (!(n->ideal_Opcode()==ld_op) && // Following are special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
801 !(n->ideal_Opcode()==Op_LoadLLocked && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
802 !(n->ideal_Opcode()==Op_LoadPLocked && ld_op==Op_LoadP) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
803 !(n->ideal_Opcode()==Op_LoadI && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
804 !(n->ideal_Opcode()==Op_LoadF && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
805 !(n->ideal_Opcode()==Op_LoadRange && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
806 !(n->ideal_Opcode()==Op_LoadKlass && ld_op==Op_LoadP) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
807 !(n->ideal_Opcode()==Op_LoadL && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
808 !(n->ideal_Opcode()==Op_LoadL_unaligned && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
809 !(n->ideal_Opcode()==Op_LoadD_unaligned && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
810 !(n->ideal_Opcode()==Op_ConvI2F && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
811 !(n->ideal_Opcode()==Op_ConvI2D && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
812 !(n->ideal_Opcode()==Op_PrefetchRead && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
813 !(n->ideal_Opcode()==Op_PrefetchWrite && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
814 !(n->rule() == loadUB_rule)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 verify_oops_warning(n, n->ideal_Opcode(), ld_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 } else if (st_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
818 // a Store
a61af66fc99e Initial load
duke
parents:
diff changeset
819 // inputs are (0:control, 1:memory, 2:address, 3:value)
a61af66fc99e Initial load
duke
parents:
diff changeset
820 if (!(n->ideal_Opcode()==st_op) && // Following are special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
821 !(n->ideal_Opcode()==Op_StoreCM && st_op==Op_StoreB) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
822 !(n->ideal_Opcode()==Op_StoreI && st_op==Op_StoreF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
823 !(n->ideal_Opcode()==Op_StoreF && st_op==Op_StoreI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
824 !(n->ideal_Opcode()==Op_StoreL && st_op==Op_StoreI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
825 !(n->ideal_Opcode()==Op_StoreD && st_op==Op_StoreI && n->rule() == storeD0_rule)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
826 verify_oops_warning(n, n->ideal_Opcode(), st_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
828 }
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830 if (src2_enc == R_G0_enc && n->rule() != loadUB_rule && n->ideal_Opcode() != Op_StoreCM ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
831 Node* addr = n->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
832 if (!(addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 const TypeOopPtr* atype = addr->bottom_type()->isa_instptr(); // %%% oopptr?
a61af66fc99e Initial load
duke
parents:
diff changeset
834 if (atype != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 intptr_t offset = get_offset_from_base(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
836 intptr_t offset_2 = get_offset_from_base_2(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
837 if (offset != offset_2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
838 get_offset_from_base(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
839 get_offset_from_base_2(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
840 }
a61af66fc99e Initial load
duke
parents:
diff changeset
841 assert(offset == offset_2, "different offsets");
a61af66fc99e Initial load
duke
parents:
diff changeset
842 if (offset == disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
843 // we now know that src1 is a true oop pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
844 is_verified_oop_base = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
845 if (ld_op && src1_enc == dst_enc && ld_op != Op_LoadF && ld_op != Op_LoadD) {
a61af66fc99e Initial load
duke
parents:
diff changeset
846 if( primary == Assembler::ldd_op3 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
847 is_verified_oop_base = false; // Cannot 'ldd' into O7
a61af66fc99e Initial load
duke
parents:
diff changeset
848 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 tmp_enc = dst_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
850 dst_enc = R_O7_enc; // Load into O7; preserve source oop
a61af66fc99e Initial load
duke
parents:
diff changeset
851 assert(src1_enc != dst_enc, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853 }
a61af66fc99e Initial load
duke
parents:
diff changeset
854 }
a61af66fc99e Initial load
duke
parents:
diff changeset
855 if (st_op && (( offset == oopDesc::klass_offset_in_bytes())
a61af66fc99e Initial load
duke
parents:
diff changeset
856 || offset == oopDesc::mark_offset_in_bytes())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
857 // loading the mark should not be allowed either, but
a61af66fc99e Initial load
duke
parents:
diff changeset
858 // we don't check this since it conflicts with InlineObjectHash
a61af66fc99e Initial load
duke
parents:
diff changeset
859 // usage of LoadINode to get the mark. We could keep the
a61af66fc99e Initial load
duke
parents:
diff changeset
860 // check if we create a new LoadMarkNode
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // but do not verify the object before its header is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
862 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
863 }
a61af66fc99e Initial load
duke
parents:
diff changeset
864 }
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
867 }
a61af66fc99e Initial load
duke
parents:
diff changeset
868 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870 uint instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
871 instr = (Assembler::ldst_op << 30)
a61af66fc99e Initial load
duke
parents:
diff changeset
872 | (dst_enc << 25)
a61af66fc99e Initial load
duke
parents:
diff changeset
873 | (primary << 19)
a61af66fc99e Initial load
duke
parents:
diff changeset
874 | (src1_enc << 14);
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 uint index = src2_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
877 int disp = disp32;
a61af66fc99e Initial load
duke
parents:
diff changeset
878
a61af66fc99e Initial load
duke
parents:
diff changeset
879 if (src1_enc == R_SP_enc || src1_enc == R_FP_enc)
a61af66fc99e Initial load
duke
parents:
diff changeset
880 disp += STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 // We should have a compiler bailout here rather than a guarantee.
a61af66fc99e Initial load
duke
parents:
diff changeset
883 // Better yet would be some mechanism to handle variable-size matches correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
884 guarantee(Assembler::is_simm13(disp), "Do not match large constant offsets" );
a61af66fc99e Initial load
duke
parents:
diff changeset
885
a61af66fc99e Initial load
duke
parents:
diff changeset
886 if( disp == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // use reg-reg form
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // bit 13 is already zero
a61af66fc99e Initial load
duke
parents:
diff changeset
889 instr |= index;
a61af66fc99e Initial load
duke
parents:
diff changeset
890 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // use reg-imm form
a61af66fc99e Initial load
duke
parents:
diff changeset
892 instr |= 0x00002000; // set bit 13 to one
a61af66fc99e Initial load
duke
parents:
diff changeset
893 instr |= disp & 0x1FFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 }
a61af66fc99e Initial load
duke
parents:
diff changeset
895
a61af66fc99e Initial load
duke
parents:
diff changeset
896 uint *code = (uint*)cbuf.code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
897 *code = instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
898 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
899
a61af66fc99e Initial load
duke
parents:
diff changeset
900 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
901 {
a61af66fc99e Initial load
duke
parents:
diff changeset
902 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
903 if (is_verified_oop_base) {
a61af66fc99e Initial load
duke
parents:
diff changeset
904 __ verify_oop(reg_to_register_object(src1_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
905 }
a61af66fc99e Initial load
duke
parents:
diff changeset
906 if (is_verified_oop_store) {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 __ verify_oop(reg_to_register_object(dst_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
909 if (tmp_enc != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
910 __ mov(O7, reg_to_register_object(tmp_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
911 }
a61af66fc99e Initial load
duke
parents:
diff changeset
912 if (is_verified_oop_load) {
a61af66fc99e Initial load
duke
parents:
diff changeset
913 __ verify_oop(reg_to_register_object(dst_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
914 }
a61af66fc99e Initial load
duke
parents:
diff changeset
915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
916 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918
a61af66fc99e Initial load
duke
parents:
diff changeset
919 void emit_form3_mem_reg_asi(CodeBuffer &cbuf, const MachNode* n, int primary, int tertiary,
a61af66fc99e Initial load
duke
parents:
diff changeset
920 int src1_enc, int disp32, int src2_enc, int dst_enc, int asi) {
a61af66fc99e Initial load
duke
parents:
diff changeset
921
a61af66fc99e Initial load
duke
parents:
diff changeset
922 uint instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
923 instr = (Assembler::ldst_op << 30)
a61af66fc99e Initial load
duke
parents:
diff changeset
924 | (dst_enc << 25)
a61af66fc99e Initial load
duke
parents:
diff changeset
925 | (primary << 19)
a61af66fc99e Initial load
duke
parents:
diff changeset
926 | (src1_enc << 14);
a61af66fc99e Initial load
duke
parents:
diff changeset
927
a61af66fc99e Initial load
duke
parents:
diff changeset
928 int disp = disp32;
a61af66fc99e Initial load
duke
parents:
diff changeset
929 int index = src2_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
930
a61af66fc99e Initial load
duke
parents:
diff changeset
931 if (src1_enc == R_SP_enc || src1_enc == R_FP_enc)
a61af66fc99e Initial load
duke
parents:
diff changeset
932 disp += STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
933
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // We should have a compiler bailout here rather than a guarantee.
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // Better yet would be some mechanism to handle variable-size matches correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
936 guarantee(Assembler::is_simm13(disp), "Do not match large constant offsets" );
a61af66fc99e Initial load
duke
parents:
diff changeset
937
a61af66fc99e Initial load
duke
parents:
diff changeset
938 if( disp != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // use reg-reg form
a61af66fc99e Initial load
duke
parents:
diff changeset
940 // set src2=R_O7 contains offset
a61af66fc99e Initial load
duke
parents:
diff changeset
941 index = R_O7_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 emit3_simm13( cbuf, Assembler::arith_op, index, Assembler::or_op3, 0, disp);
a61af66fc99e Initial load
duke
parents:
diff changeset
943 }
a61af66fc99e Initial load
duke
parents:
diff changeset
944 instr |= (asi << 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
945 instr |= index;
a61af66fc99e Initial load
duke
parents:
diff changeset
946 uint *code = (uint*)cbuf.code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
947 *code = instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
948 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
950
a61af66fc99e Initial load
duke
parents:
diff changeset
951 void emit_call_reloc(CodeBuffer &cbuf, intptr_t entry_point, relocInfo::relocType rtype, bool preserve_g2 = false, bool force_far_call = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // The method which records debug information at every safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // expects the call to be the first instruction in the snippet as
a61af66fc99e Initial load
duke
parents:
diff changeset
954 // it creates a PcDesc structure which tracks the offset of a call
a61af66fc99e Initial load
duke
parents:
diff changeset
955 // from the start of the codeBlob. This offset is computed as
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // code_end() - code_begin() of the code which has been emitted
a61af66fc99e Initial load
duke
parents:
diff changeset
957 // so far.
a61af66fc99e Initial load
duke
parents:
diff changeset
958 // In this particular case we have skirted around the problem by
a61af66fc99e Initial load
duke
parents:
diff changeset
959 // putting the "mov" instruction in the delay slot but the problem
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // may bite us again at some other point and a cleaner/generic
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // solution using relocations would be needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
962 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
963 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
964
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // We flush the current window just so that there is a valid stack copy
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // the fact that the current window becomes active again instantly is
a61af66fc99e Initial load
duke
parents:
diff changeset
967 // not a problem there is nothing live in it.
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
970 int startpos = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
971 #endif /* ASSERT */
a61af66fc99e Initial load
duke
parents:
diff changeset
972
a61af66fc99e Initial load
duke
parents:
diff changeset
973 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // Calls to the runtime or native may not be reachable from compiled code,
a61af66fc99e Initial load
duke
parents:
diff changeset
975 // so we generate the far call sequence on 64 bit sparc.
a61af66fc99e Initial load
duke
parents:
diff changeset
976 // This code sequence is relocatable to any address, even on LP64.
a61af66fc99e Initial load
duke
parents:
diff changeset
977 if ( force_far_call ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 __ relocate(rtype);
a61af66fc99e Initial load
duke
parents:
diff changeset
979 Address dest(O7, (address)entry_point);
a61af66fc99e Initial load
duke
parents:
diff changeset
980 __ jumpl_to(dest, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
981 }
a61af66fc99e Initial load
duke
parents:
diff changeset
982 else
a61af66fc99e Initial load
duke
parents:
diff changeset
983 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
984 {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 __ call((address)entry_point, rtype);
a61af66fc99e Initial load
duke
parents:
diff changeset
986 }
a61af66fc99e Initial load
duke
parents:
diff changeset
987
a61af66fc99e Initial load
duke
parents:
diff changeset
988 if (preserve_g2) __ delayed()->mov(G2, L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
989 else __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 if (preserve_g2) __ mov(L7, G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
992
a61af66fc99e Initial load
duke
parents:
diff changeset
993 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
994 if (preserve_g2 && (VerifyCompiledCode || VerifyOops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
995 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
996 // Trash argument dump slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
997 __ set(0xb0b8ac0db0b8ac0d, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
998 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
999 __ stx(G1, SP, STACK_BIAS + 0x80);
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 __ stx(G1, SP, STACK_BIAS + 0x88);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 __ stx(G1, SP, STACK_BIAS + 0x90);
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 __ stx(G1, SP, STACK_BIAS + 0x98);
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 __ stx(G1, SP, STACK_BIAS + 0xA0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 __ stx(G1, SP, STACK_BIAS + 0xA8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 // this is also a native call, so smash the first 7 stack locations,
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // and the various registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1008
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 // Note: [SP+0x40] is sp[callee_aggregate_return_pointer_sp_offset],
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 // while [SP+0x44..0x58] are the argument dump slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 __ set((intptr_t)0xbaadf00d, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 __ sllx(G1, 32, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 __ or3(G1, G5, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 __ stx(G1, SP, 0x40);
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 __ stx(G1, SP, 0x48);
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 __ stx(G1, SP, 0x50);
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 __ stw(G1, SP, 0x58); // Do not trash [SP+0x5C] which is a usable spill slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 #endif /*ASSERT*/
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 // REQUIRED FUNCTIONALITY for encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 void emit_lo(CodeBuffer &cbuf, int val) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 void emit_hi(CodeBuffer &cbuf, int val) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 void emit_ptr(CodeBuffer &cbuf, intptr_t val, Register reg, bool ForceRelocatable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 if (ForceRelocatable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 Address addr(reg, (address)val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 __ sethi(addr, ForceRelocatable);
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 __ add(addr, reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 __ set(val, reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1040
a61af66fc99e Initial load
duke
parents:
diff changeset
1041
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1043
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 void MachPrologNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 for (int i = 0; i < OptoPrologueNops; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 st->print_cr("NOP"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1051
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 if( VerifyThread ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 st->print_cr("Verify_Thread"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 size_t framesize = C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1057
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 // Calls to C2R adapters often do not accept exceptional returns.
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 // We require that their callers must bang for them. But be careful, because
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 // some VM calls (such as call site linkage) can use several kilobytes of
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 // stack. But the stack safety zone should account for that.
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 // See bugs 4446381, 4468289, 4497237.
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 if (C->need_stack_bang(framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 st->print_cr("! stack bang"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 if (Assembler::is_simm13(-framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 st->print ("SAVE R_SP,-%d,R_SP",framesize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 st->print_cr("SETHI R_SP,hi%%(-%d),R_G3",framesize); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 st->print_cr("ADD R_G3,lo%%(-%d),R_G3",framesize); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 st->print ("SAVE R_SP,R_G3,R_SP");
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1074
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1077
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 void MachPrologNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 for (int i = 0; i < OptoPrologueNops; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1085
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1087
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 size_t framesize = C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 assert(framesize >= 16*wordSize, "must have room for reg. save area");
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 assert(framesize%(2*wordSize) == 0, "must preserve 2*wordSize alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
1091
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // Calls to C2R adapters often do not accept exceptional returns.
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 // We require that their callers must bang for them. But be careful, because
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 // some VM calls (such as call site linkage) can use several kilobytes of
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 // stack. But the stack safety zone should account for that.
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 // See bugs 4446381, 4468289, 4497237.
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 if (C->need_stack_bang(framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 __ generate_stack_overflow_check(framesize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 if (Assembler::is_simm13(-framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 __ save(SP, -framesize, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 __ sethi(-framesize & ~0x3ff, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 __ add(G3, -framesize & 0x3ff, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 __ save(SP, G3, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 C->set_frame_complete( __ offset() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1110
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 uint MachPrologNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1114
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 int MachPrologNode::reloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 return 10; // a large enough number
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 void MachEpilogNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 if( do_polling() && ra_->C->is_method_compilation() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 st->print("SETHI #PollAddr,L0\t! Load Polling address\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 st->print("LDX [L0],G0\t!Poll for Safepointing\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 st->print("LDUW [L0],G0\t!Poll for Safepointing\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1132
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 if( do_polling() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 st->print("RET\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 st->print("RESTORE");
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1139
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 void MachEpilogNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1143
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 // If this does safepoint polling, then do it here
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 if( do_polling() && ra_->C->is_method_compilation() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 Address polling_page(L0, (address)os::get_polling_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 __ sethi(polling_page, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 __ relocate(relocInfo::poll_return_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 __ ld_ptr( L0, 0, G0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1153
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // If this is a return, then stuff the restore in the delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 if( do_polling() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 __ ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1162
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 uint MachEpilogNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1166
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 int MachEpilogNode::reloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 return 16; // a large enough number
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 const Pipeline * MachEpilogNode::pipeline() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 return MachNode::pipeline_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1174
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 int MachEpilogNode::safepoint_offset() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 assert( do_polling(), "no return for this epilog node");
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 return MacroAssembler::size_of_sethi(os::get_polling_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1179
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1181
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 // Figure out which register class each belongs in: rc_int, rc_float, rc_stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 enum RC { rc_bad, rc_int, rc_float, rc_stack };
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 static enum RC rc_class( OptoReg::Name reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 if( !OptoReg::is_valid(reg) ) return rc_bad;
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 if (OptoReg::is_stack(reg)) return rc_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 VMReg r = OptoReg::as_VMReg(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 if (r->is_Register()) return rc_int;
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 assert(r->is_FloatRegister(), "must be");
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 return rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1192
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 static int impl_helper( const MachNode *mach, CodeBuffer *cbuf, PhaseRegAlloc *ra_, bool do_size, bool is_load, int offset, int reg, int opcode, const char *op_str, int size, outputStream* st ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 // Better yet would be some mechanism to handle variable-size matches correctly
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 if (!Assembler::is_simm13(offset + STACK_BIAS)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 ra_->C->record_method_not_compilable("unable to handle large constant offsets");
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 emit_form3_mem_reg(*cbuf, mach, opcode, -1, R_SP_enc, offset, 0, Matcher::_regEncode[reg]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 if( is_load ) st->print("%s [R_SP + #%d],R_%s\t! spill",op_str,offset,OptoReg::regname(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 else st->print("%s R_%s,[R_SP + #%d]\t! spill",op_str,OptoReg::regname(reg),offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 static int impl_mov_helper( CodeBuffer *cbuf, bool do_size, int src, int dst, int op1, int op2, const char *op_str, int size, outputStream* st ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 if( cbuf ) emit3( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst], op1, 0, op2, Matcher::_regEncode[src] );
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 st->print("%s R_%s,R_%s\t! spill",op_str,OptoReg::regname(src),OptoReg::regname(dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1222
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 uint MachSpillCopyNode::implementation( CodeBuffer *cbuf,
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 PhaseRegAlloc *ra_,
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 bool do_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 outputStream* st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 // Get registers to move
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 OptoReg::Name src_second = ra_->get_reg_second(in(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 OptoReg::Name src_first = ra_->get_reg_first(in(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 OptoReg::Name dst_second = ra_->get_reg_second(this );
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 OptoReg::Name dst_first = ra_->get_reg_first(this );
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 enum RC src_second_rc = rc_class(src_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 enum RC src_first_rc = rc_class(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 enum RC dst_second_rc = rc_class(dst_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 enum RC dst_first_rc = rc_class(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1237
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 assert( OptoReg::is_valid(src_first) && OptoReg::is_valid(dst_first), "must move at least 1 register" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1239
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 // Generate spill code!
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 int size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1242
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 if( src_first == dst_first && src_second == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 return size; // Self copy, no move
a61af66fc99e Initial load
duke
parents:
diff changeset
1245
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 // Check for mem-mem move. Load into unused float registers and fall into
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 // the float-store case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 if( src_first_rc == rc_stack && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 if( (src_first&1)==0 && src_first+1 == src_second ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 src_second = OptoReg::Name(R_F31_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 src_second_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F30_num,Assembler::lddf_op3,"LDDF",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F30_num,Assembler::ldf_op3 ,"LDF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 src_first = OptoReg::Name(R_F30_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 src_first_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 if( src_second_rc == rc_stack && dst_second_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 int offset = ra_->reg2offset(src_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 size = impl_helper(this,cbuf,ra_,do_size,true,offset,R_F31_num,Assembler::ldf_op3,"LDF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 src_second = OptoReg::Name(R_F31_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 src_second_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1269
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 // Check for float->int copy; requires a trip through memory
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 if( src_first_rc == rc_float && dst_first_rc == rc_int ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 int offset = frame::register_save_words*wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::sub_op3, R_SP_enc, 16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::add_op3, R_SP_enc, 16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 st->print( "SUB R_SP,16,R_SP\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 st->print("\tADD R_SP,16,R_SP\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 size += 16;
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1291
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 // In the 32-bit 1-reg-longs build ONLY, I see mis-aligned long destinations.
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 // In such cases, I have to do the big-endian swap. For aligned targets, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 // hardware does the flop for me. Doubles are always aligned, so no problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 // there. Misaligned sources only come from native-long-returns (handled
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 // special below).
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 if( src_first_rc == rc_int && // source is already big-endian
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 src_second_rc != rc_bad && // 64-bit move
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 ((dst_first&1)!=0 || dst_second != dst_first+1) ) { // misaligned dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 assert( (src_first&1)==0 && src_second == src_first+1, "source must be aligned" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // Do the big-endian flop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 OptoReg::Name tmp = dst_first ; dst_first = dst_second ; dst_second = tmp ;
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 enum RC tmp_rc = dst_first_rc; dst_first_rc = dst_second_rc; dst_second_rc = tmp_rc;
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1308
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // Check for integer reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 if( src_first_rc == rc_int && dst_first_rc == rc_int ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 if( src_first == R_O0_num && src_second == R_O1_num ) { // Check for the evil O0/O1 native long-return case
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 // Note: The _first and _second suffixes refer to the addresses of the the 2 halves of the 64-bit value
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 // as stored in memory. On a big-endian machine like SPARC, this means that the _second
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 // operand contains the least significant word of the 64-bit value and vice versa.
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 OptoReg::Name tmp = OptoReg::Name(R_O7_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 assert( (dst_first&1)==0 && dst_second == dst_first+1, "return a native O0/O1 long to an aligned-adjacent 64-bit reg" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 // Shift O0 left in-place, zero-extend O1, then OR them into the dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[tmp], Assembler::sllx_op3, Matcher::_regEncode[src_first], 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[src_second], Assembler::srl_op3, Matcher::_regEncode[src_second], 0x0000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 emit3 ( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_first], Assembler:: or_op3, Matcher::_regEncode[tmp], 0, Matcher::_regEncode[src_second] );
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 st->print("SLLX R_%s,32,R_%s\t! Move O0-first to O7-high\n\t", OptoReg::regname(src_first), OptoReg::regname(tmp));
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 st->print("SRL R_%s, 0,R_%s\t! Zero-extend O1\n\t", OptoReg::regname(src_second), OptoReg::regname(src_second));
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 st->print("OR R_%s,R_%s,R_%s\t! spill",OptoReg::regname(tmp), OptoReg::regname(src_second), OptoReg::regname(dst_first));
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 return size+12;
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 else if( dst_first == R_I0_num && dst_second == R_I1_num ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 // returning a long value in I0/I1
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 // a SpillCopy must be able to target a return instruction's reg_class
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 // Note: The _first and _second suffixes refer to the addresses of the the 2 halves of the 64-bit value
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 // as stored in memory. On a big-endian machine like SPARC, this means that the _second
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 // operand contains the least significant word of the 64-bit value and vice versa.
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 OptoReg::Name tdest = dst_first;
a61af66fc99e Initial load
duke
parents:
diff changeset
1341
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 if (src_first == dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 tdest = OptoReg::Name(R_O7_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 size += 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1346
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 assert( (src_first&1) == 0 && (src_first+1) == src_second, "return value was in an aligned-adjacent 64-bit reg");
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 // Shift value in upper 32-bits of src to lower 32-bits of I0; move lower 32-bits to I1
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 // ShrL_reg_imm6
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[tdest], Assembler::srlx_op3, Matcher::_regEncode[src_second], 32 | 0x1000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 // ShrR_reg_imm6 src, 0, dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_second], Assembler::srl_op3, Matcher::_regEncode[src_first], 0x0000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 if (tdest != dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 emit3 ( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_first], Assembler::or_op3, 0/*G0*/, 0/*op2*/, Matcher::_regEncode[tdest] );
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 if( size != 0 ) st->print("\n\t"); // %%%%% !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 st->print("SRLX R_%s,32,R_%s\t! Extract MSW\n\t",OptoReg::regname(src_second),OptoReg::regname(tdest));
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 st->print("SRL R_%s, 0,R_%s\t! Extract LSW\n\t",OptoReg::regname(src_first),OptoReg::regname(dst_second));
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 if (tdest != dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 st->print("MOV R_%s,R_%s\t! spill\n\t", OptoReg::regname(tdest), OptoReg::regname(dst_first));
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 return size+8;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 #endif // !_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 // Else normal reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 assert( src_second != dst_first, "smashed second before evacuating it" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 size = impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::or_op3,0,"MOV ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 assert( (src_first&1) == 0 && (dst_first&1) == 0, "never move second-halves of int registers" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 // This moves an aligned adjacent pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 // See if we are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 if( src_first+1 == src_second && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1380
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 // Check for integer store
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 if( src_first_rc == rc_int && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 int offset = ra_->reg2offset(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 // Further check for aligned-adjacent pair, so we can use a double store
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 return impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stx_op3,"STX ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 size = impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stw_op3,"STW ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1389
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 // Check for integer load
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 if( dst_first_rc == rc_int && src_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 return impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::ldx_op3 ,"LDX ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 size = impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1398
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 // Check for float reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 if( src_first_rc == rc_float && dst_first_rc == rc_float ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 // Further check for aligned-adjacent pair, so we can use a double move
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 return impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::fpop1_op3,Assembler::fmovd_opf,"FMOVD",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 size = impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::fpop1_op3,Assembler::fmovs_opf,"FMOVS",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1406
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 // Check for float store
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 if( src_first_rc == rc_float && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 int offset = ra_->reg2offset(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 // Further check for aligned-adjacent pair, so we can use a double store
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 return impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stdf_op3,"STDF",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 size = impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1415
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 // Check for float load
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 if( dst_first_rc == rc_float && src_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 if( (src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 return impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::lddf_op3,"LDDF",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 size = impl_helper(this,cbuf,ra_,do_size,true,offset,dst_first,Assembler::ldf_op3 ,"LDF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1424
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 // --------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // Check for hi bits still needing moving. Only happens for misaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 // arguments to native calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 if( src_second == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 return size; // Self copy; no move
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 assert( src_second_rc != rc_bad && dst_second_rc != rc_bad, "src_second & dst_second cannot be Bad" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1431
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 // In the LP64 build, all registers can be moved as aligned/adjacent
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 // pairs, so there's never any need to move the high bits seperately.
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 // The 32-bit builds have to deal with the 32-bit ABI which can force
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 // all sorts of silly alignment problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
1437
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // Check for integer reg-reg copy. Hi bits are stuck up in the top
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 // 32-bits of a 64-bit register, but are needed in low bits of another
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 // register (else it's a hi-bits-to-hi-bits copy which should have
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // happened already as part of a 64-bit move)
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 if( src_second_rc == rc_int && dst_second_rc == rc_int ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 assert( (src_second&1)==1, "its the evil O0/O1 native return case" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 assert( (dst_second&1)==0, "should have moved with 1 64-bit move" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 // Shift src_second down to dst_second's low bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst_second], Assembler::srlx_op3, Matcher::_regEncode[src_second-1], 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 st->print("SRLX R_%s,32,R_%s\t! spill: Move high bits down low",OptoReg::regname(src_second-1),OptoReg::regname(dst_second));
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1456
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 // Check for high word integer store. Must down-shift the hi bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 // into a temp register, then fall into the case of storing int bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 if( src_second_rc == rc_int && dst_second_rc == rc_stack && (src_second&1)==1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 // Shift src_second down to dst_second's low bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[R_O7_num], Assembler::srlx_op3, Matcher::_regEncode[src_second-1], 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 st->print("SRLX R_%s,32,R_%s\t! spill: Move high bits down low",OptoReg::regname(src_second-1),OptoReg::regname(R_O7_num));
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 size+=4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 src_second = OptoReg::Name(R_O7_num); // Not R_O7H_num!
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1472
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 // Check for high word integer load
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 if( dst_second_rc == rc_int && src_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 return impl_helper(this,cbuf,ra_,do_size,true ,ra_->reg2offset(src_second),dst_second,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1476
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 // Check for high word integer store
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 if( src_second_rc == rc_int && dst_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 return impl_helper(this,cbuf,ra_,do_size,false,ra_->reg2offset(dst_second),src_second,Assembler::stw_op3 ,"STW ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 // Check for high word float store
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 if( src_second_rc == rc_float && dst_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 return impl_helper(this,cbuf,ra_,do_size,false,ra_->reg2offset(dst_second),src_second,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1484
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 #endif // !_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1486
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1489
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 void MachSpillCopyNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 implementation( NULL, ra_, false, st );
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1495
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 void MachSpillCopyNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 implementation( &cbuf, ra_, false, NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1499
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 uint MachSpillCopyNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 return implementation( NULL, ra_, true, NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1503
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 void MachNopNode::format( PhaseRegAlloc *, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 st->print("NOP \t# %d bytes pad for loops and calls", 4 * _count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1510
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 void MachNopNode::emit(CodeBuffer &cbuf, PhaseRegAlloc * ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 for(int i = 0; i < _count; i += 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1517
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 uint MachNopNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 return 4 * _count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1521
a61af66fc99e Initial load
duke
parents:
diff changeset
1522
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 void BoxLockNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 int offset = ra_->reg2offset(in_RegMask(0).find_first_elem());
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 int reg = ra_->get_reg_first(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 st->print("LEA [R_SP+#%d+BIAS],%s",offset,Matcher::regName[reg]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1531
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 void BoxLockNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 int offset = ra_->reg2offset(in_RegMask(0).find_first_elem()) + STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 int reg = ra_->get_encode(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1536
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 if (Assembler::is_simm13(offset)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 __ add(SP, offset, reg_to_register_object(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 __ set(offset, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 __ add(SP, O7, reg_to_register_object(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1544
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 uint BoxLockNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 // BoxLockNode is not a MachNode, so we can't just call MachNode::size(ra_)
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 assert(ra_ == ra_->C->regalloc(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 return ra_->C->scratch_emit_size(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1550
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1552
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 // emit call stub, compiled java to interpretor
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 void emit_java_to_interp(CodeBuffer &cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1555
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 // Stub is fixed up when the corresponding call is converted from calling
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 // compiled code to calling interpreted code.
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 // set (empty), G5
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 // jmp -1
a61af66fc99e Initial load
duke
parents:
diff changeset
1560
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 address mark = cbuf.inst_mark(); // get mark within main instrs section
a61af66fc99e Initial load
duke
parents:
diff changeset
1562
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1564
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 address base =
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 __ start_a_stub(Compile::MAX_stubs_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 if (base == NULL) return; // CodeBuffer::expand failed
a61af66fc99e Initial load
duke
parents:
diff changeset
1568
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 // static stub relocation stores the instruction address of the call
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 __ relocate(static_stub_Relocation::spec(mark));
a61af66fc99e Initial load
duke
parents:
diff changeset
1571
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 __ set_oop(NULL, reg_to_register_object(Matcher::inline_cache_reg_encode()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1573
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 Address a(G3, (address)-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 __ JUMP(a, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1577
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1579
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 // Update current stubs pointer and restore code_end.
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 __ end_a_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1583
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 // size of call stub, compiled java to interpretor
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 uint size_java_to_interp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 // This doesn't need to be accurate but it must be larger or equal to
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 // the real size of the stub.
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 return (NativeMovConstReg::instruction_size + // sethi/setlo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 NativeJump::instruction_size + // sethi; jmp; nop
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 (TraceJumps ? 20 * BytesPerInstWord : 0) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 // relocation entries for call stub, compiled java to interpretor
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 uint reloc_java_to_interp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 return 10; // 4 in emit_java_to_interp + 1 in Java_Static_Call
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1596
a61af66fc99e Initial load
duke
parents:
diff changeset
1597
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 void MachUEPNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 st->print_cr("\nUEP:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1603 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1604 st->print_cr("\tLDUW [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check - compressed klass");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1605 st->print_cr("\tSLL R_G5,3,R_G5");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1606 st->print_cr("\tADD R_G5,R_G6_heap_base,R_G5");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1607 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1608 st->print_cr("\tLDX [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1609 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 st->print_cr("\tCMP R_G5,R_G3" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 st->print ("\tTne xcc,R_G0+ST_RESERVED_FOR_USER_0+2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 st->print_cr("\tLDUW [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 st->print_cr("\tCMP R_G5,R_G3" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 st->print ("\tTne icc,R_G0+ST_RESERVED_FOR_USER_0+2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1619
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 void MachUEPNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 assert( G5_ic_reg != temp_reg, "conflicting registers" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1626
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 // Load klass from reciever
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1628 __ load_klass(O0, temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 // Compare against expected klass
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 __ cmp(temp_reg, G5_ic_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 // Branch to miss code, checks xcc or icc depending
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 __ trap(Assembler::notEqual, Assembler::ptr_cc, G0, ST_RESERVED_FOR_USER_0+2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1634
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 uint MachUEPNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1638
a61af66fc99e Initial load
duke
parents:
diff changeset
1639
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1641
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 uint size_exception_handler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 return (400); // just a guess
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 return ( NativeJump::instruction_size ); // sethi;jmp;nop
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1648
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 uint size_deopt_handler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 return (400); // just a guess
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 return ( 4+ NativeJump::instruction_size ); // save;sethi;jmp;restore
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1655
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 // Emit exception handler code.
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 int emit_exception_handler(CodeBuffer& cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 Address exception_blob(temp_reg, OptoRuntime::exception_blob()->instructions_begin());
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1661
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 address base =
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 __ start_a_stub(size_exception_handler());
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 if (base == NULL) return 0; // CodeBuffer::expand failed
a61af66fc99e Initial load
duke
parents:
diff changeset
1665
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 int offset = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 __ JUMP(exception_blob, 0); // sethi;jmp
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1670
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 assert(__ offset() - offset <= (int) size_exception_handler(), "overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 __ end_a_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
1674
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1677
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 int emit_deopt_handler(CodeBuffer& cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 // Can't use any of the current frame's registers as we may have deopted
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 // at a poll and everything (including G3) can be live.
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 Register temp_reg = L0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 Address deopt_blob(temp_reg, SharedRuntime::deopt_blob()->unpack());
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1684
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 address base =
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 __ start_a_stub(size_deopt_handler());
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 if (base == NULL) return 0; // CodeBuffer::expand failed
a61af66fc99e Initial load
duke
parents:
diff changeset
1688
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 int offset = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 __ JUMP(deopt_blob, 0); // sethi;jmp
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1693
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 assert(__ offset() - offset <= (int) size_deopt_handler(), "overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
1695
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 __ end_a_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1698
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1700
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 // Given a register encoding, produce a Integer Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 static Register reg_to_register_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 assert(L5->encoding() == R_L5_enc && G1->encoding() == R_G1_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 return as_Register(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1706
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 // Given a register encoding, produce a single-precision Float Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 assert(F5->encoding(FloatRegisterImpl::S) == R_F5_enc && F12->encoding(FloatRegisterImpl::S) == R_F12_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 return as_SingleFloatRegister(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1712
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 // Given a register encoding, produce a double-precision Float Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 assert(F4->encoding(FloatRegisterImpl::D) == R_F4_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 assert(F32->encoding(FloatRegisterImpl::D) == R_D32_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 return as_DoubleFloatRegister(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 int Matcher::regnum_to_fpu_offset(int regnum) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 return regnum - 32; // The FP registers are in the second chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1723
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 address last_rethrow = NULL; // debugging aid for Rethrow encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1727
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 // Vector width in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 const uint Matcher::vector_width_in_bytes(void) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 return 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1732
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 // Vector ideal reg
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 const uint Matcher::vector_ideal_reg(void) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 return Op_RegD;
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1737
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 // USII supports fxtof through the whole range of number, USIII doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 const bool Matcher::convL2FSupported(void) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 return VM_Version::has_fast_fxtof();
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1742
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 // Is this branch offset short enough that a short branch can be used?
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 // NOTE: If the platform does not provide any short branch variants, then
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 // this method should return false for offset 0.
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1747 bool Matcher::is_short_branch_offset(int rule, int offset) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1750
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 const bool Matcher::isSimpleConstant64(jlong value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 // Will one (StoreL ConL) be cheaper than two (StoreI ConI)?.
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 // Depends on optimizations in MacroAssembler::setx.
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 int hi = (int)(value >> 32);
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 int lo = (int)(value & ~0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 return (hi == 0) || (hi == -1) || (lo == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1758
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 // No scaling for the parameter the ClearArray node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 const bool Matcher::init_array_count_is_in_bytes = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1761
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 // Threshold size for cleararray.
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 const int Matcher::init_array_short_size = 8 * BytesPerLong;
a61af66fc99e Initial load
duke
parents:
diff changeset
1764
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 // Should the Matcher clone shifts on addressing modes, expecting them to
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 // be subsumed into complex addressing expressions or compute them into
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 // registers? True for Intel but false for most RISCs
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 const bool Matcher::clone_shift_expressions = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1769
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 // Is it better to copy float constants, or load them directly from memory?
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 // Intel can load a float constant from a direct address, requiring no
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 // extra registers. Most RISCs will have to materialize an address into a
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 // register first, so they would do better to copy the constant from stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 const bool Matcher::rematerialize_float_constants = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1775
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 // If CPU can load and store mis-aligned doubles directly then no fixup is
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 // needed. Else we split the double into 2 integer pieces and move it
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 // piece-by-piece. Only happens when passing doubles into C code as the
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 // Java calling convention forces doubles to be aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 const bool Matcher::misaligned_doubles_ok = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 const bool Matcher::misaligned_doubles_ok = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1785
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 // No-op on SPARC.
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 void Matcher::pd_implicit_null_fixup(MachNode *node, uint idx) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1789
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 // Advertise here if the CPU requires explicit rounding operations
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 // to implement the UseStrictFP mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 const bool Matcher::strict_fp_requires_explicit_rounding = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1793
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 // Do floats take an entire double register or just half?
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 const bool Matcher::float_in_double = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 // Do ints take an entire long register or just half?
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 // Note that we if-def off of _LP64.
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 // The relevant question is how the int is callee-saved. In _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 // the whole long is written but de-opt'ing will have to extract
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 // the relevant 32 bits, in not-_LP64 only the low 32 bits is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 const bool Matcher::int_in_long = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 const bool Matcher::int_in_long = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1807
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 // Return whether or not this register is ever used as an argument. This
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 // function is used on startup to build the trampoline stubs in generateOptoStub.
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 // Registers not mentioned will be killed by the VM call in the trampoline, and
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 // arguments in those registers not be available to the callee.
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 bool Matcher::can_be_java_arg( int reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 // Standard sparc 6 args in registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 if( reg == R_I0_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 reg == R_I1_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 reg == R_I2_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 reg == R_I3_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 reg == R_I4_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 reg == R_I5_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 // 64-bit builds can pass 64-bit pointers and longs in
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 // the high I registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 if( reg == R_I0H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 reg == R_I1H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 reg == R_I2H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 reg == R_I3H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 reg == R_I4H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 reg == R_I5H_num ) return true;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1829
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1830 if ((UseCompressedOops) && (reg == R_G6_num || reg == R_G6H_num)) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1831 return true;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1832 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1833
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 // 32-bit builds with longs-in-one-entry pass longs in G1 & G4.
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 // Longs cannot be passed in O regs, because O regs become I regs
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 // after a 'save' and I regs get their high bits chopped off on
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 // interrupt.
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 if( reg == R_G1H_num || reg == R_G1_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 if( reg == R_G4H_num || reg == R_G4_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 // A few float args in registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 if( reg >= R_F0_num && reg <= R_F7_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1844
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1847
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 bool Matcher::is_spillable_arg( int reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 return can_be_java_arg(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1851
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 // Register for DIVI projection of divmodI
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 RegMask Matcher::divI_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1857
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 // Register for MODI projection of divmodI
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 RegMask Matcher::modI_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1863
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 // Register for DIVL projection of divmodL
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 RegMask Matcher::divL_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1869
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 // Register for MODL projection of divmodL
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 RegMask Matcher::modL_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1875
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1877
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 // The intptr_t operand types, defined by textual substitution.
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 // (Cf. opto/type.hpp. This lets us avoid many, many other ifdefs.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 #define immX immL
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 #define immX13 immL13
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 #define iRegX iRegL
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 #define g1RegX g1RegL
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 #define immX immI
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 #define immX13 immI13
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 #define iRegX iRegI
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 #define g1RegX g1RegI
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1892
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 //----------ENCODING BLOCK-----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 // This block specifies the encoding classes used by the compiler to output
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 // byte streams. Encoding classes are parameterized macros used by
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 // Machine Instruction Nodes in order to generate the bit encoding of the
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 // instruction. Operands specify their base encoding interface with the
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 // interface keyword. There are currently supported four interfaces,
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 // REG_INTER, CONST_INTER, MEMORY_INTER, & COND_INTER. REG_INTER causes an
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 // operand to generate a function which returns its register number when
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 // queried. CONST_INTER causes an operand to generate a function which
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 // returns the value of the constant when queried. MEMORY_INTER causes an
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 // operand to generate four functions which return the Base Register, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 // Index Register, the Scale Value, and the Offset Value of the operand when
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 // queried. COND_INTER causes an operand to generate six functions which
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 // return the encoding code (ie - encoding bits for the instruction)
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 // associated with each basic boolean condition for a conditional instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 // Instructions specify two basic values for encoding. Again, a function
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 // is available to check if the constant displacement is an oop. They use the
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 // ins_encode keyword to specify their encoding classes (which must be
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 // a sequence of enc_class names, and their parameters, specified in
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 // the encoding block), and they use the
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 // opcode keyword to specify, in order, their primary, secondary, and
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 // tertiary opcode. Only the opcode sections which a particular instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 // needs for encoding need to be specified.
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 enc_class enc_untested %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 __ untested("encoding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1924
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 enc_class form3_mem_reg( memory mem, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 emit_form3_mem_reg(cbuf, this, $primary, $tertiary,
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1929
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1930 enc_class simple_form3_mem_reg( memory mem, iRegI dst ) %{
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1931 emit_form3_mem_reg(cbuf, this, $primary, -1,
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1932 $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1933 %}
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1934
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 enc_class form3_mem_reg_little( memory mem, iRegI dst) %{
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1936 emit_form3_mem_reg_asi(cbuf, this, $primary, -1,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 $mem$$base, $mem$$disp, $mem$$index, $dst$$reg, Assembler::ASI_PRIMARY_LITTLE);
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1939
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 enc_class form3_mem_prefetch_read( memory mem ) %{
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1941 emit_form3_mem_reg(cbuf, this, $primary, -1,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 $mem$$base, $mem$$disp, $mem$$index, 0/*prefetch function many-reads*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1944
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 enc_class form3_mem_prefetch_write( memory mem ) %{
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1946 emit_form3_mem_reg(cbuf, this, $primary, -1,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 $mem$$base, $mem$$disp, $mem$$index, 2/*prefetch function many-writes*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1949
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 enc_class form3_mem_reg_long_unaligned_marshal( memory mem, iRegL reg ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 assert( Assembler::is_simm13($mem$$disp ), "need disp and disp+4" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 assert( Assembler::is_simm13($mem$$disp+4), "need disp and disp+4" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 guarantee($mem$$index == R_G0_enc, "double index?");
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1954 emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, R_O7_enc );
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1955 emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp, R_G0_enc, $reg$$reg );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 emit3_simm13( cbuf, Assembler::arith_op, $reg$$reg, Assembler::sllx_op3, $reg$$reg, 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 emit3( cbuf, Assembler::arith_op, $reg$$reg, Assembler::or_op3, $reg$$reg, 0, R_O7_enc );
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1959
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 enc_class form3_mem_reg_double_unaligned( memory mem, RegD_low reg ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 assert( Assembler::is_simm13($mem$$disp ), "need disp and disp+4" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 assert( Assembler::is_simm13($mem$$disp+4), "need disp and disp+4" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 guarantee($mem$$index == R_G0_enc, "double index?");
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 // Load long with 2 instructions
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1965 emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp, R_G0_enc, $reg$$reg+0 );
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1966 emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, $reg$$reg+1 );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1968
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 //%%% form3_mem_plus_4_reg is a hack--get rid of it
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 enc_class form3_mem_plus_4_reg( memory mem, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 guarantee($mem$$disp, "cannot offset a reg-reg operand by 4");
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
1972 emit_form3_mem_reg(cbuf, this, $primary, -1, $mem$$base, $mem$$disp + 4, $mem$$index, $dst$$reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1974
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 enc_class form3_g0_rs2_rd_move( iRegI rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 if( $rs2$$reg != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1980
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 // Target lo half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 enc_class form3_g0_rs2_rd_move_lo( iRegI rs2, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 if( $rs2$$reg != LONG_LO_REG($rd$$reg) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 emit3( cbuf, Assembler::arith_op, LONG_LO_REG($rd$$reg), Assembler::or_op3, 0, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1987
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 // Source lo half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 enc_class form3_g0_rs2_rd_move_lo2( iRegL rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 if( LONG_LO_REG($rs2$$reg) != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_LO_REG($rs2$$reg) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1994
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 // Target hi half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 enc_class form3_rs1_rd_copysign_hi( iRegI rs1, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 31 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
1999
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 // Source lo half of long, and leave it sign extended.
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 enc_class form3_rs1_rd_signextend_lo1( iRegL rs1, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 // Sign extend low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2005
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 // Source hi half of long, and leave it sign extended.
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 enc_class form3_rs1_rd_copy_hi1( iRegL rs1, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 // Shift high half to low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::srlx_op3, $rs1$$reg, 32 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2011
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 // Source hi half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 enc_class form3_g0_rs2_rd_move_hi2( iRegL rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 if( LONG_HI_REG($rs2$$reg) != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_HI_REG($rs2$$reg) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2018
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 enc_class form3_rs1_rs2_rd( iRegI rs1, iRegI rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2022
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 enc_class enc_to_bool( iRegI src, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 emit3 ( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, 0, 0, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::addc_op3 , 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2027
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 enc_class enc_ltmask( iRegI p, iRegI q, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 emit3 ( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $p$$reg, 0, $q$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 // clear if nothing else is happening
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 // blt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 emit2_19 ( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::less, Assembler::bp_op2, Assembler::icc, 0/*predict not taken*/, 2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 // mov dst,-1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2037
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 enc_class form3_rs1_imm5_rd( iRegI rs1, immU5 imm5, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $imm5$$constant & 0x1F );
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2041
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 enc_class form3_sd_rs1_imm6_rd( iRegL rs1, immU6 imm6, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, ($imm6$$constant & 0x3F) | 0x1000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2045
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 enc_class form3_sd_rs1_rs2_rd( iRegL rs1, iRegI rs2, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0x80, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2049
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 enc_class form3_rs1_simm13_rd( iRegI rs1, immI13 simm13, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $simm13$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2053
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 enc_class move_return_pc_to_o1() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 emit3_simm13( cbuf, Assembler::arith_op, R_O1_enc, Assembler::add_op3, R_O7_enc, frame::pc_return_offset );
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2057
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 /* %%% merge with enc_to_bool */
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 enc_class enc_convP2B( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2062
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 __ movr(Assembler::rc_nz, src_reg, 1, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2068
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 enc_class enc_cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 // (Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)))
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2072
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 Register p_reg = reg_to_register_object($p$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 Register q_reg = reg_to_register_object($q$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 Register y_reg = reg_to_register_object($y$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 Register tmp_reg = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2077
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 __ subcc( p_reg, q_reg, p_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 __ add ( p_reg, y_reg, tmp_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 __ movcc( Assembler::less, false, Assembler::icc, tmp_reg, p_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2082
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 enc_class form_d2i_helper(regD src, regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 // fcmp %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 // fdtoi $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fdtoi_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 // fitos $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fitos_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2096
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 enc_class form_d2l_helper(regD src, regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 // fcmp %fcc0,$src,$src check for NAN
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 // fdtox $src,$dst convert in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fdtox_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 // fxtod $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fxtod_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2110
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 enc_class form_f2i_helper(regF src, regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 // fcmps %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 // fstoi $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fstoi_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 // fitos $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fitos_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2124
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 enc_class form_f2l_helper(regF src, regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 // fcmps %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 emit2_19( cbuf, Assembler::branch_op, 0/*annul*/, Assembler::f_ordered, Assembler::fbp_op2, Assembler::fcc0, 1/*predict taken*/, 4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 // fstox $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fstox_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 // fxtod $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fxtod_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2138
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 enc_class form3_opf_rs2F_rdF(regF rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 enc_class form3_opf_rs2F_rdD(regF rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 enc_class form3_opf_rs2D_rdF(regD rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 enc_class form3_opf_rs2D_rdD(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2143
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 enc_class form3_opf_rs2D_lo_rdF(regD rs2, regF rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg+1); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2145
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 enc_class form3_opf_rs2D_hi_rdD_hi(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg,$primary,0,$tertiary,$rs2$$reg); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 enc_class form3_opf_rs2D_lo_rdD_lo(regD rs2, regD rd) %{ emit3(cbuf,$secondary,$rd$$reg+1,$primary,0,$tertiary,$rs2$$reg+1); %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 enc_class form3_opf_rs1F_rs2F_rdF( regF rs1, regF rs2, regF rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2152
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 enc_class form3_opf_rs1D_rs2D_rdD( regD rs1, regD rs2, regD rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2156
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 enc_class form3_opf_rs1F_rs2F_fcc( regF rs1, regF rs2, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2160
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 enc_class form3_opf_rs1D_rs2D_fcc( regD rs1, regD rs2, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2164
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 enc_class form3_convI2F(regF rs2, regF rd) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 emit3(cbuf,Assembler::arith_op,$rd$$reg,Assembler::fpop1_op3,0,$secondary,$rs2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2168
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 // Encloding class for traceable jumps
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 enc_class form_jmpl(g3RegP dest) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 emit_jmpl(cbuf, $dest$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2173
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 enc_class form_jmpl_set_exception_pc(g1RegP dest) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 emit_jmpl_set_exception_pc(cbuf, $dest$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2177
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 enc_class form2_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 emit_nop(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2181
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 enc_class form2_illtrap() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 emit_illtrap(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2185
a61af66fc99e Initial load
duke
parents:
diff changeset
2186
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 // Compare longs and convert into -1, 0, 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 enc_class cmpl_flag( iRegL src1, iRegL src2, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 // CMP $src1,$src2
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 emit3( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $src1$$reg, 0, $src2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 // blt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 emit2_19( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::less , Assembler::bp_op2, Assembler::xcc, 0/*predict not taken*/, 5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 // mov dst,-1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 // bgt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 emit2_19( cbuf, Assembler::branch_op, 1/*annul*/, Assembler::greater, Assembler::bp_op2, Assembler::xcc, 0/*predict not taken*/, 3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 // mov dst,1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 // CLR $dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 emit3( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3 , 0, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2202
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 enc_class enc_PartialSubtypeCheck() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 __ call(StubRoutines::Sparc::partial_subtype_check(), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2208
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 enc_class enc_bp( Label labl, cmpOp cmp, flagsReg cc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 Label &L = *($labl$$label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 Assembler::Predict predict_taken =
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
a61af66fc99e Initial load
duke
parents:
diff changeset
2214
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 enc_class enc_bpl( Label labl, cmpOp cmp, flagsRegL cc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 Label &L = *($labl$$label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 Assembler::Predict predict_taken =
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
a61af66fc99e Initial load
duke
parents:
diff changeset
2224
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2228
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 enc_class enc_bpx( Label labl, cmpOp cmp, flagsRegP cc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 Label &L = *($labl$$label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 Assembler::Predict predict_taken =
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
a61af66fc99e Initial load
duke
parents:
diff changeset
2234
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2238
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 enc_class enc_fbp( Label labl, cmpOpF cmp, flagsRegF cc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 Label &L = *($labl$$label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 Assembler::Predict predict_taken =
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
a61af66fc99e Initial load
duke
parents:
diff changeset
2244
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 __ fbp( (Assembler::Condition)($cmp$$cmpcode), false, (Assembler::CC)($cc$$reg), predict_taken, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2248
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 enc_class jump_enc( iRegX switch_val, o7RegI table) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2251
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 Register switch_reg = as_Register($switch_val$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 Register table_reg = O7;
a61af66fc99e Initial load
duke
parents:
diff changeset
2254
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 address table_base = __ address_table_constant(_index2label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 RelocationHolder rspec = internal_word_Relocation::spec(table_base);
a61af66fc99e Initial load
duke
parents:
diff changeset
2257
a61af66fc99e Initial load
duke
parents:
diff changeset
2258 // Load table address
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 Address the_pc(table_reg, table_base, rspec);
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 __ load_address(the_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
2261
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 // Jump to base address + switch value
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 __ ld_ptr(table_reg, switch_reg, table_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 __ jmp(table_reg, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2266
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2268
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 enc_class enc_ba( Label labl ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 Label &L = *($labl$$label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 __ ba(false, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2275
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 enc_class enc_bpr( Label labl, cmpOp_reg cmp, iRegI op1 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 Label &L = *$labl$$label;
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 Assembler::Predict predict_taken =
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 cbuf.is_backward_branch(L) ? Assembler::pt : Assembler::pn;
a61af66fc99e Initial load
duke
parents:
diff changeset
2281
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 __ bpr( (Assembler::RCondition)($cmp$$cmpcode), false, predict_taken, as_Register($op1$$reg), L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2285
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 enc_class enc_cmov_reg( cmpOp cmp, iRegI dst, iRegI src, immI pcc) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 ($pcc$$constant << 11) | // cc1, cc0 bits for 'icc' or 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2298
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 enc_class enc_cmov_imm( cmpOp cmp, iRegI dst, immI11 src, immI pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 (1 << 13) | // select immediate move
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 ($pcc$$constant << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 (simm11 << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2312
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 enc_class enc_cmov_reg_f( cmpOpF cmp, iRegI dst, iRegI src, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 (0 << 18) | // cc2 bit for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 ($fcc$$reg << 11) | // cc1, cc0 bits for fcc0-fcc3
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2325
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 enc_class enc_cmov_imm_f( cmpOp cmp, iRegI dst, immI11 src, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 (0 << 18) | // cc2 bit for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 (1 << 13) | // select immediate move
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 ($fcc$$reg << 11) | // cc1, cc0 bits for fcc0-fcc3
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 (simm11 << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2339
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 enc_class enc_cmovf_reg( cmpOp cmp, regD dst, regD src, immI pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 (Assembler::fpop2_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 (0 << 18) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 (1 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 ($pcc$$constant << 11) | // cc1-cc0 bits for 'icc' or 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 ($primary << 5) | // select single, double or quad
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2353
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 enc_class enc_cmovff_reg( cmpOpF cmp, flagsRegF fcc, regD dst, regD src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 (Assembler::fpop2_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 (0 << 18) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 ($fcc$$reg << 11) | // cc2-cc0 bits for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 ($primary << 5) | // select single, double or quad
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2366
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 // Used by the MIN/MAX encodings. Same as a CMOV, but
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 // the condition comes from opcode-field instead of an argument.
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 enc_class enc_cmov_reg_minmax( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 ($primary << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 (0 << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2381
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 enc_class enc_cmov_reg_minmax_long( iRegL dst, iRegL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 (6 << 16) | // cc2 bit for 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 ($primary << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 (0 << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 ($src$$reg << 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 *((int*)(cbuf.code_end())) = op;
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2394
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 // Utility encoding for loading a 64 bit Pointer into a register
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 // The 64 bit pointer is stored in the generated code stream
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 enc_class SetPtr( immP src, iRegP rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 Register dest = reg_to_register_object($rd$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 // [RGV] This next line should be generated from ADLC
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 if ( _opnds[1]->constant_is_oop() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 intptr_t val = $src$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 __ set_oop_constant((jobject)val, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 } else { // non-oop pointers, e.g. card mark base, heap top
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 emit_ptr(cbuf, $src$$constant, dest, /*ForceRelocatable=*/ false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2408
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 enc_class Set13( immI13 src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, $src$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2412
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 enc_class SetHi22( immI src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 emit2_22( cbuf, Assembler::branch_op, $rd$$reg, Assembler::sethi_op2, $src$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2416
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 enc_class Set32( immI src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 __ set($src$$constant, reg_to_register_object($rd$$reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2421
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 enc_class SetNull( iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2425
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 enc_class call_epilog %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 if( VerifyStackAtCalls ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 int framesize = ra_->C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 __ add(SP, framesize, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 __ cmp(temp_reg, FP);
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 __ breakpoint_trap(Assembler::notEqual, Assembler::ptr_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2436
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 // Long values come back from native calls in O0:O1 in the 32-bit VM, copy the value
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 // to G1 so the register allocator will not have to deal with the misaligned register
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 // pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 enc_class adjust_long_from_native_call %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 if (returns_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 // sllx O0,32,O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 emit3_simm13( cbuf, Assembler::arith_op, R_O0_enc, Assembler::sllx_op3, R_O0_enc, 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 // srl O1,0,O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 emit3_simm13( cbuf, Assembler::arith_op, R_O1_enc, Assembler::srl_op3, R_O1_enc, 0x0000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 // or O0,O1,G1
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 emit3 ( cbuf, Assembler::arith_op, R_G1_enc, Assembler:: or_op3, R_O0_enc, 0, R_O1_enc );
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2452
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 enc_class Java_To_Runtime (method meth) %{ // CALL Java_To_Runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 // CALL directly to the runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 // The user of this is responsible for ensuring that R_L7 is empty (killed).
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type,
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 /*preserve_g2=*/true, /*force far call*/true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2459
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 enc_class Java_Static_Call (method meth) %{ // JAVA STATIC CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 // CALL to fixup routine. Fixup routine uses ScopeDesc info to determine
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 // who we intended to call.
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 if ( !_method ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 } else if (_optimized_virtual) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 emit_call_reloc(cbuf, $meth$$method, relocInfo::opt_virtual_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 emit_call_reloc(cbuf, $meth$$method, relocInfo::static_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 if( _method ) { // Emit stub for static call
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 emit_java_to_interp(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2474
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 enc_class Java_Dynamic_Call (method meth) %{ // JAVA DYNAMIC CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2477 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 int vtable_index = this->_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 // MachCallDynamicJavaNode::ret_addr_offset uses this same test
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 if (vtable_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 // must be invalid_vtable_index, not nonvirtual_vtable_index
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 assert(vtable_index == methodOopDesc::invalid_vtable_index, "correct sentinel value");
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 assert(G5_ic_reg == G5_inline_cache_reg, "G5_inline_cache_reg used in assemble_ic_buffer_code()");
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 assert(G5_ic_reg == G5_megamorphic_method, "G5_megamorphic_method used in megamorphic call stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 // !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 // Generate "set 0x01, R_G5", placeholder instruction to load oop-info
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 // emit_call_dynamic_prologue( cbuf );
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 __ set_oop((jobject)Universe::non_oop_word(), G5_ic_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2490
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 address virtual_call_oop_addr = __ inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 // CALL to fixup routine. Fixup routine uses ScopeDesc info to determine
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 // who we intended to call.
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 __ relocate(virtual_call_Relocation::spec(virtual_call_oop_addr));
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 emit_call_reloc(cbuf, $meth$$method, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 // Just go thru the vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 // get receiver klass (receiver already checked for non-null)
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 // If we end up going thru a c2i adapter interpreter expects method in G5
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 int off = __ offset();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2502 __ load_klass(O0, G3_scratch);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2503 int klass_load_size;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2504 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2505 klass_load_size = 3*BytesPerInstWord;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2506 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2507 klass_load_size = 1*BytesPerInstWord;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2508 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 if( __ is_simm13(v_off) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 __ ld_ptr(G3, v_off, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 // Generate 2 instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 __ Assembler::sethi(v_off & ~0x3ff, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 __ or3(G5_method, v_off & 0x3ff, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 // ld_ptr, set_hi, set
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2518 assert(__ offset() - off == klass_load_size + 2*BytesPerInstWord,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2519 "Unexpected instruction size(s)");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 __ ld_ptr(G3, G5_method, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 // NOTE: for vtable dispatches, the vtable entry will never be null.
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 // However it may very well end up in handle_wrong_method if the
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 // method is abstract for the particular class.
a61af66fc99e Initial load
duke
parents:
diff changeset
2525 __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 // jump to target (either compiled code or c2iadapter)
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 __ jmpl(G3_scratch, G0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2531
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 enc_class Java_Compiled_Call (method meth) %{ // JAVA COMPILED CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2534
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 Register temp_reg = G3; // caller must kill G3! We cannot reuse G5_ic_reg here because
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 // we might be calling a C2I adapter which needs it.
a61af66fc99e Initial load
duke
parents:
diff changeset
2538
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 assert(temp_reg != G5_ic_reg, "conflicting registers");
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 // Load nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 __ ld_ptr(G5_ic_reg, in_bytes(methodOopDesc::from_compiled_offset()), temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2542
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 // CALL to compiled java, indirect the contents of G3
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 __ callr(temp_reg, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2546 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2548
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 enc_class idiv_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 Register Rdivisor = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2554
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 __ sra(Rdivisor, 0, Rdivisor);
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2557 __ sdivx(Rdividend, Rdivisor, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2559
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 enc_class idiv_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2562
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 int divisor = $imm$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2566
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 __ sdivx(Rdividend, divisor, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2570
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 enc_class enc_mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 Register Rsrc1 = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 Register Rsrc2 = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 Register Rdst = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2576
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 __ sra( Rsrc1, 0, Rsrc1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 __ sra( Rsrc2, 0, Rsrc2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 __ mulx( Rsrc1, Rsrc2, Rdst );
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 __ srlx( Rdst, 32, Rdst );
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2582
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 enc_class irem_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst, o7RegL scratch) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 Register Rdivisor = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2589
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 assert(Rdividend != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 assert(Rdivisor != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2592
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 __ sra(Rdivisor, 0, Rdivisor);
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 __ sdivx(Rdividend, Rdivisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 __ mulx(Rscratch, Rdivisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 __ sub(Rdividend, Rscratch, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2599
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 enc_class irem_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst, o7RegL scratch) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2602
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 int divisor = $imm$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2607
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 assert(Rdividend != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2609
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 __ sdivx(Rdividend, divisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 __ mulx(Rscratch, divisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 __ sub(Rdividend, Rscratch, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2615
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 enc_class fabss (sflt_reg dst, sflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2618
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2621
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 __ fabs(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2624
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 enc_class fabsd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2626 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2627
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2630
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 __ fabs(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2633
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 enc_class fnegd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2636
a61af66fc99e Initial load
duke
parents:
diff changeset
2637 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2639
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 __ fneg(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2642
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 enc_class fsqrts (sflt_reg dst, sflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2645
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2648
a61af66fc99e Initial load
duke
parents:
diff changeset
2649 __ fsqrt(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2651
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 enc_class fsqrtd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2653 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2654
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2656 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2657
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 __ fsqrt(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2660
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 enc_class fmovs (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2663
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2666
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 __ fmov(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2669
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 enc_class fmovd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2672
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2675
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 __ fmov(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2678
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 enc_class Fast_Lock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2681
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 Register Roop = reg_to_register_object($oop$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 Register Rbox = reg_to_register_object($box$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 Register Rmark = reg_to_register_object($scratch2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2686
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 assert(Roop != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2688 assert(Roop != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 assert(Rbox != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 assert(Rbox != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2691
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
2692 __ compiler_lock_object(Roop, Rmark, Rbox, Rscratch, _counters, UseBiasedLocking && !UseOptoBiasInlining);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2694
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 enc_class Fast_Unlock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2697
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 Register Roop = reg_to_register_object($oop$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 Register Rbox = reg_to_register_object($box$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 Register Rmark = reg_to_register_object($scratch2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2702
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 assert(Roop != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 assert(Roop != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2705 assert(Rbox != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2706 assert(Rbox != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2707
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
2708 __ compiler_unlock_object(Roop, Rmark, Rbox, Rscratch, UseBiasedLocking && !UseOptoBiasInlining);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2710
a61af66fc99e Initial load
duke
parents:
diff changeset
2711 enc_class enc_cas( iRegP mem, iRegP old, iRegP new ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2715 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2716
a61af66fc99e Initial load
duke
parents:
diff changeset
2717 // casx_under_lock picks 1 of 3 encodings:
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 // For 32-bit pointers you get a 32-bit CAS
a61af66fc99e Initial load
duke
parents:
diff changeset
2719 // For 64-bit pointers you get a 64-bit CASX
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
2720 __ casn(Rmem, Rold, Rnew); // Swap(*Rmem,Rnew) if *Rmem == Rold
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 __ cmp( Rold, Rnew );
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2723
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 enc_class enc_casx( iRegP mem, iRegL old, iRegL new) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2726 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2728
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 __ mov(Rnew, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 __ casx(Rmem, Rold, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 __ cmp( Rold, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2734
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 // raw int cas, used for compareAndSwap
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 enc_class enc_casi( iRegP mem, iRegL old, iRegL new) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2737 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2738 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2740
a61af66fc99e Initial load
duke
parents:
diff changeset
2741 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 __ mov(Rnew, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 __ cas(Rmem, Rold, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 __ cmp( Rold, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2746
a61af66fc99e Initial load
duke
parents:
diff changeset
2747 enc_class enc_lflags_ne_to_boolean( iRegI res ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 Register Rres = reg_to_register_object($res$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2749
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 __ mov(1, Rres);
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 __ movcc( Assembler::notEqual, false, Assembler::xcc, G0, Rres );
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2754
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 enc_class enc_iflags_ne_to_boolean( iRegI res ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 Register Rres = reg_to_register_object($res$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2757
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 __ mov(1, Rres);
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 __ movcc( Assembler::notEqual, false, Assembler::icc, G0, Rres );
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2762
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 enc_class floating_cmp ( iRegP dst, regF src1, regF src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 Register Rdst = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 FloatRegister Fsrc1 = $primary ? reg_to_SingleFloatRegister_object($src1$$reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 : reg_to_DoubleFloatRegister_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 FloatRegister Fsrc2 = $primary ? reg_to_SingleFloatRegister_object($src2$$reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 : reg_to_DoubleFloatRegister_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2770
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 // Convert condition code fcc0 into -1,0,1; unordered reports less-than (-1)
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 __ float_cmp( $primary, -1, Fsrc1, Fsrc2, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2774
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 enc_class LdImmL (immL src, iRegL dst, o7RegL tmp) %{ // Load Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 Register dest = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 Register temp = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 __ set64( $src$$constant, dest, temp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2781
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 enc_class LdImmF(immF src, regF dst, o7RegP tmp) %{ // Load Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 address float_address = MacroAssembler(&cbuf).float_constant($src$$constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 RelocationHolder rspec = internal_word_Relocation::spec(float_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2785 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 Register tmp_reg = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 emit_ptr(cbuf, (intptr_t)float_address, tmp_reg, /*ForceRelocatable=*/ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::ldf_op3, $tmp$$reg, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 uint *code;
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 int tmp_reg = $tmp$$reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2793
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 emit2_22( cbuf, Assembler::branch_op, tmp_reg, Assembler::sethi_op2, (intptr_t) float_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2796
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::ldf_op3, tmp_reg, (intptr_t) float_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2801
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 enc_class LdImmD(immD src, regD dst, o7RegP tmp) %{ // Load Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 address double_address = MacroAssembler(&cbuf).double_constant($src$$constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 RelocationHolder rspec = internal_word_Relocation::spec(double_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 Register tmp_reg = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 emit_ptr(cbuf, (intptr_t)double_address, tmp_reg, /*ForceRelocatable=*/ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::lddf_op3, $tmp$$reg, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 uint *code;
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 int tmp_reg = $tmp$$reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2813
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 emit2_22( cbuf, Assembler::branch_op, tmp_reg, Assembler::sethi_op2, (intptr_t) double_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2816
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::lddf_op3, tmp_reg, (intptr_t) double_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2821
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 enc_class LdReplImmI(immI src, regD dst, o7RegP tmp, int count, int width) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 // Load a constant replicated "count" times with width "width"
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 int bit_width = $width$$constant * 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 jlong elt_val = $src$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 elt_val &= (((jlong)1) << bit_width) - 1; // mask off sign bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 jlong val = elt_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 for (int i = 0; i < $count$$constant - 1; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 val <<= bit_width;
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 val |= elt_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 jdouble dval = *(jdouble*)&val; // coerce to double type
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 address double_address = MacroAssembler(&cbuf).double_constant(dval);
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 RelocationHolder rspec = internal_word_Relocation::spec(double_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 Register tmp_reg = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 emit_ptr(cbuf, (intptr_t)double_address, tmp_reg, /*ForceRelocatable=*/ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::lddf_op3, $tmp$$reg, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2841 uint *code;
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 int tmp_reg = $tmp$$reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2843
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 emit2_22( cbuf, Assembler::branch_op, tmp_reg, Assembler::sethi_op2, (intptr_t) double_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2846
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 cbuf.relocate(cbuf.code_end(), rspec, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 emit3_simm10( cbuf, Assembler::ldst_op, $dst$$reg, Assembler::lddf_op3, tmp_reg, (intptr_t) double_address );
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2850 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2851
a61af66fc99e Initial load
duke
parents:
diff changeset
2852
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 enc_class ShouldNotEncodeThis ( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 ShouldNotCallThis();
a61af66fc99e Initial load
duke
parents:
diff changeset
2855 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2856
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 // Compiler ensures base is doubleword aligned and cnt is count of doublewords
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 enc_class enc_Clear_Array(iRegX cnt, iRegP base, iRegX temp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2859 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 Register nof_bytes_arg = reg_to_register_object($cnt$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 Register nof_bytes_tmp = reg_to_register_object($temp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 Register base_pointer_arg = reg_to_register_object($base$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2863
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 Label loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 __ mov(nof_bytes_arg, nof_bytes_tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2866
a61af66fc99e Initial load
duke
parents:
diff changeset
2867 // Loop and clear, walking backwards through the array.
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 // nof_bytes_tmp (if >0) is always the number of bytes to zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2869 __ bind(loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 __ deccc(nof_bytes_tmp, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 __ br(Assembler::greaterEqual, true, Assembler::pt, loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 __ delayed()-> stx(G0, base_pointer_arg, nof_bytes_tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 // %%%% this mini-loop must not cross a cache boundary!
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2875
a61af66fc99e Initial load
duke
parents:
diff changeset
2876
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 enc_class enc_String_Compare(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 Label Ldone, Lloop;
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2880
a61af66fc99e Initial load
duke
parents:
diff changeset
2881 Register str1_reg = reg_to_register_object($str1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 Register str2_reg = reg_to_register_object($str2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 Register tmp1_reg = reg_to_register_object($tmp1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 Register tmp2_reg = reg_to_register_object($tmp2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 Register result_reg = reg_to_register_object($result$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2886
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 // Get the first character position in both strings
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 // [8] char array, [12] offset, [16] count
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 int value_offset = java_lang_String:: value_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 int offset_offset = java_lang_String::offset_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 int count_offset = java_lang_String:: count_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
2892
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 // load str1 (jchar*) base address into tmp1_reg
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2894 __ load_heap_oop(Address(str1_reg, 0, value_offset), tmp1_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 __ ld(Address(str1_reg, 0, offset_offset), result_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 __ add(tmp1_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 __ ld(Address(str1_reg, 0, count_offset), str1_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2899 __ load_heap_oop(Address(str2_reg, 0, value_offset), tmp2_reg); // hoisted
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 __ add(result_reg, tmp1_reg, tmp1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2901
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 // load str2 (jchar*) base address into tmp2_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 // __ ld_ptr(Address(str2_reg, 0, value_offset), tmp2_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 __ ld(Address(str2_reg, 0, offset_offset), result_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 __ add(tmp2_reg, arrayOopDesc::base_offset_in_bytes(T_CHAR), tmp2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 __ ld(Address(str2_reg, 0, count_offset), str2_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 __ sll(result_reg, exact_log2(sizeof(jchar)), result_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 __ subcc(str1_reg, str2_reg, O7); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 __ add(result_reg, tmp2_reg, tmp2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2910
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 // Compute the minimum of the string lengths(str1_reg) and the
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 // difference of the string lengths (stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
2913
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 // discard string base pointers, after loading up the lengths
a61af66fc99e Initial load
duke
parents:
diff changeset
2915 // __ ld(Address(str1_reg, 0, count_offset), str1_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 // __ ld(Address(str2_reg, 0, count_offset), str2_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2917
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 // See if the lengths are different, and calculate min in str1_reg.
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 // Stash diff in O7 in case we need it for a tie-breaker.
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 Label Lskip;
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 // __ subcc(str1_reg, str2_reg, O7); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 __ sll(str1_reg, exact_log2(sizeof(jchar)), str1_reg); // scale the limit
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 __ br(Assembler::greater, true, Assembler::pt, Lskip);
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 // str2 is shorter, so use its count:
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 __ delayed()->sll(str2_reg, exact_log2(sizeof(jchar)), str1_reg); // scale the limit
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 __ bind(Lskip);
a61af66fc99e Initial load
duke
parents:
diff changeset
2927
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 // reallocate str1_reg, str2_reg, result_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 // Note: limit_reg holds the string length pre-scaled by 2
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 Register limit_reg = str1_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 Register chr2_reg = str2_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 Register chr1_reg = result_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 // tmp{12} are the base pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
2934
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 // Is the minimum length zero?
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 __ cmp(limit_reg, (int)(0 * sizeof(jchar))); // use cast to resolve overloading ambiguity
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 __ delayed()->mov(O7, result_reg); // result is difference in lengths
a61af66fc99e Initial load
duke
parents:
diff changeset
2939
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 // Load first characters
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 __ lduh(tmp1_reg, 0, chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 __ lduh(tmp2_reg, 0, chr2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2943
a61af66fc99e Initial load
duke
parents:
diff changeset
2944 // Compare first characters
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 __ subcc(chr1_reg, chr2_reg, chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 __ br(Assembler::notZero, false, Assembler::pt, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 assert(chr1_reg == result_reg, "result must be pre-placed");
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2949
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 // Check after comparing first character to see if strings are equivalent
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 Label LSkip2;
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 // Check if the strings start at same location
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 __ cmp(tmp1_reg, tmp2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 __ brx(Assembler::notEqual, true, Assembler::pt, LSkip2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2957
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 // Check if the length difference is zero (in O7)
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 __ cmp(G0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 __ delayed()->mov(G0, result_reg); // result is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2962
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 // Strings might not be equal
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 __ bind(LSkip2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2966
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 __ subcc(limit_reg, 1 * sizeof(jchar), chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 __ delayed()->mov(O7, result_reg); // result is difference in lengths
a61af66fc99e Initial load
duke
parents:
diff changeset
2970
a61af66fc99e Initial load
duke
parents:
diff changeset
2971 // Shift tmp1_reg and tmp2_reg to the end of the arrays, negate limit
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 __ add(tmp1_reg, limit_reg, tmp1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 __ add(tmp2_reg, limit_reg, tmp2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 __ neg(chr1_reg, limit_reg); // limit = -(limit-2)
a61af66fc99e Initial load
duke
parents:
diff changeset
2975
a61af66fc99e Initial load
duke
parents:
diff changeset
2976 // Compare the rest of the characters
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 __ lduh(tmp1_reg, limit_reg, chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 __ bind(Lloop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 // __ lduh(tmp1_reg, limit_reg, chr1_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 __ lduh(tmp2_reg, limit_reg, chr2_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2981 __ subcc(chr1_reg, chr2_reg, chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 __ br(Assembler::notZero, false, Assembler::pt, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 assert(chr1_reg == result_reg, "result must be pre-placed");
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 __ delayed()->inccc(limit_reg, sizeof(jchar));
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 // annul LDUH if branch is not taken to prevent access past end of string
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 __ br(Assembler::notZero, true, Assembler::pt, Lloop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 __ delayed()->lduh(tmp1_reg, limit_reg, chr1_reg); // hoisted
a61af66fc99e Initial load
duke
parents:
diff changeset
2988
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 // If strings are equal up to min length, return the length difference.
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 __ mov(O7, result_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2991
a61af66fc99e Initial load
duke
parents:
diff changeset
2992 // Otherwise, return the difference between the first mismatched chars.
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 __ bind(Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2995
a61af66fc99e Initial load
duke
parents:
diff changeset
2996 enc_class enc_rethrow() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 cbuf.set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 Address rethrow_stub(temp_reg, OptoRuntime::rethrow_stub());
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 assert(temp_reg != reg_to_register_object(R_I0_num), "temp must not break oop_reg");
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 __ save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 Address last_rethrow_addr(L1, (address)&last_rethrow);
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 __ sethi(last_rethrow_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 __ get_pc(L2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 __ inc(L2, 3 * BytesPerInstWord); // skip this & 2 more insns to point at jump_to
a61af66fc99e Initial load
duke
parents:
diff changeset
3008 __ st_ptr(L2, last_rethrow_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 __ JUMP(rethrow_stub, 0); // sethi;jmp
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3014
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 enc_class emit_mem_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 // Generates the instruction LDUXA [o6,g0],#0x82,g0
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 unsigned int *code = (unsigned int*)cbuf.code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
3018 *code = (unsigned int)0xc0839040;
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3021
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 enc_class emit_fadd_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 // Generates the instruction FMOVS f31,f31
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 unsigned int *code = (unsigned int*)cbuf.code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 *code = (unsigned int)0xbfa0003f;
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3028
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 enc_class emit_br_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 // Generates the instruction BPN,PN .
a61af66fc99e Initial load
duke
parents:
diff changeset
3031 unsigned int *code = (unsigned int*)cbuf.code_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
3032 *code = (unsigned int)0x00400000;
a61af66fc99e Initial load
duke
parents:
diff changeset
3033 cbuf.set_code_end(cbuf.code_end() + BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3035
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 enc_class enc_membar_acquire %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3038 __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::LoadLoad) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3040
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 enc_class enc_membar_release %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::StoreStore) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3045
a61af66fc99e Initial load
duke
parents:
diff changeset
3046 enc_class enc_membar_volatile %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 __ membar( Assembler::Membar_mask_bits(Assembler::StoreLoad) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3050
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 enc_class enc_repl8b( iRegI src, iRegL dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3052 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3054 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3055 __ sllx(src_reg, 56, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 __ srlx(dst_reg, 8, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3057 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 __ srlx(dst_reg, 16, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3060 __ srlx(dst_reg, 32, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3062 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3063
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 enc_class enc_repl4b( iRegI src, iRegL dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3065 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3066 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3068 __ sll(src_reg, 24, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3069 __ srl(dst_reg, 8, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3070 __ or3(dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3071 __ srl(dst_reg, 16, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 __ or3(dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3073 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3074
a61af66fc99e Initial load
duke
parents:
diff changeset
3075 enc_class enc_repl4s( iRegI src, iRegL dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3078 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 __ sllx(src_reg, 48, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3080 __ srlx(dst_reg, 16, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 __ srlx(dst_reg, 32, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3083 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3084 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3085
a61af66fc99e Initial load
duke
parents:
diff changeset
3086 enc_class enc_repl2i( iRegI src, iRegL dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3088 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3089 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 __ sllx(src_reg, 32, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 __ srlx(dst_reg, 32, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 __ or3 (dst_reg, O7, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3093 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3094
a61af66fc99e Initial load
duke
parents:
diff changeset
3095 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3096
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 //----------FRAME--------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 // Definition of frame structure and management information.
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 // S T A C K L A Y O U T Allocators stack-slot number
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 // | (to get allocators register number
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 // G Owned by | | v add VMRegImpl::stack0)
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 // r CALLER | |
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 // o | +--------+ pad to even-align allocators stack-slot
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 // w V | pad0 | numbers; owned by CALLER
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 // t -----------+--------+----> Matcher::_in_arg_limit, unaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3107 // h ^ | in | 5
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 // | | args | 4 Holes in incoming args owned by SELF
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 // | | | | 3
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 // | | +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 // V | | old out| Empty on Intel, window on Sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 // | old |preserve| Must be even aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
3113 // | SP-+--------+----> Matcher::_old_SP, 8 (or 16 in LP64)-byte aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 // | | in | 3 area for Intel ret address
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 // Owned by |preserve| Empty on Sparc.
a61af66fc99e Initial load
duke
parents:
diff changeset
3116 // SELF +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3117 // | | pad2 | 2 pad to align old SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 // | +--------+ 1
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 // | | locks | 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 // | +--------+----> VMRegImpl::stack0, 8 (or 16 in LP64)-byte aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 // | | pad1 | 11 pad to align new SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 // | +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 // | | | 10
a61af66fc99e Initial load
duke
parents:
diff changeset
3124 // | | spills | 9 spills
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 // V | | 8 (pad0 slot for callee)
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 // -----------+--------+----> Matcher::_out_arg_limit, unaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 // ^ | out | 7
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 // | | args | 6 Holes in outgoing args owned by CALLEE
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 // Owned by +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 // CALLEE | new out| 6 Empty on Intel, window on Sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
3131 // | new |preserve| Must be even-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 // | SP-+--------+----> Matcher::_new_SP, even aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 // | | |
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 // Note 1: Only region 8-11 is determined by the allocator. Region 0-5 is
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 // known from SELF's arguments and the Java calling convention.
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 // Region 6-7 is determined per call site.
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 // Note 2: If the calling convention leaves holes in the incoming argument
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 // area, those holes are owned by SELF. Holes in the outgoing area
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 // are owned by the CALLEE. Holes should not be nessecary in the
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 // incoming area, as the Java calling convention is completely under
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 // the control of the AD file. Doubles can be sorted and packed to
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 // avoid holes. Holes in the outgoing arguments may be nessecary for
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 // varargs C calling conventions.
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 // Note 3: Region 0-3 is even aligned, with pad2 as needed. Region 3-5 is
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 // even aligned with pad0 as needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 // Region 6 is even aligned. Region 6-7 is NOT even aligned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 // region 6-11 is even aligned; it may be padded out more so that
a61af66fc99e Initial load
duke
parents:
diff changeset
3149 // the region from SP to FP meets the minimum stack alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
3150
a61af66fc99e Initial load
duke
parents:
diff changeset
3151 frame %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3152 // What direction does stack grow in (assumed to be same for native & Java)
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 stack_direction(TOWARDS_LOW);
a61af66fc99e Initial load
duke
parents:
diff changeset
3154
a61af66fc99e Initial load
duke
parents:
diff changeset
3155 // These two registers define part of the calling convention
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 // between compiled code and the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 inline_cache_reg(R_G5); // Inline Cache Register or methodOop for I2C
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 interpreter_method_oop_reg(R_G5); // Method Oop Register when calling interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
3159
a61af66fc99e Initial load
duke
parents:
diff changeset
3160 // Optional: name the operand used by cisc-spilling to access [stack_pointer + offset]
a61af66fc99e Initial load
duke
parents:
diff changeset
3161 cisc_spilling_operand_name(indOffset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3162
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 // Number of stack slots consumed by a Monitor enter
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 sync_stack_slots(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3166 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 sync_stack_slots(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3168 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3169
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 // Compiled code's Frame Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
3171 frame_pointer(R_SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3172
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 // Stack alignment requirement
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 stack_alignment(StackAlignmentInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 // LP64: Alignment size in bytes (128-bit -> 16 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 // !LP64: Alignment size in bytes (64-bit -> 8 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
3177
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 // Number of stack slots between incoming argument block and the start of
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 // a new frame. The PROLOG must add this many slots to the stack. The
a61af66fc99e Initial load
duke
parents:
diff changeset
3180 // EPILOG must remove this many slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
3181 in_preserve_stack_slots(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3182
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 // Number of outgoing stack slots killed above the out_preserve_stack_slots
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 // for calls to C. Supports the var-args backing area for register parms.
a61af66fc99e Initial load
duke
parents:
diff changeset
3185 // ADLC doesn't support parsing expressions, so I folded the math by hand.
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 // (callee_register_argument_save_area_words (6) + callee_aggregate_return_pointer_words (0)) * 2-stack-slots-per-word
a61af66fc99e Initial load
duke
parents:
diff changeset
3188 varargs_C_out_slots_killed(12);
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3190 // (callee_register_argument_save_area_words (6) + callee_aggregate_return_pointer_words (1)) * 1-stack-slots-per-word
a61af66fc99e Initial load
duke
parents:
diff changeset
3191 varargs_C_out_slots_killed( 7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3193
a61af66fc99e Initial load
duke
parents:
diff changeset
3194 // The after-PROLOG location of the return address. Location of
a61af66fc99e Initial load
duke
parents:
diff changeset
3195 // return address specifies a type (REG or STACK) and a number
a61af66fc99e Initial load
duke
parents:
diff changeset
3196 // representing the register number (i.e. - use a register name) or
a61af66fc99e Initial load
duke
parents:
diff changeset
3197 // stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 return_addr(REG R_I7); // Ret Addr is in register I7
a61af66fc99e Initial load
duke
parents:
diff changeset
3199
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 // Body of function which returns an OptoRegs array locating
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 // arguments either in registers or in stack slots for calling
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 // java
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 calling_convention %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3204 (void) SharedRuntime::java_calling_convention(sig_bt, regs, length, is_outgoing);
a61af66fc99e Initial load
duke
parents:
diff changeset
3205
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3207
a61af66fc99e Initial load
duke
parents:
diff changeset
3208 // Body of function which returns an OptoRegs array locating
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 // arguments either in registers or in stack slots for callin
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 // C.
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 c_calling_convention %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 // This is obviously always outgoing
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 (void) SharedRuntime::c_calling_convention(sig_bt, regs, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3215
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 // Location of native (C/C++) and interpreter return values. This is specified to
a61af66fc99e Initial load
duke
parents:
diff changeset
3217 // be the same as Java. In the 32-bit VM, long values are actually returned from
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 // native calls in O0:O1 and returned to the interpreter in I0:I1. The copying
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 // to and from the register pairs is done by the appropriate call and epilog
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 // opcodes. This simplifies the register allocator.
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 c_return_value %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3224 static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num, R_O0_num, R_O0_num, R_F0_num, R_F0_num, R_O0_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3225 static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_O0H_num, OptoReg::Bad, R_F1_num, R_O0H_num};
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3226 static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num, R_I0_num, R_I0_num, R_F0_num, R_F0_num, R_I0_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3227 static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_I0H_num, OptoReg::Bad, R_F1_num, R_I0H_num};
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3228 #else // !_LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3229 static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num, R_O0_num, R_O0_num, R_F0_num, R_F0_num, R_G1_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3230 static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3231 static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num, R_I0_num, R_I0_num, R_F0_num, R_F0_num, R_G1_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3232 static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3233 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 (is_outgoing?lo_out:lo_in)[ideal_reg] );
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3237
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 // Location of compiled Java return values. Same as C
a61af66fc99e Initial load
duke
parents:
diff changeset
3239 return_value %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3242 static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num, R_O0_num, R_O0_num, R_F0_num, R_F0_num, R_O0_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3243 static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_O0H_num, OptoReg::Bad, R_F1_num, R_O0H_num};
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3244 static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num, R_I0_num, R_I0_num, R_F0_num, R_F0_num, R_I0_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3245 static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_I0H_num, OptoReg::Bad, R_F1_num, R_I0H_num};
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 #else // !_LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3247 static int lo_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_O0_num, R_O0_num, R_O0_num, R_F0_num, R_F0_num, R_G1_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3248 static int hi_out[Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num};
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3249 static int lo_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, R_I0_num, R_I0_num, R_I0_num, R_F0_num, R_F0_num, R_G1_num };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3250 static int hi_in [Op_RegL+1] = { OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, OptoReg::Bad, R_F1_num, R_G1H_num};
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 (is_outgoing?lo_out:lo_in)[ideal_reg] );
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3255
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3257
a61af66fc99e Initial load
duke
parents:
diff changeset
3258
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 //----------ATTRIBUTES---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 //----------Operand Attributes-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 op_attrib op_cost(1); // Required cost attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
3262
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 //----------Instruction Attributes---------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3264 ins_attrib ins_cost(DEFAULT_COST); // Required cost attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
3265 ins_attrib ins_size(32); // Required size attribute (in bits)
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 ins_attrib ins_pc_relative(0); // Required PC Relative flag
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 ins_attrib ins_short_branch(0); // Required flag: is this instruction a
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 // non-matching short branch variant of some
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 // long branch?
a61af66fc99e Initial load
duke
parents:
diff changeset
3270
a61af66fc99e Initial load
duke
parents:
diff changeset
3271 //----------OPERANDS-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 // Operand definitions must precede instruction definitions for correct parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 // in the ADLC because operands constitute user defined types which are used in
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 // instruction definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
3275
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 //----------Simple Operands----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3277 // Immediate Operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 // Integer Immediate: 32-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 operand immI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3281
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3283 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3285 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3286 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3287
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 // Integer Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 operand immI13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3290 predicate(Assembler::is_simm13(n->get_int()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3292 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3293
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3295 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3297
a61af66fc99e Initial load
duke
parents:
diff changeset
3298 // Unsigned (positive) Integer Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3299 operand immU13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 predicate((0 <= n->get_int()) && Assembler::is_simm13(n->get_int()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3302 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3303
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3305 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3306 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3307
a61af66fc99e Initial load
duke
parents:
diff changeset
3308 // Integer Immediate: 6-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3309 operand immU6() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3310 predicate(n->get_int() >= 0 && n->get_int() <= 63);
a61af66fc99e Initial load
duke
parents:
diff changeset
3311 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3312 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3313 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3315 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3316
a61af66fc99e Initial load
duke
parents:
diff changeset
3317 // Integer Immediate: 11-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3318 operand immI11() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3319 predicate(Assembler::is_simm(n->get_int(),11));
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3321 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3322 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3325
a61af66fc99e Initial load
duke
parents:
diff changeset
3326 // Integer Immediate: 0-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3327 operand immI0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 predicate(n->get_int() == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3329 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3330 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3331
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3333 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3335
a61af66fc99e Initial load
duke
parents:
diff changeset
3336 // Integer Immediate: the value 10
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 operand immI10() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 predicate(n->get_int() == 10);
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3341
a61af66fc99e Initial load
duke
parents:
diff changeset
3342 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3345
a61af66fc99e Initial load
duke
parents:
diff changeset
3346 // Integer Immediate: the values 0-31
a61af66fc99e Initial load
duke
parents:
diff changeset
3347 operand immU5() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3348 predicate(n->get_int() >= 0 && n->get_int() <= 31);
a61af66fc99e Initial load
duke
parents:
diff changeset
3349 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3350 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3351
a61af66fc99e Initial load
duke
parents:
diff changeset
3352 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3353 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3354 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3355
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 // Integer Immediate: the values 1-31
a61af66fc99e Initial load
duke
parents:
diff changeset
3357 operand immI_1_31() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3358 predicate(n->get_int() >= 1 && n->get_int() <= 31);
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3361
a61af66fc99e Initial load
duke
parents:
diff changeset
3362 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3363 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3364 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3365
a61af66fc99e Initial load
duke
parents:
diff changeset
3366 // Integer Immediate: the values 32-63
a61af66fc99e Initial load
duke
parents:
diff changeset
3367 operand immI_32_63() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3368 predicate(n->get_int() >= 32 && n->get_int() <= 63);
a61af66fc99e Initial load
duke
parents:
diff changeset
3369 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3370 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3371
a61af66fc99e Initial load
duke
parents:
diff changeset
3372 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3373 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3375
a61af66fc99e Initial load
duke
parents:
diff changeset
3376 // Integer Immediate: the value 255
a61af66fc99e Initial load
duke
parents:
diff changeset
3377 operand immI_255() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 predicate( n->get_int() == 255 );
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3380 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3381
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3383 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3384 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3385
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 // Long Immediate: the value FF
a61af66fc99e Initial load
duke
parents:
diff changeset
3387 operand immL_FF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3388 predicate( n->get_long() == 0xFFL );
a61af66fc99e Initial load
duke
parents:
diff changeset
3389 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3391
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3393 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3395
a61af66fc99e Initial load
duke
parents:
diff changeset
3396 // Long Immediate: the value FFFF
a61af66fc99e Initial load
duke
parents:
diff changeset
3397 operand immL_FFFF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3398 predicate( n->get_long() == 0xFFFFL );
a61af66fc99e Initial load
duke
parents:
diff changeset
3399 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3400 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3401
a61af66fc99e Initial load
duke
parents:
diff changeset
3402 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3405
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 // Pointer Immediate: 32 or 64-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 operand immP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3409
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 op_cost(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3412 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3415
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 operand immP13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3417 predicate((-4096 < n->get_ptr()) && (n->get_ptr() <= 4095));
a61af66fc99e Initial load
duke
parents:
diff changeset
3418 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3420
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3422 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3424
a61af66fc99e Initial load
duke
parents:
diff changeset
3425 operand immP0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3426 predicate(n->get_ptr() == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3427 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3428 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3429
a61af66fc99e Initial load
duke
parents:
diff changeset
3430 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3432 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3433
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 operand immP_poll() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 predicate(n->get_ptr() != 0 && n->get_ptr() == (intptr_t)os::get_polling_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3437
a61af66fc99e Initial load
duke
parents:
diff changeset
3438 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3439 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3440 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3441 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3442
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3443 // Pointer Immediate
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3444 operand immN()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3445 %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3446 match(ConN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3447
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3448 op_cost(10);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3449 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3450 interface(CONST_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3451 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3452
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3453 // NULL Pointer Immediate
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3454 operand immN0()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3455 %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3456 predicate(n->get_narrowcon() == 0);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3457 match(ConN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3458
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3459 op_cost(0);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3460 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3461 interface(CONST_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3462 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3463
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 operand immL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3466 op_cost(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
3467 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3468 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3469 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3470 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3471
a61af66fc99e Initial load
duke
parents:
diff changeset
3472 operand immL0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3473 predicate(n->get_long() == 0L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3474 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3475 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3477 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3478 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3479 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3480
a61af66fc99e Initial load
duke
parents:
diff changeset
3481 // Long Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3482 operand immL13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3483 predicate((-4096L < n->get_long()) && (n->get_long() <= 4095L));
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3485 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3486
a61af66fc99e Initial load
duke
parents:
diff changeset
3487 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3489 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3490
a61af66fc99e Initial load
duke
parents:
diff changeset
3491 // Long Immediate: low 32-bit mask
a61af66fc99e Initial load
duke
parents:
diff changeset
3492 operand immL_32bits() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 predicate(n->get_long() == 0xFFFFFFFFL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3494 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3495 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3496
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3498 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3499 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3500
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 // Double Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
3502 operand immD() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 match(ConD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3504
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 op_cost(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
3506 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3507 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3508 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3509
a61af66fc99e Initial load
duke
parents:
diff changeset
3510 operand immD0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 // on 64-bit architectures this comparision is faster
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 predicate(jlong_cast(n->getd()) == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3514 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 predicate((n->getd() == 0) && (fpclass(n->getd()) == FP_PZERO));
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 match(ConD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3518
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3521 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3523
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 // Float Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 operand immF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 match(ConF);
a61af66fc99e Initial load
duke
parents:
diff changeset
3527
a61af66fc99e Initial load
duke
parents:
diff changeset
3528 op_cost(20);
a61af66fc99e Initial load
duke
parents:
diff changeset
3529 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3531 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3532
a61af66fc99e Initial load
duke
parents:
diff changeset
3533 // Float Immediate: 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 operand immF0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 predicate((n->getf() == 0) && (fpclass(n->getf()) == FP_PZERO));
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 match(ConF);
a61af66fc99e Initial load
duke
parents:
diff changeset
3537
a61af66fc99e Initial load
duke
parents:
diff changeset
3538 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3539 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3540 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3541 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3542
a61af66fc99e Initial load
duke
parents:
diff changeset
3543 // Integer Register Operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3544 // Integer Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3545 operand iRegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3546 constraint(ALLOC_IN_RC(int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3547 match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3548
a61af66fc99e Initial load
duke
parents:
diff changeset
3549 match(notemp_iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3550 match(g1RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3551 match(o0RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3552 match(iRegIsafe);
a61af66fc99e Initial load
duke
parents:
diff changeset
3553
a61af66fc99e Initial load
duke
parents:
diff changeset
3554 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3555 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3556 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3557
a61af66fc99e Initial load
duke
parents:
diff changeset
3558 operand notemp_iRegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3559 constraint(ALLOC_IN_RC(notemp_int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3560 match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3561
a61af66fc99e Initial load
duke
parents:
diff changeset
3562 match(o0RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3563
a61af66fc99e Initial load
duke
parents:
diff changeset
3564 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3565 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3566 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3567
a61af66fc99e Initial load
duke
parents:
diff changeset
3568 operand o0RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3569 constraint(ALLOC_IN_RC(o0_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3570 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3571
a61af66fc99e Initial load
duke
parents:
diff changeset
3572 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3573 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3574 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3575
a61af66fc99e Initial load
duke
parents:
diff changeset
3576 // Pointer Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3577 operand iRegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3578 constraint(ALLOC_IN_RC(ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3579 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3580
a61af66fc99e Initial load
duke
parents:
diff changeset
3581 match(lock_ptr_RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3582 match(g1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3583 match(g2RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3584 match(g3RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3585 match(g4RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3586 match(i0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3587 match(o0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3588 match(o1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3589 match(l7RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3590
a61af66fc99e Initial load
duke
parents:
diff changeset
3591 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3592 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3593 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3594
a61af66fc99e Initial load
duke
parents:
diff changeset
3595 operand sp_ptr_RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3596 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3597 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3598 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3599
a61af66fc99e Initial load
duke
parents:
diff changeset
3600 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3601 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3602 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3603
a61af66fc99e Initial load
duke
parents:
diff changeset
3604 operand lock_ptr_RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3605 constraint(ALLOC_IN_RC(lock_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3606 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3607 match(i0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3608 match(o0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3609 match(o1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3610 match(l7RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3611
a61af66fc99e Initial load
duke
parents:
diff changeset
3612 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3613 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3614 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3615
a61af66fc99e Initial load
duke
parents:
diff changeset
3616 operand g1RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3617 constraint(ALLOC_IN_RC(g1_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3618 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3619
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3621 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3623
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 operand g2RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3625 constraint(ALLOC_IN_RC(g2_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3626 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3627
a61af66fc99e Initial load
duke
parents:
diff changeset
3628 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3631
a61af66fc99e Initial load
duke
parents:
diff changeset
3632 operand g3RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 constraint(ALLOC_IN_RC(g3_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3634 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3635
a61af66fc99e Initial load
duke
parents:
diff changeset
3636 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3637 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3638 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3639
a61af66fc99e Initial load
duke
parents:
diff changeset
3640 operand g1RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3641 constraint(ALLOC_IN_RC(g1_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3642 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3643
a61af66fc99e Initial load
duke
parents:
diff changeset
3644 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3646 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3647
a61af66fc99e Initial load
duke
parents:
diff changeset
3648 operand g3RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3649 constraint(ALLOC_IN_RC(g3_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3650 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3651
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3653 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3654 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3655
a61af66fc99e Initial load
duke
parents:
diff changeset
3656 operand g4RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3657 constraint(ALLOC_IN_RC(g4_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3658 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3659
a61af66fc99e Initial load
duke
parents:
diff changeset
3660 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3661 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3662 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3663
a61af66fc99e Initial load
duke
parents:
diff changeset
3664 operand g4RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3665 constraint(ALLOC_IN_RC(g4_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3666 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3667
a61af66fc99e Initial load
duke
parents:
diff changeset
3668 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3669 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3670 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3671
a61af66fc99e Initial load
duke
parents:
diff changeset
3672 operand i0RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3673 constraint(ALLOC_IN_RC(i0_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3674 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3675
a61af66fc99e Initial load
duke
parents:
diff changeset
3676 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3677 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3678 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3679
a61af66fc99e Initial load
duke
parents:
diff changeset
3680 operand o0RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3681 constraint(ALLOC_IN_RC(o0_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3682 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3683
a61af66fc99e Initial load
duke
parents:
diff changeset
3684 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3685 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3686 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3687
a61af66fc99e Initial load
duke
parents:
diff changeset
3688 operand o1RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3689 constraint(ALLOC_IN_RC(o1_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3690 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3691
a61af66fc99e Initial load
duke
parents:
diff changeset
3692 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3693 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3694 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3695
a61af66fc99e Initial load
duke
parents:
diff changeset
3696 operand o2RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3697 constraint(ALLOC_IN_RC(o2_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3698 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3699
a61af66fc99e Initial load
duke
parents:
diff changeset
3700 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3701 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3702 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3703
a61af66fc99e Initial load
duke
parents:
diff changeset
3704 operand o7RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3705 constraint(ALLOC_IN_RC(o7_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3706 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3707
a61af66fc99e Initial load
duke
parents:
diff changeset
3708 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3709 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3710 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3711
a61af66fc99e Initial load
duke
parents:
diff changeset
3712 operand l7RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3713 constraint(ALLOC_IN_RC(l7_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3714 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3715
a61af66fc99e Initial load
duke
parents:
diff changeset
3716 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3717 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3718 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3719
a61af66fc99e Initial load
duke
parents:
diff changeset
3720 operand o7RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3721 constraint(ALLOC_IN_RC(o7_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3722 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3723
a61af66fc99e Initial load
duke
parents:
diff changeset
3724 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3725 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3726 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3727
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3728 operand iRegN() %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3729 constraint(ALLOC_IN_RC(int_reg));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3730 match(RegN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3731
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3732 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3733 interface(REG_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3734 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3735
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3736 // Long Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3737 operand iRegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3738 constraint(ALLOC_IN_RC(long_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3739 match(RegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3740
a61af66fc99e Initial load
duke
parents:
diff changeset
3741 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3742 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3743 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3744
a61af66fc99e Initial load
duke
parents:
diff changeset
3745 operand o2RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3746 constraint(ALLOC_IN_RC(o2_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3747 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3748
a61af66fc99e Initial load
duke
parents:
diff changeset
3749 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3750 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3751 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3752
a61af66fc99e Initial load
duke
parents:
diff changeset
3753 operand o7RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3754 constraint(ALLOC_IN_RC(o7_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3755 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3756
a61af66fc99e Initial load
duke
parents:
diff changeset
3757 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3758 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3759 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3760
a61af66fc99e Initial load
duke
parents:
diff changeset
3761 operand g1RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3762 constraint(ALLOC_IN_RC(g1_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3763 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3764
a61af66fc99e Initial load
duke
parents:
diff changeset
3765 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3766 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3767 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3768
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3769 operand g3RegL() %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3770 constraint(ALLOC_IN_RC(g3_regL));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3771 match(iRegL);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3772
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3773 format %{ %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3774 interface(REG_INTER);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3775 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3776
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3777 // Int Register safe
a61af66fc99e Initial load
duke
parents:
diff changeset
3778 // This is 64bit safe
a61af66fc99e Initial load
duke
parents:
diff changeset
3779 operand iRegIsafe() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3780 constraint(ALLOC_IN_RC(long_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3781
a61af66fc99e Initial load
duke
parents:
diff changeset
3782 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3783
a61af66fc99e Initial load
duke
parents:
diff changeset
3784 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3785 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3786 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3787
a61af66fc99e Initial load
duke
parents:
diff changeset
3788 // Condition Code Flag Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3789 operand flagsReg() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3790 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3791 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3792
a61af66fc99e Initial load
duke
parents:
diff changeset
3793 format %{ "ccr" %} // both ICC and XCC
a61af66fc99e Initial load
duke
parents:
diff changeset
3794 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3795 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3796
a61af66fc99e Initial load
duke
parents:
diff changeset
3797 // Condition Code Register, unsigned comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
3798 operand flagsRegU() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3799 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3800 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3801
a61af66fc99e Initial load
duke
parents:
diff changeset
3802 format %{ "icc_U" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3803 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3804 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3805
a61af66fc99e Initial load
duke
parents:
diff changeset
3806 // Condition Code Register, pointer comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
3807 operand flagsRegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3808 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3809 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3810
a61af66fc99e Initial load
duke
parents:
diff changeset
3811 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3812 format %{ "xcc_P" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3813 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3814 format %{ "icc_P" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3815 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3816 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3817 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3818
a61af66fc99e Initial load
duke
parents:
diff changeset
3819 // Condition Code Register, long comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
3820 operand flagsRegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3821 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3822 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3823
a61af66fc99e Initial load
duke
parents:
diff changeset
3824 format %{ "xcc_L" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3825 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3826 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3827
a61af66fc99e Initial load
duke
parents:
diff changeset
3828 // Condition Code Register, floating comparisons, unordered same as "less".
a61af66fc99e Initial load
duke
parents:
diff changeset
3829 operand flagsRegF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3830 constraint(ALLOC_IN_RC(float_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3831 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3832 match(flagsRegF0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3833
a61af66fc99e Initial load
duke
parents:
diff changeset
3834 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3835 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3836 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3837
a61af66fc99e Initial load
duke
parents:
diff changeset
3838 operand flagsRegF0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3839 constraint(ALLOC_IN_RC(float_flag0));
a61af66fc99e Initial load
duke
parents:
diff changeset
3840 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3841
a61af66fc99e Initial load
duke
parents:
diff changeset
3842 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3843 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3844 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3845
a61af66fc99e Initial load
duke
parents:
diff changeset
3846
a61af66fc99e Initial load
duke
parents:
diff changeset
3847 // Condition Code Flag Register used by long compare
a61af66fc99e Initial load
duke
parents:
diff changeset
3848 operand flagsReg_long_LTGE() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3849 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3850 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3851 format %{ "icc_LTGE" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3852 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3853 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3854 operand flagsReg_long_EQNE() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3855 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3856 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3857 format %{ "icc_EQNE" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3858 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3859 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3860 operand flagsReg_long_LEGT() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3861 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3862 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3863 format %{ "icc_LEGT" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3864 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3865 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3866
a61af66fc99e Initial load
duke
parents:
diff changeset
3867
a61af66fc99e Initial load
duke
parents:
diff changeset
3868 operand regD() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3869 constraint(ALLOC_IN_RC(dflt_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3870 match(RegD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3871
a61af66fc99e Initial load
duke
parents:
diff changeset
3872 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3873 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3874 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3875
a61af66fc99e Initial load
duke
parents:
diff changeset
3876 operand regF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3877 constraint(ALLOC_IN_RC(sflt_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3878 match(RegF);
a61af66fc99e Initial load
duke
parents:
diff changeset
3879
a61af66fc99e Initial load
duke
parents:
diff changeset
3880 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3881 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3882 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3883
a61af66fc99e Initial load
duke
parents:
diff changeset
3884 operand regD_low() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3885 constraint(ALLOC_IN_RC(dflt_low_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3886 match(RegD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3887
a61af66fc99e Initial load
duke
parents:
diff changeset
3888 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3889 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3890 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3891
a61af66fc99e Initial load
duke
parents:
diff changeset
3892 // Special Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3893
a61af66fc99e Initial load
duke
parents:
diff changeset
3894 // Method Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3895 operand inline_cache_regP(iRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3896 constraint(ALLOC_IN_RC(g5_regP)); // G5=inline_cache_reg but uses 2 bits instead of 1
a61af66fc99e Initial load
duke
parents:
diff changeset
3897 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3898 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3899 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3900 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3901
a61af66fc99e Initial load
duke
parents:
diff changeset
3902 operand interpreter_method_oop_regP(iRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3903 constraint(ALLOC_IN_RC(g5_regP)); // G5=interpreter_method_oop_reg but uses 2 bits instead of 1
a61af66fc99e Initial load
duke
parents:
diff changeset
3904 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3905 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3906 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3907 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3908
a61af66fc99e Initial load
duke
parents:
diff changeset
3909
a61af66fc99e Initial load
duke
parents:
diff changeset
3910 //----------Complex Operands---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3911 // Indirect Memory Reference
a61af66fc99e Initial load
duke
parents:
diff changeset
3912 operand indirect(sp_ptr_RegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3913 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3914 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3915
a61af66fc99e Initial load
duke
parents:
diff changeset
3916 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3917 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3918 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3919 base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3920 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3921 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3922 disp(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3923 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3924 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3925
a61af66fc99e Initial load
duke
parents:
diff changeset
3926 // Indirect with Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
3927 operand indOffset13(sp_ptr_RegP reg, immX13 offset) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3928 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3929 match(AddP reg offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3930
a61af66fc99e Initial load
duke
parents:
diff changeset
3931 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3932 format %{ "[$reg + $offset]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3933 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3934 base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3935 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3936 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3937 disp($offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3938 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3939 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3940
a61af66fc99e Initial load
duke
parents:
diff changeset
3941 // Note: Intel has a swapped version also, like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
3942 //operand indOffsetX(iRegI reg, immP offset) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3943 // constraint(ALLOC_IN_RC(int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3944 // match(AddP offset reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3945 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3946 // op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3947 // format %{ "[$reg + $offset]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3948 // interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3949 // base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
3950 // index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3951 // scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3952 // disp($offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3953 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3954 //%}
a61af66fc99e Initial load
duke
parents:
diff changeset
3955 //// However, it doesn't make sense for SPARC, since
a61af66fc99e Initial load
duke
parents:
diff changeset
3956 // we have no particularly good way to embed oops in
a61af66fc99e Initial load
duke
parents:
diff changeset
3957 // single instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
3958
a61af66fc99e Initial load
duke
parents:
diff changeset
3959 // Indirect with Register Index
a61af66fc99e Initial load
duke
parents:
diff changeset
3960 operand indIndex(iRegP addr, iRegX index) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3961 constraint(ALLOC_IN_RC(ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3962 match(AddP addr index);
a61af66fc99e Initial load
duke
parents:
diff changeset
3963
a61af66fc99e Initial load
duke
parents:
diff changeset
3964 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3965 format %{ "[$addr + $index]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3966 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3967 base($addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3968 index($index);
a61af66fc99e Initial load
duke
parents:
diff changeset
3969 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3970 disp(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3971 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3972 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3973
a61af66fc99e Initial load
duke
parents:
diff changeset
3974 //----------Special Memory Operands--------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3975 // Stack Slot Operand - This operand is used for loading and storing temporary
a61af66fc99e Initial load
duke
parents:
diff changeset
3976 // values on the stack where a match requires a value to
a61af66fc99e Initial load
duke
parents:
diff changeset
3977 // flow through memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
3978 operand stackSlotI(sRegI reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3979 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
3980 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3981 //match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3982 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3983 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3984 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3985 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3986 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3987 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
3988 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3989 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3990
a61af66fc99e Initial load
duke
parents:
diff changeset
3991 operand stackSlotP(sRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3992 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
3993 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
3994 //match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3995 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3996 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3997 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3998 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3999 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4000 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4001 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4002 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4003
a61af66fc99e Initial load
duke
parents:
diff changeset
4004 operand stackSlotF(sRegF reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4005 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4006 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4007 //match(RegF);
a61af66fc99e Initial load
duke
parents:
diff changeset
4008 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4009 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4010 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4011 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4012 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4013 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4014 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4015 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4016 operand stackSlotD(sRegD reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4017 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4018 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4019 //match(RegD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4020 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4021 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4022 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4023 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4024 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4025 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4026 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4027 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4028 operand stackSlotL(sRegL reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4029 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4030 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4031 //match(RegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
4032 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4033 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4034 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4035 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4036 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4037 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4038 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4039 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4040
a61af66fc99e Initial load
duke
parents:
diff changeset
4041 // Operands for expressing Control Flow
a61af66fc99e Initial load
duke
parents:
diff changeset
4042 // NOTE: Label is a predefined operand which should not be redefined in
a61af66fc99e Initial load
duke
parents:
diff changeset
4043 // the AD file. It is generically handled within the ADLC.
a61af66fc99e Initial load
duke
parents:
diff changeset
4044
a61af66fc99e Initial load
duke
parents:
diff changeset
4045 //----------Conditional Branch Operands----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4046 // Comparison Op - This is the operation of the comparison, and is limited to
a61af66fc99e Initial load
duke
parents:
diff changeset
4047 // the following set of codes:
a61af66fc99e Initial load
duke
parents:
diff changeset
4048 // L (<), LE (<=), G (>), GE (>=), E (==), NE (!=)
a61af66fc99e Initial load
duke
parents:
diff changeset
4049 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4050 // Other attributes of the comparison, such as unsignedness, are specified
a61af66fc99e Initial load
duke
parents:
diff changeset
4051 // by the comparison instruction that sets a condition code flags register.
a61af66fc99e Initial load
duke
parents:
diff changeset
4052 // That result is represented by a flags operand whose subtype is appropriate
a61af66fc99e Initial load
duke
parents:
diff changeset
4053 // to the unsignedness (etc.) of the comparison.
a61af66fc99e Initial load
duke
parents:
diff changeset
4054 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4055 // Later, the instruction which matches both the Comparison Op (a Bool) and
a61af66fc99e Initial load
duke
parents:
diff changeset
4056 // the flags (produced by the Cmp) specifies the coding of the comparison op
a61af66fc99e Initial load
duke
parents:
diff changeset
4057 // by matching a specific subtype of Bool operand below, such as cmpOpU.
a61af66fc99e Initial load
duke
parents:
diff changeset
4058
a61af66fc99e Initial load
duke
parents:
diff changeset
4059 operand cmpOp() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4060 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4061
a61af66fc99e Initial load
duke
parents:
diff changeset
4062 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4063 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4064 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4065 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4066 less(0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4067 greater_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4068 less_equal(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4069 greater(0xA);
a61af66fc99e Initial load
duke
parents:
diff changeset
4070 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4071 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4072
a61af66fc99e Initial load
duke
parents:
diff changeset
4073 // Comparison Op, unsigned
a61af66fc99e Initial load
duke
parents:
diff changeset
4074 operand cmpOpU() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4075 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4076
a61af66fc99e Initial load
duke
parents:
diff changeset
4077 format %{ "u" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4078 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4079 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4080 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4081 less(0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4082 greater_equal(0xD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4083 less_equal(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
4084 greater(0xC);
a61af66fc99e Initial load
duke
parents:
diff changeset
4085 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4086 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4087
a61af66fc99e Initial load
duke
parents:
diff changeset
4088 // Comparison Op, pointer (same as unsigned)
a61af66fc99e Initial load
duke
parents:
diff changeset
4089 operand cmpOpP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4090 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4091
a61af66fc99e Initial load
duke
parents:
diff changeset
4092 format %{ "p" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4093 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4094 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4095 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4096 less(0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4097 greater_equal(0xD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4098 less_equal(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
4099 greater(0xC);
a61af66fc99e Initial load
duke
parents:
diff changeset
4100 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4101 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4102
a61af66fc99e Initial load
duke
parents:
diff changeset
4103 // Comparison Op, branch-register encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
4104 operand cmpOp_reg() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4105 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4106
a61af66fc99e Initial load
duke
parents:
diff changeset
4107 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4108 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4109 equal (0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4110 not_equal (0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4111 less (0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4112 greater_equal(0x7);
a61af66fc99e Initial load
duke
parents:
diff changeset
4113 less_equal (0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4114 greater (0x6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4115 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4116 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4117
a61af66fc99e Initial load
duke
parents:
diff changeset
4118 // Comparison Code, floating, unordered same as less
a61af66fc99e Initial load
duke
parents:
diff changeset
4119 operand cmpOpF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4120 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4121
a61af66fc99e Initial load
duke
parents:
diff changeset
4122 format %{ "fl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4123 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4124 equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4125 not_equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4126 less(0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4127 greater_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4128 less_equal(0xE);
a61af66fc99e Initial load
duke
parents:
diff changeset
4129 greater(0x6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4130 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4131 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4132
a61af66fc99e Initial load
duke
parents:
diff changeset
4133 // Used by long compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4134 operand cmpOp_commute() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4135 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4136
a61af66fc99e Initial load
duke
parents:
diff changeset
4137 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4138 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4139 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4140 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4141 less(0xA);
a61af66fc99e Initial load
duke
parents:
diff changeset
4142 greater_equal(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4143 less_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4144 greater(0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4145 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4146 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4147
a61af66fc99e Initial load
duke
parents:
diff changeset
4148 //----------OPERAND CLASSES----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4149 // Operand Classes are groups of operands that are used to simplify
a61af66fc99e Initial load
duke
parents:
diff changeset
4150 // instruction definitions by not requiring the AD writer to specify seperate
a61af66fc99e Initial load
duke
parents:
diff changeset
4151 // instructions for every form of operand when the instruction accepts
a61af66fc99e Initial load
duke
parents:
diff changeset
4152 // multiple operand types with the same basic encoding and format. The classic
a61af66fc99e Initial load
duke
parents:
diff changeset
4153 // case of this is memory operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
4154 // Indirect is not included since its use is limited to Compare & Swap
a61af66fc99e Initial load
duke
parents:
diff changeset
4155 opclass memory( indirect, indOffset13, indIndex );
a61af66fc99e Initial load
duke
parents:
diff changeset
4156
a61af66fc99e Initial load
duke
parents:
diff changeset
4157 //----------PIPELINE-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4158 pipeline %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4159
a61af66fc99e Initial load
duke
parents:
diff changeset
4160 //----------ATTRIBUTES---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4161 attributes %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4162 fixed_size_instructions; // Fixed size instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
4163 branch_has_delay_slot; // Branch has delay slot following
a61af66fc99e Initial load
duke
parents:
diff changeset
4164 max_instructions_per_bundle = 4; // Up to 4 instructions per bundle
a61af66fc99e Initial load
duke
parents:
diff changeset
4165 instruction_unit_size = 4; // An instruction is 4 bytes long
a61af66fc99e Initial load
duke
parents:
diff changeset
4166 instruction_fetch_unit_size = 16; // The processor fetches one line
a61af66fc99e Initial load
duke
parents:
diff changeset
4167 instruction_fetch_units = 1; // of 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
4168
a61af66fc99e Initial load
duke
parents:
diff changeset
4169 // List of nop instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
4170 nops( Nop_A0, Nop_A1, Nop_MS, Nop_FA, Nop_BR );
a61af66fc99e Initial load
duke
parents:
diff changeset
4171 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4172
a61af66fc99e Initial load
duke
parents:
diff changeset
4173 //----------RESOURCES----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4174 // Resources are the functional units available to the machine
a61af66fc99e Initial load
duke
parents:
diff changeset
4175 resources(A0, A1, MS, BR, FA, FM, IDIV, FDIV, IALU = A0 | A1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4176
a61af66fc99e Initial load
duke
parents:
diff changeset
4177 //----------PIPELINE DESCRIPTION-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4178 // Pipeline Description specifies the stages in the machine's pipeline
a61af66fc99e Initial load
duke
parents:
diff changeset
4179
a61af66fc99e Initial load
duke
parents:
diff changeset
4180 pipe_desc(A, P, F, B, I, J, S, R, E, C, M, W, X, T, D);
a61af66fc99e Initial load
duke
parents:
diff changeset
4181
a61af66fc99e Initial load
duke
parents:
diff changeset
4182 //----------PIPELINE CLASSES---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4183 // Pipeline Classes describe the stages in which input and output are
a61af66fc99e Initial load
duke
parents:
diff changeset
4184 // referenced by the hardware pipeline.
a61af66fc99e Initial load
duke
parents:
diff changeset
4185
a61af66fc99e Initial load
duke
parents:
diff changeset
4186 // Integer ALU reg-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4187 pipe_class ialu_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4188 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4189 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4190 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4191 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4192 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4193 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4194
a61af66fc99e Initial load
duke
parents:
diff changeset
4195 // Integer ALU reg-reg long operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4196 pipe_class ialu_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4197 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4198 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4199 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4200 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4201 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4202 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4203 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4204
a61af66fc99e Initial load
duke
parents:
diff changeset
4205 // Integer ALU reg-reg long dependent operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4206 pipe_class ialu_reg_reg_2_dep(iRegL dst, iRegL src1, iRegL src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4207 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4208 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4209 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4210 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4211 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4212 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4213 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4214
a61af66fc99e Initial load
duke
parents:
diff changeset
4215 // Integer ALU reg-imm operaion
a61af66fc99e Initial load
duke
parents:
diff changeset
4216 pipe_class ialu_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4217 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4218 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4219 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4220 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4221 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4222
a61af66fc99e Initial load
duke
parents:
diff changeset
4223 // Integer ALU reg-reg operation with condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4224 pipe_class ialu_cc_reg_reg(iRegI dst, iRegI src1, iRegI src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4225 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4226 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4227 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4228 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4229 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4230 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4231 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4232
a61af66fc99e Initial load
duke
parents:
diff changeset
4233 // Integer ALU reg-imm operation with condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4234 pipe_class ialu_cc_reg_imm(iRegI dst, iRegI src1, immI13 src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4235 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4236 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4237 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4238 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4239 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4240 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4241
a61af66fc99e Initial load
duke
parents:
diff changeset
4242 // Integer ALU zero-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4243 pipe_class ialu_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4244 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4245 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4246 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4247 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4248 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4249
a61af66fc99e Initial load
duke
parents:
diff changeset
4250 // Integer ALU zero-reg operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4251 pipe_class ialu_cconly_zero_reg(flagsReg cr, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4252 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4253 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4254 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4255 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4256 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4257
a61af66fc99e Initial load
duke
parents:
diff changeset
4258 // Integer ALU reg-reg operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4259 pipe_class ialu_cconly_reg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4260 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4261 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4262 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4263 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4264 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4265 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4266
a61af66fc99e Initial load
duke
parents:
diff changeset
4267 // Integer ALU reg-imm operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4268 pipe_class ialu_cconly_reg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4269 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4270 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4271 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4272 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4273 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4274
a61af66fc99e Initial load
duke
parents:
diff changeset
4275 // Integer ALU reg-reg-zero operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4276 pipe_class ialu_cconly_reg_reg_zero(flagsReg cr, iRegI src1, iRegI src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4277 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4278 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4279 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4280 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4281 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4282 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4283
a61af66fc99e Initial load
duke
parents:
diff changeset
4284 // Integer ALU reg-imm-zero operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4285 pipe_class ialu_cconly_reg_imm_zero(flagsReg cr, iRegI src1, immI13 src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4286 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4287 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4288 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4289 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4290 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4291
a61af66fc99e Initial load
duke
parents:
diff changeset
4292 // Integer ALU reg-reg operation with condition code, src1 modified
a61af66fc99e Initial load
duke
parents:
diff changeset
4293 pipe_class ialu_cc_rwreg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4294 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4295 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4296 src1 : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4297 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4298 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4299 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4300 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4301
a61af66fc99e Initial load
duke
parents:
diff changeset
4302 // Integer ALU reg-imm operation with condition code, src1 modified
a61af66fc99e Initial load
duke
parents:
diff changeset
4303 pipe_class ialu_cc_rwreg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4304 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4305 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4306 src1 : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4307 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4308 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4309 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4310
a61af66fc99e Initial load
duke
parents:
diff changeset
4311 pipe_class cmpL_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg cr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4312 multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4313 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4314 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4315 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4316 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4317 IALU : R(3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4318 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4319 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4320
a61af66fc99e Initial load
duke
parents:
diff changeset
4321 // Integer ALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4322 pipe_class ialu_none(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4323 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4324 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4325 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4326 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4327
a61af66fc99e Initial load
duke
parents:
diff changeset
4328 // Integer ALU reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4329 pipe_class ialu_reg(iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4330 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4331 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4332 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4333 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4334 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4335
a61af66fc99e Initial load
duke
parents:
diff changeset
4336 // Integer ALU reg conditional operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4337 // This instruction has a 1 cycle stall, and cannot execute
a61af66fc99e Initial load
duke
parents:
diff changeset
4338 // in the same cycle as the instruction setting the condition
a61af66fc99e Initial load
duke
parents:
diff changeset
4339 // code. We kludge this by pretending to read the condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4340 // 1 cycle earlier, and by marking the functional units as busy
a61af66fc99e Initial load
duke
parents:
diff changeset
4341 // for 2 cycles with the result available 1 cycle later than
a61af66fc99e Initial load
duke
parents:
diff changeset
4342 // is really the case.
a61af66fc99e Initial load
duke
parents:
diff changeset
4343 pipe_class ialu_reg_flags( iRegI op2_out, iRegI op2_in, iRegI op1, flagsReg cr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4344 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4345 op2_out : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4346 op1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4347 cr : R(read); // This is really E, with a 1 cycle stall
a61af66fc99e Initial load
duke
parents:
diff changeset
4348 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4349 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4350 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4351
a61af66fc99e Initial load
duke
parents:
diff changeset
4352 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
4353 pipe_class ialu_clr_and_mover( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4354 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4355 dst : C(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4356 src : R(read)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4357 IALU : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4358 BR : E(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4359 MS : E(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4360 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4361 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4362
a61af66fc99e Initial load
duke
parents:
diff changeset
4363 // Integer ALU reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4364 pipe_class ialu_move_reg_L_to_I(iRegI dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4365 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4366 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4367 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4368 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4369 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4370 pipe_class ialu_move_reg_I_to_L(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4371 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4372 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4373 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4374 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4375 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4376
a61af66fc99e Initial load
duke
parents:
diff changeset
4377 // Two integer ALU reg operations
a61af66fc99e Initial load
duke
parents:
diff changeset
4378 pipe_class ialu_reg_2(iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4379 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4380 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4381 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4382 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4383 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4384 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4385
a61af66fc99e Initial load
duke
parents:
diff changeset
4386 // Two integer ALU reg operations
a61af66fc99e Initial load
duke
parents:
diff changeset
4387 pipe_class ialu_move_reg_L_to_L(iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4388 instruction_count(2); may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4389 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4390 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4391 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4392 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4393 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4394
a61af66fc99e Initial load
duke
parents:
diff changeset
4395 // Integer ALU imm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4396 pipe_class ialu_imm(iRegI dst, immI13 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4397 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4398 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4399 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4400 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4401
a61af66fc99e Initial load
duke
parents:
diff changeset
4402 // Integer ALU reg-reg with carry operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4403 pipe_class ialu_reg_reg_cy(iRegI dst, iRegI src1, iRegI src2, iRegI cy) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4404 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4405 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4406 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4407 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4408 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4409 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4410
a61af66fc99e Initial load
duke
parents:
diff changeset
4411 // Integer ALU cc operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4412 pipe_class ialu_cc(iRegI dst, flagsReg cc) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4413 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4414 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4415 cc : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4416 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4417 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4418
a61af66fc99e Initial load
duke
parents:
diff changeset
4419 // Integer ALU cc / second IALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4420 pipe_class ialu_reg_ialu( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4421 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4422 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4423 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4424 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4425 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4426
a61af66fc99e Initial load
duke
parents:
diff changeset
4427 // Integer ALU cc / second IALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4428 pipe_class ialu_reg_reg_ialu( iRegI dst, iRegI p, iRegI q ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4429 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4430 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4431 p : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4432 q : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4433 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4434 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4435
a61af66fc99e Initial load
duke
parents:
diff changeset
4436 // Integer ALU hi-lo-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4437 pipe_class ialu_hi_lo_reg(iRegI dst, immI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4438 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4439 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4440 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4441 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4442
a61af66fc99e Initial load
duke
parents:
diff changeset
4443 // Float ALU hi-lo-reg operation (with temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
4444 pipe_class ialu_hi_lo_reg_temp(regF dst, immF src, g3RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4445 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4446 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4447 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4448 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4449
a61af66fc99e Initial load
duke
parents:
diff changeset
4450 // Long Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
4451 pipe_class loadConL( iRegL dst, immL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4452 instruction_count(2); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4453 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4454 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4455 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4456 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4457
a61af66fc99e Initial load
duke
parents:
diff changeset
4458 // Pointer Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
4459 pipe_class loadConP( iRegP dst, immP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4460 instruction_count(0); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4461 fixed_latency(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4462 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4463
a61af66fc99e Initial load
duke
parents:
diff changeset
4464 // Polling Address
a61af66fc99e Initial load
duke
parents:
diff changeset
4465 pipe_class loadConP_poll( iRegP dst, immP_poll src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4466 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
4467 instruction_count(0); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4468 fixed_latency(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4469 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
4470 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4471 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4472 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4473 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4474
a61af66fc99e Initial load
duke
parents:
diff changeset
4475 // Long Constant small
a61af66fc99e Initial load
duke
parents:
diff changeset
4476 pipe_class loadConLlo( iRegL dst, immL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4477 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4478 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4479 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4480 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4481 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4482
a61af66fc99e Initial load
duke
parents:
diff changeset
4483 // [PHH] This is wrong for 64-bit. See LdImmF/D.
a61af66fc99e Initial load
duke
parents:
diff changeset
4484 pipe_class loadConFD(regF dst, immF src, g3RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4485 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4486 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4487 dst : M(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4488 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4489 MS : E;
a61af66fc99e Initial load
duke
parents:
diff changeset
4490 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4491
a61af66fc99e Initial load
duke
parents:
diff changeset
4492 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4493 pipe_class ialu_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4494 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4495 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4496 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4497
a61af66fc99e Initial load
duke
parents:
diff changeset
4498 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4499 pipe_class ialu_nop_A0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4500 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4501 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4502 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4503
a61af66fc99e Initial load
duke
parents:
diff changeset
4504 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4505 pipe_class ialu_nop_A1() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4506 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4507 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4508 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4509
a61af66fc99e Initial load
duke
parents:
diff changeset
4510 // Integer Multiply reg-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4511 pipe_class imul_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4512 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4513 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4514 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4515 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4516 MS : R(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4517 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4518
a61af66fc99e Initial load
duke
parents:
diff changeset
4519 // Integer Multiply reg-imm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4520 pipe_class imul_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4521 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4522 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4523 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4524 MS : R(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4525 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4526
a61af66fc99e Initial load
duke
parents:
diff changeset
4527 pipe_class mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4528 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4529 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4530 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4531 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4532 MS : R(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4533 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4534
a61af66fc99e Initial load
duke
parents:
diff changeset
4535 pipe_class mulL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4536 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4537 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4538 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4539 MS : R(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4540 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4541
a61af66fc99e Initial load
duke
parents:
diff changeset
4542 // Integer Divide reg-reg
a61af66fc99e Initial load
duke
parents:
diff changeset
4543 pipe_class sdiv_reg_reg(iRegI dst, iRegI src1, iRegI src2, iRegI temp, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4544 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4545 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4546 temp : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4547 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4548 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4549 temp : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4550 MS : R(38);
a61af66fc99e Initial load
duke
parents:
diff changeset
4551 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4552
a61af66fc99e Initial load
duke
parents:
diff changeset
4553 // Integer Divide reg-imm
a61af66fc99e Initial load
duke
parents:
diff changeset
4554 pipe_class sdiv_reg_imm(iRegI dst, iRegI src1, immI13 src2, iRegI temp, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4555 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4556 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4557 temp : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4558 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4559 temp : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4560 MS : R(38);
a61af66fc99e Initial load
duke
parents:
diff changeset
4561 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4562
a61af66fc99e Initial load
duke
parents:
diff changeset
4563 // Long Divide
a61af66fc99e Initial load
duke
parents:
diff changeset
4564 pipe_class divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4565 dst : E(write)+71;
a61af66fc99e Initial load
duke
parents:
diff changeset
4566 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4567 src2 : R(read)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4568 MS : R(70);
a61af66fc99e Initial load
duke
parents:
diff changeset
4569 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4570
a61af66fc99e Initial load
duke
parents:
diff changeset
4571 pipe_class divL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4572 dst : E(write)+71;
a61af66fc99e Initial load
duke
parents:
diff changeset
4573 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4574 MS : R(70);
a61af66fc99e Initial load
duke
parents:
diff changeset
4575 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4576
a61af66fc99e Initial load
duke
parents:
diff changeset
4577 // Floating Point Add Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4578 pipe_class faddF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4579 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4580 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4581 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4582 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4583 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4584 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4585
a61af66fc99e Initial load
duke
parents:
diff changeset
4586 // Floating Point Add Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4587 pipe_class faddD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4588 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4589 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4590 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4591 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4592 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4593 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4594
a61af66fc99e Initial load
duke
parents:
diff changeset
4595 // Floating Point Conditional Move based on integer flags
a61af66fc99e Initial load
duke
parents:
diff changeset
4596 pipe_class int_conditional_float_move (cmpOp cmp, flagsReg cr, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4597 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4598 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4599 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4600 cr : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4601 FA : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4602 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4603 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4604
a61af66fc99e Initial load
duke
parents:
diff changeset
4605 // Floating Point Conditional Move based on integer flags
a61af66fc99e Initial load
duke
parents:
diff changeset
4606 pipe_class int_conditional_double_move (cmpOp cmp, flagsReg cr, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4607 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4608 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4609 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4610 cr : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4611 FA : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4612 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4613 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4614
a61af66fc99e Initial load
duke
parents:
diff changeset
4615 // Floating Point Multiply Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4616 pipe_class fmulF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4617 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4618 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4619 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4620 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4621 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4622 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4623
a61af66fc99e Initial load
duke
parents:
diff changeset
4624 // Floating Point Multiply Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4625 pipe_class fmulD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4626 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4627 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4628 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4629 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4630 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4631 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4632
a61af66fc99e Initial load
duke
parents:
diff changeset
4633 // Floating Point Divide Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4634 pipe_class fdivF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4635 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4636 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4637 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4638 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4639 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4640 FDIV : C(14);
a61af66fc99e Initial load
duke
parents:
diff changeset
4641 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4642
a61af66fc99e Initial load
duke
parents:
diff changeset
4643 // Floating Point Divide Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4644 pipe_class fdivD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4645 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4646 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4647 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4648 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4649 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4650 FDIV : C(17);
a61af66fc99e Initial load
duke
parents:
diff changeset
4651 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4652
a61af66fc99e Initial load
duke
parents:
diff changeset
4653 // Floating Point Move/Negate/Abs Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4654 pipe_class faddF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4655 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4656 dst : W(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4657 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4658 FA : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4659 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4660
a61af66fc99e Initial load
duke
parents:
diff changeset
4661 // Floating Point Move/Negate/Abs Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4662 pipe_class faddD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4663 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4664 dst : W(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4665 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4666 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4667 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4668
a61af66fc99e Initial load
duke
parents:
diff changeset
4669 // Floating Point Convert F->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4670 pipe_class fcvtF2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4671 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4672 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4673 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4674 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4675 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4676
a61af66fc99e Initial load
duke
parents:
diff changeset
4677 // Floating Point Convert I->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4678 pipe_class fcvtI2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4679 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4680 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4681 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4682 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4683 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4684
a61af66fc99e Initial load
duke
parents:
diff changeset
4685 // Floating Point Convert LHi->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4686 pipe_class fcvtLHi2D(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4687 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4688 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4689 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4690 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4691 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4692
a61af66fc99e Initial load
duke
parents:
diff changeset
4693 // Floating Point Convert L->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4694 pipe_class fcvtL2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4695 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4696 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4697 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4698 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4699 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4700
a61af66fc99e Initial load
duke
parents:
diff changeset
4701 // Floating Point Convert L->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4702 pipe_class fcvtL2F(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4703 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4704 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4705 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4706 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4707 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4708
a61af66fc99e Initial load
duke
parents:
diff changeset
4709 // Floating Point Convert D->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4710 pipe_class fcvtD2F(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4711 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4712 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4713 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4714 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4715 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4716
a61af66fc99e Initial load
duke
parents:
diff changeset
4717 // Floating Point Convert I->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4718 pipe_class fcvtI2L(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4719 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4720 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4721 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4722 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4723 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4724
a61af66fc99e Initial load
duke
parents:
diff changeset
4725 // Floating Point Convert D->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4726 pipe_class fcvtD2I(regF dst, regD src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4727 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4728 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4729 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4730 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4731 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4732
a61af66fc99e Initial load
duke
parents:
diff changeset
4733 // Floating Point Convert D->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4734 pipe_class fcvtD2L(regD dst, regD src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4735 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4736 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4737 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4738 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4739 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4740
a61af66fc99e Initial load
duke
parents:
diff changeset
4741 // Floating Point Convert F->I
a61af66fc99e Initial load
duke
parents:
diff changeset
4742 pipe_class fcvtF2I(regF dst, regF src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4743 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4744 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4745 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4746 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4747 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4748
a61af66fc99e Initial load
duke
parents:
diff changeset
4749 // Floating Point Convert F->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4750 pipe_class fcvtF2L(regD dst, regF src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4751 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4752 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4753 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4754 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4755 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4756
a61af66fc99e Initial load
duke
parents:
diff changeset
4757 // Floating Point Convert I->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4758 pipe_class fcvtI2F(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4759 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4760 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4761 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4762 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4763 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4764
a61af66fc99e Initial load
duke
parents:
diff changeset
4765 // Floating Point Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4766 pipe_class faddF_fcc_reg_reg_zero(flagsRegF cr, regF src1, regF src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4767 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4768 cr : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4769 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4770 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4771 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4772 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4773
a61af66fc99e Initial load
duke
parents:
diff changeset
4774 // Floating Point Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4775 pipe_class faddD_fcc_reg_reg_zero(flagsRegF cr, regD src1, regD src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4776 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4777 cr : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4778 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4779 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4780 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4781 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4782
a61af66fc99e Initial load
duke
parents:
diff changeset
4783 // Floating Add Nop
a61af66fc99e Initial load
duke
parents:
diff changeset
4784 pipe_class fadd_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4785 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4786 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4787 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4788
a61af66fc99e Initial load
duke
parents:
diff changeset
4789 // Integer Store to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
4790 pipe_class istore_mem_reg(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4791 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4792 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4793 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4794 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4795 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4796
a61af66fc99e Initial load
duke
parents:
diff changeset
4797 // Integer Store to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
4798 pipe_class istore_mem_spORreg(memory mem, sp_ptr_RegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4799 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4800 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4801 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4802 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4803 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4804
a61af66fc99e Initial load
duke
parents:
diff changeset
4805 // Integer Store Zero to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
4806 pipe_class istore_mem_zero(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4807 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4808 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4809 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4810 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4811
a61af66fc99e Initial load
duke
parents:
diff changeset
4812 // Special Stack Slot Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4813 pipe_class istore_stk_reg(stackSlotI stkSlot, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4814 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4815 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4816 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4817 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4818 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4819
a61af66fc99e Initial load
duke
parents:
diff changeset
4820 // Special Stack Slot Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4821 pipe_class lstoreI_stk_reg(stackSlotL stkSlot, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4822 instruction_count(2); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4823 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4824 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4825 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4826 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4827
a61af66fc99e Initial load
duke
parents:
diff changeset
4828 // Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4829 pipe_class fstoreF_mem_reg(memory mem, RegF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4830 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4831 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4832 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4833 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4834 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4835
a61af66fc99e Initial load
duke
parents:
diff changeset
4836 // Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4837 pipe_class fstoreF_mem_zero(memory mem, immF0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4838 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4839 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4840 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4841 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4842
a61af66fc99e Initial load
duke
parents:
diff changeset
4843 // Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4844 pipe_class fstoreD_mem_reg(memory mem, RegD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4845 instruction_count(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4846 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4847 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4848 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4849 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4850
a61af66fc99e Initial load
duke
parents:
diff changeset
4851 // Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4852 pipe_class fstoreD_mem_zero(memory mem, immD0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4853 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4854 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4855 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4856 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4857
a61af66fc99e Initial load
duke
parents:
diff changeset
4858 // Special Stack Slot Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4859 pipe_class fstoreF_stk_reg(stackSlotI stkSlot, RegF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4860 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4861 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4862 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4863 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4864 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4865
a61af66fc99e Initial load
duke
parents:
diff changeset
4866 // Special Stack Slot Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
4867 pipe_class fstoreD_stk_reg(stackSlotI stkSlot, RegD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4868 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4869 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4870 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4871 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4872 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4873
a61af66fc99e Initial load
duke
parents:
diff changeset
4874 // Integer Load (when sign bit propagation not needed)
a61af66fc99e Initial load
duke
parents:
diff changeset
4875 pipe_class iload_mem(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4876 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4877 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4878 dst : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4879 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4880 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4881
a61af66fc99e Initial load
duke
parents:
diff changeset
4882 // Integer Load from stack operand
a61af66fc99e Initial load
duke
parents:
diff changeset
4883 pipe_class iload_stkD(iRegI dst, stackSlotD mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4884 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4885 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4886 dst : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4887 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4888 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4889
a61af66fc99e Initial load
duke
parents:
diff changeset
4890 // Integer Load (when sign bit propagation or masking is needed)
a61af66fc99e Initial load
duke
parents:
diff changeset
4891 pipe_class iload_mask_mem(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4892 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4893 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4894 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4895 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4896 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4897
a61af66fc99e Initial load
duke
parents:
diff changeset
4898 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
4899 pipe_class floadF_mem(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4900 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4901 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4902 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4903 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4904 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4905
a61af66fc99e Initial load
duke
parents:
diff changeset
4906 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
4907 pipe_class floadD_mem(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4908 instruction_count(1); multiple_bundles; // Again, unaligned argument is only multiple case
a61af66fc99e Initial load
duke
parents:
diff changeset
4909 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4910 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4911 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4912 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4913
a61af66fc99e Initial load
duke
parents:
diff changeset
4914 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
4915 pipe_class floadF_stk(regF dst, stackSlotI stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4916 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4917 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4918 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4919 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4920 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4921
a61af66fc99e Initial load
duke
parents:
diff changeset
4922 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
4923 pipe_class floadD_stk(regD dst, stackSlotI stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4924 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4925 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4926 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4927 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4928 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4929
a61af66fc99e Initial load
duke
parents:
diff changeset
4930 // Memory Nop
a61af66fc99e Initial load
duke
parents:
diff changeset
4931 pipe_class mem_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4932 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4933 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4934 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4935
a61af66fc99e Initial load
duke
parents:
diff changeset
4936 pipe_class sethi(iRegP dst, immI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4937 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4938 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4939 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4940 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4941
a61af66fc99e Initial load
duke
parents:
diff changeset
4942 pipe_class loadPollP(iRegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4943 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4944 poll : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4945 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4946 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4947
a61af66fc99e Initial load
duke
parents:
diff changeset
4948 pipe_class br(Universe br, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4949 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
4950 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4951 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4952
a61af66fc99e Initial load
duke
parents:
diff changeset
4953 pipe_class br_cc(Universe br, cmpOp cmp, flagsReg cr, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4954 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
4955 cr : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4956 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4957 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4958
a61af66fc99e Initial load
duke
parents:
diff changeset
4959 pipe_class br_reg(Universe br, cmpOp cmp, iRegI op1, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4960 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
4961 op1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4962 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4963 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4964 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4965
a61af66fc99e Initial load
duke
parents:
diff changeset
4966 pipe_class br_fcc(Universe br, cmpOpF cc, flagsReg cr, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4967 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
4968 cr : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4969 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4970 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4971
a61af66fc99e Initial load
duke
parents:
diff changeset
4972 pipe_class br_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4973 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4974 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4975 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4976
a61af66fc99e Initial load
duke
parents:
diff changeset
4977 pipe_class simple_call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4978 instruction_count(2); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
4979 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4980 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4981 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4982 A0 : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4983 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4984
a61af66fc99e Initial load
duke
parents:
diff changeset
4985 pipe_class compiled_call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4986 instruction_count(1); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
4987 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4988 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4989 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4990
a61af66fc99e Initial load
duke
parents:
diff changeset
4991 pipe_class call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4992 instruction_count(0); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
4993 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4994 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4995
a61af66fc99e Initial load
duke
parents:
diff changeset
4996 pipe_class tail_call(Universe ignore, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4997 single_instruction; has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
4998 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4999 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5000 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5001 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5002
a61af66fc99e Initial load
duke
parents:
diff changeset
5003 pipe_class ret(Universe ignore) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5004 single_instruction; has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5005 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5006 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5007 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5008
a61af66fc99e Initial load
duke
parents:
diff changeset
5009 pipe_class ret_poll(g3RegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5010 instruction_count(3); has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5011 poll : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5012 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5013 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5014
a61af66fc99e Initial load
duke
parents:
diff changeset
5015 // The real do-nothing guy
a61af66fc99e Initial load
duke
parents:
diff changeset
5016 pipe_class empty( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5017 instruction_count(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5018 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5019
a61af66fc99e Initial load
duke
parents:
diff changeset
5020 pipe_class long_memory_op() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5021 instruction_count(0); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
5022 fixed_latency(25);
a61af66fc99e Initial load
duke
parents:
diff changeset
5023 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5024 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5025
a61af66fc99e Initial load
duke
parents:
diff changeset
5026 // Check-cast
a61af66fc99e Initial load
duke
parents:
diff changeset
5027 pipe_class partial_subtype_check_pipe(Universe ignore, iRegP array, iRegP match ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5028 array : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5029 match : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5030 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5031 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5032 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5033 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5034
a61af66fc99e Initial load
duke
parents:
diff changeset
5035 // Convert FPU flags into +1,0,-1
a61af66fc99e Initial load
duke
parents:
diff changeset
5036 pipe_class floating_cmp( iRegI dst, regF src1, regF src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5037 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5038 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5039 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5040 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5041 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5042 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5043 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5044
a61af66fc99e Initial load
duke
parents:
diff changeset
5045 // Compare for p < q, and conditionally add y
a61af66fc99e Initial load
duke
parents:
diff changeset
5046 pipe_class cadd_cmpltmask( iRegI p, iRegI q, iRegI y ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5047 p : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5048 q : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5049 y : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5050 IALU : R(3)
a61af66fc99e Initial load
duke
parents:
diff changeset
5051 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5052
a61af66fc99e Initial load
duke
parents:
diff changeset
5053 // Perform a compare, then move conditionally in a branch delay slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
5054 pipe_class min_max( iRegI src2, iRegI srcdst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5055 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5056 srcdst : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5057 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5058 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5059 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5060
a61af66fc99e Initial load
duke
parents:
diff changeset
5061 // Define the class for the Nop node
a61af66fc99e Initial load
duke
parents:
diff changeset
5062 define %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5063 MachNop = ialu_nop;
a61af66fc99e Initial load
duke
parents:
diff changeset
5064 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5065
a61af66fc99e Initial load
duke
parents:
diff changeset
5066 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5067
a61af66fc99e Initial load
duke
parents:
diff changeset
5068 //----------INSTRUCTIONS-------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5069
a61af66fc99e Initial load
duke
parents:
diff changeset
5070 //------------Special Stack Slot instructions - no match rules-----------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5071 instruct stkI_to_regF(regF dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5072 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5073 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5074 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5075 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5076 format %{ "LDF $src,$dst\t! stkI to regF" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5077 opcode(Assembler::ldf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5078 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5079 ins_pipe(floadF_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
5080 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5081
a61af66fc99e Initial load
duke
parents:
diff changeset
5082 instruct stkL_to_regD(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5083 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5084 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5085 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5086 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5087 format %{ "LDDF $src,$dst\t! stkL to regD" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5088 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5089 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5090 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
5091 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5092
a61af66fc99e Initial load
duke
parents:
diff changeset
5093 instruct regF_to_stkI(stackSlotI dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5094 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5095 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5096 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5097 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5098 format %{ "STF $src,$dst\t! regF to stkI" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5099 opcode(Assembler::stf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5100 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5101 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5102 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5103
a61af66fc99e Initial load
duke
parents:
diff changeset
5104 instruct regD_to_stkL(stackSlotL dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5105 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5106 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5107 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5108 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5109 format %{ "STDF $src,$dst\t! regD to stkL" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5110 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5111 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5112 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5113 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5114
a61af66fc99e Initial load
duke
parents:
diff changeset
5115 instruct regI_to_stkLHi(stackSlotL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5116 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5117 ins_cost(MEMORY_REF_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5118 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
5119 format %{ "STW $src,$dst.hi\t! long\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
5120 "STW R_G0,$dst.lo" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5121 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5122 ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, R_G0));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5123 ins_pipe(lstoreI_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5124 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5125
a61af66fc99e Initial load
duke
parents:
diff changeset
5126 instruct regL_to_stkD(stackSlotD dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5127 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5128 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5129 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5130 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5131 format %{ "STX $src,$dst\t! regL to stkD" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5132 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5133 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5134 ins_pipe(istore_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5135 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5136
a61af66fc99e Initial load
duke
parents:
diff changeset
5137 //---------- Chain stack slots between similar types --------
a61af66fc99e Initial load
duke
parents:
diff changeset
5138
a61af66fc99e Initial load
duke
parents:
diff changeset
5139 // Load integer from stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5140 instruct stkI_to_regI( iRegI dst, stackSlotI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5141 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5142 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5143
a61af66fc99e Initial load
duke
parents:
diff changeset
5144 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5145 format %{ "LDUW $src,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5146 opcode(Assembler::lduw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5147 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5148 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5149 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5150
a61af66fc99e Initial load
duke
parents:
diff changeset
5151 // Store integer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5152 instruct regI_to_stkI( stackSlotI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5153 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5154 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5155
a61af66fc99e Initial load
duke
parents:
diff changeset
5156 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5157 format %{ "STW $src,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5158 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5159 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5160 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5161 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5162
a61af66fc99e Initial load
duke
parents:
diff changeset
5163 // Load long from stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5164 instruct stkL_to_regL( iRegL dst, stackSlotL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5165 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5166
a61af66fc99e Initial load
duke
parents:
diff changeset
5167 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5168 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5169 format %{ "LDX $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5170 opcode(Assembler::ldx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5171 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5172 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5173 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5174
a61af66fc99e Initial load
duke
parents:
diff changeset
5175 // Store long to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5176 instruct regL_to_stkL(stackSlotL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5177 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5178
a61af66fc99e Initial load
duke
parents:
diff changeset
5179 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5180 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5181 format %{ "STX $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5182 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5183 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5184 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5185 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5186
a61af66fc99e Initial load
duke
parents:
diff changeset
5187 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5188 // Load pointer from stack slot, 64-bit encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
5189 instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5190 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5191 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5192 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5193 format %{ "LDX $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5194 opcode(Assembler::ldx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5195 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5196 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5197 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5198
a61af66fc99e Initial load
duke
parents:
diff changeset
5199 // Store pointer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5200 instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5201 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5202 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5203 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5204 format %{ "STX $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5205 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5206 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5207 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5208 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5209 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5210 // Load pointer from stack slot, 32-bit encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
5211 instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5212 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5213 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5214 format %{ "LDUW $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5215 opcode(Assembler::lduw_op3, Assembler::ldst_op);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5216 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5217 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5218 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5219
a61af66fc99e Initial load
duke
parents:
diff changeset
5220 // Store pointer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5221 instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5222 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5223 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5224 format %{ "STW $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5225 opcode(Assembler::stw_op3, Assembler::ldst_op);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5226 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5227 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5228 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5229 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5230
a61af66fc99e Initial load
duke
parents:
diff changeset
5231 //------------Special Nop instructions for bundling - no match rules-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
5232 // Nop using the A0 functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5233 instruct Nop_A0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5234 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5235
a61af66fc99e Initial load
duke
parents:
diff changeset
5236 format %{ "NOP ! Alu Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5237 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
5238 ins_encode( form2_nop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
5239 ins_pipe(ialu_nop_A0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5240 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5241
a61af66fc99e Initial load
duke
parents:
diff changeset
5242 // Nop using the A1 functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5243 instruct Nop_A1( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5244 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5245
a61af66fc99e Initial load
duke
parents:
diff changeset
5246 format %{ "NOP ! Alu Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5247 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
5248 ins_encode( form2_nop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
5249 ins_pipe(ialu_nop_A1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5250 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5251
a61af66fc99e Initial load
duke
parents:
diff changeset
5252 // Nop using the memory functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5253 instruct Nop_MS( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5254 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5255
a61af66fc99e Initial load
duke
parents:
diff changeset
5256 format %{ "NOP ! Memory Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5257 ins_encode( emit_mem_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5258 ins_pipe(mem_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5259 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5260
a61af66fc99e Initial load
duke
parents:
diff changeset
5261 // Nop using the floating add functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5262 instruct Nop_FA( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5263 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5264
a61af66fc99e Initial load
duke
parents:
diff changeset
5265 format %{ "NOP ! Floating Add Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5266 ins_encode( emit_fadd_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5267 ins_pipe(fadd_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5268 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5269
a61af66fc99e Initial load
duke
parents:
diff changeset
5270 // Nop using the branch functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5271 instruct Nop_BR( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5272 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5273
a61af66fc99e Initial load
duke
parents:
diff changeset
5274 format %{ "NOP ! Branch Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5275 ins_encode( emit_br_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5276 ins_pipe(br_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5277 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5278
a61af66fc99e Initial load
duke
parents:
diff changeset
5279 //----------Load/Store/Move Instructions---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5280 //----------Load Instructions--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5281 // Load Byte (8bit signed)
a61af66fc99e Initial load
duke
parents:
diff changeset
5282 instruct loadB(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5283 match(Set dst (LoadB mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5284 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5285
a61af66fc99e Initial load
duke
parents:
diff changeset
5286 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5287 format %{ "LDSB $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5288 opcode(Assembler::ldsb_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5289 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5290 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5291 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5292
a61af66fc99e Initial load
duke
parents:
diff changeset
5293 // Load Byte (8bit UNsigned) into an int reg
a61af66fc99e Initial load
duke
parents:
diff changeset
5294 instruct loadUB(iRegI dst, memory mem, immI_255 bytemask) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5295 match(Set dst (AndI (LoadB mem) bytemask));
a61af66fc99e Initial load
duke
parents:
diff changeset
5296 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5297
a61af66fc99e Initial load
duke
parents:
diff changeset
5298 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5299 format %{ "LDUB $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5300 opcode(Assembler::ldub_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5301 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5302 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5303 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5304
a61af66fc99e Initial load
duke
parents:
diff changeset
5305 // Load Byte (8bit UNsigned) into a Long Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5306 instruct loadUBL(iRegL dst, memory mem, immL_FF bytemask) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5307 match(Set dst (AndL (ConvI2L (LoadB mem)) bytemask));
a61af66fc99e Initial load
duke
parents:
diff changeset
5308 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5309
a61af66fc99e Initial load
duke
parents:
diff changeset
5310 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5311 format %{ "LDUB $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5312 opcode(Assembler::ldub_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5313 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5314 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5315 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5316
a61af66fc99e Initial load
duke
parents:
diff changeset
5317 // Load Char (16bit UNsigned) into a Long Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5318 instruct loadUCL(iRegL dst, memory mem, immL_FFFF bytemask) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5319 match(Set dst (AndL (ConvI2L (LoadC mem)) bytemask));
a61af66fc99e Initial load
duke
parents:
diff changeset
5320 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5321
a61af66fc99e Initial load
duke
parents:
diff changeset
5322 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5323 format %{ "LDUH $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5324 opcode(Assembler::lduh_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5325 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5326 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5327 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5328
a61af66fc99e Initial load
duke
parents:
diff changeset
5329 // Load Char (16bit unsigned)
a61af66fc99e Initial load
duke
parents:
diff changeset
5330 instruct loadC(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5331 match(Set dst (LoadC mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5332 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5333
a61af66fc99e Initial load
duke
parents:
diff changeset
5334 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5335 format %{ "LDUH $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5336 opcode(Assembler::lduh_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5337 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5338 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5339 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5340
a61af66fc99e Initial load
duke
parents:
diff changeset
5341 // Load Integer
a61af66fc99e Initial load
duke
parents:
diff changeset
5342 instruct loadI(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5343 match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5344 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5345 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5346
a61af66fc99e Initial load
duke
parents:
diff changeset
5347 format %{ "LDUW $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5348 opcode(Assembler::lduw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5349 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5350 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5351 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5352
a61af66fc99e Initial load
duke
parents:
diff changeset
5353 // Load Long - aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
5354 instruct loadL(iRegL dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5355 match(Set dst (LoadL mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5356 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5357 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5358 format %{ "LDX $mem,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5359 opcode(Assembler::ldx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5360 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5361 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5362 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5363
a61af66fc99e Initial load
duke
parents:
diff changeset
5364 // Load Long - UNaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
5365 instruct loadL_unaligned(iRegL dst, memory mem, o7RegI tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5366 match(Set dst (LoadL_unaligned mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5367 effect(KILL tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
5368 ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5369 size(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
5370 format %{ "LDUW $mem+4,R_O7\t! misaligned long\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5371 "\tLDUW $mem ,$dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5372 "\tSLLX #32, $dst, $dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5373 "\tOR $dst, R_O7, $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5374 opcode(Assembler::lduw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5375 ins_encode(form3_mem_reg_long_unaligned_marshal( mem, dst ));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5376 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5377 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5378
a61af66fc99e Initial load
duke
parents:
diff changeset
5379 // Load Aligned Packed Byte into a Double Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5380 instruct loadA8B(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5381 match(Set dst (Load8B mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5382 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5383 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5384 format %{ "LDDF $mem,$dst\t! packed8B" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5385 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5386 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5387 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5388 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5389
a61af66fc99e Initial load
duke
parents:
diff changeset
5390 // Load Aligned Packed Char into a Double Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5391 instruct loadA4C(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5392 match(Set dst (Load4C mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5393 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5394 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5395 format %{ "LDDF $mem,$dst\t! packed4C" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5396 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5397 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5398 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5399 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5400
a61af66fc99e Initial load
duke
parents:
diff changeset
5401 // Load Aligned Packed Short into a Double Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5402 instruct loadA4S(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5403 match(Set dst (Load4S mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5404 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5405 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5406 format %{ "LDDF $mem,$dst\t! packed4S" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5407 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5408 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5409 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5410 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5411
a61af66fc99e Initial load
duke
parents:
diff changeset
5412 // Load Aligned Packed Int into a Double Register
a61af66fc99e Initial load
duke
parents:
diff changeset
5413 instruct loadA2I(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5414 match(Set dst (Load2I mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5415 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5416 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5417 format %{ "LDDF $mem,$dst\t! packed2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5418 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5419 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5420 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5421 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5422
a61af66fc99e Initial load
duke
parents:
diff changeset
5423 // Load Range
a61af66fc99e Initial load
duke
parents:
diff changeset
5424 instruct loadRange(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5425 match(Set dst (LoadRange mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5426 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5427
a61af66fc99e Initial load
duke
parents:
diff changeset
5428 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5429 format %{ "LDUW $mem,$dst\t! range" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5430 opcode(Assembler::lduw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5431 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5432 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5433 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5434
a61af66fc99e Initial load
duke
parents:
diff changeset
5435 // Load Integer into %f register (for fitos/fitod)
a61af66fc99e Initial load
duke
parents:
diff changeset
5436 instruct loadI_freg(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5437 match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5438 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5439 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5440
a61af66fc99e Initial load
duke
parents:
diff changeset
5441 format %{ "LDF $mem,$dst\t! for fitos/fitod" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5442 opcode(Assembler::ldf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5443 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5444 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5445 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5446
a61af66fc99e Initial load
duke
parents:
diff changeset
5447 // Load Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
5448 instruct loadP(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5449 match(Set dst (LoadP mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5450 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5451 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5452
a61af66fc99e Initial load
duke
parents:
diff changeset
5453 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5454 format %{ "LDUW $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5455 opcode(Assembler::lduw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5456 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5457 format %{ "LDX $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5458 opcode(Assembler::ldx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5459 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5460 ins_encode( form3_mem_reg( mem, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5461 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5462 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5463
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5464 // Load Compressed Pointer
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5465 instruct loadN(iRegN dst, memory mem) %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5466 match(Set dst (LoadN mem));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5467 ins_cost(MEMORY_REF_COST);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5468 size(4);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5469
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5470 format %{ "LDUW $mem,$dst\t! compressed ptr" %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5471 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5472 Register base = as_Register($mem$$base);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5473 Register index = as_Register($mem$$index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5474 Register dst = $dst$$Register;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5475 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5476 __ lduw(base, index, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5477 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5478 __ lduw(base, $mem$$disp, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5479 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5480 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5481 ins_pipe(iload_mem);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5482 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5483
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5484 // Load Klass Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
5485 instruct loadKlass(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5486 match(Set dst (LoadKlass mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5487 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5488 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5489
a61af66fc99e Initial load
duke
parents:
diff changeset
5490 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5491 format %{ "LDUW $mem,$dst\t! klass ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5492 opcode(Assembler::lduw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5493 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5494 format %{ "LDX $mem,$dst\t! klass ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5495 opcode(Assembler::ldx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5496 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5497 ins_encode( form3_mem_reg( mem, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5498 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5499 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5500
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5501 // Load narrow Klass Pointer
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5502 instruct loadNKlass(iRegN dst, memory mem) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5503 match(Set dst (LoadNKlass mem));
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5504 ins_cost(MEMORY_REF_COST);
165
437d03ea40b1 6703888: Compressed Oops: use the 32-bits gap after klass in a object
kvn
parents: 164
diff changeset
5505 size(4);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5506
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5507 format %{ "LDUW $mem,$dst\t! compressed klass ptr" %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5508
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5509 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5510 Register base = as_Register($mem$$base);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5511 Register index = as_Register($mem$$index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5512 Register dst = $dst$$Register;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5513 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5514 __ lduw(base, index, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5515 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5516 __ lduw(base, $mem$$disp, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5517 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5518 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5519 ins_pipe(iload_mem);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5520 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5521
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5522 // Load Short (16bit signed)
a61af66fc99e Initial load
duke
parents:
diff changeset
5523 instruct loadS(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5524 match(Set dst (LoadS mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5525 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5526
a61af66fc99e Initial load
duke
parents:
diff changeset
5527 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5528 format %{ "LDSH $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5529 opcode(Assembler::ldsh_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5530 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5531 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5532 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5533
a61af66fc99e Initial load
duke
parents:
diff changeset
5534 // Load Double
a61af66fc99e Initial load
duke
parents:
diff changeset
5535 instruct loadD(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5536 match(Set dst (LoadD mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5537 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5538
a61af66fc99e Initial load
duke
parents:
diff changeset
5539 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5540 format %{ "LDDF $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5541 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5542 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5543 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5544 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5545
a61af66fc99e Initial load
duke
parents:
diff changeset
5546 // Load Double - UNaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
5547 instruct loadD_unaligned(regD_low dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5548 match(Set dst (LoadD_unaligned mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5549 ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5550 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
5551 format %{ "LDF $mem ,$dst.hi\t! misaligned double\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5552 "\tLDF $mem+4,$dst.lo\t!" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5553 opcode(Assembler::ldf_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
5554 ins_encode( form3_mem_reg_double_unaligned( mem, dst ));
a61af66fc99e Initial load
duke
parents:
diff changeset
5555 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5556 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5557
a61af66fc99e Initial load
duke
parents:
diff changeset
5558 // Load Float
a61af66fc99e Initial load
duke
parents:
diff changeset
5559 instruct loadF(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5560 match(Set dst (LoadF mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5561 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5562
a61af66fc99e Initial load
duke
parents:
diff changeset
5563 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5564 format %{ "LDF $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5565 opcode(Assembler::ldf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5566 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5567 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5568 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5569
a61af66fc99e Initial load
duke
parents:
diff changeset
5570 // Load Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
5571 instruct loadConI( iRegI dst, immI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5572 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5573 ins_cost(DEFAULT_COST * 3/2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5574 format %{ "SET $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5575 ins_encode( Set32(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5576 ins_pipe(ialu_hi_lo_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5577 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5578
a61af66fc99e Initial load
duke
parents:
diff changeset
5579 instruct loadConI13( iRegI dst, immI13 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5580 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5581
a61af66fc99e Initial load
duke
parents:
diff changeset
5582 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5583 format %{ "MOV $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5584 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5585 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5586 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5587
a61af66fc99e Initial load
duke
parents:
diff changeset
5588 instruct loadConP(iRegP dst, immP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5589 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5590 ins_cost(DEFAULT_COST * 3/2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5591 format %{ "SET $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5592 // This rule does not use "expand" unlike loadConI because then
a61af66fc99e Initial load
duke
parents:
diff changeset
5593 // the result type is not known to be an Oop. An ADLC
a61af66fc99e Initial load
duke
parents:
diff changeset
5594 // enhancement will be needed to make that work - not worth it!
a61af66fc99e Initial load
duke
parents:
diff changeset
5595
a61af66fc99e Initial load
duke
parents:
diff changeset
5596 ins_encode( SetPtr( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5597 ins_pipe(loadConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5598
a61af66fc99e Initial load
duke
parents:
diff changeset
5599 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5600
a61af66fc99e Initial load
duke
parents:
diff changeset
5601 instruct loadConP0(iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5602 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5603
a61af66fc99e Initial load
duke
parents:
diff changeset
5604 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5605 format %{ "CLR $dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5606 ins_encode( SetNull( dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5607 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5608 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5609
a61af66fc99e Initial load
duke
parents:
diff changeset
5610 instruct loadConP_poll(iRegP dst, immP_poll src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5611 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5612 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5613 format %{ "SET $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5614 ins_encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5615 Address polling_page(reg_to_register_object($dst$$reg), (address)os::get_polling_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
5616 __ sethi(polling_page, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
5617 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5618 ins_pipe(loadConP_poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
5619 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5620
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5621 instruct loadConN0(iRegN dst, immN0 src) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5622 match(Set dst src);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5623
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5624 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5625 format %{ "CLR $dst\t! compressed NULL ptr" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5626 ins_encode( SetNull( dst ) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5627 ins_pipe(ialu_imm);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5628 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5629
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5630 instruct loadConN(iRegN dst, immN src) %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5631 match(Set dst src);
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5632 ins_cost(DEFAULT_COST * 3/2);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5633 format %{ "SET $src,$dst\t! compressed ptr" %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5634 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5635 Register dst = $dst$$Register;
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5636 __ set_narrow_oop((jobject)$src$$constant, dst);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5637 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
5638 ins_pipe(ialu_hi_lo_reg);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5639 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5640
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5641 instruct loadConL(iRegL dst, immL src, o7RegL tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5642 // %%% maybe this should work like loadConD
a61af66fc99e Initial load
duke
parents:
diff changeset
5643 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5644 effect(KILL tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
5645 ins_cost(DEFAULT_COST * 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5646 format %{ "SET64 $src,$dst KILL $tmp\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5647 ins_encode( LdImmL(src, dst, tmp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5648 ins_pipe(loadConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
5649 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5650
a61af66fc99e Initial load
duke
parents:
diff changeset
5651 instruct loadConL0( iRegL dst, immL0 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5652 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5653 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5654 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5655 format %{ "CLR $dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5656 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5657 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5658 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5659
a61af66fc99e Initial load
duke
parents:
diff changeset
5660 instruct loadConL13( iRegL dst, immL13 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5661 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5662 ins_cost(DEFAULT_COST * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5663
a61af66fc99e Initial load
duke
parents:
diff changeset
5664 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5665 format %{ "MOV $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5666 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5667 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5668 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5669
a61af66fc99e Initial load
duke
parents:
diff changeset
5670 instruct loadConF(regF dst, immF src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5671 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5672 effect(KILL tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
5673
a61af66fc99e Initial load
duke
parents:
diff changeset
5674 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5675 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
5676 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5677 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
5678 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5679
a61af66fc99e Initial load
duke
parents:
diff changeset
5680 format %{ "SETHI hi(&$src),$tmp\t!get float $src from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
5681 "LDF [$tmp+lo(&$src)],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5682 ins_encode( LdImmF(src, dst, tmp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5683 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
5684 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5685
a61af66fc99e Initial load
duke
parents:
diff changeset
5686 instruct loadConD(regD dst, immD src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5687 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5688 effect(KILL tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
5689
a61af66fc99e Initial load
duke
parents:
diff changeset
5690 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5691 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
5692 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5693 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
5694 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5695
a61af66fc99e Initial load
duke
parents:
diff changeset
5696 format %{ "SETHI hi(&$src),$tmp\t!get double $src from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
5697 "LDDF [$tmp+lo(&$src)],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5698 ins_encode( LdImmD(src, dst, tmp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5699 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
5700 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5701
a61af66fc99e Initial load
duke
parents:
diff changeset
5702 // Prefetch instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
5703 // Must be safe to execute with invalid address (cannot fault).
a61af66fc99e Initial load
duke
parents:
diff changeset
5704
a61af66fc99e Initial load
duke
parents:
diff changeset
5705 instruct prefetchr( memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5706 match( PrefetchRead mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
5707 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5708
a61af66fc99e Initial load
duke
parents:
diff changeset
5709 format %{ "PREFETCH $mem,0\t! Prefetch read-many" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5710 opcode(Assembler::prefetch_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
5711 ins_encode( form3_mem_prefetch_read( mem ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5712 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5713 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5714
a61af66fc99e Initial load
duke
parents:
diff changeset
5715 instruct prefetchw( memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5716 match( PrefetchWrite mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
5717 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5718
a61af66fc99e Initial load
duke
parents:
diff changeset
5719 format %{ "PREFETCH $mem,2\t! Prefetch write-many (and read)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5720 opcode(Assembler::prefetch_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
5721 ins_encode( form3_mem_prefetch_write( mem ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5722 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5723 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5724
a61af66fc99e Initial load
duke
parents:
diff changeset
5725
a61af66fc99e Initial load
duke
parents:
diff changeset
5726 //----------Store Instructions-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5727 // Store Byte
a61af66fc99e Initial load
duke
parents:
diff changeset
5728 instruct storeB(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5729 match(Set mem (StoreB mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5730 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5731
a61af66fc99e Initial load
duke
parents:
diff changeset
5732 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5733 format %{ "STB $src,$mem\t! byte" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5734 opcode(Assembler::stb_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5735 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5736 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5737 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5738
a61af66fc99e Initial load
duke
parents:
diff changeset
5739 instruct storeB0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5740 match(Set mem (StoreB mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5741 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5742
a61af66fc99e Initial load
duke
parents:
diff changeset
5743 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5744 format %{ "STB $src,$mem\t! byte" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5745 opcode(Assembler::stb_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5746 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5747 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5748 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5749
a61af66fc99e Initial load
duke
parents:
diff changeset
5750 instruct storeCM0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5751 match(Set mem (StoreCM mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5752 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5753
a61af66fc99e Initial load
duke
parents:
diff changeset
5754 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5755 format %{ "STB $src,$mem\t! CMS card-mark byte 0" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5756 opcode(Assembler::stb_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5757 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5758 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5759 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5760
a61af66fc99e Initial load
duke
parents:
diff changeset
5761 // Store Char/Short
a61af66fc99e Initial load
duke
parents:
diff changeset
5762 instruct storeC(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5763 match(Set mem (StoreC mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5764 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5765
a61af66fc99e Initial load
duke
parents:
diff changeset
5766 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5767 format %{ "STH $src,$mem\t! short" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5768 opcode(Assembler::sth_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5769 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5770 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5771 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5772
a61af66fc99e Initial load
duke
parents:
diff changeset
5773 instruct storeC0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5774 match(Set mem (StoreC mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5775 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5776
a61af66fc99e Initial load
duke
parents:
diff changeset
5777 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5778 format %{ "STH $src,$mem\t! short" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5779 opcode(Assembler::sth_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5780 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5781 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5782 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5783
a61af66fc99e Initial load
duke
parents:
diff changeset
5784 // Store Integer
a61af66fc99e Initial load
duke
parents:
diff changeset
5785 instruct storeI(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5786 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5787 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5788
a61af66fc99e Initial load
duke
parents:
diff changeset
5789 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5790 format %{ "STW $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5791 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5792 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5793 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5794 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5795
a61af66fc99e Initial load
duke
parents:
diff changeset
5796 // Store Long
a61af66fc99e Initial load
duke
parents:
diff changeset
5797 instruct storeL(memory mem, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5798 match(Set mem (StoreL mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5799 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5800 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5801 format %{ "STX $src,$mem\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5802 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5803 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5804 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5805 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5806
a61af66fc99e Initial load
duke
parents:
diff changeset
5807 instruct storeI0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5808 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5809 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5810
a61af66fc99e Initial load
duke
parents:
diff changeset
5811 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5812 format %{ "STW $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5813 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5814 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5815 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5816 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5817
a61af66fc99e Initial load
duke
parents:
diff changeset
5818 instruct storeL0(memory mem, immL0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5819 match(Set mem (StoreL mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5820 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5821
a61af66fc99e Initial load
duke
parents:
diff changeset
5822 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5823 format %{ "STX $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5824 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5825 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5826 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5827 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5828
a61af66fc99e Initial load
duke
parents:
diff changeset
5829 // Store Integer from float register (used after fstoi)
a61af66fc99e Initial load
duke
parents:
diff changeset
5830 instruct storeI_Freg(memory mem, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5831 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5832 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5833
a61af66fc99e Initial load
duke
parents:
diff changeset
5834 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5835 format %{ "STF $src,$mem\t! after fstoi/fdtoi" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5836 opcode(Assembler::stf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5837 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5838 ins_pipe(fstoreF_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5839 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5840
a61af66fc99e Initial load
duke
parents:
diff changeset
5841 // Store Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
5842 instruct storeP(memory dst, sp_ptr_RegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5843 match(Set dst (StoreP dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5844 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5845 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5846
a61af66fc99e Initial load
duke
parents:
diff changeset
5847 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5848 format %{ "STW $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5849 opcode(Assembler::stw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5850 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5851 format %{ "STX $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5852 opcode(Assembler::stx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5853 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5854 ins_encode( form3_mem_reg( dst, src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5855 ins_pipe(istore_mem_spORreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5856 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5857
a61af66fc99e Initial load
duke
parents:
diff changeset
5858 instruct storeP0(memory dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5859 match(Set dst (StoreP dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5860 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5861 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5862
a61af66fc99e Initial load
duke
parents:
diff changeset
5863 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5864 format %{ "STW $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5865 opcode(Assembler::stw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5866 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5867 format %{ "STX $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5868 opcode(Assembler::stx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
5869 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5870 ins_encode( form3_mem_reg( dst, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
5871 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5872 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5873
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5874 // Store Compressed Pointer
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5875 instruct storeN(memory dst, iRegN src) %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5876 match(Set dst (StoreN dst src));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5877 ins_cost(MEMORY_REF_COST);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5878 size(4);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5879
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5880 format %{ "STW $src,$dst\t! compressed ptr" %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5881 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5882 Register base = as_Register($dst$$base);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5883 Register index = as_Register($dst$$index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5884 Register src = $src$$Register;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5885 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5886 __ stw(src, base, index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5887 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5888 __ stw(src, base, $dst$$disp);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5889 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5890 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5891 ins_pipe(istore_mem_spORreg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5892 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5893
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5894 instruct storeN0(memory dst, immN0 src) %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5895 match(Set dst (StoreN dst src));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5896 ins_cost(MEMORY_REF_COST);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5897 size(4);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5898
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5899 format %{ "STW $src,$dst\t! compressed ptr" %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5900 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5901 Register base = as_Register($dst$$base);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5902 Register index = as_Register($dst$$index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5903 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5904 __ stw(0, base, index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5905 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5906 __ stw(0, base, $dst$$disp);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5907 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5908 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5909 ins_pipe(istore_mem_zero);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5910 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5911
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5912 // Store Double
a61af66fc99e Initial load
duke
parents:
diff changeset
5913 instruct storeD( memory mem, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5914 match(Set mem (StoreD mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5915 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5916
a61af66fc99e Initial load
duke
parents:
diff changeset
5917 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5918 format %{ "STDF $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5919 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5920 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5921 ins_pipe(fstoreD_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5922 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5923
a61af66fc99e Initial load
duke
parents:
diff changeset
5924 instruct storeD0( memory mem, immD0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5925 match(Set mem (StoreD mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5926 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5927
a61af66fc99e Initial load
duke
parents:
diff changeset
5928 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5929 format %{ "STX $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5930 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5931 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5932 ins_pipe(fstoreD_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5933 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5934
a61af66fc99e Initial load
duke
parents:
diff changeset
5935 // Store Float
a61af66fc99e Initial load
duke
parents:
diff changeset
5936 instruct storeF( memory mem, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5937 match(Set mem (StoreF mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5938 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5939
a61af66fc99e Initial load
duke
parents:
diff changeset
5940 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5941 format %{ "STF $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5942 opcode(Assembler::stf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5943 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5944 ins_pipe(fstoreF_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5945 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5946
a61af66fc99e Initial load
duke
parents:
diff changeset
5947 instruct storeF0( memory mem, immF0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5948 match(Set mem (StoreF mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5949 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5950
a61af66fc99e Initial load
duke
parents:
diff changeset
5951 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5952 format %{ "STW $src,$mem\t! storeF0" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5953 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5954 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5955 ins_pipe(fstoreF_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
5956 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5957
a61af66fc99e Initial load
duke
parents:
diff changeset
5958 // Store Aligned Packed Bytes in Double register to memory
a61af66fc99e Initial load
duke
parents:
diff changeset
5959 instruct storeA8B(memory mem, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5960 match(Set mem (Store8B mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
5961 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5962 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5963 format %{ "STDF $src,$mem\t! packed8B" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5964 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
5965 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5966 ins_pipe(fstoreD_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5967 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5968
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5969 // Convert oop pointer into compressed form
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5970 instruct encodeHeapOop(iRegN dst, iRegP src) %{
221
1e026f8da827 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 182
diff changeset
5971 predicate(n->bottom_type()->make_ptr()->ptr() != TypePtr::NotNull);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5972 match(Set dst (EncodeP src));
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5973 format %{ "encode_heap_oop $src, $dst" %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5974 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5975 __ encode_heap_oop($src$$Register, $dst$$Register);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5976 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5977 ins_pipe(ialu_reg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5978 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5979
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5980 instruct encodeHeapOop_not_null(iRegN dst, iRegP src) %{
221
1e026f8da827 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 182
diff changeset
5981 predicate(n->bottom_type()->make_ptr()->ptr() == TypePtr::NotNull);
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5982 match(Set dst (EncodeP src));
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5983 format %{ "encode_heap_oop_not_null $src, $dst" %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5984 ins_encode %{
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5985 __ encode_heap_oop_not_null($src$$Register, $dst$$Register);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5986 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5987 ins_pipe(ialu_reg);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5988 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
5989
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5990 instruct decodeHeapOop(iRegP dst, iRegN src) %{
182
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
5991 predicate(n->bottom_type()->is_oopptr()->ptr() != TypePtr::NotNull &&
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
5992 n->bottom_type()->is_oopptr()->ptr() != TypePtr::Constant);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5993 match(Set dst (DecodeN src));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5994 format %{ "decode_heap_oop $src, $dst" %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5995 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5996 __ decode_heap_oop($src$$Register, $dst$$Register);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5997 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5998 ins_pipe(ialu_reg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5999 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6000
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6001 instruct decodeHeapOop_not_null(iRegP dst, iRegN src) %{
182
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6002 predicate(n->bottom_type()->is_oopptr()->ptr() == TypePtr::NotNull ||
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6003 n->bottom_type()->is_oopptr()->ptr() == TypePtr::Constant);
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6004 match(Set dst (DecodeN src));
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6005 format %{ "decode_heap_oop_not_null $src, $dst" %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6006 ins_encode %{
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6007 __ decode_heap_oop_not_null($src$$Register, $dst$$Register);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6008 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6009 ins_pipe(ialu_reg);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6010 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6011
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6012
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6013 // Store Zero into Aligned Packed Bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
6014 instruct storeA8B0(memory mem, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6015 match(Set mem (Store8B mem zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
6016 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6017 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6018 format %{ "STX $zero,$mem\t! packed8B" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6019 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6020 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6021 ins_pipe(fstoreD_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6022 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6023
a61af66fc99e Initial load
duke
parents:
diff changeset
6024 // Store Aligned Packed Chars/Shorts in Double register to memory
a61af66fc99e Initial load
duke
parents:
diff changeset
6025 instruct storeA4C(memory mem, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6026 match(Set mem (Store4C mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6027 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6028 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6029 format %{ "STDF $src,$mem\t! packed4C" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6030 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6031 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6032 ins_pipe(fstoreD_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6033 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6034
a61af66fc99e Initial load
duke
parents:
diff changeset
6035 // Store Zero into Aligned Packed Chars/Shorts
a61af66fc99e Initial load
duke
parents:
diff changeset
6036 instruct storeA4C0(memory mem, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6037 match(Set mem (Store4C mem (Replicate4C zero)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6038 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6039 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6040 format %{ "STX $zero,$mem\t! packed4C" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6041 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6042 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6043 ins_pipe(fstoreD_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6044 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6045
a61af66fc99e Initial load
duke
parents:
diff changeset
6046 // Store Aligned Packed Ints in Double register to memory
a61af66fc99e Initial load
duke
parents:
diff changeset
6047 instruct storeA2I(memory mem, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6048 match(Set mem (Store2I mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6049 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6050 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6051 format %{ "STDF $src,$mem\t! packed2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6052 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6053 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6054 ins_pipe(fstoreD_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6055 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6056
a61af66fc99e Initial load
duke
parents:
diff changeset
6057 // Store Zero into Aligned Packed Ints
a61af66fc99e Initial load
duke
parents:
diff changeset
6058 instruct storeA2I0(memory mem, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6059 match(Set mem (Store2I mem zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
6060 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6061 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6062 format %{ "STX $zero,$mem\t! packed2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6063 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6064 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6065 ins_pipe(fstoreD_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6066 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6067
a61af66fc99e Initial load
duke
parents:
diff changeset
6068
a61af66fc99e Initial load
duke
parents:
diff changeset
6069 //----------MemBar Instructions-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6070 // Memory barrier flavors
a61af66fc99e Initial load
duke
parents:
diff changeset
6071
a61af66fc99e Initial load
duke
parents:
diff changeset
6072 instruct membar_acquire() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6073 match(MemBarAcquire);
a61af66fc99e Initial load
duke
parents:
diff changeset
6074 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6075
a61af66fc99e Initial load
duke
parents:
diff changeset
6076 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6077 format %{ "MEMBAR-acquire" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6078 ins_encode( enc_membar_acquire );
a61af66fc99e Initial load
duke
parents:
diff changeset
6079 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6080 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6081
a61af66fc99e Initial load
duke
parents:
diff changeset
6082 instruct membar_acquire_lock() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6083 match(MemBarAcquire);
a61af66fc99e Initial load
duke
parents:
diff changeset
6084 predicate(Matcher::prior_fast_lock(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
6085 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6086
a61af66fc99e Initial load
duke
parents:
diff changeset
6087 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6088 format %{ "!MEMBAR-acquire (CAS in prior FastLock so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6089 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6090 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6091 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6092
a61af66fc99e Initial load
duke
parents:
diff changeset
6093 instruct membar_release() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6094 match(MemBarRelease);
a61af66fc99e Initial load
duke
parents:
diff changeset
6095 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6096
a61af66fc99e Initial load
duke
parents:
diff changeset
6097 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6098 format %{ "MEMBAR-release" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6099 ins_encode( enc_membar_release );
a61af66fc99e Initial load
duke
parents:
diff changeset
6100 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6101 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6102
a61af66fc99e Initial load
duke
parents:
diff changeset
6103 instruct membar_release_lock() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6104 match(MemBarRelease);
a61af66fc99e Initial load
duke
parents:
diff changeset
6105 predicate(Matcher::post_fast_unlock(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
6106 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6107
a61af66fc99e Initial load
duke
parents:
diff changeset
6108 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6109 format %{ "!MEMBAR-release (CAS in succeeding FastUnlock so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6110 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6111 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6112 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6113
a61af66fc99e Initial load
duke
parents:
diff changeset
6114 instruct membar_volatile() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6115 match(MemBarVolatile);
a61af66fc99e Initial load
duke
parents:
diff changeset
6116 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6117
a61af66fc99e Initial load
duke
parents:
diff changeset
6118 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6119 format %{ "MEMBAR-volatile" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6120 ins_encode( enc_membar_volatile );
a61af66fc99e Initial load
duke
parents:
diff changeset
6121 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6122 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6123
a61af66fc99e Initial load
duke
parents:
diff changeset
6124 instruct unnecessary_membar_volatile() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6125 match(MemBarVolatile);
a61af66fc99e Initial load
duke
parents:
diff changeset
6126 predicate(Matcher::post_store_load_barrier(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
6127 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6128
a61af66fc99e Initial load
duke
parents:
diff changeset
6129 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6130 format %{ "!MEMBAR-volatile (unnecessary so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6131 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6132 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6133 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6134
a61af66fc99e Initial load
duke
parents:
diff changeset
6135 //----------Register Move Instructions-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6136 instruct roundDouble_nop(regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6137 match(Set dst (RoundDouble dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6138 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6139 // SPARC results are already "rounded" (i.e., normal-format IEEE)
a61af66fc99e Initial load
duke
parents:
diff changeset
6140 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6141 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6142 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6143
a61af66fc99e Initial load
duke
parents:
diff changeset
6144
a61af66fc99e Initial load
duke
parents:
diff changeset
6145 instruct roundFloat_nop(regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6146 match(Set dst (RoundFloat dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6147 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6148 // SPARC results are already "rounded" (i.e., normal-format IEEE)
a61af66fc99e Initial load
duke
parents:
diff changeset
6149 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6150 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6151 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6152
a61af66fc99e Initial load
duke
parents:
diff changeset
6153
a61af66fc99e Initial load
duke
parents:
diff changeset
6154 // Cast Index to Pointer for unsafe natives
a61af66fc99e Initial load
duke
parents:
diff changeset
6155 instruct castX2P(iRegX src, iRegP dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6156 match(Set dst (CastX2P src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6157
a61af66fc99e Initial load
duke
parents:
diff changeset
6158 format %{ "MOV $src,$dst\t! IntX->Ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6159 ins_encode( form3_g0_rs2_rd_move( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6160 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6161 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6162
a61af66fc99e Initial load
duke
parents:
diff changeset
6163 // Cast Pointer to Index for unsafe natives
a61af66fc99e Initial load
duke
parents:
diff changeset
6164 instruct castP2X(iRegP src, iRegX dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6165 match(Set dst (CastP2X src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6166
a61af66fc99e Initial load
duke
parents:
diff changeset
6167 format %{ "MOV $src,$dst\t! Ptr->IntX" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6168 ins_encode( form3_g0_rs2_rd_move( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6169 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6170 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6171
a61af66fc99e Initial load
duke
parents:
diff changeset
6172 instruct stfSSD(stackSlotD stkSlot, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6173 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6174 match(Set stkSlot src); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6175 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6176 format %{ "STDF $src,$stkSlot\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6177 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6178 ins_encode(simple_form3_mem_reg(stkSlot, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6179 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6180 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6181
a61af66fc99e Initial load
duke
parents:
diff changeset
6182 instruct ldfSSD(regD dst, stackSlotD stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6183 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6184 match(Set dst stkSlot); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6185 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6186 format %{ "LDDF $stkSlot,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6187 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6188 ins_encode(simple_form3_mem_reg(stkSlot, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6189 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
6190 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6191
a61af66fc99e Initial load
duke
parents:
diff changeset
6192 instruct stfSSF(stackSlotF stkSlot, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6193 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6194 match(Set stkSlot src); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6195 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6196 format %{ "STF $src,$stkSlot\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6197 opcode(Assembler::stf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6198 ins_encode(simple_form3_mem_reg(stkSlot, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6199 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6200 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6201
a61af66fc99e Initial load
duke
parents:
diff changeset
6202 //----------Conditional Move---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6203 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6204 instruct cmovIP_reg(cmpOpP cmp, flagsRegP pcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6205 match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6206 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6207 format %{ "MOV$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6208 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6209 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6210 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6211
a61af66fc99e Initial load
duke
parents:
diff changeset
6212 instruct cmovIP_imm(cmpOpP cmp, flagsRegP pcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6213 match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6214 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6215 format %{ "MOV$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6216 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6217 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6218 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6219
a61af66fc99e Initial load
duke
parents:
diff changeset
6220 instruct cmovII_reg(cmpOp cmp, flagsReg icc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6221 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6222 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6223 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6224 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6225 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6226 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6227 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6228
a61af66fc99e Initial load
duke
parents:
diff changeset
6229 instruct cmovII_imm(cmpOp cmp, flagsReg icc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6230 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6231 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6232 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6233 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6234 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6235 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6236 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6237
81
dee7a3f3dc9d 6636352: Unit tests for supplementary character support fail with -XX:+AggressiveOpts
never
parents: 0
diff changeset
6238 instruct cmovII_U_reg(cmpOpU cmp, flagsRegU icc, iRegI dst, iRegI src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6239 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6240 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6241 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6242 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6243 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6244 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6245 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6246
81
dee7a3f3dc9d 6636352: Unit tests for supplementary character support fail with -XX:+AggressiveOpts
never
parents: 0
diff changeset
6247 instruct cmovII_U_imm(cmpOpU cmp, flagsRegU icc, iRegI dst, immI11 src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6248 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6249 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6250 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6251 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6252 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6253 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6254 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6255
a61af66fc99e Initial load
duke
parents:
diff changeset
6256 instruct cmovIF_reg(cmpOpF cmp, flagsRegF fcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6257 match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6258 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6259 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6260 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6261 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6262 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6263 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6264
a61af66fc99e Initial load
duke
parents:
diff changeset
6265 instruct cmovIF_imm(cmpOpF cmp, flagsRegF fcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6266 match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6267 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6268 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6269 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6270 ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6271 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6272 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6273
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6274 // Conditional move for RegN. Only cmov(reg,reg).
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6275 instruct cmovNP_reg(cmpOpP cmp, flagsRegP pcc, iRegN dst, iRegN src) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6276 match(Set dst (CMoveN (Binary cmp pcc) (Binary dst src)));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6277 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6278 format %{ "MOV$cmp $pcc,$src,$dst" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6279 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6280 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6281 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6282
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6283 // This instruction also works with CmpN so we don't need cmovNN_reg.
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6284 instruct cmovNI_reg(cmpOp cmp, flagsReg icc, iRegN dst, iRegN src) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6285 match(Set dst (CMoveN (Binary cmp icc) (Binary dst src)));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6286 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6287 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6288 format %{ "MOV$cmp $icc,$src,$dst" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6289 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6290 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6291 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6292
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6293 instruct cmovNF_reg(cmpOpF cmp, flagsRegF fcc, iRegN dst, iRegN src) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6294 match(Set dst (CMoveN (Binary cmp fcc) (Binary dst src)));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6295 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6296 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6297 format %{ "MOV$cmp $fcc,$src,$dst" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6298 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6299 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6300 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6301
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6302 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6303 instruct cmovPP_reg(cmpOpP cmp, flagsRegP pcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6304 match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6305 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6306 format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6307 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6308 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6309 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6310
a61af66fc99e Initial load
duke
parents:
diff changeset
6311 instruct cmovPP_imm(cmpOpP cmp, flagsRegP pcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6312 match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6313 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6314 format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6315 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6316 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6317 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6318
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6319 // This instruction also works with CmpN so we don't need cmovPN_reg.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6320 instruct cmovPI_reg(cmpOp cmp, flagsReg icc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6321 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6322 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6323
a61af66fc99e Initial load
duke
parents:
diff changeset
6324 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6325 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6326 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6327 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6328 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6329
a61af66fc99e Initial load
duke
parents:
diff changeset
6330 instruct cmovPI_imm(cmpOp cmp, flagsReg icc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6331 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6332 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6333
a61af66fc99e Initial load
duke
parents:
diff changeset
6334 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6335 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6336 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6337 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6338 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6339
a61af66fc99e Initial load
duke
parents:
diff changeset
6340 instruct cmovPF_reg(cmpOpF cmp, flagsRegF fcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6341 match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6342 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6343 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6344 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6345 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6346 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6347 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6348
a61af66fc99e Initial load
duke
parents:
diff changeset
6349 instruct cmovPF_imm(cmpOpF cmp, flagsRegF fcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6350 match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6351 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6352 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6353 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6354 ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6355 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6356 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6357
a61af66fc99e Initial load
duke
parents:
diff changeset
6358 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6359 instruct cmovFP_reg(cmpOpP cmp, flagsRegP pcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6360 match(Set dst (CMoveF (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6361 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6362 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
6363 format %{ "FMOVD$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6364 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6365 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6366 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6367
a61af66fc99e Initial load
duke
parents:
diff changeset
6368 instruct cmovFI_reg(cmpOp cmp, flagsReg icc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6369 match(Set dst (CMoveF (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6370 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6371
a61af66fc99e Initial load
duke
parents:
diff changeset
6372 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6373 format %{ "FMOVS$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6374 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
6375 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6376 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6377 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6378
a61af66fc99e Initial load
duke
parents:
diff changeset
6379 // Conditional move,
a61af66fc99e Initial load
duke
parents:
diff changeset
6380 instruct cmovFF_reg(cmpOpF cmp, flagsRegF fcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6381 match(Set dst (CMoveF (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6382 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6383 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6384 format %{ "FMOVF$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6385 opcode(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
6386 ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6387 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6388 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6389
a61af66fc99e Initial load
duke
parents:
diff changeset
6390 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6391 instruct cmovDP_reg(cmpOpP cmp, flagsRegP pcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6392 match(Set dst (CMoveD (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6393 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6394 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6395 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
6396 format %{ "FMOVD$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6397 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6398 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6399 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6400
a61af66fc99e Initial load
duke
parents:
diff changeset
6401 instruct cmovDI_reg(cmpOp cmp, flagsReg icc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6402 match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6403 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6404
a61af66fc99e Initial load
duke
parents:
diff changeset
6405 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6406 format %{ "FMOVD$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6407 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
6408 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6409 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6410 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6411
a61af66fc99e Initial load
duke
parents:
diff changeset
6412 // Conditional move,
a61af66fc99e Initial load
duke
parents:
diff changeset
6413 instruct cmovDF_reg(cmpOpF cmp, flagsRegF fcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6414 match(Set dst (CMoveD (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6415 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6416 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6417 format %{ "FMOVD$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6418 opcode(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6419 ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6420 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6421 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6422
a61af66fc99e Initial load
duke
parents:
diff changeset
6423 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6424 instruct cmovLP_reg(cmpOpP cmp, flagsRegP pcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6425 match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6426 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6427 format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6428 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6429 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6430 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6431
a61af66fc99e Initial load
duke
parents:
diff changeset
6432 instruct cmovLP_imm(cmpOpP cmp, flagsRegP pcc, iRegL dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6433 match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6434 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6435 format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6436 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6437 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6438 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6439
a61af66fc99e Initial load
duke
parents:
diff changeset
6440 instruct cmovLI_reg(cmpOp cmp, flagsReg icc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6441 match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6442 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6443
a61af66fc99e Initial load
duke
parents:
diff changeset
6444 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6445 format %{ "MOV$cmp $icc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6446 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6447 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6448 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6449
a61af66fc99e Initial load
duke
parents:
diff changeset
6450
a61af66fc99e Initial load
duke
parents:
diff changeset
6451 instruct cmovLF_reg(cmpOpF cmp, flagsRegF fcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6452 match(Set dst (CMoveL (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6453 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6454
a61af66fc99e Initial load
duke
parents:
diff changeset
6455 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6456 format %{ "MOV$cmp $fcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6457 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6458 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6459 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6460
a61af66fc99e Initial load
duke
parents:
diff changeset
6461
a61af66fc99e Initial load
duke
parents:
diff changeset
6462
a61af66fc99e Initial load
duke
parents:
diff changeset
6463 //----------OS and Locking Instructions----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6464
a61af66fc99e Initial load
duke
parents:
diff changeset
6465 // This name is KNOWN by the ADLC and cannot be changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
6466 // The ADLC forces a 'TypeRawPtr::BOTTOM' output type
a61af66fc99e Initial load
duke
parents:
diff changeset
6467 // for this guy.
a61af66fc99e Initial load
duke
parents:
diff changeset
6468 instruct tlsLoadP(g2RegP dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6469 match(Set dst (ThreadLocal));
a61af66fc99e Initial load
duke
parents:
diff changeset
6470
a61af66fc99e Initial load
duke
parents:
diff changeset
6471 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6472 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6473 format %{ "# TLS is in G2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6474 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
6475 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
6476 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6477
a61af66fc99e Initial load
duke
parents:
diff changeset
6478 instruct checkCastPP( iRegP dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6479 match(Set dst (CheckCastPP dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6480
a61af66fc99e Initial load
duke
parents:
diff changeset
6481 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6482 format %{ "# checkcastPP of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6483 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
6484 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6485 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6486
a61af66fc99e Initial load
duke
parents:
diff changeset
6487
a61af66fc99e Initial load
duke
parents:
diff changeset
6488 instruct castPP( iRegP dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6489 match(Set dst (CastPP dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6490 format %{ "# castPP of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6491 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
6492 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6493 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6494
a61af66fc99e Initial load
duke
parents:
diff changeset
6495 instruct castII( iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6496 match(Set dst (CastII dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6497 format %{ "# castII of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6498 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
6499 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6500 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6501 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6502
a61af66fc99e Initial load
duke
parents:
diff changeset
6503 //----------Arithmetic Instructions--------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6504 // Addition Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
6505 // Register Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
6506 instruct addI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6507 match(Set dst (AddI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6508
a61af66fc99e Initial load
duke
parents:
diff changeset
6509 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6510 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6511 ins_encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6512 __ add($src1$$Register, $src2$$Register, $dst$$Register);
a61af66fc99e Initial load
duke
parents:
diff changeset
6513 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6514 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6515 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6516
a61af66fc99e Initial load
duke
parents:
diff changeset
6517 // Immediate Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
6518 instruct addI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6519 match(Set dst (AddI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6520
a61af66fc99e Initial load
duke
parents:
diff changeset
6521 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6522 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6523 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6524 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6525 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6526 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6527
a61af66fc99e Initial load
duke
parents:
diff changeset
6528 // Pointer Register Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
6529 instruct addP_reg_reg(iRegP dst, iRegP src1, iRegX src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6530 match(Set dst (AddP src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6531
a61af66fc99e Initial load
duke
parents:
diff changeset
6532 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6533 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6534 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6535 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6536 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6537 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6538
a61af66fc99e Initial load
duke
parents:
diff changeset
6539 // Pointer Immediate Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
6540 instruct addP_reg_imm13(iRegP dst, iRegP src1, immX13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6541 match(Set dst (AddP src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6542
a61af66fc99e Initial load
duke
parents:
diff changeset
6543 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6544 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6545 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6546 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6547 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6548 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6549
a61af66fc99e Initial load
duke
parents:
diff changeset
6550 // Long Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
6551 instruct addL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6552 match(Set dst (AddL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6553
a61af66fc99e Initial load
duke
parents:
diff changeset
6554 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6555 format %{ "ADD $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6556 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6557 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6558 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6559 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6560
a61af66fc99e Initial load
duke
parents:
diff changeset
6561 instruct addL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6562 match(Set dst (AddL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
6563
a61af66fc99e Initial load
duke
parents:
diff changeset
6564 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6565 format %{ "ADD $src1,$con,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6566 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6567 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6568 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6569 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6570
a61af66fc99e Initial load
duke
parents:
diff changeset
6571 //----------Conditional_store--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6572 // Conditional-store of the updated heap-top.
a61af66fc99e Initial load
duke
parents:
diff changeset
6573 // Used during allocation of the shared heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
6574 // Sets flags (EQ) on success. Implemented with a CASA on Sparc.
a61af66fc99e Initial load
duke
parents:
diff changeset
6575
a61af66fc99e Initial load
duke
parents:
diff changeset
6576 // LoadP-locked. Same as a regular pointer load when used with a compare-swap
a61af66fc99e Initial load
duke
parents:
diff changeset
6577 instruct loadPLocked(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6578 match(Set dst (LoadPLocked mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
6579 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6580
a61af66fc99e Initial load
duke
parents:
diff changeset
6581 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
6582 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6583 format %{ "LDUW $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6584 opcode(Assembler::lduw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6585 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
6586 format %{ "LDX $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6587 opcode(Assembler::ldx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6588 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
6589 ins_encode( form3_mem_reg( mem, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6590 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6591 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6592
a61af66fc99e Initial load
duke
parents:
diff changeset
6593 // LoadL-locked. Same as a regular long load when used with a compare-swap
a61af66fc99e Initial load
duke
parents:
diff changeset
6594 instruct loadLLocked(iRegL dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6595 match(Set dst (LoadLLocked mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
6596 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6597 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6598 format %{ "LDX $mem,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6599 opcode(Assembler::ldx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
6600 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6601 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6602 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6603
a61af66fc99e Initial load
duke
parents:
diff changeset
6604 instruct storePConditional( iRegP heap_top_ptr, iRegP oldval, g3RegP newval, flagsRegP pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6605 match(Set pcc (StorePConditional heap_top_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6606 effect( KILL newval );
a61af66fc99e Initial load
duke
parents:
diff changeset
6607 format %{ "CASA [$heap_top_ptr],$oldval,R_G3\t! If $oldval==[$heap_top_ptr] Then store R_G3 into [$heap_top_ptr], set R_G3=[$heap_top_ptr] in any case\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6608 "CMP R_G3,$oldval\t\t! See if we made progress" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6609 ins_encode( enc_cas(heap_top_ptr,oldval,newval) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6610 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6611 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6612
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6613 // Conditional-store of an int value.
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6614 instruct storeIConditional( iRegP mem_ptr, iRegI oldval, g3RegI newval, flagsReg icc ) %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6615 match(Set icc (StoreIConditional mem_ptr (Binary oldval newval)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6616 effect( KILL newval );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6617 format %{ "CASA [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr], set $newval=[$mem_ptr] in any case\n\t"
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6618 "CMP $oldval,$newval\t\t! See if we made progress" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6619 ins_encode( enc_cas(mem_ptr,oldval,newval) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6620 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6621 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6622
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6623 // Conditional-store of a long value.
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6624 instruct storeLConditional( iRegP mem_ptr, iRegL oldval, g3RegL newval, flagsRegL xcc ) %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6625 match(Set xcc (StoreLConditional mem_ptr (Binary oldval newval)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6626 effect( KILL newval );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6627 format %{ "CASXA [$mem_ptr],$oldval,$newval\t! If $oldval==[$mem_ptr] Then store $newval into [$mem_ptr], set $newval=[$mem_ptr] in any case\n\t"
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6628 "CMP $oldval,$newval\t\t! See if we made progress" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
6629 ins_encode( enc_cas(mem_ptr,oldval,newval) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6630 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6631 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6632
a61af66fc99e Initial load
duke
parents:
diff changeset
6633 // No flag versions for CompareAndSwap{P,I,L} because matcher can't match them
a61af66fc99e Initial load
duke
parents:
diff changeset
6634
a61af66fc99e Initial load
duke
parents:
diff changeset
6635 instruct compareAndSwapL_bool(iRegP mem_ptr, iRegL oldval, iRegL newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6636 match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6637 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
6638 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6639 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6640 "CASXA [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6641 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6642 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6643 "MOVne xcc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
6644 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6645 ins_encode( enc_casx(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
6646 enc_lflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6647 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6648 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6649
a61af66fc99e Initial load
duke
parents:
diff changeset
6650
a61af66fc99e Initial load
duke
parents:
diff changeset
6651 instruct compareAndSwapI_bool(iRegP mem_ptr, iRegI oldval, iRegI newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6652 match(Set res (CompareAndSwapI mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6653 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
6654 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6655 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6656 "CASA [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6657 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6658 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6659 "MOVne icc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
6660 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6661 ins_encode( enc_casi(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
6662 enc_iflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6663 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6664 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6665
a61af66fc99e Initial load
duke
parents:
diff changeset
6666 instruct compareAndSwapP_bool(iRegP mem_ptr, iRegP oldval, iRegP newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6667 match(Set res (CompareAndSwapP mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6668 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
6669 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6670 "MOV $newval,O7\n\t"
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6671 "CASA_PTR [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6672 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6673 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6674 "MOVne xcc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
6675 %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6676 #ifdef _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6677 ins_encode( enc_casx(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
6678 enc_lflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6679 #else
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6680 ins_encode( enc_casi(mem_ptr, oldval, newval),
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6681 enc_iflags_ne_to_boolean(res) );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6682 #endif
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6683 ins_pipe( long_memory_op );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6684 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6685
181
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
6686 instruct compareAndSwapN_bool(iRegP mem_ptr, iRegN oldval, iRegN newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6687 match(Set res (CompareAndSwapN mem_ptr (Binary oldval newval)));
181
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
6688 effect( USE mem_ptr, KILL ccr, KILL tmp1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6689 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6690 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6691 "CASA [$mem_ptr],$oldval,O7\t! If $oldval==[$mem_ptr] Then store O7 into [$mem_ptr], set O7=[$mem_ptr] in any case\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6692 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6693 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6694 "MOVne icc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
6695 %}
181
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
6696 ins_encode( enc_casi(mem_ptr, oldval, newval),
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
6697 enc_iflags_ne_to_boolean(res) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6698 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
6699 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6700
a61af66fc99e Initial load
duke
parents:
diff changeset
6701 //---------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6702 // Subtraction Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
6703 // Register Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
6704 instruct subI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6705 match(Set dst (SubI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6706
a61af66fc99e Initial load
duke
parents:
diff changeset
6707 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6708 format %{ "SUB $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6709 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6710 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6711 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6712 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6713
a61af66fc99e Initial load
duke
parents:
diff changeset
6714 // Immediate Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
6715 instruct subI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6716 match(Set dst (SubI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6717
a61af66fc99e Initial load
duke
parents:
diff changeset
6718 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6719 format %{ "SUB $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6720 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6721 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6722 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6723 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6724
a61af66fc99e Initial load
duke
parents:
diff changeset
6725 instruct subI_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6726 match(Set dst (SubI zero src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6727
a61af66fc99e Initial load
duke
parents:
diff changeset
6728 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6729 format %{ "NEG $src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6730 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6731 ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6732 ins_pipe(ialu_zero_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6733 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6734
a61af66fc99e Initial load
duke
parents:
diff changeset
6735 // Long subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
6736 instruct subL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6737 match(Set dst (SubL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6738
a61af66fc99e Initial load
duke
parents:
diff changeset
6739 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6740 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6741 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6742 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6743 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6744 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6745
a61af66fc99e Initial load
duke
parents:
diff changeset
6746 // Immediate Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
6747 instruct subL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6748 match(Set dst (SubL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
6749
a61af66fc99e Initial load
duke
parents:
diff changeset
6750 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6751 format %{ "SUB $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6752 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6753 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6754 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6755 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6756
a61af66fc99e Initial load
duke
parents:
diff changeset
6757 // Long negation
a61af66fc99e Initial load
duke
parents:
diff changeset
6758 instruct negL_reg_reg(iRegL dst, immL0 zero, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6759 match(Set dst (SubL zero src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6760
a61af66fc99e Initial load
duke
parents:
diff changeset
6761 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6762 format %{ "NEG $src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6763 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6764 ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6765 ins_pipe(ialu_zero_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6766 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6767
a61af66fc99e Initial load
duke
parents:
diff changeset
6768 // Multiplication Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
6769 // Integer Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
6770 // Register Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
6771 instruct mulI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6772 match(Set dst (MulI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6773
a61af66fc99e Initial load
duke
parents:
diff changeset
6774 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6775 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6776 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6777 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6778 ins_pipe(imul_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6779 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6780
a61af66fc99e Initial load
duke
parents:
diff changeset
6781 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
6782 instruct mulI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6783 match(Set dst (MulI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6784
a61af66fc99e Initial load
duke
parents:
diff changeset
6785 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6786 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6787 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6788 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6789 ins_pipe(imul_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6790 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6791
a61af66fc99e Initial load
duke
parents:
diff changeset
6792 instruct mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6793 match(Set dst (MulL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6794 ins_cost(DEFAULT_COST * 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
6795 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6796 format %{ "MULX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6797 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6798 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6799 ins_pipe(mulL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6800 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6801
a61af66fc99e Initial load
duke
parents:
diff changeset
6802 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
6803 instruct mulL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6804 match(Set dst (MulL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6805 ins_cost(DEFAULT_COST * 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
6806 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6807 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6808 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6809 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6810 ins_pipe(mulL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6811 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6812
a61af66fc99e Initial load
duke
parents:
diff changeset
6813 // Integer Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6814 // Register Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6815 instruct divI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6816 match(Set dst (DivI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6817 ins_cost((2+71)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6818
a61af66fc99e Initial load
duke
parents:
diff changeset
6819 format %{ "SRA $src2,0,$src2\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6820 "SRA $src1,0,$src1\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6821 "SDIVX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6822 ins_encode( idiv_reg( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6823 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6824 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6825
a61af66fc99e Initial load
duke
parents:
diff changeset
6826 // Immediate Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6827 instruct divI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6828 match(Set dst (DivI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6829 ins_cost((2+71)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6830
a61af66fc99e Initial load
duke
parents:
diff changeset
6831 format %{ "SRA $src1,0,$src1\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6832 "SDIVX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6833 ins_encode( idiv_imm( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6834 ins_pipe(sdiv_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6835 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6836
a61af66fc99e Initial load
duke
parents:
diff changeset
6837 //----------Div-By-10-Expansion------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6838 // Extract hi bits of a 32x32->64 bit multiply.
a61af66fc99e Initial load
duke
parents:
diff changeset
6839 // Expand rule only, not matched
a61af66fc99e Initial load
duke
parents:
diff changeset
6840 instruct mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6841 effect( DEF dst, USE src1, USE src2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
6842 format %{ "MULX $src1,$src2,$dst\t! Used in div-by-10\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
6843 "SRLX $dst,#32,$dst\t\t! Extract only hi word of result" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6844 ins_encode( enc_mul_hi(dst,src1,src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6845 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6846 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6847
a61af66fc99e Initial load
duke
parents:
diff changeset
6848 // Magic constant, reciprical of 10
a61af66fc99e Initial load
duke
parents:
diff changeset
6849 instruct loadConI_x66666667(iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6850 effect( DEF dst );
a61af66fc99e Initial load
duke
parents:
diff changeset
6851
a61af66fc99e Initial load
duke
parents:
diff changeset
6852 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
6853 format %{ "SET 0x66666667,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6854 ins_encode( Set32(0x66666667, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6855 ins_pipe(ialu_hi_lo_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6856 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6857
a61af66fc99e Initial load
duke
parents:
diff changeset
6858 // Register Shift Right Arithmatic Long by 32-63
a61af66fc99e Initial load
duke
parents:
diff changeset
6859 instruct sra_31( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6860 effect( DEF dst, USE src );
a61af66fc99e Initial load
duke
parents:
diff changeset
6861 format %{ "SRA $src,31,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6862 ins_encode( form3_rs1_rd_copysign_hi(src,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6863 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6864 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6865
a61af66fc99e Initial load
duke
parents:
diff changeset
6866 // Arithmetic Shift Right by 8-bit immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
6867 instruct sra_reg_2( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6868 effect( DEF dst, USE src );
a61af66fc99e Initial load
duke
parents:
diff changeset
6869 format %{ "SRA $src,2,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6870 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6871 ins_encode( form3_rs1_simm13_rd( src, 0x2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6872 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6873 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6874
a61af66fc99e Initial load
duke
parents:
diff changeset
6875 // Integer DIV with 10
a61af66fc99e Initial load
duke
parents:
diff changeset
6876 instruct divI_10( iRegI dst, iRegIsafe src, immI10 div ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6877 match(Set dst (DivI src div));
a61af66fc99e Initial load
duke
parents:
diff changeset
6878 ins_cost((6+6)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6879 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6880 iRegIsafe tmp1; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
6881 iRegIsafe tmp2; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
6882 iRegI tmp3; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
6883 iRegI tmp4; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
6884 loadConI_x66666667( tmp1 ); // SET 0x66666667 -> tmp1
a61af66fc99e Initial load
duke
parents:
diff changeset
6885 mul_hi( tmp2, src, tmp1 ); // MUL hibits(src * tmp1) -> tmp2
a61af66fc99e Initial load
duke
parents:
diff changeset
6886 sra_31( tmp3, src ); // SRA src,31 -> tmp3
a61af66fc99e Initial load
duke
parents:
diff changeset
6887 sra_reg_2( tmp4, tmp2 ); // SRA tmp2,2 -> tmp4
a61af66fc99e Initial load
duke
parents:
diff changeset
6888 subI_reg_reg( dst,tmp4,tmp3); // SUB tmp4 - tmp3 -> dst
a61af66fc99e Initial load
duke
parents:
diff changeset
6889 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6890 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6891
a61af66fc99e Initial load
duke
parents:
diff changeset
6892 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6893 instruct divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6894 match(Set dst (DivL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6895 ins_cost(DEFAULT_COST*71);
a61af66fc99e Initial load
duke
parents:
diff changeset
6896 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6897 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6898 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6899 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6900 ins_pipe(divL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6901 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6902
a61af66fc99e Initial load
duke
parents:
diff changeset
6903 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6904 instruct divL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6905 match(Set dst (DivL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6906 ins_cost(DEFAULT_COST*71);
a61af66fc99e Initial load
duke
parents:
diff changeset
6907 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6908 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6909 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6910 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6911 ins_pipe(divL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6912 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6913
a61af66fc99e Initial load
duke
parents:
diff changeset
6914 // Integer Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
6915 // Register Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
6916 instruct modI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2, o7RegP temp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6917 match(Set dst (ModI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6918 effect( KILL ccr, KILL temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
6919
a61af66fc99e Initial load
duke
parents:
diff changeset
6920 format %{ "SREM $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6921 ins_encode( irem_reg(src1, src2, dst, temp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6922 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6923 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6924
a61af66fc99e Initial load
duke
parents:
diff changeset
6925 // Immediate Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
6926 instruct modI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2, o7RegP temp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6927 match(Set dst (ModI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6928 effect( KILL ccr, KILL temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
6929
a61af66fc99e Initial load
duke
parents:
diff changeset
6930 format %{ "SREM $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6931 ins_encode( irem_imm(src1, src2, dst, temp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6932 ins_pipe(sdiv_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6933 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6934
a61af66fc99e Initial load
duke
parents:
diff changeset
6935 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
6936 instruct divL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6937 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6938 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6939 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6940 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6941 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6942 ins_pipe(divL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6943 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6944
a61af66fc99e Initial load
duke
parents:
diff changeset
6945 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
6946 instruct divL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6947 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6948 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6949 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6950 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6951 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6952 ins_pipe(divL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6953 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6954
a61af66fc99e Initial load
duke
parents:
diff changeset
6955 instruct mulL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6956 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6957 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6958 format %{ "MULX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6959 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6960 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6961 ins_pipe(mulL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6962 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6963
a61af66fc99e Initial load
duke
parents:
diff changeset
6964 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
6965 instruct mulL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6966 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6967 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6968 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6969 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6970 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6971 ins_pipe(mulL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6972 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6973
a61af66fc99e Initial load
duke
parents:
diff changeset
6974 instruct subL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6975 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6976 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6977 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6978 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6979 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6980 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6981 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6982
a61af66fc99e Initial load
duke
parents:
diff changeset
6983 instruct subL_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6984 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6985 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6986 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6987 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6988 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6989 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6990 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6991
a61af66fc99e Initial load
duke
parents:
diff changeset
6992 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
6993 instruct modL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6994 match(Set dst (ModL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
6995 ins_cost(DEFAULT_COST*(71 + 6 + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
6996 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6997 iRegL tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
6998 iRegL tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
6999 divL_reg_reg_1(tmp1, src1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7000 mulL_reg_reg_1(tmp2, tmp1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7001 subL_reg_reg_1(dst, src1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7002 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7003 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7004
a61af66fc99e Initial load
duke
parents:
diff changeset
7005 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7006 instruct modL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7007 match(Set dst (ModL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7008 ins_cost(DEFAULT_COST*(71 + 6 + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
7009 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7010 iRegL tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
7011 iRegL tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
7012 divL_reg_imm13_1(tmp1, src1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7013 mulL_reg_imm13_1(tmp2, tmp1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7014 subL_reg_reg_2 (dst, src1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7015 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7016 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7017
a61af66fc99e Initial load
duke
parents:
diff changeset
7018 // Integer Shift Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7019 // Register Shift Left
a61af66fc99e Initial load
duke
parents:
diff changeset
7020 instruct shlI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7021 match(Set dst (LShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7022
a61af66fc99e Initial load
duke
parents:
diff changeset
7023 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7024 format %{ "SLL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7025 opcode(Assembler::sll_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7026 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7027 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7028 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7029
a61af66fc99e Initial load
duke
parents:
diff changeset
7030 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7031 instruct shlI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7032 match(Set dst (LShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7033
a61af66fc99e Initial load
duke
parents:
diff changeset
7034 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7035 format %{ "SLL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7036 opcode(Assembler::sll_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7037 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7038 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7039 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7040
a61af66fc99e Initial load
duke
parents:
diff changeset
7041 // Register Shift Left
a61af66fc99e Initial load
duke
parents:
diff changeset
7042 instruct shlL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7043 match(Set dst (LShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7044
a61af66fc99e Initial load
duke
parents:
diff changeset
7045 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7046 format %{ "SLLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7047 opcode(Assembler::sllx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7048 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7049 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7050 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7051
a61af66fc99e Initial load
duke
parents:
diff changeset
7052 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7053 instruct shlL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7054 match(Set dst (LShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7055
a61af66fc99e Initial load
duke
parents:
diff changeset
7056 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7057 format %{ "SLLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7058 opcode(Assembler::sllx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7059 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7060 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7061 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7062
a61af66fc99e Initial load
duke
parents:
diff changeset
7063 // Register Arithmetic Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7064 instruct sarI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7065 match(Set dst (RShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7066 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7067 format %{ "SRA $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7068 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7069 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7070 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7071 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7072
a61af66fc99e Initial load
duke
parents:
diff changeset
7073 // Register Arithmetic Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7074 instruct sarI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7075 match(Set dst (RShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7076
a61af66fc99e Initial load
duke
parents:
diff changeset
7077 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7078 format %{ "SRA $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7079 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7080 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7081 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7082 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7083
a61af66fc99e Initial load
duke
parents:
diff changeset
7084 // Register Shift Right Arithmatic Long
a61af66fc99e Initial load
duke
parents:
diff changeset
7085 instruct sarL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7086 match(Set dst (RShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7087
a61af66fc99e Initial load
duke
parents:
diff changeset
7088 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7089 format %{ "SRAX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7090 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7091 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7092 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7093 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7094
a61af66fc99e Initial load
duke
parents:
diff changeset
7095 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7096 instruct sarL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7097 match(Set dst (RShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7098
a61af66fc99e Initial load
duke
parents:
diff changeset
7099 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7100 format %{ "SRAX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7101 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7102 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7103 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7104 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7105
a61af66fc99e Initial load
duke
parents:
diff changeset
7106 // Register Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7107 instruct shrI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7108 match(Set dst (URShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7109
a61af66fc99e Initial load
duke
parents:
diff changeset
7110 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7111 format %{ "SRL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7112 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7113 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7114 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7115 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7116
a61af66fc99e Initial load
duke
parents:
diff changeset
7117 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7118 instruct shrI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7119 match(Set dst (URShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7120
a61af66fc99e Initial load
duke
parents:
diff changeset
7121 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7122 format %{ "SRL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7123 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7124 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7125 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7126 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7127
a61af66fc99e Initial load
duke
parents:
diff changeset
7128 // Register Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7129 instruct shrL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7130 match(Set dst (URShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7131
a61af66fc99e Initial load
duke
parents:
diff changeset
7132 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7133 format %{ "SRLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7134 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7135 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7136 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7137 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7138
a61af66fc99e Initial load
duke
parents:
diff changeset
7139 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7140 instruct shrL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7141 match(Set dst (URShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7142
a61af66fc99e Initial load
duke
parents:
diff changeset
7143 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7144 format %{ "SRLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7145 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7146 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7147 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7148 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7149
a61af66fc99e Initial load
duke
parents:
diff changeset
7150 // Register Shift Right Immediate with a CastP2X
a61af66fc99e Initial load
duke
parents:
diff changeset
7151 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
7152 instruct shrP_reg_imm6(iRegL dst, iRegP src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7153 match(Set dst (URShiftL (CastP2X src1) src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7154 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7155 format %{ "SRLX $src1,$src2,$dst\t! Cast ptr $src1 to long and shift" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7156 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7157 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7158 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7159 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7160 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
7161 instruct shrP_reg_imm5(iRegI dst, iRegP src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7162 match(Set dst (URShiftI (CastP2X src1) src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7163 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7164 format %{ "SRL $src1,$src2,$dst\t! Cast ptr $src1 to int and shift" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7165 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7166 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7167 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7168 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7169 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
7170
a61af66fc99e Initial load
duke
parents:
diff changeset
7171
a61af66fc99e Initial load
duke
parents:
diff changeset
7172 //----------Floating Point Arithmetic Instructions-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7173
a61af66fc99e Initial load
duke
parents:
diff changeset
7174 // Add float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7175 instruct addF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7176 match(Set dst (AddF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7177
a61af66fc99e Initial load
duke
parents:
diff changeset
7178 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7179 format %{ "FADDS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7180 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fadds_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7181 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7182 ins_pipe(faddF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7183 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7184
a61af66fc99e Initial load
duke
parents:
diff changeset
7185 // Add float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7186 instruct addD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7187 match(Set dst (AddD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7188
a61af66fc99e Initial load
duke
parents:
diff changeset
7189 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7190 format %{ "FADDD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7191 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7192 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7193 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7194 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7195
a61af66fc99e Initial load
duke
parents:
diff changeset
7196 // Sub float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7197 instruct subF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7198 match(Set dst (SubF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7199
a61af66fc99e Initial load
duke
parents:
diff changeset
7200 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7201 format %{ "FSUBS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7202 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7203 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7204 ins_pipe(faddF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7205 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7206
a61af66fc99e Initial load
duke
parents:
diff changeset
7207 // Sub float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7208 instruct subD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7209 match(Set dst (SubD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7210
a61af66fc99e Initial load
duke
parents:
diff changeset
7211 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7212 format %{ "FSUBD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7213 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7214 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7215 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7216 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7217
a61af66fc99e Initial load
duke
parents:
diff changeset
7218 // Mul float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7219 instruct mulF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7220 match(Set dst (MulF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7221
a61af66fc99e Initial load
duke
parents:
diff changeset
7222 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7223 format %{ "FMULS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7224 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuls_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7225 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7226 ins_pipe(fmulF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7227 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7228
a61af66fc99e Initial load
duke
parents:
diff changeset
7229 // Mul float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7230 instruct mulD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7231 match(Set dst (MulD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7232
a61af66fc99e Initial load
duke
parents:
diff changeset
7233 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7234 format %{ "FMULD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7235 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7236 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7237 ins_pipe(fmulD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7238 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7239
a61af66fc99e Initial load
duke
parents:
diff changeset
7240 // Div float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7241 instruct divF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7242 match(Set dst (DivF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7243
a61af66fc99e Initial load
duke
parents:
diff changeset
7244 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7245 format %{ "FDIVS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7246 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7247 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7248 ins_pipe(fdivF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7249 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7250
a61af66fc99e Initial load
duke
parents:
diff changeset
7251 // Div float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7252 instruct divD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7253 match(Set dst (DivD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7254
a61af66fc99e Initial load
duke
parents:
diff changeset
7255 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7256 format %{ "FDIVD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7257 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7258 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7259 ins_pipe(fdivD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7260 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7261
a61af66fc99e Initial load
duke
parents:
diff changeset
7262 // Absolute float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7263 instruct absD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7264 match(Set dst (AbsD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7265
a61af66fc99e Initial load
duke
parents:
diff changeset
7266 format %{ "FABSd $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7267 ins_encode(fabsd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7268 ins_pipe(faddD_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7269 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7270
a61af66fc99e Initial load
duke
parents:
diff changeset
7271 // Absolute float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7272 instruct absF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7273 match(Set dst (AbsF src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7274
a61af66fc99e Initial load
duke
parents:
diff changeset
7275 format %{ "FABSs $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7276 ins_encode(fabss(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7277 ins_pipe(faddF_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7278 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7279
a61af66fc99e Initial load
duke
parents:
diff changeset
7280 instruct negF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7281 match(Set dst (NegF src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7282
a61af66fc99e Initial load
duke
parents:
diff changeset
7283 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7284 format %{ "FNEGs $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7285 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fnegs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7286 ins_encode(form3_opf_rs2F_rdF(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7287 ins_pipe(faddF_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7288 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7289
a61af66fc99e Initial load
duke
parents:
diff changeset
7290 instruct negD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7291 match(Set dst (NegD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7292
a61af66fc99e Initial load
duke
parents:
diff changeset
7293 format %{ "FNEGd $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7294 ins_encode(fnegd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7295 ins_pipe(faddD_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7296 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7297
a61af66fc99e Initial load
duke
parents:
diff changeset
7298 // Sqrt float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7299 instruct sqrtF_reg_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7300 match(Set dst (ConvD2F (SqrtD (ConvF2D src))));
a61af66fc99e Initial load
duke
parents:
diff changeset
7301
a61af66fc99e Initial load
duke
parents:
diff changeset
7302 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7303 format %{ "FSQRTS $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7304 ins_encode(fsqrts(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7305 ins_pipe(fdivF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7306 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7307
a61af66fc99e Initial load
duke
parents:
diff changeset
7308 // Sqrt float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7309 instruct sqrtD_reg_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7310 match(Set dst (SqrtD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7311
a61af66fc99e Initial load
duke
parents:
diff changeset
7312 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7313 format %{ "FSQRTD $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7314 ins_encode(fsqrtd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7315 ins_pipe(fdivD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7316 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7317
a61af66fc99e Initial load
duke
parents:
diff changeset
7318 //----------Logical Instructions-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7319 // And Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7320 // Register And
a61af66fc99e Initial load
duke
parents:
diff changeset
7321 instruct andI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7322 match(Set dst (AndI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7323
a61af66fc99e Initial load
duke
parents:
diff changeset
7324 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7325 format %{ "AND $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7326 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7327 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7328 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7329 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7330
a61af66fc99e Initial load
duke
parents:
diff changeset
7331 // Immediate And
a61af66fc99e Initial load
duke
parents:
diff changeset
7332 instruct andI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7333 match(Set dst (AndI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7334
a61af66fc99e Initial load
duke
parents:
diff changeset
7335 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7336 format %{ "AND $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7337 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7338 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7339 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7340 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7341
a61af66fc99e Initial load
duke
parents:
diff changeset
7342 // Register And Long
a61af66fc99e Initial load
duke
parents:
diff changeset
7343 instruct andL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7344 match(Set dst (AndL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7345
a61af66fc99e Initial load
duke
parents:
diff changeset
7346 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7347 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7348 format %{ "AND $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7349 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7350 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7351 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7352 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7353
a61af66fc99e Initial load
duke
parents:
diff changeset
7354 instruct andL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7355 match(Set dst (AndL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
7356
a61af66fc99e Initial load
duke
parents:
diff changeset
7357 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7358 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7359 format %{ "AND $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7360 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7361 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7362 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7363 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7364
a61af66fc99e Initial load
duke
parents:
diff changeset
7365 // Or Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7366 // Register Or
a61af66fc99e Initial load
duke
parents:
diff changeset
7367 instruct orI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7368 match(Set dst (OrI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7369
a61af66fc99e Initial load
duke
parents:
diff changeset
7370 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7371 format %{ "OR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7372 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7373 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7374 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7375 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7376
a61af66fc99e Initial load
duke
parents:
diff changeset
7377 // Immediate Or
a61af66fc99e Initial load
duke
parents:
diff changeset
7378 instruct orI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7379 match(Set dst (OrI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7380
a61af66fc99e Initial load
duke
parents:
diff changeset
7381 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7382 format %{ "OR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7383 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7384 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7385 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7386 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7387
a61af66fc99e Initial load
duke
parents:
diff changeset
7388 // Register Or Long
a61af66fc99e Initial load
duke
parents:
diff changeset
7389 instruct orL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7390 match(Set dst (OrL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7391
a61af66fc99e Initial load
duke
parents:
diff changeset
7392 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7393 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7394 format %{ "OR $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7395 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7396 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7397 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7398 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7399
a61af66fc99e Initial load
duke
parents:
diff changeset
7400 instruct orL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7401 match(Set dst (OrL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
7402 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7403
a61af66fc99e Initial load
duke
parents:
diff changeset
7404 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7405 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7406 format %{ "OR $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7407 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7408 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7409 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7410 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7411
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7412 #ifndef _LP64
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7413
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7414 // Use sp_ptr_RegP to match G2 (TLS register) without spilling.
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7415 instruct orI_reg_castP2X(iRegI dst, iRegI src1, sp_ptr_RegP src2) %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7416 match(Set dst (OrI src1 (CastP2X src2)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7417
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7418 size(4);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7419 format %{ "OR $src1,$src2,$dst" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7420 opcode(Assembler::or_op3, Assembler::arith_op);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7421 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7422 ins_pipe(ialu_reg_reg);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7423 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7424
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7425 #else
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7426
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7427 instruct orL_reg_castP2X(iRegL dst, iRegL src1, sp_ptr_RegP src2) %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7428 match(Set dst (OrL src1 (CastP2X src2)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7429
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7430 ins_cost(DEFAULT_COST);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7431 size(4);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7432 format %{ "OR $src1,$src2,$dst\t! long" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7433 opcode(Assembler::or_op3, Assembler::arith_op);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7434 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7435 ins_pipe(ialu_reg_reg);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7436 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7437
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7438 #endif
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7439
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7440 // Xor Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7441 // Register Xor
a61af66fc99e Initial load
duke
parents:
diff changeset
7442 instruct xorI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7443 match(Set dst (XorI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7444
a61af66fc99e Initial load
duke
parents:
diff changeset
7445 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7446 format %{ "XOR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7447 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7448 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7449 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7450 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7451
a61af66fc99e Initial load
duke
parents:
diff changeset
7452 // Immediate Xor
a61af66fc99e Initial load
duke
parents:
diff changeset
7453 instruct xorI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7454 match(Set dst (XorI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7455
a61af66fc99e Initial load
duke
parents:
diff changeset
7456 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7457 format %{ "XOR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7458 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7459 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7460 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7461 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7462
a61af66fc99e Initial load
duke
parents:
diff changeset
7463 // Register Xor Long
a61af66fc99e Initial load
duke
parents:
diff changeset
7464 instruct xorL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7465 match(Set dst (XorL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7466
a61af66fc99e Initial load
duke
parents:
diff changeset
7467 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7468 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7469 format %{ "XOR $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7470 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7471 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7472 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7473 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7474
a61af66fc99e Initial load
duke
parents:
diff changeset
7475 instruct xorL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7476 match(Set dst (XorL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
7477
a61af66fc99e Initial load
duke
parents:
diff changeset
7478 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7479 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7480 format %{ "XOR $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7481 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7482 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7483 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7484 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7485
a61af66fc99e Initial load
duke
parents:
diff changeset
7486 //----------Convert to Boolean-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7487 // Nice hack for 32-bit tests but doesn't work for
a61af66fc99e Initial load
duke
parents:
diff changeset
7488 // 64-bit pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
7489 instruct convI2B( iRegI dst, iRegI src, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7490 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7491 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
7492 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7493 format %{ "CMP R_G0,$src\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7494 "ADDX R_G0,0,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7495 ins_encode( enc_to_bool( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7496 ins_pipe(ialu_reg_ialu);
a61af66fc99e Initial load
duke
parents:
diff changeset
7497 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7498
a61af66fc99e Initial load
duke
parents:
diff changeset
7499 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
7500 instruct convP2B( iRegI dst, iRegP src, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7501 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7502 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
7503 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7504 format %{ "CMP R_G0,$src\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7505 "ADDX R_G0,0,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7506 ins_encode( enc_to_bool( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7507 ins_pipe(ialu_reg_ialu);
a61af66fc99e Initial load
duke
parents:
diff changeset
7508 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7509 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
7510 instruct convP2B( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7511 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7512 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7513 format %{ "MOV $src,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7514 "MOVRNZ $src,1,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7515 ins_encode( form3_g0_rs2_rd_move( src, dst ), enc_convP2B( dst, src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7516 ins_pipe(ialu_clr_and_mover);
a61af66fc99e Initial load
duke
parents:
diff changeset
7517 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7518 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
7519
a61af66fc99e Initial load
duke
parents:
diff changeset
7520 instruct cmpLTMask_reg_reg( iRegI dst, iRegI p, iRegI q, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7521 match(Set dst (CmpLTMask p q));
a61af66fc99e Initial load
duke
parents:
diff changeset
7522 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
7523 ins_cost(DEFAULT_COST*4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7524 format %{ "CMP $p,$q\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7525 "MOV #0,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7526 "BLT,a .+8\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7527 "MOV #-1,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7528 ins_encode( enc_ltmask(p,q,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7529 ins_pipe(ialu_reg_reg_ialu);
a61af66fc99e Initial load
duke
parents:
diff changeset
7530 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7531
a61af66fc99e Initial load
duke
parents:
diff changeset
7532 instruct cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7533 match(Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7534 effect(KILL ccr, TEMP tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7535 ins_cost(DEFAULT_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
7536
a61af66fc99e Initial load
duke
parents:
diff changeset
7537 format %{ "SUBcc $p,$q,$p\t! p' = p-q\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7538 "ADD $p,$y,$tmp\t! g3=p-q+y\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7539 "MOVl $tmp,$p\t! p' < 0 ? p'+y : p'" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7540 ins_encode( enc_cadd_cmpLTMask(p, q, y, tmp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7541 ins_pipe( cadd_cmpltmask );
a61af66fc99e Initial load
duke
parents:
diff changeset
7542 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7543
a61af66fc99e Initial load
duke
parents:
diff changeset
7544 instruct cadd_cmpLTMask2( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7545 match(Set p (AddI (SubI p q) (AndI (CmpLTMask p q) y)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7546 effect( KILL ccr, TEMP tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7547 ins_cost(DEFAULT_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
7548
a61af66fc99e Initial load
duke
parents:
diff changeset
7549 format %{ "SUBcc $p,$q,$p\t! p' = p-q\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7550 "ADD $p,$y,$tmp\t! g3=p-q+y\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7551 "MOVl $tmp,$p\t! p' < 0 ? p'+y : p'" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7552 ins_encode( enc_cadd_cmpLTMask(p, q, y, tmp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7553 ins_pipe( cadd_cmpltmask );
a61af66fc99e Initial load
duke
parents:
diff changeset
7554 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7555
a61af66fc99e Initial load
duke
parents:
diff changeset
7556 //----------Arithmetic Conversion Instructions---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7557 // The conversions operations are all Alpha sorted. Please keep it that way!
a61af66fc99e Initial load
duke
parents:
diff changeset
7558
a61af66fc99e Initial load
duke
parents:
diff changeset
7559 instruct convD2F_reg(regF dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7560 match(Set dst (ConvD2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7561 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7562 format %{ "FDTOS $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7563 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdtos_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7564 ins_encode(form3_opf_rs2D_rdF(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7565 ins_pipe(fcvtD2F);
a61af66fc99e Initial load
duke
parents:
diff changeset
7566 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7567
a61af66fc99e Initial load
duke
parents:
diff changeset
7568
a61af66fc99e Initial load
duke
parents:
diff changeset
7569 // Convert a double to an int in a float register.
a61af66fc99e Initial load
duke
parents:
diff changeset
7570 // If the double is a NAN, stuff a zero in instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
7571 instruct convD2I_helper(regF dst, regD src, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7572 effect(DEF dst, USE src, KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7573 format %{ "FCMPd fcc0,$src,$src\t! check for NAN\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7574 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7575 "FDTOI $src,$dst\t! convert in delay slot\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7576 "FITOS $dst,$dst\t! change NaN/max-int to valid float\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7577 "FSUBs $dst,$dst,$dst\t! cleared only if nan\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
7578 "skip:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7579 ins_encode(form_d2i_helper(src,dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7580 ins_pipe(fcvtD2I);
a61af66fc99e Initial load
duke
parents:
diff changeset
7581 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7582
a61af66fc99e Initial load
duke
parents:
diff changeset
7583 instruct convD2I_reg(stackSlotI dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7584 match(Set dst (ConvD2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7585 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7586 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7587 regF tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7588 convD2I_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7589 regF_to_stkI(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7590 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7591 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7592
a61af66fc99e Initial load
duke
parents:
diff changeset
7593 // Convert a double to a long in a double register.
a61af66fc99e Initial load
duke
parents:
diff changeset
7594 // If the double is a NAN, stuff a zero in instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
7595 instruct convD2L_helper(regD dst, regD src, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7596 effect(DEF dst, USE src, KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7597 format %{ "FCMPd fcc0,$src,$src\t! check for NAN\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7598 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7599 "FDTOX $src,$dst\t! convert in delay slot\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7600 "FXTOD $dst,$dst\t! change NaN/max-long to valid double\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7601 "FSUBd $dst,$dst,$dst\t! cleared only if nan\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
7602 "skip:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7603 ins_encode(form_d2l_helper(src,dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7604 ins_pipe(fcvtD2L);
a61af66fc99e Initial load
duke
parents:
diff changeset
7605 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7606
a61af66fc99e Initial load
duke
parents:
diff changeset
7607
a61af66fc99e Initial load
duke
parents:
diff changeset
7608 // Double to Long conversion
a61af66fc99e Initial load
duke
parents:
diff changeset
7609 instruct convD2L_reg(stackSlotL dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7610 match(Set dst (ConvD2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7611 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7612 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7613 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7614 convD2L_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7615 regD_to_stkL(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7616 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7617 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7618
a61af66fc99e Initial load
duke
parents:
diff changeset
7619
a61af66fc99e Initial load
duke
parents:
diff changeset
7620 instruct convF2D_reg(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7621 match(Set dst (ConvF2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7622 format %{ "FSTOD $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7623 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fstod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7624 ins_encode(form3_opf_rs2F_rdD(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7625 ins_pipe(fcvtF2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
7626 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7627
a61af66fc99e Initial load
duke
parents:
diff changeset
7628
a61af66fc99e Initial load
duke
parents:
diff changeset
7629 instruct convF2I_helper(regF dst, regF src, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7630 effect(DEF dst, USE src, KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7631 format %{ "FCMPs fcc0,$src,$src\t! check for NAN\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7632 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7633 "FSTOI $src,$dst\t! convert in delay slot\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7634 "FITOS $dst,$dst\t! change NaN/max-int to valid float\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7635 "FSUBs $dst,$dst,$dst\t! cleared only if nan\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
7636 "skip:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7637 ins_encode(form_f2i_helper(src,dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7638 ins_pipe(fcvtF2I);
a61af66fc99e Initial load
duke
parents:
diff changeset
7639 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7640
a61af66fc99e Initial load
duke
parents:
diff changeset
7641 instruct convF2I_reg(stackSlotI dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7642 match(Set dst (ConvF2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7643 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7644 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7645 regF tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7646 convF2I_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7647 regF_to_stkI(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7648 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7649 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7650
a61af66fc99e Initial load
duke
parents:
diff changeset
7651
a61af66fc99e Initial load
duke
parents:
diff changeset
7652 instruct convF2L_helper(regD dst, regF src, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7653 effect(DEF dst, USE src, KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7654 format %{ "FCMPs fcc0,$src,$src\t! check for NAN\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7655 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7656 "FSTOX $src,$dst\t! convert in delay slot\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7657 "FXTOD $dst,$dst\t! change NaN/max-long to valid double\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7658 "FSUBd $dst,$dst,$dst\t! cleared only if nan\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
7659 "skip:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7660 ins_encode(form_f2l_helper(src,dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7661 ins_pipe(fcvtF2L);
a61af66fc99e Initial load
duke
parents:
diff changeset
7662 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7663
a61af66fc99e Initial load
duke
parents:
diff changeset
7664 // Float to Long conversion
a61af66fc99e Initial load
duke
parents:
diff changeset
7665 instruct convF2L_reg(stackSlotL dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7666 match(Set dst (ConvF2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7667 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7668 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7669 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7670 convF2L_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7671 regD_to_stkL(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7672 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7673 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7674
a61af66fc99e Initial load
duke
parents:
diff changeset
7675
a61af66fc99e Initial load
duke
parents:
diff changeset
7676 instruct convI2D_helper(regD dst, regF tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7677 effect(USE tmp, DEF dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
7678 format %{ "FITOD $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7679 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7680 ins_encode(form3_opf_rs2F_rdD(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7681 ins_pipe(fcvtI2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
7682 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7683
a61af66fc99e Initial load
duke
parents:
diff changeset
7684 instruct convI2D_reg(stackSlotI src, regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7685 match(Set dst (ConvI2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7686 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7687 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7688 regF tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7689 stkI_to_regF( tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7690 convI2D_helper( dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7691 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7692 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7693
a61af66fc99e Initial load
duke
parents:
diff changeset
7694 instruct convI2D_mem( regD_low dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7695 match(Set dst (ConvI2D (LoadI mem)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7696 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7697 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
7698 format %{ "LDF $mem,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7699 "FITOD $dst,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7700 opcode(Assembler::ldf_op3, Assembler::fitod_opf);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7701 ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7702 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
7703 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7704
a61af66fc99e Initial load
duke
parents:
diff changeset
7705
a61af66fc99e Initial load
duke
parents:
diff changeset
7706 instruct convI2F_helper(regF dst, regF tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7707 effect(DEF dst, USE tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7708 format %{ "FITOS $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7709 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitos_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7710 ins_encode(form3_opf_rs2F_rdF(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7711 ins_pipe(fcvtI2F);
a61af66fc99e Initial load
duke
parents:
diff changeset
7712 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7713
a61af66fc99e Initial load
duke
parents:
diff changeset
7714 instruct convI2F_reg( regF dst, stackSlotI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7715 match(Set dst (ConvI2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7716 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7717 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7718 regF tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7719 stkI_to_regF(tmp,src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7720 convI2F_helper(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7721 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7722 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7723
a61af66fc99e Initial load
duke
parents:
diff changeset
7724 instruct convI2F_mem( regF dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7725 match(Set dst (ConvI2F (LoadI mem)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7726 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7727 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
7728 format %{ "LDF $mem,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7729 "FITOS $dst,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7730 opcode(Assembler::ldf_op3, Assembler::fitos_opf);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7731 ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7732 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
7733 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7734
a61af66fc99e Initial load
duke
parents:
diff changeset
7735
a61af66fc99e Initial load
duke
parents:
diff changeset
7736 instruct convI2L_reg(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7737 match(Set dst (ConvI2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7738 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7739 format %{ "SRA $src,0,$dst\t! int->long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7740 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7741 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7742 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7743 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7744
a61af66fc99e Initial load
duke
parents:
diff changeset
7745 // Zero-extend convert int to long
a61af66fc99e Initial load
duke
parents:
diff changeset
7746 instruct convI2L_reg_zex(iRegL dst, iRegI src, immL_32bits mask ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7747 match(Set dst (AndL (ConvI2L src) mask) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7748 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7749 format %{ "SRL $src,0,$dst\t! zero-extend int to long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7750 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7751 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7752 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7753 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7754
a61af66fc99e Initial load
duke
parents:
diff changeset
7755 // Zero-extend long
a61af66fc99e Initial load
duke
parents:
diff changeset
7756 instruct zerox_long(iRegL dst, iRegL src, immL_32bits mask ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7757 match(Set dst (AndL src mask) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7758 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7759 format %{ "SRL $src,0,$dst\t! zero-extend long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7760 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7761 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7762 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7763 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7764
a61af66fc99e Initial load
duke
parents:
diff changeset
7765 instruct MoveF2I_stack_reg(iRegI dst, stackSlotF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7766 match(Set dst (MoveF2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7767 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7768 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7769
a61af66fc99e Initial load
duke
parents:
diff changeset
7770 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7771 format %{ "LDUW $src,$dst\t! MoveF2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7772 opcode(Assembler::lduw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7773 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7774 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
7775 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7776
a61af66fc99e Initial load
duke
parents:
diff changeset
7777 instruct MoveI2F_stack_reg(regF dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7778 match(Set dst (MoveI2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7779 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7780 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7781
a61af66fc99e Initial load
duke
parents:
diff changeset
7782 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7783 format %{ "LDF $src,$dst\t! MoveI2F" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7784 opcode(Assembler::ldf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7785 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7786 ins_pipe(floadF_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
7787 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7788
a61af66fc99e Initial load
duke
parents:
diff changeset
7789 instruct MoveD2L_stack_reg(iRegL dst, stackSlotD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7790 match(Set dst (MoveD2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7791 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7792 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7793
a61af66fc99e Initial load
duke
parents:
diff changeset
7794 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7795 format %{ "LDX $src,$dst\t! MoveD2L" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7796 opcode(Assembler::ldx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7797 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7798 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
7799 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7800
a61af66fc99e Initial load
duke
parents:
diff changeset
7801 instruct MoveL2D_stack_reg(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7802 match(Set dst (MoveL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7803 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7804 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7805
a61af66fc99e Initial load
duke
parents:
diff changeset
7806 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7807 format %{ "LDDF $src,$dst\t! MoveL2D" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7808 opcode(Assembler::lddf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7809 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7810 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
7811 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7812
a61af66fc99e Initial load
duke
parents:
diff changeset
7813 instruct MoveF2I_reg_stack(stackSlotI dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7814 match(Set dst (MoveF2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7815 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7816 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7817
a61af66fc99e Initial load
duke
parents:
diff changeset
7818 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7819 format %{ "STF $src,$dst\t!MoveF2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7820 opcode(Assembler::stf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7821 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7822 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7823 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7824
a61af66fc99e Initial load
duke
parents:
diff changeset
7825 instruct MoveI2F_reg_stack(stackSlotF dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7826 match(Set dst (MoveI2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7827 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7828 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7829
a61af66fc99e Initial load
duke
parents:
diff changeset
7830 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7831 format %{ "STW $src,$dst\t!MoveI2F" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7832 opcode(Assembler::stw_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7833 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7834 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7835 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7836
a61af66fc99e Initial load
duke
parents:
diff changeset
7837 instruct MoveD2L_reg_stack(stackSlotL dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7838 match(Set dst (MoveD2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7839 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7840 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7841
a61af66fc99e Initial load
duke
parents:
diff changeset
7842 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7843 format %{ "STDF $src,$dst\t!MoveD2L" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7844 opcode(Assembler::stdf_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7845 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7846 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7847 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7848
a61af66fc99e Initial load
duke
parents:
diff changeset
7849 instruct MoveL2D_reg_stack(stackSlotD dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7850 match(Set dst (MoveL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7851 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7852 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7853
a61af66fc99e Initial load
duke
parents:
diff changeset
7854 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7855 format %{ "STX $src,$dst\t!MoveL2D" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7856 opcode(Assembler::stx_op3);
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
7857 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7858 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7859 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7860
a61af66fc99e Initial load
duke
parents:
diff changeset
7861
a61af66fc99e Initial load
duke
parents:
diff changeset
7862 //-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
7863 // Long to Double conversion using V8 opcodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
7864 // Still useful because cheetah traps and becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
7865 // amazingly slow for some common numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
7866
a61af66fc99e Initial load
duke
parents:
diff changeset
7867 // Magic constant, 0x43300000
a61af66fc99e Initial load
duke
parents:
diff changeset
7868 instruct loadConI_x43300000(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7869 effect(DEF dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
7870 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7871 format %{ "SETHI HI(0x43300000),$dst\t! 2^52" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7872 ins_encode(SetHi22(0x43300000, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7873 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
7874 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7875
a61af66fc99e Initial load
duke
parents:
diff changeset
7876 // Magic constant, 0x41f00000
a61af66fc99e Initial load
duke
parents:
diff changeset
7877 instruct loadConI_x41f00000(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7878 effect(DEF dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
7879 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7880 format %{ "SETHI HI(0x41f00000),$dst\t! 2^32" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7881 ins_encode(SetHi22(0x41f00000, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7882 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
7883 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7884
a61af66fc99e Initial load
duke
parents:
diff changeset
7885 // Construct a double from two float halves
a61af66fc99e Initial load
duke
parents:
diff changeset
7886 instruct regDHi_regDLo_to_regD(regD_low dst, regD_low src1, regD_low src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7887 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7888 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
7889 format %{ "FMOVS $src1.hi,$dst.hi\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7890 "FMOVS $src2.lo,$dst.lo" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7891 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmovs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7892 ins_encode(form3_opf_rs2D_hi_rdD_hi(src1, dst), form3_opf_rs2D_lo_rdD_lo(src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7893 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7894 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7895
a61af66fc99e Initial load
duke
parents:
diff changeset
7896 // Convert integer in high half of a double register (in the lower half of
a61af66fc99e Initial load
duke
parents:
diff changeset
7897 // the double register file) to double
a61af66fc99e Initial load
duke
parents:
diff changeset
7898 instruct convI2D_regDHi_regD(regD dst, regD_low src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7899 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7900 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7901 format %{ "FITOD $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7902 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7903 ins_encode(form3_opf_rs2D_rdD(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7904 ins_pipe(fcvtLHi2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
7905 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7906
a61af66fc99e Initial load
duke
parents:
diff changeset
7907 // Add float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7908 instruct addD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7909 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7910 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7911 format %{ "FADDD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7912 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7913 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7914 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7915 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7916
a61af66fc99e Initial load
duke
parents:
diff changeset
7917 // Sub float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7918 instruct subD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7919 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7920 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7921 format %{ "FSUBD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7922 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7923 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7924 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7925 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7926
a61af66fc99e Initial load
duke
parents:
diff changeset
7927 // Mul float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7928 instruct mulD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7929 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7930 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7931 format %{ "FMULD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7932 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7933 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7934 ins_pipe(fmulD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7935 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7936
a61af66fc99e Initial load
duke
parents:
diff changeset
7937 instruct convL2D_reg_slow_fxtof(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7938 match(Set dst (ConvL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7939 ins_cost(DEFAULT_COST*8 + MEMORY_REF_COST*6);
a61af66fc99e Initial load
duke
parents:
diff changeset
7940
a61af66fc99e Initial load
duke
parents:
diff changeset
7941 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7942 regD_low tmpsrc;
a61af66fc99e Initial load
duke
parents:
diff changeset
7943 iRegI ix43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7944 iRegI ix41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7945 stackSlotL lx43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7946 stackSlotL lx41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7947 regD_low dx43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7948 regD dx41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
7949 regD tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
7950 regD_low tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
7951 regD tmp3;
a61af66fc99e Initial load
duke
parents:
diff changeset
7952 regD tmp4;
a61af66fc99e Initial load
duke
parents:
diff changeset
7953
a61af66fc99e Initial load
duke
parents:
diff changeset
7954 stkL_to_regD(tmpsrc, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7955
a61af66fc99e Initial load
duke
parents:
diff changeset
7956 loadConI_x43300000(ix43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7957 loadConI_x41f00000(ix41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7958 regI_to_stkLHi(lx43300000, ix43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7959 regI_to_stkLHi(lx41f00000, ix41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7960 stkL_to_regD(dx43300000, lx43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7961 stkL_to_regD(dx41f00000, lx41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7962
a61af66fc99e Initial load
duke
parents:
diff changeset
7963 convI2D_regDHi_regD(tmp1, tmpsrc);
a61af66fc99e Initial load
duke
parents:
diff changeset
7964 regDHi_regDLo_to_regD(tmp2, dx43300000, tmpsrc);
a61af66fc99e Initial load
duke
parents:
diff changeset
7965 subD_regD_regD(tmp3, tmp2, dx43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7966 mulD_regD_regD(tmp4, tmp1, dx41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
7967 addD_regD_regD(dst, tmp3, tmp4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7968 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7969 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7970
a61af66fc99e Initial load
duke
parents:
diff changeset
7971 // Long to Double conversion using fast fxtof
a61af66fc99e Initial load
duke
parents:
diff changeset
7972 instruct convL2D_helper(regD dst, regD tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7973 effect(DEF dst, USE tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7974 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7975 format %{ "FXTOD $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7976 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7977 ins_encode(form3_opf_rs2D_rdD(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7978 ins_pipe(fcvtL2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
7979 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7980
a61af66fc99e Initial load
duke
parents:
diff changeset
7981 instruct convL2D_reg_fast_fxtof(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7982 predicate(VM_Version::has_fast_fxtof());
a61af66fc99e Initial load
duke
parents:
diff changeset
7983 match(Set dst (ConvL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7984 ins_cost(DEFAULT_COST + 3 * MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7985 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7986 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
7987 stkL_to_regD(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
7988 convL2D_helper(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7989 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7990 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7991
a61af66fc99e Initial load
duke
parents:
diff changeset
7992 //-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
7993 // Long to Float conversion using V8 opcodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
7994 // Still useful because cheetah traps and becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
7995 // amazingly slow for some common numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
7996
a61af66fc99e Initial load
duke
parents:
diff changeset
7997 // Long to Float conversion using fast fxtof
a61af66fc99e Initial load
duke
parents:
diff changeset
7998 instruct convL2F_helper(regF dst, regD tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7999 effect(DEF dst, USE tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8000 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8001 format %{ "FXTOS $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8002 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtos_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8003 ins_encode(form3_opf_rs2D_rdF(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8004 ins_pipe(fcvtL2F);
a61af66fc99e Initial load
duke
parents:
diff changeset
8005 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8006
a61af66fc99e Initial load
duke
parents:
diff changeset
8007 instruct convL2F_reg_fast_fxtof(regF dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8008 match(Set dst (ConvL2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8009 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8010 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8011 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8012 stkL_to_regD(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8013 convL2F_helper(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8014 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8015 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8016 //-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
8017
a61af66fc99e Initial load
duke
parents:
diff changeset
8018 instruct convL2I_reg(iRegI dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8019 match(Set dst (ConvL2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8020 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8021 format %{ "MOV $src.lo,$dst\t! long->int" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8022 ins_encode( form3_g0_rs2_rd_move_lo2( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8023 ins_pipe(ialu_move_reg_I_to_L);
a61af66fc99e Initial load
duke
parents:
diff changeset
8024 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8025 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8026 format %{ "SRA $src,R_G0,$dst\t! long->int" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8027 ins_encode( form3_rs1_rd_signextend_lo1( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8028 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8029 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8030 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8031
a61af66fc99e Initial load
duke
parents:
diff changeset
8032 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
8033 instruct shrL_reg_imm6_L2I(iRegI dst, iRegL src, immI_32_63 cnt) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8034 match(Set dst (ConvL2I (RShiftL src cnt)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8035
a61af66fc99e Initial load
duke
parents:
diff changeset
8036 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8037 format %{ "SRAX $src,$cnt,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8038 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8039 ins_encode( form3_sd_rs1_imm6_rd( src, cnt, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8040 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8041 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8042
a61af66fc99e Initial load
duke
parents:
diff changeset
8043 // Replicate scalar to packed byte values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8044 instruct Repl8B_reg_helper(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8045 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8046 format %{ "SLLX $src,56,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8047 "SRLX $dst, 8,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8048 "OR $dst,O7,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8049 "SRLX $dst,16,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8050 "OR $dst,O7,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8051 "SRLX $dst,32,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8052 "OR $dst,O7,$dst\t! replicate8B" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8053 ins_encode( enc_repl8b(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8054 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8055 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8056
a61af66fc99e Initial load
duke
parents:
diff changeset
8057 // Replicate scalar to packed byte values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8058 instruct Repl8B_reg(stackSlotD dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8059 match(Set dst (Replicate8B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8060 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8061 iRegL tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8062 Repl8B_reg_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8063 regL_to_stkD(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8064 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8065 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8066
a61af66fc99e Initial load
duke
parents:
diff changeset
8067 // Replicate scalar constant to packed byte values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8068 instruct Repl8B_immI(regD dst, immI13 src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8069 match(Set dst (Replicate8B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8070 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8071 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
8072 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8073 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8074 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8075 format %{ "SETHI hi(&Repl8($src)),$tmp\t!get Repl8B($src) from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8076 "LDDF [$tmp+lo(&Repl8($src))],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8077 ins_encode( LdReplImmI(src, dst, tmp, (8), (1)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8078 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
8079 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8080
a61af66fc99e Initial load
duke
parents:
diff changeset
8081 // Replicate scalar to packed char values into stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
8082 instruct Repl4C_reg_helper(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8083 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8084 format %{ "SLLX $src,48,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8085 "SRLX $dst,16,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8086 "OR $dst,O7,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8087 "SRLX $dst,32,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8088 "OR $dst,O7,$dst\t! replicate4C" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8089 ins_encode( enc_repl4s(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8090 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8091 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8092
a61af66fc99e Initial load
duke
parents:
diff changeset
8093 // Replicate scalar to packed char values into stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
8094 instruct Repl4C_reg(stackSlotD dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8095 match(Set dst (Replicate4C src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8096 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8097 iRegL tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8098 Repl4C_reg_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8099 regL_to_stkD(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8100 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8101 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8102
a61af66fc99e Initial load
duke
parents:
diff changeset
8103 // Replicate scalar constant to packed char values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8104 instruct Repl4C_immI(regD dst, immI src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8105 match(Set dst (Replicate4C src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8106 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8107 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
8108 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8109 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8110 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8111 format %{ "SETHI hi(&Repl4($src)),$tmp\t!get Repl4C($src) from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8112 "LDDF [$tmp+lo(&Repl4($src))],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8113 ins_encode( LdReplImmI(src, dst, tmp, (4), (2)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8114 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
8115 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8116
a61af66fc99e Initial load
duke
parents:
diff changeset
8117 // Replicate scalar to packed short values into stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
8118 instruct Repl4S_reg_helper(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8119 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8120 format %{ "SLLX $src,48,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8121 "SRLX $dst,16,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8122 "OR $dst,O7,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8123 "SRLX $dst,32,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8124 "OR $dst,O7,$dst\t! replicate4S" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8125 ins_encode( enc_repl4s(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8126 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8127 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8128
a61af66fc99e Initial load
duke
parents:
diff changeset
8129 // Replicate scalar to packed short values into stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
8130 instruct Repl4S_reg(stackSlotD dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8131 match(Set dst (Replicate4S src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8132 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8133 iRegL tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8134 Repl4S_reg_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8135 regL_to_stkD(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8136 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8137 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8138
a61af66fc99e Initial load
duke
parents:
diff changeset
8139 // Replicate scalar constant to packed short values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8140 instruct Repl4S_immI(regD dst, immI src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8141 match(Set dst (Replicate4S src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8142 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8143 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
8144 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8145 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8146 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8147 format %{ "SETHI hi(&Repl4($src)),$tmp\t!get Repl4S($src) from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8148 "LDDF [$tmp+lo(&Repl4($src))],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8149 ins_encode( LdReplImmI(src, dst, tmp, (4), (2)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8150 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
8151 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8152
a61af66fc99e Initial load
duke
parents:
diff changeset
8153 // Replicate scalar to packed int values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8154 instruct Repl2I_reg_helper(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8155 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8156 format %{ "SLLX $src,32,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8157 "SRLX $dst,32,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8158 "OR $dst,O7,$dst\t! replicate2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8159 ins_encode( enc_repl2i(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8160 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8161 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8162
a61af66fc99e Initial load
duke
parents:
diff changeset
8163 // Replicate scalar to packed int values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8164 instruct Repl2I_reg(stackSlotD dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8165 match(Set dst (Replicate2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8166 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8167 iRegL tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8168 Repl2I_reg_helper(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8169 regL_to_stkD(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8170 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8171 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8172
a61af66fc99e Initial load
duke
parents:
diff changeset
8173 // Replicate scalar zero constant to packed int values in Double register
a61af66fc99e Initial load
duke
parents:
diff changeset
8174 instruct Repl2I_immI(regD dst, immI src, o7RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8175 match(Set dst (Replicate2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8176 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8177 size(36);
a61af66fc99e Initial load
duke
parents:
diff changeset
8178 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8179 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8180 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8181 format %{ "SETHI hi(&Repl2($src)),$tmp\t!get Repl2I($src) from table\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8182 "LDDF [$tmp+lo(&Repl2($src))],$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8183 ins_encode( LdReplImmI(src, dst, tmp, (2), (4)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8184 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
8185 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8186
a61af66fc99e Initial load
duke
parents:
diff changeset
8187 //----------Control Flow Instructions------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8188 // Compare Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8189 // Compare Integers
a61af66fc99e Initial load
duke
parents:
diff changeset
8190 instruct compI_iReg(flagsReg icc, iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8191 match(Set icc (CmpI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8192 effect( DEF icc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8193
a61af66fc99e Initial load
duke
parents:
diff changeset
8194 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8195 format %{ "CMP $op1,$op2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8196 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8197 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8198 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8199 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8200
a61af66fc99e Initial load
duke
parents:
diff changeset
8201 instruct compU_iReg(flagsRegU icc, iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8202 match(Set icc (CmpU op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8203
a61af66fc99e Initial load
duke
parents:
diff changeset
8204 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8205 format %{ "CMP $op1,$op2\t! unsigned" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8206 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8207 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8208 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8209 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8210
a61af66fc99e Initial load
duke
parents:
diff changeset
8211 instruct compI_iReg_imm13(flagsReg icc, iRegI op1, immI13 op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8212 match(Set icc (CmpI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8213 effect( DEF icc, USE op1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8214
a61af66fc99e Initial load
duke
parents:
diff changeset
8215 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8216 format %{ "CMP $op1,$op2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8217 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8218 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8219 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8220 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8221
a61af66fc99e Initial load
duke
parents:
diff changeset
8222 instruct testI_reg_reg( flagsReg icc, iRegI op1, iRegI op2, immI0 zero ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8223 match(Set icc (CmpI (AndI op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8224
a61af66fc99e Initial load
duke
parents:
diff changeset
8225 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8226 format %{ "BTST $op2,$op1" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8227 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8228 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8229 ins_pipe(ialu_cconly_reg_reg_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8230 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8231
a61af66fc99e Initial load
duke
parents:
diff changeset
8232 instruct testI_reg_imm( flagsReg icc, iRegI op1, immI13 op2, immI0 zero ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8233 match(Set icc (CmpI (AndI op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8234
a61af66fc99e Initial load
duke
parents:
diff changeset
8235 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8236 format %{ "BTST $op2,$op1" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8237 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8238 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8239 ins_pipe(ialu_cconly_reg_imm_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8240 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8241
a61af66fc99e Initial load
duke
parents:
diff changeset
8242 instruct compL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8243 match(Set xcc (CmpL op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8244 effect( DEF xcc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8245
a61af66fc99e Initial load
duke
parents:
diff changeset
8246 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8247 format %{ "CMP $op1,$op2\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8248 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8249 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8250 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8251 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8252
a61af66fc99e Initial load
duke
parents:
diff changeset
8253 instruct compL_reg_con(flagsRegL xcc, iRegL op1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8254 match(Set xcc (CmpL op1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
8255 effect( DEF xcc, USE op1, USE con );
a61af66fc99e Initial load
duke
parents:
diff changeset
8256
a61af66fc99e Initial load
duke
parents:
diff changeset
8257 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8258 format %{ "CMP $op1,$con\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8259 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8260 ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8261 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8262 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8263
a61af66fc99e Initial load
duke
parents:
diff changeset
8264 instruct testL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2, immL0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8265 match(Set xcc (CmpL (AndL op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8266 effect( DEF xcc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8267
a61af66fc99e Initial load
duke
parents:
diff changeset
8268 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8269 format %{ "BTST $op1,$op2\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8270 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8271 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8272 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8273 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8274
a61af66fc99e Initial load
duke
parents:
diff changeset
8275 // useful for checking the alignment of a pointer:
a61af66fc99e Initial load
duke
parents:
diff changeset
8276 instruct testL_reg_con(flagsRegL xcc, iRegL op1, immL13 con, immL0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8277 match(Set xcc (CmpL (AndL op1 con) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8278 effect( DEF xcc, USE op1, USE con );
a61af66fc99e Initial load
duke
parents:
diff changeset
8279
a61af66fc99e Initial load
duke
parents:
diff changeset
8280 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8281 format %{ "BTST $op1,$con\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8282 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8283 ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8284 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8285 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8286
a61af66fc99e Initial load
duke
parents:
diff changeset
8287 instruct compU_iReg_imm13(flagsRegU icc, iRegI op1, immU13 op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8288 match(Set icc (CmpU op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8289
a61af66fc99e Initial load
duke
parents:
diff changeset
8290 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8291 format %{ "CMP $op1,$op2\t! unsigned" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8292 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8293 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8294 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8295 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8296
a61af66fc99e Initial load
duke
parents:
diff changeset
8297 // Compare Pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
8298 instruct compP_iRegP(flagsRegP pcc, iRegP op1, iRegP op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8299 match(Set pcc (CmpP op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8300
a61af66fc99e Initial load
duke
parents:
diff changeset
8301 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8302 format %{ "CMP $op1,$op2\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8303 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8304 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8305 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8306 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8307
a61af66fc99e Initial load
duke
parents:
diff changeset
8308 instruct compP_iRegP_imm13(flagsRegP pcc, iRegP op1, immP13 op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8309 match(Set pcc (CmpP op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8310
a61af66fc99e Initial load
duke
parents:
diff changeset
8311 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8312 format %{ "CMP $op1,$op2\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8313 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8314 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8315 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8316 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8317
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8318 // Compare Narrow oops
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8319 instruct compN_iRegN(flagsReg icc, iRegN op1, iRegN op2 ) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8320 match(Set icc (CmpN op1 op2));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8321
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8322 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8323 format %{ "CMP $op1,$op2\t! compressed ptr" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8324 opcode(Assembler::subcc_op3, Assembler::arith_op);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8325 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8326 ins_pipe(ialu_cconly_reg_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8327 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8328
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8329 instruct compN_iRegN_immN0(flagsReg icc, iRegN op1, immN0 op2 ) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8330 match(Set icc (CmpN op1 op2));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8331
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8332 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8333 format %{ "CMP $op1,$op2\t! compressed ptr" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8334 opcode(Assembler::subcc_op3, Assembler::arith_op);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8335 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8336 ins_pipe(ialu_cconly_reg_imm);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8337 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8338
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8339 //----------Max and Min--------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8340 // Min Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8341 // Conditional move for min
a61af66fc99e Initial load
duke
parents:
diff changeset
8342 instruct cmovI_reg_lt( iRegI op2, iRegI op1, flagsReg icc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8343 effect( USE_DEF op2, USE op1, USE icc );
a61af66fc99e Initial load
duke
parents:
diff changeset
8344
a61af66fc99e Initial load
duke
parents:
diff changeset
8345 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8346 format %{ "MOVlt icc,$op1,$op2\t! min" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8347 opcode(Assembler::less);
a61af66fc99e Initial load
duke
parents:
diff changeset
8348 ins_encode( enc_cmov_reg_minmax(op2,op1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8349 ins_pipe(ialu_reg_flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
8350 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8351
a61af66fc99e Initial load
duke
parents:
diff changeset
8352 // Min Register with Register.
a61af66fc99e Initial load
duke
parents:
diff changeset
8353 instruct minI_eReg(iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8354 match(Set op2 (MinI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8355 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8356 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8357 flagsReg icc;
a61af66fc99e Initial load
duke
parents:
diff changeset
8358 compI_iReg(icc,op1,op2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8359 cmovI_reg_lt(op2,op1,icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8360 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8361 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8362
a61af66fc99e Initial load
duke
parents:
diff changeset
8363 // Max Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8364 // Conditional move for max
a61af66fc99e Initial load
duke
parents:
diff changeset
8365 instruct cmovI_reg_gt( iRegI op2, iRegI op1, flagsReg icc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8366 effect( USE_DEF op2, USE op1, USE icc );
a61af66fc99e Initial load
duke
parents:
diff changeset
8367 format %{ "MOVgt icc,$op1,$op2\t! max" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8368 opcode(Assembler::greater);
a61af66fc99e Initial load
duke
parents:
diff changeset
8369 ins_encode( enc_cmov_reg_minmax(op2,op1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8370 ins_pipe(ialu_reg_flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
8371 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8372
a61af66fc99e Initial load
duke
parents:
diff changeset
8373 // Max Register with Register
a61af66fc99e Initial load
duke
parents:
diff changeset
8374 instruct maxI_eReg(iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8375 match(Set op2 (MaxI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8376 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8377 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8378 flagsReg icc;
a61af66fc99e Initial load
duke
parents:
diff changeset
8379 compI_iReg(icc,op1,op2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8380 cmovI_reg_gt(op2,op1,icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8381 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8382 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8383
a61af66fc99e Initial load
duke
parents:
diff changeset
8384
a61af66fc99e Initial load
duke
parents:
diff changeset
8385 //----------Float Compares----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8386 // Compare floating, generate condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
8387 instruct cmpF_cc(flagsRegF fcc, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8388 match(Set fcc (CmpF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8389
a61af66fc99e Initial load
duke
parents:
diff changeset
8390 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8391 format %{ "FCMPs $fcc,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8392 opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmps_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8393 ins_encode( form3_opf_rs1F_rs2F_fcc( src1, src2, fcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8394 ins_pipe(faddF_fcc_reg_reg_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8395 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8396
a61af66fc99e Initial load
duke
parents:
diff changeset
8397 instruct cmpD_cc(flagsRegF fcc, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8398 match(Set fcc (CmpD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8399
a61af66fc99e Initial load
duke
parents:
diff changeset
8400 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8401 format %{ "FCMPd $fcc,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8402 opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmpd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8403 ins_encode( form3_opf_rs1D_rs2D_fcc( src1, src2, fcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8404 ins_pipe(faddD_fcc_reg_reg_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8405 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8406
a61af66fc99e Initial load
duke
parents:
diff changeset
8407
a61af66fc99e Initial load
duke
parents:
diff changeset
8408 // Compare floating, generate -1,0,1
a61af66fc99e Initial load
duke
parents:
diff changeset
8409 instruct cmpF_reg(iRegI dst, regF src1, regF src2, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8410 match(Set dst (CmpF3 src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8411 effect(KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8412 ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
8413 format %{ "fcmpl $dst,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8414 // Primary = float
a61af66fc99e Initial load
duke
parents:
diff changeset
8415 opcode( true );
a61af66fc99e Initial load
duke
parents:
diff changeset
8416 ins_encode( floating_cmp( dst, src1, src2 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8417 ins_pipe( floating_cmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
8418 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8419
a61af66fc99e Initial load
duke
parents:
diff changeset
8420 instruct cmpD_reg(iRegI dst, regD src1, regD src2, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8421 match(Set dst (CmpD3 src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8422 effect(KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8423 ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
8424 format %{ "dcmpl $dst,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8425 // Primary = double (not float)
a61af66fc99e Initial load
duke
parents:
diff changeset
8426 opcode( false );
a61af66fc99e Initial load
duke
parents:
diff changeset
8427 ins_encode( floating_cmp( dst, src1, src2 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8428 ins_pipe( floating_cmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
8429 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8430
a61af66fc99e Initial load
duke
parents:
diff changeset
8431 //----------Branches---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8432 // Jump
a61af66fc99e Initial load
duke
parents:
diff changeset
8433 // (compare 'operand indIndex' and 'instruct addP_reg_reg' above)
a61af66fc99e Initial load
duke
parents:
diff changeset
8434 instruct jumpXtnd(iRegX switch_val, o7RegI table) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8435 match(Jump switch_val);
a61af66fc99e Initial load
duke
parents:
diff changeset
8436
a61af66fc99e Initial load
duke
parents:
diff changeset
8437 ins_cost(350);
a61af66fc99e Initial load
duke
parents:
diff changeset
8438
a61af66fc99e Initial load
duke
parents:
diff changeset
8439 format %{ "SETHI [hi(table_base)],O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8440 "ADD O7, lo(table_base), O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8441 "LD [O7+$switch_val], O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8442 "JUMP O7"
a61af66fc99e Initial load
duke
parents:
diff changeset
8443 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8444 ins_encode( jump_enc( switch_val, table) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8445 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8446 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8447 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8448
a61af66fc99e Initial load
duke
parents:
diff changeset
8449 // Direct Branch. Use V8 version with longer range.
a61af66fc99e Initial load
duke
parents:
diff changeset
8450 instruct branch(label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8451 match(Goto);
a61af66fc99e Initial load
duke
parents:
diff changeset
8452 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8453
a61af66fc99e Initial load
duke
parents:
diff changeset
8454 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8455 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8456 format %{ "BA $labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8457 // Prim = bits 24-22, Secnd = bits 31-30, Tert = cond
a61af66fc99e Initial load
duke
parents:
diff changeset
8458 opcode(Assembler::br_op2, Assembler::branch_op, Assembler::always);
a61af66fc99e Initial load
duke
parents:
diff changeset
8459 ins_encode( enc_ba( labl ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8460 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8461 ins_pipe(br);
a61af66fc99e Initial load
duke
parents:
diff changeset
8462 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8463
a61af66fc99e Initial load
duke
parents:
diff changeset
8464 // Conditional Direct Branch
a61af66fc99e Initial load
duke
parents:
diff changeset
8465 instruct branchCon(cmpOp cmp, flagsReg icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8466 match(If cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8467 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8468
a61af66fc99e Initial load
duke
parents:
diff changeset
8469 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8470 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8471 format %{ "BP$cmp $icc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8472 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8473 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8474 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8475 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8476 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8477
a61af66fc99e Initial load
duke
parents:
diff changeset
8478 // Branch-on-register tests all 64 bits. We assume that values
a61af66fc99e Initial load
duke
parents:
diff changeset
8479 // in 64-bit registers always remains zero or sign extended
a61af66fc99e Initial load
duke
parents:
diff changeset
8480 // unless our code munges the high bits. Interrupts can chop
a61af66fc99e Initial load
duke
parents:
diff changeset
8481 // the high order bits to zero or sign at any time.
a61af66fc99e Initial load
duke
parents:
diff changeset
8482 instruct branchCon_regI(cmpOp_reg cmp, iRegI op1, immI0 zero, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8483 match(If cmp (CmpI op1 zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8484 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
a61af66fc99e Initial load
duke
parents:
diff changeset
8485 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8486
a61af66fc99e Initial load
duke
parents:
diff changeset
8487 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8488 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8489 format %{ "BR$cmp $op1,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8490 ins_encode( enc_bpr( labl, cmp, op1 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8491 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8492 ins_pipe(br_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8493 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8494
a61af66fc99e Initial load
duke
parents:
diff changeset
8495 instruct branchCon_regP(cmpOp_reg cmp, iRegP op1, immP0 null, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8496 match(If cmp (CmpP op1 null));
a61af66fc99e Initial load
duke
parents:
diff changeset
8497 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
a61af66fc99e Initial load
duke
parents:
diff changeset
8498 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8499
a61af66fc99e Initial load
duke
parents:
diff changeset
8500 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8501 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8502 format %{ "BR$cmp $op1,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8503 ins_encode( enc_bpr( labl, cmp, op1 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8504 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8505 ins_pipe(br_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8506 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8507
a61af66fc99e Initial load
duke
parents:
diff changeset
8508 instruct branchCon_regL(cmpOp_reg cmp, iRegL op1, immL0 zero, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8509 match(If cmp (CmpL op1 zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8510 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
a61af66fc99e Initial load
duke
parents:
diff changeset
8511 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8512
a61af66fc99e Initial load
duke
parents:
diff changeset
8513 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8514 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8515 format %{ "BR$cmp $op1,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8516 ins_encode( enc_bpr( labl, cmp, op1 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8517 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8518 ins_pipe(br_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8519 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8520
a61af66fc99e Initial load
duke
parents:
diff changeset
8521 instruct branchConU(cmpOpU cmp, flagsRegU icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8522 match(If cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8523 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8524
a61af66fc99e Initial load
duke
parents:
diff changeset
8525 format %{ "BP$cmp $icc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8526 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8527 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8528 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8529 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8530 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8531
a61af66fc99e Initial load
duke
parents:
diff changeset
8532 instruct branchConP(cmpOpP cmp, flagsRegP pcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8533 match(If cmp pcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8534 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8535
a61af66fc99e Initial load
duke
parents:
diff changeset
8536 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8537 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8538 format %{ "BP$cmp $pcc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8539 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8540 ins_encode( enc_bpx( labl, cmp, pcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8541 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8542 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8543 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8544
a61af66fc99e Initial load
duke
parents:
diff changeset
8545 instruct branchConF(cmpOpF cmp, flagsRegF fcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8546 match(If cmp fcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8547 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8548
a61af66fc99e Initial load
duke
parents:
diff changeset
8549 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8550 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8551 format %{ "FBP$cmp $fcc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8552 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8553 ins_encode( enc_fbp( labl, cmp, fcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8554 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8555 ins_pipe(br_fcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8556 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8557
a61af66fc99e Initial load
duke
parents:
diff changeset
8558 instruct branchLoopEnd(cmpOp cmp, flagsReg icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8559 match(CountedLoopEnd cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8560 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8561
a61af66fc99e Initial load
duke
parents:
diff changeset
8562 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8563 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8564 format %{ "BP$cmp $icc,$labl\t! Loop end" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8565 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8566 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8567 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8568 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8569 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8570
a61af66fc99e Initial load
duke
parents:
diff changeset
8571 instruct branchLoopEndU(cmpOpU cmp, flagsRegU icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8572 match(CountedLoopEnd cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8573 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8574
a61af66fc99e Initial load
duke
parents:
diff changeset
8575 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8576 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8577 format %{ "BP$cmp $icc,$labl\t! Loop end" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8578 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8579 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8580 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8581 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8582 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8583
a61af66fc99e Initial load
duke
parents:
diff changeset
8584 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8585 // Long Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
8586 //
a61af66fc99e Initial load
duke
parents:
diff changeset
8587 // Currently we hold longs in 2 registers. Comparing such values efficiently
a61af66fc99e Initial load
duke
parents:
diff changeset
8588 // is tricky. The flavor of compare used depends on whether we are testing
a61af66fc99e Initial load
duke
parents:
diff changeset
8589 // for LT, LE, or EQ. For a simple LT test we can check just the sign bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
8590 // The GE test is the negated LT test. The LE test can be had by commuting
a61af66fc99e Initial load
duke
parents:
diff changeset
8591 // the operands (yielding a GE test) and then negating; negate again for the
a61af66fc99e Initial load
duke
parents:
diff changeset
8592 // GT test. The EQ test is done by ORcc'ing the high and low halves, and the
a61af66fc99e Initial load
duke
parents:
diff changeset
8593 // NE test is negated from that.
a61af66fc99e Initial load
duke
parents:
diff changeset
8594
a61af66fc99e Initial load
duke
parents:
diff changeset
8595 // Due to a shortcoming in the ADLC, it mixes up expressions like:
a61af66fc99e Initial load
duke
parents:
diff changeset
8596 // (foo (CmpI (CmpL X Y) 0)) and (bar (CmpI (CmpL X 0L) 0)). Note the
a61af66fc99e Initial load
duke
parents:
diff changeset
8597 // difference between 'Y' and '0L'. The tree-matches for the CmpI sections
a61af66fc99e Initial load
duke
parents:
diff changeset
8598 // are collapsed internally in the ADLC's dfa-gen code. The match for
a61af66fc99e Initial load
duke
parents:
diff changeset
8599 // (CmpI (CmpL X Y) 0) is silently replaced with (CmpI (CmpL X 0L) 0) and the
a61af66fc99e Initial load
duke
parents:
diff changeset
8600 // foo match ends up with the wrong leaf. One fix is to not match both
a61af66fc99e Initial load
duke
parents:
diff changeset
8601 // reg-reg and reg-zero forms of long-compare. This is unfortunate because
a61af66fc99e Initial load
duke
parents:
diff changeset
8602 // both forms beat the trinary form of long-compare and both are very useful
a61af66fc99e Initial load
duke
parents:
diff changeset
8603 // on Intel which has so few registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
8604
a61af66fc99e Initial load
duke
parents:
diff changeset
8605 instruct branchCon_long(cmpOp cmp, flagsRegL xcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8606 match(If cmp xcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8607 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
8608
a61af66fc99e Initial load
duke
parents:
diff changeset
8609 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8610 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8611 format %{ "BP$cmp $xcc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8612 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
8613 ins_encode( enc_bpl( labl, cmp, xcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8614 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8615 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8616 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8617
a61af66fc99e Initial load
duke
parents:
diff changeset
8618 // Manifest a CmpL3 result in an integer register. Very painful.
a61af66fc99e Initial load
duke
parents:
diff changeset
8619 // This is the test to avoid.
a61af66fc99e Initial load
duke
parents:
diff changeset
8620 instruct cmpL3_reg_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8621 match(Set dst (CmpL3 src1 src2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8622 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
8623 ins_cost(6*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8624 size(24);
a61af66fc99e Initial load
duke
parents:
diff changeset
8625 format %{ "CMP $src1,$src2\t\t! long\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8626 "\tBLT,a,pn done\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8627 "\tMOV -1,$dst\t! delay slot\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8628 "\tBGT,a,pn done\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8629 "\tMOV 1,$dst\t! delay slot\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8630 "\tCLR $dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8631 "done:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8632 ins_encode( cmpl_flag(src1,src2,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8633 ins_pipe(cmpL_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8634 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8635
a61af66fc99e Initial load
duke
parents:
diff changeset
8636 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
8637 instruct cmovLL_reg(cmpOp cmp, flagsRegL xcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8638 match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8639 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
8640 format %{ "MOV$cmp $xcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8641 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8642 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8643 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8644
a61af66fc99e Initial load
duke
parents:
diff changeset
8645 instruct cmovLL_imm(cmpOp cmp, flagsRegL xcc, iRegL dst, immL0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8646 match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8647 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
8648 format %{ "MOV$cmp $xcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8649 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8650 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8651 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8652
a61af66fc99e Initial load
duke
parents:
diff changeset
8653 instruct cmovIL_reg(cmpOp cmp, flagsRegL xcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8654 match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8655 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
8656 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8657 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8658 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8659 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8660
a61af66fc99e Initial load
duke
parents:
diff changeset
8661 instruct cmovIL_imm(cmpOp cmp, flagsRegL xcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8662 match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8663 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
8664 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8665 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8666 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8667 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8668
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8669 instruct cmovNL_reg(cmpOp cmp, flagsRegL xcc, iRegN dst, iRegN src) %{
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8670 match(Set dst (CMoveN (Binary cmp xcc) (Binary dst src)));
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8671 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8672 format %{ "MOV$cmp $xcc,$src,$dst" %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8673 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8674 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8675 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
8676
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8677 instruct cmovPL_reg(cmpOp cmp, flagsRegL xcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8678 match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8679 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
8680 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8681 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8682 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8683 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8684
a61af66fc99e Initial load
duke
parents:
diff changeset
8685 instruct cmovPL_imm(cmpOp cmp, flagsRegL xcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8686 match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8687 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
8688 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8689 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8690 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8691 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8692
a61af66fc99e Initial load
duke
parents:
diff changeset
8693 instruct cmovFL_reg(cmpOp cmp, flagsRegL xcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8694 match(Set dst (CMoveF (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8695 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
8696 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
8697 format %{ "FMOVS$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8698 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8699 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
8700 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8701
a61af66fc99e Initial load
duke
parents:
diff changeset
8702 instruct cmovDL_reg(cmpOp cmp, flagsRegL xcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8703 match(Set dst (CMoveD (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8704 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
8705 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
8706 format %{ "FMOVD$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8707 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8708 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
8709 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8710
a61af66fc99e Initial load
duke
parents:
diff changeset
8711 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8712 // Safepoint Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
8713 instruct safePoint_poll(iRegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8714 match(SafePoint poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
8715 effect(USE poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
8716
a61af66fc99e Initial load
duke
parents:
diff changeset
8717 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8718 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8719 format %{ "LDX [$poll],R_G0\t! Safepoint: poll for GC" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8720 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8721 format %{ "LDUW [$poll],R_G0\t! Safepoint: poll for GC" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8722 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8723 ins_encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8724 __ relocate(relocInfo::poll_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
8725 __ ld_ptr($poll$$Register, 0, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8726 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8727 ins_pipe(loadPollP);
a61af66fc99e Initial load
duke
parents:
diff changeset
8728 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8729
a61af66fc99e Initial load
duke
parents:
diff changeset
8730 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8731 // Call Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8732 // Call Java Static Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
8733 instruct CallStaticJavaDirect( method meth ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8734 match(CallStaticJava);
a61af66fc99e Initial load
duke
parents:
diff changeset
8735 effect(USE meth);
a61af66fc99e Initial load
duke
parents:
diff changeset
8736
a61af66fc99e Initial load
duke
parents:
diff changeset
8737 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8738 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8739 format %{ "CALL,static ; NOP ==> " %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8740 ins_encode( Java_Static_Call( meth ), call_epilog );
a61af66fc99e Initial load
duke
parents:
diff changeset
8741 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8742 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8743 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8744
a61af66fc99e Initial load
duke
parents:
diff changeset
8745 // Call Java Dynamic Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
8746 instruct CallDynamicJavaDirect( method meth ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8747 match(CallDynamicJava);
a61af66fc99e Initial load
duke
parents:
diff changeset
8748 effect(USE meth);
a61af66fc99e Initial load
duke
parents:
diff changeset
8749
a61af66fc99e Initial load
duke
parents:
diff changeset
8750 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8751 format %{ "SET (empty),R_G5\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8752 "CALL,dynamic ; NOP ==> " %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8753 ins_encode( Java_Dynamic_Call( meth ), call_epilog );
a61af66fc99e Initial load
duke
parents:
diff changeset
8754 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8755 ins_pipe(call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8756 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8757
a61af66fc99e Initial load
duke
parents:
diff changeset
8758 // Call Runtime Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
8759 instruct CallRuntimeDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8760 match(CallRuntime);
a61af66fc99e Initial load
duke
parents:
diff changeset
8761 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
8762 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8763 format %{ "CALL,runtime" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8764 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
8765 call_epilog, adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
8766 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8767 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8768 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8769
a61af66fc99e Initial load
duke
parents:
diff changeset
8770 // Call runtime without safepoint - same as CallRuntime
a61af66fc99e Initial load
duke
parents:
diff changeset
8771 instruct CallLeafDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8772 match(CallLeaf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8773 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
8774 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8775 format %{ "CALL,runtime leaf" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8776 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
8777 call_epilog,
a61af66fc99e Initial load
duke
parents:
diff changeset
8778 adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
8779 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8780 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8781 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8782
a61af66fc99e Initial load
duke
parents:
diff changeset
8783 // Call runtime without safepoint - same as CallLeaf
a61af66fc99e Initial load
duke
parents:
diff changeset
8784 instruct CallLeafNoFPDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8785 match(CallLeafNoFP);
a61af66fc99e Initial load
duke
parents:
diff changeset
8786 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
8787 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8788 format %{ "CALL,runtime leaf nofp" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8789 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
8790 call_epilog,
a61af66fc99e Initial load
duke
parents:
diff changeset
8791 adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
8792 ins_pc_relative(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
8793 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8794 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8795
a61af66fc99e Initial load
duke
parents:
diff changeset
8796 // Tail Call; Jump from runtime stub to Java code.
a61af66fc99e Initial load
duke
parents:
diff changeset
8797 // Also known as an 'interprocedural jump'.
a61af66fc99e Initial load
duke
parents:
diff changeset
8798 // Target of jump will eventually return to caller.
a61af66fc99e Initial load
duke
parents:
diff changeset
8799 // TailJump below removes the return address.
a61af66fc99e Initial load
duke
parents:
diff changeset
8800 instruct TailCalljmpInd(g3RegP jump_target, inline_cache_regP method_oop) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8801 match(TailCall jump_target method_oop );
a61af66fc99e Initial load
duke
parents:
diff changeset
8802
a61af66fc99e Initial load
duke
parents:
diff changeset
8803 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8804 format %{ "Jmp $jump_target ; NOP \t! $method_oop holds method oop" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8805 ins_encode(form_jmpl(jump_target));
a61af66fc99e Initial load
duke
parents:
diff changeset
8806 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8807 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8808
a61af66fc99e Initial load
duke
parents:
diff changeset
8809
a61af66fc99e Initial load
duke
parents:
diff changeset
8810 // Return Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
8811 instruct Ret() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8812 match(Return);
a61af66fc99e Initial load
duke
parents:
diff changeset
8813
a61af66fc99e Initial load
duke
parents:
diff changeset
8814 // The epilogue node did the ret already.
a61af66fc99e Initial load
duke
parents:
diff changeset
8815 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8816 format %{ "! return" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8817 ins_encode();
a61af66fc99e Initial load
duke
parents:
diff changeset
8818 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
8819 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8820
a61af66fc99e Initial load
duke
parents:
diff changeset
8821
a61af66fc99e Initial load
duke
parents:
diff changeset
8822 // Tail Jump; remove the return address; jump to target.
a61af66fc99e Initial load
duke
parents:
diff changeset
8823 // TailCall above leaves the return address around.
a61af66fc99e Initial load
duke
parents:
diff changeset
8824 // TailJump is used in only one place, the rethrow_Java stub (fancy_jump=2).
a61af66fc99e Initial load
duke
parents:
diff changeset
8825 // ex_oop (Exception Oop) is needed in %o0 at the jump. As there would be a
a61af66fc99e Initial load
duke
parents:
diff changeset
8826 // "restore" before this instruction (in Epilogue), we need to materialize it
a61af66fc99e Initial load
duke
parents:
diff changeset
8827 // in %i0.
a61af66fc99e Initial load
duke
parents:
diff changeset
8828 instruct tailjmpInd(g1RegP jump_target, i0RegP ex_oop) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8829 match( TailJump jump_target ex_oop );
a61af66fc99e Initial load
duke
parents:
diff changeset
8830 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8831 format %{ "! discard R_O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8832 "Jmp $jump_target ; ADD O7,8,O1 \t! $ex_oop holds exc. oop" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8833 ins_encode(form_jmpl_set_exception_pc(jump_target));
a61af66fc99e Initial load
duke
parents:
diff changeset
8834 // opcode(Assembler::jmpl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8835 // The hack duplicates the exception oop into G3, so that CreateEx can use it there.
a61af66fc99e Initial load
duke
parents:
diff changeset
8836 // ins_encode( form3_rs1_simm13_rd( jump_target, 0x00, R_G0 ), move_return_pc_to_o1() );
a61af66fc99e Initial load
duke
parents:
diff changeset
8837 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8838 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8839
a61af66fc99e Initial load
duke
parents:
diff changeset
8840 // Create exception oop: created by stack-crawling runtime code.
a61af66fc99e Initial load
duke
parents:
diff changeset
8841 // Created exception is now available to this handler, and is setup
a61af66fc99e Initial load
duke
parents:
diff changeset
8842 // just prior to jumping to this handler. No code emitted.
a61af66fc99e Initial load
duke
parents:
diff changeset
8843 instruct CreateException( o0RegP ex_oop )
a61af66fc99e Initial load
duke
parents:
diff changeset
8844 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8845 match(Set ex_oop (CreateEx));
a61af66fc99e Initial load
duke
parents:
diff changeset
8846 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8847
a61af66fc99e Initial load
duke
parents:
diff changeset
8848 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
8849 // use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
8850 format %{ "! exception oop is in R_O0; no code emitted" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8851 ins_encode();
a61af66fc99e Initial load
duke
parents:
diff changeset
8852 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
8853 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8854
a61af66fc99e Initial load
duke
parents:
diff changeset
8855
a61af66fc99e Initial load
duke
parents:
diff changeset
8856 // Rethrow exception:
a61af66fc99e Initial load
duke
parents:
diff changeset
8857 // The exception oop will come in the first argument position.
a61af66fc99e Initial load
duke
parents:
diff changeset
8858 // Then JUMP (not call) to the rethrow stub code.
a61af66fc99e Initial load
duke
parents:
diff changeset
8859 instruct RethrowException()
a61af66fc99e Initial load
duke
parents:
diff changeset
8860 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8861 match(Rethrow);
a61af66fc99e Initial load
duke
parents:
diff changeset
8862 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8863
a61af66fc99e Initial load
duke
parents:
diff changeset
8864 // use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
8865 format %{ "Jmp rethrow_stub" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8866 ins_encode(enc_rethrow);
a61af66fc99e Initial load
duke
parents:
diff changeset
8867 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8868 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8869
a61af66fc99e Initial load
duke
parents:
diff changeset
8870
a61af66fc99e Initial load
duke
parents:
diff changeset
8871 // Die now
a61af66fc99e Initial load
duke
parents:
diff changeset
8872 instruct ShouldNotReachHere( )
a61af66fc99e Initial load
duke
parents:
diff changeset
8873 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8874 match(Halt);
a61af66fc99e Initial load
duke
parents:
diff changeset
8875 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8876
a61af66fc99e Initial load
duke
parents:
diff changeset
8877 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8878 // Use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
8879 format %{ "ILLTRAP ; ShouldNotReachHere" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8880 ins_encode( form2_illtrap() );
a61af66fc99e Initial load
duke
parents:
diff changeset
8881 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
8882 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8883
a61af66fc99e Initial load
duke
parents:
diff changeset
8884 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8885 // The 2nd slow-half of a subtype check. Scan the subklass's 2ndary superklass
a61af66fc99e Initial load
duke
parents:
diff changeset
8886 // array for an instance of the superklass. Set a hidden internal cache on a
a61af66fc99e Initial load
duke
parents:
diff changeset
8887 // hit (cache is checked with exposed code in gen_subtype_check()). Return
a61af66fc99e Initial load
duke
parents:
diff changeset
8888 // not zero for a miss or zero for a hit. The encoding ALSO sets flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
8889 instruct partialSubtypeCheck( o0RegP index, o1RegP sub, o2RegP super, flagsRegP pcc, o7RegP o7 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8890 match(Set index (PartialSubtypeCheck sub super));
a61af66fc99e Initial load
duke
parents:
diff changeset
8891 effect( KILL pcc, KILL o7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8892 ins_cost(DEFAULT_COST*10);
a61af66fc99e Initial load
duke
parents:
diff changeset
8893 format %{ "CALL PartialSubtypeCheck\n\tNOP" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8894 ins_encode( enc_PartialSubtypeCheck() );
a61af66fc99e Initial load
duke
parents:
diff changeset
8895 ins_pipe(partial_subtype_check_pipe);
a61af66fc99e Initial load
duke
parents:
diff changeset
8896 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8897
a61af66fc99e Initial load
duke
parents:
diff changeset
8898 instruct partialSubtypeCheck_vs_zero( flagsRegP pcc, o1RegP sub, o2RegP super, immP0 zero, o0RegP idx, o7RegP o7 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8899 match(Set pcc (CmpP (PartialSubtypeCheck sub super) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8900 effect( KILL idx, KILL o7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8901 ins_cost(DEFAULT_COST*10);
a61af66fc99e Initial load
duke
parents:
diff changeset
8902 format %{ "CALL PartialSubtypeCheck\n\tNOP\t# (sets condition codes)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8903 ins_encode( enc_PartialSubtypeCheck() );
a61af66fc99e Initial load
duke
parents:
diff changeset
8904 ins_pipe(partial_subtype_check_pipe);
a61af66fc99e Initial load
duke
parents:
diff changeset
8905 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8906
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
8907
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8908 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8909 // inlined locking and unlocking
a61af66fc99e Initial load
duke
parents:
diff changeset
8910
a61af66fc99e Initial load
duke
parents:
diff changeset
8911 instruct cmpFastLock(flagsRegP pcc, iRegP object, iRegP box, iRegP scratch2, o7RegP scratch ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8912 match(Set pcc (FastLock object box));
a61af66fc99e Initial load
duke
parents:
diff changeset
8913
a61af66fc99e Initial load
duke
parents:
diff changeset
8914 effect(KILL scratch, TEMP scratch2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8915 ins_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
8916
a61af66fc99e Initial load
duke
parents:
diff changeset
8917 size(4*112); // conservative overestimation ...
a61af66fc99e Initial load
duke
parents:
diff changeset
8918 format %{ "FASTLOCK $object, $box; KILL $scratch, $scratch2, $box" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8919 ins_encode( Fast_Lock(object, box, scratch, scratch2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8920 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8921 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8922
a61af66fc99e Initial load
duke
parents:
diff changeset
8923
a61af66fc99e Initial load
duke
parents:
diff changeset
8924 instruct cmpFastUnlock(flagsRegP pcc, iRegP object, iRegP box, iRegP scratch2, o7RegP scratch ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8925 match(Set pcc (FastUnlock object box));
a61af66fc99e Initial load
duke
parents:
diff changeset
8926 effect(KILL scratch, TEMP scratch2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8927 ins_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
8928
a61af66fc99e Initial load
duke
parents:
diff changeset
8929 size(4*120); // conservative overestimation ...
a61af66fc99e Initial load
duke
parents:
diff changeset
8930 format %{ "FASTUNLOCK $object, $box; KILL $scratch, $scratch2, $box" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8931 ins_encode( Fast_Unlock(object, box, scratch, scratch2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8932 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8933 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8934
a61af66fc99e Initial load
duke
parents:
diff changeset
8935 // Count and Base registers are fixed because the allocator cannot
a61af66fc99e Initial load
duke
parents:
diff changeset
8936 // kill unknown registers. The encodings are generic.
a61af66fc99e Initial load
duke
parents:
diff changeset
8937 instruct clear_array(iRegX cnt, iRegP base, iRegX temp, Universe dummy, flagsReg ccr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8938 match(Set dummy (ClearArray cnt base));
a61af66fc99e Initial load
duke
parents:
diff changeset
8939 effect(TEMP temp, KILL ccr);
a61af66fc99e Initial load
duke
parents:
diff changeset
8940 ins_cost(300);
a61af66fc99e Initial load
duke
parents:
diff changeset
8941 format %{ "MOV $cnt,$temp\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8942 "loop: SUBcc $temp,8,$temp\t! Count down a dword of bytes\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8943 " BRge loop\t\t! Clearing loop\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
8944 " STX G0,[$base+$temp]\t! delay slot" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8945 ins_encode( enc_Clear_Array(cnt, base, temp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8946 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8947 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8948
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
8949 instruct string_compare(o0RegP str1, o1RegP str2, g3RegP tmp1, g4RegP tmp2, notemp_iRegI result,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
8950 o7RegI tmp3, flagsReg ccr) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8951 match(Set result (StrComp str1 str2));
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
8952 effect(USE_KILL str1, USE_KILL str2, KILL tmp1, KILL tmp2, KILL ccr, KILL tmp3);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8953 ins_cost(300);
a61af66fc99e Initial load
duke
parents:
diff changeset
8954 format %{ "String Compare $str1,$str2 -> $result" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8955 ins_encode( enc_String_Compare(str1, str2, tmp1, tmp2, result) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8956 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8957 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8958
a61af66fc99e Initial load
duke
parents:
diff changeset
8959 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
8960 //------------Bytes reverse--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8961
a61af66fc99e Initial load
duke
parents:
diff changeset
8962 instruct bytes_reverse_int(iRegI dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8963 match(Set dst (ReverseBytesI src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8964 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8965
a61af66fc99e Initial load
duke
parents:
diff changeset
8966 // Op cost is artificially doubled to make sure that load or store
a61af66fc99e Initial load
duke
parents:
diff changeset
8967 // instructions are preferred over this one which requires a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
8968 // onto a stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
8969 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8970 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8971 format %{ "LDUWA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8972 opcode(Assembler::lduwa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
8973 ins_encode( form3_mem_reg_little(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8974 ins_pipe( iload_mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
8975 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8976
a61af66fc99e Initial load
duke
parents:
diff changeset
8977 instruct bytes_reverse_long(iRegL dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8978 match(Set dst (ReverseBytesL src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8979 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8980
a61af66fc99e Initial load
duke
parents:
diff changeset
8981 // Op cost is artificially doubled to make sure that load or store
a61af66fc99e Initial load
duke
parents:
diff changeset
8982 // instructions are preferred over this one which requires a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
8983 // onto a stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
8984 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8985 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8986 format %{ "LDXA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8987
a61af66fc99e Initial load
duke
parents:
diff changeset
8988 opcode(Assembler::ldxa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
8989 ins_encode( form3_mem_reg_little(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8990 ins_pipe( iload_mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
8991 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8992
a61af66fc99e Initial load
duke
parents:
diff changeset
8993 // Load Integer reversed byte order
a61af66fc99e Initial load
duke
parents:
diff changeset
8994 instruct loadI_reversed(iRegI dst, memory src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8995 match(Set dst (ReverseBytesI (LoadI src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8996
a61af66fc99e Initial load
duke
parents:
diff changeset
8997 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8998 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8999 format %{ "LDUWA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9000
a61af66fc99e Initial load
duke
parents:
diff changeset
9001 opcode(Assembler::lduwa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9002 ins_encode( form3_mem_reg_little( src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9003 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
9004 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9005
a61af66fc99e Initial load
duke
parents:
diff changeset
9006 // Load Long - aligned and reversed
a61af66fc99e Initial load
duke
parents:
diff changeset
9007 instruct loadL_reversed(iRegL dst, memory src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9008 match(Set dst (ReverseBytesL (LoadL src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9009
a61af66fc99e Initial load
duke
parents:
diff changeset
9010 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9011 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9012 format %{ "LDXA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9013
a61af66fc99e Initial load
duke
parents:
diff changeset
9014 opcode(Assembler::ldxa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9015 ins_encode( form3_mem_reg_little( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9016 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
9017 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9018
a61af66fc99e Initial load
duke
parents:
diff changeset
9019 // Store Integer reversed byte order
a61af66fc99e Initial load
duke
parents:
diff changeset
9020 instruct storeI_reversed(memory dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9021 match(Set dst (StoreI dst (ReverseBytesI src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9022
a61af66fc99e Initial load
duke
parents:
diff changeset
9023 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9024 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9025 format %{ "STWA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9026
a61af66fc99e Initial load
duke
parents:
diff changeset
9027 opcode(Assembler::stwa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9028 ins_encode( form3_mem_reg_little( dst, src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9029 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9030 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9031
a61af66fc99e Initial load
duke
parents:
diff changeset
9032 // Store Long reversed byte order
a61af66fc99e Initial load
duke
parents:
diff changeset
9033 instruct storeL_reversed(memory dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9034 match(Set dst (StoreL dst (ReverseBytesL src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9035
a61af66fc99e Initial load
duke
parents:
diff changeset
9036 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9037 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9038 format %{ "STXA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9039
a61af66fc99e Initial load
duke
parents:
diff changeset
9040 opcode(Assembler::stxa_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9041 ins_encode( form3_mem_reg_little( dst, src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9042 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9043 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9044
a61af66fc99e Initial load
duke
parents:
diff changeset
9045 //----------PEEPHOLE RULES-----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9046 // These must follow all instruction definitions as they use the names
a61af66fc99e Initial load
duke
parents:
diff changeset
9047 // defined in the instructions definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
9048 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9049 // peepmatch ( root_instr_name [preceeding_instruction]* );
a61af66fc99e Initial load
duke
parents:
diff changeset
9050 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9051 // peepconstraint %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9052 // (instruction_number.operand_name relational_op instruction_number.operand_name
a61af66fc99e Initial load
duke
parents:
diff changeset
9053 // [, ...] );
a61af66fc99e Initial load
duke
parents:
diff changeset
9054 // // instruction numbers are zero-based using left to right order in peepmatch
a61af66fc99e Initial load
duke
parents:
diff changeset
9055 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9056 // peepreplace ( instr_name ( [instruction_number.operand_name]* ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9057 // // provide an instruction_number.operand_name for each operand that appears
a61af66fc99e Initial load
duke
parents:
diff changeset
9058 // // in the replacement instruction's match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
9059 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9060 // ---------VM FLAGS---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9061 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9062 // All peephole optimizations can be turned off using -XX:-OptoPeephole
a61af66fc99e Initial load
duke
parents:
diff changeset
9063 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9064 // Each peephole rule is given an identifying number starting with zero and
a61af66fc99e Initial load
duke
parents:
diff changeset
9065 // increasing by one in the order seen by the parser. An individual peephole
a61af66fc99e Initial load
duke
parents:
diff changeset
9066 // can be enabled, and all others disabled, by using -XX:OptoPeepholeAt=#
a61af66fc99e Initial load
duke
parents:
diff changeset
9067 // on the command-line.
a61af66fc99e Initial load
duke
parents:
diff changeset
9068 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9069 // ---------CURRENT LIMITATIONS----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9070 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9071 // Only match adjacent instructions in same basic block
a61af66fc99e Initial load
duke
parents:
diff changeset
9072 // Only equality constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
9073 // Only constraints between operands, not (0.dest_reg == EAX_enc)
a61af66fc99e Initial load
duke
parents:
diff changeset
9074 // Only one replacement instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
9075 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9076 // ---------EXAMPLE----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9077 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9078 // // pertinent parts of existing instructions in architecture description
a61af66fc99e Initial load
duke
parents:
diff changeset
9079 // instruct movI(eRegI dst, eRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9080 // match(Set dst (CopyI src));
a61af66fc99e Initial load
duke
parents:
diff changeset
9081 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9082 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9083 // instruct incI_eReg(eRegI dst, immI1 src, eFlagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9084 // match(Set dst (AddI dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
9085 // effect(KILL cr);
a61af66fc99e Initial load
duke
parents:
diff changeset
9086 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9087 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9088 // // Change (inc mov) to lea
a61af66fc99e Initial load
duke
parents:
diff changeset
9089 // peephole %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9090 // // increment preceeded by register-register move
a61af66fc99e Initial load
duke
parents:
diff changeset
9091 // peepmatch ( incI_eReg movI );
a61af66fc99e Initial load
duke
parents:
diff changeset
9092 // // require that the destination register of the increment
a61af66fc99e Initial load
duke
parents:
diff changeset
9093 // // match the destination register of the move
a61af66fc99e Initial load
duke
parents:
diff changeset
9094 // peepconstraint ( 0.dst == 1.dst );
a61af66fc99e Initial load
duke
parents:
diff changeset
9095 // // construct a replacement instruction that sets
a61af66fc99e Initial load
duke
parents:
diff changeset
9096 // // the destination to ( move's source register + one )
a61af66fc99e Initial load
duke
parents:
diff changeset
9097 // peepreplace ( incI_eReg_immI1( 0.dst 1.src 0.src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9098 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9099 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9100
a61af66fc99e Initial load
duke
parents:
diff changeset
9101 // // Change load of spilled value to only a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
9102 // instruct storeI(memory mem, eRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9103 // match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
9104 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9105 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9106 // instruct loadI(eRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9107 // match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
9108 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9109 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9110 // peephole %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9111 // peepmatch ( loadI storeI );
a61af66fc99e Initial load
duke
parents:
diff changeset
9112 // peepconstraint ( 1.src == 0.dst, 1.mem == 0.mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
9113 // peepreplace ( storeI( 1.mem 1.mem 1.src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9114 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9115
a61af66fc99e Initial load
duke
parents:
diff changeset
9116 //----------SMARTSPILL RULES---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9117 // These must follow all instruction definitions as they use the names
a61af66fc99e Initial load
duke
parents:
diff changeset
9118 // defined in the instructions definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
9119 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9120 // SPARC will probably not have any of these rules due to RISC instruction set.
a61af66fc99e Initial load
duke
parents:
diff changeset
9121
a61af66fc99e Initial load
duke
parents:
diff changeset
9122 //----------PIPELINE-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9123 // Rules which define the behavior of the target architectures pipeline.