annotate src/share/vm/c1/c1_CodeStubs.hpp @ 1721:413ad0331a0c

6977924: Changes for 6975078 produce build error with certain gcc versions Summary: The changes introduced for 6975078 assign badHeapOopVal to the _allocation field in the ResourceObj class. In 32 bit linux builds with certain versions of gcc this assignment will be flagged as an error while compiling allocation.cpp. In 32 bit builds the constant value badHeapOopVal (which is cast to an intptr_t) is negative. The _allocation field is typed as an unsigned intptr_t and gcc catches this as an error. Reviewed-by: jcoomes, ysr, phh
author johnc
date Wed, 18 Aug 2010 10:59:06 -0700
parents 126ea7725993
children d5d065957597
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1295
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class CodeEmitInfo;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class LIR_Assembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class LIR_OpVisitState;
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // CodeStubs are little 'out-of-line' pieces of code that
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // usually handle slow cases of operations. All code stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // are collected and code is emitted at the end of the
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // nmethod.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class CodeStub: public CompilationResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Label _entry; // label at the stub entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Label _continuation; // label where stub continues, if any
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
40 CodeStub() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // code generation
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void assert_no_unbound_labels() { assert(!_entry.is_unbound() && !_continuation.is_unbound(), "unbound label"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 virtual void emit_code(LIR_Assembler* e) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 virtual CodeEmitInfo* info() const { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 virtual bool is_exception_throw_stub() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 virtual bool is_range_check_stub() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 virtual bool is_divbyzero_stub() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
50 virtual void print_name(outputStream* out) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // label access
a61af66fc99e Initial load
duke
parents:
diff changeset
54 Label* entry() { return &_entry; }
a61af66fc99e Initial load
duke
parents:
diff changeset
55 Label* continuation() { return &_continuation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // for LIR
a61af66fc99e Initial load
duke
parents:
diff changeset
57 virtual void visit(LIR_OpVisitState* visit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (LIRTracePeephole && Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 tty->print("no visitor for ");
a61af66fc99e Initial load
duke
parents:
diff changeset
61 print_name(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 };
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 define_array(CodeStubArray, CodeStub*)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 define_stack(_CodeStubList, CodeStubArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 class CodeStubList: public _CodeStubList {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
74 CodeStubList(): _CodeStubList() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void append(CodeStub* stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (!contains(stub)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _CodeStubList::append(stub);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 };
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
84 class CounterOverflowStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
90 CounterOverflowStub(CodeEmitInfo* info, int bci) : _info(info), _bci(bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
100 virtual void print_name(outputStream* out) const { out->print("CounterOverflowStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 };
a61af66fc99e Initial load
duke
parents:
diff changeset
104 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 class ConversionStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Bytecodes::Code _bytecode;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 LIR_Opr _input;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 LIR_Opr _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static float float_zero;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static double double_zero;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ConversionStub(Bytecodes::Code bytecode, LIR_Opr input, LIR_Opr result)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 : _bytecode(bytecode), _input(input), _result(result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 Bytecodes::Code bytecode() { return _bytecode; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 LIR_Opr input() { return _input; }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 LIR_Opr result() { return _result; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 visitor->do_slow_case();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 visitor->do_input(_input);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 visitor->do_output(_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
130 virtual void print_name(outputStream* out) const { out->print("ConversionStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
131 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
132 };
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Throws ArrayIndexOutOfBoundsException by default but can be
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // configured to throw IndexOutOfBoundsException in constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
137 class RangeCheckStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 LIR_Opr _index;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 bool _throw_index_out_of_bounds_exception;
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
144 RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, bool throw_index_out_of_bounds_exception = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 virtual bool is_exception_throw_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 virtual bool is_range_check_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 visitor->do_input(_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
154 virtual void print_name(outputStream* out) const { out->print("RangeCheckStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
156 };
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 class DivByZeroStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
161 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
165 DivByZeroStub(CodeEmitInfo* info)
a61af66fc99e Initial load
duke
parents:
diff changeset
166 : _info(info), _offset(-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 DivByZeroStub(int offset, CodeEmitInfo* info)
a61af66fc99e Initial load
duke
parents:
diff changeset
169 : _info(info), _offset(offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 virtual bool is_exception_throw_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 virtual bool is_divbyzero_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
179 virtual void print_name(outputStream* out) const { out->print("DivByZeroStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
181 };
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 class ImplicitNullCheckStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
186 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 int _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ImplicitNullCheckStub(int offset, CodeEmitInfo* info)
a61af66fc99e Initial load
duke
parents:
diff changeset
191 : _offset(offset), _info(info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 virtual bool is_exception_throw_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
200 virtual void print_name(outputStream* out) const { out->print("ImplicitNullCheckStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
202 };
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 class NewInstanceStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
207 ciInstanceKlass* _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 LIR_Opr _klass_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 LIR_Opr _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 Runtime1::StubID _stub_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
214 NewInstanceStub(LIR_Opr klass_reg, LIR_Opr result, ciInstanceKlass* klass, CodeEmitInfo* info, Runtime1::StubID stub_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
217 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 visitor->do_input(_klass_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 visitor->do_output(_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
223 virtual void print_name(outputStream* out) const { out->print("NewInstanceStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
225 };
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 class NewTypeArrayStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 LIR_Opr _klass_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 LIR_Opr _length;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 LIR_Opr _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
236 NewTypeArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 visitor->do_input(_klass_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 visitor->do_input(_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 assert(_result->is_valid(), "must be valid"); visitor->do_output(_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
246 virtual void print_name(outputStream* out) const { out->print("NewTypeArrayStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
248 };
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 class NewObjectArrayStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
253 LIR_Opr _klass_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 LIR_Opr _length;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 LIR_Opr _result;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
259 NewObjectArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
261 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 visitor->do_input(_klass_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 visitor->do_input(_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 assert(_result->is_valid(), "must be valid"); visitor->do_output(_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
269 virtual void print_name(outputStream* out) const { out->print("NewObjectArrayStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
271 };
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 class MonitorAccessStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
276 LIR_Opr _obj_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 LIR_Opr _lock_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
280 MonitorAccessStub(LIR_Opr obj_reg, LIR_Opr lock_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 _obj_reg = obj_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _lock_reg = lock_reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
286 virtual void print_name(outputStream* out) const { out->print("MonitorAccessStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
288 };
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 class MonitorEnterStub: public MonitorAccessStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
293 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
296 MonitorEnterStub(LIR_Opr obj_reg, LIR_Opr lock_reg, CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 visitor->do_input(_obj_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 visitor->do_input(_lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
303 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
306 virtual void print_name(outputStream* out) const { out->print("MonitorEnterStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
308 };
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 class MonitorExitStub: public MonitorAccessStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
313 bool _compute_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int _monitor_ix;
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
317 MonitorExitStub(LIR_Opr lock_reg, bool compute_lock, int monitor_ix)
a61af66fc99e Initial load
duke
parents:
diff changeset
318 : MonitorAccessStub(LIR_OprFact::illegalOpr, lock_reg),
a61af66fc99e Initial load
duke
parents:
diff changeset
319 _compute_lock(compute_lock), _monitor_ix(monitor_ix) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
320 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 assert(_obj_reg->is_illegal(), "unused");
a61af66fc99e Initial load
duke
parents:
diff changeset
323 if (_compute_lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 visitor->do_temp(_lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 visitor->do_input(_lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
330 virtual void print_name(outputStream* out) const { out->print("MonitorExitStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
331 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
332 };
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 class PatchingStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
336 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
337 enum PatchID {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 access_field_id,
a61af66fc99e Initial load
duke
parents:
diff changeset
339 load_klass_id
a61af66fc99e Initial load
duke
parents:
diff changeset
340 };
a61af66fc99e Initial load
duke
parents:
diff changeset
341 enum constants {
a61af66fc99e Initial load
duke
parents:
diff changeset
342 patch_info_size = 3
a61af66fc99e Initial load
duke
parents:
diff changeset
343 };
a61af66fc99e Initial load
duke
parents:
diff changeset
344 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
345 PatchID _id;
a61af66fc99e Initial load
duke
parents:
diff changeset
346 address _pc_start;
a61af66fc99e Initial load
duke
parents:
diff changeset
347 int _bytes_to_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 Label _patched_code_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 Label _patch_site_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
350 Label _patch_site_continuation;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 Register _obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 int _oop_index; // index of the patchable oop in nmethod oop table if needed
a61af66fc99e Initial load
duke
parents:
diff changeset
354 static int _patch_info_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void align_patch_site(MacroAssembler* masm);
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
359 static int patch_info_offset() { return _patch_info_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 PatchingStub(MacroAssembler* masm, PatchID id, int oop_index = -1):
a61af66fc99e Initial load
duke
parents:
diff changeset
362 _id(id)
a61af66fc99e Initial load
duke
parents:
diff changeset
363 , _info(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
364 , _oop_index(oop_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 if (os::is_MP()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // force alignment of patch sites on MP hardware so we
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // can guarantee atomic writes to the patch site.
a61af66fc99e Initial load
duke
parents:
diff changeset
368 align_patch_site(masm);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 _pc_start = masm->pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
371 masm->bind(_patch_site_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 void install(MacroAssembler* masm, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 _info = info;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 _obj = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 masm->bind(_patch_site_continuation);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 _bytes_to_copy = masm->pc() - pc_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (_id == PatchingStub::access_field_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // embed a fixed offset to handle long patches which need to be offset by a word.
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // the patching code will just add the field offset field to this offset so
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // that we can refernce either the high or low word of a double word field.
a61af66fc99e Initial load
duke
parents:
diff changeset
383 int field_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
384 switch (patch_code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 case lir_patch_low: field_offset = lo_word_offset_in_bytes; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
386 case lir_patch_high: field_offset = hi_word_offset_in_bytes; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 case lir_patch_normal: field_offset = 0; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 NativeMovRegMem* n_move = nativeMovRegMem_at(pc_start());
a61af66fc99e Initial load
duke
parents:
diff changeset
391 n_move->set_offset(field_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 } else if (_id == load_klass_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
393 assert(_obj != noreg, "must have register object for load_klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
394 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // verify that we're pointing at a NativeMovConstReg
a61af66fc99e Initial load
duke
parents:
diff changeset
396 nativeMovConstReg_at(pc_start());
a61af66fc99e Initial load
duke
parents:
diff changeset
397 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
398 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 assert(_bytes_to_copy <= (masm->pc() - pc_start()), "not enough bytes");
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 address pc_start() const { return _pc_start; }
a61af66fc99e Initial load
duke
parents:
diff changeset
405 PatchID id() const { return _id; }
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
409 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 }
a61af66fc99e Initial load
duke
parents:
diff changeset
412 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
413 virtual void print_name(outputStream* out) const { out->print("PatchingStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
415 };
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
418 //------------------------------------------------------------------------------
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
419 // DeoptimizeStub
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
420 //
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
421 class DeoptimizeStub : public CodeStub {
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
422 private:
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
423 CodeEmitInfo* _info;
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
424
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
425 public:
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
426 DeoptimizeStub(CodeEmitInfo* info) : _info(new CodeEmitInfo(info)) {}
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
427
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
428 virtual void emit_code(LIR_Assembler* e);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
429 virtual CodeEmitInfo* info() const { return _info; }
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
430 virtual bool is_exception_throw_stub() const { return true; }
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
431 virtual void visit(LIR_OpVisitState* visitor) {
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
432 visitor->do_slow_case(_info);
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
433 }
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
434 #ifndef PRODUCT
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
435 virtual void print_name(outputStream* out) const { out->print("DeoptimizeStub"); }
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
436 #endif // PRODUCT
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
437 };
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
438
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 342
diff changeset
439
0
a61af66fc99e Initial load
duke
parents:
diff changeset
440 class SimpleExceptionStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
441 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
442 LIR_Opr _obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 Runtime1::StubID _stub;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
445
a61af66fc99e Initial load
duke
parents:
diff changeset
446 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
447 SimpleExceptionStub(Runtime1::StubID stub, LIR_Opr obj, CodeEmitInfo* info):
a61af66fc99e Initial load
duke
parents:
diff changeset
448 _obj(obj), _info(info), _stub(stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
451 void set_obj(LIR_Opr obj) {
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
452 _obj = obj;
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
453 }
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
454
0
a61af66fc99e Initial load
duke
parents:
diff changeset
455 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
456 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
457 virtual bool is_exception_throw_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
458 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 if (_obj->is_valid()) visitor->do_input(_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
463 virtual void print_name(outputStream* out) const { out->print("SimpleExceptionStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
464 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
465 };
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 class ArrayStoreExceptionStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
471 CodeEmitInfo* _info;
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
474 ArrayStoreExceptionStub(CodeEmitInfo* info);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 virtual void emit_code(LIR_Assembler* emit);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 virtual CodeEmitInfo* info() const { return _info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 virtual bool is_exception_throw_stub() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 visitor->do_slow_case(_info);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
482 virtual void print_name(outputStream* out) const { out->print("ArrayStoreExceptionStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
484 };
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 class ArrayCopyStub: public CodeStub {
a61af66fc99e Initial load
duke
parents:
diff changeset
488 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
489 LIR_OpArrayCopy* _op;
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
492 ArrayCopyStub(LIR_OpArrayCopy* op): _op(op) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 LIR_Opr src() const { return _op->src(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 LIR_Opr src_pos() const { return _op->src_pos(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
496 LIR_Opr dst() const { return _op->dst(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
497 LIR_Opr dst_pos() const { return _op->dst_pos(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
498 LIR_Opr length() const { return _op->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 LIR_Opr tmp() const { return _op->tmp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 virtual void emit_code(LIR_Assembler* e);
a61af66fc99e Initial load
duke
parents:
diff changeset
502 virtual CodeEmitInfo* info() const { return _op->info(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 virtual void visit(LIR_OpVisitState* visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // don't pass in the code emit info since it's processed in the fast path
a61af66fc99e Initial load
duke
parents:
diff changeset
505 visitor->do_slow_case();
a61af66fc99e Initial load
duke
parents:
diff changeset
506 }
a61af66fc99e Initial load
duke
parents:
diff changeset
507 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
508 virtual void print_name(outputStream* out) const { out->print("ArrayCopyStub"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
510 };
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
511
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
512 //////////////////////////////////////////////////////////////////////////////////////////
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
513 #ifndef SERIALGC
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
514
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
515 // Code stubs for Garbage-First barriers.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
516 class G1PreBarrierStub: public CodeStub {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
517 private:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
518 LIR_Opr _addr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
519 LIR_Opr _pre_val;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
520 LIR_PatchCode _patch_code;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
521 CodeEmitInfo* _info;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
522
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
523 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
524 // pre_val (a temporary register) must be a register;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
525 // addr (the address of the field to be read) must be a LIR_Address
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
526 G1PreBarrierStub(LIR_Opr addr, LIR_Opr pre_val, LIR_PatchCode patch_code, CodeEmitInfo* info) :
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
527 _addr(addr), _pre_val(pre_val), _patch_code(patch_code), _info(info)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
528 {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
529 assert(_pre_val->is_register(), "should be temporary register");
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
530 assert(_addr->is_address(), "should be the address of the field");
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
531 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
532
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
533 LIR_Opr addr() const { return _addr; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
534 LIR_Opr pre_val() const { return _pre_val; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
535 LIR_PatchCode patch_code() const { return _patch_code; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
536 CodeEmitInfo* info() const { return _info; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
537
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
538 virtual void emit_code(LIR_Assembler* e);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
539 virtual void visit(LIR_OpVisitState* visitor) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
540 // don't pass in the code emit info since it's processed in the fast
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
541 // path
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
542 if (_info != NULL)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
543 visitor->do_slow_case(_info);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
544 else
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
545 visitor->do_slow_case();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
546 visitor->do_input(_addr);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
547 visitor->do_temp(_pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
548 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
549 #ifndef PRODUCT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
550 virtual void print_name(outputStream* out) const { out->print("G1PreBarrierStub"); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
551 #endif // PRODUCT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
552 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
553
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
554 class G1PostBarrierStub: public CodeStub {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
555 private:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
556 LIR_Opr _addr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
557 LIR_Opr _new_val;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
558
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
559 static jbyte* _byte_map_base;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
560 static jbyte* byte_map_base_slow();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
561 static jbyte* byte_map_base() {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
562 if (_byte_map_base == NULL) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
563 _byte_map_base = byte_map_base_slow();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
564 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
565 return _byte_map_base;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
566 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
567
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
568 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
569 // addr (the address of the object head) and new_val must be registers.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
570 G1PostBarrierStub(LIR_Opr addr, LIR_Opr new_val): _addr(addr), _new_val(new_val) { }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
571
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
572 LIR_Opr addr() const { return _addr; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
573 LIR_Opr new_val() const { return _new_val; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
574
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
575 virtual void emit_code(LIR_Assembler* e);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
576 virtual void visit(LIR_OpVisitState* visitor) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
577 // don't pass in the code emit info since it's processed in the fast path
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
578 visitor->do_slow_case();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
579 visitor->do_input(_addr);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
580 visitor->do_input(_new_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
581 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
582 #ifndef PRODUCT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
583 virtual void print_name(outputStream* out) const { out->print("G1PostBarrierStub"); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
584 #endif // PRODUCT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
585 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
586
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
587 #endif // SERIALGC
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
588 //////////////////////////////////////////////////////////////////////////////////////////