annotate src/cpu/sparc/vm/sparc.ad @ 17795:a9becfeecd1b

Merge
author kvn
date Wed, 22 Jan 2014 17:42:23 -0800
parents 50fdb38839eb 9ecf408d4568
children f040cf9fc9c0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 //
9154
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
2 // Copyright (c) 1998, 2013, Oracle and/or its affiliates. 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 //
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
diff changeset
19 // Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
diff changeset
20 // or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
diff changeset
21 // questions.
0
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().
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
192 // 255 is a flag meaning "don't go here".
0
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.
1007
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
196 reg_def R_D32 (SOC, SOC, Op_RegD, 1, F32->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
197 reg_def R_D32x(SOC, SOC, Op_RegD,255, F32->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
198 reg_def R_D34 (SOC, SOC, Op_RegD, 3, F34->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
199 reg_def R_D34x(SOC, SOC, Op_RegD,255, F34->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
200 reg_def R_D36 (SOC, SOC, Op_RegD, 5, F36->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
201 reg_def R_D36x(SOC, SOC, Op_RegD,255, F36->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
202 reg_def R_D38 (SOC, SOC, Op_RegD, 7, F38->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
203 reg_def R_D38x(SOC, SOC, Op_RegD,255, F38->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
204 reg_def R_D40 (SOC, SOC, Op_RegD, 9, F40->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
205 reg_def R_D40x(SOC, SOC, Op_RegD,255, F40->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
206 reg_def R_D42 (SOC, SOC, Op_RegD, 11, F42->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
207 reg_def R_D42x(SOC, SOC, Op_RegD,255, F42->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
208 reg_def R_D44 (SOC, SOC, Op_RegD, 13, F44->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
209 reg_def R_D44x(SOC, SOC, Op_RegD,255, F44->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
210 reg_def R_D46 (SOC, SOC, Op_RegD, 15, F46->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
211 reg_def R_D46x(SOC, SOC, Op_RegD,255, F46->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
212 reg_def R_D48 (SOC, SOC, Op_RegD, 17, F48->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
213 reg_def R_D48x(SOC, SOC, Op_RegD,255, F48->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
214 reg_def R_D50 (SOC, SOC, Op_RegD, 19, F50->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
215 reg_def R_D50x(SOC, SOC, Op_RegD,255, F50->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
216 reg_def R_D52 (SOC, SOC, Op_RegD, 21, F52->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
217 reg_def R_D52x(SOC, SOC, Op_RegD,255, F52->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
218 reg_def R_D54 (SOC, SOC, Op_RegD, 23, F54->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
219 reg_def R_D54x(SOC, SOC, Op_RegD,255, F54->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
220 reg_def R_D56 (SOC, SOC, Op_RegD, 25, F56->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
221 reg_def R_D56x(SOC, SOC, Op_RegD,255, F56->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
222 reg_def R_D58 (SOC, SOC, Op_RegD, 27, F58->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
223 reg_def R_D58x(SOC, SOC, Op_RegD,255, F58->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
224 reg_def R_D60 (SOC, SOC, Op_RegD, 29, F60->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
225 reg_def R_D60x(SOC, SOC, Op_RegD,255, F60->as_VMReg()->next());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
226 reg_def R_D62 (SOC, SOC, Op_RegD, 31, F62->as_VMReg());
1ce3281a8e93 6880034: SIGBUS during deoptimisation at a safepoint on 64bit-SPARC
kvn
parents: 986
diff changeset
227 reg_def R_D62x(SOC, SOC, Op_RegD,255, F62->as_VMReg()->next());
0
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,
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
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);
0
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
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
463 extern bool use_block_zeroing(Node* count);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
464
0
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // Macros to extract hi & lo halves from a long pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // G0 is not part of any long pair, so assert on that.
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
467 // Prevents accidentally using G1 instead of G0.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
468 #define LONG_HI_REG(x) (x)
a61af66fc99e Initial load
duke
parents:
diff changeset
469 #define LONG_LO_REG(x) (x)
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 source %{
a61af66fc99e Initial load
duke
parents:
diff changeset
474 #define __ _masm.
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // tertiary op of a LoadP or StoreP encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
477 #define REGP_OP true
a61af66fc99e Initial load
duke
parents:
diff changeset
478
a61af66fc99e Initial load
duke
parents:
diff changeset
479 static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
481 static Register reg_to_register_object(int register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // Used by the DFA in dfa_sparc.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // Check for being able to use a V9 branch-on-register. Requires a
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // compare-vs-zero, equal/not-equal, of a value which was zero- or sign-
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // extended. Doesn't work following an integer ADD, for example, because of
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // overflow (-1 incremented yields 0 plus a carry in the high-order word). On
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // 32-bit V9 systems, interrupts currently blow away the high-order 32 bits and
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // replace them with zero, which could become sign-extension in a different OS
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // release. There's no obvious reason why an interrupt will ever fill these
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // bits with non-zero junk (the registers are reloaded with standard LD
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // instructions which either zero-fill or sign-fill).
a61af66fc99e Initial load
duke
parents:
diff changeset
493 bool can_branch_register( Node *bol, Node *cmp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if( !BranchOnRegister ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
495 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
496 if( cmp->Opcode() == Op_CmpP )
a61af66fc99e Initial load
duke
parents:
diff changeset
497 return true; // No problems with pointer compares
a61af66fc99e Initial load
duke
parents:
diff changeset
498 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
499 if( cmp->Opcode() == Op_CmpL )
a61af66fc99e Initial load
duke
parents:
diff changeset
500 return true; // No problems with long compares
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 if( !SparcV9RegsHiBitsZero ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 if( bol->as_Bool()->_test._test != BoolTest::ne &&
a61af66fc99e Initial load
duke
parents:
diff changeset
504 bol->as_Bool()->_test._test != BoolTest::eq )
a61af66fc99e Initial load
duke
parents:
diff changeset
505 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // Check for comparing against a 'safe' value. Any operation which
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // clears out the high word is safe. Thus, loads and certain shifts
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // are safe, as are non-negative constants. Any operation which
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // preserves zero bits in the high word is safe as long as each of its
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // inputs are safe. Thus, phis and bitwise booleans are safe if their
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // inputs are safe. At present, the only important case to recognize
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // seems to be loads. Constants should fold away, and shifts &
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // logicals can use the 'cc' forms.
a61af66fc99e Initial load
duke
parents:
diff changeset
515 Node *x = cmp->in(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
516 if( x->is_Load() ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if( x->is_Phi() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 for( uint i = 1; i < x->req(); i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
519 if( !x->in(i)->is_Load() )
a61af66fc99e Initial load
duke
parents:
diff changeset
520 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
526 bool use_block_zeroing(Node* count) {
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
527 // Use BIS for zeroing if count is not constant
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
528 // or it is >= BlockZeroingLowLimit.
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
529 return UseBlockZeroing && (count->find_intptr_t_con(BlockZeroingLowLimit) >= BlockZeroingLowLimit);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
530 }
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
531
0
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // ****************************************************************************
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 // REQUIRED FUNCTIONALITY
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // !!!!! Special hack to get all type of calls to specify the byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // from the start of the call to the point where the return address
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // will point.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // The "return address" is the address of the call instruction, plus 8.
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 int MachCallStaticJavaNode::ret_addr_offset() {
1567
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
542 int offset = NativeCall::instruction_size; // call; delay slot
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
543 if (_method_handle_invoke)
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
544 offset += 4; // restore SP
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
545 return offset;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 int MachCallDynamicJavaNode::ret_addr_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
549 int vtable_index = this->_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
550 if (vtable_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
551 // must be invalid_vtable_index, not nonvirtual_vtable_index
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
552 assert(vtable_index == Method::invalid_vtable_index, "correct sentinel value");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
553 return (NativeMovConstReg::instruction_size +
a61af66fc99e Initial load
duke
parents:
diff changeset
554 NativeCall::instruction_size); // sethi; setlo; call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
555 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
557 int entry_offset = InstanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
558 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
559 int klass_load_size;
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
560 if (UseCompressedClassPointers) {
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 624
diff changeset
561 assert(Universe::heap() != NULL, "java heap should be initialized");
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 10997
diff changeset
562 klass_load_size = MacroAssembler::instr_size_for_decode_klass_not_null() + 1*BytesPerInstWord;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
563 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
564 klass_load_size = 1*BytesPerInstWord;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
565 }
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
566 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
567 return klass_load_size +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
568 (2*BytesPerInstWord + // ld_ptr, ld_ptr
0
a61af66fc99e Initial load
duke
parents:
diff changeset
569 NativeCall::instruction_size); // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
570 } else {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
571 return klass_load_size +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
572 (4*BytesPerInstWord + // set_hi, set, ld_ptr, ld_ptr
0
a61af66fc99e Initial load
duke
parents:
diff changeset
573 NativeCall::instruction_size); // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 int MachCallRuntimeNode::ret_addr_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 #ifdef _LP64
2121
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
580 if (MacroAssembler::is_far_target(entry_point())) {
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
581 return NativeFarCall::instruction_size;
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
582 } else {
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
583 return NativeCall::instruction_size;
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
584 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
586 return NativeCall::instruction_size; // call; delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
587 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // Indicate if the safepoint node needs the polling page as an input.
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // Since Sparc does not have absolute addressing, it does.
a61af66fc99e Initial load
duke
parents:
diff changeset
592 bool SafePointNode::needs_polling_address_input() {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // emit an interrupt that is caught by the debugger (for debugging compiler)
a61af66fc99e Initial load
duke
parents:
diff changeset
597 void emit_break(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
598 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
599 __ breakpoint_trap();
a61af66fc99e Initial load
duke
parents:
diff changeset
600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
603 void MachBreakpointNode::format( PhaseRegAlloc *, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 st->print("TA");
a61af66fc99e Initial load
duke
parents:
diff changeset
605 }
a61af66fc99e Initial load
duke
parents:
diff changeset
606 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 void MachBreakpointNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 emit_break(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611
a61af66fc99e Initial load
duke
parents:
diff changeset
612 uint MachBreakpointNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
613 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // Traceable jump
a61af66fc99e Initial load
duke
parents:
diff changeset
617 void emit_jmpl(CodeBuffer &cbuf, int jump_target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 Register rdest = reg_to_register_object(jump_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 __ JMP(rdest, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
621 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // Traceable jump and set exception pc
a61af66fc99e Initial load
duke
parents:
diff changeset
625 void emit_jmpl_set_exception_pc(CodeBuffer &cbuf, int jump_target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 Register rdest = reg_to_register_object(jump_target);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 __ JMP(rdest, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 __ delayed()->add(O7, frame::pc_return_offset, Oissuing_pc );
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 void emit_nop(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
634 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 void emit_illtrap(CodeBuffer &cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
639 __ illtrap(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 intptr_t get_offset_from_base(const MachNode* n, const TypePtr* atype, int disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 assert(n->rule() != loadUB_rule, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 intptr_t offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
647 const TypePtr *adr_type = TYPE_PTR_SENTINAL; // Check for base==RegI, disp==immP
a61af66fc99e Initial load
duke
parents:
diff changeset
648 const Node* addr = n->get_base_and_disp(offset, adr_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 assert(adr_type == (const TypePtr*)-1, "VerifyOops: no support for sparc operands with base==RegI, disp==immP");
a61af66fc99e Initial load
duke
parents:
diff changeset
650 assert(addr != NULL && addr != (Node*)-1, "invalid addr");
a61af66fc99e Initial load
duke
parents:
diff changeset
651 assert(addr->bottom_type()->isa_oopptr() == atype, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
652 atype = atype->add_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
653 assert(disp32 == offset, "wrong disp32");
a61af66fc99e Initial load
duke
parents:
diff changeset
654 return atype->_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658 intptr_t get_offset_from_base_2(const MachNode* n, const TypePtr* atype, int disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
659 assert(n->rule() != loadUB_rule, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 intptr_t offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 Node* addr = n->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
663 assert(addr->bottom_type()->isa_oopptr() == atype, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
664 if (addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 Node* a = addr->in(2/*AddPNode::Address*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
666 Node* o = addr->in(3/*AddPNode::Offset*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
667 offset = o->is_Con() ? o->bottom_type()->is_intptr_t()->get_con() : Type::OffsetBot;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 atype = a->bottom_type()->is_ptr()->add_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 assert(atype->isa_oop_ptr(), "still an oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
671 offset = atype->is_ptr()->_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
672 if (offset != Type::OffsetBot) offset += disp32;
a61af66fc99e Initial load
duke
parents:
diff changeset
673 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
676 static inline jdouble replicate_immI(int con, int count, int width) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
677 // Load a constant replicated "count" times with width "width"
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
678 assert(count*width == 8 && width <= 4, "sanity");
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
679 int bit_width = width * 8;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
680 jlong val = con;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
681 val &= (((jlong) 1) << bit_width) - 1; // mask off sign bits
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
682 for (int i = 0; i < count - 1; i++) {
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
683 val |= (val << bit_width);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
684 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
685 jdouble dval = *((jdouble*) &val); // coerce to double type
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
686 return dval;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
687 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
688
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
689 static inline jdouble replicate_immF(float con) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
690 // Replicate float con 2 times and pack into vector.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
691 int val = *((int*)&con);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
692 jlong lval = val;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
693 lval = (lval << 32) | (lval & 0xFFFFFFFFl);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
694 jdouble dval = *((jdouble*) &lval); // coerce to double type
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
695 return dval;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
696 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
697
0
a61af66fc99e Initial load
duke
parents:
diff changeset
698 // Standard Sparc opcode form2 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
699 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
700 f0 &= (1<<19)-1; // Mask displacement to 19 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
701 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
702 (f29 << 29) |
a61af66fc99e Initial load
duke
parents:
diff changeset
703 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
704 (f22 << 22) |
a61af66fc99e Initial load
duke
parents:
diff changeset
705 (f20 << 20) |
a61af66fc99e Initial load
duke
parents:
diff changeset
706 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
707 (f0 << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
708 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
709 }
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // Standard Sparc opcode form2 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
712 static inline void emit2_22(CodeBuffer &cbuf, int f30, int f25, int f22, int f0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
713 f0 >>= 10; // Drop 10 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
714 f0 &= (1<<22)-1; // Mask displacement to 22 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
715 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
716 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
717 (f22 << 22) |
a61af66fc99e Initial load
duke
parents:
diff changeset
718 (f0 << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
719 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // Standard Sparc opcode form3 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
723 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
724 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
725 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
726 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
727 (f14 << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
728 (f5 << 5) |
a61af66fc99e Initial load
duke
parents:
diff changeset
729 (f0 << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
730 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // Standard Sparc opcode form3 field breakdown
a61af66fc99e Initial load
duke
parents:
diff changeset
734 static inline void emit3_simm13(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm13 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
735 simm13 &= (1<<13)-1; // Mask to 13 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
736 int op = (f30 << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
737 (f25 << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
738 (f19 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
739 (f14 << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
740 (1 << 13) | // bit to indicate immediate-mode
a61af66fc99e Initial load
duke
parents:
diff changeset
741 (simm13<<0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
742 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 static inline void emit3_simm10(CodeBuffer &cbuf, int f30, int f25, int f19, int f14, int simm10 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
746 simm10 &= (1<<10)-1; // Mask to 10 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
747 emit3_simm13(cbuf,f30,f25,f19,f14,simm10);
a61af66fc99e Initial load
duke
parents:
diff changeset
748 }
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // Helper function for VerifyOops in emit_form3_mem_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
752 void verify_oops_warning(const MachNode *n, int ideal_op, int mem_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
753 warning("VerifyOops encountered unexpected instruction:");
a61af66fc99e Initial load
duke
parents:
diff changeset
754 n->dump(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
755 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
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
758
a61af66fc99e Initial load
duke
parents:
diff changeset
759
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
760 void emit_form3_mem_reg(CodeBuffer &cbuf, PhaseRegAlloc* ra, const MachNode* n, int primary, int tertiary,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
761 int src1_enc, int disp32, int src2_enc, int dst_enc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // The following code implements the +VerifyOops feature.
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // It verifies oop values which are loaded into or stored out of
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // the current method activation. +VerifyOops complements techniques
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // like ScavengeALot, because it eagerly inspects oops in transit,
a61af66fc99e Initial load
duke
parents:
diff changeset
768 // as they enter or leave the stack, as opposed to ScavengeALot,
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // which inspects oops "at rest", in the stack or heap, at safepoints.
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // For this reason, +VerifyOops can sometimes detect bugs very close
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // to their point of creation. It can also serve as a cross-check
a61af66fc99e Initial load
duke
parents:
diff changeset
772 // on the validity of oop maps, when used toegether with ScavengeALot.
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // It would be good to verify oops at other points, especially
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // when an oop is used as a base pointer for a load or store.
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // This is presently difficult, because it is hard to know when
a61af66fc99e Initial load
duke
parents:
diff changeset
777 // a base address is biased or not. (If we had such information,
a61af66fc99e Initial load
duke
parents:
diff changeset
778 // it would be easy and useful to make a two-argument version of
a61af66fc99e Initial load
duke
parents:
diff changeset
779 // verify_oop which unbiases the base, and performs verification.)
a61af66fc99e Initial load
duke
parents:
diff changeset
780
a61af66fc99e Initial load
duke
parents:
diff changeset
781 assert((uint)tertiary == 0xFFFFFFFF || tertiary == REGP_OP, "valid tertiary");
a61af66fc99e Initial load
duke
parents:
diff changeset
782 bool is_verified_oop_base = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
783 bool is_verified_oop_load = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
784 bool is_verified_oop_store = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
785 int tmp_enc = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
786 if (VerifyOops && src1_enc != R_SP_enc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 // classify the op, mainly for an assert check
a61af66fc99e Initial load
duke
parents:
diff changeset
788 int st_op = 0, ld_op = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
789 switch (primary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
790 case Assembler::stb_op3: st_op = Op_StoreB; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 case Assembler::sth_op3: st_op = Op_StoreC; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 case Assembler::stx_op3: // may become StoreP or stay StoreI or StoreD0
a61af66fc99e Initial load
duke
parents:
diff changeset
793 case Assembler::stw_op3: st_op = Op_StoreI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
794 case Assembler::std_op3: st_op = Op_StoreL; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
795 case Assembler::stf_op3: st_op = Op_StoreF; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
796 case Assembler::stdf_op3: st_op = Op_StoreD; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 case Assembler::ldsb_op3: ld_op = Op_LoadB; break;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
799 case Assembler::ldub_op3: ld_op = Op_LoadUB; break;
558
3b5ac9e7e6ea 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 551
diff changeset
800 case Assembler::lduh_op3: ld_op = Op_LoadUS; break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
801 case Assembler::ldsh_op3: ld_op = Op_LoadS; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
802 case Assembler::ldx_op3: // may become LoadP or stay LoadI
a61af66fc99e Initial load
duke
parents:
diff changeset
803 case Assembler::ldsw_op3: // may become LoadP or stay LoadI
a61af66fc99e Initial load
duke
parents:
diff changeset
804 case Assembler::lduw_op3: ld_op = Op_LoadI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
805 case Assembler::ldd_op3: ld_op = Op_LoadL; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
806 case Assembler::ldf_op3: ld_op = Op_LoadF; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
807 case Assembler::lddf_op3: ld_op = Op_LoadD; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 case Assembler::prefetch_op3: ld_op = Op_LoadI; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
811 }
a61af66fc99e Initial load
duke
parents:
diff changeset
812 if (tertiary == REGP_OP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
813 if (st_op == Op_StoreI) st_op = Op_StoreP;
a61af66fc99e Initial load
duke
parents:
diff changeset
814 else if (ld_op == Op_LoadI) ld_op = Op_LoadP;
a61af66fc99e Initial load
duke
parents:
diff changeset
815 else ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
816 if (st_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // a store
a61af66fc99e Initial load
duke
parents:
diff changeset
818 // inputs are (0:control, 1:memory, 2:address, 3:value)
a61af66fc99e Initial load
duke
parents:
diff changeset
819 Node* n2 = n->in(3);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 if (n2 != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
821 const Type* t = n2->bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
822 is_verified_oop_store = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
825 // a load
a61af66fc99e Initial load
duke
parents:
diff changeset
826 const Type* t = n->bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
827 is_verified_oop_load = t->isa_oop_ptr() ? (t->is_ptr()->_offset==0) : false;
a61af66fc99e Initial load
duke
parents:
diff changeset
828 }
a61af66fc99e Initial load
duke
parents:
diff changeset
829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 if (ld_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // a Load
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // inputs are (0:control, 1:memory, 2:address)
a61af66fc99e Initial load
duke
parents:
diff changeset
834 if (!(n->ideal_Opcode()==ld_op) && // Following are special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
835 !(n->ideal_Opcode()==Op_LoadPLocked && ld_op==Op_LoadP) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
836 !(n->ideal_Opcode()==Op_LoadI && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
837 !(n->ideal_Opcode()==Op_LoadF && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
838 !(n->ideal_Opcode()==Op_LoadRange && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
839 !(n->ideal_Opcode()==Op_LoadKlass && ld_op==Op_LoadP) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
840 !(n->ideal_Opcode()==Op_LoadL && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
841 !(n->ideal_Opcode()==Op_LoadL_unaligned && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
842 !(n->ideal_Opcode()==Op_LoadD_unaligned && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
843 !(n->ideal_Opcode()==Op_ConvI2F && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
844 !(n->ideal_Opcode()==Op_ConvI2D && ld_op==Op_LoadF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
845 !(n->ideal_Opcode()==Op_PrefetchRead && ld_op==Op_LoadI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
846 !(n->ideal_Opcode()==Op_PrefetchWrite && ld_op==Op_LoadI) &&
3898
a64d352d1118 7085137: -XX:+VerifyOops is broken
kvn
parents: 3892
diff changeset
847 !(n->ideal_Opcode()==Op_PrefetchAllocation && ld_op==Op_LoadI) &&
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
848 !(n->ideal_Opcode()==Op_LoadVector && ld_op==Op_LoadD) &&
0
a61af66fc99e Initial load
duke
parents:
diff changeset
849 !(n->rule() == loadUB_rule)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
850 verify_oops_warning(n, n->ideal_Opcode(), ld_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
851 }
a61af66fc99e Initial load
duke
parents:
diff changeset
852 } else if (st_op) {
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // a Store
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // inputs are (0:control, 1:memory, 2:address, 3:value)
a61af66fc99e Initial load
duke
parents:
diff changeset
855 if (!(n->ideal_Opcode()==st_op) && // Following are special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
856 !(n->ideal_Opcode()==Op_StoreCM && st_op==Op_StoreB) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
857 !(n->ideal_Opcode()==Op_StoreI && st_op==Op_StoreF) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
858 !(n->ideal_Opcode()==Op_StoreF && st_op==Op_StoreI) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
859 !(n->ideal_Opcode()==Op_StoreL && st_op==Op_StoreI) &&
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
860 !(n->ideal_Opcode()==Op_StoreVector && st_op==Op_StoreD) &&
0
a61af66fc99e Initial load
duke
parents:
diff changeset
861 !(n->ideal_Opcode()==Op_StoreD && st_op==Op_StoreI && n->rule() == storeD0_rule)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
862 verify_oops_warning(n, n->ideal_Opcode(), st_op);
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 if (src2_enc == R_G0_enc && n->rule() != loadUB_rule && n->ideal_Opcode() != Op_StoreCM ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
867 Node* addr = n->in(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
868 if (!(addr->is_Mach() && addr->as_Mach()->ideal_Opcode() == Op_AddP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 const TypeOopPtr* atype = addr->bottom_type()->isa_instptr(); // %%% oopptr?
a61af66fc99e Initial load
duke
parents:
diff changeset
870 if (atype != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
871 intptr_t offset = get_offset_from_base(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
872 intptr_t offset_2 = get_offset_from_base_2(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
873 if (offset != offset_2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 get_offset_from_base(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
875 get_offset_from_base_2(n, atype, disp32);
a61af66fc99e Initial load
duke
parents:
diff changeset
876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
877 assert(offset == offset_2, "different offsets");
a61af66fc99e Initial load
duke
parents:
diff changeset
878 if (offset == disp32) {
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // we now know that src1 is a true oop pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
880 is_verified_oop_base = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
881 if (ld_op && src1_enc == dst_enc && ld_op != Op_LoadF && ld_op != Op_LoadD) {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 if( primary == Assembler::ldd_op3 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
883 is_verified_oop_base = false; // Cannot 'ldd' into O7
a61af66fc99e Initial load
duke
parents:
diff changeset
884 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
885 tmp_enc = dst_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
886 dst_enc = R_O7_enc; // Load into O7; preserve source oop
a61af66fc99e Initial load
duke
parents:
diff changeset
887 assert(src1_enc != dst_enc, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
888 }
a61af66fc99e Initial load
duke
parents:
diff changeset
889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
891 if (st_op && (( offset == oopDesc::klass_offset_in_bytes())
a61af66fc99e Initial load
duke
parents:
diff changeset
892 || offset == oopDesc::mark_offset_in_bytes())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
893 // loading the mark should not be allowed either, but
a61af66fc99e Initial load
duke
parents:
diff changeset
894 // we don't check this since it conflicts with InlineObjectHash
a61af66fc99e Initial load
duke
parents:
diff changeset
895 // usage of LoadINode to get the mark. We could keep the
a61af66fc99e Initial load
duke
parents:
diff changeset
896 // check if we create a new LoadMarkNode
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // but do not verify the object before its header is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
898 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
899 }
a61af66fc99e Initial load
duke
parents:
diff changeset
900 }
a61af66fc99e Initial load
duke
parents:
diff changeset
901 }
a61af66fc99e Initial load
duke
parents:
diff changeset
902 }
a61af66fc99e Initial load
duke
parents:
diff changeset
903 }
a61af66fc99e Initial load
duke
parents:
diff changeset
904 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
905
a61af66fc99e Initial load
duke
parents:
diff changeset
906 uint instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
907 instr = (Assembler::ldst_op << 30)
a61af66fc99e Initial load
duke
parents:
diff changeset
908 | (dst_enc << 25)
a61af66fc99e Initial load
duke
parents:
diff changeset
909 | (primary << 19)
a61af66fc99e Initial load
duke
parents:
diff changeset
910 | (src1_enc << 14);
a61af66fc99e Initial load
duke
parents:
diff changeset
911
a61af66fc99e Initial load
duke
parents:
diff changeset
912 uint index = src2_enc;
a61af66fc99e Initial load
duke
parents:
diff changeset
913 int disp = disp32;
a61af66fc99e Initial load
duke
parents:
diff changeset
914
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
915 if (src1_enc == R_SP_enc || src1_enc == R_FP_enc) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
916 disp += STACK_BIAS;
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
917 // Quick fix for JDK-8029668: check that stack offset fits, bailout if not
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
918 if (!Assembler::is_simm13(disp)) {
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
919 ra->C->record_method_not_compilable("unable to handle large constant offsets");
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
920 return;
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
921 }
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
922 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
923
a61af66fc99e Initial load
duke
parents:
diff changeset
924 // We should have a compiler bailout here rather than a guarantee.
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // Better yet would be some mechanism to handle variable-size matches correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
926 guarantee(Assembler::is_simm13(disp), "Do not match large constant offsets" );
a61af66fc99e Initial load
duke
parents:
diff changeset
927
a61af66fc99e Initial load
duke
parents:
diff changeset
928 if( disp == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // use reg-reg form
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // bit 13 is already zero
a61af66fc99e Initial load
duke
parents:
diff changeset
931 instr |= index;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 // use reg-imm form
a61af66fc99e Initial load
duke
parents:
diff changeset
934 instr |= 0x00002000; // set bit 13 to one
a61af66fc99e Initial load
duke
parents:
diff changeset
935 instr |= disp & 0x1FFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
936 }
a61af66fc99e Initial load
duke
parents:
diff changeset
937
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
938 cbuf.insts()->emit_int32(instr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
939
a61af66fc99e Initial load
duke
parents:
diff changeset
940 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
941 {
a61af66fc99e Initial load
duke
parents:
diff changeset
942 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
943 if (is_verified_oop_base) {
a61af66fc99e Initial load
duke
parents:
diff changeset
944 __ verify_oop(reg_to_register_object(src1_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
945 }
a61af66fc99e Initial load
duke
parents:
diff changeset
946 if (is_verified_oop_store) {
a61af66fc99e Initial load
duke
parents:
diff changeset
947 __ verify_oop(reg_to_register_object(dst_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
948 }
a61af66fc99e Initial load
duke
parents:
diff changeset
949 if (tmp_enc != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
950 __ mov(O7, reg_to_register_object(tmp_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
952 if (is_verified_oop_load) {
a61af66fc99e Initial load
duke
parents:
diff changeset
953 __ verify_oop(reg_to_register_object(dst_enc));
a61af66fc99e Initial load
duke
parents:
diff changeset
954 }
a61af66fc99e Initial load
duke
parents:
diff changeset
955 }
a61af66fc99e Initial load
duke
parents:
diff changeset
956 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958
2121
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
959 void emit_call_reloc(CodeBuffer &cbuf, intptr_t entry_point, relocInfo::relocType rtype, bool preserve_g2 = false) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // The method which records debug information at every safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // expects the call to be the first instruction in the snippet as
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // it creates a PcDesc structure which tracks the offset of a call
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // from the start of the codeBlob. This offset is computed as
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // code_end() - code_begin() of the code which has been emitted
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // so far.
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // In this particular case we have skirted around the problem by
a61af66fc99e Initial load
duke
parents:
diff changeset
967 // putting the "mov" instruction in the delay slot but the problem
a61af66fc99e Initial load
duke
parents:
diff changeset
968 // may bite us again at some other point and a cleaner/generic
a61af66fc99e Initial load
duke
parents:
diff changeset
969 // solution using relocations would be needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
970 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
971 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
972
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // We flush the current window just so that there is a valid stack copy
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // the fact that the current window becomes active again instantly is
a61af66fc99e Initial load
duke
parents:
diff changeset
975 // not a problem there is nothing live in it.
a61af66fc99e Initial load
duke
parents:
diff changeset
976
a61af66fc99e Initial load
duke
parents:
diff changeset
977 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
978 int startpos = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
979 #endif /* ASSERT */
a61af66fc99e Initial load
duke
parents:
diff changeset
980
2121
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
981 __ call((address)entry_point, rtype);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 if (preserve_g2) __ delayed()->mov(G2, L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
984 else __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
985
a61af66fc99e Initial load
duke
parents:
diff changeset
986 if (preserve_g2) __ mov(L7, G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
987
a61af66fc99e Initial load
duke
parents:
diff changeset
988 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
989 if (preserve_g2 && (VerifyCompiledCode || VerifyOops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
991 // Trash argument dump slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
992 __ set(0xb0b8ac0db0b8ac0d, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
993 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
994 __ stx(G1, SP, STACK_BIAS + 0x80);
a61af66fc99e Initial load
duke
parents:
diff changeset
995 __ stx(G1, SP, STACK_BIAS + 0x88);
a61af66fc99e Initial load
duke
parents:
diff changeset
996 __ stx(G1, SP, STACK_BIAS + 0x90);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 __ stx(G1, SP, STACK_BIAS + 0x98);
a61af66fc99e Initial load
duke
parents:
diff changeset
998 __ stx(G1, SP, STACK_BIAS + 0xA0);
a61af66fc99e Initial load
duke
parents:
diff changeset
999 __ stx(G1, SP, STACK_BIAS + 0xA8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 // this is also a native call, so smash the first 7 stack locations,
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 // and the various registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1003
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // Note: [SP+0x40] is sp[callee_aggregate_return_pointer_sp_offset],
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 // while [SP+0x44..0x58] are the argument dump slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 __ set((intptr_t)0xbaadf00d, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 __ sllx(G1, 32, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 __ or3(G1, G5, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 __ mov(G1, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 __ stx(G1, SP, 0x40);
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 __ stx(G1, SP, 0x48);
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 __ stx(G1, SP, 0x50);
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 __ stw(G1, SP, 0x58); // Do not trash [SP+0x5C] which is a usable spill slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 #endif /*ASSERT*/
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // REQUIRED FUNCTIONALITY for encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 void emit_lo(CodeBuffer &cbuf, int val) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 void emit_hi(CodeBuffer &cbuf, int val) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
a61af66fc99e Initial load
duke
parents:
diff changeset
1025
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 //=============================================================================
4121
db2e64ca2d5a 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 4114
diff changeset
1027 const RegMask& MachConstantBaseNode::_out_RegMask = PTR_REG_mask();
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1028
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1029 int Compile::ConstantTable::calculate_table_base_offset() const {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1030 if (UseRDPCForConstantTableBase) {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1031 // The table base offset might be less but then it fits into
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1032 // simm13 anyway and we are good (cf. MachConstantBaseNode::emit).
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1033 return Assembler::min_simm13();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1034 } else {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1035 int offset = -(size() / 2);
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1036 if (!Assembler::is_simm13(offset)) {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1037 offset = Assembler::min_simm13();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1038 }
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1039 return offset;
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1040 }
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1041 }
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1042
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1043 bool MachConstantBaseNode::requires_postalloc_expand() const { return false; }
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1044 void MachConstantBaseNode::postalloc_expand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_) {
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1045 ShouldNotReachHere();
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1046 }
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1047
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1048 void MachConstantBaseNode::emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1049 Compile* C = ra_->C;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1050 Compile::ConstantTable& constant_table = C->constant_table();
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1051 MacroAssembler _masm(&cbuf);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1052
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1053 Register r = as_Register(ra_->get_encode(this));
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1054 CodeSection* consts_section = __ code()->consts();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1055 int consts_size = consts_section->align_at_start(consts_section->size());
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1056 assert(constant_table.size() == consts_size, err_msg("must be: %d == %d", constant_table.size(), consts_size));
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1057
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1058 if (UseRDPCForConstantTableBase) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1059 // For the following RDPC logic to work correctly the consts
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1060 // section must be allocated right before the insts section. This
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1061 // assert checks for that. The layout and the SECT_* constants
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1062 // are defined in src/share/vm/asm/codeBuffer.hpp.
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1063 assert(CodeBuffer::SECT_CONSTS + 1 == CodeBuffer::SECT_INSTS, "must be");
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1064 int insts_offset = __ offset();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1065
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1066 // Layout:
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1067 //
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1068 // |----------- consts section ------------|----------- insts section -----------...
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1069 // |------ constant table -----|- padding -|------------------x----
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1070 // \ current PC (RDPC instruction)
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1071 // |<------------- consts_size ----------->|<- insts_offset ->|
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1072 // \ table base
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1073 // The table base offset is later added to the load displacement
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1074 // so it has to be negative.
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1075 int table_base_offset = -(consts_size + insts_offset);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1076 int disp;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1077
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1078 // If the displacement from the current PC to the constant table
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1079 // base fits into simm13 we set the constant table base to the
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1080 // current PC.
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1081 if (Assembler::is_simm13(table_base_offset)) {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1082 constant_table.set_table_base_offset(table_base_offset);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1083 disp = 0;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1084 } else {
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1085 // Otherwise we set the constant table base offset to the
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1086 // maximum negative displacement of load instructions to keep
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1087 // the disp as small as possible:
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1088 //
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1089 // |<------------- consts_size ----------->|<- insts_offset ->|
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1090 // |<--------- min_simm13 --------->|<-------- disp --------->|
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1091 // \ table base
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1092 table_base_offset = Assembler::min_simm13();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1093 constant_table.set_table_base_offset(table_base_offset);
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1094 disp = (consts_size + insts_offset) + table_base_offset;
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1095 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1096
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1097 __ rdpc(r);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1098
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1099 if (disp != 0) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1100 assert(r != O7, "need temporary");
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1101 __ sub(r, __ ensure_simm13_or_reg(disp, O7), r);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1102 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1103 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1104 else {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1105 // Materialize the constant table base.
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1106 address baseaddr = consts_section->start() + -(constant_table.table_base_offset());
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1107 RelocationHolder rspec = internal_word_Relocation::spec(baseaddr);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1108 AddressLiteral base(baseaddr, rspec);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1109 __ set(base, r);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1110 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1111 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1112
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1113 uint MachConstantBaseNode::size(PhaseRegAlloc*) const {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1114 if (UseRDPCForConstantTableBase) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1115 // This is really the worst case but generally it's only 1 instruction.
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
1116 return (1 /*rdpc*/ + 1 /*sub*/ + MacroAssembler::worst_case_insts_for_set()) * BytesPerInstWord;
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1117 } else {
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
1118 return MacroAssembler::worst_case_insts_for_set() * BytesPerInstWord;
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1119 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1120 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1121
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1122 #ifndef PRODUCT
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1123 void MachConstantBaseNode::format(PhaseRegAlloc* ra_, outputStream* st) const {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1124 char reg[128];
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1125 ra_->dump_register(this, reg);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1126 if (UseRDPCForConstantTableBase) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1127 st->print("RDPC %s\t! constant table base", reg);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1128 } else {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1129 st->print("SET &constanttable,%s\t! constant table base", reg);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1130 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1131 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1132 #endif
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1133
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1134
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
1135 //=============================================================================
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1136
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 void MachPrologNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 for (int i = 0; i < OptoPrologueNops; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 st->print_cr("NOP"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1144
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 if( VerifyThread ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 st->print_cr("Verify_Thread"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1148
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 size_t framesize = C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 // Calls to C2R adapters often do not accept exceptional returns.
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 // We require that their callers must bang for them. But be careful, because
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 // some VM calls (such as call site linkage) can use several kilobytes of
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // stack. But the stack safety zone should account for that.
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 // See bugs 4446381, 4468289, 4497237.
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 if (C->need_stack_bang(framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 st->print_cr("! stack bang"); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1159
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 if (Assembler::is_simm13(-framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 st->print ("SAVE R_SP,-%d,R_SP",framesize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 st->print_cr("SETHI R_SP,hi%%(-%d),R_G3",framesize); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 st->print_cr("ADD R_G3,lo%%(-%d),R_G3",framesize); st->print("\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 st->print ("SAVE R_SP,R_G3,R_SP");
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 void MachPrologNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1174
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 for (int i = 0; i < OptoPrologueNops; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1178
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1180
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 size_t framesize = C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 assert(framesize >= 16*wordSize, "must have room for reg. save area");
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 assert(framesize%(2*wordSize) == 0, "must preserve 2*wordSize alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
1184
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 // Calls to C2R adapters often do not accept exceptional returns.
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 // We require that their callers must bang for them. But be careful, because
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 // some VM calls (such as call site linkage) can use several kilobytes of
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 // stack. But the stack safety zone should account for that.
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 // See bugs 4446381, 4468289, 4497237.
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 if (C->need_stack_bang(framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 __ generate_stack_overflow_check(framesize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1193
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 if (Assembler::is_simm13(-framesize)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 __ save(SP, -framesize, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 __ sethi(-framesize & ~0x3ff, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 __ add(G3, -framesize & 0x3ff, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 __ save(SP, G3, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 C->set_frame_complete( __ offset() );
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1202
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1203 if (!UseRDPCForConstantTableBase && C->has_mach_constant_base_node()) {
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1204 // NOTE: We set the table base offset here because users might be
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1205 // emitted before MachConstantBaseNode.
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1206 Compile::ConstantTable& constant_table = C->constant_table();
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1207 constant_table.set_table_base_offset(constant_table.calculate_table_base_offset());
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1208 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 uint MachPrologNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1214
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 int MachPrologNode::reloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 return 10; // a large enough number
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1218
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 void MachEpilogNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1223
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 if( do_polling() && ra_->C->is_method_compilation() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 st->print("SETHI #PollAddr,L0\t! Load Polling address\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 st->print("LDX [L0],G0\t!Poll for Safepointing\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 st->print("LDUW [L0],G0\t!Poll for Safepointing\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 if( do_polling() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 st->print("RET\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1235
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 st->print("RESTORE");
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1239
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 void MachEpilogNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 Compile* C = ra_->C;
a61af66fc99e Initial load
duke
parents:
diff changeset
1243
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 __ verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1245
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 // If this does safepoint polling, then do it here
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 if( do_polling() && ra_->C->is_method_compilation() ) {
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
1248 AddressLiteral polling_page(os::get_polling_page());
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
1249 __ sethi(polling_page, L0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 __ relocate(relocInfo::poll_return_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 __ ld_ptr( L0, 0, G0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1253
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 // If this is a return, then stuff the restore in the delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 if( do_polling() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 __ ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 uint MachEpilogNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1266
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 int MachEpilogNode::reloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 return 16; // a large enough number
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1270
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 const Pipeline * MachEpilogNode::pipeline() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 return MachNode::pipeline_class();
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1274
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 int MachEpilogNode::safepoint_offset() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 assert( do_polling(), "no return for this epilog node");
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
1277 return MacroAssembler::insts_for_sethi(os::get_polling_page()) * BytesPerInstWord;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1279
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 // Figure out which register class each belongs in: rc_int, rc_float, rc_stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 enum RC { rc_bad, rc_int, rc_float, rc_stack };
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 static enum RC rc_class( OptoReg::Name reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 if( !OptoReg::is_valid(reg) ) return rc_bad;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 if (OptoReg::is_stack(reg)) return rc_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 VMReg r = OptoReg::as_VMReg(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 if (r->is_Register()) return rc_int;
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 assert(r->is_FloatRegister(), "must be");
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 return rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1292
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1293 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 ) {
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1294 if (cbuf) {
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1295 emit_form3_mem_reg(*cbuf, ra, mach, opcode, -1, R_SP_enc, offset, 0, Matcher::_regEncode[reg]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 #ifndef PRODUCT
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1298 else if (!do_size) {
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1299 if (size != 0) st->print("\n\t");
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1300 if (is_load) st->print("%s [R_SP + #%d],R_%s\t! spill",op_str,offset,OptoReg::regname(reg));
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
1301 else st->print("%s R_%s,[R_SP + #%d]\t! spill",op_str,OptoReg::regname(reg),offset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1306
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 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
1308 if( cbuf ) emit3( *cbuf, Assembler::arith_op, Matcher::_regEncode[dst], op1, 0, op2, Matcher::_regEncode[src] );
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 st->print("%s R_%s,R_%s\t! spill",op_str,OptoReg::regname(src),OptoReg::regname(dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1317
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 uint MachSpillCopyNode::implementation( CodeBuffer *cbuf,
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 PhaseRegAlloc *ra_,
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 bool do_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 outputStream* st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 // Get registers to move
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 OptoReg::Name src_second = ra_->get_reg_second(in(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 OptoReg::Name src_first = ra_->get_reg_first(in(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 OptoReg::Name dst_second = ra_->get_reg_second(this );
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 OptoReg::Name dst_first = ra_->get_reg_first(this );
a61af66fc99e Initial load
duke
parents:
diff changeset
1327
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 enum RC src_second_rc = rc_class(src_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 enum RC src_first_rc = rc_class(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 enum RC dst_second_rc = rc_class(dst_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 enum RC dst_first_rc = rc_class(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1332
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 assert( OptoReg::is_valid(src_first) && OptoReg::is_valid(dst_first), "must move at least 1 register" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1334
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 // Generate spill code!
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 int size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1337
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 if( src_first == dst_first && src_second == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 return size; // Self copy, no move
a61af66fc99e Initial load
duke
parents:
diff changeset
1340
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 // Check for mem-mem move. Load into unused float registers and fall into
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 // the float-store case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 if( src_first_rc == rc_stack && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 if( (src_first&1)==0 && src_first+1 == src_second ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 src_second = OptoReg::Name(R_F31_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 src_second_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 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
1351 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 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
1353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 src_first = OptoReg::Name(R_F30_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 src_first_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1357
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 if( src_second_rc == rc_stack && dst_second_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 int offset = ra_->reg2offset(src_second);
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 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
1361 src_second = OptoReg::Name(R_F31_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 src_second_rc = rc_float;
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1364
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 // Check for float->int copy; requires a trip through memory
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1367 if (src_first_rc == rc_float && dst_first_rc == rc_int && UseVIS < 3) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 int offset = frame::register_save_words*wordSize;
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1369 if (cbuf) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::sub_op3, R_SP_enc, 16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 emit3_simm13( *cbuf, Assembler::arith_op, R_SP_enc, Assembler::add_op3, R_SP_enc, 16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 #ifndef PRODUCT
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1376 else if (!do_size) {
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1377 if (size != 0) st->print("\n\t");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 st->print( "SUB R_SP,16,R_SP\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 impl_helper(this,cbuf,ra_,do_size,false,offset,src_first,Assembler::stf_op3 ,"STF ",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 impl_helper(this,cbuf,ra_,do_size,true ,offset,dst_first,Assembler::lduw_op3,"LDUW",size, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 st->print("\tADD R_SP,16,R_SP\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 size += 16;
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1386
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1387 // Check for float->int copy on T4
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1388 if (src_first_rc == rc_float && dst_first_rc == rc_int && UseVIS >= 3) {
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1389 // Further check for aligned-adjacent pair, so we can use a double move
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1390 if ((src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second)
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1391 return impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::mftoi_op3,Assembler::mdtox_opf,"MOVDTOX",size, st);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1392 size = impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::mftoi_op3,Assembler::mstouw_opf,"MOVSTOUW",size, st);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1393 }
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1394 // Check for int->float copy on T4
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1395 if (src_first_rc == rc_int && dst_first_rc == rc_float && UseVIS >= 3) {
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1396 // Further check for aligned-adjacent pair, so we can use a double move
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1397 if ((src_first&1)==0 && src_first+1 == src_second && (dst_first&1)==0 && dst_first+1 == dst_second)
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1398 return impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::mftoi_op3,Assembler::mxtod_opf,"MOVXTOD",size, st);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1399 size = impl_mov_helper(cbuf,do_size,src_first,dst_first,Assembler::mftoi_op3,Assembler::mwtos_opf,"MOVWTOS",size, st);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1400 }
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
1401
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 // In the 32-bit 1-reg-longs build ONLY, I see mis-aligned long destinations.
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 // In such cases, I have to do the big-endian swap. For aligned targets, the
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 // hardware does the flop for me. Doubles are always aligned, so no problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 // there. Misaligned sources only come from native-long-returns (handled
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 // special below).
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 if( src_first_rc == rc_int && // source is already big-endian
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 src_second_rc != rc_bad && // 64-bit move
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 ((dst_first&1)!=0 || dst_second != dst_first+1) ) { // misaligned dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 assert( (src_first&1)==0 && src_second == src_first+1, "source must be aligned" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 // Do the big-endian flop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 OptoReg::Name tmp = dst_first ; dst_first = dst_second ; dst_second = tmp ;
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 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
1416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1418
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 // --------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 // Check for integer reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 if( src_first_rc == rc_int && dst_first_rc == rc_int ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 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
1424 // 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
1425 // as stored in memory. On a big-endian machine like SPARC, this means that the _second
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // operand contains the least significant word of the 64-bit value and vice versa.
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 OptoReg::Name tmp = OptoReg::Name(R_O7_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 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
1429 // Shift O0 left in-place, zero-extend O1, then OR them into the dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 emit3_simm13( *cbuf, Assembler::arith_op, Matcher::_regEncode[tmp], Assembler::sllx_op3, Matcher::_regEncode[src_first], 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 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
1433 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
1434 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 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
1438 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
1439 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
1440 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 return size+12;
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 else if( dst_first == R_I0_num && dst_second == R_I1_num ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 // returning a long value in I0/I1
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 // a SpillCopy must be able to target a return instruction's reg_class
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 // 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
1448 // as stored in memory. On a big-endian machine like SPARC, this means that the _second
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 // operand contains the least significant word of the 64-bit value and vice versa.
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 OptoReg::Name tdest = dst_first;
a61af66fc99e Initial load
duke
parents:
diff changeset
1451
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 if (src_first == dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 tdest = OptoReg::Name(R_O7_num);
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 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 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 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
1459 // 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
1460 // ShrL_reg_imm6
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 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
1462 // ShrR_reg_imm6 src, 0, dst
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 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
1464 if (tdest != dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 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
1466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 if( size != 0 ) st->print("\n\t"); // %%%%% !!!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 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
1472 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
1473 if (tdest != dst_first) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 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
1475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 return size+8;
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 #endif // !_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 // Else normal reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 assert( src_second != dst_first, "smashed second before evacuating it" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 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
1484 assert( (src_first&1) == 0 && (dst_first&1) == 0, "never move second-halves of int registers" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 // This moves an aligned adjacent pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 // See if we are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 if( src_first+1 == src_second && dst_first+1 == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 return size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1490
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 // Check for integer store
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 if( src_first_rc == rc_int && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 int offset = ra_->reg2offset(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 // Further check for aligned-adjacent pair, so we can use a double store
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 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
1496 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
1497 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
1498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1499
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 // Check for integer load
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 if( dst_first_rc == rc_int && src_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 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
1505 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
1506 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
1507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1508
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 // Check for float reg-reg copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 if( src_first_rc == rc_float && dst_first_rc == rc_float ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 // Further check for aligned-adjacent pair, so we can use a double move
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 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
1513 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
1514 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
1515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1516
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 // Check for float store
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 if( src_first_rc == rc_float && dst_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 int offset = ra_->reg2offset(dst_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 // Further check for aligned-adjacent pair, so we can use a double store
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 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
1522 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
1523 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
1524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1525
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 // Check for float load
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 if( dst_first_rc == rc_float && src_first_rc == rc_stack ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 int offset = ra_->reg2offset(src_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 // Further check for aligned-adjacent pair, so we can use a double load
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 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
1531 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
1532 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
1533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1534
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 // --------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 // Check for hi bits still needing moving. Only happens for misaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 // arguments to native calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 if( src_second == dst_second )
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 return size; // Self copy; no move
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 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
1541
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 // In the LP64 build, all registers can be moved as aligned/adjacent
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
1544 // pairs, so there's never any need to move the high bits separately.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 // The 32-bit builds have to deal with the 32-bit ABI which can force
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 // all sorts of silly alignment problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
1547
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 // Check for integer reg-reg copy. Hi bits are stuck up in the top
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 // 32-bits of a 64-bit register, but are needed in low bits of another
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 // register (else it's a hi-bits-to-hi-bits copy which should have
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 // happened already as part of a 64-bit move)
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 if( src_second_rc == rc_int && dst_second_rc == rc_int ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 assert( (src_second&1)==1, "its the evil O0/O1 native return case" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 assert( (dst_second&1)==0, "should have moved with 1 64-bit move" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 // Shift src_second down to dst_second's low bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 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
1558 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 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
1562 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 return size+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1566
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 // Check for high word integer store. Must down-shift the hi bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 // into a temp register, then fall into the case of storing int bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 if( src_second_rc == rc_int && dst_second_rc == rc_stack && (src_second&1)==1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 // Shift src_second down to dst_second's low bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 if( cbuf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 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
1573 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 } else if( !do_size ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 if( size != 0 ) st->print("\n\t");
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 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
1577 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 size+=4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 src_second = OptoReg::Name(R_O7_num); // Not R_O7H_num!
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1582
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 // Check for high word integer load
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 if( dst_second_rc == rc_int && src_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 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
1586
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 // Check for high word integer store
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 if( src_second_rc == rc_int && dst_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 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
1590
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 // Check for high word float store
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 if( src_second_rc == rc_float && dst_second_rc == rc_stack )
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 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
1594
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 #endif // !_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1596
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1599
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 void MachSpillCopyNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 implementation( NULL, ra_, false, st );
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1605
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 void MachSpillCopyNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 implementation( &cbuf, ra_, false, NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1609
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 uint MachSpillCopyNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 return implementation( NULL, ra_, true, NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1613
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 void MachNopNode::format( PhaseRegAlloc *, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 st->print("NOP \t# %d bytes pad for loops and calls", 4 * _count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1620
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 void MachNopNode::emit(CodeBuffer &cbuf, PhaseRegAlloc * ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 for(int i = 0; i < _count; i += 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 __ nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1627
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 uint MachNopNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 return 4 * _count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1631
a61af66fc99e Initial load
duke
parents:
diff changeset
1632
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 void BoxLockNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 int offset = ra_->reg2offset(in_RegMask(0).find_first_elem());
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 int reg = ra_->get_reg_first(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 st->print("LEA [R_SP+#%d+BIAS],%s",offset,Matcher::regName[reg]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1641
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 void BoxLockNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 int offset = ra_->reg2offset(in_RegMask(0).find_first_elem()) + STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 int reg = ra_->get_encode(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1646
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 if (Assembler::is_simm13(offset)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 __ add(SP, offset, reg_to_register_object(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 __ set(offset, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 __ add(SP, O7, reg_to_register_object(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1654
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 uint BoxLockNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 // BoxLockNode is not a MachNode, so we can't just call MachNode::size(ra_)
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 assert(ra_ == ra_->C->regalloc(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 return ra_->C->scratch_emit_size(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1660
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 void MachUEPNode::format( PhaseRegAlloc *ra_, outputStream *st ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 st->print_cr("\nUEP:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 #ifdef _LP64
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
1666 if (UseCompressedClassPointers) {
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 624
diff changeset
1667 assert(Universe::heap() != NULL, "java heap should be initialized");
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1668 st->print_cr("\tLDUW [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check - compressed klass");
13000
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1669 if (Universe::narrow_klass_base() != 0) {
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1670 st->print_cr("\tSET Universe::narrow_klass_base,R_G6_heap_base");
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1671 if (Universe::narrow_klass_shift() != 0) {
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1672 st->print_cr("\tSLL R_G5,Universe::narrow_klass_shift,R_G5");
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1673 }
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1674 st->print_cr("\tADD R_G5,R_G6_heap_base,R_G5");
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1675 st->print_cr("\tSET Universe::narrow_ptrs_base,R_G6_heap_base");
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1676 } else {
209aa13ab8c0 8024927: Nashorn performance regression with CompressedOops
coleenp
parents: 12323
diff changeset
1677 st->print_cr("\tSLL R_G5,Universe::narrow_klass_shift,R_G5");
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 10997
diff changeset
1678 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1679 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1680 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
1681 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 st->print_cr("\tCMP R_G5,R_G3" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 st->print ("\tTne xcc,R_G0+ST_RESERVED_FOR_USER_0+2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 st->print_cr("\tLDUW [R_O0 + oopDesc::klass_offset_in_bytes],R_G5\t! Inline cache check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 st->print_cr("\tCMP R_G5,R_G3" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 st->print ("\tTne icc,R_G0+ST_RESERVED_FOR_USER_0+2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1691
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 void MachUEPNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 assert( G5_ic_reg != temp_reg, "conflicting registers" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1697
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
1698 // Load klass from receiver
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1699 __ load_klass(O0, temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 // Compare against expected klass
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 __ cmp(temp_reg, G5_ic_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 // Branch to miss code, checks xcc or icc depending
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 __ trap(Assembler::notEqual, Assembler::ptr_cc, G0, ST_RESERVED_FOR_USER_0+2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1705
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 uint MachUEPNode::size(PhaseRegAlloc *ra_) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 return MachNode::size(ra_);
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1709
a61af66fc99e Initial load
duke
parents:
diff changeset
1710
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1712
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 uint size_exception_handler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 return (400); // just a guess
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 return ( NativeJump::instruction_size ); // sethi;jmp;nop
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 uint size_deopt_handler() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 return (400); // just a guess
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 return ( 4+ NativeJump::instruction_size ); // save;sethi;jmp;restore
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1726
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 // Emit exception handler code.
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 int emit_exception_handler(CodeBuffer& cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 Register temp_reg = G3;
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
1730 AddressLiteral exception_blob(OptoRuntime::exception_blob()->entry_point());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1732
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 address base =
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 __ start_a_stub(size_exception_handler());
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 if (base == NULL) return 0; // CodeBuffer::expand failed
a61af66fc99e Initial load
duke
parents:
diff changeset
1736
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 int offset = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1738
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
1739 __ JUMP(exception_blob, temp_reg, 0); // sethi;jmp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1741
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 assert(__ offset() - offset <= (int) size_exception_handler(), "overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
1743
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 __ end_a_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
1745
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1748
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 int emit_deopt_handler(CodeBuffer& cbuf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 // Can't use any of the current frame's registers as we may have deopted
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 // at a poll and everything (including G3) can be live.
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 Register temp_reg = L0;
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
1753 AddressLiteral deopt_blob(SharedRuntime::deopt_blob()->unpack());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
1755
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 address base =
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 __ start_a_stub(size_deopt_handler());
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 if (base == NULL) return 0; // CodeBuffer::expand failed
a61af66fc99e Initial load
duke
parents:
diff changeset
1759
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 int offset = __ offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 __ save_frame(0);
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
1762 __ JUMP(deopt_blob, temp_reg, 0); // sethi;jmp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 __ delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1764
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 assert(__ offset() - offset <= (int) size_deopt_handler(), "overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
1766
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 __ end_a_stub();
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1769
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1771
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 // Given a register encoding, produce a Integer Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 static Register reg_to_register_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 assert(L5->encoding() == R_L5_enc && G1->encoding() == R_G1_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 return as_Register(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1777
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 // Given a register encoding, produce a single-precision Float Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 static FloatRegister reg_to_SingleFloatRegister_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 assert(F5->encoding(FloatRegisterImpl::S) == R_F5_enc && F12->encoding(FloatRegisterImpl::S) == R_F12_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 return as_SingleFloatRegister(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1783
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 // Given a register encoding, produce a double-precision Float Register object
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 static FloatRegister reg_to_DoubleFloatRegister_object(int register_encoding) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 assert(F4->encoding(FloatRegisterImpl::D) == R_F4_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 assert(F32->encoding(FloatRegisterImpl::D) == R_D32_enc, "right coding");
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 return as_DoubleFloatRegister(register_encoding);
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1790
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1791 const bool Matcher::match_rule_supported(int opcode) {
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1792 if (!has_match_rule(opcode))
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1793 return false;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1794
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1795 switch (opcode) {
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1796 case Op_CountLeadingZerosI:
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1797 case Op_CountLeadingZerosL:
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1798 case Op_CountTrailingZerosI:
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1799 case Op_CountTrailingZerosL:
5934
61b82be3b1ff 7152957: VM crashes with assert(false) failed: bad AD file
never
parents: 4777
diff changeset
1800 case Op_PopCountI:
61b82be3b1ff 7152957: VM crashes with assert(false) failed: bad AD file
never
parents: 4777
diff changeset
1801 case Op_PopCountL:
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1802 if (!UsePopCountInstruction)
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1803 return false;
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1804 case Op_CompareAndSwapL:
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1805 #ifdef _LP64
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1806 case Op_CompareAndSwapP:
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1807 #endif
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1808 if (!VM_Version::supports_cx8())
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
1809 return false;
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1810 break;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1811 }
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1812
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1813 return true; // Per default match rules are supported.
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1814 }
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
1815
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 int Matcher::regnum_to_fpu_offset(int regnum) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 return regnum - 32; // The FP registers are in the second chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1819
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 address last_rethrow = NULL; // debugging aid for Rethrow encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1823
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 // Vector width in bytes
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1825 const int Matcher::vector_width_in_bytes(BasicType bt) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1826 assert(MaxVectorSize == 8, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 return 8;
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1829
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 // Vector ideal reg
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1831 const int Matcher::vector_ideal_reg(int size) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1832 assert(MaxVectorSize == 8, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 return Op_RegD;
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1835
6823
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6795
diff changeset
1836 const int Matcher::vector_shift_count_ideal_reg(int size) {
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6795
diff changeset
1837 fatal("vector shift is not supported");
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6795
diff changeset
1838 return Node::NotAMachineReg;
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6795
diff changeset
1839 }
859c45fb8cea 7201026: add vector for shift count
kvn
parents: 6795
diff changeset
1840
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1841 // Limits on vector size (number of elements) loaded into vector.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1842 const int Matcher::max_vector_size(const BasicType bt) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1843 assert(is_java_primitive(bt), "only primitive type vectors");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1844 return vector_width_in_bytes(bt)/type2aelembytes(bt);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1845 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1846
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1847 const int Matcher::min_vector_size(const BasicType bt) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1848 return max_vector_size(bt); // Same as max.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1849 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1850
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1851 // SPARC doesn't support misaligned vectors store/load.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1852 const bool Matcher::misaligned_vectors_ok() {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1853 return false;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1854 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
1855
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 // USII supports fxtof through the whole range of number, USIII doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 const bool Matcher::convL2FSupported(void) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 return VM_Version::has_fast_fxtof();
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1860
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 // Is this branch offset short enough that a short branch can be used?
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 // NOTE: If the platform does not provide any short branch variants, then
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 // this method should return false for offset 0.
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1865 bool Matcher::is_short_branch_offset(int rule, int br_size, int offset) {
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1866 // The passed offset is relative to address of the branch.
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
1867 // Don't need to adjust the offset.
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
1868 return UseCBCond && Assembler::is_simm12(offset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1870
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 const bool Matcher::isSimpleConstant64(jlong value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 // Will one (StoreL ConL) be cheaper than two (StoreI ConI)?.
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 // Depends on optimizations in MacroAssembler::setx.
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 int hi = (int)(value >> 32);
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 int lo = (int)(value & ~0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 return (hi == 0) || (hi == -1) || (lo == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 // No scaling for the parameter the ClearArray node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 const bool Matcher::init_array_count_is_in_bytes = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1881
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 // Threshold size for cleararray.
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 const int Matcher::init_array_short_size = 8 * BytesPerLong;
a61af66fc99e Initial load
duke
parents:
diff changeset
1884
4047
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1885 // No additional cost for CMOVL.
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1886 const int Matcher::long_cmove_cost() { return 0; }
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1887
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1888 // CMOVF/CMOVD are expensive on T4 and on SPARC64.
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1889 const int Matcher::float_cmove_cost() {
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1890 return (VM_Version::is_T4() || VM_Version::is_sparc64()) ? ConditionalMoveLimit : 0;
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1891 }
d8cb48376797 7097546: Optimize use of CMOVE instructions
kvn
parents: 4003
diff changeset
1892
14428
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1893 // Does the CPU require late expand (see block.cpp for description of late expand)?
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1894 const bool Matcher::require_postalloc_expand = false;
044b28168e20 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 14422
diff changeset
1895
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 // Should the Matcher clone shifts on addressing modes, expecting them to
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 // be subsumed into complex addressing expressions or compute them into
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 // registers? True for Intel but false for most RISCs
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 const bool Matcher::clone_shift_expressions = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1900
2401
7e88bdae86ec 7029017: Additional architecture support for c2 compiler
roland
parents: 2254
diff changeset
1901 // Do we need to mask the count passed to shift instructions or does
7e88bdae86ec 7029017: Additional architecture support for c2 compiler
roland
parents: 2254
diff changeset
1902 // the cpu only look at the lower 5/6 bits anyway?
7e88bdae86ec 7029017: Additional architecture support for c2 compiler
roland
parents: 2254
diff changeset
1903 const bool Matcher::need_masked_shift_count = false;
7e88bdae86ec 7029017: Additional architecture support for c2 compiler
roland
parents: 2254
diff changeset
1904
1575
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1905 bool Matcher::narrow_oop_use_complex_address() {
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1906 NOT_LP64(ShouldNotCallThis());
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1907 assert(UseCompressedOops, "only for compressed oops code");
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1908 return false;
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1909 }
3657cb01ffc5 6954029: Improve implicit null check generation with compressed oops
kvn
parents: 1571
diff changeset
1910
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
1911 bool Matcher::narrow_klass_use_complex_address() {
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
1912 NOT_LP64(ShouldNotCallThis());
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
1913 assert(UseCompressedClassPointers, "only for compressed klass code");
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
1914 return false;
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
1915 }
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
1916
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 // Is it better to copy float constants, or load them directly from memory?
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 // Intel can load a float constant from a direct address, requiring no
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 // extra registers. Most RISCs will have to materialize an address into a
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 // register first, so they would do better to copy the constant from stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 const bool Matcher::rematerialize_float_constants = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1922
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 // If CPU can load and store mis-aligned doubles directly then no fixup is
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 // needed. Else we split the double into 2 integer pieces and move it
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 // piece-by-piece. Only happens when passing doubles into C code as the
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 // Java calling convention forces doubles to be aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 const bool Matcher::misaligned_doubles_ok = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 const bool Matcher::misaligned_doubles_ok = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1932
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 // No-op on SPARC.
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 void Matcher::pd_implicit_null_fixup(MachNode *node, uint idx) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1936
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 // Advertise here if the CPU requires explicit rounding operations
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 // to implement the UseStrictFP mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 const bool Matcher::strict_fp_requires_explicit_rounding = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1940
1274
2883969d09e7 6910664: C2: java/util/Arrays/Sorting.java fails with DeoptimizeALot flag
kvn
parents: 1160
diff changeset
1941 // Are floats conerted to double when stored to stack during deoptimization?
2883969d09e7 6910664: C2: java/util/Arrays/Sorting.java fails with DeoptimizeALot flag
kvn
parents: 1160
diff changeset
1942 // Sparc does not handle callee-save floats.
2883969d09e7 6910664: C2: java/util/Arrays/Sorting.java fails with DeoptimizeALot flag
kvn
parents: 1160
diff changeset
1943 bool Matcher::float_in_double() { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1944
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 // Do ints take an entire long register or just half?
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 // Note that we if-def off of _LP64.
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 // The relevant question is how the int is callee-saved. In _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 // the whole long is written but de-opt'ing will have to extract
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 // the relevant 32 bits, in not-_LP64 only the low 32 bits is written.
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 const bool Matcher::int_in_long = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 const bool Matcher::int_in_long = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1955
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 // Return whether or not this register is ever used as an argument. This
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 // function is used on startup to build the trampoline stubs in generateOptoStub.
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 // Registers not mentioned will be killed by the VM call in the trampoline, and
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 // arguments in those registers not be available to the callee.
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 bool Matcher::can_be_java_arg( int reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 // Standard sparc 6 args in registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 if( reg == R_I0_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 reg == R_I1_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 reg == R_I2_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 reg == R_I3_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 reg == R_I4_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 reg == R_I5_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 // 64-bit builds can pass 64-bit pointers and longs in
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 // the high I registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 if( reg == R_I0H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 reg == R_I1H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 reg == R_I2H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 reg == R_I3H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 reg == R_I4H_num ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 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
1977
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1978 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
1979 return true;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1980 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
1981
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 // 32-bit builds with longs-in-one-entry pass longs in G1 & G4.
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 // Longs cannot be passed in O regs, because O regs become I regs
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 // after a 'save' and I regs get their high bits chopped off on
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 // interrupt.
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 if( reg == R_G1H_num || reg == R_G1_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 if( reg == R_G4H_num || reg == R_G4_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 // A few float args in registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 if( reg >= R_F0_num && reg <= R_F7_num ) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1992
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1995
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 bool Matcher::is_spillable_arg( int reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 return can_be_java_arg(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1999
1914
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2000 bool Matcher::use_asm_for_ldiv_by_con( jlong divisor ) {
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2001 // Use hardware SDIVX instruction when it is
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2002 // faster than a code which use multiply.
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2003 return VM_Version::has_fast_idiv();
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2004 }
ae065c367d93 6987135: Performance regression on Intel platform with 32-bits edition between 6u13 and 6u14.
kvn
parents: 1748
diff changeset
2005
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 // Register for DIVI projection of divmodI
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 RegMask Matcher::divI_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2011
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 // Register for MODI projection of divmodI
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 RegMask Matcher::modI_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2017
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 // Register for DIVL projection of divmodL
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 RegMask Matcher::divL_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2023
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 // Register for MODL projection of divmodL
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 RegMask Matcher::modL_proj_mask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 return RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2029
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1041
diff changeset
2030 const RegMask Matcher::method_handle_invoke_SP_save_mask() {
4121
db2e64ca2d5a 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 4114
diff changeset
2031 return L7_REGP_mask();
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1041
diff changeset
2032 }
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1041
diff changeset
2033
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2034 const RegMask Matcher::mathExactI_result_proj_mask() {
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2035 return G1_REGI_mask();
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2036 }
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2037
12972
59e8ad757e19 8026844: Various Math functions needs intrinsification
rbackman
parents: 12323
diff changeset
2038 const RegMask Matcher::mathExactL_result_proj_mask() {
59e8ad757e19 8026844: Various Math functions needs intrinsification
rbackman
parents: 12323
diff changeset
2039 return G1_REGL_mask();
59e8ad757e19 8026844: Various Math functions needs intrinsification
rbackman
parents: 12323
diff changeset
2040 }
59e8ad757e19 8026844: Various Math functions needs intrinsification
rbackman
parents: 12323
diff changeset
2041
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2042 const RegMask Matcher::mathExactI_flags_proj_mask() {
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2043 return INT_FLAGS_mask();
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2044 }
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2045
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
2046
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2048
a61af66fc99e Initial load
duke
parents:
diff changeset
2049
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 // The intptr_t operand types, defined by textual substitution.
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 // (Cf. opto/type.hpp. This lets us avoid many, many other ifdefs.)
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 #ifdef _LP64
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2053 #define immX immL
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2054 #define immX13 immL13
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2055 #define immX13m7 immL13m7
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2056 #define iRegX iRegL
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2057 #define g1RegX g1RegL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 #else
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2059 #define immX immI
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2060 #define immX13 immI13
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2061 #define immX13m7 immI13m7
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2062 #define iRegX iRegI
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
2063 #define g1RegX g1RegI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2065
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 //----------ENCODING BLOCK-----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 // This block specifies the encoding classes used by the compiler to output
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 // byte streams. Encoding classes are parameterized macros used by
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 // Machine Instruction Nodes in order to generate the bit encoding of the
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 // instruction. Operands specify their base encoding interface with the
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 // interface keyword. There are currently supported four interfaces,
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 // REG_INTER, CONST_INTER, MEMORY_INTER, & COND_INTER. REG_INTER causes an
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 // operand to generate a function which returns its register number when
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 // queried. CONST_INTER causes an operand to generate a function which
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 // returns the value of the constant when queried. MEMORY_INTER causes an
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 // operand to generate four functions which return the Base Register, the
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 // Index Register, the Scale Value, and the Offset Value of the operand when
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 // queried. COND_INTER causes an operand to generate six functions which
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 // return the encoding code (ie - encoding bits for the instruction)
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 // associated with each basic boolean condition for a conditional instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 // Instructions specify two basic values for encoding. Again, a function
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 // is available to check if the constant displacement is an oop. They use the
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 // ins_encode keyword to specify their encoding classes (which must be
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 // a sequence of enc_class names, and their parameters, specified in
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 // the encoding block), and they use the
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 // opcode keyword to specify, in order, their primary, secondary, and
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 // tertiary opcode. Only the opcode sections which a particular instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 // needs for encoding need to be specified.
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 enc_class enc_untested %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 __ untested("encoding");
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2097
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 enc_class form3_mem_reg( memory mem, iRegI dst ) %{
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2099 emit_form3_mem_reg(cbuf, ra_, this, $primary, $tertiary,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 $mem$$base, $mem$$disp, $mem$$index, $dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2102
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
2103 enc_class simple_form3_mem_reg( memory mem, iRegI dst ) %{
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2104 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
415
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
2105 $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
2106 %}
4d9884b01ba6 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 235
diff changeset
2107
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 enc_class form3_mem_prefetch_read( memory mem ) %{
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2109 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 $mem$$base, $mem$$disp, $mem$$index, 0/*prefetch function many-reads*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2112
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 enc_class form3_mem_prefetch_write( memory mem ) %{
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2114 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 $mem$$base, $mem$$disp, $mem$$index, 2/*prefetch function many-writes*/);
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2117
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 enc_class form3_mem_reg_long_unaligned_marshal( memory mem, iRegL reg ) %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
2119 assert(Assembler::is_simm13($mem$$disp ), "need disp and disp+4");
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
2120 assert(Assembler::is_simm13($mem$$disp+4), "need disp and disp+4");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 guarantee($mem$$index == R_G0_enc, "double index?");
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2122 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, R_O7_enc );
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2123 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp, R_G0_enc, $reg$$reg );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 emit3_simm13( cbuf, Assembler::arith_op, $reg$$reg, Assembler::sllx_op3, $reg$$reg, 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 emit3( cbuf, Assembler::arith_op, $reg$$reg, Assembler::or_op3, $reg$$reg, 0, R_O7_enc );
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2127
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 enc_class form3_mem_reg_double_unaligned( memory mem, RegD_low reg ) %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
2129 assert(Assembler::is_simm13($mem$$disp ), "need disp and disp+4");
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
2130 assert(Assembler::is_simm13($mem$$disp+4), "need disp and disp+4");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 guarantee($mem$$index == R_G0_enc, "double index?");
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 // Load long with 2 instructions
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2133 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp, R_G0_enc, $reg$$reg+0 );
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2134 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp+4, R_G0_enc, $reg$$reg+1 );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2136
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 //%%% form3_mem_plus_4_reg is a hack--get rid of it
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 enc_class form3_mem_plus_4_reg( memory mem, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 guarantee($mem$$disp, "cannot offset a reg-reg operand by 4");
17453
9ecf408d4568 8029668: Kithcensink crashed with guarantee(Assembler::is_simm13(disp)) failed: Do not match large constant offsets
iveresov
parents: 13042
diff changeset
2140 emit_form3_mem_reg(cbuf, ra_, this, $primary, -1, $mem$$base, $mem$$disp + 4, $mem$$index, $dst$$reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2142
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 enc_class form3_g0_rs2_rd_move( iRegI rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 if( $rs2$$reg != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 // Target lo half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 enc_class form3_g0_rs2_rd_move_lo( iRegI rs2, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 if( $rs2$$reg != LONG_LO_REG($rd$$reg) )
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 emit3( cbuf, Assembler::arith_op, LONG_LO_REG($rd$$reg), Assembler::or_op3, 0, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2155
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // Source lo half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 enc_class form3_g0_rs2_rd_move_lo2( iRegL rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 if( LONG_LO_REG($rs2$$reg) != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_LO_REG($rs2$$reg) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2162
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 // Target hi half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 enc_class form3_rs1_rd_copysign_hi( iRegI rs1, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 31 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2167
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 // Source lo half of long, and leave it sign extended.
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 enc_class form3_rs1_rd_signextend_lo1( iRegL rs1, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 // Sign extend low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::sra_op3, $rs1$$reg, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2173
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 // Source hi half of long, and leave it sign extended.
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 enc_class form3_rs1_rd_copy_hi1( iRegL rs1, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 // Shift high half to low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::srlx_op3, $rs1$$reg, 32 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2179
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 // Source hi half of long
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 enc_class form3_g0_rs2_rd_move_hi2( iRegL rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 // Encode a reg-reg copy. If it is useless, then empty encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 if( LONG_HI_REG($rs2$$reg) != $rd$$reg )
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 emit3( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, 0, LONG_HI_REG($rs2$$reg) );
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2186
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 enc_class form3_rs1_rs2_rd( iRegI rs1, iRegI rs2, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2190
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 enc_class enc_to_bool( iRegI src, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 emit3 ( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, 0, 0, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::addc_op3 , 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2195
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 enc_class enc_ltmask( iRegI p, iRegI q, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 emit3 ( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $p$$reg, 0, $q$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 // clear if nothing else is happening
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 // blt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 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
2202 // mov dst,-1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2205
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 enc_class form3_rs1_imm5_rd( iRegI rs1, immU5 imm5, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $imm5$$constant & 0x1F );
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2209
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 enc_class form3_sd_rs1_imm6_rd( iRegL rs1, immU6 imm6, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, ($imm6$$constant & 0x3F) | 0x1000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2213
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 enc_class form3_sd_rs1_rs2_rd( iRegL rs1, iRegI rs2, iRegL rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, 0x80, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2217
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 enc_class form3_rs1_simm13_rd( iRegI rs1, immI13 simm13, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 emit3_simm13( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $simm13$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2221
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 enc_class move_return_pc_to_o1() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 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
2224 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2225
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 /* %%% merge with enc_to_bool */
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 enc_class enc_convP2B( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2230
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 Register src_reg = reg_to_register_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 Register dst_reg = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 __ movr(Assembler::rc_nz, src_reg, 1, dst_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2236
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 enc_class enc_cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 // (Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)))
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2240
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 Register p_reg = reg_to_register_object($p$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 Register q_reg = reg_to_register_object($q$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 Register y_reg = reg_to_register_object($y$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 Register tmp_reg = reg_to_register_object($tmp$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2245
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 __ subcc( p_reg, q_reg, p_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 __ add ( p_reg, y_reg, tmp_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 __ movcc( Assembler::less, false, Assembler::icc, tmp_reg, p_reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2250
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 enc_class form_d2i_helper(regD src, regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 // fcmp %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 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
2256 // fdtoi $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fdtoi_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2258 // fitos $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fitos_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2264
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 enc_class form_d2l_helper(regD src, regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 // fcmp %fcc0,$src,$src check for NAN
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmpd_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 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
2270 // fdtox $src,$dst convert in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fdtox_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 // fxtod $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fxtod_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2278
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 enc_class form_f2i_helper(regF src, regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 // fcmps %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 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
2284 // fstoi $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fstoi_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 // fitos $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fitos_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubs_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2292
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 enc_class form_f2l_helper(regF src, regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 // fcmps %fcc0,$src,$src
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 emit3( cbuf, Assembler::arith_op , Assembler::fcc0, Assembler::fpop2_op3, $src$$reg, Assembler::fcmps_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 // branch %fcc0 not-nan, predict taken
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 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
2298 // fstox $src,$dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fstox_opf, $src$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 // fxtod $dst,$dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, 0, Assembler::fxtod_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 // clear $dst (if nan)
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 emit3( cbuf, Assembler::arith_op , $dst$$reg, Assembler::fpop1_op3, $dst$$reg, Assembler::fsubd_opf, $dst$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 // carry on here...
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2306
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 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
2308 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
2309 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
2310 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
2311
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 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
2313
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 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
2315 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
2316
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 enc_class form3_opf_rs1F_rs2F_rdF( regF rs1, regF rs2, regF rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2320
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 enc_class form3_opf_rs1D_rs2D_rdD( regD rs1, regD rs2, regD rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 emit3( cbuf, $secondary, $rd$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2324
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 enc_class form3_opf_rs1F_rs2F_fcc( regF rs1, regF rs2, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2328
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 enc_class form3_opf_rs1D_rs2D_fcc( regD rs1, regD rs2, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 emit3( cbuf, $secondary, $fcc$$reg, $primary, $rs1$$reg, $tertiary, $rs2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2332
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 enc_class form3_convI2F(regF rs2, regF rd) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 emit3(cbuf,Assembler::arith_op,$rd$$reg,Assembler::fpop1_op3,0,$secondary,$rs2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2336
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 // Encloding class for traceable jumps
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 enc_class form_jmpl(g3RegP dest) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 emit_jmpl(cbuf, $dest$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2341
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 enc_class form_jmpl_set_exception_pc(g1RegP dest) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 emit_jmpl_set_exception_pc(cbuf, $dest$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2345
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 enc_class form2_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 emit_nop(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2349
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 enc_class form2_illtrap() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 emit_illtrap(cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2353
a61af66fc99e Initial load
duke
parents:
diff changeset
2354
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 // Compare longs and convert into -1, 0, 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 enc_class cmpl_flag( iRegL src1, iRegL src2, iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 // CMP $src1,$src2
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 emit3( cbuf, Assembler::arith_op, 0, Assembler::subcc_op3, $src1$$reg, 0, $src2$$reg );
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 // blt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 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
2361 // mov dst,-1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 // bgt,a,pn done
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 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
2365 // mov dst,1 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 emit3_simm13( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3, 0, 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 // CLR $dst
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 emit3( cbuf, Assembler::arith_op, $dst$$reg, Assembler::or_op3 , 0, 0, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2370
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 enc_class enc_PartialSubtypeCheck() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 __ call(StubRoutines::Sparc::partial_subtype_check(), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2376
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2377 enc_class enc_bp( label labl, cmpOp cmp, flagsReg cc ) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 MacroAssembler _masm(&cbuf);
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2379 Label* L = $labl$$label;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 Assembler::Predict predict_taken =
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2381 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2382
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2383 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2386
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2387 enc_class enc_bpr( label labl, cmpOp_reg cmp, iRegI op1 ) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 MacroAssembler _masm(&cbuf);
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2389 Label* L = $labl$$label;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 Assembler::Predict predict_taken =
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2391 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2392
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2393 __ bpr( (Assembler::RCondition)($cmp$$cmpcode), false, predict_taken, as_Register($op1$$reg), *L);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2396
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 enc_class enc_cmov_reg( cmpOp cmp, iRegI dst, iRegI src, immI pcc) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 ($pcc$$constant << 11) | // cc1, cc0 bits for 'icc' or 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2406 cbuf.insts()->emit_int32(op);
0
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 enc_cmov_imm( cmpOp cmp, iRegI dst, immI11 src, immI pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 (1 << 13) | // select immediate move
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 ($pcc$$constant << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 (simm11 << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2419 cbuf.insts()->emit_int32(op);
0
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 enc_cmov_reg_f( cmpOpF cmp, iRegI dst, iRegI src, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 (0 << 18) | // cc2 bit for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 ($fcc$$reg << 11) | // cc1, cc0 bits for fcc0-fcc3
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2431 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2433
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 enc_class enc_cmov_imm_f( cmpOp cmp, iRegI dst, immI11 src, flagsRegF fcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 int simm11 = $src$$constant & ((1<<11)-1); // Mask to 11 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 (0 << 18) | // cc2 bit for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 (1 << 13) | // select immediate move
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 ($fcc$$reg << 11) | // cc1, cc0 bits for fcc0-fcc3
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 (simm11 << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2444 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2446
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 enc_class enc_cmovf_reg( cmpOp cmp, regD dst, regD src, immI pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 (Assembler::fpop2_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 (0 << 18) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 (1 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 ($pcc$$constant << 11) | // cc1-cc0 bits for 'icc' or 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 ($primary << 5) | // select single, double or quad
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2457 cbuf.insts()->emit_int32(op);
0
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 enc_cmovff_reg( cmpOpF cmp, flagsRegF fcc, regD dst, regD src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 (Assembler::fpop2_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 (0 << 18) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 ($cmp$$cmpcode << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 ($fcc$$reg << 11) | // cc2-cc0 bits for 'fccX'
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 ($primary << 5) | // select single, double or quad
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2469 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2471
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 // Used by the MIN/MAX encodings. Same as a CMOV, but
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 // the condition comes from opcode-field instead of an argument.
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 enc_class enc_cmov_reg_minmax( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2477 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 (1 << 18) | // cc2 bit for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 ($primary << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 (0 << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2483 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2485
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 enc_class enc_cmov_reg_minmax_long( iRegL dst, iRegL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 int op = (Assembler::arith_op << 30) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 ($dst$$reg << 25) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 (Assembler::movcc_op3 << 19) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 (6 << 16) | // cc2 bit for 'xcc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 ($primary << 14) |
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 (0 << 13) | // select register move
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 (0 << 11) | // cc1, cc0 bits for 'icc'
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 ($src$$reg << 0);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
2495 cbuf.insts()->emit_int32(op);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2497
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 enc_class Set13( immI13 src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 emit3_simm13( cbuf, Assembler::arith_op, $rd$$reg, Assembler::or_op3, 0, $src$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2501
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 enc_class SetHi22( immI src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 emit2_22( cbuf, Assembler::branch_op, $rd$$reg, Assembler::sethi_op2, $src$$constant );
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2505
a61af66fc99e Initial load
duke
parents:
diff changeset
2506 enc_class Set32( immI src, iRegI rd ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2507 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 __ set($src$$constant, reg_to_register_object($rd$$reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2510
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 enc_class call_epilog %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 if( VerifyStackAtCalls ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 int framesize = ra_->C->frame_slots() << LogBytesPerInt;
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 Register temp_reg = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 __ add(SP, framesize, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 __ cmp(temp_reg, FP);
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 __ breakpoint_trap(Assembler::notEqual, Assembler::ptr_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2521
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 // 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
2523 // to G1 so the register allocator will not have to deal with the misaligned register
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 // pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
2525 enc_class adjust_long_from_native_call %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 if (returns_long()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 // sllx O0,32,O0
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 emit3_simm13( cbuf, Assembler::arith_op, R_O0_enc, Assembler::sllx_op3, R_O0_enc, 0x1020 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 // srl O1,0,O1
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 emit3_simm13( cbuf, Assembler::arith_op, R_O1_enc, Assembler::srl_op3, R_O1_enc, 0x0000 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 // or O0,O1,G1
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 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
2534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2537
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 enc_class Java_To_Runtime (method meth) %{ // CALL Java_To_Runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 // CALL directly to the runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 // The user of this is responsible for ensuring that R_L7 is empty (killed).
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type,
2121
c17b998c5926 7011627: C1: call_RT must support targets that don't fit in wdisp30
iveresov
parents: 2080
diff changeset
2542 /*preserve_g2=*/true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2544
1567
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2545 enc_class preserve_SP %{
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2546 MacroAssembler _masm(&cbuf);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2547 __ mov(SP, L7_mh_SP_save);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2548 %}
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2549
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2550 enc_class restore_SP %{
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2551 MacroAssembler _masm(&cbuf);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2552 __ mov(L7_mh_SP_save, SP);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2553 %}
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
2554
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 enc_class Java_Static_Call (method meth) %{ // JAVA STATIC CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 // CALL to fixup routine. Fixup routine uses ScopeDesc info to determine
a61af66fc99e Initial load
duke
parents:
diff changeset
2557 // who we intended to call.
10168
a6e09d6dd8e5 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 7426
diff changeset
2558 if (!_method) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 emit_call_reloc(cbuf, $meth$$method, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 } else if (_optimized_virtual) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 emit_call_reloc(cbuf, $meth$$method, relocInfo::opt_virtual_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 emit_call_reloc(cbuf, $meth$$method, relocInfo::static_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 }
10168
a6e09d6dd8e5 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 7426
diff changeset
2565 if (_method) { // Emit stub for static call.
a6e09d6dd8e5 8003853: specify offset of IC load in java_to_interp stub
dlong
parents: 7426
diff changeset
2566 CompiledStaticCall::emit_to_interp_stub(cbuf);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2569
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 enc_class Java_Dynamic_Call (method meth) %{ // JAVA DYNAMIC CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 int vtable_index = this->_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 // MachCallDynamicJavaNode::ret_addr_offset uses this same test
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 if (vtable_index < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 // must be invalid_vtable_index, not nonvirtual_vtable_index
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2577 assert(vtable_index == Method::invalid_vtable_index, "correct sentinel value");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 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
2580 assert(G5_ic_reg == G5_megamorphic_method, "G5_megamorphic_method used in megamorphic call stub");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2581 __ ic_call((address)$meth$$method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 assert(!UseInlineCaches, "expect vtable calls only if not using ICs");
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 // Just go thru the vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 // get receiver klass (receiver already checked for non-null)
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 // If we end up going thru a c2i adapter interpreter expects method in G5
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 int off = __ offset();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2588 __ load_klass(O0, G3_scratch);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2589 int klass_load_size;
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
2590 if (UseCompressedClassPointers) {
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 624
diff changeset
2591 assert(Universe::heap() != NULL, "java heap should be initialized");
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 10997
diff changeset
2592 klass_load_size = MacroAssembler::instr_size_for_decode_klass_not_null() + 1*BytesPerInstWord;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2593 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2594 klass_load_size = 1*BytesPerInstWord;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
2595 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2596 int entry_offset = InstanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
2598 if (Assembler::is_simm13(v_off)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 __ ld_ptr(G3, v_off, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 // Generate 2 instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 __ Assembler::sethi(v_off & ~0x3ff, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 __ or3(G5_method, v_off & 0x3ff, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 // 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
2605 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
2606 "Unexpected instruction size(s)");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 __ ld_ptr(G3, G5_method, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 // NOTE: for vtable dispatches, the vtable entry will never be null.
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 // However it may very well end up in handle_wrong_method if the
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 // method is abstract for the particular class.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2612 __ ld_ptr(G5_method, in_bytes(Method::from_compiled_offset()), G3_scratch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 // jump to target (either compiled code or c2iadapter)
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 __ jmpl(G3_scratch, G0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2618
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 enc_class Java_Compiled_Call (method meth) %{ // JAVA COMPILED CALL
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2621
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 Register G5_ic_reg = reg_to_register_object(Matcher::inline_cache_reg_encode());
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 Register temp_reg = G3; // caller must kill G3! We cannot reuse G5_ic_reg here because
a61af66fc99e Initial load
duke
parents:
diff changeset
2624 // we might be calling a C2I adapter which needs it.
a61af66fc99e Initial load
duke
parents:
diff changeset
2625
a61af66fc99e Initial load
duke
parents:
diff changeset
2626 assert(temp_reg != G5_ic_reg, "conflicting registers");
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 // Load nmethod
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
2628 __ ld_ptr(G5_ic_reg, in_bytes(Method::from_compiled_offset()), temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2629
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 // CALL to compiled java, indirect the contents of G3
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 __ set_inst_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 __ callr(temp_reg, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2635
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 enc_class idiv_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2637 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 Register Rdivisor = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2641
a61af66fc99e Initial load
duke
parents:
diff changeset
2642 __ sra(Rdivisor, 0, Rdivisor);
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 __ sdivx(Rdividend, Rdivisor, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2646
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 enc_class idiv_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2649
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 int divisor = $imm$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2653
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 __ sdivx(Rdividend, divisor, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2656 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2657
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 enc_class enc_mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 Register Rsrc1 = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 Register Rsrc2 = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 Register Rdst = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2663
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 __ sra( Rsrc1, 0, Rsrc1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 __ sra( Rsrc2, 0, Rsrc2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 __ mulx( Rsrc1, Rsrc2, Rdst );
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 __ srlx( Rdst, 32, Rdst );
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 irem_reg(iRegIsafe src1, iRegIsafe src2, iRegIsafe dst, o7RegL scratch) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 Register Rdivisor = reg_to_register_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2676
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 assert(Rdividend != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2678 assert(Rdivisor != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2679
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 __ sra(Rdivisor, 0, Rdivisor);
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 __ sdivx(Rdividend, Rdivisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 __ mulx(Rscratch, Rdivisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 __ sub(Rdividend, Rscratch, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2686
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 enc_class irem_imm(iRegIsafe src1, immI13 imm, iRegIsafe dst, o7RegL scratch) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2688 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2689
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 Register Rdividend = reg_to_register_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 int divisor = $imm$$constant;
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 Register Rresult = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2694
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 assert(Rdividend != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2696
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 __ sra(Rdividend, 0, Rdividend);
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 __ sdivx(Rdividend, divisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 __ mulx(Rscratch, divisor, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 __ sub(Rdividend, Rscratch, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2702
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 enc_class fabss (sflt_reg dst, sflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2705
a61af66fc99e Initial load
duke
parents:
diff changeset
2706 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2708
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 __ fabs(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2711
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 enc_class fabsd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2714
a61af66fc99e Initial load
duke
parents:
diff changeset
2715 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2716 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2717
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 __ fabs(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2719 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2720
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 enc_class fnegd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2723
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2726
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 __ fneg(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2728 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2729
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 enc_class fsqrts (sflt_reg dst, sflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2732
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2735
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 __ fsqrt(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2737 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2738
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 enc_class fsqrtd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2741
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2744
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 __ fsqrt(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2746 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2747
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 enc_class fmovs (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2750
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 FloatRegister Fdst = reg_to_SingleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 FloatRegister Fsrc = reg_to_SingleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2753
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 __ fmov(FloatRegisterImpl::S, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2756
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 enc_class fmovd (dflt_reg dst, dflt_reg src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2759
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 FloatRegister Fdst = reg_to_DoubleFloatRegister_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 FloatRegister Fsrc = reg_to_DoubleFloatRegister_object($src$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2762
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 __ fmov(FloatRegisterImpl::D, Fsrc, Fdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2765
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 enc_class Fast_Lock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2768
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 Register Roop = reg_to_register_object($oop$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 Register Rbox = reg_to_register_object($box$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 Register Rmark = reg_to_register_object($scratch2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2773
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 assert(Roop != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 assert(Roop != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 assert(Rbox != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 assert(Rbox != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2778
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
2779 __ compiler_lock_object(Roop, Rmark, Rbox, Rscratch, _counters, UseBiasedLocking && !UseOptoBiasInlining);
0
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 Fast_Unlock(iRegP oop, iRegP box, o7RegP scratch, iRegP scratch2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2784
a61af66fc99e Initial load
duke
parents:
diff changeset
2785 Register Roop = reg_to_register_object($oop$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 Register Rbox = reg_to_register_object($box$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 Register Rscratch = reg_to_register_object($scratch$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 Register Rmark = reg_to_register_object($scratch2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2789
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 assert(Roop != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 assert(Roop != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 assert(Rbox != Rscratch, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 assert(Rbox != Rmark, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
2794
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
2795 __ compiler_unlock_object(Roop, Rmark, Rbox, Rscratch, UseBiasedLocking && !UseOptoBiasInlining);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2797
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 enc_class enc_cas( iRegP mem, iRegP old, iRegP new ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2803
10997
46c544b8fbfc 8008407: remove SPARC V8 support
morris
parents: 10169
diff changeset
2804 __ cas_ptr(Rmem, Rold, Rnew); // Swap(*Rmem,Rnew) if *Rmem == Rold
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 __ cmp( Rold, Rnew );
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2807
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 enc_class enc_casx( iRegP mem, iRegL old, iRegL new) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2812
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 __ mov(Rnew, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 __ casx(Rmem, Rold, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 __ cmp( Rold, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2818
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 // raw int cas, used for compareAndSwap
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 enc_class enc_casi( iRegP mem, iRegL old, iRegL new) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 Register Rmem = reg_to_register_object($mem$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 Register Rold = reg_to_register_object($old$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 Register Rnew = reg_to_register_object($new$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2824
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 __ mov(Rnew, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 __ cas(Rmem, Rold, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 __ cmp( Rold, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2830
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 enc_class enc_lflags_ne_to_boolean( iRegI res ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 Register Rres = reg_to_register_object($res$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2833
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 __ mov(1, Rres);
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 __ movcc( Assembler::notEqual, false, Assembler::xcc, G0, Rres );
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2838
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 enc_class enc_iflags_ne_to_boolean( iRegI res ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 Register Rres = reg_to_register_object($res$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2841
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 __ mov(1, Rres);
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 __ movcc( Assembler::notEqual, false, Assembler::icc, G0, Rres );
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2846
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 enc_class floating_cmp ( iRegP dst, regF src1, regF src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 Register Rdst = reg_to_register_object($dst$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2850 FloatRegister Fsrc1 = $primary ? reg_to_SingleFloatRegister_object($src1$$reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
2851 : reg_to_DoubleFloatRegister_object($src1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 FloatRegister Fsrc2 = $primary ? reg_to_SingleFloatRegister_object($src2$$reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 : reg_to_DoubleFloatRegister_object($src2$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2854
a61af66fc99e Initial load
duke
parents:
diff changeset
2855 // Convert condition code fcc0 into -1,0,1; unordered reports less-than (-1)
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 __ float_cmp( $primary, -1, Fsrc1, Fsrc2, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2858
a61af66fc99e Initial load
duke
parents:
diff changeset
2859
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2860 enc_class enc_String_Compare(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 Label Ldone, Lloop;
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2863
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 Register str1_reg = reg_to_register_object($str1$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 Register str2_reg = reg_to_register_object($str2$$reg);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2866 Register cnt1_reg = reg_to_register_object($cnt1$$reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2867 Register cnt2_reg = reg_to_register_object($cnt2$$reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 Register result_reg = reg_to_register_object($result$$reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2869
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2870 assert(result_reg != str1_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2871 result_reg != str2_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2872 result_reg != cnt1_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2873 result_reg != cnt2_reg ,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2874 "need different registers");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2875
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 // Compute the minimum of the string lengths(str1_reg) and the
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 // difference of the string lengths (stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
2878
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 // See if the lengths are different, and calculate min in str1_reg.
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 // Stash diff in O7 in case we need it for a tie-breaker.
a61af66fc99e Initial load
duke
parents:
diff changeset
2881 Label Lskip;
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2882 __ subcc(cnt1_reg, cnt2_reg, O7);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2883 __ sll(cnt1_reg, exact_log2(sizeof(jchar)), cnt1_reg); // scale the limit
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 __ br(Assembler::greater, true, Assembler::pt, Lskip);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2885 // cnt2 is shorter, so use its count:
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2886 __ delayed()->sll(cnt2_reg, exact_log2(sizeof(jchar)), cnt1_reg); // scale the limit
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 __ bind(Lskip);
a61af66fc99e Initial load
duke
parents:
diff changeset
2888
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2889 // reallocate cnt1_reg, cnt2_reg, result_reg
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 // Note: limit_reg holds the string length pre-scaled by 2
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2891 Register limit_reg = cnt1_reg;
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2892 Register chr2_reg = cnt2_reg;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 Register chr1_reg = result_reg;
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2894 // str{12} are the base pointers
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2895
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 // Is the minimum length zero?
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 __ cmp(limit_reg, (int)(0 * sizeof(jchar))); // use cast to resolve overloading ambiguity
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2899 __ delayed()->mov(O7, result_reg); // result is difference in lengths
a61af66fc99e Initial load
duke
parents:
diff changeset
2900
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 // Load first characters
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2902 __ lduh(str1_reg, 0, chr1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2903 __ lduh(str2_reg, 0, chr2_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2904
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 // Compare first characters
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 __ subcc(chr1_reg, chr2_reg, chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 __ br(Assembler::notZero, false, Assembler::pt, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 assert(chr1_reg == result_reg, "result must be pre-placed");
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2910
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 // Check after comparing first character to see if strings are equivalent
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 Label LSkip2;
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 // Check if the strings start at same location
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2915 __ cmp(str1_reg, str2_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 __ brx(Assembler::notEqual, true, Assembler::pt, LSkip2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2918
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 // Check if the length difference is zero (in O7)
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 __ cmp(G0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 __ delayed()->mov(G0, result_reg); // result is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2923
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 // Strings might not be equal
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 __ bind(LSkip2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2927
13042
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2928 // We have no guarantee that on 64 bit the higher half of limit_reg is 0
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2929 __ signx(limit_reg);
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2930
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 __ subcc(limit_reg, 1 * sizeof(jchar), chr1_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 __ br(Assembler::equal, true, Assembler::pn, Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 __ delayed()->mov(O7, result_reg); // result is difference in lengths
a61af66fc99e Initial load
duke
parents:
diff changeset
2934
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2935 // Shift str1_reg and str2_reg to the end of the arrays, negate limit
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2936 __ add(str1_reg, limit_reg, str1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2937 __ add(str2_reg, limit_reg, str2_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 __ neg(chr1_reg, limit_reg); // limit = -(limit-2)
a61af66fc99e Initial load
duke
parents:
diff changeset
2939
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 // Compare the rest of the characters
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2941 __ lduh(str1_reg, limit_reg, chr1_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 __ bind(Lloop);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2943 // __ lduh(str1_reg, limit_reg, chr1_reg); // hoisted
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2944 __ lduh(str2_reg, limit_reg, chr2_reg);
0
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()->inccc(limit_reg, sizeof(jchar));
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 // annul LDUH if branch is not taken to prevent access past end of string
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 __ br(Assembler::notZero, true, Assembler::pt, Lloop);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2951 __ delayed()->lduh(str1_reg, limit_reg, chr1_reg); // hoisted
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2952
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 // If strings are equal up to min length, return the length difference.
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 __ mov(O7, result_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2955
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 // Otherwise, return the difference between the first mismatched chars.
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 __ bind(Ldone);
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
2959
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2960 enc_class enc_String_Equals(o0RegP str1, o1RegP str2, g3RegI cnt, notemp_iRegI result) %{
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2961 Label Lword_loop, Lpost_word, Lchar, Lchar_loop, Ldone;
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2962 MacroAssembler _masm(&cbuf);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2963
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2964 Register str1_reg = reg_to_register_object($str1$$reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2965 Register str2_reg = reg_to_register_object($str2$$reg);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2966 Register cnt_reg = reg_to_register_object($cnt$$reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2967 Register tmp1_reg = O7;
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2968 Register result_reg = reg_to_register_object($result$$reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2969
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2970 assert(result_reg != str1_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2971 result_reg != str2_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2972 result_reg != cnt_reg &&
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2973 result_reg != tmp1_reg ,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2974 "need different registers");
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2975
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2976 __ cmp(str1_reg, str2_reg); //same char[] ?
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2977 __ brx(Assembler::equal, true, Assembler::pn, Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2978 __ delayed()->add(G0, 1, result_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2979
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
2980 __ cmp_zero_and_br(Assembler::zero, cnt_reg, Ldone, true, Assembler::pn);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2981 __ delayed()->add(G0, 1, result_reg); // count == 0
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2982
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2983 //rename registers
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2984 Register limit_reg = cnt_reg;
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2985 Register chr1_reg = result_reg;
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2986 Register chr2_reg = tmp1_reg;
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2987
13042
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2988 // We have no guarantee that on 64 bit the higher half of limit_reg is 0
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2989 __ signx(limit_reg);
208ebea980f8 8027445: SIGSEGV at TestFloatingDecimal.testAppendToDouble()I
roland
parents: 13001
diff changeset
2990
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
2991 //check for alignment and position the pointers to the ends
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2992 __ or3(str1_reg, str2_reg, chr1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2993 __ andcc(chr1_reg, 0x3, chr1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2994 // notZero means at least one not 4-byte aligned.
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2995 // We could optimize the case when both arrays are not aligned
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2996 // but it is not frequent case and it requires additional checks.
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2997 __ br(Assembler::notZero, false, Assembler::pn, Lchar); // char by char compare
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2998 __ delayed()->sll(limit_reg, exact_log2(sizeof(jchar)), limit_reg); // set byte count
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
2999
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3000 // Compare char[] arrays aligned to 4 bytes.
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3001 __ char_arrays_equals(str1_reg, str2_reg, limit_reg, result_reg,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3002 chr1_reg, chr2_reg, Ldone);
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
3003 __ ba(Ldone);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3004 __ delayed()->add(G0, 1, result_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3005
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3006 // char by char compare
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3007 __ bind(Lchar);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3008 __ add(str1_reg, limit_reg, str1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3009 __ add(str2_reg, limit_reg, str2_reg);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3010 __ neg(limit_reg); //negate count
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3011
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3012 __ lduh(str1_reg, limit_reg, chr1_reg);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3013 // Lchar_loop
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3014 __ bind(Lchar_loop);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3015 __ lduh(str2_reg, limit_reg, chr2_reg);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3016 __ cmp(chr1_reg, chr2_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3017 __ br(Assembler::notEqual, true, Assembler::pt, Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3018 __ delayed()->mov(G0, result_reg); //not equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3019 __ inccc(limit_reg, sizeof(jchar));
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3020 // annul LDUH if branch is not taken to prevent access past end of string
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3021 __ br(Assembler::notZero, true, Assembler::pt, Lchar_loop);
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3022 __ delayed()->lduh(str1_reg, limit_reg, chr1_reg); // hoisted
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3023
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3024 __ add(G0, 1, result_reg); //equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3025
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3026 __ bind(Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3027 %}
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3028
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3029 enc_class enc_Array_Equals(o0RegP ary1, o1RegP ary2, g3RegP tmp1, notemp_iRegI result) %{
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3030 Label Lvector, Ldone, Lloop;
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3031 MacroAssembler _masm(&cbuf);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3032
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3033 Register ary1_reg = reg_to_register_object($ary1$$reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3034 Register ary2_reg = reg_to_register_object($ary2$$reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3035 Register tmp1_reg = reg_to_register_object($tmp1$$reg);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3036 Register tmp2_reg = O7;
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3037 Register result_reg = reg_to_register_object($result$$reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3038
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3039 int length_offset = arrayOopDesc::length_offset_in_bytes();
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3040 int base_offset = arrayOopDesc::base_offset_in_bytes(T_CHAR);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3041
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3042 // return true if the same array
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3043 __ cmp(ary1_reg, ary2_reg);
1016
d40f03b57795 6890984: Comparison of 2 arrays could cause VM crash
kvn
parents: 1007
diff changeset
3044 __ brx(Assembler::equal, true, Assembler::pn, Ldone);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3045 __ delayed()->add(G0, 1, result_reg); // equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3046
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3047 __ br_null(ary1_reg, true, Assembler::pn, Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3048 __ delayed()->mov(G0, result_reg); // not equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3049
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3050 __ br_null(ary2_reg, true, Assembler::pn, Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3051 __ delayed()->mov(G0, result_reg); // not equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3052
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3053 //load the lengths of arrays
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3054 __ ld(Address(ary1_reg, length_offset), tmp1_reg);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3055 __ ld(Address(ary2_reg, length_offset), tmp2_reg);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3056
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3057 // return false if the two arrays are not equal length
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3058 __ cmp(tmp1_reg, tmp2_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3059 __ br(Assembler::notEqual, true, Assembler::pn, Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3060 __ delayed()->mov(G0, result_reg); // not equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3061
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
3062 __ cmp_zero_and_br(Assembler::zero, tmp1_reg, Ldone, true, Assembler::pn);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3063 __ delayed()->add(G0, 1, result_reg); // zero-length arrays are equal
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3064
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3065 // load array addresses
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3066 __ add(ary1_reg, base_offset, ary1_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3067 __ add(ary2_reg, base_offset, ary2_reg);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3068
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3069 // renaming registers
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3070 Register chr1_reg = result_reg; // for characters in ary1
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3071 Register chr2_reg = tmp2_reg; // for characters in ary2
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3072 Register limit_reg = tmp1_reg; // length
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3073
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3074 // set byte count
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3075 __ sll(limit_reg, exact_log2(sizeof(jchar)), limit_reg);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3076
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3077 // Compare char[] arrays aligned to 4 bytes.
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3078 __ char_arrays_equals(ary1_reg, ary2_reg, limit_reg, result_reg,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
3079 chr1_reg, chr2_reg, Ldone);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3080 __ add(G0, 1, result_reg); // equals
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3081
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3082 __ bind(Ldone);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3083 %}
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
3084
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3085 enc_class enc_rethrow() %{
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
3086 cbuf.set_insts_mark();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 Register temp_reg = G3;
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3088 AddressLiteral rethrow_stub(OptoRuntime::rethrow_stub());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3089 assert(temp_reg != reg_to_register_object(R_I0_num), "temp must not break oop_reg");
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 __ save_frame(0);
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3093 AddressLiteral last_rethrow_addrlit(&last_rethrow);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3094 __ sethi(last_rethrow_addrlit, L1);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3095 Address addr(L1, last_rethrow_addrlit.low10());
10997
46c544b8fbfc 8008407: remove SPARC V8 support
morris
parents: 10169
diff changeset
3096 __ rdpc(L2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 __ inc(L2, 3 * BytesPerInstWord); // skip this & 2 more insns to point at jump_to
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3098 __ st_ptr(L2, addr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 __ restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 #endif
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
3101 __ JUMP(rethrow_stub, temp_reg, 0); // sethi;jmp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3104
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 enc_class emit_mem_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 // Generates the instruction LDUXA [o6,g0],#0x82,g0
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
3107 cbuf.insts()->emit_int32((unsigned int) 0xc0839040);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3109
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 enc_class emit_fadd_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 // Generates the instruction FMOVS f31,f31
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
3112 cbuf.insts()->emit_int32((unsigned int) 0xbfa0003f);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3113 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3114
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 enc_class emit_br_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3116 // Generates the instruction BPN,PN .
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
3117 cbuf.insts()->emit_int32((unsigned int) 0x00400000);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3119
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 enc_class enc_membar_acquire %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::LoadLoad) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3124
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 enc_class enc_membar_release %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 __ membar( Assembler::Membar_mask_bits(Assembler::LoadStore | Assembler::StoreStore) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3129
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 enc_class enc_membar_volatile %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3131 MacroAssembler _masm(&cbuf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 __ membar( Assembler::Membar_mask_bits(Assembler::StoreLoad) );
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3134
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3136
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 //----------FRAME--------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 // Definition of frame structure and management information.
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 // S T A C K L A Y O U T Allocators stack-slot number
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 // | (to get allocators register number
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 // G Owned by | | v add VMRegImpl::stack0)
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 // r CALLER | |
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 // o | +--------+ pad to even-align allocators stack-slot
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 // w V | pad0 | numbers; owned by CALLER
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 // t -----------+--------+----> Matcher::_in_arg_limit, unaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 // h ^ | in | 5
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 // | | args | 4 Holes in incoming args owned by SELF
a61af66fc99e Initial load
duke
parents:
diff changeset
3149 // | | | | 3
a61af66fc99e Initial load
duke
parents:
diff changeset
3150 // | | +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3151 // V | | old out| Empty on Intel, window on Sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
3152 // | old |preserve| Must be even aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 // | SP-+--------+----> Matcher::_old_SP, 8 (or 16 in LP64)-byte aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 // | | in | 3 area for Intel ret address
a61af66fc99e Initial load
duke
parents:
diff changeset
3155 // Owned by |preserve| Empty on Sparc.
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 // SELF +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 // | | pad2 | 2 pad to align old SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 // | +--------+ 1
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 // | | locks | 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3160 // | +--------+----> VMRegImpl::stack0, 8 (or 16 in LP64)-byte aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3161 // | | pad1 | 11 pad to align new SP
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 // | +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 // | | | 10
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 // | | spills | 9 spills
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 // V | | 8 (pad0 slot for callee)
a61af66fc99e Initial load
duke
parents:
diff changeset
3166 // -----------+--------+----> Matcher::_out_arg_limit, unaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 // ^ | out | 7
a61af66fc99e Initial load
duke
parents:
diff changeset
3168 // | | args | 6 Holes in outgoing args owned by CALLEE
a61af66fc99e Initial load
duke
parents:
diff changeset
3169 // Owned by +--------+
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 // CALLEE | new out| 6 Empty on Intel, window on Sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
3171 // | new |preserve| Must be even-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
3172 // | SP-+--------+----> Matcher::_new_SP, even aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 // | | |
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 // Note 1: Only region 8-11 is determined by the allocator. Region 0-5 is
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 // known from SELF's arguments and the Java calling convention.
a61af66fc99e Initial load
duke
parents:
diff changeset
3177 // Region 6-7 is determined per call site.
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 // Note 2: If the calling convention leaves holes in the incoming argument
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 // area, those holes are owned by SELF. Holes in the outgoing area
a61af66fc99e Initial load
duke
parents:
diff changeset
3180 // are owned by the CALLEE. Holes should not be nessecary in the
a61af66fc99e Initial load
duke
parents:
diff changeset
3181 // incoming area, as the Java calling convention is completely under
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 // the control of the AD file. Doubles can be sorted and packed to
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 // avoid holes. Holes in the outgoing arguments may be nessecary for
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 // varargs C calling conventions.
a61af66fc99e Initial load
duke
parents:
diff changeset
3185 // Note 3: Region 0-3 is even aligned, with pad2 as needed. Region 3-5 is
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 // even aligned with pad0 as needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 // Region 6 is even aligned. Region 6-7 is NOT even aligned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3188 // region 6-11 is even aligned; it may be padded out more so that
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 // the region from SP to FP meets the minimum stack alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
3190
a61af66fc99e Initial load
duke
parents:
diff changeset
3191 frame %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 // What direction does stack grow in (assumed to be same for native & Java)
a61af66fc99e Initial load
duke
parents:
diff changeset
3193 stack_direction(TOWARDS_LOW);
a61af66fc99e Initial load
duke
parents:
diff changeset
3194
a61af66fc99e Initial load
duke
parents:
diff changeset
3195 // These two registers define part of the calling convention
a61af66fc99e Initial load
duke
parents:
diff changeset
3196 // between compiled code and the interpreter.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
3197 inline_cache_reg(R_G5); // Inline Cache Register or Method* for I2C
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 interpreter_method_oop_reg(R_G5); // Method Oop Register when calling interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
3199
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 // Optional: name the operand used by cisc-spilling to access [stack_pointer + offset]
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 cisc_spilling_operand_name(indOffset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3202
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 // Number of stack slots consumed by a Monitor enter
a61af66fc99e Initial load
duke
parents:
diff changeset
3204 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 sync_stack_slots(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3207 sync_stack_slots(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3208 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3209
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 // Compiled code's Frame Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 frame_pointer(R_SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3212
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 // Stack alignment requirement
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 stack_alignment(StackAlignmentInBytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3215 // LP64: Alignment size in bytes (128-bit -> 16 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 // !LP64: Alignment size in bytes (64-bit -> 8 bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
3217
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 // Number of stack slots between incoming argument block and the start of
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 // a new frame. The PROLOG must add this many slots to the stack. The
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 // EPILOG must remove this many slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 in_preserve_stack_slots(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3222
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 // Number of outgoing stack slots killed above the out_preserve_stack_slots
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 // for calls to C. Supports the var-args backing area for register parms.
a61af66fc99e Initial load
duke
parents:
diff changeset
3225 // ADLC doesn't support parsing expressions, so I folded the math by hand.
a61af66fc99e Initial load
duke
parents:
diff changeset
3226 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3227 // (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
3228 varargs_C_out_slots_killed(12);
a61af66fc99e Initial load
duke
parents:
diff changeset
3229 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 // (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
3231 varargs_C_out_slots_killed( 7);
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3233
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 // The after-PROLOG location of the return address. Location of
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 // return address specifies a type (REG or STACK) and a number
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 // representing the register number (i.e. - use a register name) or
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 // stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 return_addr(REG R_I7); // Ret Addr is in register I7
a61af66fc99e Initial load
duke
parents:
diff changeset
3239
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 // Body of function which returns an OptoRegs array locating
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 // arguments either in registers or in stack slots for calling
a61af66fc99e Initial load
duke
parents:
diff changeset
3242 // java
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 calling_convention %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 (void) SharedRuntime::java_calling_convention(sig_bt, regs, length, is_outgoing);
a61af66fc99e Initial load
duke
parents:
diff changeset
3245
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3247
a61af66fc99e Initial load
duke
parents:
diff changeset
3248 // Body of function which returns an OptoRegs array locating
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 // arguments either in registers or in stack slots for callin
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 // C.
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 c_calling_convention %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 // This is obviously always outgoing
14416
6a936747b569 8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents: 12056
diff changeset
3253 (void) SharedRuntime::c_calling_convention(sig_bt, regs, /*regs2=*/NULL, length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3255
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 // Location of native (C/C++) and interpreter return values. This is specified to
a61af66fc99e Initial load
duke
parents:
diff changeset
3257 // be the same as Java. In the 32-bit VM, long values are actually returned from
a61af66fc99e Initial load
duke
parents:
diff changeset
3258 // native calls in O0:O1 and returned to the interpreter in I0:I1. The copying
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 // to and from the register pairs is done by the appropriate call and epilog
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 // opcodes. This simplifies the register allocator.
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 c_return_value %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3262 assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3264 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
3265 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
3266 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
3267 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
3268 #else // !_LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3269 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
3270 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
3271 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
3272 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
3273 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
a61af66fc99e Initial load
duke
parents:
diff changeset
3275 (is_outgoing?lo_out:lo_in)[ideal_reg] );
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3277
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 // Location of compiled Java return values. Same as C
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 return_value %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 assert( ideal_reg >= Op_RegI && ideal_reg <= Op_RegL, "only return normal values" );
a61af66fc99e Initial load
duke
parents:
diff changeset
3281 #ifdef _LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3282 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
3283 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
3284 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
3285 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
3286 #else // !_LP64
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3287 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
3288 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
3289 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
3290 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
3291 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3292 return OptoRegPair( (is_outgoing?hi_out:hi_in)[ideal_reg],
a61af66fc99e Initial load
duke
parents:
diff changeset
3293 (is_outgoing?lo_out:lo_in)[ideal_reg] );
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3295
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3297
a61af66fc99e Initial load
duke
parents:
diff changeset
3298
a61af66fc99e Initial load
duke
parents:
diff changeset
3299 //----------ATTRIBUTES---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 //----------Operand Attributes-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 op_attrib op_cost(1); // Required cost attribute
a61af66fc99e Initial load
duke
parents:
diff changeset
3302
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 //----------Instruction Attributes---------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 ins_attrib ins_cost(DEFAULT_COST); // Required cost attribute
3842
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
3305 ins_attrib ins_size(32); // Required size attribute (in bits)
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3306 ins_attrib ins_avoid_back_to_back(0); // instruction should not be generated back to back
3842
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
3307 ins_attrib ins_short_branch(0); // Required flag: is this instruction a
c7b60b601eb4 7069452: Cleanup NodeFlags
kvn
parents: 3839
diff changeset
3308 // non-matching short branch variant of some
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3309 // long branch?
a61af66fc99e Initial load
duke
parents:
diff changeset
3310
a61af66fc99e Initial load
duke
parents:
diff changeset
3311 //----------OPERANDS-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3312 // Operand definitions must precede instruction definitions for correct parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
3313 // in the ADLC because operands constitute user defined types which are used in
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 // instruction definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
3315
a61af66fc99e Initial load
duke
parents:
diff changeset
3316 //----------Simple Operands----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
3317 // Immediate Operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3318 // Integer Immediate: 32-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3319 operand immI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3321
a61af66fc99e Initial load
duke
parents:
diff changeset
3322 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3325 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3326 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3327
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3328 // Integer Immediate: 8-bit
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3329 operand immI8() %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
3330 predicate(Assembler::is_simm8(n->get_int()));
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3331 match(ConI);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3332 op_cost(0);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3333 format %{ %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3334 interface(CONST_INTER);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3335 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3336
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 // Integer Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 operand immI13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 predicate(Assembler::is_simm13(n->get_int()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3341 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3342
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3345 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3346
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3347 // Integer Immediate: 13-bit minus 7
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3348 operand immI13m7() %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3349 predicate((-4096 < n->get_int()) && ((n->get_int() + 7) <= 4095));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3350 match(ConI);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3351 op_cost(0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3352
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3353 format %{ %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3354 interface(CONST_INTER);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3355 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3356
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3357 // Integer Immediate: 16-bit
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3358 operand immI16() %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
3359 predicate(Assembler::is_simm16(n->get_int()));
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3360 match(ConI);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3361 op_cost(0);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3362 format %{ %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3363 interface(CONST_INTER);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3364 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
3365
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3366 // Unsigned (positive) Integer Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3367 operand immU13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3368 predicate((0 <= n->get_int()) && Assembler::is_simm13(n->get_int()));
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: 6-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3377 operand immU6() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 predicate(n->get_int() >= 0 && n->get_int() <= 63);
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 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3383 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3384
a61af66fc99e Initial load
duke
parents:
diff changeset
3385 // Integer Immediate: 11-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 operand immI11() %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
3387 predicate(Assembler::is_simm11(n->get_int()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3388 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3389 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3391 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3393
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3394 // Integer Immediate: 5-bit
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3395 operand immI5() %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
3396 predicate(Assembler::is_simm5(n->get_int()));
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3397 match(ConI);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3398 op_cost(0);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3399 format %{ %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3400 interface(CONST_INTER);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3401 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3402
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 // Integer Immediate: 0-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 operand immI0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3405 predicate(n->get_int() == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3408
a61af66fc99e Initial load
duke
parents:
diff changeset
3409 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3412
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 // Integer Immediate: the value 10
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 operand immI10() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3415 predicate(n->get_int() == 10);
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3417 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3418
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3420 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3422
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 // Integer Immediate: the values 0-31
a61af66fc99e Initial load
duke
parents:
diff changeset
3424 operand immU5() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3425 predicate(n->get_int() >= 0 && n->get_int() <= 31);
a61af66fc99e Initial load
duke
parents:
diff changeset
3426 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3427 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3428
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3430 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3432
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 // Integer Immediate: the values 1-31
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 operand immI_1_31() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 predicate(n->get_int() >= 1 && n->get_int() <= 31);
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3438
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
a61af66fc99e Initial load
duke
parents:
diff changeset
3443 // Integer Immediate: the values 32-63
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 operand immI_32_63() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3445 predicate(n->get_int() >= 32 && n->get_int() <= 63);
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3447 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3448
a61af66fc99e Initial load
duke
parents:
diff changeset
3449 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3450 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3451 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3452
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3453 // Immediates for special shifts (sign extend)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3454
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3455 // Integer Immediate: the value 16
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3456 operand immI_16() %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3457 predicate(n->get_int() == 16);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3458 match(ConI);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3459 op_cost(0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3460
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3461 format %{ %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3462 interface(CONST_INTER);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3463 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3464
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3465 // Integer Immediate: the value 24
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3466 operand immI_24() %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3467 predicate(n->get_int() == 24);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3468 match(ConI);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3469 op_cost(0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3470
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3471 format %{ %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3472 interface(CONST_INTER);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3473 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3474
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3475 // Integer Immediate: the value 255
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 operand immI_255() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3477 predicate( n->get_int() == 255 );
a61af66fc99e Initial load
duke
parents:
diff changeset
3478 match(ConI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3479 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3480
a61af66fc99e Initial load
duke
parents:
diff changeset
3481 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3482 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3483 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3484
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3485 // Integer Immediate: the value 65535
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3486 operand immI_65535() %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3487 predicate(n->get_int() == 65535);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3488 match(ConI);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3489 op_cost(0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3490
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3491 format %{ %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3492 interface(CONST_INTER);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3493 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3494
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3495 // Long Immediate: the value FF
a61af66fc99e Initial load
duke
parents:
diff changeset
3496 operand immL_FF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 predicate( n->get_long() == 0xFFL );
a61af66fc99e Initial load
duke
parents:
diff changeset
3498 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3499 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3500
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3502 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3504
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 // Long Immediate: the value FFFF
a61af66fc99e Initial load
duke
parents:
diff changeset
3506 operand immL_FFFF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3507 predicate( n->get_long() == 0xFFFFL );
a61af66fc99e Initial load
duke
parents:
diff changeset
3508 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3509 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3510
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3514
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 // Pointer Immediate: 32 or 64-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 operand immP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3518
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 op_cost(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3521 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3524
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3525 #ifdef _LP64
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3526 // Pointer Immediate: 64-bit
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3527 operand immP_set() %{
2080
c04052fd6ae1 7006505: Use kstat info to identify SPARC processor
kvn
parents: 2076
diff changeset
3528 predicate(!VM_Version::is_niagara_plus());
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3529 match(ConP);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3530
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3531 op_cost(5);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3532 // formats are generated automatically for constants and base registers
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3533 format %{ %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3534 interface(CONST_INTER);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3535 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3536
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3537 // Pointer Immediate: 64-bit
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3538 // From Niagara2 processors on a load should be better than materializing.
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3539 operand immP_load() %{
2080
c04052fd6ae1 7006505: Use kstat info to identify SPARC processor
kvn
parents: 2076
diff changeset
3540 predicate(VM_Version::is_niagara_plus() && (n->bottom_type()->isa_oop_ptr() || (MacroAssembler::insts_for_set(n->get_ptr()) > 3)));
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3541 match(ConP);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3542
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3543 op_cost(5);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3544 // formats are generated automatically for constants and base registers
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3545 format %{ %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3546 interface(CONST_INTER);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3547 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3548
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3549 // Pointer Immediate: 64-bit
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3550 operand immP_no_oop_cheap() %{
2080
c04052fd6ae1 7006505: Use kstat info to identify SPARC processor
kvn
parents: 2076
diff changeset
3551 predicate(VM_Version::is_niagara_plus() && !n->bottom_type()->isa_oop_ptr() && (MacroAssembler::insts_for_set(n->get_ptr()) <= 3));
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3552 match(ConP);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3553
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3554 op_cost(5);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3555 // formats are generated automatically for constants and base registers
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3556 format %{ %}
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3557 interface(CONST_INTER);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3558 %}
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3559 #endif
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
3560
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3561 operand immP13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3562 predicate((-4096 < n->get_ptr()) && (n->get_ptr() <= 4095));
a61af66fc99e Initial load
duke
parents:
diff changeset
3563 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3564 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3565
a61af66fc99e Initial load
duke
parents:
diff changeset
3566 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3567 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3568 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3569
a61af66fc99e Initial load
duke
parents:
diff changeset
3570 operand immP0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3571 predicate(n->get_ptr() == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3572 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3573 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3574
a61af66fc99e Initial load
duke
parents:
diff changeset
3575 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3576 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3577 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3578
a61af66fc99e Initial load
duke
parents:
diff changeset
3579 operand immP_poll() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3580 predicate(n->get_ptr() != 0 && n->get_ptr() == (intptr_t)os::get_polling_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
3581 match(ConP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3582
a61af66fc99e Initial load
duke
parents:
diff changeset
3583 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3584 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3585 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3586 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3587
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3588 // Pointer Immediate
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3589 operand immN()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3590 %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3591 match(ConN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3592
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3593 op_cost(10);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3594 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3595 interface(CONST_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3596 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3597
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3598 operand immNKlass()
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3599 %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3600 match(ConNKlass);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3601
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3602 op_cost(10);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3603 format %{ %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3604 interface(CONST_INTER);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3605 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
3606
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3607 // NULL Pointer Immediate
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3608 operand immN0()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3609 %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3610 predicate(n->get_narrowcon() == 0);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3611 match(ConN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3612
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3613 op_cost(0);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3614 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3615 interface(CONST_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3616 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3617
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3618 operand immL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3619 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 op_cost(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
3621 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3623 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3625
a61af66fc99e Initial load
duke
parents:
diff changeset
3626 operand immL0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3627 predicate(n->get_long() == 0L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3628 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 // formats are generated automatically for constants and base registers
a61af66fc99e Initial load
duke
parents:
diff changeset
3631 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3632 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3634
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3635 // Integer Immediate: 5-bit
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3636 operand immL5() %{
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
3637 predicate(n->get_long() == (int)n->get_long() && Assembler::is_simm5((int)n->get_long()));
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3638 match(ConL);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3639 op_cost(0);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3640 format %{ %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3641 interface(CONST_INTER);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3642 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
3643
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3644 // Long Immediate: 13-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 operand immL13() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3646 predicate((-4096L < n->get_long()) && (n->get_long() <= 4095L));
a61af66fc99e Initial load
duke
parents:
diff changeset
3647 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3648 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3649
a61af66fc99e Initial load
duke
parents:
diff changeset
3650 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3651 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3653
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3654 // Long Immediate: 13-bit minus 7
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3655 operand immL13m7() %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3656 predicate((-4096L < n->get_long()) && ((n->get_long() + 7L) <= 4095L));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3657 match(ConL);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3658 op_cost(0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3659
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3660 format %{ %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3661 interface(CONST_INTER);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3662 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
3663
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3664 // Long Immediate: low 32-bit mask
a61af66fc99e Initial load
duke
parents:
diff changeset
3665 operand immL_32bits() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3666 predicate(n->get_long() == 0xFFFFFFFFL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3667 match(ConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3668 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3669
a61af66fc99e Initial load
duke
parents:
diff changeset
3670 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3671 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3672 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3673
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3674 // Long Immediate: cheap (materialize in <= 3 instructions)
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3675 operand immL_cheap() %{
2080
c04052fd6ae1 7006505: Use kstat info to identify SPARC processor
kvn
parents: 2076
diff changeset
3676 predicate(!VM_Version::is_niagara_plus() || MacroAssembler::insts_for_set64(n->get_long()) <= 3);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3677 match(ConL);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3678 op_cost(0);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3679
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3680 format %{ %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3681 interface(CONST_INTER);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3682 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3683
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3684 // Long Immediate: expensive (materialize in > 3 instructions)
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3685 operand immL_expensive() %{
2080
c04052fd6ae1 7006505: Use kstat info to identify SPARC processor
kvn
parents: 2076
diff changeset
3686 predicate(VM_Version::is_niagara_plus() && MacroAssembler::insts_for_set64(n->get_long()) > 3);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3687 match(ConL);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3688 op_cost(0);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3689
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3690 format %{ %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3691 interface(CONST_INTER);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3692 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
3693
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3694 // Double Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
3695 operand immD() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3696 match(ConD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3697
a61af66fc99e Initial load
duke
parents:
diff changeset
3698 op_cost(40);
a61af66fc99e Initial load
duke
parents:
diff changeset
3699 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3700 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3701 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3702
a61af66fc99e Initial load
duke
parents:
diff changeset
3703 operand immD0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3704 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
3705 // on 64-bit architectures this comparision is faster
a61af66fc99e Initial load
duke
parents:
diff changeset
3706 predicate(jlong_cast(n->getd()) == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3707 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
3708 predicate((n->getd() == 0) && (fpclass(n->getd()) == FP_PZERO));
a61af66fc99e Initial load
duke
parents:
diff changeset
3709 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3710 match(ConD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3711
a61af66fc99e Initial load
duke
parents:
diff changeset
3712 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3713 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3714 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3715 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3716
a61af66fc99e Initial load
duke
parents:
diff changeset
3717 // Float Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
3718 operand immF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3719 match(ConF);
a61af66fc99e Initial load
duke
parents:
diff changeset
3720
a61af66fc99e Initial load
duke
parents:
diff changeset
3721 op_cost(20);
a61af66fc99e Initial load
duke
parents:
diff changeset
3722 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3723 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3724 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3725
a61af66fc99e Initial load
duke
parents:
diff changeset
3726 // Float Immediate: 0
a61af66fc99e Initial load
duke
parents:
diff changeset
3727 operand immF0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3728 predicate((n->getf() == 0) && (fpclass(n->getf()) == FP_PZERO));
a61af66fc99e Initial load
duke
parents:
diff changeset
3729 match(ConF);
a61af66fc99e Initial load
duke
parents:
diff changeset
3730
a61af66fc99e Initial load
duke
parents:
diff changeset
3731 op_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3732 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3733 interface(CONST_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3734 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3735
a61af66fc99e Initial load
duke
parents:
diff changeset
3736 // Integer Register Operands
a61af66fc99e Initial load
duke
parents:
diff changeset
3737 // Integer Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3738 operand iRegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3739 constraint(ALLOC_IN_RC(int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3740 match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3741
a61af66fc99e Initial load
duke
parents:
diff changeset
3742 match(notemp_iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3743 match(g1RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3744 match(o0RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3745 match(iRegIsafe);
a61af66fc99e Initial load
duke
parents:
diff changeset
3746
a61af66fc99e Initial load
duke
parents:
diff changeset
3747 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3748 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3749 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3750
a61af66fc99e Initial load
duke
parents:
diff changeset
3751 operand notemp_iRegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3752 constraint(ALLOC_IN_RC(notemp_int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3753 match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3754
a61af66fc99e Initial load
duke
parents:
diff changeset
3755 match(o0RegI);
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 o0RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3762 constraint(ALLOC_IN_RC(o0_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3763 match(iRegI);
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
a61af66fc99e Initial load
duke
parents:
diff changeset
3769 // Pointer Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3770 operand iRegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3771 constraint(ALLOC_IN_RC(ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3772 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3773
a61af66fc99e Initial load
duke
parents:
diff changeset
3774 match(lock_ptr_RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3775 match(g1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3776 match(g2RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3777 match(g3RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3778 match(g4RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3779 match(i0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3780 match(o0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3781 match(o1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3782 match(l7RegP);
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 operand sp_ptr_RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3789 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3790 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3791 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3792
a61af66fc99e Initial load
duke
parents:
diff changeset
3793 format %{ %}
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 operand lock_ptr_RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3798 constraint(ALLOC_IN_RC(lock_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3799 match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3800 match(i0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3801 match(o0RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3802 match(o1RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3803 match(l7RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3804
a61af66fc99e Initial load
duke
parents:
diff changeset
3805 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3806 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3807 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3808
a61af66fc99e Initial load
duke
parents:
diff changeset
3809 operand g1RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3810 constraint(ALLOC_IN_RC(g1_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3811 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3812
a61af66fc99e Initial load
duke
parents:
diff changeset
3813 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3814 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3815 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3816
a61af66fc99e Initial load
duke
parents:
diff changeset
3817 operand g2RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3818 constraint(ALLOC_IN_RC(g2_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3819 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3820
a61af66fc99e Initial load
duke
parents:
diff changeset
3821 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3822 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3823 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3824
a61af66fc99e Initial load
duke
parents:
diff changeset
3825 operand g3RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3826 constraint(ALLOC_IN_RC(g3_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3827 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3828
a61af66fc99e Initial load
duke
parents:
diff changeset
3829 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3830 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3831 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3832
a61af66fc99e Initial load
duke
parents:
diff changeset
3833 operand g1RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3834 constraint(ALLOC_IN_RC(g1_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3835 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3836
a61af66fc99e Initial load
duke
parents:
diff changeset
3837 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3838 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3839 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3840
a61af66fc99e Initial load
duke
parents:
diff changeset
3841 operand g3RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3842 constraint(ALLOC_IN_RC(g3_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3843 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3844
a61af66fc99e Initial load
duke
parents:
diff changeset
3845 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3846 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3847 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3848
a61af66fc99e Initial load
duke
parents:
diff changeset
3849 operand g4RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3850 constraint(ALLOC_IN_RC(g4_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3851 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3852
a61af66fc99e Initial load
duke
parents:
diff changeset
3853 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3854 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3855 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3856
a61af66fc99e Initial load
duke
parents:
diff changeset
3857 operand g4RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3858 constraint(ALLOC_IN_RC(g4_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3859 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3860
a61af66fc99e Initial load
duke
parents:
diff changeset
3861 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3862 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3863 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3864
a61af66fc99e Initial load
duke
parents:
diff changeset
3865 operand i0RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3866 constraint(ALLOC_IN_RC(i0_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3867 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3868
a61af66fc99e Initial load
duke
parents:
diff changeset
3869 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3870 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3871 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3872
a61af66fc99e Initial load
duke
parents:
diff changeset
3873 operand o0RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3874 constraint(ALLOC_IN_RC(o0_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3875 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3876
a61af66fc99e Initial load
duke
parents:
diff changeset
3877 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3878 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3879 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3880
a61af66fc99e Initial load
duke
parents:
diff changeset
3881 operand o1RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3882 constraint(ALLOC_IN_RC(o1_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3883 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3884
a61af66fc99e Initial load
duke
parents:
diff changeset
3885 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3886 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3887 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3888
a61af66fc99e Initial load
duke
parents:
diff changeset
3889 operand o2RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3890 constraint(ALLOC_IN_RC(o2_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3891 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3892
a61af66fc99e Initial load
duke
parents:
diff changeset
3893 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3894 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3895 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3896
a61af66fc99e Initial load
duke
parents:
diff changeset
3897 operand o7RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3898 constraint(ALLOC_IN_RC(o7_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3899 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3900
a61af66fc99e Initial load
duke
parents:
diff changeset
3901 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3902 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3903 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3904
a61af66fc99e Initial load
duke
parents:
diff changeset
3905 operand l7RegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3906 constraint(ALLOC_IN_RC(l7_regP));
a61af66fc99e Initial load
duke
parents:
diff changeset
3907 match(iRegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
3908
a61af66fc99e Initial load
duke
parents:
diff changeset
3909 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3910 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3911 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3912
a61af66fc99e Initial load
duke
parents:
diff changeset
3913 operand o7RegI() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3914 constraint(ALLOC_IN_RC(o7_regI));
a61af66fc99e Initial load
duke
parents:
diff changeset
3915 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3916
a61af66fc99e Initial load
duke
parents:
diff changeset
3917 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3918 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3919 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3920
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3921 operand iRegN() %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3922 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
3923 match(RegN);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3924
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3925 format %{ %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3926 interface(REG_INTER);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3927 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
3928
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3929 // Long Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3930 operand iRegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3931 constraint(ALLOC_IN_RC(long_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3932 match(RegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3933
a61af66fc99e Initial load
duke
parents:
diff changeset
3934 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3935 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3936 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3937
a61af66fc99e Initial load
duke
parents:
diff changeset
3938 operand o2RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3939 constraint(ALLOC_IN_RC(o2_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3940 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3941
a61af66fc99e Initial load
duke
parents:
diff changeset
3942 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3943 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3944 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3945
a61af66fc99e Initial load
duke
parents:
diff changeset
3946 operand o7RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3947 constraint(ALLOC_IN_RC(o7_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3948 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3949
a61af66fc99e Initial load
duke
parents:
diff changeset
3950 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3951 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3952 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3953
a61af66fc99e Initial load
duke
parents:
diff changeset
3954 operand g1RegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3955 constraint(ALLOC_IN_RC(g1_regL));
a61af66fc99e Initial load
duke
parents:
diff changeset
3956 match(iRegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3957
a61af66fc99e Initial load
duke
parents:
diff changeset
3958 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3959 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3960 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3961
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3962 operand g3RegL() %{
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3963 constraint(ALLOC_IN_RC(g3_regL));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3964 match(iRegL);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3965
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3966 format %{ %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3967 interface(REG_INTER);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3968 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
3969
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3970 // Int Register safe
a61af66fc99e Initial load
duke
parents:
diff changeset
3971 // This is 64bit safe
a61af66fc99e Initial load
duke
parents:
diff changeset
3972 operand iRegIsafe() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3973 constraint(ALLOC_IN_RC(long_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
3974
a61af66fc99e Initial load
duke
parents:
diff changeset
3975 match(iRegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
3976
a61af66fc99e Initial load
duke
parents:
diff changeset
3977 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3978 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3979 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3980
a61af66fc99e Initial load
duke
parents:
diff changeset
3981 // Condition Code Flag Register
a61af66fc99e Initial load
duke
parents:
diff changeset
3982 operand flagsReg() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3983 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3984 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3985
a61af66fc99e Initial load
duke
parents:
diff changeset
3986 format %{ "ccr" %} // both ICC and XCC
a61af66fc99e Initial load
duke
parents:
diff changeset
3987 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3988 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3989
a61af66fc99e Initial load
duke
parents:
diff changeset
3990 // Condition Code Register, unsigned comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
3991 operand flagsRegU() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
3992 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
3993 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
3994
a61af66fc99e Initial load
duke
parents:
diff changeset
3995 format %{ "icc_U" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3996 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
3997 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
3998
a61af66fc99e Initial load
duke
parents:
diff changeset
3999 // Condition Code Register, pointer comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
4000 operand flagsRegP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4001 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4002 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4003
a61af66fc99e Initial load
duke
parents:
diff changeset
4004 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
4005 format %{ "xcc_P" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4006 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
4007 format %{ "icc_P" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4008 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4009 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4010 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4011
a61af66fc99e Initial load
duke
parents:
diff changeset
4012 // Condition Code Register, long comparisons.
a61af66fc99e Initial load
duke
parents:
diff changeset
4013 operand flagsRegL() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4014 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4015 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4016
a61af66fc99e Initial load
duke
parents:
diff changeset
4017 format %{ "xcc_L" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4018 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4019 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4020
a61af66fc99e Initial load
duke
parents:
diff changeset
4021 // Condition Code Register, floating comparisons, unordered same as "less".
a61af66fc99e Initial load
duke
parents:
diff changeset
4022 operand flagsRegF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4023 constraint(ALLOC_IN_RC(float_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4024 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4025 match(flagsRegF0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4026
a61af66fc99e Initial load
duke
parents:
diff changeset
4027 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4028 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4029 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4030
a61af66fc99e Initial load
duke
parents:
diff changeset
4031 operand flagsRegF0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4032 constraint(ALLOC_IN_RC(float_flag0));
a61af66fc99e Initial load
duke
parents:
diff changeset
4033 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4034
a61af66fc99e Initial load
duke
parents:
diff changeset
4035 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4036 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4037 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4038
a61af66fc99e Initial load
duke
parents:
diff changeset
4039
a61af66fc99e Initial load
duke
parents:
diff changeset
4040 // Condition Code Flag Register used by long compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4041 operand flagsReg_long_LTGE() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4042 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4043 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4044 format %{ "icc_LTGE" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4045 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4046 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4047 operand flagsReg_long_EQNE() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4048 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4049 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4050 format %{ "icc_EQNE" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4051 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4052 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4053 operand flagsReg_long_LEGT() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4054 constraint(ALLOC_IN_RC(int_flags));
a61af66fc99e Initial load
duke
parents:
diff changeset
4055 match(RegFlags);
a61af66fc99e Initial load
duke
parents:
diff changeset
4056 format %{ "icc_LEGT" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4057 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4058 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4059
a61af66fc99e Initial load
duke
parents:
diff changeset
4060
a61af66fc99e Initial load
duke
parents:
diff changeset
4061 operand regD() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4062 constraint(ALLOC_IN_RC(dflt_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4063 match(RegD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4064
551
6c4cda924d2e 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 420
diff changeset
4065 match(regD_low);
6c4cda924d2e 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 420
diff changeset
4066
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4067 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4068 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4069 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4070
a61af66fc99e Initial load
duke
parents:
diff changeset
4071 operand regF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4072 constraint(ALLOC_IN_RC(sflt_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4073 match(RegF);
a61af66fc99e Initial load
duke
parents:
diff changeset
4074
a61af66fc99e Initial load
duke
parents:
diff changeset
4075 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4076 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4077 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4078
a61af66fc99e Initial load
duke
parents:
diff changeset
4079 operand regD_low() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4080 constraint(ALLOC_IN_RC(dflt_low_reg));
551
6c4cda924d2e 6790182: matcher.cpp:1375: assert(false,"bad AD file")
kvn
parents: 420
diff changeset
4081 match(regD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4082
a61af66fc99e Initial load
duke
parents:
diff changeset
4083 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4084 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4085 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4086
a61af66fc99e Initial load
duke
parents:
diff changeset
4087 // Special Registers
a61af66fc99e Initial load
duke
parents:
diff changeset
4088
a61af66fc99e Initial load
duke
parents:
diff changeset
4089 // Method Register
a61af66fc99e Initial load
duke
parents:
diff changeset
4090 operand inline_cache_regP(iRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4091 constraint(ALLOC_IN_RC(g5_regP)); // G5=inline_cache_reg but uses 2 bits instead of 1
a61af66fc99e Initial load
duke
parents:
diff changeset
4092 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4093 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4094 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4095 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4096
a61af66fc99e Initial load
duke
parents:
diff changeset
4097 operand interpreter_method_oop_regP(iRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4098 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
4099 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4100 format %{ %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4101 interface(REG_INTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
4102 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4103
a61af66fc99e Initial load
duke
parents:
diff changeset
4104
a61af66fc99e Initial load
duke
parents:
diff changeset
4105 //----------Complex Operands---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4106 // Indirect Memory Reference
a61af66fc99e Initial load
duke
parents:
diff changeset
4107 operand indirect(sp_ptr_RegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4108 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4109 match(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4110
a61af66fc99e Initial load
duke
parents:
diff changeset
4111 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4112 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4113 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4114 base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4115 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4116 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4117 disp(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4118 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4119 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4120
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4121 // Indirect with simm13 Offset
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4122 operand indOffset13(sp_ptr_RegP reg, immX13 offset) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4123 constraint(ALLOC_IN_RC(sp_ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4124 match(AddP reg offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
4125
a61af66fc99e Initial load
duke
parents:
diff changeset
4126 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4127 format %{ "[$reg + $offset]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4128 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4129 base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4130 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4131 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4132 disp($offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
4133 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4134 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4135
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4136 // Indirect with simm13 Offset minus 7
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4137 operand indOffset13m7(sp_ptr_RegP reg, immX13m7 offset) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4138 constraint(ALLOC_IN_RC(sp_ptr_reg));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4139 match(AddP reg offset);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4140
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4141 op_cost(100);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4142 format %{ "[$reg + $offset]" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4143 interface(MEMORY_INTER) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4144 base($reg);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4145 index(0x0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4146 scale(0x0);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4147 disp($offset);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4148 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4149 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
4150
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4151 // Note: Intel has a swapped version also, like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
4152 //operand indOffsetX(iRegI reg, immP offset) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4153 // constraint(ALLOC_IN_RC(int_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4154 // match(AddP offset reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4155 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4156 // op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4157 // format %{ "[$reg + $offset]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4158 // interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4159 // base($reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
4160 // index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4161 // scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4162 // disp($offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
4163 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4164 //%}
a61af66fc99e Initial load
duke
parents:
diff changeset
4165 //// However, it doesn't make sense for SPARC, since
a61af66fc99e Initial load
duke
parents:
diff changeset
4166 // we have no particularly good way to embed oops in
a61af66fc99e Initial load
duke
parents:
diff changeset
4167 // single instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
4168
a61af66fc99e Initial load
duke
parents:
diff changeset
4169 // Indirect with Register Index
a61af66fc99e Initial load
duke
parents:
diff changeset
4170 operand indIndex(iRegP addr, iRegX index) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4171 constraint(ALLOC_IN_RC(ptr_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
4172 match(AddP addr index);
a61af66fc99e Initial load
duke
parents:
diff changeset
4173
a61af66fc99e Initial load
duke
parents:
diff changeset
4174 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4175 format %{ "[$addr + $index]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4176 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4177 base($addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
4178 index($index);
a61af66fc99e Initial load
duke
parents:
diff changeset
4179 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4180 disp(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4181 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4182 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4183
a61af66fc99e Initial load
duke
parents:
diff changeset
4184 //----------Special Memory Operands--------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4185 // Stack Slot Operand - This operand is used for loading and storing temporary
a61af66fc99e Initial load
duke
parents:
diff changeset
4186 // values on the stack where a match requires a value to
a61af66fc99e Initial load
duke
parents:
diff changeset
4187 // flow through memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
4188 operand stackSlotI(sRegI reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4189 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4190 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4191 //match(RegI);
a61af66fc99e Initial load
duke
parents:
diff changeset
4192 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4193 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4194 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4195 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4196 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4197 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4198 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4199 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4200
a61af66fc99e Initial load
duke
parents:
diff changeset
4201 operand stackSlotP(sRegP reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4202 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4203 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4204 //match(RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
4205 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4206 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4207 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4208 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4209 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4210 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4211 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4212 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4213
a61af66fc99e Initial load
duke
parents:
diff changeset
4214 operand stackSlotF(sRegF reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4215 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4216 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4217 //match(RegF);
a61af66fc99e Initial load
duke
parents:
diff changeset
4218 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4219 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4220 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4221 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4222 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4223 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4224 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4225 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4226 operand stackSlotD(sRegD reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4227 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4228 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4229 //match(RegD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4230 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4231 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4232 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4233 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4234 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4235 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4236 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4237 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4238 operand stackSlotL(sRegL reg) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4239 constraint(ALLOC_IN_RC(stack_slots));
a61af66fc99e Initial load
duke
parents:
diff changeset
4240 op_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
4241 //match(RegL);
a61af66fc99e Initial load
duke
parents:
diff changeset
4242 format %{ "[$reg]" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4243 interface(MEMORY_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4244 base(0xE); // R_SP
a61af66fc99e Initial load
duke
parents:
diff changeset
4245 index(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4246 scale(0x0);
a61af66fc99e Initial load
duke
parents:
diff changeset
4247 disp($reg); // Stack Offset
a61af66fc99e Initial load
duke
parents:
diff changeset
4248 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4249 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4250
a61af66fc99e Initial load
duke
parents:
diff changeset
4251 // Operands for expressing Control Flow
a61af66fc99e Initial load
duke
parents:
diff changeset
4252 // NOTE: Label is a predefined operand which should not be redefined in
a61af66fc99e Initial load
duke
parents:
diff changeset
4253 // the AD file. It is generically handled within the ADLC.
a61af66fc99e Initial load
duke
parents:
diff changeset
4254
a61af66fc99e Initial load
duke
parents:
diff changeset
4255 //----------Conditional Branch Operands----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4256 // Comparison Op - This is the operation of the comparison, and is limited to
a61af66fc99e Initial load
duke
parents:
diff changeset
4257 // the following set of codes:
a61af66fc99e Initial load
duke
parents:
diff changeset
4258 // L (<), LE (<=), G (>), GE (>=), E (==), NE (!=)
a61af66fc99e Initial load
duke
parents:
diff changeset
4259 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4260 // Other attributes of the comparison, such as unsignedness, are specified
a61af66fc99e Initial load
duke
parents:
diff changeset
4261 // by the comparison instruction that sets a condition code flags register.
a61af66fc99e Initial load
duke
parents:
diff changeset
4262 // That result is represented by a flags operand whose subtype is appropriate
a61af66fc99e Initial load
duke
parents:
diff changeset
4263 // to the unsignedness (etc.) of the comparison.
a61af66fc99e Initial load
duke
parents:
diff changeset
4264 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4265 // Later, the instruction which matches both the Comparison Op (a Bool) and
a61af66fc99e Initial load
duke
parents:
diff changeset
4266 // the flags (produced by the Cmp) specifies the coding of the comparison op
a61af66fc99e Initial load
duke
parents:
diff changeset
4267 // by matching a specific subtype of Bool operand below, such as cmpOpU.
a61af66fc99e Initial load
duke
parents:
diff changeset
4268
a61af66fc99e Initial load
duke
parents:
diff changeset
4269 operand cmpOp() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4270 match(Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
4271
a61af66fc99e Initial load
duke
parents:
diff changeset
4272 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4273 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4274 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4275 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4276 less(0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4277 greater_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4278 less_equal(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4279 greater(0xA);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4280 overflow(0x7);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4281 no_overflow(0xF);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4282 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4283 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4284
a61af66fc99e Initial load
duke
parents:
diff changeset
4285 // Comparison Op, unsigned
a61af66fc99e Initial load
duke
parents:
diff changeset
4286 operand cmpOpU() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4287 match(Bool);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4288 predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4289 n->as_Bool()->_test._test != BoolTest::no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4290
a61af66fc99e Initial load
duke
parents:
diff changeset
4291 format %{ "u" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4292 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4293 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4294 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4295 less(0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4296 greater_equal(0xD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4297 less_equal(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
4298 greater(0xC);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4299 overflow(0x7);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4300 no_overflow(0xF);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4301 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4302 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4303
a61af66fc99e Initial load
duke
parents:
diff changeset
4304 // Comparison Op, pointer (same as unsigned)
a61af66fc99e Initial load
duke
parents:
diff changeset
4305 operand cmpOpP() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4306 match(Bool);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4307 predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4308 n->as_Bool()->_test._test != BoolTest::no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4309
a61af66fc99e Initial load
duke
parents:
diff changeset
4310 format %{ "p" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4311 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4312 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4313 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4314 less(0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4315 greater_equal(0xD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4316 less_equal(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
4317 greater(0xC);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4318 overflow(0x7);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4319 no_overflow(0xF);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4320 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4321 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4322
a61af66fc99e Initial load
duke
parents:
diff changeset
4323 // Comparison Op, branch-register encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
4324 operand cmpOp_reg() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4325 match(Bool);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4326 predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4327 n->as_Bool()->_test._test != BoolTest::no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4328
a61af66fc99e Initial load
duke
parents:
diff changeset
4329 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4330 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4331 equal (0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4332 not_equal (0x5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4333 less (0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4334 greater_equal(0x7);
a61af66fc99e Initial load
duke
parents:
diff changeset
4335 less_equal (0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4336 greater (0x6);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4337 overflow(0x7); // not supported
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4338 no_overflow(0xF); // not supported
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4339 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4340 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4341
a61af66fc99e Initial load
duke
parents:
diff changeset
4342 // Comparison Code, floating, unordered same as less
a61af66fc99e Initial load
duke
parents:
diff changeset
4343 operand cmpOpF() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4344 match(Bool);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4345 predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4346 n->as_Bool()->_test._test != BoolTest::no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4347
a61af66fc99e Initial load
duke
parents:
diff changeset
4348 format %{ "fl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4349 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4350 equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4351 not_equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4352 less(0x3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4353 greater_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4354 less_equal(0xE);
a61af66fc99e Initial load
duke
parents:
diff changeset
4355 greater(0x6);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4356
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4357 overflow(0x7); // not supported
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4358 no_overflow(0xF); // not supported
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4359 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4360 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4361
a61af66fc99e Initial load
duke
parents:
diff changeset
4362 // Used by long compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4363 operand cmpOp_commute() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4364 match(Bool);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4365 predicate(n->as_Bool()->_test._test != BoolTest::overflow &&
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4366 n->as_Bool()->_test._test != BoolTest::no_overflow);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4367
a61af66fc99e Initial load
duke
parents:
diff changeset
4368 format %{ "" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4369 interface(COND_INTER) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4370 equal(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4371 not_equal(0x9);
a61af66fc99e Initial load
duke
parents:
diff changeset
4372 less(0xA);
a61af66fc99e Initial load
duke
parents:
diff changeset
4373 greater_equal(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4374 less_equal(0xB);
a61af66fc99e Initial load
duke
parents:
diff changeset
4375 greater(0x3);
12323
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4376 overflow(0x7);
c9ccd7b85f20 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 12226
diff changeset
4377 no_overflow(0xF);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4378 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4379 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4380
a61af66fc99e Initial load
duke
parents:
diff changeset
4381 //----------OPERAND CLASSES----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4382 // Operand Classes are groups of operands that are used to simplify
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
4383 // instruction definitions by not requiring the AD writer to specify separate
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4384 // instructions for every form of operand when the instruction accepts
a61af66fc99e Initial load
duke
parents:
diff changeset
4385 // multiple operand types with the same basic encoding and format. The classic
a61af66fc99e Initial load
duke
parents:
diff changeset
4386 // case of this is memory operands.
a61af66fc99e Initial load
duke
parents:
diff changeset
4387 opclass memory( indirect, indOffset13, indIndex );
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
4388 opclass indIndexMemory( indIndex );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4389
a61af66fc99e Initial load
duke
parents:
diff changeset
4390 //----------PIPELINE-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4391 pipeline %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4392
a61af66fc99e Initial load
duke
parents:
diff changeset
4393 //----------ATTRIBUTES---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4394 attributes %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4395 fixed_size_instructions; // Fixed size instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
4396 branch_has_delay_slot; // Branch has delay slot following
a61af66fc99e Initial load
duke
parents:
diff changeset
4397 max_instructions_per_bundle = 4; // Up to 4 instructions per bundle
a61af66fc99e Initial load
duke
parents:
diff changeset
4398 instruction_unit_size = 4; // An instruction is 4 bytes long
a61af66fc99e Initial load
duke
parents:
diff changeset
4399 instruction_fetch_unit_size = 16; // The processor fetches one line
a61af66fc99e Initial load
duke
parents:
diff changeset
4400 instruction_fetch_units = 1; // of 16 bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
4401
a61af66fc99e Initial load
duke
parents:
diff changeset
4402 // List of nop instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
4403 nops( Nop_A0, Nop_A1, Nop_MS, Nop_FA, Nop_BR );
a61af66fc99e Initial load
duke
parents:
diff changeset
4404 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4405
a61af66fc99e Initial load
duke
parents:
diff changeset
4406 //----------RESOURCES----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4407 // Resources are the functional units available to the machine
a61af66fc99e Initial load
duke
parents:
diff changeset
4408 resources(A0, A1, MS, BR, FA, FM, IDIV, FDIV, IALU = A0 | A1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4409
a61af66fc99e Initial load
duke
parents:
diff changeset
4410 //----------PIPELINE DESCRIPTION-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4411 // Pipeline Description specifies the stages in the machine's pipeline
a61af66fc99e Initial load
duke
parents:
diff changeset
4412
a61af66fc99e Initial load
duke
parents:
diff changeset
4413 pipe_desc(A, P, F, B, I, J, S, R, E, C, M, W, X, T, D);
a61af66fc99e Initial load
duke
parents:
diff changeset
4414
a61af66fc99e Initial load
duke
parents:
diff changeset
4415 //----------PIPELINE CLASSES---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
4416 // Pipeline Classes describe the stages in which input and output are
a61af66fc99e Initial load
duke
parents:
diff changeset
4417 // referenced by the hardware pipeline.
a61af66fc99e Initial load
duke
parents:
diff changeset
4418
a61af66fc99e Initial load
duke
parents:
diff changeset
4419 // Integer ALU reg-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4420 pipe_class ialu_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4421 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4422 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4423 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4424 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4425 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4426 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4427
a61af66fc99e Initial load
duke
parents:
diff changeset
4428 // Integer ALU reg-reg long operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4429 pipe_class ialu_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4430 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4431 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4432 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4433 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4434 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4435 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4436 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4437
a61af66fc99e Initial load
duke
parents:
diff changeset
4438 // Integer ALU reg-reg long dependent operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4439 pipe_class ialu_reg_reg_2_dep(iRegL dst, iRegL src1, iRegL src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4440 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4441 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4442 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4443 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4444 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4445 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4446 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4447
a61af66fc99e Initial load
duke
parents:
diff changeset
4448 // Integer ALU reg-imm operaion
a61af66fc99e Initial load
duke
parents:
diff changeset
4449 pipe_class ialu_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4450 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4451 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4452 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4453 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4454 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4455
a61af66fc99e Initial load
duke
parents:
diff changeset
4456 // Integer ALU reg-reg operation with condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4457 pipe_class ialu_cc_reg_reg(iRegI dst, iRegI src1, iRegI src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4458 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4459 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4460 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4461 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4462 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4463 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4464 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4465
a61af66fc99e Initial load
duke
parents:
diff changeset
4466 // Integer ALU reg-imm operation with condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4467 pipe_class ialu_cc_reg_imm(iRegI dst, iRegI src1, immI13 src2, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4468 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4469 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4470 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4471 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4472 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4473 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4474
a61af66fc99e Initial load
duke
parents:
diff changeset
4475 // Integer ALU zero-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4476 pipe_class ialu_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4477 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4478 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4479 src2 : R(read);
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 // Integer ALU zero-reg operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4484 pipe_class ialu_cconly_zero_reg(flagsReg cr, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4485 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4486 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4487 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4488 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4489 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4490
a61af66fc99e Initial load
duke
parents:
diff changeset
4491 // Integer ALU reg-reg operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4492 pipe_class ialu_cconly_reg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4493 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4494 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4495 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4496 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4497 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4498 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4499
a61af66fc99e Initial load
duke
parents:
diff changeset
4500 // Integer ALU reg-imm operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4501 pipe_class ialu_cconly_reg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4502 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4503 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4504 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4505 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4506 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4507
a61af66fc99e Initial load
duke
parents:
diff changeset
4508 // Integer ALU reg-reg-zero operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4509 pipe_class ialu_cconly_reg_reg_zero(flagsReg cr, iRegI src1, iRegI src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4510 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4511 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4512 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4513 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4514 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4515 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4516
a61af66fc99e Initial load
duke
parents:
diff changeset
4517 // Integer ALU reg-imm-zero operation with condition code only
a61af66fc99e Initial load
duke
parents:
diff changeset
4518 pipe_class ialu_cconly_reg_imm_zero(flagsReg cr, iRegI src1, immI13 src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4519 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4520 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4521 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4522 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4523 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4524
a61af66fc99e Initial load
duke
parents:
diff changeset
4525 // Integer ALU reg-reg operation with condition code, src1 modified
a61af66fc99e Initial load
duke
parents:
diff changeset
4526 pipe_class ialu_cc_rwreg_reg(flagsReg cr, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4527 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4528 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4529 src1 : E(write);
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 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4533 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4534
a61af66fc99e Initial load
duke
parents:
diff changeset
4535 // Integer ALU reg-imm operation with condition code, src1 modified
a61af66fc99e Initial load
duke
parents:
diff changeset
4536 pipe_class ialu_cc_rwreg_imm(flagsReg cr, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4537 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4538 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4539 src1 : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4540 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4541 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4542 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4543
a61af66fc99e Initial load
duke
parents:
diff changeset
4544 pipe_class cmpL_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg cr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4545 multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4546 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4547 cr : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4548 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4549 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4550 IALU : R(3);
a61af66fc99e Initial load
duke
parents:
diff changeset
4551 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4552 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4553
a61af66fc99e Initial load
duke
parents:
diff changeset
4554 // Integer ALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4555 pipe_class ialu_none(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4556 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4557 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4558 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4559 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4560
a61af66fc99e Initial load
duke
parents:
diff changeset
4561 // Integer ALU reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4562 pipe_class ialu_reg(iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4563 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4564 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4565 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4566 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4567 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4568
a61af66fc99e Initial load
duke
parents:
diff changeset
4569 // Integer ALU reg conditional operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4570 // This instruction has a 1 cycle stall, and cannot execute
a61af66fc99e Initial load
duke
parents:
diff changeset
4571 // in the same cycle as the instruction setting the condition
a61af66fc99e Initial load
duke
parents:
diff changeset
4572 // code. We kludge this by pretending to read the condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
4573 // 1 cycle earlier, and by marking the functional units as busy
a61af66fc99e Initial load
duke
parents:
diff changeset
4574 // for 2 cycles with the result available 1 cycle later than
a61af66fc99e Initial load
duke
parents:
diff changeset
4575 // is really the case.
a61af66fc99e Initial load
duke
parents:
diff changeset
4576 pipe_class ialu_reg_flags( iRegI op2_out, iRegI op2_in, iRegI op1, flagsReg cr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4577 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4578 op2_out : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4579 op1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4580 cr : R(read); // This is really E, with a 1 cycle stall
a61af66fc99e Initial load
duke
parents:
diff changeset
4581 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4582 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4583 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4584
a61af66fc99e Initial load
duke
parents:
diff changeset
4585 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
4586 pipe_class ialu_clr_and_mover( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4587 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4588 dst : C(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4589 src : R(read)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4590 IALU : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4591 BR : E(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4592 MS : E(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4593 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4594 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4595
a61af66fc99e Initial load
duke
parents:
diff changeset
4596 // Integer ALU reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4597 pipe_class ialu_move_reg_L_to_I(iRegI dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4598 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4599 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4600 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4601 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4602 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4603 pipe_class ialu_move_reg_I_to_L(iRegL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4604 single_instruction; may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4605 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4606 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4607 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4608 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4609
a61af66fc99e Initial load
duke
parents:
diff changeset
4610 // Two integer ALU reg operations
a61af66fc99e Initial load
duke
parents:
diff changeset
4611 pipe_class ialu_reg_2(iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4612 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4613 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4614 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4615 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4616 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4617 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4618
a61af66fc99e Initial load
duke
parents:
diff changeset
4619 // Two integer ALU reg operations
a61af66fc99e Initial load
duke
parents:
diff changeset
4620 pipe_class ialu_move_reg_L_to_L(iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4621 instruction_count(2); may_have_no_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
4622 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4623 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4624 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4625 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4626 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4627
a61af66fc99e Initial load
duke
parents:
diff changeset
4628 // Integer ALU imm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4629 pipe_class ialu_imm(iRegI dst, immI13 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4630 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4631 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4632 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4633 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4634
a61af66fc99e Initial load
duke
parents:
diff changeset
4635 // Integer ALU reg-reg with carry operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4636 pipe_class ialu_reg_reg_cy(iRegI dst, iRegI src1, iRegI src2, iRegI cy) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4637 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4638 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4639 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4640 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4641 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4642 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4643
a61af66fc99e Initial load
duke
parents:
diff changeset
4644 // Integer ALU cc operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4645 pipe_class ialu_cc(iRegI dst, flagsReg cc) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4646 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4647 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4648 cc : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4649 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4650 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4651
a61af66fc99e Initial load
duke
parents:
diff changeset
4652 // Integer ALU cc / second IALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4653 pipe_class ialu_reg_ialu( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4654 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4655 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4656 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4657 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4658 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4659
a61af66fc99e Initial load
duke
parents:
diff changeset
4660 // Integer ALU cc / second IALU operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4661 pipe_class ialu_reg_reg_ialu( iRegI dst, iRegI p, iRegI q ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4662 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4663 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4664 p : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4665 q : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4666 IALU : 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 // Integer ALU hi-lo-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4670 pipe_class ialu_hi_lo_reg(iRegI dst, immI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4671 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4672 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4673 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4674 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4675
a61af66fc99e Initial load
duke
parents:
diff changeset
4676 // Float ALU hi-lo-reg operation (with temp)
a61af66fc99e Initial load
duke
parents:
diff changeset
4677 pipe_class ialu_hi_lo_reg_temp(regF dst, immF src, g3RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4678 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4679 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4680 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4681 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4682
a61af66fc99e Initial load
duke
parents:
diff changeset
4683 // Long Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
4684 pipe_class loadConL( iRegL dst, immL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4685 instruction_count(2); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4686 dst : E(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4687 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4688 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4689 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4690
a61af66fc99e Initial load
duke
parents:
diff changeset
4691 // Pointer Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
4692 pipe_class loadConP( iRegP dst, immP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4693 instruction_count(0); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4694 fixed_latency(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4695 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4696
a61af66fc99e Initial load
duke
parents:
diff changeset
4697 // Polling Address
a61af66fc99e Initial load
duke
parents:
diff changeset
4698 pipe_class loadConP_poll( iRegP dst, immP_poll src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4699 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
4700 instruction_count(0); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4701 fixed_latency(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4702 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
4703 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4704 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4705 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4706 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4707
a61af66fc99e Initial load
duke
parents:
diff changeset
4708 // Long Constant small
a61af66fc99e Initial load
duke
parents:
diff changeset
4709 pipe_class loadConLlo( iRegL dst, immL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4710 instruction_count(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4711 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4712 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4713 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4714 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4715
a61af66fc99e Initial load
duke
parents:
diff changeset
4716 // [PHH] This is wrong for 64-bit. See LdImmF/D.
a61af66fc99e Initial load
duke
parents:
diff changeset
4717 pipe_class loadConFD(regF dst, immF src, g3RegP tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4718 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4719 src : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4720 dst : M(write)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4721 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4722 MS : E;
a61af66fc99e Initial load
duke
parents:
diff changeset
4723 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4724
a61af66fc99e Initial load
duke
parents:
diff changeset
4725 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4726 pipe_class ialu_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4727 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4728 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4729 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4730
a61af66fc99e Initial load
duke
parents:
diff changeset
4731 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4732 pipe_class ialu_nop_A0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4733 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4734 A0 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4735 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4736
a61af66fc99e Initial load
duke
parents:
diff changeset
4737 // Integer ALU nop operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4738 pipe_class ialu_nop_A1() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4739 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4740 A1 : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4741 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4742
a61af66fc99e Initial load
duke
parents:
diff changeset
4743 // Integer Multiply reg-reg operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4744 pipe_class imul_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4745 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4746 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4747 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4748 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4749 MS : R(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4750 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4751
a61af66fc99e Initial load
duke
parents:
diff changeset
4752 // Integer Multiply reg-imm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
4753 pipe_class imul_reg_imm(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4754 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4755 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4756 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4757 MS : R(5);
a61af66fc99e Initial load
duke
parents:
diff changeset
4758 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4759
a61af66fc99e Initial load
duke
parents:
diff changeset
4760 pipe_class mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4761 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4762 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4763 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4764 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4765 MS : R(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4766 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4767
a61af66fc99e Initial load
duke
parents:
diff changeset
4768 pipe_class mulL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4769 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4770 dst : E(write)+4;
a61af66fc99e Initial load
duke
parents:
diff changeset
4771 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4772 MS : R(6);
a61af66fc99e Initial load
duke
parents:
diff changeset
4773 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4774
a61af66fc99e Initial load
duke
parents:
diff changeset
4775 // Integer Divide reg-reg
a61af66fc99e Initial load
duke
parents:
diff changeset
4776 pipe_class sdiv_reg_reg(iRegI dst, iRegI src1, iRegI src2, iRegI temp, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4777 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4778 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4779 temp : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4780 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4781 src2 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4782 temp : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4783 MS : R(38);
a61af66fc99e Initial load
duke
parents:
diff changeset
4784 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4785
a61af66fc99e Initial load
duke
parents:
diff changeset
4786 // Integer Divide reg-imm
a61af66fc99e Initial load
duke
parents:
diff changeset
4787 pipe_class sdiv_reg_imm(iRegI dst, iRegI src1, immI13 src2, iRegI temp, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4788 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4789 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4790 temp : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4791 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4792 temp : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4793 MS : R(38);
a61af66fc99e Initial load
duke
parents:
diff changeset
4794 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4795
a61af66fc99e Initial load
duke
parents:
diff changeset
4796 // Long Divide
a61af66fc99e Initial load
duke
parents:
diff changeset
4797 pipe_class divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4798 dst : E(write)+71;
a61af66fc99e Initial load
duke
parents:
diff changeset
4799 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4800 src2 : R(read)+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4801 MS : R(70);
a61af66fc99e Initial load
duke
parents:
diff changeset
4802 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4803
a61af66fc99e Initial load
duke
parents:
diff changeset
4804 pipe_class divL_reg_imm(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4805 dst : E(write)+71;
a61af66fc99e Initial load
duke
parents:
diff changeset
4806 src1 : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4807 MS : R(70);
a61af66fc99e Initial load
duke
parents:
diff changeset
4808 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4809
a61af66fc99e Initial load
duke
parents:
diff changeset
4810 // Floating Point Add Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4811 pipe_class faddF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4812 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4813 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4814 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4815 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4816 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4817 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4818
a61af66fc99e Initial load
duke
parents:
diff changeset
4819 // Floating Point Add Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4820 pipe_class faddD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4821 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4822 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4823 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4824 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4825 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4826 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4827
a61af66fc99e Initial load
duke
parents:
diff changeset
4828 // Floating Point Conditional Move based on integer flags
a61af66fc99e Initial load
duke
parents:
diff changeset
4829 pipe_class int_conditional_float_move (cmpOp cmp, flagsReg cr, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4830 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4831 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4832 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4833 cr : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4834 FA : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4835 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4836 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4837
a61af66fc99e Initial load
duke
parents:
diff changeset
4838 // Floating Point Conditional Move based on integer flags
a61af66fc99e Initial load
duke
parents:
diff changeset
4839 pipe_class int_conditional_double_move (cmpOp cmp, flagsReg cr, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4840 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4841 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4842 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4843 cr : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4844 FA : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4845 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
4846 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4847
a61af66fc99e Initial load
duke
parents:
diff changeset
4848 // Floating Point Multiply Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4849 pipe_class fmulF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4850 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4851 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4852 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4853 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4854 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4855 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4856
a61af66fc99e Initial load
duke
parents:
diff changeset
4857 // Floating Point Multiply Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4858 pipe_class fmulD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4859 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4860 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4861 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4862 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4863 FM : 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 // Floating Point Divide Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4867 pipe_class fdivF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4868 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4869 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4870 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4871 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4872 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4873 FDIV : C(14);
a61af66fc99e Initial load
duke
parents:
diff changeset
4874 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4875
a61af66fc99e Initial load
duke
parents:
diff changeset
4876 // Floating Point Divide Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4877 pipe_class fdivD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4878 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4879 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4880 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4881 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4882 FM : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4883 FDIV : C(17);
a61af66fc99e Initial load
duke
parents:
diff changeset
4884 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4885
a61af66fc99e Initial load
duke
parents:
diff changeset
4886 // Floating Point Move/Negate/Abs Float
a61af66fc99e Initial load
duke
parents:
diff changeset
4887 pipe_class faddF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4888 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4889 dst : W(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4890 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4891 FA : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4892 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4893
a61af66fc99e Initial load
duke
parents:
diff changeset
4894 // Floating Point Move/Negate/Abs Double
a61af66fc99e Initial load
duke
parents:
diff changeset
4895 pipe_class faddD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4896 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4897 dst : W(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4898 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4899 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4900 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4901
a61af66fc99e Initial load
duke
parents:
diff changeset
4902 // Floating Point Convert F->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4903 pipe_class fcvtF2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4904 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4905 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4906 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4907 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4908 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4909
a61af66fc99e Initial load
duke
parents:
diff changeset
4910 // Floating Point Convert I->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4911 pipe_class fcvtI2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4912 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4913 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4914 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4915 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4916 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4917
a61af66fc99e Initial load
duke
parents:
diff changeset
4918 // Floating Point Convert LHi->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4919 pipe_class fcvtLHi2D(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4920 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4921 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4922 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4923 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4924 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4925
a61af66fc99e Initial load
duke
parents:
diff changeset
4926 // Floating Point Convert L->D
a61af66fc99e Initial load
duke
parents:
diff changeset
4927 pipe_class fcvtL2D(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4928 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4929 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4930 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4931 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4932 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4933
a61af66fc99e Initial load
duke
parents:
diff changeset
4934 // Floating Point Convert L->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4935 pipe_class fcvtL2F(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4936 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4937 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4938 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4939 FA : 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 // Floating Point Convert D->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4943 pipe_class fcvtD2F(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4944 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4945 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4946 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4947 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4948 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4949
a61af66fc99e Initial load
duke
parents:
diff changeset
4950 // Floating Point Convert I->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4951 pipe_class fcvtI2L(regD dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4952 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4953 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4954 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4955 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4956 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4957
a61af66fc99e Initial load
duke
parents:
diff changeset
4958 // Floating Point Convert D->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4959 pipe_class fcvtD2I(regF dst, regD src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4960 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4961 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4962 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4963 FA : 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 // Floating Point Convert D->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4967 pipe_class fcvtD2L(regD dst, regD src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4968 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4969 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4970 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4971 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4972 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4973
a61af66fc99e Initial load
duke
parents:
diff changeset
4974 // Floating Point Convert F->I
a61af66fc99e Initial load
duke
parents:
diff changeset
4975 pipe_class fcvtF2I(regF dst, regF src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4976 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4977 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4978 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4979 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4980 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4981
a61af66fc99e Initial load
duke
parents:
diff changeset
4982 // Floating Point Convert F->L
a61af66fc99e Initial load
duke
parents:
diff changeset
4983 pipe_class fcvtF2L(regD dst, regF src, flagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4984 instruction_count(1); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
4985 dst : X(write)+6;
a61af66fc99e Initial load
duke
parents:
diff changeset
4986 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4987 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4988 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4989
a61af66fc99e Initial load
duke
parents:
diff changeset
4990 // Floating Point Convert I->F
a61af66fc99e Initial load
duke
parents:
diff changeset
4991 pipe_class fcvtI2F(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
4992 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
4993 dst : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
4994 src : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
4995 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
4996 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
4997
a61af66fc99e Initial load
duke
parents:
diff changeset
4998 // Floating Point Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
4999 pipe_class faddF_fcc_reg_reg_zero(flagsRegF cr, regF src1, regF src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5000 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5001 cr : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5002 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5003 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5004 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5005 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5006
a61af66fc99e Initial load
duke
parents:
diff changeset
5007 // Floating Point Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
5008 pipe_class faddD_fcc_reg_reg_zero(flagsRegF cr, regD src1, regD src2, immI0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5009 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5010 cr : X(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5011 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5012 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5013 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5014 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5015
a61af66fc99e Initial load
duke
parents:
diff changeset
5016 // Floating Add Nop
a61af66fc99e Initial load
duke
parents:
diff changeset
5017 pipe_class fadd_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5018 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5019 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5020 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5021
a61af66fc99e Initial load
duke
parents:
diff changeset
5022 // Integer Store to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
5023 pipe_class istore_mem_reg(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5024 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5025 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5026 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5027 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5028 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5029
a61af66fc99e Initial load
duke
parents:
diff changeset
5030 // Integer Store to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
5031 pipe_class istore_mem_spORreg(memory mem, sp_ptr_RegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5032 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5033 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5034 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5035 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5036 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5037
a61af66fc99e Initial load
duke
parents:
diff changeset
5038 // Integer Store Zero to Memory
a61af66fc99e Initial load
duke
parents:
diff changeset
5039 pipe_class istore_mem_zero(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5040 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5041 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5042 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5043 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5044
a61af66fc99e Initial load
duke
parents:
diff changeset
5045 // Special Stack Slot Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5046 pipe_class istore_stk_reg(stackSlotI stkSlot, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5047 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5048 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5049 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5050 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5051 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5052
a61af66fc99e Initial load
duke
parents:
diff changeset
5053 // Special Stack Slot Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5054 pipe_class lstoreI_stk_reg(stackSlotL stkSlot, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5055 instruction_count(2); multiple_bundles;
a61af66fc99e Initial load
duke
parents:
diff changeset
5056 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5057 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5058 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5059 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5060
a61af66fc99e Initial load
duke
parents:
diff changeset
5061 // Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5062 pipe_class fstoreF_mem_reg(memory mem, RegF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5063 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5064 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5065 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5066 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5067 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5068
a61af66fc99e Initial load
duke
parents:
diff changeset
5069 // Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5070 pipe_class fstoreF_mem_zero(memory mem, immF0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5071 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5072 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5073 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5074 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5075
a61af66fc99e Initial load
duke
parents:
diff changeset
5076 // Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5077 pipe_class fstoreD_mem_reg(memory mem, RegD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5078 instruction_count(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5079 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5080 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5081 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5082 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5083
a61af66fc99e Initial load
duke
parents:
diff changeset
5084 // Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5085 pipe_class fstoreD_mem_zero(memory mem, immD0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5086 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5087 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5088 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5089 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5090
a61af66fc99e Initial load
duke
parents:
diff changeset
5091 // Special Stack Slot Float Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5092 pipe_class fstoreF_stk_reg(stackSlotI stkSlot, RegF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5093 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5094 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5095 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5096 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5097 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5098
a61af66fc99e Initial load
duke
parents:
diff changeset
5099 // Special Stack Slot Double Store
a61af66fc99e Initial load
duke
parents:
diff changeset
5100 pipe_class fstoreD_stk_reg(stackSlotI stkSlot, RegD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5101 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5102 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5103 src : C(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5104 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5105 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5106
a61af66fc99e Initial load
duke
parents:
diff changeset
5107 // Integer Load (when sign bit propagation not needed)
a61af66fc99e Initial load
duke
parents:
diff changeset
5108 pipe_class iload_mem(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5109 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5110 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5111 dst : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5112 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5113 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5114
a61af66fc99e Initial load
duke
parents:
diff changeset
5115 // Integer Load from stack operand
a61af66fc99e Initial load
duke
parents:
diff changeset
5116 pipe_class iload_stkD(iRegI dst, stackSlotD mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5117 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5118 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5119 dst : C(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5120 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5121 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5122
a61af66fc99e Initial load
duke
parents:
diff changeset
5123 // Integer Load (when sign bit propagation or masking is needed)
a61af66fc99e Initial load
duke
parents:
diff changeset
5124 pipe_class iload_mask_mem(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5125 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5126 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5127 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5128 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5129 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5130
a61af66fc99e Initial load
duke
parents:
diff changeset
5131 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
5132 pipe_class floadF_mem(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5133 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5134 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5135 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5136 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5137 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5138
a61af66fc99e Initial load
duke
parents:
diff changeset
5139 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
5140 pipe_class floadD_mem(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5141 instruction_count(1); multiple_bundles; // Again, unaligned argument is only multiple case
a61af66fc99e Initial load
duke
parents:
diff changeset
5142 mem : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5143 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5144 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5145 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5146
a61af66fc99e Initial load
duke
parents:
diff changeset
5147 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
5148 pipe_class floadF_stk(regF dst, stackSlotI stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5149 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5150 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5151 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5152 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5153 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5154
a61af66fc99e Initial load
duke
parents:
diff changeset
5155 // Float Load
a61af66fc99e Initial load
duke
parents:
diff changeset
5156 pipe_class floadD_stk(regD dst, stackSlotI stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5157 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5158 stkSlot : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5159 dst : M(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5160 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5161 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5162
a61af66fc99e Initial load
duke
parents:
diff changeset
5163 // Memory Nop
a61af66fc99e Initial load
duke
parents:
diff changeset
5164 pipe_class mem_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5165 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5166 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5167 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5168
a61af66fc99e Initial load
duke
parents:
diff changeset
5169 pipe_class sethi(iRegP dst, immI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5170 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5171 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5172 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5173 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5174
a61af66fc99e Initial load
duke
parents:
diff changeset
5175 pipe_class loadPollP(iRegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5176 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5177 poll : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5178 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5179 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5180
a61af66fc99e Initial load
duke
parents:
diff changeset
5181 pipe_class br(Universe br, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5182 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5183 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5184 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5185
a61af66fc99e Initial load
duke
parents:
diff changeset
5186 pipe_class br_cc(Universe br, cmpOp cmp, flagsReg cr, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5187 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5188 cr : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5189 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5190 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5191
a61af66fc99e Initial load
duke
parents:
diff changeset
5192 pipe_class br_reg(Universe br, cmpOp cmp, iRegI op1, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5193 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5194 op1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5195 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5196 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5197 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5198
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5199 // Compare and branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5200 pipe_class cmp_br_reg_reg(Universe br, cmpOp cmp, iRegI src1, iRegI src2, label labl, flagsReg cr) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5201 instruction_count(2); has_delay_slot;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5202 cr : E(write);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5203 src1 : R(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5204 src2 : R(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5205 IALU : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5206 BR : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5207 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5208
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5209 // Compare and branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5210 pipe_class cmp_br_reg_imm(Universe br, cmpOp cmp, iRegI src1, immI13 src2, label labl, flagsReg cr) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5211 instruction_count(2); has_delay_slot;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5212 cr : E(write);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5213 src1 : R(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5214 IALU : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5215 BR : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5216 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5217
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5218 // Compare and branch using cbcond
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5219 pipe_class cbcond_reg_reg(Universe br, cmpOp cmp, iRegI src1, iRegI src2, label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5220 single_instruction;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5221 src1 : E(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5222 src2 : E(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5223 IALU : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5224 BR : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5225 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5226
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5227 // Compare and branch using cbcond
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5228 pipe_class cbcond_reg_imm(Universe br, cmpOp cmp, iRegI src1, immI5 src2, label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5229 single_instruction;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5230 src1 : E(read);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5231 IALU : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5232 BR : R;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5233 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
5234
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5235 pipe_class br_fcc(Universe br, cmpOpF cc, flagsReg cr, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5236 single_instruction_with_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5237 cr : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5238 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5239 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5240
a61af66fc99e Initial load
duke
parents:
diff changeset
5241 pipe_class br_nop() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5242 single_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
5243 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5244 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5245
a61af66fc99e Initial load
duke
parents:
diff changeset
5246 pipe_class simple_call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5247 instruction_count(2); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
5248 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
5249 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5250 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5251 A0 : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5252 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5253
a61af66fc99e Initial load
duke
parents:
diff changeset
5254 pipe_class compiled_call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5255 instruction_count(1); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
5256 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
5257 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5258 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5259
a61af66fc99e Initial load
duke
parents:
diff changeset
5260 pipe_class call(method meth) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5261 instruction_count(0); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
5262 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
5263 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5264
a61af66fc99e Initial load
duke
parents:
diff changeset
5265 pipe_class tail_call(Universe ignore, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5266 single_instruction; has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5267 fixed_latency(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
5268 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5269 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5270 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5271
a61af66fc99e Initial load
duke
parents:
diff changeset
5272 pipe_class ret(Universe ignore) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5273 single_instruction; has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5274 BR : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5275 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5276 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5277
a61af66fc99e Initial load
duke
parents:
diff changeset
5278 pipe_class ret_poll(g3RegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5279 instruction_count(3); has_delay_slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
5280 poll : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5281 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5282 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5283
a61af66fc99e Initial load
duke
parents:
diff changeset
5284 // The real do-nothing guy
a61af66fc99e Initial load
duke
parents:
diff changeset
5285 pipe_class empty( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5286 instruction_count(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5287 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5288
a61af66fc99e Initial load
duke
parents:
diff changeset
5289 pipe_class long_memory_op() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5290 instruction_count(0); multiple_bundles; force_serialization;
a61af66fc99e Initial load
duke
parents:
diff changeset
5291 fixed_latency(25);
a61af66fc99e Initial load
duke
parents:
diff changeset
5292 MS : R(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5293 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5294
a61af66fc99e Initial load
duke
parents:
diff changeset
5295 // Check-cast
a61af66fc99e Initial load
duke
parents:
diff changeset
5296 pipe_class partial_subtype_check_pipe(Universe ignore, iRegP array, iRegP match ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5297 array : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5298 match : R(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5299 IALU : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5300 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5301 MS : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5302 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5303
a61af66fc99e Initial load
duke
parents:
diff changeset
5304 // Convert FPU flags into +1,0,-1
a61af66fc99e Initial load
duke
parents:
diff changeset
5305 pipe_class floating_cmp( iRegI dst, regF src1, regF src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5306 src1 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5307 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5308 dst : E(write);
a61af66fc99e Initial load
duke
parents:
diff changeset
5309 FA : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5310 MS : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5311 BR : R(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5312 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5313
a61af66fc99e Initial load
duke
parents:
diff changeset
5314 // Compare for p < q, and conditionally add y
a61af66fc99e Initial load
duke
parents:
diff changeset
5315 pipe_class cadd_cmpltmask( iRegI p, iRegI q, iRegI y ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5316 p : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5317 q : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5318 y : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5319 IALU : R(3)
a61af66fc99e Initial load
duke
parents:
diff changeset
5320 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5321
a61af66fc99e Initial load
duke
parents:
diff changeset
5322 // Perform a compare, then move conditionally in a branch delay slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
5323 pipe_class min_max( iRegI src2, iRegI srcdst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5324 src2 : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5325 srcdst : E(read);
a61af66fc99e Initial load
duke
parents:
diff changeset
5326 IALU : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5327 BR : R;
a61af66fc99e Initial load
duke
parents:
diff changeset
5328 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5329
a61af66fc99e Initial load
duke
parents:
diff changeset
5330 // Define the class for the Nop node
a61af66fc99e Initial load
duke
parents:
diff changeset
5331 define %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5332 MachNop = ialu_nop;
a61af66fc99e Initial load
duke
parents:
diff changeset
5333 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5334
a61af66fc99e Initial load
duke
parents:
diff changeset
5335 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5336
a61af66fc99e Initial load
duke
parents:
diff changeset
5337 //----------INSTRUCTIONS-------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5338
a61af66fc99e Initial load
duke
parents:
diff changeset
5339 //------------Special Stack Slot instructions - no match rules-----------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5340 instruct stkI_to_regF(regF dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5341 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5342 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5343 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5344 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5345 format %{ "LDF $src,$dst\t! stkI to regF" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5346 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
5347 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5348 ins_pipe(floadF_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
5349 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5350
a61af66fc99e Initial load
duke
parents:
diff changeset
5351 instruct stkL_to_regD(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5352 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5353 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5354 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5355 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5356 format %{ "LDDF $src,$dst\t! stkL to regD" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5357 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
5358 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5359 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
5360 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5361
a61af66fc99e Initial load
duke
parents:
diff changeset
5362 instruct regF_to_stkI(stackSlotI dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5363 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5364 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5365 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5366 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5367 format %{ "STF $src,$dst\t! regF to stkI" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5368 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
5369 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5370 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5371 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5372
a61af66fc99e Initial load
duke
parents:
diff changeset
5373 instruct regD_to_stkL(stackSlotL dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5374 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5375 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5376 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5377 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5378 format %{ "STDF $src,$dst\t! regD to stkL" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5379 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
5380 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5381 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5382 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5383
a61af66fc99e Initial load
duke
parents:
diff changeset
5384 instruct regI_to_stkLHi(stackSlotL dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5385 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5386 ins_cost(MEMORY_REF_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
5387 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
5388 format %{ "STW $src,$dst.hi\t! long\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
5389 "STW R_G0,$dst.lo" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5390 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
5391 ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, R_G0));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5392 ins_pipe(lstoreI_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5393 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5394
a61af66fc99e Initial load
duke
parents:
diff changeset
5395 instruct regL_to_stkD(stackSlotD dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5396 // No match rule to avoid chain rule match.
a61af66fc99e Initial load
duke
parents:
diff changeset
5397 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5398 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5399 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5400 format %{ "STX $src,$dst\t! regL to stkD" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5401 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
5402 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5403 ins_pipe(istore_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5404 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5405
a61af66fc99e Initial load
duke
parents:
diff changeset
5406 //---------- Chain stack slots between similar types --------
a61af66fc99e Initial load
duke
parents:
diff changeset
5407
a61af66fc99e Initial load
duke
parents:
diff changeset
5408 // Load integer from stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5409 instruct stkI_to_regI( iRegI dst, stackSlotI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5410 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5411 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5412
a61af66fc99e Initial load
duke
parents:
diff changeset
5413 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5414 format %{ "LDUW $src,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5415 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
5416 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5417 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5418 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5419
a61af66fc99e Initial load
duke
parents:
diff changeset
5420 // Store integer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5421 instruct regI_to_stkI( stackSlotI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5422 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5423 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5424
a61af66fc99e Initial load
duke
parents:
diff changeset
5425 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5426 format %{ "STW $src,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5427 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
5428 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5429 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5430 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5431
a61af66fc99e Initial load
duke
parents:
diff changeset
5432 // Load long from stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5433 instruct stkL_to_regL( iRegL dst, stackSlotL src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5434 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5435
a61af66fc99e Initial load
duke
parents:
diff changeset
5436 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5437 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5438 format %{ "LDX $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5439 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
5440 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5441 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5442 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5443
a61af66fc99e Initial load
duke
parents:
diff changeset
5444 // Store long to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5445 instruct regL_to_stkL(stackSlotL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5446 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5447
a61af66fc99e Initial load
duke
parents:
diff changeset
5448 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5449 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5450 format %{ "STX $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5451 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
5452 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5453 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5454 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5455
a61af66fc99e Initial load
duke
parents:
diff changeset
5456 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5457 // Load pointer from stack slot, 64-bit encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
5458 instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5459 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5460 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5461 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5462 format %{ "LDX $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5463 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
5464 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5465 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5466 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5467
a61af66fc99e Initial load
duke
parents:
diff changeset
5468 // Store pointer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5469 instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5470 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5471 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5472 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5473 format %{ "STX $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5474 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
5475 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5476 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5477 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5478 #else // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5479 // Load pointer from stack slot, 32-bit encoding
a61af66fc99e Initial load
duke
parents:
diff changeset
5480 instruct stkP_to_regP( iRegP dst, stackSlotP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5481 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5482 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5483 format %{ "LDUW $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5484 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
5485 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5486 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5487 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5488
a61af66fc99e Initial load
duke
parents:
diff changeset
5489 // Store pointer to stack slot
a61af66fc99e Initial load
duke
parents:
diff changeset
5490 instruct regP_to_stkP(stackSlotP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5491 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
5492 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5493 format %{ "STW $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5494 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
5495 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5496 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
5497 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5498 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5499
a61af66fc99e Initial load
duke
parents:
diff changeset
5500 //------------Special Nop instructions for bundling - no match rules-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
5501 // Nop using the A0 functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5502 instruct Nop_A0() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5503 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5504
a61af66fc99e Initial load
duke
parents:
diff changeset
5505 format %{ "NOP ! Alu Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5506 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
5507 ins_encode( form2_nop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
5508 ins_pipe(ialu_nop_A0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5509 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5510
a61af66fc99e Initial load
duke
parents:
diff changeset
5511 // Nop using the A1 functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5512 instruct Nop_A1( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5513 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5514
a61af66fc99e Initial load
duke
parents:
diff changeset
5515 format %{ "NOP ! Alu Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5516 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
5517 ins_encode( form2_nop() );
a61af66fc99e Initial load
duke
parents:
diff changeset
5518 ins_pipe(ialu_nop_A1);
a61af66fc99e Initial load
duke
parents:
diff changeset
5519 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5520
a61af66fc99e Initial load
duke
parents:
diff changeset
5521 // Nop using the memory functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5522 instruct Nop_MS( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5523 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5524
a61af66fc99e Initial load
duke
parents:
diff changeset
5525 format %{ "NOP ! Memory Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5526 ins_encode( emit_mem_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5527 ins_pipe(mem_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5528 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5529
a61af66fc99e Initial load
duke
parents:
diff changeset
5530 // Nop using the floating add functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5531 instruct Nop_FA( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5532 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5533
a61af66fc99e Initial load
duke
parents:
diff changeset
5534 format %{ "NOP ! Floating Add Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5535 ins_encode( emit_fadd_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5536 ins_pipe(fadd_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5537 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5538
a61af66fc99e Initial load
duke
parents:
diff changeset
5539 // Nop using the branch functional unit
a61af66fc99e Initial load
duke
parents:
diff changeset
5540 instruct Nop_BR( ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5541 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5542
a61af66fc99e Initial load
duke
parents:
diff changeset
5543 format %{ "NOP ! Branch Pipeline" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5544 ins_encode( emit_br_nop );
a61af66fc99e Initial load
duke
parents:
diff changeset
5545 ins_pipe(br_nop);
a61af66fc99e Initial load
duke
parents:
diff changeset
5546 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5547
a61af66fc99e Initial load
duke
parents:
diff changeset
5548 //----------Load/Store/Move Instructions---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5549 //----------Load Instructions--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
5550 // Load Byte (8bit signed)
a61af66fc99e Initial load
duke
parents:
diff changeset
5551 instruct loadB(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5552 match(Set dst (LoadB mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5553 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5554
a61af66fc99e Initial load
duke
parents:
diff changeset
5555 size(4);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5556 format %{ "LDSB $mem,$dst\t! byte" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5557 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5558 __ ldsb($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5559 %}
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5560 ins_pipe(iload_mask_mem);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5561 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5562
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5563 // Load Byte (8bit signed) into a Long Register
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5564 instruct loadB2L(iRegL dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5565 match(Set dst (ConvI2L (LoadB mem)));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5566 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5567
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5568 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5569 format %{ "LDSB $mem,$dst\t! byte -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5570 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5571 __ ldsb($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5572 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5573 ins_pipe(iload_mask_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5574 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5575
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5576 // Load Unsigned Byte (8bit UNsigned) into an int reg
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5577 instruct loadUB(iRegI dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5578 match(Set dst (LoadUB mem));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5579 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5580
a61af66fc99e Initial load
duke
parents:
diff changeset
5581 size(4);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5582 format %{ "LDUB $mem,$dst\t! ubyte" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5583 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5584 __ ldub($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5585 %}
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5586 ins_pipe(iload_mem);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5587 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5588
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5589 // Load Unsigned Byte (8bit UNsigned) into a Long Register
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5590 instruct loadUB2L(iRegL dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5591 match(Set dst (ConvI2L (LoadUB mem)));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5592 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5593
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5594 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5595 format %{ "LDUB $mem,$dst\t! ubyte -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5596 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5597 __ ldub($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5598 %}
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5599 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5600 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5601
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5602 // Load Unsigned Byte (8 bit UNsigned) with 8-bit mask into Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5603 instruct loadUB2L_immI8(iRegL dst, memory mem, immI8 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5604 match(Set dst (ConvI2L (AndI (LoadUB mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5605 ins_cost(MEMORY_REF_COST + DEFAULT_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5606
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5607 size(2*4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5608 format %{ "LDUB $mem,$dst\t# ubyte & 8-bit mask -> long\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5609 "AND $dst,$mask,$dst" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5610 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5611 __ ldub($mem$$Address, $dst$$Register);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5612 __ and3($dst$$Register, $mask$$constant, $dst$$Register);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5613 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5614 ins_pipe(iload_mem);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5615 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5616
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5617 // Load Short (16bit signed)
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5618 instruct loadS(iRegI dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5619 match(Set dst (LoadS mem));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5620 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5621
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5622 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5623 format %{ "LDSH $mem,$dst\t! short" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5624 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5625 __ ldsh($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5626 %}
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5627 ins_pipe(iload_mask_mem);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5628 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5629
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5630 // Load Short (16 bit signed) to Byte (8 bit signed)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5631 instruct loadS2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5632 match(Set dst (RShiftI (LShiftI (LoadS mem) twentyfour) twentyfour));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5633 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5634
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5635 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5636
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5637 format %{ "LDSB $mem+1,$dst\t! short -> byte" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5638 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5639 __ ldsb($mem$$Address, $dst$$Register, 1);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5640 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5641 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5642 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5643
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5644 // Load Short (16bit signed) into a Long Register
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5645 instruct loadS2L(iRegL dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5646 match(Set dst (ConvI2L (LoadS mem)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5647 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5648
a61af66fc99e Initial load
duke
parents:
diff changeset
5649 size(4);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5650 format %{ "LDSH $mem,$dst\t! short -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5651 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5652 __ ldsh($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5653 %}
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5654 ins_pipe(iload_mask_mem);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5655 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5656
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5657 // Load Unsigned Short/Char (16bit UNsigned)
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5658 instruct loadUS(iRegI dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5659 match(Set dst (LoadUS mem));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5660 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5661
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5662 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5663 format %{ "LDUH $mem,$dst\t! ushort/char" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5664 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5665 __ lduh($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5666 %}
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5667 ins_pipe(iload_mem);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5668 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5669
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5670 // Load Unsigned Short/Char (16 bit UNsigned) to Byte (8 bit signed)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5671 instruct loadUS2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5672 match(Set dst (RShiftI (LShiftI (LoadUS mem) twentyfour) twentyfour));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5673 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5674
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5675 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5676 format %{ "LDSB $mem+1,$dst\t! ushort -> byte" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5677 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5678 __ ldsb($mem$$Address, $dst$$Register, 1);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5679 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5680 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5681 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5682
558
3b5ac9e7e6ea 6796746: rename LoadC (char) opcode class to LoadUS (unsigned short)
twisti
parents: 551
diff changeset
5683 // Load Unsigned Short/Char (16bit UNsigned) into a Long Register
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5684 instruct loadUS2L(iRegL dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5685 match(Set dst (ConvI2L (LoadUS mem)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5686 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5687
a61af66fc99e Initial load
duke
parents:
diff changeset
5688 size(4);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5689 format %{ "LDUH $mem,$dst\t! ushort/char -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5690 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5691 __ lduh($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5692 %}
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5693 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5694 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5695
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5696 // Load Unsigned Short/Char (16bit UNsigned) with mask 0xFF into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5697 instruct loadUS2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5698 match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5699 ins_cost(MEMORY_REF_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5700
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5701 size(4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5702 format %{ "LDUB $mem+1,$dst\t! ushort/char & 0xFF -> long" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5703 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5704 __ ldub($mem$$Address, $dst$$Register, 1); // LSB is index+1 on BE
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5705 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5706 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5707 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5708
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5709 // Load Unsigned Short/Char (16bit UNsigned) with a 13-bit mask into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5710 instruct loadUS2L_immI13(iRegL dst, memory mem, immI13 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5711 match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5712 ins_cost(MEMORY_REF_COST + DEFAULT_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5713
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5714 size(2*4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5715 format %{ "LDUH $mem,$dst\t! ushort/char & 13-bit mask -> long\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5716 "AND $dst,$mask,$dst" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5717 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5718 Register Rdst = $dst$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5719 __ lduh($mem$$Address, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5720 __ and3(Rdst, $mask$$constant, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5721 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5722 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5723 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5724
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5725 // Load Unsigned Short/Char (16bit UNsigned) with a 16-bit mask into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5726 instruct loadUS2L_immI16(iRegL dst, memory mem, immI16 mask, iRegL tmp) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5727 match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5728 effect(TEMP dst, TEMP tmp);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5729 ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5730
951
1fbd5d696bf4 6875967: CTW fails with./generated/adfiles/ad_sparc.cpp:6711
twisti
parents: 824
diff changeset
5731 size((3+1)*4); // set may use two instructions.
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5732 format %{ "LDUH $mem,$dst\t! ushort/char & 16-bit mask -> long\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5733 "SET $mask,$tmp\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5734 "AND $dst,$tmp,$dst" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5735 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5736 Register Rdst = $dst$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5737 Register Rtmp = $tmp$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5738 __ lduh($mem$$Address, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5739 __ set($mask$$constant, Rtmp);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5740 __ and3(Rdst, Rtmp, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5741 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5742 ins_pipe(iload_mem);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5743 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5744
a61af66fc99e Initial load
duke
parents:
diff changeset
5745 // Load Integer
a61af66fc99e Initial load
duke
parents:
diff changeset
5746 instruct loadI(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5747 match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5748 ins_cost(MEMORY_REF_COST);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5749
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5750 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5751 format %{ "LDUW $mem,$dst\t! int" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5752 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5753 __ lduw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5754 %}
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5755 ins_pipe(iload_mem);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5756 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5757
785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5758 // Load Integer to Byte (8 bit signed)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5759 instruct loadI2B(iRegI dst, indOffset13m7 mem, immI_24 twentyfour) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5760 match(Set dst (RShiftI (LShiftI (LoadI mem) twentyfour) twentyfour));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5761 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5762
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5763 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5764
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5765 format %{ "LDSB $mem+3,$dst\t! int -> byte" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5766 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5767 __ ldsb($mem$$Address, $dst$$Register, 3);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5768 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5769 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5770 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5771
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5772 // Load Integer to Unsigned Byte (8 bit UNsigned)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5773 instruct loadI2UB(iRegI dst, indOffset13m7 mem, immI_255 mask) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5774 match(Set dst (AndI (LoadI mem) mask));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5775 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5776
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5777 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5778
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5779 format %{ "LDUB $mem+3,$dst\t! int -> ubyte" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5780 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5781 __ ldub($mem$$Address, $dst$$Register, 3);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5782 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5783 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5784 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5785
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5786 // Load Integer to Short (16 bit signed)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5787 instruct loadI2S(iRegI dst, indOffset13m7 mem, immI_16 sixteen) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5788 match(Set dst (RShiftI (LShiftI (LoadI mem) sixteen) sixteen));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5789 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5790
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5791 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5792
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5793 format %{ "LDSH $mem+2,$dst\t! int -> short" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5794 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5795 __ ldsh($mem$$Address, $dst$$Register, 2);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5796 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5797 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5798 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5799
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5800 // Load Integer to Unsigned Short (16 bit UNsigned)
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5801 instruct loadI2US(iRegI dst, indOffset13m7 mem, immI_65535 mask) %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5802 match(Set dst (AndI (LoadI mem) mask));
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5803 ins_cost(MEMORY_REF_COST);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5804
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5805 size(4);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5806
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5807 format %{ "LDUH $mem+2,$dst\t! int -> ushort/char" %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5808 ins_encode %{
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5809 __ lduh($mem$$Address, $dst$$Register, 2);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5810 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5811 ins_pipe(iload_mask_mem);
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5812 %}
2056494941db 6814842: Load shortening optimizations
twisti
parents: 775
diff changeset
5813
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5814 // Load Integer into a Long Register
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5815 instruct loadI2L(iRegL dst, memory mem) %{
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5816 match(Set dst (ConvI2L (LoadI mem)));
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5817 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5818
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5819 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5820 format %{ "LDSW $mem,$dst\t! int -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5821 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5822 __ ldsw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5823 %}
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5824 ins_pipe(iload_mask_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5825 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5826
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5827 // Load Integer with mask 0xFF into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5828 instruct loadI2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5829 match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5830 ins_cost(MEMORY_REF_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5831
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5832 size(4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5833 format %{ "LDUB $mem+3,$dst\t! int & 0xFF -> long" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5834 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5835 __ ldub($mem$$Address, $dst$$Register, 3); // LSB is index+3 on BE
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5836 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5837 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5838 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5839
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5840 // Load Integer with mask 0xFFFF into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5841 instruct loadI2L_immI_65535(iRegL dst, indOffset13m7 mem, immI_65535 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5842 match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5843 ins_cost(MEMORY_REF_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5844
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5845 size(4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5846 format %{ "LDUH $mem+2,$dst\t! int & 0xFFFF -> long" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5847 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5848 __ lduh($mem$$Address, $dst$$Register, 2); // LSW is index+2 on BE
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5849 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5850 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5851 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5852
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5853 // Load Integer with a 13-bit mask into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5854 instruct loadI2L_immI13(iRegL dst, memory mem, immI13 mask) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5855 match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5856 ins_cost(MEMORY_REF_COST + DEFAULT_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5857
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5858 size(2*4);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5859 format %{ "LDUW $mem,$dst\t! int & 13-bit mask -> long\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5860 "AND $dst,$mask,$dst" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5861 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5862 Register Rdst = $dst$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5863 __ lduw($mem$$Address, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5864 __ and3(Rdst, $mask$$constant, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5865 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5866 ins_pipe(iload_mem);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5867 %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5868
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5869 // Load Integer with a 32-bit mask into a Long Register
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5870 instruct loadI2L_immI(iRegL dst, memory mem, immI mask, iRegL tmp) %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5871 match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5872 effect(TEMP dst, TEMP tmp);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5873 ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5874
951
1fbd5d696bf4 6875967: CTW fails with./generated/adfiles/ad_sparc.cpp:6711
twisti
parents: 824
diff changeset
5875 size((3+1)*4); // set may use two instructions.
824
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5876 format %{ "LDUW $mem,$dst\t! int & 32-bit mask -> long\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5877 "SET $mask,$tmp\n\t"
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5878 "AND $dst,$tmp,$dst" %}
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5879 ins_encode %{
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5880 Register Rdst = $dst$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5881 Register Rtmp = $tmp$$Register;
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5882 __ lduw($mem$$Address, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5883 __ set($mask$$constant, Rtmp);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5884 __ and3(Rdst, Rtmp, Rdst);
18a08a7e16b5 5057225: Remove useless I2L conversions
twisti
parents: 785
diff changeset
5885 %}
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5886 ins_pipe(iload_mem);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5887 %}
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5888
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5889 // Load Unsigned Integer into a Long Register
6849
f6badecb7ea7 7199654: Remove LoadUI2LNode
vlivanov
parents: 6848
diff changeset
5890 instruct loadUI2L(iRegL dst, memory mem, immL_32bits mask) %{
f6badecb7ea7 7199654: Remove LoadUI2LNode
vlivanov
parents: 6848
diff changeset
5891 match(Set dst (AndL (ConvI2L (LoadI mem)) mask));
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5892 ins_cost(MEMORY_REF_COST);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5893
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5894 size(4);
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5895 format %{ "LDUW $mem,$dst\t! uint -> long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5896 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5897 __ lduw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5898 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5899 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5900 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5901
a61af66fc99e Initial load
duke
parents:
diff changeset
5902 // Load Long - aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
5903 instruct loadL(iRegL dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5904 match(Set dst (LoadL mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5905 ins_cost(MEMORY_REF_COST);
624
337400e7a5dd 6797305: Add LoadUB and LoadUI opcode class
twisti
parents: 605
diff changeset
5906
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5907 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5908 format %{ "LDX $mem,$dst\t! long" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5909 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5910 __ ldx($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5911 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5912 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5913 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5914
a61af66fc99e Initial load
duke
parents:
diff changeset
5915 // Load Long - UNaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
5916 instruct loadL_unaligned(iRegL dst, memory mem, o7RegI tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5917 match(Set dst (LoadL_unaligned mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5918 effect(KILL tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
5919 ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5920 size(16);
a61af66fc99e Initial load
duke
parents:
diff changeset
5921 format %{ "LDUW $mem+4,R_O7\t! misaligned long\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5922 "\tLDUW $mem ,$dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5923 "\tSLLX #32, $dst, $dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
5924 "\tOR $dst, R_O7, $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5925 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
5926 ins_encode(form3_mem_reg_long_unaligned_marshal( mem, dst ));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5927 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5928 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5929
a61af66fc99e Initial load
duke
parents:
diff changeset
5930 // Load Range
a61af66fc99e Initial load
duke
parents:
diff changeset
5931 instruct loadRange(iRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5932 match(Set dst (LoadRange mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5933 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5934
a61af66fc99e Initial load
duke
parents:
diff changeset
5935 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5936 format %{ "LDUW $mem,$dst\t! range" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5937 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
5938 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5939 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5940 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5941
a61af66fc99e Initial load
duke
parents:
diff changeset
5942 // Load Integer into %f register (for fitos/fitod)
a61af66fc99e Initial load
duke
parents:
diff changeset
5943 instruct loadI_freg(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5944 match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5945 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5946 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5947
a61af66fc99e Initial load
duke
parents:
diff changeset
5948 format %{ "LDF $mem,$dst\t! for fitos/fitod" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5949 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
5950 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5951 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5952 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5953
a61af66fc99e Initial load
duke
parents:
diff changeset
5954 // Load Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
5955 instruct loadP(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5956 match(Set dst (LoadP mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5957 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5958 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5959
a61af66fc99e Initial load
duke
parents:
diff changeset
5960 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5961 format %{ "LDUW $mem,$dst\t! ptr" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5962 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5963 __ lduw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5964 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5965 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5966 format %{ "LDX $mem,$dst\t! ptr" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5967 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5968 __ ldx($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5969 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5970 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
5971 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
5972 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
5973
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5974 // Load Compressed Pointer
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5975 instruct loadN(iRegN dst, memory mem) %{
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5976 match(Set dst (LoadN mem));
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5977 ins_cost(MEMORY_REF_COST);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5978 size(4);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5979
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5980 format %{ "LDUW $mem,$dst\t! compressed ptr" %}
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5981 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5982 __ lduw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5983 %}
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5984 ins_pipe(iload_mem);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5985 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
5986
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5987 // Load Klass Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
5988 instruct loadKlass(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
5989 match(Set dst (LoadKlass mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
5990 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
5991 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
5992
a61af66fc99e Initial load
duke
parents:
diff changeset
5993 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
5994 format %{ "LDUW $mem,$dst\t! klass ptr" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5995 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5996 __ lduw($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
5997 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5998 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
5999 format %{ "LDX $mem,$dst\t! klass ptr" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6000 ins_encode %{
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6001 __ ldx($mem$$Address, $dst$$Register);
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6002 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6003 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
6004 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6005 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6006
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6007 // Load narrow Klass Pointer
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6008 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
6009 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
6010 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
6011 size(4);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6012
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6013 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
6014 ins_encode %{
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6015 __ lduw($mem$$Address, $dst$$Register);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6016 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6017 ins_pipe(iload_mem);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6018 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6019
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6020 // Load Double
a61af66fc99e Initial load
duke
parents:
diff changeset
6021 instruct loadD(regD dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6022 match(Set dst (LoadD mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
6023 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6024
a61af66fc99e Initial load
duke
parents:
diff changeset
6025 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6026 format %{ "LDDF $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6027 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
6028 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6029 ins_pipe(floadD_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6030 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6031
a61af66fc99e Initial load
duke
parents:
diff changeset
6032 // Load Double - UNaligned
a61af66fc99e Initial load
duke
parents:
diff changeset
6033 instruct loadD_unaligned(regD_low dst, memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6034 match(Set dst (LoadD_unaligned mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
6035 ins_cost(MEMORY_REF_COST*2+DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6036 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
6037 format %{ "LDF $mem ,$dst.hi\t! misaligned double\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
6038 "\tLDF $mem+4,$dst.lo\t!" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6039 opcode(Assembler::ldf_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
6040 ins_encode( form3_mem_reg_double_unaligned( mem, dst ));
a61af66fc99e Initial load
duke
parents:
diff changeset
6041 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6042 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6043
a61af66fc99e Initial load
duke
parents:
diff changeset
6044 // Load Float
a61af66fc99e Initial load
duke
parents:
diff changeset
6045 instruct loadF(regF dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6046 match(Set dst (LoadF mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
6047 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6048
a61af66fc99e Initial load
duke
parents:
diff changeset
6049 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6050 format %{ "LDF $mem,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6051 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
6052 ins_encode(simple_form3_mem_reg( mem, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6053 ins_pipe(floadF_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6054 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6055
a61af66fc99e Initial load
duke
parents:
diff changeset
6056 // Load Constant
a61af66fc99e Initial load
duke
parents:
diff changeset
6057 instruct loadConI( iRegI dst, immI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6058 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6059 ins_cost(DEFAULT_COST * 3/2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6060 format %{ "SET $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6061 ins_encode( Set32(src, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6062 ins_pipe(ialu_hi_lo_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6063 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6064
a61af66fc99e Initial load
duke
parents:
diff changeset
6065 instruct loadConI13( iRegI dst, immI13 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6066 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6067
a61af66fc99e Initial load
duke
parents:
diff changeset
6068 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6069 format %{ "MOV $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6070 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6071 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6072 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6073
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6074 #ifndef _LP64
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6075 instruct loadConP(iRegP dst, immP con) %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6076 match(Set dst con);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6077 ins_cost(DEFAULT_COST * 3/2);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6078 format %{ "SET $con,$dst\t!ptr" %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6079 ins_encode %{
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6080 relocInfo::relocType constant_reloc = _opnds[1]->constant_reloc();
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6081 intptr_t val = $con$$constant;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6082 if (constant_reloc == relocInfo::oop_type) {
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6083 __ set_oop_constant((jobject) val, $dst$$Register);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6084 } else if (constant_reloc == relocInfo::metadata_type) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6085 __ set_metadata_constant((Metadata*)val, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6086 } else { // non-oop pointers, e.g. card mark base, heap top
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6087 assert(constant_reloc == relocInfo::none, "unexpected reloc type");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6088 __ set(val, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6089 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6090 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6091 ins_pipe(loadConP);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6092 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6093 #else
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6094 instruct loadConP_set(iRegP dst, immP_set con) %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6095 match(Set dst con);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6096 ins_cost(DEFAULT_COST * 3/2);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6097 format %{ "SET $con,$dst\t! ptr" %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6098 ins_encode %{
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6099 relocInfo::relocType constant_reloc = _opnds[1]->constant_reloc();
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6100 intptr_t val = $con$$constant;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6101 if (constant_reloc == relocInfo::oop_type) {
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6102 __ set_oop_constant((jobject) val, $dst$$Register);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6103 } else if (constant_reloc == relocInfo::metadata_type) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6104 __ set_metadata_constant((Metadata*)val, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6105 } else { // non-oop pointers, e.g. card mark base, heap top
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6106 assert(constant_reloc == relocInfo::none, "unexpected reloc type");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6179
diff changeset
6107 __ set(val, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6108 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6109 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6110 ins_pipe(loadConP);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6111 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6112
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6113 instruct loadConP_load(iRegP dst, immP_load con) %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6114 match(Set dst con);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6115 ins_cost(MEMORY_REF_COST);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6116 format %{ "LD [$constanttablebase + $constantoffset],$dst\t! load from constant table: ptr=$con" %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6117 ins_encode %{
2076
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6118 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $dst$$Register);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6119 __ ld_ptr($constanttablebase, con_offset, $dst$$Register);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6120 %}
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6121 ins_pipe(loadConP);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6122 %}
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6123
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6124 instruct loadConP_no_oop_cheap(iRegP dst, immP_no_oop_cheap con) %{
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6125 match(Set dst con);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6126 ins_cost(DEFAULT_COST * 3/2);
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6127 format %{ "SET $con,$dst\t! non-oop ptr" %}
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6128 ins_encode %{
7737fa7ec2b5 7006044: materialize cheap non-oop pointers on 64-bit SPARC
twisti
parents: 2012
diff changeset
6129 __ set($con$$constant, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6130 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6131 ins_pipe(loadConP);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6132 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6133 #endif // _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6134
a61af66fc99e Initial load
duke
parents:
diff changeset
6135 instruct loadConP0(iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6136 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6137
a61af66fc99e Initial load
duke
parents:
diff changeset
6138 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6139 format %{ "CLR $dst\t!ptr" %}
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6140 ins_encode %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6141 __ clr($dst$$Register);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6142 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6143 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6144 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6145
a61af66fc99e Initial load
duke
parents:
diff changeset
6146 instruct loadConP_poll(iRegP dst, immP_poll src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6147 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6148 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6149 format %{ "SET $src,$dst\t!ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6150 ins_encode %{
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6151 AddressLiteral polling_page(os::get_polling_page());
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6152 __ sethi(polling_page, reg_to_register_object($dst$$reg));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6153 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6154 ins_pipe(loadConP_poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
6155 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6156
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6157 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
6158 match(Set dst src);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6159
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6160 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6161 format %{ "CLR $dst\t! compressed NULL ptr" %}
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6162 ins_encode %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6163 __ clr($dst$$Register);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6164 %}
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6165 ins_pipe(ialu_imm);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6166 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6167
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6168 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
6169 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
6170 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
6171 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
6172 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6173 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
6174 __ 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
6175 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6176 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
6177 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6178
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6179 instruct loadConNKlass(iRegN dst, immNKlass src) %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6180 match(Set dst src);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6181 ins_cost(DEFAULT_COST * 3/2);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6182 format %{ "SET $src,$dst\t! compressed klass ptr" %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6183 ins_encode %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6184 Register dst = $dst$$Register;
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6185 __ set_narrow_klass((Klass*)$src$$constant, dst);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6186 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6187 ins_pipe(ialu_hi_lo_reg);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6188 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6189
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6190 // Materialize long value (predicated by immL_cheap).
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6191 instruct loadConL_set64(iRegL dst, immL_cheap con, o7RegL tmp) %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6192 match(Set dst con);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6193 effect(KILL tmp);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6194 ins_cost(DEFAULT_COST * 3);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6195 format %{ "SET64 $con,$dst KILL $tmp\t! cheap long" %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6196 ins_encode %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6197 __ set64($con$$constant, $dst$$Register, $tmp$$Register);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6198 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6199 ins_pipe(loadConL);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6200 %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6201
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6202 // Load long value from constant table (predicated by immL_expensive).
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6203 instruct loadConL_ldx(iRegL dst, immL_expensive con) %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6204 match(Set dst con);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6205 ins_cost(MEMORY_REF_COST);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6206 format %{ "LDX [$constanttablebase + $constantoffset],$dst\t! load from constant table: long=$con" %}
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6207 ins_encode %{
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6208 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $dst$$Register);
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6209 __ ldx($constanttablebase, con_offset, $dst$$Register);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6210 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6211 ins_pipe(loadConL);
a61af66fc99e Initial load
duke
parents:
diff changeset
6212 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6213
a61af66fc99e Initial load
duke
parents:
diff changeset
6214 instruct loadConL0( iRegL dst, immL0 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6215 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6216 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6217 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6218 format %{ "CLR $dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6219 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6220 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6221 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6222
a61af66fc99e Initial load
duke
parents:
diff changeset
6223 instruct loadConL13( iRegL dst, immL13 src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6224 match(Set dst src);
a61af66fc99e Initial load
duke
parents:
diff changeset
6225 ins_cost(DEFAULT_COST * 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
6226
a61af66fc99e Initial load
duke
parents:
diff changeset
6227 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6228 format %{ "MOV $src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6229 ins_encode( Set13( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6230 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6231 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6232
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6233 instruct loadConF(regF dst, immF con, o7RegI tmp) %{
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6234 match(Set dst con);
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6235 effect(KILL tmp);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6236 format %{ "LDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: float=$con" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6237 ins_encode %{
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6238 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $tmp$$Register);
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6239 __ ldf(FloatRegisterImpl::S, $constanttablebase, con_offset, $dst$$FloatRegister);
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6240 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6241 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
6242 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6243
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6244 instruct loadConD(regD dst, immD con, o7RegI tmp) %{
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6245 match(Set dst con);
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6246 effect(KILL tmp);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6247 format %{ "LDDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: double=$con" %}
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6248 ins_encode %{
732
fb4c18a2ec66 6833573: C2 sparc: assert(c < 64 && (c & 1) == 0,"bad double float register")
never
parents: 727
diff changeset
6249 // XXX This is a quick fix for 6833573.
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
6250 //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset($con), $dst$$FloatRegister);
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6251 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset($con), $tmp$$Register);
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
6252 __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
727
6b2273dd6fa9 6822110: Add AddressLiteral class on SPARC
twisti
parents: 681
diff changeset
6253 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6254 ins_pipe(loadConFD);
a61af66fc99e Initial load
duke
parents:
diff changeset
6255 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6256
a61af66fc99e Initial load
duke
parents:
diff changeset
6257 // Prefetch instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
6258 // Must be safe to execute with invalid address (cannot fault).
a61af66fc99e Initial load
duke
parents:
diff changeset
6259
a61af66fc99e Initial load
duke
parents:
diff changeset
6260 instruct prefetchr( memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6261 match( PrefetchRead mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
6262 ins_cost(MEMORY_REF_COST);
3854
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6263 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6264
a61af66fc99e Initial load
duke
parents:
diff changeset
6265 format %{ "PREFETCH $mem,0\t! Prefetch read-many" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6266 opcode(Assembler::prefetch_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
6267 ins_encode( form3_mem_prefetch_read( mem ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6268 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6269 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6270
a61af66fc99e Initial load
duke
parents:
diff changeset
6271 instruct prefetchw( memory mem ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6272 match( PrefetchWrite mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
6273 ins_cost(MEMORY_REF_COST);
3854
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6274 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6275
a61af66fc99e Initial load
duke
parents:
diff changeset
6276 format %{ "PREFETCH $mem,2\t! Prefetch write-many (and read)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6277 opcode(Assembler::prefetch_op3);
a61af66fc99e Initial load
duke
parents:
diff changeset
6278 ins_encode( form3_mem_prefetch_write( mem ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6279 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
6280 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6281
3854
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6282 // Prefetch instructions for allocation.
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6283
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6284 instruct prefetchAlloc( memory mem ) %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6285 predicate(AllocatePrefetchInstr == 0);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6286 match( PrefetchAllocation mem );
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6287 ins_cost(MEMORY_REF_COST);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6288 size(4);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6289
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6290 format %{ "PREFETCH $mem,2\t! Prefetch allocation" %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6291 opcode(Assembler::prefetch_op3);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6292 ins_encode( form3_mem_prefetch_write( mem ) );
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6293 ins_pipe(iload_mem);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6294 %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6295
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6296 // Use BIS instruction to prefetch for allocation.
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6297 // Could fault, need space at the end of TLAB.
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6298 instruct prefetchAlloc_bis( iRegP dst ) %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6299 predicate(AllocatePrefetchInstr == 1);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6300 match( PrefetchAllocation dst );
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6301 ins_cost(MEMORY_REF_COST);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6302 size(4);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6303
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6304 format %{ "STXA [$dst]\t! // Prefetch allocation using BIS" %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6305 ins_encode %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6306 __ stxa(G0, $dst$$Register, G0, Assembler::ASI_ST_BLKINIT_PRIMARY);
1367
9e321dcfa5b7 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1274
diff changeset
6307 %}
9e321dcfa5b7 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1274
diff changeset
6308 ins_pipe(istore_mem_reg);
9e321dcfa5b7 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 1274
diff changeset
6309 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6310
3854
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6311 // Next code is used for finding next cache line address to prefetch.
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6312 #ifndef _LP64
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6313 instruct cacheLineAdr( iRegP dst, iRegP src, immI13 mask ) %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6314 match(Set dst (CastX2P (AndI (CastP2X src) mask)));
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6315 ins_cost(DEFAULT_COST);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6316 size(4);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6317
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6318 format %{ "AND $src,$mask,$dst\t! next cache line address" %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6319 ins_encode %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6320 __ and3($src$$Register, $mask$$constant, $dst$$Register);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6321 %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6322 ins_pipe(ialu_reg_imm);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6323 %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6324 #else
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6325 instruct cacheLineAdr( iRegP dst, iRegP src, immL13 mask ) %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6326 match(Set dst (CastX2P (AndL (CastP2X src) mask)));
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6327 ins_cost(DEFAULT_COST);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6328 size(4);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6329
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6330 format %{ "AND $src,$mask,$dst\t! next cache line address" %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6331 ins_encode %{
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6332 __ and3($src$$Register, $mask$$constant, $dst$$Register);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6333 %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6334 ins_pipe(ialu_reg_imm);
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6335 %}
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6336 #endif
1af104d6cf99 7079329: Adjust allocation prefetching for T4
kvn
parents: 3851
diff changeset
6337
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6338 //----------Store Instructions-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6339 // Store Byte
a61af66fc99e Initial load
duke
parents:
diff changeset
6340 instruct storeB(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6341 match(Set mem (StoreB mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6342 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6343
a61af66fc99e Initial load
duke
parents:
diff changeset
6344 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6345 format %{ "STB $src,$mem\t! byte" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6346 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
6347 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6348 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6349 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6350
a61af66fc99e Initial load
duke
parents:
diff changeset
6351 instruct storeB0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6352 match(Set mem (StoreB mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6353 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6354
a61af66fc99e Initial load
duke
parents:
diff changeset
6355 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6356 format %{ "STB $src,$mem\t! byte" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6357 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
6358 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6359 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6360 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6361
a61af66fc99e Initial load
duke
parents:
diff changeset
6362 instruct storeCM0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6363 match(Set mem (StoreCM mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6364 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6365
a61af66fc99e Initial load
duke
parents:
diff changeset
6366 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6367 format %{ "STB $src,$mem\t! CMS card-mark byte 0" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6368 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
6369 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6370 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6371 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6372
a61af66fc99e Initial load
duke
parents:
diff changeset
6373 // Store Char/Short
a61af66fc99e Initial load
duke
parents:
diff changeset
6374 instruct storeC(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6375 match(Set mem (StoreC mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6376 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6377
a61af66fc99e Initial load
duke
parents:
diff changeset
6378 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6379 format %{ "STH $src,$mem\t! short" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6380 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
6381 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6382 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6383 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6384
a61af66fc99e Initial load
duke
parents:
diff changeset
6385 instruct storeC0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6386 match(Set mem (StoreC mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6387 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6388
a61af66fc99e Initial load
duke
parents:
diff changeset
6389 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6390 format %{ "STH $src,$mem\t! short" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6391 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
6392 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6393 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6394 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6395
a61af66fc99e Initial load
duke
parents:
diff changeset
6396 // Store Integer
a61af66fc99e Initial load
duke
parents:
diff changeset
6397 instruct storeI(memory mem, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6398 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6399 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6400
a61af66fc99e Initial load
duke
parents:
diff changeset
6401 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6402 format %{ "STW $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6403 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
6404 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6405 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6406 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6407
a61af66fc99e Initial load
duke
parents:
diff changeset
6408 // Store Long
a61af66fc99e Initial load
duke
parents:
diff changeset
6409 instruct storeL(memory mem, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6410 match(Set mem (StoreL mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6411 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6412 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6413 format %{ "STX $src,$mem\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6414 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
6415 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6416 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6417 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6418
a61af66fc99e Initial load
duke
parents:
diff changeset
6419 instruct storeI0(memory mem, immI0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6420 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6421 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6422
a61af66fc99e Initial load
duke
parents:
diff changeset
6423 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6424 format %{ "STW $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6425 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
6426 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6427 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6428 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6429
a61af66fc99e Initial load
duke
parents:
diff changeset
6430 instruct storeL0(memory mem, immL0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6431 match(Set mem (StoreL mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6432 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6433
a61af66fc99e Initial load
duke
parents:
diff changeset
6434 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6435 format %{ "STX $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6436 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
6437 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6438 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6439 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6440
a61af66fc99e Initial load
duke
parents:
diff changeset
6441 // Store Integer from float register (used after fstoi)
a61af66fc99e Initial load
duke
parents:
diff changeset
6442 instruct storeI_Freg(memory mem, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6443 match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6444 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6445
a61af66fc99e Initial load
duke
parents:
diff changeset
6446 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6447 format %{ "STF $src,$mem\t! after fstoi/fdtoi" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6448 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
6449 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6450 ins_pipe(fstoreF_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6451 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6452
a61af66fc99e Initial load
duke
parents:
diff changeset
6453 // Store Pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
6454 instruct storeP(memory dst, sp_ptr_RegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6455 match(Set dst (StoreP dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6456 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6457 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6458
a61af66fc99e Initial load
duke
parents:
diff changeset
6459 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
6460 format %{ "STW $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6461 opcode(Assembler::stw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6462 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
6463 format %{ "STX $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6464 opcode(Assembler::stx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6465 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
6466 ins_encode( form3_mem_reg( dst, src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6467 ins_pipe(istore_mem_spORreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6468 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6469
a61af66fc99e Initial load
duke
parents:
diff changeset
6470 instruct storeP0(memory dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6471 match(Set dst (StoreP dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6472 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6473 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6474
a61af66fc99e Initial load
duke
parents:
diff changeset
6475 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
6476 format %{ "STW $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6477 opcode(Assembler::stw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6478 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
6479 format %{ "STX $src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6480 opcode(Assembler::stx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
6481 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
6482 ins_encode( form3_mem_reg( dst, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6483 ins_pipe(istore_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6484 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6485
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6486 // Store Compressed Pointer
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6487 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
6488 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
6489 ins_cost(MEMORY_REF_COST);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6490 size(4);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6491
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6492 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
6493 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6494 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
6495 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
6496 Register src = $src$$Register;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6497 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6498 __ stw(src, base, index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6499 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6500 __ stw(src, base, $dst$$disp);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6501 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6502 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6503 ins_pipe(istore_mem_spORreg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6504 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6505
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6506 instruct storeNKlass(memory dst, iRegN src) %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6507 match(Set dst (StoreNKlass dst src));
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6508 ins_cost(MEMORY_REF_COST);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6509 size(4);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6510
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6511 format %{ "STW $src,$dst\t! compressed klass ptr" %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6512 ins_encode %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6513 Register base = as_Register($dst$$base);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6514 Register index = as_Register($dst$$index);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6515 Register src = $src$$Register;
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6516 if (index != G0) {
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6517 __ stw(src, base, index);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6518 } else {
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6519 __ stw(src, base, $dst$$disp);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6520 }
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6521 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6522 ins_pipe(istore_mem_spORreg);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6523 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6524
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6525 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
6526 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
6527 ins_cost(MEMORY_REF_COST);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6528 size(4);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6529
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6530 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
6531 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6532 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
6533 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
6534 if (index != G0) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6535 __ stw(0, base, index);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6536 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6537 __ stw(0, base, $dst$$disp);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6538 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6539 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6540 ins_pipe(istore_mem_zero);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6541 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6542
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6543 // Store Double
a61af66fc99e Initial load
duke
parents:
diff changeset
6544 instruct storeD( memory mem, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6545 match(Set mem (StoreD mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6546 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6547
a61af66fc99e Initial load
duke
parents:
diff changeset
6548 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6549 format %{ "STDF $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6550 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
6551 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6552 ins_pipe(fstoreD_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6553 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6554
a61af66fc99e Initial load
duke
parents:
diff changeset
6555 instruct storeD0( memory mem, immD0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6556 match(Set mem (StoreD mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6557 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6558
a61af66fc99e Initial load
duke
parents:
diff changeset
6559 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6560 format %{ "STX $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6561 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
6562 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6563 ins_pipe(fstoreD_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6564 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6565
a61af66fc99e Initial load
duke
parents:
diff changeset
6566 // Store Float
a61af66fc99e Initial load
duke
parents:
diff changeset
6567 instruct storeF( memory mem, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6568 match(Set mem (StoreF mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6569 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6570
a61af66fc99e Initial load
duke
parents:
diff changeset
6571 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6572 format %{ "STF $src,$mem" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6573 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
6574 ins_encode(simple_form3_mem_reg( mem, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6575 ins_pipe(fstoreF_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6576 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6577
a61af66fc99e Initial load
duke
parents:
diff changeset
6578 instruct storeF0( memory mem, immF0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6579 match(Set mem (StoreF mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6580 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6581
a61af66fc99e Initial load
duke
parents:
diff changeset
6582 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6583 format %{ "STW $src,$mem\t! storeF0" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6584 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
6585 ins_encode(simple_form3_mem_reg( mem, R_G0 ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6586 ins_pipe(fstoreF_mem_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
6587 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6588
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6589 // 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
6590 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
6591 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
6592 match(Set dst (EncodeP src));
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6593 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
6594 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6595 __ 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
6596 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6597 ins_pipe(ialu_reg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6598 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6599
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6600 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
6601 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
6602 match(Set dst (EncodeP src));
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6603 format %{ "encode_heap_oop_not_null $src, $dst" %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6604 ins_encode %{
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6605 __ encode_heap_oop_not_null($src$$Register, $dst$$Register);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6606 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6607 ins_pipe(ialu_reg);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6608 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6609
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6610 instruct decodeHeapOop(iRegP dst, iRegN src) %{
182
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6611 predicate(n->bottom_type()->is_oopptr()->ptr() != TypePtr::NotNull &&
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6612 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
6613 match(Set dst (DecodeN src));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6614 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
6615 ins_encode %{
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6616 __ 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
6617 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6618 ins_pipe(ialu_reg);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6619 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6620
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6621 instruct decodeHeapOop_not_null(iRegP dst, iRegN src) %{
182
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6622 predicate(n->bottom_type()->is_oopptr()->ptr() == TypePtr::NotNull ||
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 181
diff changeset
6623 n->bottom_type()->is_oopptr()->ptr() == TypePtr::Constant);
124
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6624 match(Set dst (DecodeN src));
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6625 format %{ "decode_heap_oop_not_null $src, $dst" %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6626 ins_encode %{
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6627 __ decode_heap_oop_not_null($src$$Register, $dst$$Register);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6628 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6629 ins_pipe(ialu_reg);
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6630 %}
b130b98db9cf 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 113
diff changeset
6631
6848
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6632 instruct encodeKlass_not_null(iRegN dst, iRegP src) %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6633 match(Set dst (EncodePKlass src));
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6634 format %{ "encode_klass_not_null $src, $dst" %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6635 ins_encode %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6636 __ encode_klass_not_null($src$$Register, $dst$$Register);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6637 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6638 ins_pipe(ialu_reg);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6639 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6640
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6641 instruct decodeKlass_not_null(iRegP dst, iRegN src) %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6642 match(Set dst (DecodeNKlass src));
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6643 format %{ "decode_klass_not_null $src, $dst" %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6644 ins_encode %{
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6645 __ decode_klass_not_null($src$$Register, $dst$$Register);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6646 %}
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6647 ins_pipe(ialu_reg);
8e47bac5643a 7054512: Compress class pointers after perm gen removal
roland
parents: 6823
diff changeset
6648 %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
6649
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6650 //----------MemBar Instructions-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6651 // Memory barrier flavors
a61af66fc99e Initial load
duke
parents:
diff changeset
6652
a61af66fc99e Initial load
duke
parents:
diff changeset
6653 instruct membar_acquire() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6654 match(MemBarAcquire);
14439
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14435
diff changeset
6655 match(LoadFence);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6656 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6657
a61af66fc99e Initial load
duke
parents:
diff changeset
6658 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6659 format %{ "MEMBAR-acquire" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6660 ins_encode( enc_membar_acquire );
a61af66fc99e Initial load
duke
parents:
diff changeset
6661 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6662 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6663
a61af66fc99e Initial load
duke
parents:
diff changeset
6664 instruct membar_acquire_lock() %{
3849
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
6665 match(MemBarAcquireLock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6666 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6667
a61af66fc99e Initial load
duke
parents:
diff changeset
6668 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6669 format %{ "!MEMBAR-acquire (CAS in prior FastLock so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6670 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6671 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6672 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6673
a61af66fc99e Initial load
duke
parents:
diff changeset
6674 instruct membar_release() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6675 match(MemBarRelease);
14439
50fdb38839eb 8028515: PPPC64 (part 113.2): opto: Introduce LoadFence/StoreFence.
goetz
parents: 14435
diff changeset
6676 match(StoreFence);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6677 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6678
a61af66fc99e Initial load
duke
parents:
diff changeset
6679 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6680 format %{ "MEMBAR-release" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6681 ins_encode( enc_membar_release );
a61af66fc99e Initial load
duke
parents:
diff changeset
6682 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6683 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6684
a61af66fc99e Initial load
duke
parents:
diff changeset
6685 instruct membar_release_lock() %{
3849
f1c12354c3f7 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 3842
diff changeset
6686 match(MemBarReleaseLock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6687 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6688
a61af66fc99e Initial load
duke
parents:
diff changeset
6689 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6690 format %{ "!MEMBAR-release (CAS in succeeding FastUnlock so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6691 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6692 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6693 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6694
a61af66fc99e Initial load
duke
parents:
diff changeset
6695 instruct membar_volatile() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6696 match(MemBarVolatile);
a61af66fc99e Initial load
duke
parents:
diff changeset
6697 ins_cost(4*MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6698
a61af66fc99e Initial load
duke
parents:
diff changeset
6699 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6700 format %{ "MEMBAR-volatile" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6701 ins_encode( enc_membar_volatile );
a61af66fc99e Initial load
duke
parents:
diff changeset
6702 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
6703 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6704
a61af66fc99e Initial load
duke
parents:
diff changeset
6705 instruct unnecessary_membar_volatile() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6706 match(MemBarVolatile);
a61af66fc99e Initial load
duke
parents:
diff changeset
6707 predicate(Matcher::post_store_load_barrier(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
6708 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6709
a61af66fc99e Initial load
duke
parents:
diff changeset
6710 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6711 format %{ "!MEMBAR-volatile (unnecessary so empty encoding)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6712 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6713 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6714 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6715
4763
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6716 instruct membar_storestore() %{
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6717 match(MemBarStoreStore);
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6718 ins_cost(0);
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6719
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6720 size(0);
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6721 format %{ "!MEMBAR-storestore (empty encoding)" %}
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6722 ins_encode( );
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6723 ins_pipe(empty);
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6724 %}
1dc233a8c7fe 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 4121
diff changeset
6725
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6726 //----------Register Move Instructions-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6727 instruct roundDouble_nop(regD dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6728 match(Set dst (RoundDouble dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6729 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6730 // SPARC results are already "rounded" (i.e., normal-format IEEE)
a61af66fc99e Initial load
duke
parents:
diff changeset
6731 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6732 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6733 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6734
a61af66fc99e Initial load
duke
parents:
diff changeset
6735
a61af66fc99e Initial load
duke
parents:
diff changeset
6736 instruct roundFloat_nop(regF dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6737 match(Set dst (RoundFloat dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
6738 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
6739 // SPARC results are already "rounded" (i.e., normal-format IEEE)
a61af66fc99e Initial load
duke
parents:
diff changeset
6740 ins_encode( );
a61af66fc99e Initial load
duke
parents:
diff changeset
6741 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
6742 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6743
a61af66fc99e Initial load
duke
parents:
diff changeset
6744
a61af66fc99e Initial load
duke
parents:
diff changeset
6745 // Cast Index to Pointer for unsafe natives
a61af66fc99e Initial load
duke
parents:
diff changeset
6746 instruct castX2P(iRegX src, iRegP dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6747 match(Set dst (CastX2P src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6748
a61af66fc99e Initial load
duke
parents:
diff changeset
6749 format %{ "MOV $src,$dst\t! IntX->Ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6750 ins_encode( form3_g0_rs2_rd_move( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6751 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6752 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6753
a61af66fc99e Initial load
duke
parents:
diff changeset
6754 // Cast Pointer to Index for unsafe natives
a61af66fc99e Initial load
duke
parents:
diff changeset
6755 instruct castP2X(iRegP src, iRegX dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6756 match(Set dst (CastP2X src));
a61af66fc99e Initial load
duke
parents:
diff changeset
6757
a61af66fc99e Initial load
duke
parents:
diff changeset
6758 format %{ "MOV $src,$dst\t! Ptr->IntX" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6759 ins_encode( form3_g0_rs2_rd_move( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6760 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6761 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6762
a61af66fc99e Initial load
duke
parents:
diff changeset
6763 instruct stfSSD(stackSlotD stkSlot, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6764 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6765 match(Set stkSlot src); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6766 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6767 format %{ "STDF $src,$stkSlot\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6768 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
6769 ins_encode(simple_form3_mem_reg(stkSlot, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6770 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6771 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6772
a61af66fc99e Initial load
duke
parents:
diff changeset
6773 instruct ldfSSD(regD dst, stackSlotD stkSlot) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6774 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6775 match(Set dst stkSlot); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6776 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6777 format %{ "LDDF $stkSlot,$dst\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6778 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
6779 ins_encode(simple_form3_mem_reg(stkSlot, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6780 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
6781 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6782
a61af66fc99e Initial load
duke
parents:
diff changeset
6783 instruct stfSSF(stackSlotF stkSlot, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6784 // %%%% TO DO: Tell the coalescer that this kind of node is a copy!
a61af66fc99e Initial load
duke
parents:
diff changeset
6785 match(Set stkSlot src); // chain rule
a61af66fc99e Initial load
duke
parents:
diff changeset
6786 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
6787 format %{ "STF $src,$stkSlot\t!stk" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6788 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
6789 ins_encode(simple_form3_mem_reg(stkSlot, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6790 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6791 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6792
a61af66fc99e Initial load
duke
parents:
diff changeset
6793 //----------Conditional Move---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
6794 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6795 instruct cmovIP_reg(cmpOpP cmp, flagsRegP pcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6796 match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6797 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6798 format %{ "MOV$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6799 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6800 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6801 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6802
a61af66fc99e Initial load
duke
parents:
diff changeset
6803 instruct cmovIP_imm(cmpOpP cmp, flagsRegP pcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6804 match(Set dst (CMoveI (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6805 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6806 format %{ "MOV$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6807 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6808 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6809 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6810
a61af66fc99e Initial load
duke
parents:
diff changeset
6811 instruct cmovII_reg(cmpOp cmp, flagsReg icc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6812 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6813 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6814 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6815 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6816 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6817 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6818 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6819
a61af66fc99e Initial load
duke
parents:
diff changeset
6820 instruct cmovII_imm(cmpOp cmp, flagsReg icc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6821 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6822 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6823 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6824 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6825 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6826 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6827 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6828
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6829 instruct cmovIIu_reg(cmpOpU cmp, flagsRegU icc, iRegI dst, iRegI src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6830 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6831 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6832 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6833 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6834 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6835 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6836 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6837
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6838 instruct cmovIIu_imm(cmpOpU cmp, flagsRegU icc, iRegI dst, immI11 src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6839 match(Set dst (CMoveI (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6840 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6841 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6842 format %{ "MOV$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6843 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6844 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6845 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6846
a61af66fc99e Initial load
duke
parents:
diff changeset
6847 instruct cmovIF_reg(cmpOpF cmp, flagsRegF fcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6848 match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6849 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6850 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6851 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6852 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6853 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6854 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6855
a61af66fc99e Initial load
duke
parents:
diff changeset
6856 instruct cmovIF_imm(cmpOpF cmp, flagsRegF fcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6857 match(Set dst (CMoveI (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6858 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6859 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6860 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6861 ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6862 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6863 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6864
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6865 // 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
6866 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
6867 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
6868 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6869 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
6870 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
6871 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6872 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6873
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6874 // 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
6875 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
6876 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
6877 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6878 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6879 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
6880 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
6881 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6882 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6883
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6884 // This instruction also works with CmpN so we don't need cmovNN_reg.
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6885 instruct cmovNIu_reg(cmpOpU cmp, flagsRegU icc, iRegN dst, iRegN src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6886 match(Set dst (CMoveN (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6887 ins_cost(150);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6888 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6889 format %{ "MOV$cmp $icc,$src,$dst" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6890 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6891 ins_pipe(ialu_reg);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6892 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6893
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6894 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
6895 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
6896 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6897 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6898 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
6899 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
6900 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6901 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6902
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6903 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6904 instruct cmovPP_reg(cmpOpP cmp, flagsRegP pcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6905 match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6906 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6907 format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6908 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6909 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6910 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6911
a61af66fc99e Initial load
duke
parents:
diff changeset
6912 instruct cmovPP_imm(cmpOpP cmp, flagsRegP pcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6913 match(Set dst (CMoveP (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6914 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6915 format %{ "MOV$cmp $pcc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6916 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6917 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6918 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6919
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
6920 // This instruction also works with CmpN so we don't need cmovPN_reg.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6921 instruct cmovPI_reg(cmpOp cmp, flagsReg icc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6922 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6923 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6924
a61af66fc99e Initial load
duke
parents:
diff changeset
6925 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6926 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6927 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6928 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
6929 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6930
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6931 instruct cmovPIu_reg(cmpOpU cmp, flagsRegU icc, iRegP dst, iRegP src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6932 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6933 ins_cost(150);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6934
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6935 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6936 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6937 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6938 ins_pipe(ialu_reg);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6939 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6940
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6941 instruct cmovPI_imm(cmpOp cmp, flagsReg icc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6942 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6943 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6944
a61af66fc99e Initial load
duke
parents:
diff changeset
6945 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6946 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6947 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6948 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6949 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6950
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6951 instruct cmovPIu_imm(cmpOpU cmp, flagsRegU icc, iRegP dst, immP0 src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6952 match(Set dst (CMoveP (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6953 ins_cost(140);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6954
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6955 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6956 format %{ "MOV$cmp $icc,$src,$dst\t! ptr" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6957 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6958 ins_pipe(ialu_imm);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6959 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
6960
0
a61af66fc99e Initial load
duke
parents:
diff changeset
6961 instruct cmovPF_reg(cmpOpF cmp, flagsRegF fcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6962 match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6963 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6964 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6965 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6966 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6967 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6968 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6969
a61af66fc99e Initial load
duke
parents:
diff changeset
6970 instruct cmovPF_imm(cmpOpF cmp, flagsRegF fcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6971 match(Set dst (CMoveP (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6972 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
6973 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6974 format %{ "MOV$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6975 ins_encode( enc_cmov_imm_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6976 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
6977 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6978
a61af66fc99e Initial load
duke
parents:
diff changeset
6979 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
6980 instruct cmovFP_reg(cmpOpP cmp, flagsRegP pcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6981 match(Set dst (CMoveF (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6982 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6983 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
6984 format %{ "FMOVD$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6985 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6986 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6987 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6988
a61af66fc99e Initial load
duke
parents:
diff changeset
6989 instruct cmovFI_reg(cmpOp cmp, flagsReg icc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
6990 match(Set dst (CMoveF (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
6991 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
6992
a61af66fc99e Initial load
duke
parents:
diff changeset
6993 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
6994 format %{ "FMOVS$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6995 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
6996 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
6997 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
6998 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
6999
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7000 instruct cmovFIu_reg(cmpOpU cmp, flagsRegU icc, regF dst, regF src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7001 match(Set dst (CMoveF (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7002 ins_cost(150);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7003
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7004 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7005 format %{ "FMOVS$cmp $icc,$src,$dst" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7006 opcode(0x101);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7007 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7008 ins_pipe(int_conditional_float_move);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7009 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7010
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7011 // Conditional move,
a61af66fc99e Initial load
duke
parents:
diff changeset
7012 instruct cmovFF_reg(cmpOpF cmp, flagsRegF fcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7013 match(Set dst (CMoveF (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7014 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7015 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7016 format %{ "FMOVF$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7017 opcode(0x1);
a61af66fc99e Initial load
duke
parents:
diff changeset
7018 ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7019 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
7020 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7021
a61af66fc99e Initial load
duke
parents:
diff changeset
7022 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
7023 instruct cmovDP_reg(cmpOpP cmp, flagsRegP pcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7024 match(Set dst (CMoveD (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7025 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7026 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7027 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
7028 format %{ "FMOVD$cmp $pcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7029 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7030 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
7031 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7032
a61af66fc99e Initial load
duke
parents:
diff changeset
7033 instruct cmovDI_reg(cmpOp cmp, flagsReg icc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7034 match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7035 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7036
a61af66fc99e Initial load
duke
parents:
diff changeset
7037 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7038 format %{ "FMOVD$cmp $icc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7039 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
7040 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7041 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
7042 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7043
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7044 instruct cmovDIu_reg(cmpOpU cmp, flagsRegU icc, regD dst, regD src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7045 match(Set dst (CMoveD (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7046 ins_cost(150);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7047
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7048 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7049 format %{ "FMOVD$cmp $icc,$src,$dst" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7050 opcode(0x102);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7051 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7052 ins_pipe(int_conditional_double_move);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7053 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7054
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7055 // Conditional move,
a61af66fc99e Initial load
duke
parents:
diff changeset
7056 instruct cmovDF_reg(cmpOpF cmp, flagsRegF fcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7057 match(Set dst (CMoveD (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7058 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7059 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7060 format %{ "FMOVD$cmp $fcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7061 opcode(0x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7062 ins_encode( enc_cmovff_reg(cmp,fcc,dst,src) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7063 ins_pipe(int_conditional_double_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
7064 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7065
a61af66fc99e Initial load
duke
parents:
diff changeset
7066 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
7067 instruct cmovLP_reg(cmpOpP cmp, flagsRegP pcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7068 match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7069 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7070 format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7071 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7072 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7073 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7074
a61af66fc99e Initial load
duke
parents:
diff changeset
7075 instruct cmovLP_imm(cmpOpP cmp, flagsRegP pcc, iRegL dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7076 match(Set dst (CMoveL (Binary cmp pcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7077 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
7078 format %{ "MOV$cmp $pcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7079 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::ptr_cc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7080 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7081 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7082
a61af66fc99e Initial load
duke
parents:
diff changeset
7083 instruct cmovLI_reg(cmpOp cmp, flagsReg icc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7084 match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7085 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7086
a61af66fc99e Initial load
duke
parents:
diff changeset
7087 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7088 format %{ "MOV$cmp $icc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7089 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7090 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7091 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7092
a61af66fc99e Initial load
duke
parents:
diff changeset
7093
1160
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7094 instruct cmovLIu_reg(cmpOpU cmp, flagsRegU icc, iRegL dst, iRegL src) %{
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7095 match(Set dst (CMoveL (Binary cmp icc) (Binary dst src)));
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7096 ins_cost(150);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7097
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7098 size(4);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7099 format %{ "MOV$cmp $icc,$src,$dst\t! long" %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7100 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::icc)) );
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7101 ins_pipe(ialu_reg);
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7102 %}
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7103
f24201449cac 6909839: missing unsigned compare cases for some cmoves in sparc.ad
never
parents: 1137
diff changeset
7104
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7105 instruct cmovLF_reg(cmpOpF cmp, flagsRegF fcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7106 match(Set dst (CMoveL (Binary cmp fcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7107 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
7108
a61af66fc99e Initial load
duke
parents:
diff changeset
7109 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7110 format %{ "MOV$cmp $fcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7111 ins_encode( enc_cmov_reg_f(cmp,dst,src, fcc) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7112 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7113 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7114
a61af66fc99e Initial load
duke
parents:
diff changeset
7115
a61af66fc99e Initial load
duke
parents:
diff changeset
7116
a61af66fc99e Initial load
duke
parents:
diff changeset
7117 //----------OS and Locking Instructions----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7118
a61af66fc99e Initial load
duke
parents:
diff changeset
7119 // This name is KNOWN by the ADLC and cannot be changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
7120 // The ADLC forces a 'TypeRawPtr::BOTTOM' output type
a61af66fc99e Initial load
duke
parents:
diff changeset
7121 // for this guy.
a61af66fc99e Initial load
duke
parents:
diff changeset
7122 instruct tlsLoadP(g2RegP dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7123 match(Set dst (ThreadLocal));
a61af66fc99e Initial load
duke
parents:
diff changeset
7124
a61af66fc99e Initial load
duke
parents:
diff changeset
7125 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7126 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7127 format %{ "# TLS is in G2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7128 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
7129 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
7130 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7131
a61af66fc99e Initial load
duke
parents:
diff changeset
7132 instruct checkCastPP( iRegP dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7133 match(Set dst (CheckCastPP dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7134
a61af66fc99e Initial load
duke
parents:
diff changeset
7135 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7136 format %{ "# checkcastPP of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7137 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
7138 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
7139 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7140
a61af66fc99e Initial load
duke
parents:
diff changeset
7141
a61af66fc99e Initial load
duke
parents:
diff changeset
7142 instruct castPP( iRegP dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7143 match(Set dst (CastPP dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7144 format %{ "# castPP of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7145 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
7146 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
7147 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7148
a61af66fc99e Initial load
duke
parents:
diff changeset
7149 instruct castII( iRegI dst ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7150 match(Set dst (CastII dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7151 format %{ "# castII of $dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7152 ins_encode( /*empty encoding*/ );
a61af66fc99e Initial load
duke
parents:
diff changeset
7153 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
7154 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
7155 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7156
a61af66fc99e Initial load
duke
parents:
diff changeset
7157 //----------Arithmetic Instructions--------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7158 // Addition Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7159 // Register Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
7160 instruct addI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7161 match(Set dst (AddI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7162
a61af66fc99e Initial load
duke
parents:
diff changeset
7163 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7164 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7165 ins_encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7166 __ add($src1$$Register, $src2$$Register, $dst$$Register);
a61af66fc99e Initial load
duke
parents:
diff changeset
7167 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7168 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7169 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7170
a61af66fc99e Initial load
duke
parents:
diff changeset
7171 // Immediate Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
7172 instruct addI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7173 match(Set dst (AddI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7174
a61af66fc99e Initial load
duke
parents:
diff changeset
7175 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7176 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7177 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7178 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7179 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7180 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7181
a61af66fc99e Initial load
duke
parents:
diff changeset
7182 // Pointer Register Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
7183 instruct addP_reg_reg(iRegP dst, iRegP src1, iRegX src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7184 match(Set dst (AddP src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7185
a61af66fc99e Initial load
duke
parents:
diff changeset
7186 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7187 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7188 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7189 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7190 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7191 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7192
a61af66fc99e Initial load
duke
parents:
diff changeset
7193 // Pointer Immediate Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
7194 instruct addP_reg_imm13(iRegP dst, iRegP src1, immX13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7195 match(Set dst (AddP src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7196
a61af66fc99e Initial load
duke
parents:
diff changeset
7197 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7198 format %{ "ADD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7199 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7200 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7201 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7202 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7203
a61af66fc99e Initial load
duke
parents:
diff changeset
7204 // Long Addition
a61af66fc99e Initial load
duke
parents:
diff changeset
7205 instruct addL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7206 match(Set dst (AddL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7207
a61af66fc99e Initial load
duke
parents:
diff changeset
7208 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7209 format %{ "ADD $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7210 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7211 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7212 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7213 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7214
a61af66fc99e Initial load
duke
parents:
diff changeset
7215 instruct addL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7216 match(Set dst (AddL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
7217
a61af66fc99e Initial load
duke
parents:
diff changeset
7218 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7219 format %{ "ADD $src1,$con,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7220 opcode(Assembler::add_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7221 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7222 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7223 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7224
a61af66fc99e Initial load
duke
parents:
diff changeset
7225 //----------Conditional_store--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7226 // Conditional-store of the updated heap-top.
a61af66fc99e Initial load
duke
parents:
diff changeset
7227 // Used during allocation of the shared heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
7228 // Sets flags (EQ) on success. Implemented with a CASA on Sparc.
a61af66fc99e Initial load
duke
parents:
diff changeset
7229
a61af66fc99e Initial load
duke
parents:
diff changeset
7230 // LoadP-locked. Same as a regular pointer load when used with a compare-swap
a61af66fc99e Initial load
duke
parents:
diff changeset
7231 instruct loadPLocked(iRegP dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7232 match(Set dst (LoadPLocked mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
7233 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7234
a61af66fc99e Initial load
duke
parents:
diff changeset
7235 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
7236 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7237 format %{ "LDUW $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7238 opcode(Assembler::lduw_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
7239 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
7240 format %{ "LDX $mem,$dst\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7241 opcode(Assembler::ldx_op3, 0, REGP_OP);
a61af66fc99e Initial load
duke
parents:
diff changeset
7242 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
7243 ins_encode( form3_mem_reg( mem, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7244 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
7245 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7246
a61af66fc99e Initial load
duke
parents:
diff changeset
7247 instruct storePConditional( iRegP heap_top_ptr, iRegP oldval, g3RegP newval, flagsRegP pcc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7248 match(Set pcc (StorePConditional heap_top_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7249 effect( KILL newval );
a61af66fc99e Initial load
duke
parents:
diff changeset
7250 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
7251 "CMP R_G3,$oldval\t\t! See if we made progress" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7252 ins_encode( enc_cas(heap_top_ptr,oldval,newval) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7253 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7254 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7255
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7256 // Conditional-store of an int value.
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7257 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
7258 match(Set icc (StoreIConditional mem_ptr (Binary oldval newval)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7259 effect( KILL newval );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7260 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
7261 "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
7262 ins_encode( enc_cas(mem_ptr,oldval,newval) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7263 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7264 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7265
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7266 // Conditional-store of a long value.
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7267 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
7268 match(Set xcc (StoreLConditional mem_ptr (Binary oldval newval)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7269 effect( KILL newval );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
7270 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
7271 "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
7272 ins_encode( enc_cas(mem_ptr,oldval,newval) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7273 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7274 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7275
a61af66fc99e Initial load
duke
parents:
diff changeset
7276 // No flag versions for CompareAndSwap{P,I,L} because matcher can't match them
a61af66fc99e Initial load
duke
parents:
diff changeset
7277
a61af66fc99e Initial load
duke
parents:
diff changeset
7278 instruct compareAndSwapL_bool(iRegP mem_ptr, iRegL oldval, iRegL newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7279 predicate(VM_Version::supports_cx8());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7280 match(Set res (CompareAndSwapL mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7281 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
7282 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7283 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7284 "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
7285 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7286 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7287 "MOVne xcc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
7288 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7289 ins_encode( enc_casx(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
7290 enc_lflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7291 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7292 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7293
a61af66fc99e Initial load
duke
parents:
diff changeset
7294
a61af66fc99e Initial load
duke
parents:
diff changeset
7295 instruct compareAndSwapI_bool(iRegP mem_ptr, iRegI oldval, iRegI newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7296 match(Set res (CompareAndSwapI mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7297 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
7298 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7299 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7300 "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
7301 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7302 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7303 "MOVne icc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
7304 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7305 ins_encode( enc_casi(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
7306 enc_iflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7307 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7308 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7309
a61af66fc99e Initial load
duke
parents:
diff changeset
7310 instruct compareAndSwapP_bool(iRegP mem_ptr, iRegP oldval, iRegP newval, iRegI res, o7RegI tmp1, flagsReg ccr ) %{
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7311 #ifdef _LP64
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7312 predicate(VM_Version::supports_cx8());
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7313 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7314 match(Set res (CompareAndSwapP mem_ptr (Binary oldval newval)));
a61af66fc99e Initial load
duke
parents:
diff changeset
7315 effect( USE mem_ptr, KILL ccr, KILL tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
7316 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7317 "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
7318 "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
7319 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7320 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7321 "MOVne xcc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
7322 %}
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
7323 #ifdef _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7324 ins_encode( enc_casx(mem_ptr, oldval, newval),
a61af66fc99e Initial load
duke
parents:
diff changeset
7325 enc_lflags_ne_to_boolean(res) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7326 #else
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
7327 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
7328 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
7329 #endif
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
7330 ins_pipe( long_memory_op );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
7331 %}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
7332
181
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
7333 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
7334 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
7335 effect( USE mem_ptr, KILL ccr, KILL tmp1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7336 format %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7337 "MOV $newval,O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7338 "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
7339 "CMP $oldval,O7\t\t! See if we made progress\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7340 "MOV 1,$res\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7341 "MOVne icc,R_G0,$res"
a61af66fc99e Initial load
duke
parents:
diff changeset
7342 %}
181
823298b11afc 6709165: Tests hang or misbahve with HS 13.0-b01 on solaris-sparcv9
never
parents: 165
diff changeset
7343 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
7344 enc_iflags_ne_to_boolean(res) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7345 ins_pipe( long_memory_op );
a61af66fc99e Initial load
duke
parents:
diff changeset
7346 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7347
6795
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7348 instruct xchgI( memory mem, iRegI newval) %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7349 match(Set newval (GetAndSetI mem newval));
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7350 format %{ "SWAP [$mem],$newval" %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7351 size(4);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7352 ins_encode %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7353 __ swap($mem$$Address, $newval$$Register);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7354 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7355 ins_pipe( long_memory_op );
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7356 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7357
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7358 #ifndef _LP64
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7359 instruct xchgP( memory mem, iRegP newval) %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7360 match(Set newval (GetAndSetP mem newval));
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7361 format %{ "SWAP [$mem],$newval" %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7362 size(4);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7363 ins_encode %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7364 __ swap($mem$$Address, $newval$$Register);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7365 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7366 ins_pipe( long_memory_op );
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7367 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7368 #endif
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7369
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7370 instruct xchgN( memory mem, iRegN newval) %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7371 match(Set newval (GetAndSetN mem newval));
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7372 format %{ "SWAP [$mem],$newval" %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7373 size(4);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7374 ins_encode %{
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7375 __ swap($mem$$Address, $newval$$Register);
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7376 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7377 ins_pipe( long_memory_op );
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7378 %}
7eca5de9e0b6 7023898: Intrinsify AtomicLongFieldUpdater.getAndIncrement()
roland
parents: 6725
diff changeset
7379
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7380 //---------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7381 // Subtraction Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7382 // Register Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
7383 instruct subI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7384 match(Set dst (SubI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7385
a61af66fc99e Initial load
duke
parents:
diff changeset
7386 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7387 format %{ "SUB $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7388 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7389 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7390 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7391 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7392
a61af66fc99e Initial load
duke
parents:
diff changeset
7393 // Immediate Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
7394 instruct subI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7395 match(Set dst (SubI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7396
a61af66fc99e Initial load
duke
parents:
diff changeset
7397 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7398 format %{ "SUB $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7399 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7400 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7401 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7402 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7403
a61af66fc99e Initial load
duke
parents:
diff changeset
7404 instruct subI_zero_reg(iRegI dst, immI0 zero, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7405 match(Set dst (SubI zero src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7406
a61af66fc99e Initial load
duke
parents:
diff changeset
7407 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7408 format %{ "NEG $src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7409 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7410 ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7411 ins_pipe(ialu_zero_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7412 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7413
a61af66fc99e Initial load
duke
parents:
diff changeset
7414 // Long subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
7415 instruct subL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7416 match(Set dst (SubL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7417
a61af66fc99e Initial load
duke
parents:
diff changeset
7418 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7419 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7420 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7421 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7422 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7423 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7424
a61af66fc99e Initial load
duke
parents:
diff changeset
7425 // Immediate Subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
7426 instruct subL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7427 match(Set dst (SubL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
7428
a61af66fc99e Initial load
duke
parents:
diff changeset
7429 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7430 format %{ "SUB $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7431 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7432 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7433 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7434 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7435
a61af66fc99e Initial load
duke
parents:
diff changeset
7436 // Long negation
a61af66fc99e Initial load
duke
parents:
diff changeset
7437 instruct negL_reg_reg(iRegL dst, immL0 zero, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7438 match(Set dst (SubL zero src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7439
a61af66fc99e Initial load
duke
parents:
diff changeset
7440 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7441 format %{ "NEG $src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7442 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7443 ins_encode( form3_rs1_rs2_rd( R_G0, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7444 ins_pipe(ialu_zero_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7445 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7446
a61af66fc99e Initial load
duke
parents:
diff changeset
7447 // Multiplication Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7448 // Integer Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
7449 // Register Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
7450 instruct mulI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7451 match(Set dst (MulI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7452
a61af66fc99e Initial load
duke
parents:
diff changeset
7453 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7454 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7455 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7456 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7457 ins_pipe(imul_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7458 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7459
a61af66fc99e Initial load
duke
parents:
diff changeset
7460 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
7461 instruct mulI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7462 match(Set dst (MulI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7463
a61af66fc99e Initial load
duke
parents:
diff changeset
7464 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7465 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7466 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7467 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7468 ins_pipe(imul_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7469 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7470
a61af66fc99e Initial load
duke
parents:
diff changeset
7471 instruct mulL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7472 match(Set dst (MulL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7473 ins_cost(DEFAULT_COST * 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
7474 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7475 format %{ "MULX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7476 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7477 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7478 ins_pipe(mulL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7479 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7480
a61af66fc99e Initial load
duke
parents:
diff changeset
7481 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
7482 instruct mulL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7483 match(Set dst (MulL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7484 ins_cost(DEFAULT_COST * 5);
a61af66fc99e Initial load
duke
parents:
diff changeset
7485 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7486 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7487 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7488 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7489 ins_pipe(mulL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7490 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7491
a61af66fc99e Initial load
duke
parents:
diff changeset
7492 // Integer Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7493 // Register Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7494 instruct divI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7495 match(Set dst (DivI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7496 ins_cost((2+71)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7497
a61af66fc99e Initial load
duke
parents:
diff changeset
7498 format %{ "SRA $src2,0,$src2\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7499 "SRA $src1,0,$src1\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7500 "SDIVX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7501 ins_encode( idiv_reg( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7502 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7503 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7504
a61af66fc99e Initial load
duke
parents:
diff changeset
7505 // Immediate Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7506 instruct divI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7507 match(Set dst (DivI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7508 ins_cost((2+71)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7509
a61af66fc99e Initial load
duke
parents:
diff changeset
7510 format %{ "SRA $src1,0,$src1\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7511 "SDIVX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7512 ins_encode( idiv_imm( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7513 ins_pipe(sdiv_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7514 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7515
a61af66fc99e Initial load
duke
parents:
diff changeset
7516 //----------Div-By-10-Expansion------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7517 // Extract hi bits of a 32x32->64 bit multiply.
a61af66fc99e Initial load
duke
parents:
diff changeset
7518 // Expand rule only, not matched
a61af66fc99e Initial load
duke
parents:
diff changeset
7519 instruct mul_hi(iRegIsafe dst, iRegIsafe src1, iRegIsafe src2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7520 effect( DEF dst, USE src1, USE src2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
7521 format %{ "MULX $src1,$src2,$dst\t! Used in div-by-10\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
7522 "SRLX $dst,#32,$dst\t\t! Extract only hi word of result" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7523 ins_encode( enc_mul_hi(dst,src1,src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7524 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7525 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7526
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
7527 // Magic constant, reciprocal of 10
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7528 instruct loadConI_x66666667(iRegIsafe dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7529 effect( DEF dst );
a61af66fc99e Initial load
duke
parents:
diff changeset
7530
a61af66fc99e Initial load
duke
parents:
diff changeset
7531 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
7532 format %{ "SET 0x66666667,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7533 ins_encode( Set32(0x66666667, dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7534 ins_pipe(ialu_hi_lo_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7535 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7536
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
7537 // Register Shift Right Arithmetic Long by 32-63
0
a61af66fc99e Initial load
duke
parents:
diff changeset
7538 instruct sra_31( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7539 effect( DEF dst, USE src );
a61af66fc99e Initial load
duke
parents:
diff changeset
7540 format %{ "SRA $src,31,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7541 ins_encode( form3_rs1_rd_copysign_hi(src,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7542 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7543 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7544
a61af66fc99e Initial load
duke
parents:
diff changeset
7545 // Arithmetic Shift Right by 8-bit immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7546 instruct sra_reg_2( iRegI dst, iRegI src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7547 effect( DEF dst, USE src );
a61af66fc99e Initial load
duke
parents:
diff changeset
7548 format %{ "SRA $src,2,$dst\t! Used in div-by-10" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7549 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7550 ins_encode( form3_rs1_simm13_rd( src, 0x2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7551 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7552 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7553
a61af66fc99e Initial load
duke
parents:
diff changeset
7554 // Integer DIV with 10
a61af66fc99e Initial load
duke
parents:
diff changeset
7555 instruct divI_10( iRegI dst, iRegIsafe src, immI10 div ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7556 match(Set dst (DivI src div));
a61af66fc99e Initial load
duke
parents:
diff changeset
7557 ins_cost((6+6)*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
7558 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7559 iRegIsafe tmp1; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
7560 iRegIsafe tmp2; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
7561 iRegI tmp3; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
7562 iRegI tmp4; // Killed temps;
a61af66fc99e Initial load
duke
parents:
diff changeset
7563 loadConI_x66666667( tmp1 ); // SET 0x66666667 -> tmp1
a61af66fc99e Initial load
duke
parents:
diff changeset
7564 mul_hi( tmp2, src, tmp1 ); // MUL hibits(src * tmp1) -> tmp2
a61af66fc99e Initial load
duke
parents:
diff changeset
7565 sra_31( tmp3, src ); // SRA src,31 -> tmp3
a61af66fc99e Initial load
duke
parents:
diff changeset
7566 sra_reg_2( tmp4, tmp2 ); // SRA tmp2,2 -> tmp4
a61af66fc99e Initial load
duke
parents:
diff changeset
7567 subI_reg_reg( dst,tmp4,tmp3); // SUB tmp4 - tmp3 -> dst
a61af66fc99e Initial load
duke
parents:
diff changeset
7568 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7569 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7570
a61af66fc99e Initial load
duke
parents:
diff changeset
7571 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7572 instruct divL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7573 match(Set dst (DivL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7574 ins_cost(DEFAULT_COST*71);
a61af66fc99e Initial load
duke
parents:
diff changeset
7575 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7576 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7577 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7578 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7579 ins_pipe(divL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7580 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7581
a61af66fc99e Initial load
duke
parents:
diff changeset
7582 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7583 instruct divL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7584 match(Set dst (DivL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7585 ins_cost(DEFAULT_COST*71);
a61af66fc99e Initial load
duke
parents:
diff changeset
7586 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7587 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7588 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7589 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7590 ins_pipe(divL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7591 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7592
a61af66fc99e Initial load
duke
parents:
diff changeset
7593 // Integer Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7594 // Register Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7595 instruct modI_reg_reg(iRegI dst, iRegIsafe src1, iRegIsafe src2, o7RegP temp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7596 match(Set dst (ModI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7597 effect( KILL ccr, KILL temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7598
a61af66fc99e Initial load
duke
parents:
diff changeset
7599 format %{ "SREM $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7600 ins_encode( irem_reg(src1, src2, dst, temp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7601 ins_pipe(sdiv_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7602 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7603
a61af66fc99e Initial load
duke
parents:
diff changeset
7604 // Immediate Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7605 instruct modI_reg_imm13(iRegI dst, iRegIsafe src1, immI13 src2, o7RegP temp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7606 match(Set dst (ModI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7607 effect( KILL ccr, KILL temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
7608
a61af66fc99e Initial load
duke
parents:
diff changeset
7609 format %{ "SREM $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7610 ins_encode( irem_imm(src1, src2, dst, temp) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7611 ins_pipe(sdiv_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7612 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7613
a61af66fc99e Initial load
duke
parents:
diff changeset
7614 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7615 instruct divL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7616 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7617 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7618 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7619 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7620 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7621 ins_pipe(divL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7622 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7623
a61af66fc99e Initial load
duke
parents:
diff changeset
7624 // Register Long Division
a61af66fc99e Initial load
duke
parents:
diff changeset
7625 instruct divL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7626 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7627 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7628 format %{ "SDIVX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7629 opcode(Assembler::sdivx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7630 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7631 ins_pipe(divL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7632 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7633
a61af66fc99e Initial load
duke
parents:
diff changeset
7634 instruct mulL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7635 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7636 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7637 format %{ "MULX $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7638 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7639 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7640 ins_pipe(mulL_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7641 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7642
a61af66fc99e Initial load
duke
parents:
diff changeset
7643 // Immediate Multiplication
a61af66fc99e Initial load
duke
parents:
diff changeset
7644 instruct mulL_reg_imm13_1(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7645 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7646 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7647 format %{ "MULX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7648 opcode(Assembler::mulx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7649 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7650 ins_pipe(mulL_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7651 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7652
a61af66fc99e Initial load
duke
parents:
diff changeset
7653 instruct subL_reg_reg_1(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7654 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7655 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7656 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7657 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7658 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7659 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7660 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7661
a61af66fc99e Initial load
duke
parents:
diff changeset
7662 instruct subL_reg_reg_2(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7663 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7664 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7665 format %{ "SUB $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7666 opcode(Assembler::sub_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7667 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7668 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7669 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7670
a61af66fc99e Initial load
duke
parents:
diff changeset
7671 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7672 instruct modL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7673 match(Set dst (ModL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7674 ins_cost(DEFAULT_COST*(71 + 6 + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
7675 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7676 iRegL tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
7677 iRegL tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
7678 divL_reg_reg_1(tmp1, src1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7679 mulL_reg_reg_1(tmp2, tmp1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7680 subL_reg_reg_1(dst, src1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7681 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7682 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7683
a61af66fc99e Initial load
duke
parents:
diff changeset
7684 // Register Long Remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
7685 instruct modL_reg_imm13(iRegL dst, iRegL src1, immL13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7686 match(Set dst (ModL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7687 ins_cost(DEFAULT_COST*(71 + 6 + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
7688 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7689 iRegL tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
7690 iRegL tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
7691 divL_reg_imm13_1(tmp1, src1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7692 mulL_reg_imm13_1(tmp2, tmp1, src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7693 subL_reg_reg_2 (dst, src1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
7694 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7695 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7696
a61af66fc99e Initial load
duke
parents:
diff changeset
7697 // Integer Shift Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7698 // Register Shift Left
a61af66fc99e Initial load
duke
parents:
diff changeset
7699 instruct shlI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7700 match(Set dst (LShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7701
a61af66fc99e Initial load
duke
parents:
diff changeset
7702 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7703 format %{ "SLL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7704 opcode(Assembler::sll_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7705 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7706 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7707 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7708
a61af66fc99e Initial load
duke
parents:
diff changeset
7709 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7710 instruct shlI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7711 match(Set dst (LShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7712
a61af66fc99e Initial load
duke
parents:
diff changeset
7713 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7714 format %{ "SLL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7715 opcode(Assembler::sll_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7716 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7717 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7718 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7719
a61af66fc99e Initial load
duke
parents:
diff changeset
7720 // Register Shift Left
a61af66fc99e Initial load
duke
parents:
diff changeset
7721 instruct shlL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7722 match(Set dst (LShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7723
a61af66fc99e Initial load
duke
parents:
diff changeset
7724 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7725 format %{ "SLLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7726 opcode(Assembler::sllx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7727 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7728 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7729 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7730
a61af66fc99e Initial load
duke
parents:
diff changeset
7731 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7732 instruct shlL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7733 match(Set dst (LShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7734
a61af66fc99e Initial load
duke
parents:
diff changeset
7735 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7736 format %{ "SLLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7737 opcode(Assembler::sllx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7738 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7739 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7740 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7741
a61af66fc99e Initial load
duke
parents:
diff changeset
7742 // Register Arithmetic Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7743 instruct sarI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7744 match(Set dst (RShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7745 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7746 format %{ "SRA $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7747 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7748 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7749 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7750 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7751
a61af66fc99e Initial load
duke
parents:
diff changeset
7752 // Register Arithmetic Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7753 instruct sarI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7754 match(Set dst (RShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7755
a61af66fc99e Initial load
duke
parents:
diff changeset
7756 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7757 format %{ "SRA $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7758 opcode(Assembler::sra_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7759 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7760 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7761 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7762
a61af66fc99e Initial load
duke
parents:
diff changeset
7763 // Register Shift Right Arithmatic Long
a61af66fc99e Initial load
duke
parents:
diff changeset
7764 instruct sarL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7765 match(Set dst (RShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7766
a61af66fc99e Initial load
duke
parents:
diff changeset
7767 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7768 format %{ "SRAX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7769 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7770 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7771 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7772 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7773
a61af66fc99e Initial load
duke
parents:
diff changeset
7774 // Register Shift Left Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7775 instruct sarL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7776 match(Set dst (RShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7777
a61af66fc99e Initial load
duke
parents:
diff changeset
7778 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7779 format %{ "SRAX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7780 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7781 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7782 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7783 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7784
a61af66fc99e Initial load
duke
parents:
diff changeset
7785 // Register Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7786 instruct shrI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7787 match(Set dst (URShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7788
a61af66fc99e Initial load
duke
parents:
diff changeset
7789 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7790 format %{ "SRL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7791 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7792 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7793 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7794 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7795
a61af66fc99e Initial load
duke
parents:
diff changeset
7796 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7797 instruct shrI_reg_imm5(iRegI dst, iRegI src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7798 match(Set dst (URShiftI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7799
a61af66fc99e Initial load
duke
parents:
diff changeset
7800 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7801 format %{ "SRL $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7802 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7803 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7804 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7805 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7806
a61af66fc99e Initial load
duke
parents:
diff changeset
7807 // Register Shift Right
a61af66fc99e Initial load
duke
parents:
diff changeset
7808 instruct shrL_reg_reg(iRegL dst, iRegL src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7809 match(Set dst (URShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7810
a61af66fc99e Initial load
duke
parents:
diff changeset
7811 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7812 format %{ "SRLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7813 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7814 ins_encode( form3_sd_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7815 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7816 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7817
a61af66fc99e Initial load
duke
parents:
diff changeset
7818 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
7819 instruct shrL_reg_imm6(iRegL dst, iRegL src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7820 match(Set dst (URShiftL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7821
a61af66fc99e Initial load
duke
parents:
diff changeset
7822 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7823 format %{ "SRLX $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7824 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7825 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7826 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7827 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7828
a61af66fc99e Initial load
duke
parents:
diff changeset
7829 // Register Shift Right Immediate with a CastP2X
a61af66fc99e Initial load
duke
parents:
diff changeset
7830 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
7831 instruct shrP_reg_imm6(iRegL dst, iRegP src1, immU6 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7832 match(Set dst (URShiftL (CastP2X src1) src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7833 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7834 format %{ "SRLX $src1,$src2,$dst\t! Cast ptr $src1 to long and shift" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7835 opcode(Assembler::srlx_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7836 ins_encode( form3_sd_rs1_imm6_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7837 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7838 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7839 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
7840 instruct shrP_reg_imm5(iRegI dst, iRegP src1, immU5 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7841 match(Set dst (URShiftI (CastP2X src1) src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7842 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7843 format %{ "SRL $src1,$src2,$dst\t! Cast ptr $src1 to int and shift" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7844 opcode(Assembler::srl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
7845 ins_encode( form3_rs1_imm5_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
7846 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
7847 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7848 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
7849
a61af66fc99e Initial load
duke
parents:
diff changeset
7850
a61af66fc99e Initial load
duke
parents:
diff changeset
7851 //----------Floating Point Arithmetic Instructions-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7852
a61af66fc99e Initial load
duke
parents:
diff changeset
7853 // Add float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7854 instruct addF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7855 match(Set dst (AddF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7856
a61af66fc99e Initial load
duke
parents:
diff changeset
7857 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7858 format %{ "FADDS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7859 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fadds_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7860 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7861 ins_pipe(faddF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7862 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7863
a61af66fc99e Initial load
duke
parents:
diff changeset
7864 // Add float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7865 instruct addD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7866 match(Set dst (AddD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7867
a61af66fc99e Initial load
duke
parents:
diff changeset
7868 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7869 format %{ "FADDD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7870 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7871 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7872 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7873 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7874
a61af66fc99e Initial load
duke
parents:
diff changeset
7875 // Sub float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7876 instruct subF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7877 match(Set dst (SubF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7878
a61af66fc99e Initial load
duke
parents:
diff changeset
7879 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7880 format %{ "FSUBS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7881 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7882 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7883 ins_pipe(faddF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7884 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7885
a61af66fc99e Initial load
duke
parents:
diff changeset
7886 // Sub float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7887 instruct subD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7888 match(Set dst (SubD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7889
a61af66fc99e Initial load
duke
parents:
diff changeset
7890 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7891 format %{ "FSUBD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7892 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7893 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7894 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7895 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7896
a61af66fc99e Initial load
duke
parents:
diff changeset
7897 // Mul float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7898 instruct mulF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7899 match(Set dst (MulF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7900
a61af66fc99e Initial load
duke
parents:
diff changeset
7901 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7902 format %{ "FMULS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7903 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuls_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7904 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7905 ins_pipe(fmulF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7906 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7907
a61af66fc99e Initial load
duke
parents:
diff changeset
7908 // Mul float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7909 instruct mulD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7910 match(Set dst (MulD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7911
a61af66fc99e Initial load
duke
parents:
diff changeset
7912 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7913 format %{ "FMULD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7914 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7915 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7916 ins_pipe(fmulD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7917 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7918
a61af66fc99e Initial load
duke
parents:
diff changeset
7919 // Div float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7920 instruct divF_reg_reg(regF dst, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7921 match(Set dst (DivF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7922
a61af66fc99e Initial load
duke
parents:
diff changeset
7923 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7924 format %{ "FDIVS $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7925 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7926 ins_encode(form3_opf_rs1F_rs2F_rdF(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7927 ins_pipe(fdivF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7928 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7929
a61af66fc99e Initial load
duke
parents:
diff changeset
7930 // Div float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7931 instruct divD_reg_reg(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7932 match(Set dst (DivD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
7933
a61af66fc99e Initial load
duke
parents:
diff changeset
7934 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7935 format %{ "FDIVD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7936 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdivd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7937 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7938 ins_pipe(fdivD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7939 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7940
a61af66fc99e Initial load
duke
parents:
diff changeset
7941 // Absolute float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7942 instruct absD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7943 match(Set dst (AbsD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7944
a61af66fc99e Initial load
duke
parents:
diff changeset
7945 format %{ "FABSd $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7946 ins_encode(fabsd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7947 ins_pipe(faddD_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7948 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7949
a61af66fc99e Initial load
duke
parents:
diff changeset
7950 // Absolute float single precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7951 instruct absF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7952 match(Set dst (AbsF src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7953
a61af66fc99e Initial load
duke
parents:
diff changeset
7954 format %{ "FABSs $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7955 ins_encode(fabss(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7956 ins_pipe(faddF_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7957 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7958
a61af66fc99e Initial load
duke
parents:
diff changeset
7959 instruct negF_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7960 match(Set dst (NegF src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7961
a61af66fc99e Initial load
duke
parents:
diff changeset
7962 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7963 format %{ "FNEGs $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7964 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fnegs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
7965 ins_encode(form3_opf_rs2F_rdF(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
7966 ins_pipe(faddF_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7967 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7968
a61af66fc99e Initial load
duke
parents:
diff changeset
7969 instruct negD_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7970 match(Set dst (NegD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7971
a61af66fc99e Initial load
duke
parents:
diff changeset
7972 format %{ "FNEGd $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7973 ins_encode(fnegd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7974 ins_pipe(faddD_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7975 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7976
a61af66fc99e Initial load
duke
parents:
diff changeset
7977 // Sqrt float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7978 instruct sqrtF_reg_reg(regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7979 match(Set dst (ConvD2F (SqrtD (ConvF2D src))));
a61af66fc99e Initial load
duke
parents:
diff changeset
7980
a61af66fc99e Initial load
duke
parents:
diff changeset
7981 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7982 format %{ "FSQRTS $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7983 ins_encode(fsqrts(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7984 ins_pipe(fdivF_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7985 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7986
a61af66fc99e Initial load
duke
parents:
diff changeset
7987 // Sqrt float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
7988 instruct sqrtD_reg_reg(regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
7989 match(Set dst (SqrtD src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7990
a61af66fc99e Initial load
duke
parents:
diff changeset
7991 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
7992 format %{ "FSQRTD $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7993 ins_encode(fsqrtd(dst, src));
a61af66fc99e Initial load
duke
parents:
diff changeset
7994 ins_pipe(fdivD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
7995 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
7996
a61af66fc99e Initial load
duke
parents:
diff changeset
7997 //----------Logical Instructions-----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
7998 // And Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
7999 // Register And
a61af66fc99e Initial load
duke
parents:
diff changeset
8000 instruct andI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8001 match(Set dst (AndI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8002
a61af66fc99e Initial load
duke
parents:
diff changeset
8003 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8004 format %{ "AND $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8005 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8006 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8007 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8008 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8009
a61af66fc99e Initial load
duke
parents:
diff changeset
8010 // Immediate And
a61af66fc99e Initial load
duke
parents:
diff changeset
8011 instruct andI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8012 match(Set dst (AndI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8013
a61af66fc99e Initial load
duke
parents:
diff changeset
8014 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8015 format %{ "AND $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8016 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8017 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8018 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8019 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8020
a61af66fc99e Initial load
duke
parents:
diff changeset
8021 // Register And Long
a61af66fc99e Initial load
duke
parents:
diff changeset
8022 instruct andL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8023 match(Set dst (AndL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8024
a61af66fc99e Initial load
duke
parents:
diff changeset
8025 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8026 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8027 format %{ "AND $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8028 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8029 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8030 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8031 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8032
a61af66fc99e Initial load
duke
parents:
diff changeset
8033 instruct andL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8034 match(Set dst (AndL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
8035
a61af66fc99e Initial load
duke
parents:
diff changeset
8036 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8037 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8038 format %{ "AND $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8039 opcode(Assembler::and_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8040 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8041 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8042 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8043
a61af66fc99e Initial load
duke
parents:
diff changeset
8044 // Or Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8045 // Register Or
a61af66fc99e Initial load
duke
parents:
diff changeset
8046 instruct orI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8047 match(Set dst (OrI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8048
a61af66fc99e Initial load
duke
parents:
diff changeset
8049 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8050 format %{ "OR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8051 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8052 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8053 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8054 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8055
a61af66fc99e Initial load
duke
parents:
diff changeset
8056 // Immediate Or
a61af66fc99e Initial load
duke
parents:
diff changeset
8057 instruct orI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8058 match(Set dst (OrI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8059
a61af66fc99e Initial load
duke
parents:
diff changeset
8060 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8061 format %{ "OR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8062 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8063 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8064 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8065 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8066
a61af66fc99e Initial load
duke
parents:
diff changeset
8067 // Register Or Long
a61af66fc99e Initial load
duke
parents:
diff changeset
8068 instruct orL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8069 match(Set dst (OrL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8070
a61af66fc99e Initial load
duke
parents:
diff changeset
8071 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8072 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8073 format %{ "OR $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8074 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8075 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8076 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8077 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8078
a61af66fc99e Initial load
duke
parents:
diff changeset
8079 instruct orL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8080 match(Set dst (OrL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
8081 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8082
a61af66fc99e Initial load
duke
parents:
diff changeset
8083 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8084 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8085 format %{ "OR $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8086 opcode(Assembler::or_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8087 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8088 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8089 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8090
420
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8091 #ifndef _LP64
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8092
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8093 // 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
8094 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
8095 match(Set dst (OrI src1 (CastP2X src2)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8096
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8097 size(4);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8098 format %{ "OR $src1,$src2,$dst" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8099 opcode(Assembler::or_op3, Assembler::arith_op);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8100 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8101 ins_pipe(ialu_reg_reg);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8102 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8103
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8104 #else
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8105
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8106 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
8107 match(Set dst (OrL src1 (CastP2X src2)));
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8108
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8109 ins_cost(DEFAULT_COST);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8110 size(4);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8111 format %{ "OR $src1,$src2,$dst\t! long" %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8112 opcode(Assembler::or_op3, Assembler::arith_op);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8113 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8114 ins_pipe(ialu_reg_reg);
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8115 %}
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8116
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8117 #endif
a1980da045cc 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 415
diff changeset
8118
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8119 // Xor Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8120 // Register Xor
a61af66fc99e Initial load
duke
parents:
diff changeset
8121 instruct xorI_reg_reg(iRegI dst, iRegI src1, iRegI src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8122 match(Set dst (XorI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8123
a61af66fc99e Initial load
duke
parents:
diff changeset
8124 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8125 format %{ "XOR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8126 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8127 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8128 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8129 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8130
a61af66fc99e Initial load
duke
parents:
diff changeset
8131 // Immediate Xor
a61af66fc99e Initial load
duke
parents:
diff changeset
8132 instruct xorI_reg_imm13(iRegI dst, iRegI src1, immI13 src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8133 match(Set dst (XorI src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8134
a61af66fc99e Initial load
duke
parents:
diff changeset
8135 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8136 format %{ "XOR $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8137 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8138 ins_encode( form3_rs1_simm13_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8139 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8140 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8141
a61af66fc99e Initial load
duke
parents:
diff changeset
8142 // Register Xor Long
a61af66fc99e Initial load
duke
parents:
diff changeset
8143 instruct xorL_reg_reg(iRegL dst, iRegL src1, iRegL src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8144 match(Set dst (XorL src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8145
a61af66fc99e Initial load
duke
parents:
diff changeset
8146 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8147 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8148 format %{ "XOR $src1,$src2,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8149 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8150 ins_encode( form3_rs1_rs2_rd( src1, src2, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8151 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8152 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8153
a61af66fc99e Initial load
duke
parents:
diff changeset
8154 instruct xorL_reg_imm13(iRegL dst, iRegL src1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8155 match(Set dst (XorL src1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
8156
a61af66fc99e Initial load
duke
parents:
diff changeset
8157 ins_cost(DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8158 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8159 format %{ "XOR $src1,$con,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8160 opcode(Assembler::xor_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8161 ins_encode( form3_rs1_simm13_rd( src1, con, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8162 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8163 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8164
a61af66fc99e Initial load
duke
parents:
diff changeset
8165 //----------Convert to Boolean-------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8166 // Nice hack for 32-bit tests but doesn't work for
a61af66fc99e Initial load
duke
parents:
diff changeset
8167 // 64-bit pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
8168 instruct convI2B( iRegI dst, iRegI src, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8169 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8170 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
8171 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8172 format %{ "CMP R_G0,$src\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8173 "ADDX R_G0,0,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8174 ins_encode( enc_to_bool( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8175 ins_pipe(ialu_reg_ialu);
a61af66fc99e Initial load
duke
parents:
diff changeset
8176 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8177
a61af66fc99e Initial load
duke
parents:
diff changeset
8178 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8179 instruct convP2B( iRegI dst, iRegP src, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8180 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8181 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
8182 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8183 format %{ "CMP R_G0,$src\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8184 "ADDX R_G0,0,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8185 ins_encode( enc_to_bool( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8186 ins_pipe(ialu_reg_ialu);
a61af66fc99e Initial load
duke
parents:
diff changeset
8187 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8188 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8189 instruct convP2B( iRegI dst, iRegP src ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8190 match(Set dst (Conv2B src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8191 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8192 format %{ "MOV $src,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8193 "MOVRNZ $src,1,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8194 ins_encode( form3_g0_rs2_rd_move( src, dst ), enc_convP2B( dst, src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8195 ins_pipe(ialu_clr_and_mover);
a61af66fc99e Initial load
duke
parents:
diff changeset
8196 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8197 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8198
2254
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8199 instruct cmpLTMask0( iRegI dst, iRegI src, immI0 zero, flagsReg ccr ) %{
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8200 match(Set dst (CmpLTMask src zero));
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8201 effect(KILL ccr);
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8202 size(4);
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8203 format %{ "SRA $src,#31,$dst\t# cmpLTMask0" %}
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8204 ins_encode %{
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8205 __ sra($src$$Register, 31, $dst$$Register);
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8206 %}
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8207 ins_pipe(ialu_reg_imm);
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8208 %}
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8209
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8210 instruct cmpLTMask_reg_reg( iRegI dst, iRegI p, iRegI q, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8211 match(Set dst (CmpLTMask p q));
a61af66fc99e Initial load
duke
parents:
diff changeset
8212 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
8213 ins_cost(DEFAULT_COST*4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8214 format %{ "CMP $p,$q\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8215 "MOV #0,$dst\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8216 "BLT,a .+8\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8217 "MOV #-1,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8218 ins_encode( enc_ltmask(p,q,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8219 ins_pipe(ialu_reg_reg_ialu);
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 cadd_cmpLTMask( iRegI p, iRegI q, iRegI y, iRegI tmp, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8223 match(Set p (AddI (AndI (CmpLTMask p q) y) (SubI p q)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8224 effect(KILL ccr, TEMP tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8225 ins_cost(DEFAULT_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
8226
a61af66fc99e Initial load
duke
parents:
diff changeset
8227 format %{ "SUBcc $p,$q,$p\t! p' = p-q\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8228 "ADD $p,$y,$tmp\t! g3=p-q+y\n\t"
2254
ab42c7e1cf83 7017746: Regression : C2 compiler crash due to SIGSEGV in PhaseCFG::schedule_early()
kvn
parents: 2121
diff changeset
8229 "MOVlt $tmp,$p\t! p' < 0 ? p'+y : p'" %}
9154
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8230 ins_encode(enc_cadd_cmpLTMask(p, q, y, tmp));
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8231 ins_pipe(cadd_cmpltmask);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8232 %}
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8233
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8234 instruct and_cmpLTMask(iRegI p, iRegI q, iRegI y, flagsReg ccr) %{
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8235 match(Set p (AndI (CmpLTMask p q) y));
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8236 effect(KILL ccr);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8237 ins_cost(DEFAULT_COST*3);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8238
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8239 format %{ "CMP $p,$q\n\t"
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8240 "MOV $y,$p\n\t"
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8241 "MOVge G0,$p" %}
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8242 ins_encode %{
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8243 __ cmp($p$$Register, $q$$Register);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8244 __ mov($y$$Register, $p$$Register);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8245 __ movcc(Assembler::greaterEqual, false, Assembler::icc, G0, $p$$Register);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8246 %}
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8247 ins_pipe(ialu_reg_reg_ialu);
886d1fd67dc3 6443505: Ideal() function for CmpLTMask
drchase
parents: 7426
diff changeset
8248 %}
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8249
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8250 //-----------------------------------------------------------------
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8251 // Direct raw moves between float and general registers using VIS3.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8252
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8253 // ins_pipe(faddF_reg);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8254 instruct MoveF2I_reg_reg(iRegI dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8255 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8256 match(Set dst (MoveF2I src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8257
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8258 format %{ "MOVSTOUW $src,$dst\t! MoveF2I" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8259 ins_encode %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8260 __ movstouw($src$$FloatRegister, $dst$$Register);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8261 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8262 ins_pipe(ialu_reg_reg);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8263 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8264
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8265 instruct MoveI2F_reg_reg(regF dst, iRegI src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8266 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8267 match(Set dst (MoveI2F src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8268
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8269 format %{ "MOVWTOS $src,$dst\t! MoveI2F" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8270 ins_encode %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8271 __ movwtos($src$$Register, $dst$$FloatRegister);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8272 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8273 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8274 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8275
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8276 instruct MoveD2L_reg_reg(iRegL dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8277 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8278 match(Set dst (MoveD2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8279
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8280 format %{ "MOVDTOX $src,$dst\t! MoveD2L" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8281 ins_encode %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8282 __ movdtox(as_DoubleFloatRegister($src$$reg), $dst$$Register);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8283 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8284 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8285 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8286
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8287 instruct MoveL2D_reg_reg(regD dst, iRegL src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8288 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8289 match(Set dst (MoveL2D src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8290
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8291 format %{ "MOVXTOD $src,$dst\t! MoveL2D" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8292 ins_encode %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8293 __ movxtod($src$$Register, as_DoubleFloatRegister($dst$$reg));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8294 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8295 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8296 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8297
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8298
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8299 // Raw moves between float and general registers using stack.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8300
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8301 instruct MoveF2I_stack_reg(iRegI dst, stackSlotF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8302 match(Set dst (MoveF2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8303 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8304 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8305
a61af66fc99e Initial load
duke
parents:
diff changeset
8306 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8307 format %{ "LDUW $src,$dst\t! MoveF2I" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8308 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
8309 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8310 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
8311 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8312
a61af66fc99e Initial load
duke
parents:
diff changeset
8313 instruct MoveI2F_stack_reg(regF dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8314 match(Set dst (MoveI2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8315 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8316 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8317
a61af66fc99e Initial load
duke
parents:
diff changeset
8318 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8319 format %{ "LDF $src,$dst\t! MoveI2F" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8320 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
8321 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8322 ins_pipe(floadF_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
8323 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8324
a61af66fc99e Initial load
duke
parents:
diff changeset
8325 instruct MoveD2L_stack_reg(iRegL dst, stackSlotD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8326 match(Set dst (MoveD2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8327 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8328 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8329
a61af66fc99e Initial load
duke
parents:
diff changeset
8330 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8331 format %{ "LDX $src,$dst\t! MoveD2L" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8332 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
8333 ins_encode(simple_form3_mem_reg( src, dst ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8334 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
8335 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8336
a61af66fc99e Initial load
duke
parents:
diff changeset
8337 instruct MoveL2D_stack_reg(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8338 match(Set dst (MoveL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8339 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8340 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8341
a61af66fc99e Initial load
duke
parents:
diff changeset
8342 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8343 format %{ "LDDF $src,$dst\t! MoveL2D" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8344 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
8345 ins_encode(simple_form3_mem_reg(src, dst));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8346 ins_pipe(floadD_stk);
a61af66fc99e Initial load
duke
parents:
diff changeset
8347 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8348
a61af66fc99e Initial load
duke
parents:
diff changeset
8349 instruct MoveF2I_reg_stack(stackSlotI dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8350 match(Set dst (MoveF2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8351 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8352 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8353
a61af66fc99e Initial load
duke
parents:
diff changeset
8354 size(4);
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8355 format %{ "STF $src,$dst\t! MoveF2I" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8356 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
8357 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8358 ins_pipe(fstoreF_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8359 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8360
a61af66fc99e Initial load
duke
parents:
diff changeset
8361 instruct MoveI2F_reg_stack(stackSlotF dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8362 match(Set dst (MoveI2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8363 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8364 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8365
a61af66fc99e Initial load
duke
parents:
diff changeset
8366 size(4);
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8367 format %{ "STW $src,$dst\t! MoveI2F" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8368 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
8369 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8370 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8371 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8372
a61af66fc99e Initial load
duke
parents:
diff changeset
8373 instruct MoveD2L_reg_stack(stackSlotL dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8374 match(Set dst (MoveD2L src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8375 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8376 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8377
a61af66fc99e Initial load
duke
parents:
diff changeset
8378 size(4);
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8379 format %{ "STDF $src,$dst\t! MoveD2L" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8380 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
8381 ins_encode(simple_form3_mem_reg(dst, src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8382 ins_pipe(fstoreD_stk_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8383 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8384
a61af66fc99e Initial load
duke
parents:
diff changeset
8385 instruct MoveL2D_reg_stack(stackSlotD dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8386 match(Set dst (MoveL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8387 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8388 ins_cost(MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8389
a61af66fc99e Initial load
duke
parents:
diff changeset
8390 size(4);
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8391 format %{ "STX $src,$dst\t! MoveL2D" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8392 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
8393 ins_encode(simple_form3_mem_reg( dst, src ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8394 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8395 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8396
a61af66fc99e Initial load
duke
parents:
diff changeset
8397
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8398 //----------Arithmetic Conversion Instructions---------------------------------
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8399 // The conversions operations are all Alpha sorted. Please keep it that way!
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8400
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8401 instruct convD2F_reg(regF dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8402 match(Set dst (ConvD2F src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8403 size(4);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8404 format %{ "FDTOS $src,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8405 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fdtos_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8406 ins_encode(form3_opf_rs2D_rdF(src, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8407 ins_pipe(fcvtD2F);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8408 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8409
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8410
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8411 // Convert a double to an int in a float register.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8412 // If the double is a NAN, stuff a zero in instead.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8413 instruct convD2I_helper(regF dst, regD src, flagsRegF0 fcc0) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8414 effect(DEF dst, USE src, KILL fcc0);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8415 format %{ "FCMPd fcc0,$src,$src\t! check for NAN\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8416 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8417 "FDTOI $src,$dst\t! convert in delay slot\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8418 "FITOS $dst,$dst\t! change NaN/max-int to valid float\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8419 "FSUBs $dst,$dst,$dst\t! cleared only if nan\n"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8420 "skip:" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8421 ins_encode(form_d2i_helper(src,dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8422 ins_pipe(fcvtD2I);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8423 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8424
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8425 instruct convD2I_stk(stackSlotI dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8426 match(Set dst (ConvD2I src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8427 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8428 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8429 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8430 convD2I_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8431 regF_to_stkI(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8432 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8433 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8434
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8435 instruct convD2I_reg(iRegI dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8436 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8437 match(Set dst (ConvD2I src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8438 ins_cost(DEFAULT_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8439 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8440 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8441 convD2I_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8442 MoveF2I_reg_reg(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8443 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8444 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8445
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8446
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8447 // Convert a double to a long in a double register.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8448 // If the double is a NAN, stuff a zero in instead.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8449 instruct convD2L_helper(regD dst, regD src, flagsRegF0 fcc0) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8450 effect(DEF dst, USE src, KILL fcc0);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8451 format %{ "FCMPd fcc0,$src,$src\t! check for NAN\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8452 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8453 "FDTOX $src,$dst\t! convert in delay slot\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8454 "FXTOD $dst,$dst\t! change NaN/max-long to valid double\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8455 "FSUBd $dst,$dst,$dst\t! cleared only if nan\n"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8456 "skip:" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8457 ins_encode(form_d2l_helper(src,dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8458 ins_pipe(fcvtD2L);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8459 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8460
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8461 instruct convD2L_stk(stackSlotL dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8462 match(Set dst (ConvD2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8463 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8464 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8465 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8466 convD2L_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8467 regD_to_stkL(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8468 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8469 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8470
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8471 instruct convD2L_reg(iRegL dst, regD src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8472 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8473 match(Set dst (ConvD2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8474 ins_cost(DEFAULT_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8475 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8476 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8477 convD2L_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8478 MoveD2L_reg_reg(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8479 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8480 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8481
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8482
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8483 instruct convF2D_reg(regD dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8484 match(Set dst (ConvF2D src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8485 format %{ "FSTOD $src,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8486 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fstod_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8487 ins_encode(form3_opf_rs2F_rdD(src, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8488 ins_pipe(fcvtF2D);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8489 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8490
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8491
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8492 // Convert a float to an int in a float register.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8493 // If the float is a NAN, stuff a zero in instead.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8494 instruct convF2I_helper(regF dst, regF src, flagsRegF0 fcc0) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8495 effect(DEF dst, USE src, KILL fcc0);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8496 format %{ "FCMPs fcc0,$src,$src\t! check for NAN\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8497 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8498 "FSTOI $src,$dst\t! convert in delay slot\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8499 "FITOS $dst,$dst\t! change NaN/max-int to valid float\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8500 "FSUBs $dst,$dst,$dst\t! cleared only if nan\n"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8501 "skip:" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8502 ins_encode(form_f2i_helper(src,dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8503 ins_pipe(fcvtF2I);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8504 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8505
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8506 instruct convF2I_stk(stackSlotI dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8507 match(Set dst (ConvF2I src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8508 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8509 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8510 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8511 convF2I_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8512 regF_to_stkI(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8513 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8514 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8515
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8516 instruct convF2I_reg(iRegI dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8517 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8518 match(Set dst (ConvF2I src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8519 ins_cost(DEFAULT_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8520 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8521 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8522 convF2I_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8523 MoveF2I_reg_reg(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8524 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8525 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8526
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8527
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8528 // Convert a float to a long in a float register.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8529 // If the float is a NAN, stuff a zero in instead.
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8530 instruct convF2L_helper(regD dst, regF src, flagsRegF0 fcc0) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8531 effect(DEF dst, USE src, KILL fcc0);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8532 format %{ "FCMPs fcc0,$src,$src\t! check for NAN\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8533 "FBO,pt fcc0,skip\t! branch on ordered, predict taken\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8534 "FSTOX $src,$dst\t! convert in delay slot\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8535 "FXTOD $dst,$dst\t! change NaN/max-long to valid double\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8536 "FSUBd $dst,$dst,$dst\t! cleared only if nan\n"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8537 "skip:" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8538 ins_encode(form_f2l_helper(src,dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8539 ins_pipe(fcvtF2L);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8540 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8541
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8542 instruct convF2L_stk(stackSlotL dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8543 match(Set dst (ConvF2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8544 ins_cost(DEFAULT_COST*2 + MEMORY_REF_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8545 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8546 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8547 convF2L_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8548 regD_to_stkL(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8549 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8550 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8551
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8552 instruct convF2L_reg(iRegL dst, regF src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8553 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8554 match(Set dst (ConvF2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8555 ins_cost(DEFAULT_COST*2 + BRANCH_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8556 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8557 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8558 convF2L_helper(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8559 MoveD2L_reg_reg(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8560 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8561 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8562
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8563
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8564 instruct convI2D_helper(regD dst, regF tmp) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8565 effect(USE tmp, DEF dst);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8566 format %{ "FITOD $tmp,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8567 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8568 ins_encode(form3_opf_rs2F_rdD(tmp, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8569 ins_pipe(fcvtI2D);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8570 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8571
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8572 instruct convI2D_stk(stackSlotI src, regD dst) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8573 match(Set dst (ConvI2D src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8574 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8575 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8576 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8577 stkI_to_regF(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8578 convI2D_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8579 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8580 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8581
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8582 instruct convI2D_reg(regD_low dst, iRegI src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8583 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8584 match(Set dst (ConvI2D src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8585 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8586 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8587 MoveI2F_reg_reg(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8588 convI2D_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8589 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8590 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8591
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8592 instruct convI2D_mem(regD_low dst, memory mem) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8593 match(Set dst (ConvI2D (LoadI mem)));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8594 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8595 size(8);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8596 format %{ "LDF $mem,$dst\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8597 "FITOD $dst,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8598 opcode(Assembler::ldf_op3, Assembler::fitod_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8599 ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8600 ins_pipe(floadF_mem);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8601 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8602
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8603
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8604 instruct convI2F_helper(regF dst, regF tmp) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8605 effect(DEF dst, USE tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8606 format %{ "FITOS $tmp,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8607 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitos_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8608 ins_encode(form3_opf_rs2F_rdF(tmp, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8609 ins_pipe(fcvtI2F);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8610 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8611
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8612 instruct convI2F_stk(regF dst, stackSlotI src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8613 match(Set dst (ConvI2F src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8614 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8615 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8616 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8617 stkI_to_regF(tmp,src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8618 convI2F_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8619 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8620 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8621
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8622 instruct convI2F_reg(regF dst, iRegI src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8623 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8624 match(Set dst (ConvI2F src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8625 ins_cost(DEFAULT_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8626 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8627 regF tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8628 MoveI2F_reg_reg(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8629 convI2F_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8630 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8631 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8632
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8633 instruct convI2F_mem( regF dst, memory mem ) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8634 match(Set dst (ConvI2F (LoadI mem)));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8635 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8636 size(8);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8637 format %{ "LDF $mem,$dst\n\t"
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8638 "FITOS $dst,$dst" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8639 opcode(Assembler::ldf_op3, Assembler::fitos_opf);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8640 ins_encode(simple_form3_mem_reg( mem, dst ), form3_convI2F(dst, dst));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8641 ins_pipe(floadF_mem);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8642 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8643
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8644
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8645 instruct convI2L_reg(iRegL dst, iRegI src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8646 match(Set dst (ConvI2L src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8647 size(4);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8648 format %{ "SRA $src,0,$dst\t! int->long" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8649 opcode(Assembler::sra_op3, Assembler::arith_op);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8650 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8651 ins_pipe(ialu_reg_reg);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8652 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8653
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8654 // Zero-extend convert int to long
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8655 instruct convI2L_reg_zex(iRegL dst, iRegI src, immL_32bits mask ) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8656 match(Set dst (AndL (ConvI2L src) mask) );
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8657 size(4);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8658 format %{ "SRL $src,0,$dst\t! zero-extend int to long" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8659 opcode(Assembler::srl_op3, Assembler::arith_op);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8660 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8661 ins_pipe(ialu_reg_reg);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8662 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8663
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8664 // Zero-extend long
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8665 instruct zerox_long(iRegL dst, iRegL src, immL_32bits mask ) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8666 match(Set dst (AndL src mask) );
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8667 size(4);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8668 format %{ "SRL $src,0,$dst\t! zero-extend long" %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8669 opcode(Assembler::srl_op3, Assembler::arith_op);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8670 ins_encode( form3_rs1_rs2_rd( src, R_G0, dst ) );
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8671 ins_pipe(ialu_reg_reg);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8672 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8673
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8674
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8675 //-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
8676 // Long to Double conversion using V8 opcodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
8677 // Still useful because cheetah traps and becomes
a61af66fc99e Initial load
duke
parents:
diff changeset
8678 // amazingly slow for some common numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
8679
a61af66fc99e Initial load
duke
parents:
diff changeset
8680 // Magic constant, 0x43300000
a61af66fc99e Initial load
duke
parents:
diff changeset
8681 instruct loadConI_x43300000(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8682 effect(DEF dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
8683 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8684 format %{ "SETHI HI(0x43300000),$dst\t! 2^52" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8685 ins_encode(SetHi22(0x43300000, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8686 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
8687 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8688
a61af66fc99e Initial load
duke
parents:
diff changeset
8689 // Magic constant, 0x41f00000
a61af66fc99e Initial load
duke
parents:
diff changeset
8690 instruct loadConI_x41f00000(iRegI dst) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8691 effect(DEF dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
8692 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8693 format %{ "SETHI HI(0x41f00000),$dst\t! 2^32" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8694 ins_encode(SetHi22(0x41f00000, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8695 ins_pipe(ialu_none);
a61af66fc99e Initial load
duke
parents:
diff changeset
8696 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8697
a61af66fc99e Initial load
duke
parents:
diff changeset
8698 // Construct a double from two float halves
a61af66fc99e Initial load
duke
parents:
diff changeset
8699 instruct regDHi_regDLo_to_regD(regD_low dst, regD_low src1, regD_low src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8700 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8701 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
8702 format %{ "FMOVS $src1.hi,$dst.hi\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
8703 "FMOVS $src2.lo,$dst.lo" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8704 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmovs_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8705 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
8706 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8707 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8708
a61af66fc99e Initial load
duke
parents:
diff changeset
8709 // Convert integer in high half of a double register (in the lower half of
a61af66fc99e Initial load
duke
parents:
diff changeset
8710 // the double register file) to double
a61af66fc99e Initial load
duke
parents:
diff changeset
8711 instruct convI2D_regDHi_regD(regD dst, regD_low src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8712 effect(DEF dst, USE src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8713 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8714 format %{ "FITOD $src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8715 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fitod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8716 ins_encode(form3_opf_rs2D_rdD(src, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8717 ins_pipe(fcvtLHi2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
8718 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8719
a61af66fc99e Initial load
duke
parents:
diff changeset
8720 // Add float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
8721 instruct addD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8722 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8723 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8724 format %{ "FADDD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8725 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::faddd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8726 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8727 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8728 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8729
a61af66fc99e Initial load
duke
parents:
diff changeset
8730 // Sub float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
8731 instruct subD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8732 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8733 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8734 format %{ "FSUBD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8735 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fsubd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8736 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8737 ins_pipe(faddD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8738 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8739
a61af66fc99e Initial load
duke
parents:
diff changeset
8740 // Mul float double precision
a61af66fc99e Initial load
duke
parents:
diff changeset
8741 instruct mulD_regD_regD(regD dst, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8742 effect(DEF dst, USE src1, USE src2);
a61af66fc99e Initial load
duke
parents:
diff changeset
8743 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8744 format %{ "FMULD $src1,$src2,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8745 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fmuld_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8746 ins_encode(form3_opf_rs1D_rs2D_rdD(src1, src2, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8747 ins_pipe(fmulD_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8748 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8749
a61af66fc99e Initial load
duke
parents:
diff changeset
8750 instruct convL2D_reg_slow_fxtof(regD dst, stackSlotL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8751 match(Set dst (ConvL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8752 ins_cost(DEFAULT_COST*8 + MEMORY_REF_COST*6);
a61af66fc99e Initial load
duke
parents:
diff changeset
8753
a61af66fc99e Initial load
duke
parents:
diff changeset
8754 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8755 regD_low tmpsrc;
a61af66fc99e Initial load
duke
parents:
diff changeset
8756 iRegI ix43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8757 iRegI ix41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8758 stackSlotL lx43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8759 stackSlotL lx41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8760 regD_low dx43300000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8761 regD dx41f00000;
a61af66fc99e Initial load
duke
parents:
diff changeset
8762 regD tmp1;
a61af66fc99e Initial load
duke
parents:
diff changeset
8763 regD_low tmp2;
a61af66fc99e Initial load
duke
parents:
diff changeset
8764 regD tmp3;
a61af66fc99e Initial load
duke
parents:
diff changeset
8765 regD tmp4;
a61af66fc99e Initial load
duke
parents:
diff changeset
8766
a61af66fc99e Initial load
duke
parents:
diff changeset
8767 stkL_to_regD(tmpsrc, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8768
a61af66fc99e Initial load
duke
parents:
diff changeset
8769 loadConI_x43300000(ix43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8770 loadConI_x41f00000(ix41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8771 regI_to_stkLHi(lx43300000, ix43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8772 regI_to_stkLHi(lx41f00000, ix41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8773 stkL_to_regD(dx43300000, lx43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8774 stkL_to_regD(dx41f00000, lx41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8775
a61af66fc99e Initial load
duke
parents:
diff changeset
8776 convI2D_regDHi_regD(tmp1, tmpsrc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8777 regDHi_regDLo_to_regD(tmp2, dx43300000, tmpsrc);
a61af66fc99e Initial load
duke
parents:
diff changeset
8778 subD_regD_regD(tmp3, tmp2, dx43300000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8779 mulD_regD_regD(tmp4, tmp1, dx41f00000);
a61af66fc99e Initial load
duke
parents:
diff changeset
8780 addD_regD_regD(dst, tmp3, tmp4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8781 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8782 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8783
a61af66fc99e Initial load
duke
parents:
diff changeset
8784 // Long to Double conversion using fast fxtof
a61af66fc99e Initial load
duke
parents:
diff changeset
8785 instruct convL2D_helper(regD dst, regD tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8786 effect(DEF dst, USE tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8787 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8788 format %{ "FXTOD $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8789 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtod_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8790 ins_encode(form3_opf_rs2D_rdD(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8791 ins_pipe(fcvtL2D);
a61af66fc99e Initial load
duke
parents:
diff changeset
8792 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8793
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8794 instruct convL2D_stk_fast_fxtof(regD dst, stackSlotL src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8795 predicate(VM_Version::has_fast_fxtof());
a61af66fc99e Initial load
duke
parents:
diff changeset
8796 match(Set dst (ConvL2D src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8797 ins_cost(DEFAULT_COST + 3 * MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8798 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8799 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8800 stkL_to_regD(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8801 convL2D_helper(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8802 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8803 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8804
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8805 instruct convL2D_reg(regD dst, iRegL src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8806 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8807 match(Set dst (ConvL2D src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8808 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8809 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8810 MoveL2D_reg_reg(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8811 convL2D_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8812 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8813 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8814
a61af66fc99e Initial load
duke
parents:
diff changeset
8815 // Long to Float conversion using fast fxtof
a61af66fc99e Initial load
duke
parents:
diff changeset
8816 instruct convL2F_helper(regF dst, regD tmp) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8817 effect(DEF dst, USE tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8818 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8819 format %{ "FXTOS $tmp,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8820 opcode(Assembler::fpop1_op3, Assembler::arith_op, Assembler::fxtos_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
8821 ins_encode(form3_opf_rs2D_rdF(tmp, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
8822 ins_pipe(fcvtL2F);
a61af66fc99e Initial load
duke
parents:
diff changeset
8823 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8824
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8825 instruct convL2F_stk_fast_fxtof(regF dst, stackSlotL src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8826 match(Set dst (ConvL2F src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8827 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
8828 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8829 regD tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
8830 stkL_to_regD(tmp, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
8831 convL2F_helper(dst, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
8832 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8833 %}
3804
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8834
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8835 instruct convL2F_reg(regF dst, iRegL src) %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8836 predicate(UseVIS >= 3);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8837 match(Set dst (ConvL2F src));
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8838 ins_cost(DEFAULT_COST);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8839 expand %{
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8840 regD tmp;
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8841 MoveL2D_reg_reg(tmp, src);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8842 convL2F_helper(dst, tmp);
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8843 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8844 %}
faa472957b38 7059034: Use movxtod/movdtox on T4
kvn
parents: 2401
diff changeset
8845
0
a61af66fc99e Initial load
duke
parents:
diff changeset
8846 //-----------
a61af66fc99e Initial load
duke
parents:
diff changeset
8847
a61af66fc99e Initial load
duke
parents:
diff changeset
8848 instruct convL2I_reg(iRegI dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8849 match(Set dst (ConvL2I src));
a61af66fc99e Initial load
duke
parents:
diff changeset
8850 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
8851 format %{ "MOV $src.lo,$dst\t! long->int" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8852 ins_encode( form3_g0_rs2_rd_move_lo2( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8853 ins_pipe(ialu_move_reg_I_to_L);
a61af66fc99e Initial load
duke
parents:
diff changeset
8854 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
8855 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8856 format %{ "SRA $src,R_G0,$dst\t! long->int" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8857 ins_encode( form3_rs1_rd_signextend_lo1( src, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8858 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8859 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
8860 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8861
a61af66fc99e Initial load
duke
parents:
diff changeset
8862 // Register Shift Right Immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
8863 instruct shrL_reg_imm6_L2I(iRegI dst, iRegL src, immI_32_63 cnt) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8864 match(Set dst (ConvL2I (RShiftL src cnt)));
a61af66fc99e Initial load
duke
parents:
diff changeset
8865
a61af66fc99e Initial load
duke
parents:
diff changeset
8866 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8867 format %{ "SRAX $src,$cnt,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8868 opcode(Assembler::srax_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8869 ins_encode( form3_sd_rs1_imm6_rd( src, cnt, dst ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8870 ins_pipe(ialu_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8871 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8872
a61af66fc99e Initial load
duke
parents:
diff changeset
8873 //----------Control Flow Instructions------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
8874 // Compare Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
8875 // Compare Integers
a61af66fc99e Initial load
duke
parents:
diff changeset
8876 instruct compI_iReg(flagsReg icc, iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8877 match(Set icc (CmpI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8878 effect( DEF icc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8879
a61af66fc99e Initial load
duke
parents:
diff changeset
8880 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8881 format %{ "CMP $op1,$op2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8882 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8883 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8884 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8885 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8886
a61af66fc99e Initial load
duke
parents:
diff changeset
8887 instruct compU_iReg(flagsRegU icc, iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8888 match(Set icc (CmpU op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8889
a61af66fc99e Initial load
duke
parents:
diff changeset
8890 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8891 format %{ "CMP $op1,$op2\t! unsigned" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8892 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8893 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8894 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8895 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8896
a61af66fc99e Initial load
duke
parents:
diff changeset
8897 instruct compI_iReg_imm13(flagsReg icc, iRegI op1, immI13 op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8898 match(Set icc (CmpI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8899 effect( DEF icc, USE op1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8900
a61af66fc99e Initial load
duke
parents:
diff changeset
8901 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8902 format %{ "CMP $op1,$op2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8903 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8904 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8905 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8906 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8907
a61af66fc99e Initial load
duke
parents:
diff changeset
8908 instruct testI_reg_reg( flagsReg icc, iRegI op1, iRegI op2, immI0 zero ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8909 match(Set icc (CmpI (AndI op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8910
a61af66fc99e Initial load
duke
parents:
diff changeset
8911 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8912 format %{ "BTST $op2,$op1" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8913 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8914 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8915 ins_pipe(ialu_cconly_reg_reg_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8916 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8917
a61af66fc99e Initial load
duke
parents:
diff changeset
8918 instruct testI_reg_imm( flagsReg icc, iRegI op1, immI13 op2, immI0 zero ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8919 match(Set icc (CmpI (AndI op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8920
a61af66fc99e Initial load
duke
parents:
diff changeset
8921 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8922 format %{ "BTST $op2,$op1" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8923 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8924 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8925 ins_pipe(ialu_cconly_reg_imm_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
8926 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8927
a61af66fc99e Initial load
duke
parents:
diff changeset
8928 instruct compL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8929 match(Set xcc (CmpL op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8930 effect( DEF xcc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8931
a61af66fc99e Initial load
duke
parents:
diff changeset
8932 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8933 format %{ "CMP $op1,$op2\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8934 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8935 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8936 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8937 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8938
a61af66fc99e Initial load
duke
parents:
diff changeset
8939 instruct compL_reg_con(flagsRegL xcc, iRegL op1, immL13 con) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8940 match(Set xcc (CmpL op1 con));
a61af66fc99e Initial load
duke
parents:
diff changeset
8941 effect( DEF xcc, USE op1, USE con );
a61af66fc99e Initial load
duke
parents:
diff changeset
8942
a61af66fc99e Initial load
duke
parents:
diff changeset
8943 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8944 format %{ "CMP $op1,$con\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8945 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8946 ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8947 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8948 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8949
a61af66fc99e Initial load
duke
parents:
diff changeset
8950 instruct testL_reg_reg(flagsRegL xcc, iRegL op1, iRegL op2, immL0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8951 match(Set xcc (CmpL (AndL op1 op2) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8952 effect( DEF xcc, USE op1, USE op2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
8953
a61af66fc99e Initial load
duke
parents:
diff changeset
8954 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8955 format %{ "BTST $op1,$op2\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8956 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8957 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8958 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8959 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8960
a61af66fc99e Initial load
duke
parents:
diff changeset
8961 // useful for checking the alignment of a pointer:
a61af66fc99e Initial load
duke
parents:
diff changeset
8962 instruct testL_reg_con(flagsRegL xcc, iRegL op1, immL13 con, immL0 zero) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8963 match(Set xcc (CmpL (AndL op1 con) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
8964 effect( DEF xcc, USE op1, USE con );
a61af66fc99e Initial load
duke
parents:
diff changeset
8965
a61af66fc99e Initial load
duke
parents:
diff changeset
8966 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8967 format %{ "BTST $op1,$con\t\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8968 opcode(Assembler::andcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8969 ins_encode( form3_rs1_simm13_rd( op1, con, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8970 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8971 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8972
a61af66fc99e Initial load
duke
parents:
diff changeset
8973 instruct compU_iReg_imm13(flagsRegU icc, iRegI op1, immU13 op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8974 match(Set icc (CmpU op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8975
a61af66fc99e Initial load
duke
parents:
diff changeset
8976 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8977 format %{ "CMP $op1,$op2\t! unsigned" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8978 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8979 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8980 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
8981 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8982
a61af66fc99e Initial load
duke
parents:
diff changeset
8983 // Compare Pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
8984 instruct compP_iRegP(flagsRegP pcc, iRegP op1, iRegP op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8985 match(Set pcc (CmpP op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8986
a61af66fc99e Initial load
duke
parents:
diff changeset
8987 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8988 format %{ "CMP $op1,$op2\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8989 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
8990 ins_encode( form3_rs1_rs2_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
8991 ins_pipe(ialu_cconly_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
8992 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8993
a61af66fc99e Initial load
duke
parents:
diff changeset
8994 instruct compP_iRegP_imm13(flagsRegP pcc, iRegP op1, immP13 op2 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
8995 match(Set pcc (CmpP op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
8996
a61af66fc99e Initial load
duke
parents:
diff changeset
8997 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
8998 format %{ "CMP $op1,$op2\t! ptr" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
8999 opcode(Assembler::subcc_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
9000 ins_encode( form3_rs1_simm13_rd( op1, op2, R_G0 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9001 ins_pipe(ialu_cconly_reg_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
9002 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9003
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9004 // Compare Narrow oops
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9005 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
9006 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
9007
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9008 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9009 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
9010 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
9011 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
9012 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
9013 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9014
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9015 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
9016 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
9017
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9018 size(4);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9019 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
9020 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
9021 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
9022 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
9023 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9024
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9025 //----------Max and Min--------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9026 // Min Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
9027 // Conditional move for min
a61af66fc99e Initial load
duke
parents:
diff changeset
9028 instruct cmovI_reg_lt( iRegI op2, iRegI op1, flagsReg icc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9029 effect( USE_DEF op2, USE op1, USE icc );
a61af66fc99e Initial load
duke
parents:
diff changeset
9030
a61af66fc99e Initial load
duke
parents:
diff changeset
9031 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
9032 format %{ "MOVlt icc,$op1,$op2\t! min" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9033 opcode(Assembler::less);
a61af66fc99e Initial load
duke
parents:
diff changeset
9034 ins_encode( enc_cmov_reg_minmax(op2,op1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9035 ins_pipe(ialu_reg_flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
9036 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9037
a61af66fc99e Initial load
duke
parents:
diff changeset
9038 // Min Register with Register.
a61af66fc99e Initial load
duke
parents:
diff changeset
9039 instruct minI_eReg(iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9040 match(Set op2 (MinI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9041 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
9042 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9043 flagsReg icc;
a61af66fc99e Initial load
duke
parents:
diff changeset
9044 compI_iReg(icc,op1,op2);
a61af66fc99e Initial load
duke
parents:
diff changeset
9045 cmovI_reg_lt(op2,op1,icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9046 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9047 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9048
a61af66fc99e Initial load
duke
parents:
diff changeset
9049 // Max Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
9050 // Conditional move for max
a61af66fc99e Initial load
duke
parents:
diff changeset
9051 instruct cmovI_reg_gt( iRegI op2, iRegI op1, flagsReg icc ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9052 effect( USE_DEF op2, USE op1, USE icc );
a61af66fc99e Initial load
duke
parents:
diff changeset
9053 format %{ "MOVgt icc,$op1,$op2\t! max" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9054 opcode(Assembler::greater);
a61af66fc99e Initial load
duke
parents:
diff changeset
9055 ins_encode( enc_cmov_reg_minmax(op2,op1) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9056 ins_pipe(ialu_reg_flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
9057 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9058
a61af66fc99e Initial load
duke
parents:
diff changeset
9059 // Max Register with Register
a61af66fc99e Initial load
duke
parents:
diff changeset
9060 instruct maxI_eReg(iRegI op1, iRegI op2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9061 match(Set op2 (MaxI op1 op2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9062 ins_cost(DEFAULT_COST*2);
a61af66fc99e Initial load
duke
parents:
diff changeset
9063 expand %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9064 flagsReg icc;
a61af66fc99e Initial load
duke
parents:
diff changeset
9065 compI_iReg(icc,op1,op2);
a61af66fc99e Initial load
duke
parents:
diff changeset
9066 cmovI_reg_gt(op2,op1,icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9067 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9068 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9069
a61af66fc99e Initial load
duke
parents:
diff changeset
9070
a61af66fc99e Initial load
duke
parents:
diff changeset
9071 //----------Float Compares----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9072 // Compare floating, generate condition code
a61af66fc99e Initial load
duke
parents:
diff changeset
9073 instruct cmpF_cc(flagsRegF fcc, regF src1, regF src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9074 match(Set fcc (CmpF src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9075
a61af66fc99e Initial load
duke
parents:
diff changeset
9076 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
9077 format %{ "FCMPs $fcc,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9078 opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmps_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
9079 ins_encode( form3_opf_rs1F_rs2F_fcc( src1, src2, fcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9080 ins_pipe(faddF_fcc_reg_reg_zero);
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 cmpD_cc(flagsRegF fcc, regD src1, regD src2) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9084 match(Set fcc (CmpD src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9085
a61af66fc99e Initial load
duke
parents:
diff changeset
9086 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
9087 format %{ "FCMPd $fcc,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9088 opcode(Assembler::fpop2_op3, Assembler::arith_op, Assembler::fcmpd_opf);
a61af66fc99e Initial load
duke
parents:
diff changeset
9089 ins_encode( form3_opf_rs1D_rs2D_fcc( src1, src2, fcc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9090 ins_pipe(faddD_fcc_reg_reg_zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
9091 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9092
a61af66fc99e Initial load
duke
parents:
diff changeset
9093
a61af66fc99e Initial load
duke
parents:
diff changeset
9094 // Compare floating, generate -1,0,1
a61af66fc99e Initial load
duke
parents:
diff changeset
9095 instruct cmpF_reg(iRegI dst, regF src1, regF src2, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9096 match(Set dst (CmpF3 src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9097 effect(KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
9098 ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9099 format %{ "fcmpl $dst,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9100 // Primary = float
a61af66fc99e Initial load
duke
parents:
diff changeset
9101 opcode( true );
a61af66fc99e Initial load
duke
parents:
diff changeset
9102 ins_encode( floating_cmp( dst, src1, src2 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9103 ins_pipe( floating_cmp );
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 cmpD_reg(iRegI dst, regD src1, regD src2, flagsRegF0 fcc0) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9107 match(Set dst (CmpD3 src1 src2));
a61af66fc99e Initial load
duke
parents:
diff changeset
9108 effect(KILL fcc0);
a61af66fc99e Initial load
duke
parents:
diff changeset
9109 ins_cost(DEFAULT_COST*3+BRANCH_COST*3);
a61af66fc99e Initial load
duke
parents:
diff changeset
9110 format %{ "dcmpl $dst,$src1,$src2" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9111 // Primary = double (not float)
a61af66fc99e Initial load
duke
parents:
diff changeset
9112 opcode( false );
a61af66fc99e Initial load
duke
parents:
diff changeset
9113 ins_encode( floating_cmp( dst, src1, src2 ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9114 ins_pipe( floating_cmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
9115 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9116
a61af66fc99e Initial load
duke
parents:
diff changeset
9117 //----------Branches---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
9118 // Jump
a61af66fc99e Initial load
duke
parents:
diff changeset
9119 // (compare 'operand indIndex' and 'instruct addP_reg_reg' above)
a61af66fc99e Initial load
duke
parents:
diff changeset
9120 instruct jumpXtnd(iRegX switch_val, o7RegI table) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9121 match(Jump switch_val);
4776
5da7201222d5 7110824: ctw/jarfiles/GUI3rdParty_jar/ob_mask_DateField crashes VM
kvn
parents: 4763
diff changeset
9122 effect(TEMP table);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9123
a61af66fc99e Initial load
duke
parents:
diff changeset
9124 ins_cost(350);
a61af66fc99e Initial load
duke
parents:
diff changeset
9125
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9126 format %{ "ADD $constanttablebase, $constantoffset, O7\n\t"
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9127 "LD [O7 + $switch_val], O7\n\t"
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9128 "JUMP O7" %}
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9129 ins_encode %{
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9130 // Calculate table address into a register.
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9131 Register table_reg;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9132 Register label_reg = O7;
4114
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9133 // If we are calculating the size of this instruction don't trust
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9134 // zero offsets because they might change when
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9135 // MachConstantBaseNode decides to optimize the constant table
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9136 // base.
6729bbc1fcd6 7003454: order constants in constant table by number of references in code
twisti
parents: 4047
diff changeset
9137 if ((constant_offset() == 0) && !Compile::current()->in_scratch_emit_size()) {
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9138 table_reg = $constanttablebase;
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9139 } else {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9140 table_reg = O7;
2012
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
9141 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset, O7);
5fe0781a8560 7004925: CTW: assert(nbits == 32 || -(1 << nbits-1) <= x && x < ( 1 << nbits-1)) failed: value out of range
kvn
parents: 2008
diff changeset
9142 __ add($constanttablebase, con_offset, table_reg);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9143 }
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9144
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9145 // Jump to base address + switch value
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9146 __ ld_ptr(table_reg, $switch_val$$Register, label_reg);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9147 __ jmp(label_reg, G0);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9148 __ delayed()->nop();
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1915
diff changeset
9149 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9150 ins_pipe(ialu_reg_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9151 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9152
a61af66fc99e Initial load
duke
parents:
diff changeset
9153 // Direct Branch. Use V8 version with longer range.
a61af66fc99e Initial load
duke
parents:
diff changeset
9154 instruct branch(label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9155 match(Goto);
a61af66fc99e Initial load
duke
parents:
diff changeset
9156 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9157
a61af66fc99e Initial load
duke
parents:
diff changeset
9158 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9159 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9160 format %{ "BA $labl" %}
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9161 ins_encode %{
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9162 Label* L = $labl$$label;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9163 __ ba(*L);
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9164 __ delayed()->nop();
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9165 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9166 ins_pipe(br);
a61af66fc99e Initial load
duke
parents:
diff changeset
9167 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9168
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9169 // Direct Branch, short with no delay slot
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9170 instruct branch_short(label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9171 match(Goto);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9172 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9173 effect(USE labl);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9174
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9175 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9176 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9177 format %{ "BA $labl\t! short branch" %}
14416
6a936747b569 8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents: 12056
diff changeset
9178 ins_encode %{
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9179 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9180 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9181 __ ba_short(*L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9182 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9183 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9184 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9185 ins_pipe(cbcond_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9186 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9187
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9188 // Conditional Direct Branch
a61af66fc99e Initial load
duke
parents:
diff changeset
9189 instruct branchCon(cmpOp cmp, flagsReg icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9190 match(If cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9191 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9192
a61af66fc99e Initial load
duke
parents:
diff changeset
9193 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9194 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9195 format %{ "BP$cmp $icc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9196 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
9197 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9198 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9199 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9200
a61af66fc99e Initial load
duke
parents:
diff changeset
9201 instruct branchConU(cmpOpU cmp, flagsRegU icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9202 match(If cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9203 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9204
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9205 ins_cost(BRANCH_COST);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9206 format %{ "BP$cmp $icc,$labl" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9207 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
9208 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9209 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9210 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9211
a61af66fc99e Initial load
duke
parents:
diff changeset
9212 instruct branchConP(cmpOpP cmp, flagsRegP pcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9213 match(If cmp pcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9214 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9215
a61af66fc99e Initial load
duke
parents:
diff changeset
9216 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9217 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9218 format %{ "BP$cmp $pcc,$labl" %}
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9219 ins_encode %{
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9220 Label* L = $labl$$label;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9221 Assembler::Predict predict_taken =
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9222 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9223
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9224 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9225 __ delayed()->nop();
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9226 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9227 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9228 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9229
a61af66fc99e Initial load
duke
parents:
diff changeset
9230 instruct branchConF(cmpOpF cmp, flagsRegF fcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9231 match(If cmp fcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9232 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9233
a61af66fc99e Initial load
duke
parents:
diff changeset
9234 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9235 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9236 format %{ "FBP$cmp $fcc,$labl" %}
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9237 ins_encode %{
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9238 Label* L = $labl$$label;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9239 Assembler::Predict predict_taken =
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9240 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9241
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9242 __ fbp( (Assembler::Condition)($cmp$$cmpcode), false, (Assembler::CC)($fcc$$reg), predict_taken, *L);
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9243 __ delayed()->nop();
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9244 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9245 ins_pipe(br_fcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9246 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9247
a61af66fc99e Initial load
duke
parents:
diff changeset
9248 instruct branchLoopEnd(cmpOp cmp, flagsReg icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9249 match(CountedLoopEnd cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9250 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9251
a61af66fc99e Initial load
duke
parents:
diff changeset
9252 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9253 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9254 format %{ "BP$cmp $icc,$labl\t! Loop end" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9255 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
9256 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9257 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9258 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9259
a61af66fc99e Initial load
duke
parents:
diff changeset
9260 instruct branchLoopEndU(cmpOpU cmp, flagsRegU icc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9261 match(CountedLoopEnd cmp icc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9262 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9263
a61af66fc99e Initial load
duke
parents:
diff changeset
9264 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9265 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9266 format %{ "BP$cmp $icc,$labl\t! Loop end" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9267 // Prim = bits 24-22, Secnd = bits 31-30
a61af66fc99e Initial load
duke
parents:
diff changeset
9268 ins_encode( enc_bp( labl, cmp, icc ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9269 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9270 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9271
3851
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9272 // Compare and branch instructions
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9273 instruct cmpI_reg_branch(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9274 match(If cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9275 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9276
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9277 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9278 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9279 format %{ "CMP $op1,$op2\t! int\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9280 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9281 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9282 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9283 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9284 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9285 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9286 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9287 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9288 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9289 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9290 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9291
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9292 instruct cmpI_imm_branch(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9293 match(If cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9294 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9295
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9296 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9297 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9298 format %{ "CMP $op1,$op2\t! int\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9299 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9300 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9301 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9302 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9303 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9304 __ cmp($op1$$Register, $op2$$constant);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9305 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9306 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9307 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9308 ins_pipe(cmp_br_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9309 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9310
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9311 instruct cmpU_reg_branch(cmpOpU cmp, iRegI op1, iRegI op2, label labl, flagsRegU icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9312 match(If cmp (CmpU op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9313 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9314
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9315 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9316 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9317 format %{ "CMP $op1,$op2\t! unsigned\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9318 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9319 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9320 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9321 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9322 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9323 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9324 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9325 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9326 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9327 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9328 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9329
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9330 instruct cmpU_imm_branch(cmpOpU cmp, iRegI op1, immI5 op2, label labl, flagsRegU icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9331 match(If cmp (CmpU op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9332 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9333
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9334 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9335 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9336 format %{ "CMP $op1,$op2\t! unsigned\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9337 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9338 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9339 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9340 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9341 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9342 __ cmp($op1$$Register, $op2$$constant);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9343 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9344 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9345 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9346 ins_pipe(cmp_br_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9347 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9348
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9349 instruct cmpL_reg_branch(cmpOp cmp, iRegL op1, iRegL op2, label labl, flagsRegL xcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9350 match(If cmp (CmpL op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9351 effect(USE labl, KILL xcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9352
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9353 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9354 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9355 format %{ "CMP $op1,$op2\t! long\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9356 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9357 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9358 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9359 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9360 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9361 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9362 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9363 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9364 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9365 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9366 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9367
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9368 instruct cmpL_imm_branch(cmpOp cmp, iRegL op1, immL5 op2, label labl, flagsRegL xcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9369 match(If cmp (CmpL op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9370 effect(USE labl, KILL xcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9371
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9372 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9373 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9374 format %{ "CMP $op1,$op2\t! long\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9375 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9376 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9377 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9378 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9379 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9380 __ cmp($op1$$Register, $op2$$constant);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9381 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9382 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9383 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9384 ins_pipe(cmp_br_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9385 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9386
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9387 // Compare Pointers and branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9388 instruct cmpP_reg_branch(cmpOpP cmp, iRegP op1, iRegP op2, label labl, flagsRegP pcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9389 match(If cmp (CmpP op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9390 effect(USE labl, KILL pcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9391
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9392 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9393 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9394 format %{ "CMP $op1,$op2\t! ptr\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9395 "B$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9396 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9397 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9398 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9399 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9400 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9401 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9402 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9403 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9404 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9405 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9406
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9407 instruct cmpP_null_branch(cmpOpP cmp, iRegP op1, immP0 null, label labl, flagsRegP pcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9408 match(If cmp (CmpP op1 null));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9409 effect(USE labl, KILL pcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9410
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9411 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9412 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9413 format %{ "CMP $op1,0\t! ptr\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9414 "B$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9415 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9416 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9417 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9418 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9419 __ cmp($op1$$Register, G0);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9420 // bpr() is not used here since it has shorter distance.
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9421 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::ptr_cc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9422 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9423 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9424 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9425 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9426
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9427 instruct cmpN_reg_branch(cmpOp cmp, iRegN op1, iRegN op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9428 match(If cmp (CmpN op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9429 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9430
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9431 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9432 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9433 format %{ "CMP $op1,$op2\t! compressed ptr\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9434 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9435 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9436 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9437 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9438 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9439 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9440 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9441 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9442 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9443 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9444 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9445
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9446 instruct cmpN_null_branch(cmpOp cmp, iRegN op1, immN0 null, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9447 match(If cmp (CmpN op1 null));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9448 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9449
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9450 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9451 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9452 format %{ "CMP $op1,0\t! compressed ptr\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9453 "BP$cmp $labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9454 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9455 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9456 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9457 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9458 __ cmp($op1$$Register, G0);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9459 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9460 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9461 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9462 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9463 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9464
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9465 // Loop back branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9466 instruct cmpI_reg_branchLoopEnd(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9467 match(CountedLoopEnd cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9468 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9469
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9470 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9471 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9472 format %{ "CMP $op1,$op2\t! int\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9473 "BP$cmp $labl\t! Loop end" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9474 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9475 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9476 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9477 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9478 __ cmp($op1$$Register, $op2$$Register);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9479 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9480 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9481 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9482 ins_pipe(cmp_br_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9483 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9484
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9485 instruct cmpI_imm_branchLoopEnd(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9486 match(CountedLoopEnd cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9487 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9488
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9489 size(12);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9490 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9491 format %{ "CMP $op1,$op2\t! int\n\t"
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9492 "BP$cmp $labl\t! Loop end" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9493 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9494 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9495 Assembler::Predict predict_taken =
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9496 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9497 __ cmp($op1$$Register, $op2$$constant);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9498 __ bp((Assembler::Condition)($cmp$$cmpcode), false, Assembler::icc, predict_taken, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9499 __ delayed()->nop();
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9500 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9501 ins_pipe(cmp_br_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9502 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9503
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9504 // Short compare and branch instructions
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9505 instruct cmpI_reg_branch_short(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9506 match(If cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9507 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9508 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9509
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9510 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9511 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9512 format %{ "CWB$cmp $op1,$op2,$labl\t! int" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9513 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9514 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9515 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9516 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9517 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9518 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9519 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9520 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9521 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9522
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9523 instruct cmpI_imm_branch_short(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9524 match(If cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9525 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9526 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9527
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9528 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9529 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9530 format %{ "CWB$cmp $op1,$op2,$labl\t! int" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9531 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9532 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9533 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9534 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9535 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9536 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9537 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9538 ins_pipe(cbcond_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9539 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9540
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9541 instruct cmpU_reg_branch_short(cmpOpU cmp, iRegI op1, iRegI op2, label labl, flagsRegU icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9542 match(If cmp (CmpU op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9543 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9544 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9545
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9546 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9547 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9548 format %{ "CWB$cmp $op1,$op2,$labl\t! unsigned" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9549 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9550 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9551 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9552 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9553 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9554 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9555 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9556 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9557 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9558
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9559 instruct cmpU_imm_branch_short(cmpOpU cmp, iRegI op1, immI5 op2, label labl, flagsRegU icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9560 match(If cmp (CmpU op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9561 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9562 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9563
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9564 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9565 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9566 format %{ "CWB$cmp $op1,$op2,$labl\t! unsigned" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9567 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9568 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9569 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9570 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9571 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9572 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9573 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9574 ins_pipe(cbcond_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9575 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9576
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9577 instruct cmpL_reg_branch_short(cmpOp cmp, iRegL op1, iRegL op2, label labl, flagsRegL xcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9578 match(If cmp (CmpL op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9579 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9580 effect(USE labl, KILL xcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9581
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9582 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9583 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9584 format %{ "CXB$cmp $op1,$op2,$labl\t! long" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9585 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9586 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9587 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9588 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9589 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9590 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9591 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9592 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9593 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9594
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9595 instruct cmpL_imm_branch_short(cmpOp cmp, iRegL op1, immL5 op2, label labl, flagsRegL xcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9596 match(If cmp (CmpL op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9597 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9598 effect(USE labl, KILL xcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9599
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9600 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9601 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9602 format %{ "CXB$cmp $op1,$op2,$labl\t! long" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9603 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9604 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9605 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9606 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::xcc, $op1$$Register, $op2$$constant, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9607 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9608 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9609 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9610 ins_pipe(cbcond_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9611 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9612
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9613 // Compare Pointers and branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9614 instruct cmpP_reg_branch_short(cmpOpP cmp, iRegP op1, iRegP op2, label labl, flagsRegP pcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9615 match(If cmp (CmpP op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9616 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9617 effect(USE labl, KILL pcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9618
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9619 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9620 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9621 #ifdef _LP64
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9622 format %{ "CXB$cmp $op1,$op2,$labl\t! ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9623 #else
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9624 format %{ "CWB$cmp $op1,$op2,$labl\t! ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9625 #endif
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9626 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9627 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9628 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9629 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::ptr_cc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9630 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9631 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9632 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9633 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9634 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9635
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9636 instruct cmpP_null_branch_short(cmpOpP cmp, iRegP op1, immP0 null, label labl, flagsRegP pcc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9637 match(If cmp (CmpP op1 null));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9638 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9639 effect(USE labl, KILL pcc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9640
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9641 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9642 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9643 #ifdef _LP64
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9644 format %{ "CXB$cmp $op1,0,$labl\t! ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9645 #else
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9646 format %{ "CWB$cmp $op1,0,$labl\t! ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9647 #endif
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9648 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9649 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9650 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9651 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::ptr_cc, $op1$$Register, G0, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9652 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9653 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9654 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9655 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9656 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9657
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9658 instruct cmpN_reg_branch_short(cmpOp cmp, iRegN op1, iRegN op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9659 match(If cmp (CmpN op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9660 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9661 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9662
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9663 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9664 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9665 format %{ "CWB$cmp $op1,op2,$labl\t! compressed ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9666 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9667 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9668 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9669 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9670 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9671 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9672 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9673 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9674 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9675
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9676 instruct cmpN_null_branch_short(cmpOp cmp, iRegN op1, immN0 null, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9677 match(If cmp (CmpN op1 null));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9678 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9679 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9680
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9681 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9682 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9683 format %{ "CWB$cmp $op1,0,$labl\t! compressed ptr" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9684 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9685 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9686 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9687 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, G0, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9688 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9689 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9690 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9691 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9692 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9693
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9694 // Loop back branch
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9695 instruct cmpI_reg_branchLoopEnd_short(cmpOp cmp, iRegI op1, iRegI op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9696 match(CountedLoopEnd cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9697 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9698 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9699
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9700 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9701 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9702 format %{ "CWB$cmp $op1,$op2,$labl\t! Loop end" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9703 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9704 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9705 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9706 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$Register, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9707 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9708 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9709 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9710 ins_pipe(cbcond_reg_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9711 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9712
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9713 instruct cmpI_imm_branchLoopEnd_short(cmpOp cmp, iRegI op1, immI5 op2, label labl, flagsReg icc) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9714 match(CountedLoopEnd cmp (CmpI op1 op2));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9715 predicate(UseCBCond);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9716 effect(USE labl, KILL icc);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9717
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9718 size(4);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9719 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9720 format %{ "CWB$cmp $op1,$op2,$labl\t! Loop end" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9721 ins_encode %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9722 Label* L = $labl$$label;
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9723 assert(__ use_cbcond(*L), "back to back cbcond");
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9724 __ cbcond((Assembler::Condition)($cmp$$cmpcode), Assembler::icc, $op1$$Register, $op2$$constant, *L);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9725 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9726 ins_short_branch(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9727 ins_avoid_back_to_back(1);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9728 ins_pipe(cbcond_reg_imm);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9729 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9730
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9731 // Branch-on-register tests all 64 bits. We assume that values
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9732 // in 64-bit registers always remains zero or sign extended
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9733 // unless our code munges the high bits. Interrupts can chop
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9734 // the high order bits to zero or sign at any time.
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9735 instruct branchCon_regI(cmpOp_reg cmp, iRegI op1, immI0 zero, label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9736 match(If cmp (CmpI op1 zero));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9737 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9738 effect(USE labl);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9739
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9740 size(8);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9741 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9742 format %{ "BR$cmp $op1,$labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9743 ins_encode( enc_bpr( labl, cmp, op1 ) );
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9744 ins_pipe(br_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9745 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9746
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9747 instruct branchCon_regP(cmpOp_reg cmp, iRegP op1, immP0 null, label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9748 match(If cmp (CmpP op1 null));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9749 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9750 effect(USE labl);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9751
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9752 size(8);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9753 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9754 format %{ "BR$cmp $op1,$labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9755 ins_encode( enc_bpr( labl, cmp, op1 ) );
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9756 ins_pipe(br_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9757 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9758
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9759 instruct branchCon_regL(cmpOp_reg cmp, iRegL op1, immL0 zero, label labl) %{
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9760 match(If cmp (CmpL op1 zero));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9761 predicate(can_branch_register(_kids[0]->_leaf, _kids[1]->_leaf));
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9762 effect(USE labl);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9763
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9764 size(8);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9765 ins_cost(BRANCH_COST);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9766 format %{ "BR$cmp $op1,$labl" %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9767 ins_encode( enc_bpr( labl, cmp, op1 ) );
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9768 ins_pipe(br_reg);
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9769 %}
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9770
95134e034042 7063629: use cbcond in C2 generated code on T4
kvn
parents: 3849
diff changeset
9771
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9772 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
9773 // Long Compare
a61af66fc99e Initial load
duke
parents:
diff changeset
9774 //
a61af66fc99e Initial load
duke
parents:
diff changeset
9775 // Currently we hold longs in 2 registers. Comparing such values efficiently
a61af66fc99e Initial load
duke
parents:
diff changeset
9776 // is tricky. The flavor of compare used depends on whether we are testing
a61af66fc99e Initial load
duke
parents:
diff changeset
9777 // for LT, LE, or EQ. For a simple LT test we can check just the sign bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
9778 // The GE test is the negated LT test. The LE test can be had by commuting
a61af66fc99e Initial load
duke
parents:
diff changeset
9779 // the operands (yielding a GE test) and then negating; negate again for the
a61af66fc99e Initial load
duke
parents:
diff changeset
9780 // GT test. The EQ test is done by ORcc'ing the high and low halves, and the
a61af66fc99e Initial load
duke
parents:
diff changeset
9781 // NE test is negated from that.
a61af66fc99e Initial load
duke
parents:
diff changeset
9782
a61af66fc99e Initial load
duke
parents:
diff changeset
9783 // Due to a shortcoming in the ADLC, it mixes up expressions like:
a61af66fc99e Initial load
duke
parents:
diff changeset
9784 // (foo (CmpI (CmpL X Y) 0)) and (bar (CmpI (CmpL X 0L) 0)). Note the
a61af66fc99e Initial load
duke
parents:
diff changeset
9785 // difference between 'Y' and '0L'. The tree-matches for the CmpI sections
a61af66fc99e Initial load
duke
parents:
diff changeset
9786 // are collapsed internally in the ADLC's dfa-gen code. The match for
a61af66fc99e Initial load
duke
parents:
diff changeset
9787 // (CmpI (CmpL X Y) 0) is silently replaced with (CmpI (CmpL X 0L) 0) and the
a61af66fc99e Initial load
duke
parents:
diff changeset
9788 // foo match ends up with the wrong leaf. One fix is to not match both
a61af66fc99e Initial load
duke
parents:
diff changeset
9789 // reg-reg and reg-zero forms of long-compare. This is unfortunate because
a61af66fc99e Initial load
duke
parents:
diff changeset
9790 // both forms beat the trinary form of long-compare and both are very useful
a61af66fc99e Initial load
duke
parents:
diff changeset
9791 // on Intel which has so few registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
9792
a61af66fc99e Initial load
duke
parents:
diff changeset
9793 instruct branchCon_long(cmpOp cmp, flagsRegL xcc, label labl) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9794 match(If cmp xcc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9795 effect(USE labl);
a61af66fc99e Initial load
duke
parents:
diff changeset
9796
a61af66fc99e Initial load
duke
parents:
diff changeset
9797 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9798 ins_cost(BRANCH_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9799 format %{ "BP$cmp $xcc,$labl" %}
3839
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9800 ins_encode %{
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9801 Label* L = $labl$$label;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9802 Assembler::Predict predict_taken =
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9803 cbuf.is_backward_branch(*L) ? Assembler::pt : Assembler::pn;
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9804
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9805 __ bp( (Assembler::Condition)($cmp$$cmpcode), false, Assembler::xcc, predict_taken, *L);
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9806 __ delayed()->nop();
3d42f82cd811 7063628: Use cbcond on T4
kvn
parents: 3804
diff changeset
9807 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9808 ins_pipe(br_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
9809 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9810
a61af66fc99e Initial load
duke
parents:
diff changeset
9811 // Manifest a CmpL3 result in an integer register. Very painful.
a61af66fc99e Initial load
duke
parents:
diff changeset
9812 // This is the test to avoid.
a61af66fc99e Initial load
duke
parents:
diff changeset
9813 instruct cmpL3_reg_reg(iRegI dst, iRegL src1, iRegL src2, flagsReg ccr ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9814 match(Set dst (CmpL3 src1 src2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9815 effect( KILL ccr );
a61af66fc99e Initial load
duke
parents:
diff changeset
9816 ins_cost(6*DEFAULT_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9817 size(24);
a61af66fc99e Initial load
duke
parents:
diff changeset
9818 format %{ "CMP $src1,$src2\t\t! long\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9819 "\tBLT,a,pn done\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9820 "\tMOV -1,$dst\t! delay slot\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9821 "\tBGT,a,pn done\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9822 "\tMOV 1,$dst\t! delay slot\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9823 "\tCLR $dst\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
9824 "done:" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9825 ins_encode( cmpl_flag(src1,src2,dst) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9826 ins_pipe(cmpL_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9827 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9828
a61af66fc99e Initial load
duke
parents:
diff changeset
9829 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
9830 instruct cmovLL_reg(cmpOp cmp, flagsRegL xcc, iRegL dst, iRegL src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9831 match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9832 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
9833 format %{ "MOV$cmp $xcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9834 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9835 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9836 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9837
a61af66fc99e Initial load
duke
parents:
diff changeset
9838 instruct cmovLL_imm(cmpOp cmp, flagsRegL xcc, iRegL dst, immL0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9839 match(Set dst (CMoveL (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9840 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
9841 format %{ "MOV$cmp $xcc,$src,$dst\t! long" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9842 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9843 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
9844 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9845
a61af66fc99e Initial load
duke
parents:
diff changeset
9846 instruct cmovIL_reg(cmpOp cmp, flagsRegL xcc, iRegI dst, iRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9847 match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9848 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
9849 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9850 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9851 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9852 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9853
a61af66fc99e Initial load
duke
parents:
diff changeset
9854 instruct cmovIL_imm(cmpOp cmp, flagsRegL xcc, iRegI dst, immI11 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9855 match(Set dst (CMoveI (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9856 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
9857 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9858 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9859 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
9860 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9861
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9862 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
9863 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
9864 ins_cost(150);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9865 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
9866 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
9867 ins_pipe(ialu_reg);
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9868 %}
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 163
diff changeset
9869
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9870 instruct cmovPL_reg(cmpOp cmp, flagsRegL xcc, iRegP dst, iRegP src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9871 match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9872 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
9873 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9874 ins_encode( enc_cmov_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9875 ins_pipe(ialu_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
9876 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9877
a61af66fc99e Initial load
duke
parents:
diff changeset
9878 instruct cmovPL_imm(cmpOp cmp, flagsRegL xcc, iRegP dst, immP0 src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9879 match(Set dst (CMoveP (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9880 ins_cost(140);
a61af66fc99e Initial load
duke
parents:
diff changeset
9881 format %{ "MOV$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9882 ins_encode( enc_cmov_imm(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9883 ins_pipe(ialu_imm);
a61af66fc99e Initial load
duke
parents:
diff changeset
9884 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9885
a61af66fc99e Initial load
duke
parents:
diff changeset
9886 instruct cmovFL_reg(cmpOp cmp, flagsRegL xcc, regF dst, regF src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9887 match(Set dst (CMoveF (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9888 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
9889 opcode(0x101);
a61af66fc99e Initial load
duke
parents:
diff changeset
9890 format %{ "FMOVS$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9891 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9892 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
9893 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9894
a61af66fc99e Initial load
duke
parents:
diff changeset
9895 instruct cmovDL_reg(cmpOp cmp, flagsRegL xcc, regD dst, regD src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9896 match(Set dst (CMoveD (Binary cmp xcc) (Binary dst src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
9897 ins_cost(150);
a61af66fc99e Initial load
duke
parents:
diff changeset
9898 opcode(0x102);
a61af66fc99e Initial load
duke
parents:
diff changeset
9899 format %{ "FMOVD$cmp $xcc,$src,$dst" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9900 ins_encode( enc_cmovf_reg(cmp,dst,src, (Assembler::xcc)) );
a61af66fc99e Initial load
duke
parents:
diff changeset
9901 ins_pipe(int_conditional_float_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
9902 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9903
a61af66fc99e Initial load
duke
parents:
diff changeset
9904 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
9905 // Safepoint Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
9906 instruct safePoint_poll(iRegP poll) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9907 match(SafePoint poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
9908 effect(USE poll);
a61af66fc99e Initial load
duke
parents:
diff changeset
9909
a61af66fc99e Initial load
duke
parents:
diff changeset
9910 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
9911 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
9912 format %{ "LDX [$poll],R_G0\t! Safepoint: poll for GC" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9913 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
9914 format %{ "LDUW [$poll],R_G0\t! Safepoint: poll for GC" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9915 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
9916 ins_encode %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9917 __ relocate(relocInfo::poll_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
9918 __ ld_ptr($poll$$Register, 0, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
9919 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9920 ins_pipe(loadPollP);
a61af66fc99e Initial load
duke
parents:
diff changeset
9921 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9922
a61af66fc99e Initial load
duke
parents:
diff changeset
9923 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
9924 // Call Instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
9925 // Call Java Static Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
9926 instruct CallStaticJavaDirect( method meth ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9927 match(CallStaticJava);
1567
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9928 predicate(! ((CallStaticJavaNode*)n)->is_method_handle_invoke());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9929 effect(USE meth);
a61af66fc99e Initial load
duke
parents:
diff changeset
9930
a61af66fc99e Initial load
duke
parents:
diff changeset
9931 size(8);
a61af66fc99e Initial load
duke
parents:
diff changeset
9932 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9933 format %{ "CALL,static ; NOP ==> " %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9934 ins_encode( Java_Static_Call( meth ), call_epilog );
a61af66fc99e Initial load
duke
parents:
diff changeset
9935 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
9936 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9937
1567
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9938 // Call Java Static Instruction (method handle version)
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9939 instruct CallStaticJavaHandle(method meth, l7RegP l7_mh_SP_save) %{
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9940 match(CallStaticJava);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9941 predicate(((CallStaticJavaNode*)n)->is_method_handle_invoke());
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9942 effect(USE meth, KILL l7_mh_SP_save);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9943
3856
bd87c0dcaba5 7079769: JSR 292: incorrect size() for CallStaticJavaHandle on sparc
twisti
parents: 3854
diff changeset
9944 size(16);
1567
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9945 ins_cost(CALL_COST);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9946 format %{ "CALL,static/MethodHandle" %}
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9947 ins_encode(preserve_SP, Java_Static_Call(meth), restore_SP, call_epilog);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9948 ins_pipe(simple_call);
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9949 %}
110501f54a99 6934104: JSR 292 needs to support SPARC C2
twisti
parents: 1396
diff changeset
9950
0
a61af66fc99e Initial load
duke
parents:
diff changeset
9951 // Call Java Dynamic Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
9952 instruct CallDynamicJavaDirect( method meth ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9953 match(CallDynamicJava);
a61af66fc99e Initial load
duke
parents:
diff changeset
9954 effect(USE meth);
a61af66fc99e Initial load
duke
parents:
diff changeset
9955
a61af66fc99e Initial load
duke
parents:
diff changeset
9956 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9957 format %{ "SET (empty),R_G5\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
9958 "CALL,dynamic ; NOP ==> " %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9959 ins_encode( Java_Dynamic_Call( meth ), call_epilog );
a61af66fc99e Initial load
duke
parents:
diff changeset
9960 ins_pipe(call);
a61af66fc99e Initial load
duke
parents:
diff changeset
9961 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9962
a61af66fc99e Initial load
duke
parents:
diff changeset
9963 // Call Runtime Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
9964 instruct CallRuntimeDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9965 match(CallRuntime);
a61af66fc99e Initial load
duke
parents:
diff changeset
9966 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
9967 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9968 format %{ "CALL,runtime" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9969 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
9970 call_epilog, adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
9971 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
9972 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9973
a61af66fc99e Initial load
duke
parents:
diff changeset
9974 // Call runtime without safepoint - same as CallRuntime
a61af66fc99e Initial load
duke
parents:
diff changeset
9975 instruct CallLeafDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9976 match(CallLeaf);
a61af66fc99e Initial load
duke
parents:
diff changeset
9977 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
9978 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9979 format %{ "CALL,runtime leaf" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9980 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
9981 call_epilog,
a61af66fc99e Initial load
duke
parents:
diff changeset
9982 adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
9983 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
9984 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9985
a61af66fc99e Initial load
duke
parents:
diff changeset
9986 // Call runtime without safepoint - same as CallLeaf
a61af66fc99e Initial load
duke
parents:
diff changeset
9987 instruct CallLeafNoFPDirect(method meth, l7RegP l7) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
9988 match(CallLeafNoFP);
a61af66fc99e Initial load
duke
parents:
diff changeset
9989 effect(USE meth, KILL l7);
a61af66fc99e Initial load
duke
parents:
diff changeset
9990 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
9991 format %{ "CALL,runtime leaf nofp" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9992 ins_encode( Java_To_Runtime( meth ),
a61af66fc99e Initial load
duke
parents:
diff changeset
9993 call_epilog,
a61af66fc99e Initial load
duke
parents:
diff changeset
9994 adjust_long_from_native_call );
a61af66fc99e Initial load
duke
parents:
diff changeset
9995 ins_pipe(simple_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
9996 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
9997
a61af66fc99e Initial load
duke
parents:
diff changeset
9998 // Tail Call; Jump from runtime stub to Java code.
a61af66fc99e Initial load
duke
parents:
diff changeset
9999 // Also known as an 'interprocedural jump'.
a61af66fc99e Initial load
duke
parents:
diff changeset
10000 // Target of jump will eventually return to caller.
a61af66fc99e Initial load
duke
parents:
diff changeset
10001 // TailJump below removes the return address.
a61af66fc99e Initial load
duke
parents:
diff changeset
10002 instruct TailCalljmpInd(g3RegP jump_target, inline_cache_regP method_oop) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10003 match(TailCall jump_target method_oop );
a61af66fc99e Initial load
duke
parents:
diff changeset
10004
a61af66fc99e Initial load
duke
parents:
diff changeset
10005 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
10006 format %{ "Jmp $jump_target ; NOP \t! $method_oop holds method oop" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10007 ins_encode(form_jmpl(jump_target));
a61af66fc99e Initial load
duke
parents:
diff changeset
10008 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
10009 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10010
a61af66fc99e Initial load
duke
parents:
diff changeset
10011
a61af66fc99e Initial load
duke
parents:
diff changeset
10012 // Return Instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
10013 instruct Ret() %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10014 match(Return);
a61af66fc99e Initial load
duke
parents:
diff changeset
10015
a61af66fc99e Initial load
duke
parents:
diff changeset
10016 // The epilogue node did the ret already.
a61af66fc99e Initial load
duke
parents:
diff changeset
10017 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
10018 format %{ "! return" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10019 ins_encode();
a61af66fc99e Initial load
duke
parents:
diff changeset
10020 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
10021 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10022
a61af66fc99e Initial load
duke
parents:
diff changeset
10023
a61af66fc99e Initial load
duke
parents:
diff changeset
10024 // Tail Jump; remove the return address; jump to target.
a61af66fc99e Initial load
duke
parents:
diff changeset
10025 // TailCall above leaves the return address around.
a61af66fc99e Initial load
duke
parents:
diff changeset
10026 // TailJump is used in only one place, the rethrow_Java stub (fancy_jump=2).
a61af66fc99e Initial load
duke
parents:
diff changeset
10027 // ex_oop (Exception Oop) is needed in %o0 at the jump. As there would be a
a61af66fc99e Initial load
duke
parents:
diff changeset
10028 // "restore" before this instruction (in Epilogue), we need to materialize it
a61af66fc99e Initial load
duke
parents:
diff changeset
10029 // in %i0.
a61af66fc99e Initial load
duke
parents:
diff changeset
10030 instruct tailjmpInd(g1RegP jump_target, i0RegP ex_oop) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10031 match( TailJump jump_target ex_oop );
a61af66fc99e Initial load
duke
parents:
diff changeset
10032 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
10033 format %{ "! discard R_O7\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
10034 "Jmp $jump_target ; ADD O7,8,O1 \t! $ex_oop holds exc. oop" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10035 ins_encode(form_jmpl_set_exception_pc(jump_target));
a61af66fc99e Initial load
duke
parents:
diff changeset
10036 // opcode(Assembler::jmpl_op3, Assembler::arith_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
10037 // The hack duplicates the exception oop into G3, so that CreateEx can use it there.
a61af66fc99e Initial load
duke
parents:
diff changeset
10038 // ins_encode( form3_rs1_simm13_rd( jump_target, 0x00, R_G0 ), move_return_pc_to_o1() );
a61af66fc99e Initial load
duke
parents:
diff changeset
10039 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
10040 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10041
a61af66fc99e Initial load
duke
parents:
diff changeset
10042 // Create exception oop: created by stack-crawling runtime code.
a61af66fc99e Initial load
duke
parents:
diff changeset
10043 // Created exception is now available to this handler, and is setup
a61af66fc99e Initial load
duke
parents:
diff changeset
10044 // just prior to jumping to this handler. No code emitted.
a61af66fc99e Initial load
duke
parents:
diff changeset
10045 instruct CreateException( o0RegP ex_oop )
a61af66fc99e Initial load
duke
parents:
diff changeset
10046 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10047 match(Set ex_oop (CreateEx));
a61af66fc99e Initial load
duke
parents:
diff changeset
10048 ins_cost(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
10049
a61af66fc99e Initial load
duke
parents:
diff changeset
10050 size(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
10051 // use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
10052 format %{ "! exception oop is in R_O0; no code emitted" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10053 ins_encode();
a61af66fc99e Initial load
duke
parents:
diff changeset
10054 ins_pipe(empty);
a61af66fc99e Initial load
duke
parents:
diff changeset
10055 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10056
a61af66fc99e Initial load
duke
parents:
diff changeset
10057
a61af66fc99e Initial load
duke
parents:
diff changeset
10058 // Rethrow exception:
a61af66fc99e Initial load
duke
parents:
diff changeset
10059 // The exception oop will come in the first argument position.
a61af66fc99e Initial load
duke
parents:
diff changeset
10060 // Then JUMP (not call) to the rethrow stub code.
a61af66fc99e Initial load
duke
parents:
diff changeset
10061 instruct RethrowException()
a61af66fc99e Initial load
duke
parents:
diff changeset
10062 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10063 match(Rethrow);
a61af66fc99e Initial load
duke
parents:
diff changeset
10064 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
10065
a61af66fc99e Initial load
duke
parents:
diff changeset
10066 // use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
10067 format %{ "Jmp rethrow_stub" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10068 ins_encode(enc_rethrow);
a61af66fc99e Initial load
duke
parents:
diff changeset
10069 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
10070 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10071
a61af66fc99e Initial load
duke
parents:
diff changeset
10072
a61af66fc99e Initial load
duke
parents:
diff changeset
10073 // Die now
a61af66fc99e Initial load
duke
parents:
diff changeset
10074 instruct ShouldNotReachHere( )
a61af66fc99e Initial load
duke
parents:
diff changeset
10075 %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10076 match(Halt);
a61af66fc99e Initial load
duke
parents:
diff changeset
10077 ins_cost(CALL_COST);
a61af66fc99e Initial load
duke
parents:
diff changeset
10078
a61af66fc99e Initial load
duke
parents:
diff changeset
10079 size(4);
a61af66fc99e Initial load
duke
parents:
diff changeset
10080 // Use the following format syntax
a61af66fc99e Initial load
duke
parents:
diff changeset
10081 format %{ "ILLTRAP ; ShouldNotReachHere" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10082 ins_encode( form2_illtrap() );
a61af66fc99e Initial load
duke
parents:
diff changeset
10083 ins_pipe(tail_call);
a61af66fc99e Initial load
duke
parents:
diff changeset
10084 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10085
a61af66fc99e Initial load
duke
parents:
diff changeset
10086 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
10087 // The 2nd slow-half of a subtype check. Scan the subklass's 2ndary superklass
a61af66fc99e Initial load
duke
parents:
diff changeset
10088 // array for an instance of the superklass. Set a hidden internal cache on a
a61af66fc99e Initial load
duke
parents:
diff changeset
10089 // hit (cache is checked with exposed code in gen_subtype_check()). Return
a61af66fc99e Initial load
duke
parents:
diff changeset
10090 // not zero for a miss or zero for a hit. The encoding ALSO sets flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
10091 instruct partialSubtypeCheck( o0RegP index, o1RegP sub, o2RegP super, flagsRegP pcc, o7RegP o7 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10092 match(Set index (PartialSubtypeCheck sub super));
a61af66fc99e Initial load
duke
parents:
diff changeset
10093 effect( KILL pcc, KILL o7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
10094 ins_cost(DEFAULT_COST*10);
a61af66fc99e Initial load
duke
parents:
diff changeset
10095 format %{ "CALL PartialSubtypeCheck\n\tNOP" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10096 ins_encode( enc_PartialSubtypeCheck() );
a61af66fc99e Initial load
duke
parents:
diff changeset
10097 ins_pipe(partial_subtype_check_pipe);
a61af66fc99e Initial load
duke
parents:
diff changeset
10098 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10099
a61af66fc99e Initial load
duke
parents:
diff changeset
10100 instruct partialSubtypeCheck_vs_zero( flagsRegP pcc, o1RegP sub, o2RegP super, immP0 zero, o0RegP idx, o7RegP o7 ) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10101 match(Set pcc (CmpP (PartialSubtypeCheck sub super) zero));
a61af66fc99e Initial load
duke
parents:
diff changeset
10102 effect( KILL idx, KILL o7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
10103 ins_cost(DEFAULT_COST*10);
a61af66fc99e Initial load
duke
parents:
diff changeset
10104 format %{ "CALL PartialSubtypeCheck\n\tNOP\t# (sets condition codes)" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10105 ins_encode( enc_PartialSubtypeCheck() );
a61af66fc99e Initial load
duke
parents:
diff changeset
10106 ins_pipe(partial_subtype_check_pipe);
a61af66fc99e Initial load
duke
parents:
diff changeset
10107 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10108
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 81
diff changeset
10109
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10110 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
10111 // inlined locking and unlocking
a61af66fc99e Initial load
duke
parents:
diff changeset
10112
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10113 instruct cmpFastLock(flagsRegP pcc, iRegP object, o1RegP box, iRegP scratch2, o7RegP scratch ) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10114 match(Set pcc (FastLock object box));
a61af66fc99e Initial load
duke
parents:
diff changeset
10115
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10116 effect(TEMP scratch2, USE_KILL box, KILL scratch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10117 ins_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
10118
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10119 format %{ "FASTLOCK $object,$box\t! kills $box,$scratch,$scratch2" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10120 ins_encode( Fast_Lock(object, box, scratch, scratch2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
10121 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
10122 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10123
a61af66fc99e Initial load
duke
parents:
diff changeset
10124
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10125 instruct cmpFastUnlock(flagsRegP pcc, iRegP object, o1RegP box, iRegP scratch2, o7RegP scratch ) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10126 match(Set pcc (FastUnlock object box));
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10127 effect(TEMP scratch2, USE_KILL box, KILL scratch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10128 ins_cost(100);
a61af66fc99e Initial load
duke
parents:
diff changeset
10129
4777
e9a5e0a812c8 7125896: Eliminate nested locks
kvn
parents: 4776
diff changeset
10130 format %{ "FASTUNLOCK $object,$box\t! kills $box,$scratch,$scratch2" %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10131 ins_encode( Fast_Unlock(object, box, scratch, scratch2) );
a61af66fc99e Initial load
duke
parents:
diff changeset
10132 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
10133 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10134
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10135 // The encodings are generic.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10136 instruct clear_array(iRegX cnt, iRegP base, iRegX temp, Universe dummy, flagsReg ccr) %{
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10137 predicate(!use_block_zeroing(n->in(2)) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10138 match(Set dummy (ClearArray cnt base));
a61af66fc99e Initial load
duke
parents:
diff changeset
10139 effect(TEMP temp, KILL ccr);
a61af66fc99e Initial load
duke
parents:
diff changeset
10140 ins_cost(300);
a61af66fc99e Initial load
duke
parents:
diff changeset
10141 format %{ "MOV $cnt,$temp\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
10142 "loop: SUBcc $temp,8,$temp\t! Count down a dword of bytes\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
10143 " BRge loop\t\t! Clearing loop\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
10144 " STX G0,[$base+$temp]\t! delay slot" %}
3892
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10145
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10146 ins_encode %{
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10147 // Compiler ensures base is doubleword aligned and cnt is count of doublewords
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10148 Register nof_bytes_arg = $cnt$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10149 Register nof_bytes_tmp = $temp$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10150 Register base_pointer_arg = $base$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10151
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10152 Label loop;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10153 __ mov(nof_bytes_arg, nof_bytes_tmp);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10154
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10155 // Loop and clear, walking backwards through the array.
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10156 // nof_bytes_tmp (if >0) is always the number of bytes to zero
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10157 __ bind(loop);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10158 __ deccc(nof_bytes_tmp, 8);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10159 __ br(Assembler::greaterEqual, true, Assembler::pt, loop);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10160 __ delayed()-> stx(G0, base_pointer_arg, nof_bytes_tmp);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10161 // %%%% this mini-loop must not cross a cache boundary!
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10162 %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10163 ins_pipe(long_memory_op);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10164 %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10165
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10166 instruct clear_array_bis(g1RegX cnt, o0RegP base, Universe dummy, flagsReg ccr) %{
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10167 predicate(use_block_zeroing(n->in(2)));
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10168 match(Set dummy (ClearArray cnt base));
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10169 effect(USE_KILL cnt, USE_KILL base, KILL ccr);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10170 ins_cost(300);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10171 format %{ "CLEAR [$base, $cnt]\t! ClearArray" %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10172
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10173 ins_encode %{
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10174
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10175 assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10176 Register to = $base$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10177 Register count = $cnt$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10178
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10179 Label Ldone;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10180 __ nop(); // Separate short branches
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10181 // Use BIS for zeroing (temp is not used).
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10182 __ bis_zeroing(to, count, G0, Ldone);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10183 __ bind(Ldone);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10184
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10185 %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10186 ins_pipe(long_memory_op);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10187 %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10188
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10189 instruct clear_array_bis_2(g1RegX cnt, o0RegP base, iRegX tmp, Universe dummy, flagsReg ccr) %{
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10190 predicate(use_block_zeroing(n->in(2)) && !Assembler::is_simm13((int)BlockZeroingLowLimit));
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10191 match(Set dummy (ClearArray cnt base));
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10192 effect(TEMP tmp, USE_KILL cnt, USE_KILL base, KILL ccr);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10193 ins_cost(300);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10194 format %{ "CLEAR [$base, $cnt]\t! ClearArray" %}
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10195
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10196 ins_encode %{
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10197
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10198 assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10199 Register to = $base$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10200 Register count = $cnt$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10201 Register temp = $tmp$$Register;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10202
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10203 Label Ldone;
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10204 __ nop(); // Separate short branches
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10205 // Use BIS for zeroing
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10206 __ bis_zeroing(to, count, temp, Ldone);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10207 __ bind(Ldone);
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10208
baf763f388e6 7059037: Use BIS for zeroing on T4
kvn
parents: 3856
diff changeset
10209 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10210 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
10211 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10212
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10213 instruct string_compare(o0RegP str1, o1RegP str2, g3RegI cnt1, g4RegI cnt2, notemp_iRegI result,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10214 o7RegI tmp, flagsReg ccr) %{
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10215 match(Set result (StrComp (Binary str1 cnt1) (Binary str2 cnt2)));
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10216 effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt1, USE_KILL cnt2, KILL ccr, KILL tmp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10217 ins_cost(300);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10218 format %{ "String Compare $str1,$cnt1,$str2,$cnt2 -> $result // KILL $tmp" %}
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10219 ins_encode( enc_String_Compare(str1, str2, cnt1, cnt2, result) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10220 ins_pipe(long_memory_op);
a61af66fc99e Initial load
duke
parents:
diff changeset
10221 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10222
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10223 instruct string_equals(o0RegP str1, o1RegP str2, g3RegI cnt, notemp_iRegI result,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10224 o7RegI tmp, flagsReg ccr) %{
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10225 match(Set result (StrEquals (Binary str1 str2) cnt));
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10226 effect(USE_KILL str1, USE_KILL str2, USE_KILL cnt, KILL tmp, KILL ccr);
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10227 ins_cost(300);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10228 format %{ "String Equals $str1,$str2,$cnt -> $result // KILL $tmp" %}
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10229 ins_encode( enc_String_Equals(str1, str2, cnt, result) );
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10230 ins_pipe(long_memory_op);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10231 %}
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10232
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10233 instruct array_equals(o0RegP ary1, o1RegP ary2, g3RegI tmp1, notemp_iRegI result,
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10234 o7RegI tmp2, flagsReg ccr) %{
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10235 match(Set result (AryEq ary1 ary2));
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10236 effect(USE_KILL ary1, USE_KILL ary2, KILL tmp1, KILL tmp2, KILL ccr);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10237 ins_cost(300);
986
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10238 format %{ "Array Equals $ary1,$ary2 -> $result // KILL $tmp1,$tmp2" %}
62001a362ce9 6827605: new String intrinsics may prevent EA scalar replacement
kvn
parents: 951
diff changeset
10239 ins_encode( enc_Array_Equals(ary1, ary2, tmp1, result));
681
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10240 ins_pipe(long_memory_op);
fbde8ec322d0 6761600: Use sse 4.2 in intrinsics
cfang
parents: 647
diff changeset
10241 %}
643
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10242
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10243
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10244 //---------- Zeros Count Instructions ------------------------------------------
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10245
7426
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10246 instruct countLeadingZerosI(iRegIsafe dst, iRegI src, iRegI tmp, flagsReg cr) %{
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10247 predicate(UsePopCountInstruction); // See Matcher::match_rule_supported
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10248 match(Set dst (CountLeadingZerosI src));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10249 effect(TEMP dst, TEMP tmp, KILL cr);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10250
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10251 // x |= (x >> 1);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10252 // x |= (x >> 2);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10253 // x |= (x >> 4);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10254 // x |= (x >> 8);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10255 // x |= (x >> 16);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10256 // return (WORDBITS - popc(x));
1041
f875b4f472f7 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 1016
diff changeset
10257 format %{ "SRL $src,1,$tmp\t! count leading zeros (int)\n\t"
f875b4f472f7 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 1016
diff changeset
10258 "SRL $src,0,$dst\t! 32-bit zero extend\n\t"
f875b4f472f7 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 1016
diff changeset
10259 "OR $dst,$tmp,$dst\n\t"
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10260 "SRL $dst,2,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10261 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10262 "SRL $dst,4,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10263 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10264 "SRL $dst,8,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10265 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10266 "SRL $dst,16,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10267 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10268 "POPC $dst,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10269 "MOV 32,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10270 "SUB $tmp,$dst,$dst" %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10271 ins_encode %{
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10272 Register Rdst = $dst$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10273 Register Rsrc = $src$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10274 Register Rtmp = $tmp$$Register;
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10275 __ srl(Rsrc, 1, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10276 __ srl(Rsrc, 0, Rdst);
1041
f875b4f472f7 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 1016
diff changeset
10277 __ or3(Rdst, Rtmp, Rdst);
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10278 __ srl(Rdst, 2, Rtmp);
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10279 __ or3(Rdst, Rtmp, Rdst);
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10280 __ srl(Rdst, 4, Rtmp);
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10281 __ or3(Rdst, Rtmp, Rdst);
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10282 __ srl(Rdst, 8, Rtmp);
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10283 __ or3(Rdst, Rtmp, Rdst);
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10284 __ srl(Rdst, 16, Rtmp);
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10285 __ or3(Rdst, Rtmp, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10286 __ popc(Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10287 __ mov(BitsPerInt, Rtmp);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10288 __ sub(Rtmp, Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10289 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10290 ins_pipe(ialu_reg);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10291 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10292
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10293 instruct countLeadingZerosL(iRegIsafe dst, iRegL src, iRegL tmp, flagsReg cr) %{
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10294 predicate(UsePopCountInstruction); // See Matcher::match_rule_supported
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10295 match(Set dst (CountLeadingZerosL src));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10296 effect(TEMP dst, TEMP tmp, KILL cr);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10297
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10298 // x |= (x >> 1);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10299 // x |= (x >> 2);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10300 // x |= (x >> 4);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10301 // x |= (x >> 8);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10302 // x |= (x >> 16);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10303 // x |= (x >> 32);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10304 // return (WORDBITS - popc(x));
1041
f875b4f472f7 6893554: SPECjvm2008 mpegaudio fails with SecurityException
twisti
parents: 1016
diff changeset
10305 format %{ "SRLX $src,1,$tmp\t! count leading zeros (long)\n\t"
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10306 "OR $src,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10307 "SRLX $dst,2,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10308 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10309 "SRLX $dst,4,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10310 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10311 "SRLX $dst,8,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10312 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10313 "SRLX $dst,16,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10314 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10315 "SRLX $dst,32,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10316 "OR $dst,$tmp,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10317 "POPC $dst,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10318 "MOV 64,$tmp\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10319 "SUB $tmp,$dst,$dst" %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10320 ins_encode %{
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10321 Register Rdst = $dst$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10322 Register Rsrc = $src$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10323 Register Rtmp = $tmp$$Register;
1915
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10324 __ srlx(Rsrc, 1, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10325 __ or3( Rsrc, Rtmp, Rdst);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10326 __ srlx(Rdst, 2, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10327 __ or3( Rdst, Rtmp, Rdst);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10328 __ srlx(Rdst, 4, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10329 __ or3( Rdst, Rtmp, Rdst);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10330 __ srlx(Rdst, 8, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10331 __ or3( Rdst, Rtmp, Rdst);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10332 __ srlx(Rdst, 16, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10333 __ or3( Rdst, Rtmp, Rdst);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10334 __ srlx(Rdst, 32, Rtmp);
885e464e1a40 6996240: The BitSet.length method sometimes returns an index+1 value less than that of the highest bit set.
twisti
parents: 1914
diff changeset
10335 __ or3( Rdst, Rtmp, Rdst);
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10336 __ popc(Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10337 __ mov(BitsPerLong, Rtmp);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10338 __ sub(Rtmp, Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10339 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10340 ins_pipe(ialu_reg);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10341 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10342
7426
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10343 instruct countTrailingZerosI(iRegIsafe dst, iRegI src, flagsReg cr) %{
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10344 predicate(UsePopCountInstruction); // See Matcher::match_rule_supported
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10345 match(Set dst (CountTrailingZerosI src));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10346 effect(TEMP dst, KILL cr);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10347
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10348 // return popc(~x & (x - 1));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10349 format %{ "SUB $src,1,$dst\t! count trailing zeros (int)\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10350 "ANDN $dst,$src,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10351 "SRL $dst,R_G0,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10352 "POPC $dst,$dst" %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10353 ins_encode %{
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10354 Register Rdst = $dst$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10355 Register Rsrc = $src$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10356 __ sub(Rsrc, 1, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10357 __ andn(Rdst, Rsrc, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10358 __ srl(Rdst, G0, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10359 __ popc(Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10360 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10361 ins_pipe(ialu_reg);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10362 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10363
4003
4bac06a82bc3 7100757: The BitSet.nextSetBit() produces incorrect result in 32bit VM on Sparc
kvn
parents: 3898
diff changeset
10364 instruct countTrailingZerosL(iRegIsafe dst, iRegL src, flagsReg cr) %{
775
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10365 predicate(UsePopCountInstruction); // See Matcher::match_rule_supported
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10366 match(Set dst (CountTrailingZerosL src));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10367 effect(TEMP dst, KILL cr);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10368
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10369 // return popc(~x & (x - 1));
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10370 format %{ "SUB $src,1,$dst\t! count trailing zeros (long)\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10371 "ANDN $dst,$src,$dst\n\t"
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10372 "POPC $dst,$dst" %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10373 ins_encode %{
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10374 Register Rdst = $dst$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10375 Register Rsrc = $src$$Register;
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10376 __ sub(Rsrc, 1, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10377 __ andn(Rdst, Rsrc, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10378 __ popc(Rdst, Rdst);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10379 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10380 ins_pipe(ialu_reg);
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10381 %}
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10382
93c14e5562c4 6823354: Add intrinsics for {Integer,Long}.{numberOfLeadingZeros,numberOfTrailingZeros}()
twisti
parents: 732
diff changeset
10383
643
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10384 //---------- Population Count Instructions -------------------------------------
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10385
7426
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10386 instruct popCountI(iRegIsafe dst, iRegI src) %{
643
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10387 predicate(UsePopCountInstruction);
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10388 match(Set dst (PopCountI src));
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10389
7426
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10390 format %{ "SRL $src, G0, $dst\t! clear upper word for 64 bit POPC\n\t"
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10391 "POPC $dst, $dst" %}
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10392 ins_encode %{
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10393 __ srl($src$$Register, G0, $dst$$Register);
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10394 __ popc($dst$$Register, $dst$$Register);
643
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10395 %}
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10396 ins_pipe(ialu_reg);
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10397 %}
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10398
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10399 // Note: Long.bitCount(long) returns an int.
7426
65c8342f726a 8005033: clear high word for integer pop count on SPARC
twisti
parents: 6849
diff changeset
10400 instruct popCountL(iRegIsafe dst, iRegL src) %{
643
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10401 predicate(UsePopCountInstruction);
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10402 match(Set dst (PopCountL src));
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10403
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10404 format %{ "POPC $src, $dst" %}
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10405 ins_encode %{
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10406 __ popc($src$$Register, $dst$$Register);
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10407 %}
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10408 ins_pipe(ialu_reg);
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10409 %}
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10410
c771b7f43bbf 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 642
diff changeset
10411
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10412 // ============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
10413 //------------Bytes reverse--------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10414
a61af66fc99e Initial load
duke
parents:
diff changeset
10415 instruct bytes_reverse_int(iRegI dst, stackSlotI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10416 match(Set dst (ReverseBytesI src));
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10417
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10418 // Op cost is artificially doubled to make sure that load or store
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10419 // instructions are preferred over this one which requires a spill
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10420 // onto a stack slot.
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10421 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10422 format %{ "LDUWA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10423
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10424 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10425 __ set($src$$disp + STACK_BIAS, O7);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10426 __ lduwa($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10427 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10428 ins_pipe( iload_mem );
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10429 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10430
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10431 instruct bytes_reverse_long(iRegL dst, stackSlotL src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10432 match(Set dst (ReverseBytesL src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10433
a61af66fc99e Initial load
duke
parents:
diff changeset
10434 // Op cost is artificially doubled to make sure that load or store
a61af66fc99e Initial load
duke
parents:
diff changeset
10435 // instructions are preferred over this one which requires a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
10436 // onto a stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
10437 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10438 format %{ "LDXA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10439
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10440 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10441 __ set($src$$disp + STACK_BIAS, O7);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10442 __ ldxa($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10443 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10444 ins_pipe( iload_mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
10445 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10446
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10447 instruct bytes_reverse_unsigned_short(iRegI dst, stackSlotI src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10448 match(Set dst (ReverseBytesUS src));
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10449
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10450 // Op cost is artificially doubled to make sure that load or store
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10451 // instructions are preferred over this one which requires a spill
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10452 // onto a stack slot.
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10453 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10454 format %{ "LDUHA $src, $dst\t!asi=primary_little\n\t" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10455
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10456 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10457 // the value was spilled as an int so bias the load
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10458 __ set($src$$disp + STACK_BIAS + 2, O7);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10459 __ lduha($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10460 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10461 ins_pipe( iload_mem );
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10462 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10463
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10464 instruct bytes_reverse_short(iRegI dst, stackSlotI src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10465 match(Set dst (ReverseBytesS src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10466
a61af66fc99e Initial load
duke
parents:
diff changeset
10467 // Op cost is artificially doubled to make sure that load or store
a61af66fc99e Initial load
duke
parents:
diff changeset
10468 // instructions are preferred over this one which requires a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
10469 // onto a stack slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
10470 ins_cost(2*DEFAULT_COST + MEMORY_REF_COST);
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10471 format %{ "LDSHA $src, $dst\t!asi=primary_little\n\t" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10472
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10473 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10474 // the value was spilled as an int so bias the load
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10475 __ set($src$$disp + STACK_BIAS + 2, O7);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10476 __ ldsha($src$$base$$Register, O7, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10477 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10478 ins_pipe( iload_mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
10479 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10480
a61af66fc99e Initial load
duke
parents:
diff changeset
10481 // Load Integer reversed byte order
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10482 instruct loadI_reversed(iRegI dst, indIndexMemory src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10483 match(Set dst (ReverseBytesI (LoadI src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
10484
a61af66fc99e Initial load
duke
parents:
diff changeset
10485 ins_cost(DEFAULT_COST + MEMORY_REF_COST);
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10486 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10487 format %{ "LDUWA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10488
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10489 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10490 __ lduwa($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10491 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10492 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
10493 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10494
a61af66fc99e Initial load
duke
parents:
diff changeset
10495 // Load Long - aligned and reversed
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10496 instruct loadL_reversed(iRegL dst, indIndexMemory src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10497 match(Set dst (ReverseBytesL (LoadL src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
10498
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10499 ins_cost(MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10500 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10501 format %{ "LDXA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10502
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10503 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10504 __ ldxa($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10505 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10506 ins_pipe(iload_mem);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10507 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10508
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10509 // Load unsigned short / char reversed byte order
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10510 instruct loadUS_reversed(iRegI dst, indIndexMemory src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10511 match(Set dst (ReverseBytesUS (LoadUS src)));
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10512
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10513 ins_cost(MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10514 size(4);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10515 format %{ "LDUHA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10516
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10517 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10518 __ lduha($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10519 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10520 ins_pipe(iload_mem);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10521 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10522
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10523 // Load short reversed byte order
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10524 instruct loadS_reversed(iRegI dst, indIndexMemory src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10525 match(Set dst (ReverseBytesS (LoadS src)));
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10526
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10527 ins_cost(MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10528 size(4);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10529 format %{ "LDSHA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10530
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10531 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10532 __ ldsha($src$$base$$Register, $src$$index$$Register, Assembler::ASI_PRIMARY_LITTLE, $dst$$Register);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10533 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10534 ins_pipe(iload_mem);
a61af66fc99e Initial load
duke
parents:
diff changeset
10535 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10536
a61af66fc99e Initial load
duke
parents:
diff changeset
10537 // Store Integer reversed byte order
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10538 instruct storeI_reversed(indIndexMemory dst, iRegI src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10539 match(Set dst (StoreI dst (ReverseBytesI src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
10540
a61af66fc99e Initial load
duke
parents:
diff changeset
10541 ins_cost(MEMORY_REF_COST);
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10542 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10543 format %{ "STWA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10544
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10545 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10546 __ stwa($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10547 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10548 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
10549 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10550
a61af66fc99e Initial load
duke
parents:
diff changeset
10551 // Store Long reversed byte order
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10552 instruct storeL_reversed(indIndexMemory dst, iRegL src) %{
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10553 match(Set dst (StoreL dst (ReverseBytesL src)));
a61af66fc99e Initial load
duke
parents:
diff changeset
10554
a61af66fc99e Initial load
duke
parents:
diff changeset
10555 ins_cost(MEMORY_REF_COST);
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10556 size(4);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10557 format %{ "STXA $src, $dst\t!asi=primary_little" %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10558
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10559 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10560 __ stxa($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10561 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10562 ins_pipe(istore_mem_reg);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10563 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10564
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10565 // Store unsighed short/char reversed byte order
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10566 instruct storeUS_reversed(indIndexMemory dst, iRegI src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10567 match(Set dst (StoreC dst (ReverseBytesUS src)));
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10568
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10569 ins_cost(MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10570 size(4);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10571 format %{ "STHA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10572
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10573 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10574 __ stha($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10575 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10576 ins_pipe(istore_mem_reg);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10577 %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10578
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10579 // Store short reversed byte order
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10580 instruct storeS_reversed(indIndexMemory dst, iRegI src) %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10581 match(Set dst (StoreC dst (ReverseBytesS src)));
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10582
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10583 ins_cost(MEMORY_REF_COST);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10584 size(4);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10585 format %{ "STHA $src, $dst\t!asi=primary_little" %}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10586
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10587 ins_encode %{
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10588 __ stha($src$$Register, $dst$$base$$Register, $dst$$index$$Register, Assembler::ASI_PRIMARY_LITTLE);
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 1367
diff changeset
10589 %}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10590 ins_pipe(istore_mem_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
10591 %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10592
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10593 // ====================VECTOR INSTRUCTIONS=====================================
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10594
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10595 // Load Aligned Packed values into a Double Register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10596 instruct loadV8(regD dst, memory mem) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10597 predicate(n->as_LoadVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10598 match(Set dst (LoadVector mem));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10599 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10600 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10601 format %{ "LDDF $mem,$dst\t! load vector (8 bytes)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10602 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10603 __ ldf(FloatRegisterImpl::D, $mem$$Address, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10604 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10605 ins_pipe(floadD_mem);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10606 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10607
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10608 // Store Vector in Double register to memory
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10609 instruct storeV8(memory mem, regD src) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10610 predicate(n->as_StoreVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10611 match(Set mem (StoreVector mem src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10612 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10613 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10614 format %{ "STDF $src,$mem\t! store vector (8 bytes)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10615 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10616 __ stf(FloatRegisterImpl::D, as_DoubleFloatRegister($src$$reg), $mem$$Address);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10617 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10618 ins_pipe(fstoreD_mem_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10619 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10620
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10621 // Store Zero into vector in memory
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10622 instruct storeV8B_zero(memory mem, immI0 zero) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10623 predicate(n->as_StoreVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10624 match(Set mem (StoreVector mem (ReplicateB zero)));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10625 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10626 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10627 format %{ "STX $zero,$mem\t! store zero vector (8 bytes)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10628 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10629 __ stx(G0, $mem$$Address);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10630 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10631 ins_pipe(fstoreD_mem_zero);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10632 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10633
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10634 instruct storeV4S_zero(memory mem, immI0 zero) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10635 predicate(n->as_StoreVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10636 match(Set mem (StoreVector mem (ReplicateS zero)));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10637 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10638 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10639 format %{ "STX $zero,$mem\t! store zero vector (4 shorts)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10640 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10641 __ stx(G0, $mem$$Address);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10642 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10643 ins_pipe(fstoreD_mem_zero);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10644 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10645
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10646 instruct storeV2I_zero(memory mem, immI0 zero) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10647 predicate(n->as_StoreVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10648 match(Set mem (StoreVector mem (ReplicateI zero)));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10649 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10650 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10651 format %{ "STX $zero,$mem\t! store zero vector (2 ints)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10652 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10653 __ stx(G0, $mem$$Address);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10654 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10655 ins_pipe(fstoreD_mem_zero);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10656 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10657
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10658 instruct storeV2F_zero(memory mem, immF0 zero) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10659 predicate(n->as_StoreVector()->memory_size() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10660 match(Set mem (StoreVector mem (ReplicateF zero)));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10661 ins_cost(MEMORY_REF_COST);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10662 size(4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10663 format %{ "STX $zero,$mem\t! store zero vector (2 floats)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10664 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10665 __ stx(G0, $mem$$Address);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10666 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10667 ins_pipe(fstoreD_mem_zero);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10668 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10669
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10670 // Replicate scalar to packed byte values into Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10671 instruct Repl8B_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10672 predicate(n->as_Vector()->length() == 8 && UseVIS >= 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10673 match(Set dst (ReplicateB src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10674 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10675 format %{ "SLLX $src,56,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10676 "SRLX $tmp, 8,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10677 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10678 "SRLX $tmp,16,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10679 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10680 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10681 "OR $tmp,$tmp2,$tmp\t! replicate8B\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10682 "MOVXTOD $tmp,$dst\t! MoveL2D" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10683 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10684 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10685 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10686 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10687 __ sllx(Rsrc, 56, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10688 __ srlx(Rtmp, 8, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10689 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10690 __ srlx(Rtmp, 16, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10691 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10692 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10693 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10694 __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10695 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10696 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10697 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10698
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10699 // Replicate scalar to packed byte values into Double stack
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10700 instruct Repl8B_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10701 predicate(n->as_Vector()->length() == 8 && UseVIS < 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10702 match(Set dst (ReplicateB src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10703 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10704 format %{ "SLLX $src,56,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10705 "SRLX $tmp, 8,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10706 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10707 "SRLX $tmp,16,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10708 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10709 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10710 "OR $tmp,$tmp2,$tmp\t! replicate8B\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10711 "STX $tmp,$dst\t! regL to stkD" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10712 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10713 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10714 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10715 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10716 __ sllx(Rsrc, 56, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10717 __ srlx(Rtmp, 8, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10718 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10719 __ srlx(Rtmp, 16, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10720 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10721 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10722 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10723 __ set ($dst$$disp + STACK_BIAS, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10724 __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10725 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10726 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10727 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10728
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10729 // Replicate scalar constant to packed byte values in Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10730 instruct Repl8B_immI(regD dst, immI13 con, o7RegI tmp) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10731 predicate(n->as_Vector()->length() == 8);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10732 match(Set dst (ReplicateB con));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10733 effect(KILL tmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10734 format %{ "LDDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl8B($con)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10735 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10736 // XXX This is a quick fix for 6833573.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10737 //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 8, 1)), $dst$$FloatRegister);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10738 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 8, 1)), $tmp$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10739 __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10740 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10741 ins_pipe(loadConFD);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10742 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10743
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10744 // Replicate scalar to packed char/short values into Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10745 instruct Repl4S_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10746 predicate(n->as_Vector()->length() == 4 && UseVIS >= 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10747 match(Set dst (ReplicateS src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10748 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10749 format %{ "SLLX $src,48,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10750 "SRLX $tmp,16,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10751 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10752 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10753 "OR $tmp,$tmp2,$tmp\t! replicate4S\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10754 "MOVXTOD $tmp,$dst\t! MoveL2D" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10755 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10756 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10757 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10758 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10759 __ sllx(Rsrc, 48, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10760 __ srlx(Rtmp, 16, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10761 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10762 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10763 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10764 __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10765 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10766 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10767 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10768
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10769 // Replicate scalar to packed char/short values into Double stack
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10770 instruct Repl4S_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10771 predicate(n->as_Vector()->length() == 4 && UseVIS < 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10772 match(Set dst (ReplicateS src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10773 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10774 format %{ "SLLX $src,48,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10775 "SRLX $tmp,16,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10776 "OR $tmp,$tmp2,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10777 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10778 "OR $tmp,$tmp2,$tmp\t! replicate4S\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10779 "STX $tmp,$dst\t! regL to stkD" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10780 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10781 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10782 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10783 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10784 __ sllx(Rsrc, 48, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10785 __ srlx(Rtmp, 16, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10786 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10787 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10788 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10789 __ set ($dst$$disp + STACK_BIAS, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10790 __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10791 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10792 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10793 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10794
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10795 // Replicate scalar constant to packed char/short values in Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10796 instruct Repl4S_immI(regD dst, immI con, o7RegI tmp) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10797 predicate(n->as_Vector()->length() == 4);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10798 match(Set dst (ReplicateS con));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10799 effect(KILL tmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10800 format %{ "LDDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl4S($con)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10801 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10802 // XXX This is a quick fix for 6833573.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10803 //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 4, 2)), $dst$$FloatRegister);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10804 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 4, 2)), $tmp$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10805 __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10806 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10807 ins_pipe(loadConFD);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10808 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10809
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10810 // Replicate scalar to packed int values into Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10811 instruct Repl2I_reg(regD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10812 predicate(n->as_Vector()->length() == 2 && UseVIS >= 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10813 match(Set dst (ReplicateI src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10814 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10815 format %{ "SLLX $src,32,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10816 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10817 "OR $tmp,$tmp2,$tmp\t! replicate2I\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10818 "MOVXTOD $tmp,$dst\t! MoveL2D" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10819 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10820 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10821 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10822 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10823 __ sllx(Rsrc, 32, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10824 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10825 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10826 __ movxtod(Rtmp, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10827 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10828 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10829 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10830
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10831 // Replicate scalar to packed int values into Double stack
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10832 instruct Repl2I_stk(stackSlotD dst, iRegI src, iRegL tmp, o7RegL tmp2) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10833 predicate(n->as_Vector()->length() == 2 && UseVIS < 3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10834 match(Set dst (ReplicateI src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10835 effect(DEF dst, USE src, TEMP tmp, KILL tmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10836 format %{ "SLLX $src,32,$tmp\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10837 "SRLX $tmp,32,$tmp2\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10838 "OR $tmp,$tmp2,$tmp\t! replicate2I\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10839 "STX $tmp,$dst\t! regL to stkD" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10840 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10841 Register Rsrc = $src$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10842 Register Rtmp = $tmp$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10843 Register Rtmp2 = $tmp2$$Register;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10844 __ sllx(Rsrc, 32, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10845 __ srlx(Rtmp, 32, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10846 __ or3 (Rtmp, Rtmp2, Rtmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10847 __ set ($dst$$disp + STACK_BIAS, Rtmp2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10848 __ stx (Rtmp, Rtmp2, $dst$$base$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10849 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10850 ins_pipe(ialu_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10851 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10852
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10853 // Replicate scalar zero constant to packed int values in Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10854 instruct Repl2I_immI(regD dst, immI con, o7RegI tmp) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10855 predicate(n->as_Vector()->length() == 2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10856 match(Set dst (ReplicateI con));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10857 effect(KILL tmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10858 format %{ "LDDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl2I($con)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10859 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10860 // XXX This is a quick fix for 6833573.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10861 //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immI($con$$constant, 2, 4)), $dst$$FloatRegister);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10862 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immI($con$$constant, 2, 4)), $tmp$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10863 __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10864 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10865 ins_pipe(loadConFD);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10866 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10867
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10868 // Replicate scalar to packed float values into Double stack
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10869 instruct Repl2F_stk(stackSlotD dst, regF src) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10870 predicate(n->as_Vector()->length() == 2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10871 match(Set dst (ReplicateF src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10872 ins_cost(MEMORY_REF_COST*2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10873 format %{ "STF $src,$dst.hi\t! packed2F\n\t"
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10874 "STF $src,$dst.lo" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10875 opcode(Assembler::stf_op3);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10876 ins_encode(simple_form3_mem_reg(dst, src), form3_mem_plus_4_reg(dst, src));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10877 ins_pipe(fstoreF_stk_reg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10878 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10879
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10880 // Replicate scalar zero constant to packed float values in Double register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10881 instruct Repl2F_immF(regD dst, immF con, o7RegI tmp) %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10882 predicate(n->as_Vector()->length() == 2);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10883 match(Set dst (ReplicateF con));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10884 effect(KILL tmp);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10885 format %{ "LDDF [$constanttablebase + $constantoffset],$dst\t! load from constant table: Repl2F($con)" %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10886 ins_encode %{
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10887 // XXX This is a quick fix for 6833573.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10888 //__ ldf(FloatRegisterImpl::D, $constanttablebase, $constantoffset(replicate_immF($con$$constant)), $dst$$FloatRegister);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10889 RegisterOrConstant con_offset = __ ensure_simm13_or_reg($constantoffset(replicate_immF($con$$constant)), $tmp$$Register);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10890 __ ldf(FloatRegisterImpl::D, $constanttablebase, con_offset, as_DoubleFloatRegister($dst$$reg));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10891 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10892 ins_pipe(loadConFD);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10893 %}
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 6143
diff changeset
10894
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10895 //----------PEEPHOLE RULES-----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10896 // These must follow all instruction definitions as they use the names
a61af66fc99e Initial load
duke
parents:
diff changeset
10897 // defined in the instructions definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
10898 //
605
98cb887364d3 6810672: Comment typos
twisti
parents: 558
diff changeset
10899 // peepmatch ( root_instr_name [preceding_instruction]* );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
10900 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10901 // peepconstraint %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10902 // (instruction_number.operand_name relational_op instruction_number.operand_name
a61af66fc99e Initial load
duke
parents:
diff changeset
10903 // [, ...] );
a61af66fc99e Initial load
duke
parents:
diff changeset
10904 // // instruction numbers are zero-based using left to right order in peepmatch
a61af66fc99e Initial load
duke
parents:
diff changeset
10905 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10906 // peepreplace ( instr_name ( [instruction_number.operand_name]* ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
10907 // // provide an instruction_number.operand_name for each operand that appears
a61af66fc99e Initial load
duke
parents:
diff changeset
10908 // // in the replacement instruction's match rule
a61af66fc99e Initial load
duke
parents:
diff changeset
10909 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10910 // ---------VM FLAGS---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10911 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10912 // All peephole optimizations can be turned off using -XX:-OptoPeephole
a61af66fc99e Initial load
duke
parents:
diff changeset
10913 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10914 // Each peephole rule is given an identifying number starting with zero and
a61af66fc99e Initial load
duke
parents:
diff changeset
10915 // increasing by one in the order seen by the parser. An individual peephole
a61af66fc99e Initial load
duke
parents:
diff changeset
10916 // can be enabled, and all others disabled, by using -XX:OptoPeepholeAt=#
a61af66fc99e Initial load
duke
parents:
diff changeset
10917 // on the command-line.
a61af66fc99e Initial load
duke
parents:
diff changeset
10918 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10919 // ---------CURRENT LIMITATIONS----------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10920 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10921 // Only match adjacent instructions in same basic block
a61af66fc99e Initial load
duke
parents:
diff changeset
10922 // Only equality constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
10923 // Only constraints between operands, not (0.dest_reg == EAX_enc)
a61af66fc99e Initial load
duke
parents:
diff changeset
10924 // Only one replacement instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
10925 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10926 // ---------EXAMPLE----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10927 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10928 // // pertinent parts of existing instructions in architecture description
a61af66fc99e Initial load
duke
parents:
diff changeset
10929 // instruct movI(eRegI dst, eRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10930 // match(Set dst (CopyI src));
a61af66fc99e Initial load
duke
parents:
diff changeset
10931 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10932 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10933 // instruct incI_eReg(eRegI dst, immI1 src, eFlagsReg cr) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10934 // match(Set dst (AddI dst src));
a61af66fc99e Initial load
duke
parents:
diff changeset
10935 // effect(KILL cr);
a61af66fc99e Initial load
duke
parents:
diff changeset
10936 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10937 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10938 // // Change (inc mov) to lea
a61af66fc99e Initial load
duke
parents:
diff changeset
10939 // peephole %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10940 // // increment preceeded by register-register move
a61af66fc99e Initial load
duke
parents:
diff changeset
10941 // peepmatch ( incI_eReg movI );
a61af66fc99e Initial load
duke
parents:
diff changeset
10942 // // require that the destination register of the increment
a61af66fc99e Initial load
duke
parents:
diff changeset
10943 // // match the destination register of the move
a61af66fc99e Initial load
duke
parents:
diff changeset
10944 // peepconstraint ( 0.dst == 1.dst );
a61af66fc99e Initial load
duke
parents:
diff changeset
10945 // // construct a replacement instruction that sets
a61af66fc99e Initial load
duke
parents:
diff changeset
10946 // // the destination to ( move's source register + one )
a61af66fc99e Initial load
duke
parents:
diff changeset
10947 // peepreplace ( incI_eReg_immI1( 0.dst 1.src 0.src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
10948 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10949 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10950
a61af66fc99e Initial load
duke
parents:
diff changeset
10951 // // Change load of spilled value to only a spill
a61af66fc99e Initial load
duke
parents:
diff changeset
10952 // instruct storeI(memory mem, eRegI src) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10953 // match(Set mem (StoreI mem src));
a61af66fc99e Initial load
duke
parents:
diff changeset
10954 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10955 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10956 // instruct loadI(eRegI dst, memory mem) %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10957 // match(Set dst (LoadI mem));
a61af66fc99e Initial load
duke
parents:
diff changeset
10958 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10959 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10960 // peephole %{
a61af66fc99e Initial load
duke
parents:
diff changeset
10961 // peepmatch ( loadI storeI );
a61af66fc99e Initial load
duke
parents:
diff changeset
10962 // peepconstraint ( 1.src == 0.dst, 1.mem == 0.mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
10963 // peepreplace ( storeI( 1.mem 1.mem 1.src ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
10964 // %}
a61af66fc99e Initial load
duke
parents:
diff changeset
10965
a61af66fc99e Initial load
duke
parents:
diff changeset
10966 //----------SMARTSPILL RULES---------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10967 // These must follow all instruction definitions as they use the names
a61af66fc99e Initial load
duke
parents:
diff changeset
10968 // defined in the instructions definitions.
a61af66fc99e Initial load
duke
parents:
diff changeset
10969 //
a61af66fc99e Initial load
duke
parents:
diff changeset
10970 // SPARC will probably not have any of these rules due to RISC instruction set.
a61af66fc99e Initial load
duke
parents:
diff changeset
10971
a61af66fc99e Initial load
duke
parents:
diff changeset
10972 //----------PIPELINE-----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
10973 // Rules which define the behavior of the target architectures pipeline.