annotate src/cpu/sparc/vm/assembler_sparc.cpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children b130b98db9cf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_assembler_sparc.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Implementation of Address
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 Address::Address( addr_type t, int which ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 switch (t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 case extra_in_argument:
a61af66fc99e Initial load
duke
parents:
diff changeset
33 case extra_out_argument:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 _base = t == extra_in_argument ? FP : SP;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _hi = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Warning: In LP64 mode, _disp will occupy more than 10 bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // This is inconsistent with the other constructors but op
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // codes such as ld or ldx, only access disp() to get their
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // simm13 argument.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _disp = ((which - Argument::n_register_parameters + frame::memory_parameter_word_sp_offset) * BytesPerWord) + STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static const char* argumentNames[][2] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 {"A0","P0"}, {"A1","P1"}, {"A2","P2"}, {"A3","P3"}, {"A4","P4"},
a61af66fc99e Initial load
duke
parents:
diff changeset
50 {"A5","P5"}, {"A6","P6"}, {"A7","P7"}, {"A8","P8"}, {"A9","P9"},
a61af66fc99e Initial load
duke
parents:
diff changeset
51 {"A(n>9)","P(n>9)"}
a61af66fc99e Initial load
duke
parents:
diff changeset
52 };
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 const char* Argument::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 int nofArgs = sizeof argumentNames / sizeof argumentNames[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int num = number();
a61af66fc99e Initial load
duke
parents:
diff changeset
57 if (num >= nofArgs) num = nofArgs - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 return argumentNames[num][is_in() ? 1 : 0];
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void Assembler::print_instruction(int inst) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 const char* s;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 switch (inv_op(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 default: s = "????"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 case call_op: s = "call"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 case branch_op:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 switch (inv_op2(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 case bpr_op2: s = "bpr"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 case fb_op2: s = "fb"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 case fbp_op2: s = "fbp"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 case br_op2: s = "br"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 case bp_op2: s = "bp"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 case cb_op2: s = "cb"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 default: s = "????"; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ::tty->print("%s", s);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Patch instruction inst at offset inst_pos to refer to dest_pos
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // and return the resulting instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // We should have pcs, not offsets, but since all is relative, it will work out
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // OK.
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int Assembler::patched_branch(int dest_pos, int inst, int inst_pos) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int m; // mask for displacement field
a61af66fc99e Initial load
duke
parents:
diff changeset
88 int v; // new value for displacement field
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const int word_aligned_ones = -4;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 switch (inv_op(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 case call_op: m = wdisp(word_aligned_ones, 0, 30); v = wdisp(dest_pos, inst_pos, 30); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 case branch_op:
a61af66fc99e Initial load
duke
parents:
diff changeset
94 switch (inv_op2(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 case bpr_op2: m = wdisp16(word_aligned_ones, 0); v = wdisp16(dest_pos, inst_pos); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 case fbp_op2: m = wdisp( word_aligned_ones, 0, 19); v = wdisp( dest_pos, inst_pos, 19); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 case bp_op2: m = wdisp( word_aligned_ones, 0, 19); v = wdisp( dest_pos, inst_pos, 19); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 case fb_op2: m = wdisp( word_aligned_ones, 0, 22); v = wdisp( dest_pos, inst_pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 case br_op2: m = wdisp( word_aligned_ones, 0, 22); v = wdisp( dest_pos, inst_pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 case cb_op2: m = wdisp( word_aligned_ones, 0, 22); v = wdisp( dest_pos, inst_pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return inst & ~m | v;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Return the offset of the branch destionation of instruction inst
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // at offset pos.
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Should have pcs, but since all is relative, it works out.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 int Assembler::branch_destination(int inst, int pos) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 int r;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 switch (inv_op(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 case call_op: r = inv_wdisp(inst, pos, 30); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 case branch_op:
a61af66fc99e Initial load
duke
parents:
diff changeset
116 switch (inv_op2(inst)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case bpr_op2: r = inv_wdisp16(inst, pos); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 case fbp_op2: r = inv_wdisp( inst, pos, 19); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 case bp_op2: r = inv_wdisp( inst, pos, 19); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 case fb_op2: r = inv_wdisp( inst, pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 case br_op2: r = inv_wdisp( inst, pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 case cb_op2: r = inv_wdisp( inst, pos, 22); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 return r;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int AbstractAssembler::code_fill_byte() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return 0x00; // illegal instruction 0x00000000
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Generate a bunch 'o stuff (including v9's
a61af66fc99e Initial load
duke
parents:
diff changeset
134 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void Assembler::test_v9() {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 add( G0, G1, G2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
137 add( G3, 0, G4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 addcc( G5, G6, G7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
140 addcc( I0, 1, I1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
141 addc( I2, I3, I4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
142 addc( I5, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
143 addccc( I7, L0, L1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
144 addccc( L2, (1 << 12) - 2, L3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 Label lbl1, lbl2, lbl3;
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 bind(lbl1);
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 bpr( rc_z, true, pn, L4, pc(), relocInfo::oop_type );
a61af66fc99e Initial load
duke
parents:
diff changeset
151 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 bpr( rc_lez, false, pt, L5, lbl1);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 fb( f_never, true, pc() + 4, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
157 fb( f_notEqual, false, lbl2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
158 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 fbp( f_notZero, true, fcc0, pn, pc() - 4, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 fbp( f_lessOrGreater, false, fcc1, pt, lbl3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
163 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 br( equal, true, pc() + 1024, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
167 br( lessEqual, false, lbl1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
168 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 br( never, false, lbl1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
170 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 bp( less, true, icc, pn, pc(), relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 bp( lessEqualUnsigned, false, xcc, pt, lbl2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
175 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 call( pc(), relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 call( lbl3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
180 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 casa( L6, L7, O0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
184 casxa( O1, O2, O3, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 udiv( O4, O5, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
187 udiv( G0, (1 << 12) - 1, G1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
188 sdiv( G1, G2, G3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
189 sdiv( G4, -((1 << 12) - 1), G5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
190 udivcc( G6, G7, I0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
191 udivcc( I1, -((1 << 12) - 2), I2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
192 sdivcc( I3, I4, I5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
193 sdivcc( I6, -((1 << 12) - 0), I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 done();
a61af66fc99e Initial load
duke
parents:
diff changeset
196 retry();
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 fadd( FloatRegisterImpl::S, F0, F1, F2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
199 fsub( FloatRegisterImpl::D, F34, F0, F62 );
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 fcmp( FloatRegisterImpl::Q, fcc0, F0, F60);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 fcmpe( FloatRegisterImpl::S, fcc1, F31, F30);
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 ftox( FloatRegisterImpl::D, F2, F4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
205 ftoi( FloatRegisterImpl::Q, F4, F8 );
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 ftof( FloatRegisterImpl::S, FloatRegisterImpl::Q, F3, F12 );
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 fxtof( FloatRegisterImpl::S, F4, F5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
210 fitof( FloatRegisterImpl::D, F6, F8 );
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 fmov( FloatRegisterImpl::Q, F16, F20 );
a61af66fc99e Initial load
duke
parents:
diff changeset
213 fneg( FloatRegisterImpl::S, F6, F7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
214 fabs( FloatRegisterImpl::D, F10, F12 );
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 fmul( FloatRegisterImpl::Q, F24, F28, F32 );
a61af66fc99e Initial load
duke
parents:
diff changeset
217 fmul( FloatRegisterImpl::S, FloatRegisterImpl::D, F8, F9, F14 );
a61af66fc99e Initial load
duke
parents:
diff changeset
218 fdiv( FloatRegisterImpl::S, F10, F11, F12 );
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 fsqrt( FloatRegisterImpl::S, F13, F14 );
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 flush( L0, L1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
223 flush( L2, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 flushw();
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 illtrap( (1 << 22) - 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 impdep1( 17, (1 << 19) - 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
230 impdep2( 3, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 jmpl( L3, L4, L5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
233 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 jmpl( L6, -1, L7, Relocation::spec_simple(relocInfo::none));
a61af66fc99e Initial load
duke
parents:
diff changeset
235 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 ldf( FloatRegisterImpl::S, O0, O1, F15 );
a61af66fc99e Initial load
duke
parents:
diff changeset
239 ldf( FloatRegisterImpl::D, O2, -1, F14 );
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 ldfsr( O3, O4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
243 ldfsr( O5, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
244 ldxfsr( O6, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
245 ldxfsr( I0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 ldfa( FloatRegisterImpl::D, I1, I2, 1, F16 );
a61af66fc99e Initial load
duke
parents:
diff changeset
248 ldfa( FloatRegisterImpl::Q, I3, -1, F36 );
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 ldsb( I4, I5, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
251 ldsb( I7, -1, G0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
252 ldsh( G1, G3, G4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
253 ldsh( G5, -1, G6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
254 ldsw( G7, L0, L1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
255 ldsw( L2, -1, L3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
256 ldub( L4, L5, L6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
257 ldub( L7, -1, O0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
258 lduh( O1, O2, O3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
259 lduh( O4, -1, O5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
260 lduw( O6, O7, G0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
261 lduw( G1, -1, G2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
262 ldx( G3, G4, G5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
263 ldx( G6, -1, G7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
264 ldd( I0, I1, I2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
265 ldd( I3, -1, I4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 ldsba( I5, I6, 2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
268 ldsba( L0, -1, L1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
269 ldsha( L2, L3, 3, L4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
270 ldsha( L5, -1, L6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
271 ldswa( L7, O0, (1 << 8) - 1, O1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
272 ldswa( O2, -1, O3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
273 lduba( O4, O5, 0, O6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
274 lduba( O7, -1, I0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
275 lduha( I1, I2, 1, I3 );
a61af66fc99e Initial load
duke
parents:
diff changeset
276 lduha( I4, -1, I5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
277 lduwa( I6, I7, 2, L0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
278 lduwa( L1, -1, L2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
279 ldxa( L3, L4, 3, L5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
280 ldxa( L6, -1, L7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
281 ldda( G0, G1, 4, G2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
282 ldda( G3, -1, G4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 ldstub( G5, G6, G7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
285 ldstub( O0, -1, O1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 ldstuba( O2, O3, 5, O4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
288 ldstuba( O5, -1, O6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 and3( I0, L0, O0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
291 and3( G7, -1, O7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
292 andcc( L2, I2, G2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
293 andcc( L4, -1, G4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
294 andn( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
295 andn( I6, -1, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
296 andncc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
297 andncc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
298 or3( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
299 or3( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
300 orcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
301 orcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
302 orn( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
303 orn( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
304 orncc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
305 orncc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
306 xor3( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
307 xor3( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
308 xorcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
309 xorcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
310 xnor( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
311 xnor( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
312 xnorcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
313 xnorcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 membar( Membar_mask_bits(StoreStore | LoadStore | StoreLoad | LoadLoad | Sync | MemIssue | Lookaside ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
316 membar( StoreStore );
a61af66fc99e Initial load
duke
parents:
diff changeset
317 membar( LoadStore );
a61af66fc99e Initial load
duke
parents:
diff changeset
318 membar( StoreLoad );
a61af66fc99e Initial load
duke
parents:
diff changeset
319 membar( LoadLoad );
a61af66fc99e Initial load
duke
parents:
diff changeset
320 membar( Sync );
a61af66fc99e Initial load
duke
parents:
diff changeset
321 membar( MemIssue );
a61af66fc99e Initial load
duke
parents:
diff changeset
322 membar( Lookaside );
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 fmov( FloatRegisterImpl::S, f_ordered, true, fcc2, F16, F17 );
a61af66fc99e Initial load
duke
parents:
diff changeset
325 fmov( FloatRegisterImpl::D, rc_lz, L5, F18, F20 );
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 movcc( overflowClear, false, icc, I6, L4 );
a61af66fc99e Initial load
duke
parents:
diff changeset
328 movcc( f_unorderedOrEqual, true, fcc2, (1 << 10) - 1, O0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 movr( rc_nz, I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
331 movr( rc_gz, L1, -1, L2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 mulx( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
334 mulx( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
335 sdivx( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
336 sdivx( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
337 udivx( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
338 udivx( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 umul( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
341 umul( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
342 smul( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
343 smul( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
344 umulcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
345 umulcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
346 smulcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
347 smulcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 mulscc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
350 mulscc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 popc( G0, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 popc( -1, G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 prefetch( L1, L2, severalReads );
a61af66fc99e Initial load
duke
parents:
diff changeset
359 prefetch( L3, -1, oneRead );
a61af66fc99e Initial load
duke
parents:
diff changeset
360 prefetcha( O3, O2, 6, severalWritesAndPossiblyReads );
a61af66fc99e Initial load
duke
parents:
diff changeset
361 prefetcha( G2, -1, oneWrite );
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 rett( I7, I7);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
365 rett( G0, -1, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 save( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
369 save( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
370 restore( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
371 restore( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 saved();
a61af66fc99e Initial load
duke
parents:
diff changeset
374 restored();
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 sethi( 0xaaaaaaaa, I3, Relocation::spec_simple(relocInfo::none));
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 sll( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
379 sll( I7, 31, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
380 srl( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
381 srl( I7, 0, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
382 sra( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
383 sra( I7, 30, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
384 sllx( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
385 sllx( I7, 63, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
386 srlx( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
387 srlx( I7, 0, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
388 srax( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
389 srax( I7, 62, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 sir( -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 stbar();
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 stf( FloatRegisterImpl::Q, F40, G0, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
396 stf( FloatRegisterImpl::S, F18, I3, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 stfsr( L1, L2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
399 stfsr( I7, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
400 stxfsr( I6, I5 );
a61af66fc99e Initial load
duke
parents:
diff changeset
401 stxfsr( L4, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 stfa( FloatRegisterImpl::D, F22, I6, I7, 7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
404 stfa( FloatRegisterImpl::Q, F44, G0, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 stb( L5, O2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
407 stb( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
408 sth( L5, O2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
409 sth( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
410 stw( L5, O2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
411 stw( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
412 stx( L5, O2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
413 stx( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
414 std( L5, O2, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
415 std( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 stba( L5, O2, I7, 8 );
a61af66fc99e Initial load
duke
parents:
diff changeset
418 stba( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
419 stha( L5, O2, I7, 9 );
a61af66fc99e Initial load
duke
parents:
diff changeset
420 stha( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
421 stwa( L5, O2, I7, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
422 stwa( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
423 stxa( L5, O2, I7, 11 );
a61af66fc99e Initial load
duke
parents:
diff changeset
424 stxa( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
425 stda( L5, O2, I7, 12 );
a61af66fc99e Initial load
duke
parents:
diff changeset
426 stda( I7, I6, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 sub( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
429 sub( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
430 subcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
431 subcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
432 subc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
433 subc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
434 subccc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
435 subccc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 swap( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
438 swap( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 swapa( G0, G1, 13, G2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
441 swapa( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 taddcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
444 taddcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
445 taddcctv( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
446 taddcctv( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 tsubcc( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
449 tsubcc( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
450 tsubcctv( I5, I6, I7 );
a61af66fc99e Initial load
duke
parents:
diff changeset
451 tsubcctv( I7, -1, I6 );
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 trap( overflowClear, xcc, G0, G1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
454 trap( lessEqual, icc, I7, 17 );
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 bind(lbl2);
a61af66fc99e Initial load
duke
parents:
diff changeset
457 bind(lbl3);
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 code()->decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Generate a bunch 'o stuff unique to V8
a61af66fc99e Initial load
duke
parents:
diff changeset
463 void Assembler::test_v8_onlys() {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 Label lbl1;
a61af66fc99e Initial load
duke
parents:
diff changeset
465
a61af66fc99e Initial load
duke
parents:
diff changeset
466 cb( cp_0or1or2, false, pc() - 4, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
467 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 cb( cp_never, true, lbl1);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 cpop1(1, 2, 3, 4);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 cpop2(5, 6, 7, 8);
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 ldc( I0, I1, 31);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 ldc( I2, -1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
476
a61af66fc99e Initial load
duke
parents:
diff changeset
477 lddc( I4, I4, 30);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 lddc( I6, 0, 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 ldcsr( L0, L1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
481 ldcsr( L1, (1 << 12) - 1, 17 );
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 stc( 31, L4, L5);
a61af66fc99e Initial load
duke
parents:
diff changeset
484 stc( 30, L6, -(1 << 12) );
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 stdc( 0, L7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
487 stdc( 1, G1, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 stcsr( 16, G2, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
490 stcsr( 17, G4, 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 stdcq( 4, G5, G6);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 stdcq( 5, G7, -1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 bind(lbl1);
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 code()->decode();
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // Implementation of MacroAssembler
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 void MacroAssembler::null_check(Register reg, int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if (needs_explicit_null_check((intptr_t)offset)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // provoke OS NULL exception if reg = NULL by
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // accessing M[reg] w/o changing any registers
a61af66fc99e Initial load
duke
parents:
diff changeset
507 ld_ptr(reg, 0, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // nothing to do, (later) access of M[reg + offset]
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // will provoke OS NULL exception if reg = NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // Ring buffer jumps
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
518 void MacroAssembler::ret( bool trace ) { if (trace) {
a61af66fc99e Initial load
duke
parents:
diff changeset
519 mov(I7, O7); // traceable register
a61af66fc99e Initial load
duke
parents:
diff changeset
520 JMP(O7, 2 * BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
521 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
522 jmpl( I7, 2 * BytesPerInstWord, G0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 void MacroAssembler::retl( bool trace ) { if (trace) JMP(O7, 2 * BytesPerInstWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
527 else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
a61af66fc99e Initial load
duke
parents:
diff changeset
528 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 void MacroAssembler::jmp2(Register r1, Register r2, const char* file, int line ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // This can only be traceable if r1 & r2 are visible after a window save
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
536 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
537 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
538 ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
540 sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
541 add(O2, O1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
542
a61af66fc99e Initial load
duke
parents:
diff changeset
543 add(r1->after_save(), r2->after_save(), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
544 set((intptr_t)file, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
545 set(line, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
546 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // get nearby pc, store jmp target
a61af66fc99e Initial load
duke
parents:
diff changeset
548 call(L, relocInfo::none); // No relocation for call to pc+0x8
a61af66fc99e Initial load
duke
parents:
diff changeset
549 delayed()->st(O2, O1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
550 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // store nearby pc
a61af66fc99e Initial load
duke
parents:
diff changeset
553 st(O7, O1, sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // store file
a61af66fc99e Initial load
duke
parents:
diff changeset
555 st(O3, O1, 2*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // store line
a61af66fc99e Initial load
duke
parents:
diff changeset
557 st(O4, O1, 3*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
558 add(O0, 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
559 and3(O0, JavaThread::jump_ring_buffer_size - 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
560 st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
561 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564 jmpl(r1, r2, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 void MacroAssembler::jmp(Register r1, int offset, const char* file, int line ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
567 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
568 // This can only be traceable if r1 is visible after a window save
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
571 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
573 ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
574 add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
575 sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
576 add(O2, O1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 add(r1->after_save(), offset, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
579 set((intptr_t)file, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 set(line, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 // get nearby pc, store jmp target
a61af66fc99e Initial load
duke
parents:
diff changeset
583 call(L, relocInfo::none); // No relocation for call to pc+0x8
a61af66fc99e Initial load
duke
parents:
diff changeset
584 delayed()->st(O2, O1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // store nearby pc
a61af66fc99e Initial load
duke
parents:
diff changeset
588 st(O7, O1, sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // store file
a61af66fc99e Initial load
duke
parents:
diff changeset
590 st(O3, O1, 2*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // store line
a61af66fc99e Initial load
duke
parents:
diff changeset
592 st(O4, O1, 3*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
593 add(O0, 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 and3(O0, JavaThread::jump_ring_buffer_size - 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
596 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
597 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599 jmp(r1, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // This code sequence is relocatable to any address, even on LP64.
a61af66fc99e Initial load
duke
parents:
diff changeset
603 void MacroAssembler::jumpl( Address& a, Register d, int offset, const char* file, int line ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // Force fixed length sethi because NativeJump and NativeFarCall don't handle
a61af66fc99e Initial load
duke
parents:
diff changeset
606 // variable length instruction streams.
a61af66fc99e Initial load
duke
parents:
diff changeset
607 sethi(a, /*ForceRelocatable=*/ true);
a61af66fc99e Initial load
duke
parents:
diff changeset
608 if (TraceJumps) {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // Must do the add here so relocation can find the remainder of the
a61af66fc99e Initial load
duke
parents:
diff changeset
611 // value to be relocated.
a61af66fc99e Initial load
duke
parents:
diff changeset
612 add(a.base(), a.disp() + offset, a.base(), a.rspec(offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
613 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
615 ld(G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()), O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 add(G2_thread, in_bytes(JavaThread::jmp_ring_offset()), O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 sll(O0, exact_log2(4*sizeof(intptr_t)), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
618 add(O2, O1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 set((intptr_t)file, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
621 set(line, O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
622 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // get nearby pc, store jmp target
a61af66fc99e Initial load
duke
parents:
diff changeset
625 call(L, relocInfo::none); // No relocation for call to pc+0x8
a61af66fc99e Initial load
duke
parents:
diff changeset
626 delayed()->st(a.base()->after_save(), O1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
628
a61af66fc99e Initial load
duke
parents:
diff changeset
629 // store nearby pc
a61af66fc99e Initial load
duke
parents:
diff changeset
630 st(O7, O1, sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
631 // store file
a61af66fc99e Initial load
duke
parents:
diff changeset
632 st(O3, O1, 2*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
633 // store line
a61af66fc99e Initial load
duke
parents:
diff changeset
634 st(O4, O1, 3*sizeof(intptr_t));
a61af66fc99e Initial load
duke
parents:
diff changeset
635 add(O0, 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
636 and3(O0, JavaThread::jump_ring_buffer_size - 1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
637 st(O0, G2_thread, in_bytes(JavaThread::jmp_ring_index_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
638 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
639 jmpl(a.base(), G0, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
641 jmpl(a, d, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
643 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 jmpl(a, d, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 void MacroAssembler::jump( Address& a, int offset, const char* file, int line ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
649 jumpl( a, G0, offset, file, line );
a61af66fc99e Initial load
duke
parents:
diff changeset
650 }
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // Convert to C varargs format
a61af66fc99e Initial load
duke
parents:
diff changeset
654 void MacroAssembler::set_varargs( Argument inArg, Register d ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // spill register-resident args to their memory slots
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // (SPARC calling convention requires callers to have already preallocated these)
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // Note that the inArg might in fact be an outgoing argument,
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // if a leaf routine or stub does some tricky argument shuffling.
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // This routine must work even though one of the saved arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // is in the d register (e.g., set_varargs(Argument(0, false), O0)).
a61af66fc99e Initial load
duke
parents:
diff changeset
661 for (Argument savePtr = inArg;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 savePtr.is_register();
a61af66fc99e Initial load
duke
parents:
diff changeset
663 savePtr = savePtr.successor()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 st_ptr(savePtr.as_register(), savePtr.address_in_frame());
a61af66fc99e Initial load
duke
parents:
diff changeset
665 }
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // return the address of the first memory slot
a61af66fc99e Initial load
duke
parents:
diff changeset
667 add(inArg.address_in_frame(), d);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // Conditional breakpoint (for assertion checks in assembly code)
a61af66fc99e Initial load
duke
parents:
diff changeset
671 void MacroAssembler::breakpoint_trap(Condition c, CC cc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 trap(c, cc, G0, ST_RESERVED_FOR_USER_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // We want to use ST_BREAKPOINT here, but the debugger is confused by it.
a61af66fc99e Initial load
duke
parents:
diff changeset
676 void MacroAssembler::breakpoint_trap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 trap(ST_RESERVED_FOR_USER_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 // flush windows (except current) using flushw instruction if avail.
a61af66fc99e Initial load
duke
parents:
diff changeset
681 void MacroAssembler::flush_windows() {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 if (VM_Version::v9_instructions_work()) flushw();
a61af66fc99e Initial load
duke
parents:
diff changeset
683 else flush_windows_trap();
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // Write serialization page so VM thread can do a pseudo remote membar
a61af66fc99e Initial load
duke
parents:
diff changeset
687 // We use the current thread pointer to calculate a thread specific
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // offset to write to within the page. This minimizes bus traffic
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // due to cache line collision.
a61af66fc99e Initial load
duke
parents:
diff changeset
690 void MacroAssembler::serialize_memory(Register thread, Register tmp1, Register tmp2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
691 Address mem_serialize_page(tmp1, os::get_memory_serialize_page());
a61af66fc99e Initial load
duke
parents:
diff changeset
692 srl(thread, os::get_serialize_page_shift_count(), tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
693 if (Assembler::is_simm13(os::vm_page_size())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
694 and3(tmp2, (os::vm_page_size() - sizeof(int)), tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
697 set((os::vm_page_size() - sizeof(int)), tmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
698 and3(tmp2, tmp1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
700 load_address(mem_serialize_page);
a61af66fc99e Initial load
duke
parents:
diff changeset
701 st(G0, tmp1, tmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
702 }
a61af66fc99e Initial load
duke
parents:
diff changeset
703
a61af66fc99e Initial load
duke
parents:
diff changeset
704
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 void MacroAssembler::enter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
707 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 void MacroAssembler::leave() {
a61af66fc99e Initial load
duke
parents:
diff changeset
711 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
712 }
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 void MacroAssembler::mult(Register s1, Register s2, Register d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 if(VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 mulx (s1, s2, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
717 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 smul (s1, s2, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 void MacroAssembler::mult(Register s1, int simm13a, Register d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
723 if(VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
724 mulx (s1, simm13a, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
725 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
726 smul (s1, simm13a, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
732 void MacroAssembler::read_ccr_v8_assert(Register ccr_save) {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 const Register s1 = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
734 const Register s2 = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
735 Label get_psr_test;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // Get the condition codes the V8 way.
a61af66fc99e Initial load
duke
parents:
diff changeset
737 read_ccr_trap(s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
738 mov(ccr_save, s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
739 // This is a test of V8 which has icc but not xcc
a61af66fc99e Initial load
duke
parents:
diff changeset
740 // so mask off the xcc bits
a61af66fc99e Initial load
duke
parents:
diff changeset
741 and3(s2, 0xf, s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // Compare condition codes from the V8 and V9 ways.
a61af66fc99e Initial load
duke
parents:
diff changeset
743 subcc(s2, s1, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
744 br(Assembler::notEqual, true, Assembler::pt, get_psr_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
745 delayed()->breakpoint_trap();
a61af66fc99e Initial load
duke
parents:
diff changeset
746 bind(get_psr_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 void MacroAssembler::write_ccr_v8_assert(Register ccr_save) {
a61af66fc99e Initial load
duke
parents:
diff changeset
750 const Register s1 = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
751 const Register s2 = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 Label set_psr_test;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 // Write out the saved condition codes the V8 way
a61af66fc99e Initial load
duke
parents:
diff changeset
754 write_ccr_trap(ccr_save, s1, s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
755 // Read back the condition codes using the V9 instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
756 rdccr(s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
757 mov(ccr_save, s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // This is a test of V8 which has icc but not xcc
a61af66fc99e Initial load
duke
parents:
diff changeset
759 // so mask off the xcc bits
a61af66fc99e Initial load
duke
parents:
diff changeset
760 and3(s2, 0xf, s2);
a61af66fc99e Initial load
duke
parents:
diff changeset
761 and3(s1, 0xf, s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Compare the V8 way with the V9 way.
a61af66fc99e Initial load
duke
parents:
diff changeset
763 subcc(s2, s1, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
764 br(Assembler::notEqual, true, Assembler::pt, set_psr_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
765 delayed()->breakpoint_trap();
a61af66fc99e Initial load
duke
parents:
diff changeset
766 bind(set_psr_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
767 }
a61af66fc99e Initial load
duke
parents:
diff changeset
768 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
769 #define read_ccr_v8_assert(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
770 #define write_ccr_v8_assert(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
771 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
772
a61af66fc99e Initial load
duke
parents:
diff changeset
773 void MacroAssembler::read_ccr(Register ccr_save) {
a61af66fc99e Initial load
duke
parents:
diff changeset
774 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 rdccr(ccr_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // Test code sequence used on V8. Do not move above rdccr.
a61af66fc99e Initial load
duke
parents:
diff changeset
777 read_ccr_v8_assert(ccr_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
778 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 read_ccr_trap(ccr_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
780 }
a61af66fc99e Initial load
duke
parents:
diff changeset
781 }
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 void MacroAssembler::write_ccr(Register ccr_save) {
a61af66fc99e Initial load
duke
parents:
diff changeset
784 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
785 // Test code sequence used on V8. Do not move below wrccr.
a61af66fc99e Initial load
duke
parents:
diff changeset
786 write_ccr_v8_assert(ccr_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
787 wrccr(ccr_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
788 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 const Register temp_reg1 = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
790 const Register temp_reg2 = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 write_ccr_trap(ccr_save, temp_reg1, temp_reg2);
a61af66fc99e Initial load
duke
parents:
diff changeset
792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
793 }
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795
a61af66fc99e Initial load
duke
parents:
diff changeset
796 // Calls to C land
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
799 // a hook for debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
800 static Thread* reinitialize_thread() {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 return ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
802 }
a61af66fc99e Initial load
duke
parents:
diff changeset
803 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
804 #define reinitialize_thread ThreadLocalStorage::thread
a61af66fc99e Initial load
duke
parents:
diff changeset
805 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
808 address last_get_thread = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 // call this when G2_thread is not known to be valid
a61af66fc99e Initial load
duke
parents:
diff changeset
812 void MacroAssembler::get_thread() {
a61af66fc99e Initial load
duke
parents:
diff changeset
813 save_frame(0); // to avoid clobbering O0
a61af66fc99e Initial load
duke
parents:
diff changeset
814 mov(G1, L0); // avoid clobbering G1
a61af66fc99e Initial load
duke
parents:
diff changeset
815 mov(G5_method, L1); // avoid clobbering G5
a61af66fc99e Initial load
duke
parents:
diff changeset
816 mov(G3, L2); // avoid clobbering G3 also
a61af66fc99e Initial load
duke
parents:
diff changeset
817 mov(G4, L5); // avoid clobbering G4
a61af66fc99e Initial load
duke
parents:
diff changeset
818 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
819 Address last_get_thread_addr(L3, (address)&last_get_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 sethi(last_get_thread_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
821 inc(L4, get_pc(L4) + 2 * BytesPerInstWord); // skip getpc() code + inc + st_ptr to point L4 at call
a61af66fc99e Initial load
duke
parents:
diff changeset
822 st_ptr(L4, last_get_thread_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
823 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
824 call(CAST_FROM_FN_PTR(address, reinitialize_thread), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
825 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
826 mov(L0, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
827 mov(L1, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
828 mov(L2, G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
829 mov(L5, G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 restore(O0, 0, G2_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833 static Thread* verify_thread_subroutine(Thread* gthread_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
834 Thread* correct_value = ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
835 guarantee(gthread_value == correct_value, "G2_thread value must be the thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
836 return correct_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
838
a61af66fc99e Initial load
duke
parents:
diff changeset
839 void MacroAssembler::verify_thread() {
a61af66fc99e Initial load
duke
parents:
diff changeset
840 if (VerifyThread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // NOTE: this chops off the heads of the 64-bit O registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
842 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
843 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
844 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // make sure G2_thread contains the right value
a61af66fc99e Initial load
duke
parents:
diff changeset
846 save_frame_and_mov(0, Lmethod, Lmethod); // to avoid clobbering O0 (and propagate Lmethod for -Xprof)
a61af66fc99e Initial load
duke
parents:
diff changeset
847 mov(G1, L1); // avoid clobbering G1
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // G2 saved below
a61af66fc99e Initial load
duke
parents:
diff changeset
849 mov(G3, L3); // avoid clobbering G3
a61af66fc99e Initial load
duke
parents:
diff changeset
850 mov(G4, L4); // avoid clobbering G4
a61af66fc99e Initial load
duke
parents:
diff changeset
851 mov(G5_method, L5); // avoid clobbering G5_method
a61af66fc99e Initial load
duke
parents:
diff changeset
852 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
853 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // Save & restore possible 64-bit Long arguments in G-regs
a61af66fc99e Initial load
duke
parents:
diff changeset
855 srlx(G1,32,L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
856 srlx(G4,32,L6);
a61af66fc99e Initial load
duke
parents:
diff changeset
857 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
858 call(CAST_FROM_FN_PTR(address,verify_thread_subroutine), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
859 delayed()->mov(G2_thread, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 mov(L1, G1); // Restore G1
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // G2 restored below
a61af66fc99e Initial load
duke
parents:
diff changeset
863 mov(L3, G3); // restore G3
a61af66fc99e Initial load
duke
parents:
diff changeset
864 mov(L4, G4); // restore G4
a61af66fc99e Initial load
duke
parents:
diff changeset
865 mov(L5, G5_method); // restore G5_method
a61af66fc99e Initial load
duke
parents:
diff changeset
866 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
867 // Save & restore possible 64-bit Long arguments in G-regs
a61af66fc99e Initial load
duke
parents:
diff changeset
868 sllx(L0,32,G2); // Move old high G1 bits high in G2
a61af66fc99e Initial load
duke
parents:
diff changeset
869 sllx(G1, 0,G1); // Clear current high G1 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
870 or3 (G1,G2,G1); // Recover 64-bit G1
a61af66fc99e Initial load
duke
parents:
diff changeset
871 sllx(L6,32,G2); // Move old high G4 bits high in G2
a61af66fc99e Initial load
duke
parents:
diff changeset
872 sllx(G4, 0,G4); // Clear current high G4 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
873 or3 (G4,G2,G4); // Recover 64-bit G4
a61af66fc99e Initial load
duke
parents:
diff changeset
874 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
875 restore(O0, 0, G2_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
877 }
a61af66fc99e Initial load
duke
parents:
diff changeset
878
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880 void MacroAssembler::save_thread(const Register thread_cache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
881 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
882 if (thread_cache->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
883 assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
a61af66fc99e Initial load
duke
parents:
diff changeset
884 mov(G2_thread, thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
886 if (VerifyThread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // smash G2_thread, as if the VM were about to anyway
a61af66fc99e Initial load
duke
parents:
diff changeset
888 set(0x67676767, G2_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
891
a61af66fc99e Initial load
duke
parents:
diff changeset
892
a61af66fc99e Initial load
duke
parents:
diff changeset
893 void MacroAssembler::restore_thread(const Register thread_cache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
894 if (thread_cache->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
895 assert(thread_cache->is_local() || thread_cache->is_in(), "bad volatile");
a61af66fc99e Initial load
duke
parents:
diff changeset
896 mov(thread_cache, G2_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
897 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
898 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // do it the slow way
a61af66fc99e Initial load
duke
parents:
diff changeset
900 get_thread();
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
a61af66fc99e Initial load
duke
parents:
diff changeset
905 // %%% maybe get rid of [re]set_last_Java_frame
a61af66fc99e Initial load
duke
parents:
diff changeset
906 void MacroAssembler::set_last_Java_frame(Register last_java_sp, Register last_Java_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
907 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
908 Address flags(G2_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
909 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
910 in_bytes(JavaThread::frame_anchor_offset()) +
a61af66fc99e Initial load
duke
parents:
diff changeset
911 in_bytes(JavaFrameAnchor::flags_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
912 Address pc_addr(G2_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
913 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
914 in_bytes(JavaThread::last_Java_pc_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
915
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // Always set last_Java_pc and flags first because once last_Java_sp is visible
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // has_last_Java_frame is true and users will look at the rest of the fields.
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // (Note: flags should always be zero before we get here so doesn't need to be set.)
a61af66fc99e Initial load
duke
parents:
diff changeset
919
a61af66fc99e Initial load
duke
parents:
diff changeset
920 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
921 // Verify that flags was zeroed on return to Java
a61af66fc99e Initial load
duke
parents:
diff changeset
922 Label PcOk;
a61af66fc99e Initial load
duke
parents:
diff changeset
923 save_frame(0); // to avoid clobbering O0
a61af66fc99e Initial load
duke
parents:
diff changeset
924 ld_ptr(pc_addr, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 tst(L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
926 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
927 brx(Assembler::zero, false, Assembler::pt, PcOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
928 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
929 br(Assembler::zero, false, Assembler::pt, PcOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
930 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
931 delayed() -> nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
932 stop("last_Java_pc not zeroed before leaving Java");
a61af66fc99e Initial load
duke
parents:
diff changeset
933 bind(PcOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
934
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // Verify that flags was zeroed on return to Java
a61af66fc99e Initial load
duke
parents:
diff changeset
936 Label FlagsOk;
a61af66fc99e Initial load
duke
parents:
diff changeset
937 ld(flags, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 tst(L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 br(Assembler::zero, false, Assembler::pt, FlagsOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
940 delayed() -> restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
941 stop("flags not zeroed before leaving Java");
a61af66fc99e Initial load
duke
parents:
diff changeset
942 bind(FlagsOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
943 #endif /* ASSERT */
a61af66fc99e Initial load
duke
parents:
diff changeset
944 //
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // When returning from calling out from Java mode the frame anchor's last_Java_pc
a61af66fc99e Initial load
duke
parents:
diff changeset
946 // will always be set to NULL. It is set here so that if we are doing a call to
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // native (not VM) that we capture the known pc and don't have to rely on the
a61af66fc99e Initial load
duke
parents:
diff changeset
948 // native call having a standard frame linkage where we can find the pc.
a61af66fc99e Initial load
duke
parents:
diff changeset
949
a61af66fc99e Initial load
duke
parents:
diff changeset
950 if (last_Java_pc->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
951 st_ptr(last_Java_pc, pc_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
953
a61af66fc99e Initial load
duke
parents:
diff changeset
954 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
955 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // Make sure that we have an odd stack
a61af66fc99e Initial load
duke
parents:
diff changeset
957 Label StackOk;
a61af66fc99e Initial load
duke
parents:
diff changeset
958 andcc(last_java_sp, 0x01, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
959 br(Assembler::notZero, false, Assembler::pt, StackOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
960 delayed() -> nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
961 stop("Stack Not Biased in set_last_Java_frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
962 bind(StackOk);
a61af66fc99e Initial load
duke
parents:
diff changeset
963 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
964 assert( last_java_sp != G4_scratch, "bad register usage in set_last_Java_frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
965 add( last_java_sp, STACK_BIAS, G4_scratch );
a61af66fc99e Initial load
duke
parents:
diff changeset
966 st_ptr(G4_scratch, Address(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
967 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
968 st_ptr(last_java_sp, Address(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset())));
a61af66fc99e Initial load
duke
parents:
diff changeset
969 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
970 }
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972 void MacroAssembler::reset_last_Java_frame(void) {
a61af66fc99e Initial load
duke
parents:
diff changeset
973 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975 Address sp_addr(G2_thread, 0, in_bytes(JavaThread::last_Java_sp_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
976 Address pc_addr(G2_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
977 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
978 in_bytes(JavaThread::frame_anchor_offset()) + in_bytes(JavaFrameAnchor::last_Java_pc_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
979 Address flags(G2_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
980 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
981 in_bytes(JavaThread::frame_anchor_offset()) + in_bytes(JavaFrameAnchor::flags_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
984 // check that it WAS previously set
a61af66fc99e Initial load
duke
parents:
diff changeset
985 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
986 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
987 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
988 save_frame_and_mov(0, Lmethod, Lmethod); // Propagate Lmethod to helper frame for -Xprof
a61af66fc99e Initial load
duke
parents:
diff changeset
989 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
990 ld_ptr(sp_addr, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
991 tst(L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
992 breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
993 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
994 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996 st_ptr(G0, sp_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 // Always return last_Java_pc to zero
a61af66fc99e Initial load
duke
parents:
diff changeset
998 st_ptr(G0, pc_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // Always null flags after return to Java
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 st(G0, flags);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 void MacroAssembler::call_VM_base(
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 Register oop_result,
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 Register thread_cache,
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 Register last_java_sp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 address entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 int number_of_arguments,
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 bool check_exceptions)
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1013
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 // determine last_java_sp register
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 if (!last_java_sp->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 last_java_sp = SP;
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 // debugging support
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 assert(number_of_arguments >= 0 , "cannot have negative number of arguments");
a61af66fc99e Initial load
duke
parents:
diff changeset
1020
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // 64-bit last_java_sp is biased!
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 set_last_Java_frame(last_java_sp, noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 if (VerifyThread) mov(G2_thread, O0); // about to be smashed; pass early
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 save_thread(thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // do the call
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 call(entry_point, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 if (!VerifyThread)
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 delayed()->mov(G2_thread, O0); // pass thread as first argument
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 delayed()->nop(); // (thread already passed)
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 restore_thread(thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 reset_last_Java_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // check for pending exceptions. use Gtemp as scratch register.
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 if (check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 check_and_forward_exception(Gtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 // get oop result if there is one and reset the value in the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 if (oop_result->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 get_vm_result(oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1044
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 void MacroAssembler::check_and_forward_exception(Register scratch_reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 check_and_handle_popframe(scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 check_and_handle_earlyret(scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1051
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 Address exception_addr(G2_thread, 0, in_bytes(Thread::pending_exception_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 ld_ptr(exception_addr, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 br_null(scratch_reg,false,pt,L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 // we use O7 linkage so that forward_exception_entry has the issuing PC
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 call(StubRoutines::forward_exception_entry(), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1061
a61af66fc99e Initial load
duke
parents:
diff changeset
1062
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 void MacroAssembler::check_and_handle_popframe(Register scratch_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1065
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 void MacroAssembler::check_and_handle_earlyret(Register scratch_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1069
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 void MacroAssembler::call_VM(Register oop_result, address entry_point, int number_of_arguments, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 call_VM_base(oop_result, noreg, noreg, entry_point, number_of_arguments, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1074
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 call_VM(oop_result, entry_point, 1, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 call_VM(oop_result, entry_point, 2, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1089
a61af66fc99e Initial load
duke
parents:
diff changeset
1090
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 void MacroAssembler::call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, Register arg_3, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 call_VM(oop_result, entry_point, 3, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 // Note: The following call_VM overloadings are useful when a "save"
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // has already been performed by a stub, and the last Java frame is
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 // the previous one. In that case, last_java_sp must be passed as FP
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 // instead of SP.
a61af66fc99e Initial load
duke
parents:
diff changeset
1105
a61af66fc99e Initial load
duke
parents:
diff changeset
1106
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, int number_of_arguments, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 call_VM_base(oop_result, noreg, last_java_sp, entry_point, number_of_arguments, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1110
a61af66fc99e Initial load
duke
parents:
diff changeset
1111
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 call_VM(oop_result, last_java_sp, entry_point, 1, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1117
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 call_VM(oop_result, last_java_sp, entry_point, 2, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1125
a61af66fc99e Initial load
duke
parents:
diff changeset
1126
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 void MacroAssembler::call_VM(Register oop_result, Register last_java_sp, address entry_point, Register arg_1, Register arg_2, Register arg_3, bool check_exceptions) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 // O0 is reserved for the thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 mov(arg_1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 mov(arg_2, O2); assert(arg_2 != O1, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 mov(arg_3, O3); assert(arg_3 != O1 && arg_3 != O2, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 call_VM(oop_result, last_java_sp, entry_point, 3, check_exceptions);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1134
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 void MacroAssembler::call_VM_leaf_base(Register thread_cache, address entry_point, int number_of_arguments) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 save_thread(thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 // do the call
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 call(entry_point, relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 restore_thread(thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, int number_of_arguments) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 call_VM_leaf_base(thread_cache, entry_point, number_of_arguments);
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 mov(arg_1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 call_VM_leaf(thread_cache, entry_point, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1156
a61af66fc99e Initial load
duke
parents:
diff changeset
1157
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 mov(arg_1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 mov(arg_2, O1); assert(arg_2 != O0, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 call_VM_leaf(thread_cache, entry_point, 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1163
a61af66fc99e Initial load
duke
parents:
diff changeset
1164
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 void MacroAssembler::call_VM_leaf(Register thread_cache, address entry_point, Register arg_1, Register arg_2, Register arg_3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 mov(arg_1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 mov(arg_2, O1); assert(arg_2 != O0, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 mov(arg_3, O2); assert(arg_3 != O0 && arg_3 != O1, "smashed argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 call_VM_leaf(thread_cache, entry_point, 3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1171
a61af66fc99e Initial load
duke
parents:
diff changeset
1172
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 void MacroAssembler::get_vm_result(Register oop_result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 Address vm_result_addr(G2_thread, 0, in_bytes(JavaThread::vm_result_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 ld_ptr( vm_result_addr, oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 st_ptr(G0, vm_result_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 verify_oop(oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1180
a61af66fc99e Initial load
duke
parents:
diff changeset
1181
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 void MacroAssembler::get_vm_result_2(Register oop_result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 Address vm_result_addr_2(G2_thread, 0, in_bytes(JavaThread::vm_result_2_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 ld_ptr(vm_result_addr_2, oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 st_ptr(G0, vm_result_addr_2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 verify_oop(oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 // We require that C code which does not return a value in vm_result will
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 // leave it undisturbed.
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 void MacroAssembler::set_vm_result(Register oop_result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 Address vm_result_addr(G2_thread, 0, in_bytes(JavaThread::vm_result_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 verify_oop(oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 # ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 // Check that we are not overwriting any other oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 save_frame_and_mov(0, Lmethod, Lmethod); // Propagate Lmethod for -Xprof
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 ld_ptr(vm_result_addr, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 tst(L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 breakpoint_trap(notZero, Assembler::ptr_cc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 # endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 st_ptr(oop_result, vm_result_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1214
a61af66fc99e Initial load
duke
parents:
diff changeset
1215
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 void MacroAssembler::store_check(Register tmp, Register obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // Use two shifts to clear out those low order two bits! (Cannot opt. into 1.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1218
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 /* $$$ This stuff needs to go into one of the BarrierSet generator
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 functions. (The particular barrier sets will have to be friends of
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 MacroAssembler, I guess.) */
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 BarrierSet* bs = Universe::heap()->barrier_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 assert(bs->kind() == BarrierSet::CardTableModRef, "Wrong barrier set kind");
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 CardTableModRefBS* ct = (CardTableModRefBS*)bs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 srlx(obj, CardTableModRefBS::card_shift, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 srl(obj, CardTableModRefBS::card_shift, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 assert( tmp != obj, "need separate temp reg");
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 Address rs(tmp, (address)ct->byte_map_base);
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 load_address(rs);
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 stb(G0, rs.base(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 void MacroAssembler::store_check(Register tmp, Register obj, Register offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 store_check(tmp, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 // %%% Note: The following six instructions have been moved,
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 // unchanged, from assembler_sparc.inline.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 // They will be refactored at a later date.
a61af66fc99e Initial load
duke
parents:
diff changeset
1244
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 void MacroAssembler::sethi(intptr_t imm22a,
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 Register d,
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 bool ForceRelocatable,
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 RelocationHolder const& rspec) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 Address adr( d, (address)imm22a, rspec );
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 MacroAssembler::sethi( adr, ForceRelocatable );
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1252
a61af66fc99e Initial load
duke
parents:
diff changeset
1253
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 void MacroAssembler::sethi(Address& a, bool ForceRelocatable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 address save_pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 int shiftcnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 // if addr of local, do not need to load it
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 assert(a.base() != FP && a.base() != SP, "just use ld or st for locals");
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 # ifdef CHECK_DELAY
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 assert_not_delayed( (char *)"cannot put two instructions in delay slot" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 # endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 v9_dep();
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 // ForceRelocatable = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 save_pc = pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 if (a.hi32() == 0 && a.low32() >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 Assembler::sethi(a.low32(), a.base(), a.rspec());
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 else if (a.hi32() == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 Assembler::sethi(~a.low32(), a.base(), a.rspec());
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 xor3(a.base(), ~low10(~0), a.base());
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 Assembler::sethi(a.hi32(), a.base(), a.rspec() ); // 22
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 if ( a.hi32() & 0x3ff ) // Any bits?
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 or3( a.base(), a.hi32() & 0x3ff ,a.base() ); // High 32 bits are now in low 32
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 if ( a.low32() & 0xFFFFFC00 ) { // done?
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 if( (a.low32() >> 20) & 0xfff ) { // Any bits set?
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 sllx(a.base(), 12, a.base()); // Make room for next 12 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 or3( a.base(), (a.low32() >> 20) & 0xfff,a.base() ); // Or in next 12
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 shiftcnt = 0; // We already shifted
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 shiftcnt = 12;
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 if( (a.low32() >> 10) & 0x3ff ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 sllx(a.base(), shiftcnt+10, a.base());// Make room for last 10 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 or3( a.base(), (a.low32() >> 10) & 0x3ff,a.base() ); // Or in next 10
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 shiftcnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 shiftcnt = 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 sllx(a.base(), shiftcnt+10 , a.base()); // Shift leaving disp field 0'd
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 sllx( a.base(), 32, a.base() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 // Pad out the instruction sequence so it can be
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 // patched later.
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 if ( ForceRelocatable || (a.rtype() != relocInfo::none &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 a.rtype() != relocInfo::runtime_call_type) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 while ( pc() < (save_pc + (7 * BytesPerInstWord )) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 Assembler::sethi(a.hi(), a.base(), a.rspec());
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1307
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1309
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 int MacroAssembler::size_of_sethi(address a, bool worst_case) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 if (worst_case) return 7;
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 intptr_t iaddr = (intptr_t)a;
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 int hi32 = (int)(iaddr >> 32);
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 int lo32 = (int)(iaddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 int inst_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 if (hi32 == 0 && lo32 >= 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 inst_count = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 else if (hi32 == -1)
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 inst_count = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 inst_count = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 if ( hi32 & 0x3ff )
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 inst_count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 if ( lo32 & 0xFFFFFC00 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 if( (lo32 >> 20) & 0xfff ) inst_count += 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 if( (lo32 >> 10) & 0x3ff ) inst_count += 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 return BytesPerInstWord * inst_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 return BytesPerInstWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1335
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 int MacroAssembler::worst_case_size_of_set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 return size_of_sethi(NULL, true) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1339
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 void MacroAssembler::set(intptr_t value, Register d,
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 RelocationHolder const& rspec) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 Address val( d, (address)value, rspec);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 if ( rspec.type() == relocInfo::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 // can optimize
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 if (-4096 <= value && value <= 4095) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 or3(G0, value, d); // setsw (this leaves upper 32 bits sign-extended)
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 if (inv_hi22(hi22(value)) == value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 sethi(val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 assert_not_delayed( (char *)"cannot put two instructions in delay slot" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 sethi( val );
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 if (rspec.type() != relocInfo::none || (value & 0x3ff) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 add( d, value & 0x3ff, d, rspec);
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1361
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 void MacroAssembler::setsw(int value, Register d,
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 RelocationHolder const& rspec) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 Address val( d, (address)value, rspec);
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 if ( rspec.type() == relocInfo::none ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 // can optimize
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 if (-4096 <= value && value <= 4095) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 or3(G0, value, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 if (inv_hi22(hi22(value)) == value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 sethi( val );
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 if ( value < 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 sra (d, G0, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 sethi( val );
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 add( d, value & 0x3ff, d, rspec);
a61af66fc99e Initial load
duke
parents:
diff changeset
1385
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // (A negative value could be loaded in 2 insns with sethi/xor,
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 // but it would take a more complex relocation.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 #ifndef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 if ( value < 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 sra(d, G0, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1393
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 // %%% End of moved six set instructions.
a61af66fc99e Initial load
duke
parents:
diff changeset
1395
a61af66fc99e Initial load
duke
parents:
diff changeset
1396
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 void MacroAssembler::set64(jlong value, Register d, Register tmp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 v9_dep();
a61af66fc99e Initial load
duke
parents:
diff changeset
1400
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 int hi = (int)(value >> 32);
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 int lo = (int)(value & ~0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 // (Matcher::isSimpleConstant64 knows about the following optimizations.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 if (Assembler::is_simm13(lo) && value == lo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 or3(G0, lo, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 } else if (hi == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 Assembler::sethi(lo, d); // hardware version zero-extends to upper 32
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 if (low10(lo) != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 or3(d, low10(lo), d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 else if (hi == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 Assembler::sethi(~lo, d); // hardware version zero-extends to upper 32
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 xor3(d, low10(lo) ^ ~low10(~0), d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 else if (lo == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 if (Assembler::is_simm13(hi)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 or3(G0, hi, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 Assembler::sethi(hi, d); // hardware version zero-extends to upper 32
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 if (low10(hi) != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 or3(d, low10(hi), d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 sllx(d, 32, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 Assembler::sethi(hi, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 Assembler::sethi(lo, d); // macro assembler version sign-extends
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 if (low10(hi) != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 or3 (tmp, low10(hi), tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 if (low10(lo) != 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 or3 ( d, low10(lo), d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 sllx(tmp, 32, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 or3 (d, tmp, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1436
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 // compute size in bytes of sparc frame, given
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // number of extraWords
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 int MacroAssembler::total_frame_size_in_bytes(int extraWords) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1440
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 int nWords = frame::memory_parameter_word_sp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
1442
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 nWords += extraWords;
a61af66fc99e Initial load
duke
parents:
diff changeset
1444
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 if (nWords & 1) ++nWords; // round up to double-word
a61af66fc99e Initial load
duke
parents:
diff changeset
1446
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 return nWords * BytesPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 // save_frame: given number of "extra" words in frame,
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 // issue approp. save instruction (p 200, v8 manual)
a61af66fc99e Initial load
duke
parents:
diff changeset
1453
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 void MacroAssembler::save_frame(int extraWords = 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 int delta = -total_frame_size_in_bytes(extraWords);
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 if (is_simm13(delta)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 save(SP, delta, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 set(delta, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 save(SP, G3_scratch, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1463
a61af66fc99e Initial load
duke
parents:
diff changeset
1464
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 void MacroAssembler::save_frame_c1(int size_in_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 if (is_simm13(-size_in_bytes)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 save(SP, -size_in_bytes, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 set(-size_in_bytes, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 save(SP, G3_scratch, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1473
a61af66fc99e Initial load
duke
parents:
diff changeset
1474
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 void MacroAssembler::save_frame_and_mov(int extraWords,
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 Register s1, Register d1,
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 Register s2, Register d2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1479
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 // The trick here is to use precisely the same memory word
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 // that trap handlers also use to save the register.
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 // This word cannot be used for any other purpose, but
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 // it works fine to save the register's value, whether or not
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 // an interrupt flushes register windows at any given moment!
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 Address s1_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 if (s1->is_valid() && (s1->is_in() || s1->is_local())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 s1_addr = s1->address_in_saved_window();
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 st_ptr(s1, s1_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1490
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 Address s2_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 if (s2->is_valid() && (s2->is_in() || s2->is_local())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 s2_addr = s2->address_in_saved_window();
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 st_ptr(s2, s2_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1496
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 save_frame(extraWords);
a61af66fc99e Initial load
duke
parents:
diff changeset
1498
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 if (s1_addr.base() == SP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 ld_ptr(s1_addr.after_save(), d1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 } else if (s1->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 mov(s1->after_save(), d1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1504
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 if (s2_addr.base() == SP) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 ld_ptr(s2_addr.after_save(), d2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 } else if (s2->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 mov(s2->after_save(), d2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1511
a61af66fc99e Initial load
duke
parents:
diff changeset
1512
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 Address MacroAssembler::allocate_oop_address(jobject obj, Register d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 int oop_index = oop_recorder()->allocate_index(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 return Address(d, address(obj), oop_Relocation::spec(oop_index));
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1518
a61af66fc99e Initial load
duke
parents:
diff changeset
1519
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 Address MacroAssembler::constant_oop_address(jobject obj, Register d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 assert(oop_recorder() != NULL, "this assembler needs an OopRecorder");
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 int oop_index = oop_recorder()->find_index(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 return Address(d, address(obj), oop_Relocation::spec(oop_index));
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1525
a61af66fc99e Initial load
duke
parents:
diff changeset
1526
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 void MacroAssembler::align(int modulus) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 while (offset() % modulus != 0) nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1530
a61af66fc99e Initial load
duke
parents:
diff changeset
1531
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 void MacroAssembler::safepoint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 relocate(breakpoint_Relocation::spec(breakpoint_Relocation::safepoint));
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1535
a61af66fc99e Initial load
duke
parents:
diff changeset
1536
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 void RegistersForDebugging::print(outputStream* s) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 int j;
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 for ( j = 0; j < 8; ++j )
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 if ( j != 6 ) s->print_cr("i%d = 0x%.16lx", j, i[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 else s->print_cr( "fp = 0x%.16lx", i[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1543
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 for ( j = 0; j < 8; ++j )
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 s->print_cr("l%d = 0x%.16lx", j, l[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1547
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 for ( j = 0; j < 8; ++j )
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 if ( j != 6 ) s->print_cr("o%d = 0x%.16lx", j, o[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 else s->print_cr( "sp = 0x%.16lx", o[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1552
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 for ( j = 0; j < 8; ++j )
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 s->print_cr("g%d = 0x%.16lx", j, g[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1556
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 // print out floats with compression
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 for (j = 0; j < 32; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 jfloat val = f[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 int last = j;
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 for ( ; last+1 < 32; ++last ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 char b1[1024], b2[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 sprintf(b1, "%f", val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 sprintf(b2, "%f", f[last+1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 if (strcmp(b1, b2))
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 s->print("f%d", j);
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 if ( j != last ) s->print(" - f%d", last);
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 s->print(" = %f", val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 s->fill_to(25);
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 s->print_cr(" (0x%x)", val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 j = last + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1576
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 // and doubles (evens only)
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 for (j = 0; j < 32; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 jdouble val = d[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 int last = j;
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 for ( ; last+1 < 32; ++last ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 char b1[1024], b2[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 sprintf(b1, "%f", val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 sprintf(b2, "%f", d[last+1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 if (strcmp(b1, b2))
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 s->print("d%d", 2 * j);
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 if ( j != last ) s->print(" - d%d", last);
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 s->print(" = %f", val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 s->fill_to(30);
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 s->print("(0x%x)", *(int*)&val);
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 s->fill_to(42);
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 s->print_cr("(0x%x)", *(1 + (int*)&val));
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 j = last + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 s->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1599
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 void RegistersForDebugging::save_registers(MacroAssembler* a) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 a->sub(FP, round_to(sizeof(RegistersForDebugging), sizeof(jdouble)) - STACK_BIAS, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 a->flush_windows();
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 for (i = 0; i < 8; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 a->ld_ptr(as_iRegister(i)->address_in_saved_window().after_save(), L1); a->st_ptr( L1, O0, i_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 a->ld_ptr(as_lRegister(i)->address_in_saved_window().after_save(), L1); a->st_ptr( L1, O0, l_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 a->st_ptr(as_oRegister(i)->after_save(), O0, o_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 a->st_ptr(as_gRegister(i)->after_save(), O0, g_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 for (i = 0; i < 32; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 a->stf(FloatRegisterImpl::S, as_FloatRegister(i), O0, f_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 for (i = 0; i < (VM_Version::v9_instructions_work() ? 64 : 32); i += 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 a->stf(FloatRegisterImpl::D, as_FloatRegister(i), O0, d_offset(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1617
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 void RegistersForDebugging::restore_registers(MacroAssembler* a, Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 for (int i = 1; i < 8; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 a->ld_ptr(r, g_offset(i), as_gRegister(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 for (int j = 0; j < 32; ++j) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 a->ldf(FloatRegisterImpl::S, O0, f_offset(j), as_FloatRegister(j));
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 for (int k = 0; k < (VM_Version::v9_instructions_work() ? 64 : 32); k += 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 a->ldf(FloatRegisterImpl::D, O0, d_offset(k), as_FloatRegister(k));
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1629
a61af66fc99e Initial load
duke
parents:
diff changeset
1630
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 // pushes double TOS element of FPU stack on CPU stack; pops from FPU stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 void MacroAssembler::push_fTOS() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 // %%%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1635
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 // pops double TOS element from CPU stack and pushes on FPU stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 void MacroAssembler::pop_fTOS() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 // %%%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1640
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 void MacroAssembler::empty_FPU_stack() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 // %%%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1644
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 void MacroAssembler::_verify_oop(Register reg, const char* msg, const char * file, int line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 // plausibility check for oops
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 if (!VerifyOops) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1648
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 if (reg == G0) return; // always NULL, which is always an oop
a61af66fc99e Initial load
duke
parents:
diff changeset
1650
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 char buffer[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 sprintf(buffer, "%d", line);
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 int len = strlen(file) + strlen(msg) + 1 + 4 + strlen(buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 char * real_msg = new char[len];
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 sprintf(real_msg, "%s (%s:%d)", msg, file, line);
a61af66fc99e Initial load
duke
parents:
diff changeset
1656
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 // Call indirectly to solve generation ordering problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 Address a(O7, (address)StubRoutines::verify_oop_subroutine_entry_address());
a61af66fc99e Initial load
duke
parents:
diff changeset
1659
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 // Make some space on stack above the current register window.
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 // Enough to hold 8 64-bit registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 add(SP,-8*8,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1663
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 // Save some 64-bit registers; a normal 'save' chops the heads off
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 // of 64-bit longs in the 32-bit build.
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 mov(reg,O0); // Move arg into O0; arg might be in O7 which is about to be crushed
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1670
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 set((intptr_t)real_msg, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 // Load address to call to into O7
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 load_ptr_contents(a, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 // Register call to verify_oop_subroutine
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 callr(O7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 // recover frame size
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 add(SP, 8*8,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1680
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 void MacroAssembler::_verify_oop_addr(Address addr, const char* msg, const char * file, int line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 // plausibility check for oops
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 if (!VerifyOops) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1684
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 char buffer[64];
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 sprintf(buffer, "%d", line);
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 int len = strlen(file) + strlen(msg) + 1 + 4 + strlen(buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 sprintf(buffer, " at SP+%d ", addr.disp());
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 len += strlen(buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 char * real_msg = new char[len];
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 sprintf(real_msg, "%s at SP+%d (%s:%d)", msg, addr.disp(), file, line);
a61af66fc99e Initial load
duke
parents:
diff changeset
1692
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 // Call indirectly to solve generation ordering problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 Address a(O7, (address)StubRoutines::verify_oop_subroutine_entry_address());
a61af66fc99e Initial load
duke
parents:
diff changeset
1695
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 // Make some space on stack above the current register window.
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 // Enough to hold 8 64-bit registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 add(SP,-8*8,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1699
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 // Save some 64-bit registers; a normal 'save' chops the heads off
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 // of 64-bit longs in the 32-bit build.
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 stx(O0,SP,frame::register_save_words*wordSize+STACK_BIAS+0*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 stx(O1,SP,frame::register_save_words*wordSize+STACK_BIAS+1*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 ld_ptr(addr.base(), addr.disp() + 8*8, O0); // Load arg into O0; arg might be in O7 which is about to be crushed
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 stx(O7,SP,frame::register_save_words*wordSize+STACK_BIAS+7*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1706
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 set((intptr_t)real_msg, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 // Load address to call to into O7
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 load_ptr_contents(a, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 // Register call to verify_oop_subroutine
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 callr(O7, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 // recover frame size
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 add(SP, 8*8,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1716
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 // side-door communication with signalHandler in os_solaris.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 address MacroAssembler::_verify_oop_implicit_branch[3] = { NULL };
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 // This macro is expanded just once; it creates shared code. Contract:
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 // receives an oop in O0. Must restore O0 & O7 from TLS. Must not smash ANY
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 // registers, including flags. May not use a register 'save', as this blows
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 // the high bits of the O-regs if they contain Long values. Acts as a 'leaf'
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 // call.
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 void MacroAssembler::verify_oop_subroutine() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 assert( VM_Version::v9_instructions_work(), "VerifyOops not supported for V8" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1727
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 // Leaf call; no frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 Label succeed, fail, null_or_fail;
a61af66fc99e Initial load
duke
parents:
diff changeset
1730
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 // O0 and O7 were saved already (O0 in O0's TLS home, O7 in O5's TLS home).
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 // O0 is now the oop to be checked. O7 is the return address.
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 Register O0_obj = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1734
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 // Save some more registers for temps.
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 stx(O2,SP,frame::register_save_words*wordSize+STACK_BIAS+2*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 stx(O3,SP,frame::register_save_words*wordSize+STACK_BIAS+3*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 stx(O4,SP,frame::register_save_words*wordSize+STACK_BIAS+4*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 stx(O5,SP,frame::register_save_words*wordSize+STACK_BIAS+5*8);
a61af66fc99e Initial load
duke
parents:
diff changeset
1740
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 // Save flags
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 Register O5_save_flags = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 rdccr( O5_save_flags );
a61af66fc99e Initial load
duke
parents:
diff changeset
1744
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 { // count number of verifies
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 Register O2_adr = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 Register O3_accum = O3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 Address count_addr( O2_adr, (address) StubRoutines::verify_oop_count_addr() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 sethi(count_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 ld(count_addr, O3_accum);
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 inc(O3_accum);
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 st(O3_accum, count_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1754
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 Register O2_mask = O2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 Register O3_bits = O3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 Register O4_temp = O4;
a61af66fc99e Initial load
duke
parents:
diff changeset
1758
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 // mark lower end of faulting range
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 assert(_verify_oop_implicit_branch[0] == NULL, "set once");
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 _verify_oop_implicit_branch[0] = pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1762
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 // We can't check the mark oop because it could be in the process of
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 // locking or unlocking while this is running.
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 set(Universe::verify_oop_mask (), O2_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 set(Universe::verify_oop_bits (), O3_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1767
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 // assert((obj & oop_mask) == oop_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 and3(O0_obj, O2_mask, O4_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 cmp(O4_temp, O3_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 brx(notEqual, false, pn, null_or_fail);
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1773
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 if ((NULL_WORD & Universe::verify_oop_mask()) == Universe::verify_oop_bits()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 // the null_or_fail case is useless; must test for null separately
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 br_null(O0_obj, false, pn, succeed);
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1779
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 // Check the klassOop of this object for being in the right area of memory.
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 // Cannot do the load in the delay above slot in case O0 is null
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1782 load_klass(O0_obj, O0_obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 // assert((klass & klass_mask) == klass_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 if( Universe::verify_klass_mask() != Universe::verify_oop_mask() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 set(Universe::verify_klass_mask(), O2_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 if( Universe::verify_klass_bits() != Universe::verify_oop_bits() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 set(Universe::verify_klass_bits(), O3_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 and3(O0_obj, O2_mask, O4_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 cmp(O4_temp, O3_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 brx(notEqual, false, pn, fail);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1791 delayed()->nop();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 // Check the klass's klass
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1793 load_klass(O0_obj, O0_obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 and3(O0_obj, O2_mask, O4_temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 cmp(O4_temp, O3_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 brx(notEqual, false, pn, fail);
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 delayed()->wrccr( O5_save_flags ); // Restore CCR's
a61af66fc99e Initial load
duke
parents:
diff changeset
1798
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 // mark upper end of faulting range
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 _verify_oop_implicit_branch[1] = pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1801
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 //-----------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 // all tests pass
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 bind(succeed);
a61af66fc99e Initial load
duke
parents:
diff changeset
1805
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 // Restore prior 64-bit registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+0*8,O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+1*8,O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+2*8,O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+3*8,O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+4*8,O4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+5*8,O5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1813
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 retl(); // Leaf return; restore prior O7 in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 delayed()->ldx(SP,frame::register_save_words*wordSize+STACK_BIAS+7*8,O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1816
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 //-----------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 bind(null_or_fail); // nulls are less common but OK
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 br_null(O0_obj, false, pt, succeed);
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 delayed()->wrccr( O5_save_flags ); // Restore CCR's
a61af66fc99e Initial load
duke
parents:
diff changeset
1821
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 //-----------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 // report failure:
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 bind(fail);
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 _verify_oop_implicit_branch[2] = pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
1826
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 wrccr( O5_save_flags ); // Restore CCR's
a61af66fc99e Initial load
duke
parents:
diff changeset
1828
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
a61af66fc99e Initial load
duke
parents:
diff changeset
1830
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 // stop_subroutine expects message pointer in I1.
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 mov(I1, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1833
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 // Restore prior 64-bit registers
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+0*8,I0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+1*8,I1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+2*8,I2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+3*8,I3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+4*8,I4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 ldx(FP,frame::register_save_words*wordSize+STACK_BIAS+5*8,I5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1841
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 // factor long stop-sequence into subroutine to save space
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
a61af66fc99e Initial load
duke
parents:
diff changeset
1844
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 // call indirectly to solve generation ordering problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 Address a(O5, (address)StubRoutines::Sparc::stop_subroutine_entry_address());
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 load_ptr_contents(a, O5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 jmpl(O5, 0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1851
a61af66fc99e Initial load
duke
parents:
diff changeset
1852
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 void MacroAssembler::stop(const char* msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 // save frame first to get O7 for return address
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 // add one word to size in case struct is odd number of words long
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 // It must be doubleword-aligned for storing doubles into it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1857
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
a61af66fc99e Initial load
duke
parents:
diff changeset
1859
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 // stop_subroutine expects message pointer in I1.
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 set((intptr_t)msg, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1862
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 // factor long stop-sequence into subroutine to save space
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 assert(StubRoutines::Sparc::stop_subroutine_entry_address(), "hasn't been generated yet");
a61af66fc99e Initial load
duke
parents:
diff changeset
1865
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 // call indirectly to solve generation ordering problem
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 Address a(O5, (address)StubRoutines::Sparc::stop_subroutine_entry_address());
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 load_ptr_contents(a, O5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 jmpl(O5, 0, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1871
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 breakpoint_trap(); // make stop actually stop rather than writing
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 // unnoticeable results in the output files.
a61af66fc99e Initial load
duke
parents:
diff changeset
1874
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 // restore(); done in callee to save space!
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1877
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 void MacroAssembler::warn(const char* msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 RegistersForDebugging::save_registers(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 mov(O0, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 set((intptr_t)msg, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 call( CAST_FROM_FN_PTR(address, warning) );
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 // ret();
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 // delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 RegistersForDebugging::restore_registers(this, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1891
a61af66fc99e Initial load
duke
parents:
diff changeset
1892
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 void MacroAssembler::untested(const char* what) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 // We must be able to turn interactive prompting off
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 // in order to run automated test scripts on the VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 // Use the flag ShowMessageBoxOnError
a61af66fc99e Initial load
duke
parents:
diff changeset
1897
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 char* b = new char[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 sprintf(b, "untested: %s", what);
a61af66fc99e Initial load
duke
parents:
diff changeset
1900
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 if ( ShowMessageBoxOnError ) stop(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 else warn(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1904
a61af66fc99e Initial load
duke
parents:
diff changeset
1905
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 void MacroAssembler::stop_subroutine() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 RegistersForDebugging::save_registers(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1908
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 // for the sake of the debugger, stick a PC on the current frame
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 // (this assumes that the caller has performed an extra "save")
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 mov(I7, L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 add(O7, -7 * BytesPerInt, I7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1913
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 save_frame(); // one more save to free up another O7 register
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 mov(I0, O1); // addr of reg save area
a61af66fc99e Initial load
duke
parents:
diff changeset
1916
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 // We expect pointer to message in I1. Caller must set it up in O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 mov(I1, O0); // get msg
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 call (CAST_FROM_FN_PTR(address, MacroAssembler::debug), relocInfo::runtime_call_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1921
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1923
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 RegistersForDebugging::restore_registers(this, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1925
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 call(CAST_FROM_FN_PTR(address,breakpoint));
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1930
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 mov(L7, I7);
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 retl();
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 delayed()->restore(); // see stop above
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1935
a61af66fc99e Initial load
duke
parents:
diff changeset
1936
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 void MacroAssembler::debug(char* msg, RegistersForDebugging* regs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 if ( ShowMessageBoxOnError ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 JavaThreadState saved_state = JavaThread::current()->thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 JavaThread::current()->set_thread_state(_thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 // In order to get locks work, we need to fake a in_VM state
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 ::tty->print_cr("EXECUTION STOPPED: %s\n", msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 ::tty->print_cr("Interpreter::bytecode_counter = %d", BytecodeCounter::counter_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 if (os::message_box(msg, "Execution stopped, print registers?"))
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 regs->print(::tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 ThreadStateTransition::transition(JavaThread::current(), _thread_in_vm, saved_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 assert(false, "error");
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1957
a61af66fc99e Initial load
duke
parents:
diff changeset
1958
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 void MacroAssembler::test() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1962
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 CodeBuffer cb("test", 10000, 10000);
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 MacroAssembler* a = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 VM_Version::allow_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 a->test_v9();
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 a->test_v8_onlys();
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 VM_Version::revert();
a61af66fc99e Initial load
duke
parents:
diff changeset
1969
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 StubRoutines::Sparc::test_stop_entry()();
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1973
a61af66fc99e Initial load
duke
parents:
diff changeset
1974
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 void MacroAssembler::calc_mem_param_words(Register Rparam_words, Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 subcc( Rparam_words, Argument::n_register_parameters, Rresult); // how many mem words?
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 Label no_extras;
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 br( negative, true, pt, no_extras ); // if neg, clear reg
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 delayed()->set( 0, Rresult); // annuled, so only if taken
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 bind( no_extras );
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1982
a61af66fc99e Initial load
duke
parents:
diff changeset
1983
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 void MacroAssembler::calc_frame_size(Register Rextra_words, Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 add(Rextra_words, frame::memory_parameter_word_sp_offset, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 add(Rextra_words, frame::memory_parameter_word_sp_offset + 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 bclr(1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 sll(Rresult, LogBytesPerWord, Rresult); // Rresult has total frame bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1993
a61af66fc99e Initial load
duke
parents:
diff changeset
1994
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 void MacroAssembler::calc_frame_size_and_save(Register Rextra_words, Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 calc_frame_size(Rextra_words, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 neg(Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 save(SP, Rresult, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2000
a61af66fc99e Initial load
duke
parents:
diff changeset
2001
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 // ---------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 Assembler::RCondition cond2rcond(Assembler::Condition c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 switch (c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 /*case zero: */
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 case Assembler::equal: return Assembler::rc_z;
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 case Assembler::lessEqual: return Assembler::rc_lez;
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 case Assembler::less: return Assembler::rc_lz;
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 /*case notZero:*/
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 case Assembler::notEqual: return Assembler::rc_nz;
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 case Assembler::greater: return Assembler::rc_gz;
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 case Assembler::greaterEqual: return Assembler::rc_gez;
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 return Assembler::rc_z;
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2017
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 // compares register with zero and branches. NOT FOR USE WITH 64-bit POINTERS
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 void MacroAssembler::br_zero( Condition c, bool a, Predict p, Register s1, Label& L) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 tst(s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 br (c, a, p, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2023
a61af66fc99e Initial load
duke
parents:
diff changeset
2024
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 // Compares a pointer register with zero and branches on null.
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 // Does a test & branch on 32-bit systems and a register-branch on 64-bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 void MacroAssembler::br_null( Register s1, bool a, Predict p, Label& L ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 bpr( rc_z, a, p, s1, L );
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 tst(s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 br ( zero, a, p, L );
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2036
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 void MacroAssembler::br_notnull( Register s1, bool a, Predict p, Label& L ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 bpr( rc_nz, a, p, s1, L );
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 tst(s1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 br ( notZero, a, p, L );
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2046
a61af66fc99e Initial load
duke
parents:
diff changeset
2047
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 // instruction sequences factored across compiler & interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
2049
a61af66fc99e Initial load
duke
parents:
diff changeset
2050
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 void MacroAssembler::lcmp( Register Ra_hi, Register Ra_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 Register Rb_hi, Register Rb_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2054
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 Label check_low_parts, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2056
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 cmp(Ra_hi, Rb_hi ); // compare hi parts
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 br(equal, true, pt, check_low_parts);
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 delayed()->cmp(Ra_low, Rb_low); // test low parts
a61af66fc99e Initial load
duke
parents:
diff changeset
2060
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 // And, with an unsigned comparison, it does not matter if the numbers
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 // are negative or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 // E.g., -2 cmp -1: the low parts are 0xfffffffe and 0xffffffff.
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 // The second one is bigger (unsignedly).
a61af66fc99e Initial load
duke
parents:
diff changeset
2065
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 // Other notes: The first move in each triplet can be unconditional
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 // (and therefore probably prefetchable).
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 // And the equals case for the high part does not need testing,
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 // since that triplet is reached only after finding the high halves differ.
a61af66fc99e Initial load
duke
parents:
diff changeset
2070
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2072
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 mov ( -1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 ba( false, done ); delayed()-> movcc(greater, false, icc, 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 br(less, true, pt, done); delayed()-> set(-1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 br(greater, true, pt, done); delayed()-> set( 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2080
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 bind( check_low_parts );
a61af66fc99e Initial load
duke
parents:
diff changeset
2082
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 mov( -1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 movcc(equal, false, icc, 0, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 movcc(greaterUnsigned, false, icc, 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 set(-1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 br(equal, true, pt, done); delayed()->set( 0, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 br(greaterUnsigned, true, pt, done); delayed()->set( 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 bind( done );
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2095
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 void MacroAssembler::lneg( Register Rhi, Register Rlow ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 subcc( G0, Rlow, Rlow );
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 subc( G0, Rhi, Rhi );
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2100
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 void MacroAssembler::lshl( Register Rin_high, Register Rin_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 Register Rcount,
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 Register Rout_high, Register Rout_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 Register Rtemp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2105
a61af66fc99e Initial load
duke
parents:
diff changeset
2106
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 Register Ralt_count = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 Register Rxfer_bits = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2109
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 assert( Ralt_count != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 && Ralt_count != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 && Ralt_count != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 && Rxfer_bits != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 && Rxfer_bits != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 && Rxfer_bits != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 && Rxfer_bits != Rout_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 && Rout_low != Rin_high,
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 "register alias checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2119
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 Label big_shift, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2121
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 // This code can be optimized to use the 64 bit shifts in V9.
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 // Here we use the 32 bit shifts.
a61af66fc99e Initial load
duke
parents:
diff changeset
2124
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 and3( Rcount, 0x3f, Rcount); // take least significant 6 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 subcc(Rcount, 31, Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 br(greater, true, pn, big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 dec(Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2130
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 // shift < 32 bits, Ralt_count = Rcount-31
a61af66fc99e Initial load
duke
parents:
diff changeset
2132
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 // We get the transfer bits by shifting right by 32-count the low
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 // register. This is done by shifting right by 31-count and then by one
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 // more to take care of the special (rare) case where count is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 // (shifting by 32 would not work).
a61af66fc99e Initial load
duke
parents:
diff changeset
2137
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 neg( Ralt_count );
a61af66fc99e Initial load
duke
parents:
diff changeset
2139
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 // The order of the next two instructions is critical in the case where
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 // Rin and Rout are the same and should not be reversed.
a61af66fc99e Initial load
duke
parents:
diff changeset
2142
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 srl( Rin_low, Ralt_count, Rxfer_bits ); // shift right by 31-count
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 if (Rcount != Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 sll( Rin_low, Rcount, Rout_low ); // low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 sll( Rin_high, Rcount, Rout_high );
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 if (Rcount == Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 sll( Rin_low, Rcount, Rout_low ); // low half
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 srl( Rxfer_bits, 1, Rxfer_bits ); // shift right by one more
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 ba (false, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 or3( Rout_high, Rxfer_bits, Rout_high); // new hi value: or in shifted old hi part and xfer from low
a61af66fc99e Initial load
duke
parents:
diff changeset
2155
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // shift >= 32 bits, Ralt_count = Rcount-32
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 bind(big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 sll( Rin_low, Ralt_count, Rout_high );
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 clr( Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2160
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2163
a61af66fc99e Initial load
duke
parents:
diff changeset
2164
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 void MacroAssembler::lshr( Register Rin_high, Register Rin_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 Register Rcount,
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 Register Rout_high, Register Rout_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 Register Rtemp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2169
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 Register Ralt_count = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 Register Rxfer_bits = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2172
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 assert( Ralt_count != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 && Ralt_count != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 && Ralt_count != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 && Rxfer_bits != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 && Rxfer_bits != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 && Rxfer_bits != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 && Rxfer_bits != Rout_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 && Rout_high != Rin_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 "register alias checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2182
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 Label big_shift, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2184
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 // This code can be optimized to use the 64 bit shifts in V9.
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 // Here we use the 32 bit shifts.
a61af66fc99e Initial load
duke
parents:
diff changeset
2187
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 and3( Rcount, 0x3f, Rcount); // take least significant 6 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 subcc(Rcount, 31, Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 br(greater, true, pn, big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 delayed()->dec(Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2192
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 // shift < 32 bits, Ralt_count = Rcount-31
a61af66fc99e Initial load
duke
parents:
diff changeset
2194
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 // We get the transfer bits by shifting left by 32-count the high
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 // register. This is done by shifting left by 31-count and then by one
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 // more to take care of the special (rare) case where count is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 // (shifting by 32 would not work).
a61af66fc99e Initial load
duke
parents:
diff changeset
2199
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 neg( Ralt_count );
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 if (Rcount != Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 srl( Rin_low, Rcount, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2204
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 // The order of the next two instructions is critical in the case where
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 // Rin and Rout are the same and should not be reversed.
a61af66fc99e Initial load
duke
parents:
diff changeset
2207
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 sll( Rin_high, Ralt_count, Rxfer_bits ); // shift left by 31-count
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 sra( Rin_high, Rcount, Rout_high ); // high half
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 sll( Rxfer_bits, 1, Rxfer_bits ); // shift left by one more
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 if (Rcount == Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 srl( Rin_low, Rcount, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 ba (false, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 or3( Rout_low, Rxfer_bits, Rout_low ); // new low value: or shifted old low part and xfer from high
a61af66fc99e Initial load
duke
parents:
diff changeset
2217
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 // shift >= 32 bits, Ralt_count = Rcount-32
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 bind(big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2220
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 sra( Rin_high, Ralt_count, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 sra( Rin_high, 31, Rout_high ); // sign into hi
a61af66fc99e Initial load
duke
parents:
diff changeset
2223
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 bind( done );
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2226
a61af66fc99e Initial load
duke
parents:
diff changeset
2227
a61af66fc99e Initial load
duke
parents:
diff changeset
2228
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 void MacroAssembler::lushr( Register Rin_high, Register Rin_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 Register Rcount,
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 Register Rout_high, Register Rout_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 Register Rtemp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2233
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 Register Ralt_count = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 Register Rxfer_bits = Rtemp;
a61af66fc99e Initial load
duke
parents:
diff changeset
2236
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 assert( Ralt_count != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 && Ralt_count != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 && Ralt_count != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 && Rxfer_bits != Rin_low
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 && Rxfer_bits != Rin_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 && Rxfer_bits != Rcount
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 && Rxfer_bits != Rout_high
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 && Rout_high != Rin_low,
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 "register alias checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
2246
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 Label big_shift, done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2248
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 // This code can be optimized to use the 64 bit shifts in V9.
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 // Here we use the 32 bit shifts.
a61af66fc99e Initial load
duke
parents:
diff changeset
2251
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 and3( Rcount, 0x3f, Rcount); // take least significant 6 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 subcc(Rcount, 31, Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 br(greater, true, pn, big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 delayed()->dec(Ralt_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2256
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 // shift < 32 bits, Ralt_count = Rcount-31
a61af66fc99e Initial load
duke
parents:
diff changeset
2258
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 // We get the transfer bits by shifting left by 32-count the high
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 // register. This is done by shifting left by 31-count and then by one
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 // more to take care of the special (rare) case where count is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 // (shifting by 32 would not work).
a61af66fc99e Initial load
duke
parents:
diff changeset
2263
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 neg( Ralt_count );
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 if (Rcount != Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 srl( Rin_low, Rcount, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2268
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 // The order of the next two instructions is critical in the case where
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 // Rin and Rout are the same and should not be reversed.
a61af66fc99e Initial load
duke
parents:
diff changeset
2271
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 sll( Rin_high, Ralt_count, Rxfer_bits ); // shift left by 31-count
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 srl( Rin_high, Rcount, Rout_high ); // high half
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 sll( Rxfer_bits, 1, Rxfer_bits ); // shift left by one more
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 if (Rcount == Rout_low) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 srl( Rin_low, Rcount, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 ba (false, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 or3( Rout_low, Rxfer_bits, Rout_low ); // new low value: or shifted old low part and xfer from high
a61af66fc99e Initial load
duke
parents:
diff changeset
2281
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 // shift >= 32 bits, Ralt_count = Rcount-32
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 bind(big_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
2284
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 srl( Rin_high, Ralt_count, Rout_low );
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 clr( Rout_high );
a61af66fc99e Initial load
duke
parents:
diff changeset
2287
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 bind( done );
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2290
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 void MacroAssembler::lcmp( Register Ra, Register Rb, Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 cmp(Ra, Rb);
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 mov( -1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 movcc(equal, false, xcc, 0, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 movcc(greater, false, xcc, 1, Rresult);
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2299
a61af66fc99e Initial load
duke
parents:
diff changeset
2300
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 void MacroAssembler::float_cmp( bool is_float, int unordered_result,
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 FloatRegister Fa, FloatRegister Fb,
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 Register Rresult) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2304
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 fcmp(is_float ? FloatRegisterImpl::S : FloatRegisterImpl::D, fcc0, Fa, Fb);
a61af66fc99e Initial load
duke
parents:
diff changeset
2306
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 Condition lt = unordered_result == -1 ? f_unorderedOrLess : f_less;
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 Condition eq = f_equal;
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 Condition gt = unordered_result == 1 ? f_unorderedOrGreater : f_greater;
a61af66fc99e Initial load
duke
parents:
diff changeset
2310
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2312
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 mov( -1, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 movcc( eq, true, fcc0, 0, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 movcc( gt, true, fcc0, 1, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2316
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
2319
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 set( -1, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 //fb(lt, true, pn, done); delayed()->set( -1, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 fb( eq, true, pn, done); delayed()->set( 0, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 fb( gt, true, pn, done); delayed()->set( 1, Rresult );
a61af66fc99e Initial load
duke
parents:
diff changeset
2324
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 bind (done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2328
a61af66fc99e Initial load
duke
parents:
diff changeset
2329
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 void MacroAssembler::fneg( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 Assembler::fneg(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 if (w == FloatRegisterImpl::S) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 Assembler::fneg(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 } else if (w == FloatRegisterImpl::D) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2341
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 Assembler::fneg(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 assert(w == FloatRegisterImpl::Q, "Invalid float register width");
a61af66fc99e Initial load
duke
parents:
diff changeset
2346
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2350
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 Assembler::fneg(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2358
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 void MacroAssembler::fmov( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 Assembler::fmov(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 if (w == FloatRegisterImpl::S) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 Assembler::fmov(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 } else if (w == FloatRegisterImpl::D) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2370
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 Assembler::fmov(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 assert(w == FloatRegisterImpl::Q, "Invalid float register width");
a61af66fc99e Initial load
duke
parents:
diff changeset
2375
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2379
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 Assembler::fmov(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2387
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 void MacroAssembler::fabs( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d)
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 Assembler::fabs(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 if (w == FloatRegisterImpl::S) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 Assembler::fabs(w, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 } else if (w == FloatRegisterImpl::D) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 assert(((s->encoding(FloatRegisterImpl::D) & 1) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 ((d->encoding(FloatRegisterImpl::D) & 1) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2399
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 Assembler::fabs(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 assert(w == FloatRegisterImpl::Q, "Invalid float register width");
a61af66fc99e Initial load
duke
parents:
diff changeset
2404
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 // number() does a sanity check on the alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 assert(((s->encoding(FloatRegisterImpl::D) & 3) == 0) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 ((d->encoding(FloatRegisterImpl::D) & 3) == 0), "float register alignment check");
a61af66fc99e Initial load
duke
parents:
diff changeset
2408
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 Assembler::fabs(FloatRegisterImpl::S, s, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 Assembler::fmov(FloatRegisterImpl::S, s->successor(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor(), d->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 Assembler::fmov(FloatRegisterImpl::S, s->successor()->successor()->successor(), d->successor()->successor()->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2416
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 void MacroAssembler::save_all_globals_into_locals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 mov(G1,L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 mov(G2,L2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 mov(G3,L3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 mov(G4,L4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 mov(G5,L5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 mov(G6,L6);
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 mov(G7,L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2426
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 void MacroAssembler::restore_globals_from_locals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 mov(L1,G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 mov(L2,G2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 mov(L3,G3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 mov(L4,G4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 mov(L5,G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 mov(L6,G6);
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 mov(L7,G7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2436
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 // Use for 64 bit operation.
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 void MacroAssembler::casx_under_lock(Register top_ptr_reg, Register top_reg, Register ptr_reg, address lock_addr, bool use_call_vm)
a61af66fc99e Initial load
duke
parents:
diff changeset
2439 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 // store ptr_reg as the new top value
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 casx(top_ptr_reg, top_reg, ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 cas_under_lock(top_ptr_reg, top_reg, ptr_reg, lock_addr, use_call_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2447
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 // [RGV] This routine does not handle 64 bit operations.
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 // use casx_under_lock() or casx directly!!!
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 void MacroAssembler::cas_under_lock(Register top_ptr_reg, Register top_reg, Register ptr_reg, address lock_addr, bool use_call_vm)
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 // store ptr_reg as the new top value
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 if (VM_Version::v9_instructions_work()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 cas(top_ptr_reg, top_reg, ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2456
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 // If the register is not an out nor global, it is not visible
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 // after the save. Allocate a register for it, save its
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 // value in the register save area (the save may not flush
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 // registers to the save area).
a61af66fc99e Initial load
duke
parents:
diff changeset
2461
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 Register top_ptr_reg_after_save;
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 Register top_reg_after_save;
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 Register ptr_reg_after_save;
a61af66fc99e Initial load
duke
parents:
diff changeset
2465
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 if (top_ptr_reg->is_out() || top_ptr_reg->is_global()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 top_ptr_reg_after_save = top_ptr_reg->after_save();
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 Address reg_save_addr = top_ptr_reg->address_in_saved_window();
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 top_ptr_reg_after_save = L0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 st(top_ptr_reg, reg_save_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2473
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 if (top_reg->is_out() || top_reg->is_global()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 top_reg_after_save = top_reg->after_save();
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2477 Address reg_save_addr = top_reg->address_in_saved_window();
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 top_reg_after_save = L1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 st(top_reg, reg_save_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2481
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 if (ptr_reg->is_out() || ptr_reg->is_global()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 ptr_reg_after_save = ptr_reg->after_save();
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 Address reg_save_addr = ptr_reg->address_in_saved_window();
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 ptr_reg_after_save = L2;
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 st(ptr_reg, reg_save_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2489
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 const Register& lock_reg = L3;
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 const Register& lock_ptr_reg = L4;
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 const Register& value_reg = L5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 const Register& yield_reg = L6;
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 const Register& yieldall_reg = L7;
a61af66fc99e Initial load
duke
parents:
diff changeset
2495
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 save_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
2497
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 if (top_ptr_reg_after_save == L0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 ld(top_ptr_reg->address_in_saved_window().after_save(), top_ptr_reg_after_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2501
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 if (top_reg_after_save == L1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 ld(top_reg->address_in_saved_window().after_save(), top_reg_after_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2505
a61af66fc99e Initial load
duke
parents:
diff changeset
2506 if (ptr_reg_after_save == L2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2507 ld(ptr_reg->address_in_saved_window().after_save(), ptr_reg_after_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2509
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 Label(retry_get_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 Label(not_same);
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 Label(dont_yield);
a61af66fc99e Initial load
duke
parents:
diff changeset
2513
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 assert(lock_addr, "lock_address should be non null for v8");
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 set((intptr_t)lock_addr, lock_ptr_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 // Initialize yield counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 mov(G0,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 mov(G0, yieldall_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 set(StubRoutines::Sparc::locked, lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2520
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 bind(retry_get_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 cmp(yield_reg, V8AtomicOperationUnderLockSpinCount);
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 br(Assembler::less, false, Assembler::pt, dont_yield);
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2525
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 if(use_call_vm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 Untested("Need to verify global reg consistancy");
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::yield_all), yieldall_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 // Save the regs and make space for a C call
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 save(SP, -96, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 save_all_globals_into_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 call(CAST_FROM_FN_PTR(address,os::yield_all));
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 delayed()->mov(yieldall_reg, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 restore_globals_from_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2538
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 // reset the counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 mov(G0,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 add(yieldall_reg, 1, yieldall_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2542
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 bind(dont_yield);
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 // try to get lock
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 swap(lock_ptr_reg, 0, lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2546
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 // did we get the lock?
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 cmp(lock_reg, StubRoutines::Sparc::unlocked);
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 br(Assembler::notEqual, true, Assembler::pn, retry_get_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 delayed()->add(yield_reg,1,yield_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2551
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 // yes, got lock. do we have the same top?
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 ld(top_ptr_reg_after_save, 0, value_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 cmp(value_reg, top_reg_after_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 br(Assembler::notEqual, false, Assembler::pn, not_same);
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2557
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 // yes, same top.
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 st(ptr_reg_after_save, top_ptr_reg_after_save, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 membar(Assembler::StoreStore);
a61af66fc99e Initial load
duke
parents:
diff changeset
2561
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 bind(not_same);
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 mov(value_reg, ptr_reg_after_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 st(lock_reg, lock_ptr_reg, 0); // unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
2565
a61af66fc99e Initial load
duke
parents:
diff changeset
2566 restore();
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 void MacroAssembler::biased_locking_enter(Register obj_reg, Register mark_reg, Register temp_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 Label& done, Label* slow_case,
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 BiasedLockingCounters* counters) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 assert(UseBiasedLocking, "why call this otherwise?");
a61af66fc99e Initial load
duke
parents:
diff changeset
2574
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 if (PrintBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 assert_different_registers(obj_reg, mark_reg, temp_reg, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 if (counters == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 counters = BiasedLocking::counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2580
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 Label cas_label;
a61af66fc99e Initial load
duke
parents:
diff changeset
2582
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 // Biased locking
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 // See whether the lock is currently biased toward our thread and
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 // whether the epoch is still valid
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 // Note that the runtime guarantees sufficient alignment of JavaThread
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 // pointers to allow age to be placed into low bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 assert(markOopDesc::age_shift == markOopDesc::lock_bits + markOopDesc::biased_lock_bits, "biased locking makes assumptions about bit layout");
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 and3(mark_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 cmp(temp_reg, markOopDesc::biased_lock_pattern);
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 brx(Assembler::notEqual, false, Assembler::pn, cas_label);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2592 delayed()->nop();
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2593
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2594 load_klass(obj_reg, temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 or3(G2_thread, temp_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 xor3(mark_reg, temp_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 andcc(temp_reg, ~((int) markOopDesc::age_mask_in_place), temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 cond_inc(Assembler::equal, (address) counters->biased_lock_entry_count_addr(), mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 // Reload mark_reg as we may need it later
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 ld_ptr(Address(obj_reg, 0, oopDesc::mark_offset_in_bytes()), mark_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 brx(Assembler::equal, true, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2606
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 Label try_revoke_bias;
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 Label try_rebias;
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 Address mark_addr = Address(obj_reg, 0, oopDesc::mark_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2611
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 // At this point we know that the header has the bias pattern and
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 // that we are not the bias owner in the current epoch. We need to
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 // figure out more details about the state of the header in order to
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 // know what operations can be legally performed on the object's
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 // header.
a61af66fc99e Initial load
duke
parents:
diff changeset
2617
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 // If the low three bits in the xor result aren't clear, that means
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 // the prototype header is no longer biased and we have to revoke
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 // the bias on this object.
a61af66fc99e Initial load
duke
parents:
diff changeset
2621 btst(markOopDesc::biased_lock_mask_in_place, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 brx(Assembler::notZero, false, Assembler::pn, try_revoke_bias);
a61af66fc99e Initial load
duke
parents:
diff changeset
2623
a61af66fc99e Initial load
duke
parents:
diff changeset
2624 // Biasing is still enabled for this data type. See whether the
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 // epoch of the current bias is still valid, meaning that the epoch
a61af66fc99e Initial load
duke
parents:
diff changeset
2626 // bits of the mark word are equal to the epoch bits of the
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 // prototype header. (Note that the prototype header's epoch bits
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 // only change at a safepoint.) If not, attempt to rebias the object
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 // toward the current thread. Note that we must be absolutely sure
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 // that the current epoch is invalid in order to do this because
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 // otherwise the manipulations it performs on the mark word are
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 // illegal.
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 delayed()->btst(markOopDesc::epoch_mask_in_place, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 brx(Assembler::notZero, false, Assembler::pn, try_rebias);
a61af66fc99e Initial load
duke
parents:
diff changeset
2635
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 // The epoch of the current bias is still valid but we know nothing
a61af66fc99e Initial load
duke
parents:
diff changeset
2637 // about the owner; it might be set or it might be clear. Try to
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 // acquire the bias of the object using an atomic operation. If this
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 // fails we will go in to the runtime to revoke the object's bias.
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 // Note that we first construct the presumed unbiased header so we
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 // don't accidentally blow away another thread's valid bias.
a61af66fc99e Initial load
duke
parents:
diff changeset
2642 delayed()->and3(mark_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 markOopDesc::biased_lock_mask_in_place | markOopDesc::age_mask_in_place | markOopDesc::epoch_mask_in_place,
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 mark_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 or3(G2_thread, mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 casx_under_lock(mark_addr.base(), mark_reg, temp_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 // If the biasing toward our thread failed, this means that
a61af66fc99e Initial load
duke
parents:
diff changeset
2649 // another thread succeeded in biasing it toward itself and we
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 // need to revoke that bias. The revocation will occur in the
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 // interpreter runtime in the slow case.
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 cmp(mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2653 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 cond_inc(Assembler::zero, (address) counters->anonymously_biased_lock_entry_count_addr(), mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2656 if (slow_case != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2657 brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 br(Assembler::always, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2662
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 bind(try_rebias);
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 // At this point we know the epoch has expired, meaning that the
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 // current "bias owner", if any, is actually invalid. Under these
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 // circumstances _only_, we are allowed to use the current header's
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 // value as the comparison value when doing the cas to acquire the
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 // bias in the current epoch. In other words, we allow transfer of
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 // the bias from one thread to another directly in this situation.
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 // FIXME: due to a lack of registers we currently blow away the age
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 // bits in this situation. Should attempt to preserve them.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2673 load_klass(obj_reg, temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 or3(G2_thread, temp_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 casx_under_lock(mark_addr.base(), mark_reg, temp_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
2678 // If the biasing toward our thread failed, this means that
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 // another thread succeeded in biasing it toward itself and we
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 // need to revoke that bias. The revocation will occur in the
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 // interpreter runtime in the slow case.
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 cmp(mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 cond_inc(Assembler::zero, (address) counters->rebiased_lock_entry_count_addr(), mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 if (slow_case != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 brx(Assembler::notEqual, true, Assembler::pn, *slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
2688 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 br(Assembler::always, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2692
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 bind(try_revoke_bias);
a61af66fc99e Initial load
duke
parents:
diff changeset
2694 // The prototype mark in the klass doesn't have the bias bit set any
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 // more, indicating that objects of this data type are not supposed
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 // to be biased any more. We are going to try to reset the mark of
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 // this object to the prototype value and fall through to the
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 // CAS-based locking scheme. Note that if our CAS fails, it means
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 // that another thread raced us for the privilege of revoking the
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 // bias of this particular object, so it's okay to continue in the
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 // normal locking code.
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 // FIXME: due to a lack of registers we currently blow away the age
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 // bits in this situation. Should attempt to preserve them.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
2705 load_klass(obj_reg, temp_reg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2706 ld_ptr(Address(temp_reg, 0, Klass::prototype_header_offset_in_bytes() + klassOopDesc::klass_part_offset_in_bytes()), temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 casx_under_lock(mark_addr.base(), mark_reg, temp_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2708 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 // Fall through to the normal CAS-based lock, because no matter what
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 // the result of the above CAS, some thread must have succeeded in
a61af66fc99e Initial load
duke
parents:
diff changeset
2711 // removing the bias bit from the object's header.
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 cmp(mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 cond_inc(Assembler::zero, (address) counters->revoked_lock_entry_count_addr(), mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2715 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2716
a61af66fc99e Initial load
duke
parents:
diff changeset
2717 bind(cas_label);
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2719
a61af66fc99e Initial load
duke
parents:
diff changeset
2720 void MacroAssembler::biased_locking_exit (Address mark_addr, Register temp_reg, Label& done,
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 bool allow_delay_slot_filling) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 // Check for biased locking unlock case, which is a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
2723 // Note: we do not have to check the thread ID for two reasons.
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 // First, the interpreter checks for IllegalMonitorStateException at
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 // a higher level. Second, if the bias was revoked while we held the
a61af66fc99e Initial load
duke
parents:
diff changeset
2726 // lock, the object could not be rebiased toward another thread, so
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 // the bias bit would be clear.
a61af66fc99e Initial load
duke
parents:
diff changeset
2728 ld_ptr(mark_addr, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 and3(temp_reg, markOopDesc::biased_lock_mask_in_place, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 cmp(temp_reg, markOopDesc::biased_lock_pattern);
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 brx(Assembler::equal, allow_delay_slot_filling, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 if (!allow_delay_slot_filling) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2737
a61af66fc99e Initial load
duke
parents:
diff changeset
2738
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 // CASN -- 32-64 bit switch hitter similar to the synthetic CASN provided by
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 // Solaris/SPARC's "as". Another apt name would be cas_ptr()
a61af66fc99e Initial load
duke
parents:
diff changeset
2741
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 void MacroAssembler::casn (Register addr_reg, Register cmp_reg, Register set_reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 casx_under_lock (addr_reg, cmp_reg, set_reg, (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr()) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2745
a61af66fc99e Initial load
duke
parents:
diff changeset
2746
a61af66fc99e Initial load
duke
parents:
diff changeset
2747
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 // compiler_lock_object() and compiler_unlock_object() are direct transliterations
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 // of i486.ad fast_lock() and fast_unlock(). See those methods for detailed comments.
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 // The code could be tightened up considerably.
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 // box->dhw disposition - post-conditions at DONE_LABEL.
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 // - Successful inflated lock: box->dhw != 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 // Any non-zero value suffices.
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 // Consider G2_thread, rsp, boxReg, or unused_mark()
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 // - Successful Stack-lock: box->dhw == mark.
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 // box->dhw must contain the displaced mark word value
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 // - Failure -- icc.ZFlag == 0 and box->dhw is undefined.
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 // The slow-path fast_enter() and slow_enter() operators
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 // are responsible for setting box->dhw = NonZero (typically ::unused_mark).
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 // - Biased: box->dhw is undefined
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 // SPARC refworkload performance - specifically jetstream and scimark - are
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 // extremely sensitive to the size of the code emitted by compiler_lock_object
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 // and compiler_unlock_object. Critically, the key factor is code size, not path
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 // length. (Simply experiments to pad CLO with unexecuted NOPs demonstrte the
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 // effect).
a61af66fc99e Initial load
duke
parents:
diff changeset
2768
a61af66fc99e Initial load
duke
parents:
diff changeset
2769
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 void MacroAssembler::compiler_lock_object(Register Roop, Register Rmark, Register Rbox, Register Rscratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 BiasedLockingCounters* counters) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 Address mark_addr(Roop, 0, oopDesc::mark_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2773
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 verify_oop(Roop);
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 Label done ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2776
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 inc_counter((address) counters->total_entry_count_addr(), Rmark, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2780
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 if (EmitSync & 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 mov (3, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 cmp (SP, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2785 return ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2787
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 if (EmitSync & 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2789
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 // Fetch object's markword
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 ld_ptr(mark_addr, Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
2792
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2796
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 // Save Rbox in Rscratch to be used for the cas operation
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 mov(Rbox, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2799
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 // set Rmark to markOop | markOopDesc::unlocked_value
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 or3(Rmark, markOopDesc::unlocked_value, Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
2802
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 // Initialize the box. (Must happen before we update the object mark!)
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 st_ptr(Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2805
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 // compare object markOop with Rmark and if equal exchange Rscratch with object markOop
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 casx_under_lock(mark_addr.base(), Rmark, Rscratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
2810
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 // if compare/exchange succeeded we found an unlocked object and we now have locked it
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 // hence we are done
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 cmp(Rmark, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 sub(Rscratch, STACK_BIAS, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 brx(Assembler::equal, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 delayed()->sub(Rscratch, SP, Rscratch); //pull next instruction into delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2819
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 // we did not find an unlocked object so see if this is a recursive case
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 // sub(Rscratch, SP, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 andcc(Rscratch, 0xfffff003, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 st_ptr(Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 bind (done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 return ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2828
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 Label Egress ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2830
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 if (EmitSync & 256) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 Label IsInflated ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2833
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 ld_ptr (mark_addr, Rmark); // fetch obj->mark
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 // Triage: biased, stack-locked, neutral, inflated
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 // Invariant: if control reaches this point in the emitted stream
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 // then Rmark has not been modified.
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2841
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 // Store mark into displaced mark field in the on-stack basic-lock "box"
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 // Critically, this must happen before the CAS
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 // Maximize the ST-CAS distance to minimize the ST-before-CAS penalty.
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 st_ptr (Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2846 andcc (Rmark, 2, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 brx (Assembler::notZero, false, Assembler::pn, IsInflated) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2848 delayed() ->
a61af66fc99e Initial load
duke
parents:
diff changeset
2849
a61af66fc99e Initial load
duke
parents:
diff changeset
2850 // Try stack-lock acquisition.
a61af66fc99e Initial load
duke
parents:
diff changeset
2851 // Beware: the 1st instruction is in a delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 mov (Rbox, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 or3 (Rmark, markOopDesc::unlocked_value, Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 assert (mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2855 casn (mark_addr.base(), Rmark, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 cmp (Rmark, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 brx (Assembler::equal, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 delayed()->sub(Rscratch, SP, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2859
a61af66fc99e Initial load
duke
parents:
diff changeset
2860 // Stack-lock attempt failed - check for recursive stack-lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 // See the comments below about how we might remove this case.
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 sub (Rscratch, STACK_BIAS, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
2866 andcc (Rscratch, 0xfffff003, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2867 br (Assembler::always, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 delayed()-> st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2869
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 bind (IsInflated) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2871 if (EmitSync & 64) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 // If m->owner != null goto IsLocked
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 // Pessimistic form: Test-and-CAS vs CAS
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 // The optimistic form avoids RTS->RTO cache line upgrades.
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 ld_ptr (Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 andcc (Rscratch, Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 brx (Assembler::notZero, false, Assembler::pn, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 delayed()->nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 // m->owner == null : it's unlocked.
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2881
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 // Try to CAS m->owner from null to Self
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 // Invariant: if we acquire the lock then _recursions should be 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 add (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 mov (G2_thread, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 casn (Rmark, G0, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 cmp (Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 // Intentional fall-through into done
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 // Aggressively avoid the Store-before-CAS penalty
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 // Defer the store into box->dhw until after the CAS
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 Label IsInflated, Recursive ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2893
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 // Anticipate CAS -- Avoid RTS->RTO upgrade
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 // prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2896
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 ld_ptr (mark_addr, Rmark); // fetch obj->mark
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 // Triage: biased, stack-locked, neutral, inflated
a61af66fc99e Initial load
duke
parents:
diff changeset
2899
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 biased_locking_enter(Roop, Rmark, Rscratch, done, NULL, counters);
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 // Invariant: if control reaches this point in the emitted stream
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 // then Rmark has not been modified.
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 andcc (Rmark, 2, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 brx (Assembler::notZero, false, Assembler::pn, IsInflated) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 delayed()-> // Beware - dangling delay-slot
a61af66fc99e Initial load
duke
parents:
diff changeset
2908
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 // Try stack-lock acquisition.
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 // Transiently install BUSY (0) encoding in the mark word.
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 // if the CAS of 0 into the mark was successful then we execute:
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 // ST box->dhw = mark -- save fetched mark in on-stack basiclock box
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 // ST obj->mark = box -- overwrite transient 0 value
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 // This presumes TSO, of course.
a61af66fc99e Initial load
duke
parents:
diff changeset
2915
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 mov (0, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 or3 (Rmark, markOopDesc::unlocked_value, Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 assert (mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 casn (mark_addr.base(), Rmark, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 // prefetch (mark_addr, Assembler::severalWritesAndPossiblyReads) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 cmp (Rscratch, Rmark) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 brx (Assembler::notZero, false, Assembler::pn, Recursive) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 delayed() ->
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 st_ptr (Rmark, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 br (Assembler::always, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 delayed() ->
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 st_ptr (Rbox, mark_addr) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2931
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 bind (Recursive) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 // Stack-lock attempt failed - check for recursive stack-lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 // Tests show that we can remove the recursive case with no impact
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 // on refworkload 0.83. If we need to reduce the size of the code
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 // emitted by compiler_lock_object() the recursive case is perfect
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 // candidate.
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 // A more extreme idea is to always inflate on stack-lock recursion.
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 // This lets us eliminate the recursive checks in compiler_lock_object
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 // and compiler_unlock_object and the (box->dhw == 0) encoding.
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 // A brief experiment - requiring changes to synchronizer.cpp, interpreter,
a61af66fc99e Initial load
duke
parents:
diff changeset
2943 // and showed a performance *increase*. In the same experiment I eliminated
a61af66fc99e Initial load
duke
parents:
diff changeset
2944 // the fast-path stack-lock code from the interpreter and always passed
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 // control to the "slow" operators in synchronizer.cpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
2946
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 // RScratch contains the fetched obj->mark value from the failed CASN.
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 sub (Rscratch, STACK_BIAS, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 sub(Rscratch, SP, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 andcc (Rscratch, 0xfffff003, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 if (counters != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 // Accounting needs the Rscratch register
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 cond_inc(Assembler::equal, (address) counters->fast_path_entry_count_addr(), Rmark, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 br (Assembler::always, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 delayed()->nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 br (Assembler::always, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2962 delayed()-> st_ptr (Rscratch, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2964
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 bind (IsInflated) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2966 if (EmitSync & 64) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 // If m->owner != null goto IsLocked
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 // Test-and-CAS vs CAS
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 // Pessimistic form avoids futile (doomed) CAS attempts
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 // The optimistic form avoids RTS->RTO cache line upgrades.
a61af66fc99e Initial load
duke
parents:
diff changeset
2971 ld_ptr (Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 andcc (Rscratch, Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 brx (Assembler::notZero, false, Assembler::pn, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 delayed()->nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2975 // m->owner == null : it's unlocked.
a61af66fc99e Initial load
duke
parents:
diff changeset
2976 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2977
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 // Try to CAS m->owner from null to Self
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 // Invariant: if we acquire the lock then _recursions should be 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 add (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2981 mov (G2_thread, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 casn (Rmark, G0, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 cmp (Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 // ST box->displaced_header = NonZero.
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 // Any non-zero value suffices:
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 // unused_mark(), G2_thread, RBox, RScratch, rsp, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 st_ptr (Rbox, Rbox, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 // Intentional fall-through into done
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2990
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 bind (done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2993
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 void MacroAssembler::compiler_unlock_object(Register Roop, Register Rmark, Register Rbox, Register Rscratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2995 Address mark_addr(Roop, 0, oopDesc::mark_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2996
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 Label done ;
a61af66fc99e Initial load
duke
parents:
diff changeset
2998
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 if (EmitSync & 4) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 cmp (SP, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 return ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3003
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 if (EmitSync & 8) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 biased_locking_exit(mark_addr, Rscratch, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3008
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 // Test first if it is a fast recursive unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 ld_ptr(Rbox, BasicLock::displaced_header_offset_in_bytes(), Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 cmp(Rmark, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 brx(Assembler::equal, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3014
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 // Check if it is still a light weight lock, this is is true if we see
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 // the stack address of the basicLock in the markOop of the object
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
3018 casx_under_lock(mark_addr.base(), Rbox, Rmark,
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 br (Assembler::always, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3021 delayed()->cmp(Rbox, Rmark);
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 bind (done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 return ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3025
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 // Beware ... If the aggregate size of the code emitted by CLO and CUO is
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 // is too large performance rolls abruptly off a cliff.
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 // This could be related to inlining policies, code cache management, or
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 // I$ effects.
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 Label LStacked ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3031
a61af66fc99e Initial load
duke
parents:
diff changeset
3032 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3033 // TODO: eliminate redundant LDs of obj->mark
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 biased_locking_exit(mark_addr, Rscratch, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3036
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 ld_ptr (Roop, oopDesc::mark_offset_in_bytes(), Rmark) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3038 ld_ptr (Rbox, BasicLock::displaced_header_offset_in_bytes(), Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 andcc (Rscratch, Rscratch, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 brx (Assembler::zero, false, Assembler::pn, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 delayed()-> nop() ; // consider: relocate fetch of mark, above, into this DS
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 andcc (Rmark, 2, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 brx (Assembler::zero, false, Assembler::pt, LStacked) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 delayed()-> nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3045
a61af66fc99e Initial load
duke
parents:
diff changeset
3046 // It's inflated
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 // Conceptually we need a #loadstore|#storestore "release" MEMBAR before
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 // the ST of 0 into _owner which releases the lock. This prevents loads
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 // and stores within the critical section from reordering (floating)
a61af66fc99e Initial load
duke
parents:
diff changeset
3050 // past the store that releases the lock. But TSO is a strong memory model
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 // and that particular flavor of barrier is a noop, so we can safely elide it.
a61af66fc99e Initial load
duke
parents:
diff changeset
3052 // Note that we use 1-0 locking by default for the inflated case. We
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 // close the resultant (and rare) race by having contented threads in
a61af66fc99e Initial load
duke
parents:
diff changeset
3054 // monitorenter periodically poll _owner.
a61af66fc99e Initial load
duke
parents:
diff changeset
3055 ld_ptr (Address(Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2), Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 ld_ptr (Address(Rmark, 0, ObjectMonitor::recursions_offset_in_bytes()-2), Rbox) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3057 xor3 (Rscratch, G2_thread, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 orcc (Rbox, Rscratch, Rbox) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 brx (Assembler::notZero, false, Assembler::pn, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3060 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 ld_ptr (Address (Rmark, 0, ObjectMonitor::EntryList_offset_in_bytes()-2), Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3062 ld_ptr (Address (Rmark, 0, ObjectMonitor::cxq_offset_in_bytes()-2), Rbox) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3063 orcc (Rbox, Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 if (EmitSync & 65536) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3065 Label LSucc ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3066 brx (Assembler::notZero, false, Assembler::pn, LSucc) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 delayed()->nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3068 br (Assembler::always, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3069 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
3070 st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3071
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 bind (LSucc) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3073 st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3074 if (os::is_MP()) { membar (StoreLoad) ; }
a61af66fc99e Initial load
duke
parents:
diff changeset
3075 ld_ptr (Address (Rmark, 0, ObjectMonitor::succ_offset_in_bytes()-2), Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 andcc (Rscratch, Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 brx (Assembler::notZero, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3078 delayed()-> andcc (G0, G0, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 add (Rmark, ObjectMonitor::owner_offset_in_bytes()-2, Rmark) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3080 mov (G2_thread, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 casn (Rmark, G0, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 cmp (Rscratch, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3083 // invert icc.zf and goto done
a61af66fc99e Initial load
duke
parents:
diff changeset
3084 brx (Assembler::notZero, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3085 delayed() -> cmp (G0, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3086 br (Assembler::always, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 delayed() -> cmp (G0, 1) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3088 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3089 brx (Assembler::notZero, false, Assembler::pn, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 delayed()->nop() ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 br (Assembler::always, false, Assembler::pt, done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
3093 st_ptr (G0, Address (Rmark, 0, ObjectMonitor::owner_offset_in_bytes()-2)) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3095
a61af66fc99e Initial load
duke
parents:
diff changeset
3096 bind (LStacked) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 // Consider: we could replace the expensive CAS in the exit
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 // path with a simple ST of the displaced mark value fetched from
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 // the on-stack basiclock box. That admits a race where a thread T2
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 // in the slow lock path -- inflating with monitor M -- could race a
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 // thread T1 in the fast unlock path, resulting in a missed wakeup for T2.
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 // More precisely T1 in the stack-lock unlock path could "stomp" the
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 // inflated mark value M installed by T2, resulting in an orphan
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 // object monitor M and T2 becoming stranded. We can remedy that situation
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 // by having T2 periodically poll the object's mark word using timed wait
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 // operations. If T2 discovers that a stomp has occurred it vacates
a61af66fc99e Initial load
duke
parents:
diff changeset
3107 // the monitor M and wakes any other threads stranded on the now-orphan M.
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 // In addition the monitor scavenger, which performs deflation,
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 // would also need to check for orpan monitors and stranded threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 // Finally, inflation is also used when T2 needs to assign a hashCode
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 // to O and O is stack-locked by T1. The "stomp" race could cause
a61af66fc99e Initial load
duke
parents:
diff changeset
3113 // an assigned hashCode value to be lost. We can avoid that condition
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 // and provide the necessary hashCode stability invariants by ensuring
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 // that hashCode generation is idempotent between copying GCs.
a61af66fc99e Initial load
duke
parents:
diff changeset
3116 // For example we could compute the hashCode of an object O as
a61af66fc99e Initial load
duke
parents:
diff changeset
3117 // O's heap address XOR some high quality RNG value that is refreshed
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 // at GC-time. The monitor scavenger would install the hashCode
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 // found in any orphan monitors. Again, the mechanism admits a
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 // lost-update "stomp" WAW race but detects and recovers as needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 // A prototype implementation showed excellent results, although
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 // the scavenger and timeout code was rather involved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3124
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 casn (mark_addr.base(), Rbox, Rscratch) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 cmp (Rbox, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 // Intentional fall through into done ...
a61af66fc99e Initial load
duke
parents:
diff changeset
3128
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 bind (done) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3131
a61af66fc99e Initial load
duke
parents:
diff changeset
3132
a61af66fc99e Initial load
duke
parents:
diff changeset
3133
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 void MacroAssembler::print_CPU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3137
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 void MacroAssembler::verify_FPU(int stack_depth, const char* s) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3141
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 void MacroAssembler::push_IU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3145
a61af66fc99e Initial load
duke
parents:
diff changeset
3146
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 void MacroAssembler::pop_IU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3150
a61af66fc99e Initial load
duke
parents:
diff changeset
3151
a61af66fc99e Initial load
duke
parents:
diff changeset
3152 void MacroAssembler::push_FPU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3155
a61af66fc99e Initial load
duke
parents:
diff changeset
3156
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 void MacroAssembler::pop_FPU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3160
a61af66fc99e Initial load
duke
parents:
diff changeset
3161
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 void MacroAssembler::push_CPU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3165
a61af66fc99e Initial load
duke
parents:
diff changeset
3166
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 void MacroAssembler::pop_CPU_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3168 // %%%%% need to implement this
a61af66fc99e Initial load
duke
parents:
diff changeset
3169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3170
a61af66fc99e Initial load
duke
parents:
diff changeset
3171
a61af66fc99e Initial load
duke
parents:
diff changeset
3172
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 void MacroAssembler::verify_tlab() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 if (UseTLAB && VerifyOops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 Label next, next2, ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
3177 Register t1 = L0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 Register t2 = L1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 Register t3 = L2;
a61af66fc99e Initial load
duke
parents:
diff changeset
3180
a61af66fc99e Initial load
duke
parents:
diff changeset
3181 save_frame(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_start_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 or3(t1, t2, t3);
a61af66fc99e Initial load
duke
parents:
diff changeset
3185 cmp(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 br(Assembler::greaterEqual, false, Assembler::pn, next);
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3188 stop("assert(top >= start)");
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
3190
a61af66fc99e Initial load
duke
parents:
diff changeset
3191 bind(next);
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3193 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3194 or3(t3, t2, t3);
a61af66fc99e Initial load
duke
parents:
diff changeset
3195 cmp(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3196 br(Assembler::lessEqual, false, Assembler::pn, next2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3197 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 stop("assert(top <= end)");
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
3200
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 bind(next2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 and3(t3, MinObjAlignmentInBytesMask, t3);
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 cmp(t3, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3204 br(Assembler::lessEqual, false, Assembler::pn, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 stop("assert(aligned)");
a61af66fc99e Initial load
duke
parents:
diff changeset
3207 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
3208
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3214
a61af66fc99e Initial load
duke
parents:
diff changeset
3215
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 void MacroAssembler::eden_allocate(
a61af66fc99e Initial load
duke
parents:
diff changeset
3217 Register obj, // result: pointer to object after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 int con_size_in_bytes, // object size in bytes if known at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 Register t2, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 Label& slow_case // continuation point if fast allocation fails
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 ){
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 // make sure arguments make sense
a61af66fc99e Initial load
duke
parents:
diff changeset
3225 assert_different_registers(obj, var_size_in_bytes, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3226 assert(0 <= con_size_in_bytes && Assembler::is_simm13(con_size_in_bytes), "illegal object size");
a61af66fc99e Initial load
duke
parents:
diff changeset
3227 assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
3228
a61af66fc99e Initial load
duke
parents:
diff changeset
3229 // get eden boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 // note: we need both top & top_addr!
a61af66fc99e Initial load
duke
parents:
diff changeset
3231 const Register top_addr = t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 const Register end = t2;
a61af66fc99e Initial load
duke
parents:
diff changeset
3233
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 CollectedHeap* ch = Universe::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 set((intx)ch->top_addr(), top_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 intx delta = (intx)ch->end_addr() - (intx)ch->top_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 ld_ptr(top_addr, delta, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 ld_ptr(top_addr, 0, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3239
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 // try to allocate
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 Label retry;
a61af66fc99e Initial load
duke
parents:
diff changeset
3242 bind(retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 // make sure eden top is properly aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3245 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 btst(MinObjAlignmentInBytesMask, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3248 br(Assembler::zero, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 stop("eden top is not properly aligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 const Register free = end;
a61af66fc99e Initial load
duke
parents:
diff changeset
3255 sub(end, obj, free); // compute amount of free space
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 if (var_size_in_bytes->is_valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3257 // size is unknown at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
3258 cmp(free, var_size_in_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 br(Assembler::lessUnsigned, false, Assembler::pn, slow_case); // if there is not enough space go the slow case
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 delayed()->add(obj, var_size_in_bytes, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3262 // size is known at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 cmp(free, con_size_in_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3264 br(Assembler::lessUnsigned, false, Assembler::pn, slow_case); // if there is not enough space go the slow case
a61af66fc99e Initial load
duke
parents:
diff changeset
3265 delayed()->add(obj, con_size_in_bytes, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 // Compare obj with the value at top_addr; if still equal, swap the value of
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 // end with the value at top_addr. If not equal, read the value at top_addr
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 // into end.
a61af66fc99e Initial load
duke
parents:
diff changeset
3270 casx_under_lock(top_addr, obj, end, (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
3271 // if someone beat us on the allocation, try again, otherwise continue
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 cmp(obj, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 brx(Assembler::notEqual, false, Assembler::pn, retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 delayed()->mov(end, obj); // nop if successfull since obj == end
a61af66fc99e Initial load
duke
parents:
diff changeset
3275
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3277 // make sure eden top is properly aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 const Register top_addr = t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3281
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 set((intx)ch->top_addr(), top_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3283 ld_ptr(top_addr, 0, top_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 btst(MinObjAlignmentInBytesMask, top_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3285 br(Assembler::zero, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3286 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3287 stop("eden top is not properly aligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3290 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3292
a61af66fc99e Initial load
duke
parents:
diff changeset
3293
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 void MacroAssembler::tlab_allocate(
a61af66fc99e Initial load
duke
parents:
diff changeset
3295 Register obj, // result: pointer to object after successful allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 Register var_size_in_bytes, // object size in bytes if unknown at compile time; invalid otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
3297 int con_size_in_bytes, // object size in bytes if known at compile time
a61af66fc99e Initial load
duke
parents:
diff changeset
3298 Register t1, // temp register
a61af66fc99e Initial load
duke
parents:
diff changeset
3299 Label& slow_case // continuation point if fast allocation fails
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 ){
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 // make sure arguments make sense
a61af66fc99e Initial load
duke
parents:
diff changeset
3302 assert_different_registers(obj, var_size_in_bytes, t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 assert(0 <= con_size_in_bytes && is_simm13(con_size_in_bytes), "illegal object size");
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 assert((con_size_in_bytes & MinObjAlignmentInBytesMask) == 0, "object size is not multiple of alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
3305
a61af66fc99e Initial load
duke
parents:
diff changeset
3306 const Register free = t1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3307
a61af66fc99e Initial load
duke
parents:
diff changeset
3308 verify_tlab();
a61af66fc99e Initial load
duke
parents:
diff changeset
3309
a61af66fc99e Initial load
duke
parents:
diff changeset
3310 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
3311
a61af66fc99e Initial load
duke
parents:
diff changeset
3312 // calculate amount of free space
a61af66fc99e Initial load
duke
parents:
diff changeset
3313 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), free);
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 sub(free, obj, free);
a61af66fc99e Initial load
duke
parents:
diff changeset
3315
a61af66fc99e Initial load
duke
parents:
diff changeset
3316 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
3317 if (var_size_in_bytes == noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3318 cmp(free, con_size_in_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3319 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 cmp(free, var_size_in_bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
3321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3322 br(Assembler::less, false, Assembler::pn, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 // calculate the new top pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 if (var_size_in_bytes == noreg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3325 delayed()->add(obj, con_size_in_bytes, free);
a61af66fc99e Initial load
duke
parents:
diff changeset
3326 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3327 delayed()->add(obj, var_size_in_bytes, free);
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3329
a61af66fc99e Initial load
duke
parents:
diff changeset
3330 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
3331
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3333 // make sure new free pointer is properly aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3335 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
3336 btst(MinObjAlignmentInBytesMask, free);
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 br(Assembler::zero, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 stop("updated TLAB free is not properly aligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3342 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3343
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 // update the tlab top pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
3345 st_ptr(free, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3346 verify_tlab();
a61af66fc99e Initial load
duke
parents:
diff changeset
3347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3348
a61af66fc99e Initial load
duke
parents:
diff changeset
3349
a61af66fc99e Initial load
duke
parents:
diff changeset
3350 void MacroAssembler::tlab_refill(Label& retry, Label& try_eden, Label& slow_case) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3351 Register top = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3352 Register t1 = G1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3353 Register t2 = G3;
a61af66fc99e Initial load
duke
parents:
diff changeset
3354 Register t3 = O1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3355 assert_different_registers(top, t1, t2, t3, G4, G5 /* preserve G4 and G5 */);
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 Label do_refill, discard_tlab;
a61af66fc99e Initial load
duke
parents:
diff changeset
3357
a61af66fc99e Initial load
duke
parents:
diff changeset
3358 if (CMSIncrementalMode || !Universe::heap()->supports_inline_contig_alloc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 // No allocation in the shared eden.
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 br(Assembler::always, false, Assembler::pt, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
3361 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3363
a61af66fc99e Initial load
duke
parents:
diff changeset
3364 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_top_offset()), top);
a61af66fc99e Initial load
duke
parents:
diff changeset
3365 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_end_offset()), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3366 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3367
a61af66fc99e Initial load
duke
parents:
diff changeset
3368 // calculate amount of free space
a61af66fc99e Initial load
duke
parents:
diff changeset
3369 sub(t1, top, t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3370 srl_ptr(t1, LogHeapWordSize, t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3371
a61af66fc99e Initial load
duke
parents:
diff changeset
3372 // Retain tlab and allocate object in shared space if
a61af66fc99e Initial load
duke
parents:
diff changeset
3373 // the amount free in the tlab is too large to discard.
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 cmp(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3375 brx(Assembler::lessEqual, false, Assembler::pt, discard_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
3376
a61af66fc99e Initial load
duke
parents:
diff changeset
3377 // increment waste limit to prevent getting stuck on this slow path
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 delayed()->add(t2, ThreadLocalAllocBuffer::refill_waste_limit_increment(), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 st_ptr(t2, G2_thread, in_bytes(JavaThread::tlab_refill_waste_limit_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3380 if (TLABStats) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3381 // increment number of slow_allocations
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 ld(G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3383 add(t2, 1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3384 stw(t2, G2_thread, in_bytes(JavaThread::tlab_slow_allocations_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 br(Assembler::always, false, Assembler::pt, try_eden);
a61af66fc99e Initial load
duke
parents:
diff changeset
3387 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3388
a61af66fc99e Initial load
duke
parents:
diff changeset
3389 bind(discard_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 if (TLABStats) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3391 // increment number of refills
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 ld(G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3393 add(t2, 1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 stw(t2, G2_thread, in_bytes(JavaThread::tlab_number_of_refills_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3395 // accumulate wastage
a61af66fc99e Initial load
duke
parents:
diff changeset
3396 ld(G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3397 add(t2, t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3398 stw(t2, G2_thread, in_bytes(JavaThread::tlab_fast_refill_waste_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3400
a61af66fc99e Initial load
duke
parents:
diff changeset
3401 // if tlab is currently allocated (top or end != null) then
a61af66fc99e Initial load
duke
parents:
diff changeset
3402 // fill [top, end + alignment_reserve) with array object
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 br_null(top, false, Assembler::pn, do_refill);
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3405
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 set((intptr_t)markOopDesc::prototype()->copy_set_hash(0x2), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 st_ptr(t2, top, oopDesc::mark_offset_in_bytes()); // set up the mark word
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 // set klass to intArrayKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
3409 set((intptr_t)Universe::intArrayKlassObj_addr(), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 ld_ptr(t2, 0, t2);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3411 store_klass(t2, top);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3412 sub(t1, typeArrayOopDesc::header_size(T_INT), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 add(t1, ThreadLocalAllocBuffer::alignment_reserve(), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 sll_ptr(t1, log2_intptr(HeapWordSize/sizeof(jint)), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3415 st(t1, top, arrayOopDesc::length_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 verify_oop(top);
a61af66fc99e Initial load
duke
parents:
diff changeset
3417
a61af66fc99e Initial load
duke
parents:
diff changeset
3418 // refill the tlab with an eden allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 bind(do_refill);
a61af66fc99e Initial load
duke
parents:
diff changeset
3420 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 sll_ptr(t1, LogHeapWordSize, t1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3422 // add object_size ??
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 eden_allocate(top, t1, 0, t2, t3, slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
3424
a61af66fc99e Initial load
duke
parents:
diff changeset
3425 st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_start_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3426 st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_top_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3427 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3428 // check that tlab_size (t1) is still valid
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3430 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 ld_ptr(G2_thread, in_bytes(JavaThread::tlab_size_offset()), t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3432 sll_ptr(t2, LogHeapWordSize, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 cmp(t1, t2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 br(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 stop("assert(t1 == tlab_size)");
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
3438
a61af66fc99e Initial load
duke
parents:
diff changeset
3439 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
3440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3441 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
3442 add(top, t1, top); // t1 is tlab_size
a61af66fc99e Initial load
duke
parents:
diff changeset
3443 sub(top, ThreadLocalAllocBuffer::alignment_reserve_in_bytes(), top);
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 st_ptr(top, G2_thread, in_bytes(JavaThread::tlab_end_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
3445 verify_tlab();
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 br(Assembler::always, false, Assembler::pt, retry);
a61af66fc99e Initial load
duke
parents:
diff changeset
3447 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3449
a61af66fc99e Initial load
duke
parents:
diff changeset
3450 Assembler::Condition MacroAssembler::negate_condition(Assembler::Condition cond) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3451 switch (cond) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3452 // Note some conditions are synonyms for others
a61af66fc99e Initial load
duke
parents:
diff changeset
3453 case Assembler::never: return Assembler::always;
a61af66fc99e Initial load
duke
parents:
diff changeset
3454 case Assembler::zero: return Assembler::notZero;
a61af66fc99e Initial load
duke
parents:
diff changeset
3455 case Assembler::lessEqual: return Assembler::greater;
a61af66fc99e Initial load
duke
parents:
diff changeset
3456 case Assembler::less: return Assembler::greaterEqual;
a61af66fc99e Initial load
duke
parents:
diff changeset
3457 case Assembler::lessEqualUnsigned: return Assembler::greaterUnsigned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3458 case Assembler::lessUnsigned: return Assembler::greaterEqualUnsigned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3459 case Assembler::negative: return Assembler::positive;
a61af66fc99e Initial load
duke
parents:
diff changeset
3460 case Assembler::overflowSet: return Assembler::overflowClear;
a61af66fc99e Initial load
duke
parents:
diff changeset
3461 case Assembler::always: return Assembler::never;
a61af66fc99e Initial load
duke
parents:
diff changeset
3462 case Assembler::notZero: return Assembler::zero;
a61af66fc99e Initial load
duke
parents:
diff changeset
3463 case Assembler::greater: return Assembler::lessEqual;
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 case Assembler::greaterEqual: return Assembler::less;
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 case Assembler::greaterUnsigned: return Assembler::lessEqualUnsigned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3466 case Assembler::greaterEqualUnsigned: return Assembler::lessUnsigned;
a61af66fc99e Initial load
duke
parents:
diff changeset
3467 case Assembler::positive: return Assembler::negative;
a61af66fc99e Initial load
duke
parents:
diff changeset
3468 case Assembler::overflowClear: return Assembler::overflowSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
3469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3470
a61af66fc99e Initial load
duke
parents:
diff changeset
3471 ShouldNotReachHere(); return Assembler::overflowClear;
a61af66fc99e Initial load
duke
parents:
diff changeset
3472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3473
a61af66fc99e Initial load
duke
parents:
diff changeset
3474 void MacroAssembler::cond_inc(Assembler::Condition cond, address counter_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
3475 Register Rtmp1, Register Rtmp2 /*, Register Rtmp3, Register Rtmp4 */) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 Condition negated_cond = negate_condition(cond);
a61af66fc99e Initial load
duke
parents:
diff changeset
3477 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
3478 brx(negated_cond, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3479 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3480 inc_counter(counter_ptr, Rtmp1, Rtmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3481 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
3482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3483
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 void MacroAssembler::inc_counter(address counter_ptr, Register Rtmp1, Register Rtmp2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3485 Address counter_addr(Rtmp1, counter_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3486 load_contents(counter_addr, Rtmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3487 inc(Rtmp2);
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 store_contents(Rtmp2, counter_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
3489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3490
a61af66fc99e Initial load
duke
parents:
diff changeset
3491 SkipIfEqual::SkipIfEqual(
a61af66fc99e Initial load
duke
parents:
diff changeset
3492 MacroAssembler* masm, Register temp, const bool* flag_addr,
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 Assembler::Condition condition) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3494 _masm = masm;
a61af66fc99e Initial load
duke
parents:
diff changeset
3495 Address flag(temp, (address)flag_addr, relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
3496 _masm->sethi(flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 _masm->ldub(flag, temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
3498 _masm->tst(temp);
a61af66fc99e Initial load
duke
parents:
diff changeset
3499 _masm->br(condition, false, Assembler::pt, _label);
a61af66fc99e Initial load
duke
parents:
diff changeset
3500 _masm->delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3502
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 SkipIfEqual::~SkipIfEqual() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3504 _masm->bind(_label);
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3506
a61af66fc99e Initial load
duke
parents:
diff changeset
3507
a61af66fc99e Initial load
duke
parents:
diff changeset
3508 // Writes to stack successive pages until offset reached to check for
a61af66fc99e Initial load
duke
parents:
diff changeset
3509 // stack overflow + shadow pages. This clobbers tsp and scratch.
a61af66fc99e Initial load
duke
parents:
diff changeset
3510 void MacroAssembler::bang_stack_size(Register Rsize, Register Rtsp,
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 Register Rscratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 // Use stack pointer in temp stack pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 mov(SP, Rtsp);
a61af66fc99e Initial load
duke
parents:
diff changeset
3514
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 // Bang stack for total size given plus stack shadow page size.
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 // Bang one page at a time because a large size can overflow yellow and
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 // red zones (the bang will fail but stack overflow handling can't tell that
a61af66fc99e Initial load
duke
parents:
diff changeset
3518 // it was a stack overflow bang vs a regular segv).
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 int offset = os::vm_page_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 Register Roffset = Rscratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
3521
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 Label loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 bind(loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 set((-offset)+STACK_BIAS, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 st(G0, Rtsp, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 set(offset, Roffset);
a61af66fc99e Initial load
duke
parents:
diff changeset
3527 sub(Rsize, Roffset, Rsize);
a61af66fc99e Initial load
duke
parents:
diff changeset
3528 cmp(Rsize, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3529 br(Assembler::greater, false, Assembler::pn, loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 delayed()->sub(Rtsp, Roffset, Rtsp);
a61af66fc99e Initial load
duke
parents:
diff changeset
3531
a61af66fc99e Initial load
duke
parents:
diff changeset
3532 // Bang down shadow pages too.
a61af66fc99e Initial load
duke
parents:
diff changeset
3533 // The -1 because we already subtracted 1 page.
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 for (int i = 0; i< StackShadowPages-1; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 set((-i*offset)+STACK_BIAS, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 st(G0, Rtsp, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
3537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3538 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3539
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3540 void MacroAssembler::load_klass(Register s, Register d) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3541 // The number of bytes in this code is used by
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3542 // MachCallDynamicJavaNode::ret_addr_offset()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3543 // if this changes, change that.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3544 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3545 lduw(s, oopDesc::klass_offset_in_bytes(), d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3546 decode_heap_oop_not_null(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3547 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3548 ld_ptr(s, oopDesc::klass_offset_in_bytes(), d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3549 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3550 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3551
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3552 // ??? figure out src vs. dst!
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3553 void MacroAssembler::store_klass(Register d, Register s1) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3554 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3555 assert(s1 != d, "not enough registers");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3556 encode_heap_oop_not_null(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3557 // Zero out entire klass field first.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3558 st_ptr(G0, s1, oopDesc::klass_offset_in_bytes());
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3559 st(d, s1, oopDesc::klass_offset_in_bytes());
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3560 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3561 st_ptr(d, s1, oopDesc::klass_offset_in_bytes());
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3562 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3563 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3564
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3565 void MacroAssembler::load_heap_oop(const Address& s, Register d, int offset) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3566 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3567 lduw(s, d, offset);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3568 decode_heap_oop(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3569 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3570 ld_ptr(s, d, offset);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3571 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3572 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3573
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3574 void MacroAssembler::load_heap_oop(Register s1, Register s2, Register d) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3575 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3576 lduw(s1, s2, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3577 decode_heap_oop(d, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3578 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3579 ld_ptr(s1, s2, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3580 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3581 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3582
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3583 void MacroAssembler::load_heap_oop(Register s1, int simm13a, Register d) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3584 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3585 lduw(s1, simm13a, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3586 decode_heap_oop(d, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3587 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3588 ld_ptr(s1, simm13a, d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3589 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3590 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3591
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3592 void MacroAssembler::store_heap_oop(Register d, Register s1, Register s2) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3593 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3594 assert(s1 != d && s2 != d, "not enough registers");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3595 encode_heap_oop(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3596 st(d, s1, s2);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3597 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3598 st_ptr(d, s1, s2);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3599 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3600 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3601
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3602 void MacroAssembler::store_heap_oop(Register d, Register s1, int simm13a) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3603 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3604 assert(s1 != d, "not enough registers");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3605 encode_heap_oop(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3606 st(d, s1, simm13a);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3607 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3608 st_ptr(d, s1, simm13a);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3609 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3610 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3611
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3612 void MacroAssembler::store_heap_oop(Register d, const Address& a, int offset) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3613 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3614 assert(a.base() != d, "not enough registers");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3615 encode_heap_oop(d);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3616 st(d, a, offset);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3617 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3618 st_ptr(d, a, offset);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3619 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3620 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3621
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3622
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3623 void MacroAssembler::encode_heap_oop(Register src, Register dst) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3624 assert (UseCompressedOops, "must be compressed");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3625 Label done;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3626 if (src == dst) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3627 // optimize for frequent case src == dst
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3628 bpr(rc_nz, true, Assembler::pt, src, done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3629 delayed() -> sub(src, G6_heapbase, dst); // annuled if not taken
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3630 bind(done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3631 srlx(src, LogMinObjAlignmentInBytes, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3632 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3633 bpr(rc_z, false, Assembler::pn, src, done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3634 delayed() -> mov(G0, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3635 // could be moved before branch, and annulate delay,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3636 // but may add some unneeded work decoding null
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3637 sub(src, G6_heapbase, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3638 srlx(dst, LogMinObjAlignmentInBytes, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3639 bind(done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3640 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3641 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3642
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3643
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3644 void MacroAssembler::encode_heap_oop_not_null(Register r) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3645 assert (UseCompressedOops, "must be compressed");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3646 sub(r, G6_heapbase, r);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3647 srlx(r, LogMinObjAlignmentInBytes, r);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3648 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3649
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3650 // Same algorithm as oops.inline.hpp decode_heap_oop.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3651 void MacroAssembler::decode_heap_oop(Register src, Register dst) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3652 assert (UseCompressedOops, "must be compressed");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3653 Label done;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3654 sllx(src, LogMinObjAlignmentInBytes, dst);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3655 bpr(rc_nz, true, Assembler::pt, dst, done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3656 delayed() -> add(dst, G6_heapbase, dst); // annuled if not taken
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3657 bind(done);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3658 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3659
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3660 void MacroAssembler::decode_heap_oop_not_null(Register r) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3661 // Do not add assert code to this unless you change vtableStubs_sparc.cpp
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3662 // pd_code_size_limit.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3663 assert (UseCompressedOops, "must be compressed");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3664 sllx(r, LogMinObjAlignmentInBytes, r);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3665 add(r, G6_heapbase, r);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3666 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3667
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3668 void MacroAssembler::reinit_heapbase() {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3669 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3670 // call indirectly to solve generation ordering problem
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3671 Address base(G6_heapbase, (address)Universe::heap_base_addr());
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3672 load_ptr_contents(base, G6_heapbase);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3673 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
3674 }