author | kvn |
Thu, 20 Mar 2014 17:49:27 -0700 | |
changeset 23491 | f690330b10b9 |
parent 23190 | e8bbf9cd711e |
child 23528 | 8f1a7f5e8066 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15480
a9e84da84519
8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents:
14835
diff
changeset
|
2 |
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4893
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4893
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4893
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "compiler/compileLog.hpp" |
|
27 |
#include "interpreter/linkResolver.hpp" |
|
28 |
#include "memory/universe.inline.hpp" |
|
29 |
#include "oops/objArrayKlass.hpp" |
|
30 |
#include "opto/addnode.hpp" |
|
31 |
#include "opto/memnode.hpp" |
|
32 |
#include "opto/parse.hpp" |
|
33 |
#include "opto/rootnode.hpp" |
|
34 |
#include "opto/runtime.hpp" |
|
35 |
#include "opto/subnode.hpp" |
|
36 |
#include "runtime/deoptimization.hpp" |
|
37 |
#include "runtime/handles.inline.hpp" |
|
1 | 38 |
|
39 |
//============================================================================= |
|
40 |
// Helper methods for _get* and _put* bytecodes |
|
41 |
//============================================================================= |
|
42 |
bool Parse::static_field_ok_in_clinit(ciField *field, ciMethod *method) { |
|
43 |
// Could be the field_holder's <clinit> method, or <clinit> for a subklass. |
|
44 |
// Better to check now than to Deoptimize as soon as we execute |
|
45 |
assert( field->is_static(), "Only check if field is static"); |
|
46 |
// is_being_initialized() is too generous. It allows access to statics |
|
47 |
// by threads that are not running the <clinit> before the <clinit> finishes. |
|
48 |
// return field->holder()->is_being_initialized(); |
|
49 |
||
50 |
// The following restriction is correct but conservative. |
|
51 |
// It is also desirable to allow compilation of methods called from <clinit> |
|
52 |
// but this generated code will need to be made safe for execution by |
|
53 |
// other threads, or the transition from interpreted to compiled code would |
|
54 |
// need to be guarded. |
|
55 |
ciInstanceKlass *field_holder = field->holder(); |
|
56 |
||
57 |
bool access_OK = false; |
|
58 |
if (method->holder()->is_subclass_of(field_holder)) { |
|
59 |
if (method->is_static()) { |
|
60 |
if (method->name() == ciSymbol::class_initializer_name()) { |
|
61 |
// OK to access static fields inside initializer |
|
62 |
access_OK = true; |
|
63 |
} |
|
64 |
} else { |
|
65 |
if (method->name() == ciSymbol::object_initializer_name()) { |
|
66 |
// It's also OK to access static fields inside a constructor, |
|
67 |
// because any thread calling the constructor must first have |
|
68 |
// synchronized on the class by executing a '_new' bytecode. |
|
69 |
access_OK = true; |
|
70 |
} |
|
71 |
} |
|
72 |
} |
|
73 |
||
74 |
return access_OK; |
|
75 |
||
76 |
} |
|
77 |
||
78 |
||
79 |
void Parse::do_field_access(bool is_get, bool is_field) { |
|
80 |
bool will_link; |
|
81 |
ciField* field = iter().get_field(will_link); |
|
82 |
assert(will_link, "getfield: typeflow responsibility"); |
|
83 |
||
84 |
ciInstanceKlass* field_holder = field->holder(); |
|
85 |
||
86 |
if (is_field == field->is_static()) { |
|
87 |
// Interpreter will throw java_lang_IncompatibleClassChangeError |
|
88 |
// Check this before allowing <clinit> methods to access static fields |
|
89 |
uncommon_trap(Deoptimization::Reason_unhandled, |
|
90 |
Deoptimization::Action_none); |
|
91 |
return; |
|
92 |
} |
|
93 |
||
94 |
if (!is_field && !field_holder->is_initialized()) { |
|
95 |
if (!static_field_ok_in_clinit(field, method())) { |
|
96 |
uncommon_trap(Deoptimization::Reason_uninitialized, |
|
97 |
Deoptimization::Action_reinterpret, |
|
98 |
NULL, "!static_field_ok_in_clinit"); |
|
99 |
return; |
|
100 |
} |
|
101 |
} |
|
102 |
||
10510
ab626d1bdf53
7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents:
10265
diff
changeset
|
103 |
// Deoptimize on putfield writes to call site target field. |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
104 |
if (!is_get && field->is_call_site_target()) { |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
105 |
uncommon_trap(Deoptimization::Reason_unhandled, |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
106 |
Deoptimization::Action_reinterpret, |
10510
ab626d1bdf53
7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents:
10265
diff
changeset
|
107 |
NULL, "put to call site target field"); |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
108 |
return; |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
109 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
10028
diff
changeset
|
110 |
|
1 | 111 |
assert(field->will_link(method()->holder(), bc()), "getfield: typeflow responsibility"); |
112 |
||
113 |
// Note: We do not check for an unloaded field type here any more. |
|
114 |
||
115 |
// Generate code for the object pointer. |
|
116 |
Node* obj; |
|
117 |
if (is_field) { |
|
118 |
int obj_depth = is_get ? 0 : field->type()->size(); |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
119 |
obj = null_check(peek(obj_depth)); |
1 | 120 |
// Compile-time detect of null-exception? |
121 |
if (stopped()) return; |
|
122 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
123 |
#ifdef ASSERT |
1 | 124 |
const TypeInstPtr *tjp = TypeInstPtr::make(TypePtr::NotNull, iter().get_declared_field_holder()); |
125 |
assert(_gvn.type(obj)->higher_equal(tjp), "cast_up is no longer needed"); |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
126 |
#endif |
1 | 127 |
|
128 |
if (is_get) { |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
129 |
(void) pop(); // pop receiver before getting |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
130 |
do_get_xxx(obj, field, is_field); |
1 | 131 |
} else { |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
132 |
do_put_xxx(obj, field, is_field); |
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
133 |
(void) pop(); // pop receiver after putting |
1 | 134 |
} |
135 |
} else { |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
136 |
const TypeInstPtr* tip = TypeInstPtr::make(field_holder->java_mirror()); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
137 |
obj = _gvn.makecon(tip); |
1 | 138 |
if (is_get) { |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
139 |
do_get_xxx(obj, field, is_field); |
1 | 140 |
} else { |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
141 |
do_put_xxx(obj, field, is_field); |
1 | 142 |
} |
143 |
} |
|
144 |
} |
|
145 |
||
146 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
147 |
void Parse::do_get_xxx(Node* obj, ciField* field, bool is_field) { |
1 | 148 |
// Does this field have a constant value? If so, just push the value. |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
149 |
if (field->is_constant()) { |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
150 |
// final or stable field |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
151 |
const Type* stable_type = NULL; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
152 |
if (FoldStableValues && field->is_stable()) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
153 |
stable_type = Type::get_const_type(field->type()); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
154 |
if (field->type()->is_array_klass()) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
155 |
int stable_dimension = field->type()->as_array_klass()->dimension(); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
156 |
stable_type = stable_type->is_aryptr()->cast_to_stable(true, stable_dimension); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
157 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
158 |
} |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
159 |
if (field->is_static()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
160 |
// final static field |
17383 | 161 |
if (C->eliminate_boxing()) { |
162 |
// The pointers in the autobox arrays are always non-null. |
|
163 |
ciSymbol* klass_name = field->holder()->name(); |
|
164 |
if (field->name() == ciSymbol::cache_field_name() && |
|
165 |
field->holder()->uses_default_loader() && |
|
166 |
(klass_name == ciSymbol::java_lang_Character_CharacterCache() || |
|
167 |
klass_name == ciSymbol::java_lang_Byte_ByteCache() || |
|
168 |
klass_name == ciSymbol::java_lang_Short_ShortCache() || |
|
169 |
klass_name == ciSymbol::java_lang_Integer_IntegerCache() || |
|
170 |
klass_name == ciSymbol::java_lang_Long_LongCache())) { |
|
171 |
bool require_const = true; |
|
172 |
bool autobox_cache = true; |
|
173 |
if (push_constant(field->constant_value(), require_const, autobox_cache)) { |
|
174 |
return; |
|
175 |
} |
|
176 |
} |
|
177 |
} |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
178 |
if (push_constant(field->constant_value(), false, false, stable_type)) |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
179 |
return; |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
180 |
} else { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
181 |
// final or stable non-static field |
10511
22b3580bd8bb
7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents:
10510
diff
changeset
|
182 |
// Treat final non-static fields of trusted classes (classes in |
22b3580bd8bb
7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents:
10510
diff
changeset
|
183 |
// java.lang.invoke and sun.invoke packages and subpackages) as |
22b3580bd8bb
7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents:
10510
diff
changeset
|
184 |
// compile time constants. |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
185 |
if (obj->is_Con()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
186 |
const TypeOopPtr* oop_ptr = obj->bottom_type()->isa_oopptr(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
187 |
ciObject* constant_oop = oop_ptr->const_oop(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
188 |
ciConstant constant = field->constant_value_of(constant_oop); |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
189 |
if (FoldStableValues && field->is_stable() && constant.is_null_or_zero()) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
190 |
// fall through to field load; the field is not yet initialized |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
191 |
} else { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
192 |
if (push_constant(constant, true, false, stable_type)) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
193 |
return; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
194 |
} |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
195 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
196 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
197 |
} |
1 | 198 |
|
199 |
ciType* field_klass = field->type(); |
|
200 |
bool is_vol = field->is_volatile(); |
|
201 |
||
202 |
// Compute address and memory type. |
|
203 |
int offset = field->offset_in_bytes(); |
|
204 |
const TypePtr* adr_type = C->alias_type(field)->adr_type(); |
|
205 |
Node *adr = basic_plus_adr(obj, obj, offset); |
|
206 |
BasicType bt = field->layout_type(); |
|
207 |
||
208 |
// Build the resultant type of the load |
|
209 |
const Type *type; |
|
210 |
||
211 |
bool must_assert_null = false; |
|
212 |
||
213 |
if( bt == T_OBJECT ) { |
|
214 |
if (!field->type()->is_loaded()) { |
|
215 |
type = TypeInstPtr::BOTTOM; |
|
216 |
must_assert_null = true; |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4470
diff
changeset
|
217 |
} else if (field->is_constant() && field->is_static()) { |
1 | 218 |
// This can happen if the constant oop is non-perm. |
219 |
ciObject* con = field->constant_value().as_object(); |
|
220 |
// Do not "join" in the previous type; it doesn't add value, |
|
221 |
// and may yield a vacuous result if the field is of interface type. |
|
222 |
type = TypeOopPtr::make_from_constant(con)->isa_oopptr(); |
|
223 |
assert(type != NULL, "field singleton type must be consistent"); |
|
224 |
} else { |
|
225 |
type = TypeOopPtr::make_from_klass(field_klass->as_klass()); |
|
226 |
} |
|
227 |
} else { |
|
228 |
type = Type::get_const_basic_type(bt); |
|
229 |
} |
|
22868
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
230 |
if (support_IRIW_for_not_multiple_copy_atomic_cpu && field->is_volatile()) { |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
231 |
insert_mem_bar(Op_MemBarVolatile); // StoreLoad barrier |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
232 |
} |
1 | 233 |
// Build the load. |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
234 |
// |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
235 |
MemNode::MemOrd mo = is_vol ? MemNode::acquire : MemNode::unordered; |
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22873
diff
changeset
|
236 |
bool needs_atomic_access = is_vol || AlwaysAtomicAccesses; |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22873
diff
changeset
|
237 |
Node* ld = make_load(NULL, adr, type, bt, adr_type, mo, needs_atomic_access); |
1 | 238 |
|
239 |
// Adjust Java stack |
|
240 |
if (type2size[bt] == 1) |
|
241 |
push(ld); |
|
242 |
else |
|
243 |
push_pair(ld); |
|
244 |
||
245 |
if (must_assert_null) { |
|
246 |
// Do not take a trap here. It's possible that the program |
|
247 |
// will never load the field's class, and will happily see |
|
248 |
// null values in this field forever. Don't stumble into a |
|
249 |
// trap for such a program, or we might get a long series |
|
250 |
// of useless recompilations. (Or, we might load a class |
|
251 |
// which should not be loaded.) If we ever see a non-null |
|
252 |
// value, we will then trap and recompile. (The trap will |
|
253 |
// not need to mention the class index, since the class will |
|
254 |
// already have been loaded if we ever see a non-null value.) |
|
255 |
// uncommon_trap(iter().get_field_signature_index()); |
|
256 |
#ifndef PRODUCT |
|
257 |
if (PrintOpto && (Verbose || WizardMode)) { |
|
258 |
method()->print_name(); tty->print_cr(" asserting nullness of field at bci: %d", bci()); |
|
259 |
} |
|
260 |
#endif |
|
261 |
if (C->log() != NULL) { |
|
262 |
C->log()->elem("assert_null reason='field' klass='%d'", |
|
263 |
C->log()->identify(field->type())); |
|
264 |
} |
|
265 |
// If there is going to be a trap, put it at the next bytecode: |
|
266 |
set_bci(iter().next_bci()); |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
267 |
null_assert(peek()); |
1 | 268 |
set_bci(iter().cur_bci()); // put it back |
269 |
} |
|
270 |
||
271 |
// If reference is volatile, prevent following memory ops from |
|
272 |
// floating up past the volatile read. Also prevents commoning |
|
273 |
// another volatile read. |
|
274 |
if (field->is_volatile()) { |
|
275 |
// Memory barrier includes bogus read of value to force load BEFORE membar |
|
276 |
insert_mem_bar(Op_MemBarAcquire, ld); |
|
277 |
} |
|
278 |
} |
|
279 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8676
diff
changeset
|
280 |
void Parse::do_put_xxx(Node* obj, ciField* field, bool is_field) { |
1 | 281 |
bool is_vol = field->is_volatile(); |
282 |
// If reference is volatile, prevent following memory ops from |
|
283 |
// floating down past the volatile write. Also prevents commoning |
|
284 |
// another volatile read. |
|
285 |
if (is_vol) insert_mem_bar(Op_MemBarRelease); |
|
286 |
||
287 |
// Compute address and memory type. |
|
288 |
int offset = field->offset_in_bytes(); |
|
289 |
const TypePtr* adr_type = C->alias_type(field)->adr_type(); |
|
290 |
Node* adr = basic_plus_adr(obj, obj, offset); |
|
291 |
BasicType bt = field->layout_type(); |
|
292 |
// Value to be stored |
|
293 |
Node* val = type2size[bt] == 1 ? pop() : pop_pair(); |
|
294 |
// Round doubles before storing |
|
295 |
if (bt == T_DOUBLE) val = dstore_rounding(val); |
|
296 |
||
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
297 |
// Conservatively release stores of object references. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
298 |
const MemNode::MemOrd mo = |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
299 |
is_vol ? |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
300 |
// Volatile fields need releasing stores. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
301 |
MemNode::release : |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
302 |
// Non-volatile fields also need releasing stores if they hold an |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
303 |
// object reference, because the object reference might point to |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
304 |
// a freshly created object. |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
305 |
StoreNode::release_if_reference(bt); |
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
306 |
|
1 | 307 |
// Store the value. |
308 |
Node* store; |
|
309 |
if (bt == T_OBJECT) { |
|
3178 | 310 |
const TypeOopPtr* field_type; |
1 | 311 |
if (!field->type()->is_loaded()) { |
312 |
field_type = TypeInstPtr::BOTTOM; |
|
313 |
} else { |
|
314 |
field_type = TypeOopPtr::make_from_klass(field->type()->as_klass()); |
|
315 |
} |
|
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
316 |
store = store_oop_to_object(control(), obj, adr, adr_type, val, field_type, bt, mo); |
1 | 317 |
} else { |
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22873
diff
changeset
|
318 |
bool needs_atomic_access = is_vol || AlwaysAtomicAccesses; |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22873
diff
changeset
|
319 |
store = store_to_memory(control(), adr, val, bt, adr_type, mo, needs_atomic_access); |
1 | 320 |
} |
321 |
||
322 |
// If reference is volatile, prevent following volatiles ops from |
|
323 |
// floating up before the volatile write. |
|
324 |
if (is_vol) { |
|
22868
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
325 |
// If not multiple copy atomic, we do the MemBarVolatile before the load. |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
326 |
if (!support_IRIW_for_not_multiple_copy_atomic_cpu) { |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
327 |
insert_mem_bar(Op_MemBarVolatile); // Use fat membar |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
328 |
} |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
329 |
// Remember we wrote a volatile field. |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
330 |
// For not multiple copy atomic cpu (ppc64) a barrier should be issued |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
331 |
// in constructors which have such stores. See do_exits() in parse1.cpp. |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
332 |
if (is_field) { |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
333 |
set_wrote_volatile(true); |
7f6eb436873b
8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents:
22845
diff
changeset
|
334 |
} |
1 | 335 |
} |
336 |
||
23190
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
337 |
if (is_field) { |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
338 |
set_wrote_fields(true); |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
339 |
} |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
340 |
|
1 | 341 |
// If the field is final, the rules of Java say we are in <init> or <clinit>. |
342 |
// Note the presence of writes to final non-static fields, so that we |
|
343 |
// can insert a memory barrier later on to keep the writes from floating |
|
344 |
// out of the constructor. |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
345 |
// Any method can write a @Stable field; insert memory barriers after those also. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
346 |
if (is_field && (field->is_final() || field->is_stable())) { |
23190
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
347 |
if (field->is_final()) { |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
348 |
set_wrote_final(true); |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
349 |
} |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
350 |
if (field->is_stable()) { |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
351 |
set_wrote_stable(true); |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
352 |
} |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
353 |
|
17383 | 354 |
// Preserve allocation ptr to create precedent edge to it in membar |
355 |
// generated on exit from constructor. |
|
356 |
if (C->eliminate_boxing() && |
|
357 |
adr_type->isa_oopptr() && adr_type->is_oopptr()->is_ptr_to_boxed_value() && |
|
358 |
AllocateNode::Ideal_allocation(obj, &_gvn) != NULL) { |
|
359 |
set_alloc_with_final(obj); |
|
360 |
} |
|
1 | 361 |
} |
362 |
} |
|
363 |
||
364 |
||
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
365 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
366 |
bool Parse::push_constant(ciConstant constant, bool require_constant, bool is_autobox_cache, const Type* stable_type) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
367 |
const Type* con_type = Type::make_from_constant(constant, require_constant, is_autobox_cache); |
1 | 368 |
switch (constant.basic_type()) { |
369 |
case T_ARRAY: |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
370 |
case T_OBJECT: |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
371 |
// cases: |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
372 |
// can_be_constant = (oop not scavengable || ScavengeRootsInCode != 0) |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
373 |
// should_be_constant = (oop not scavengable || ScavengeRootsInCode >= 2) |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
374 |
// An oop is not scavengable if it is in the perm gen. |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
375 |
if (stable_type != NULL && con_type != NULL && con_type->isa_oopptr()) |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
19770
diff
changeset
|
376 |
con_type = con_type->join_speculative(stable_type); |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
377 |
break; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
378 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
379 |
case T_ILLEGAL: |
1 | 380 |
// Invalid ciConstant returned due to OutOfMemoryError in the CI |
381 |
assert(C->env()->failing(), "otherwise should not see this"); |
|
382 |
// These always occur because of object types; we are going to |
|
383 |
// bail out anyway, so make the stack depths match up |
|
384 |
push( zerocon(T_OBJECT) ); |
|
385 |
return false; |
|
386 |
} |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
387 |
|
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
388 |
if (con_type == NULL) |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
389 |
// we cannot inline the oop, but we can use it later to narrow a type |
1 | 390 |
return false; |
391 |
||
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18956
diff
changeset
|
392 |
push_node(constant.basic_type(), makecon(con_type)); |
1 | 393 |
return true; |
394 |
} |
|
395 |
||
396 |
||
397 |
//============================================================================= |
|
398 |
void Parse::do_anewarray() { |
|
399 |
bool will_link; |
|
400 |
ciKlass* klass = iter().get_klass(will_link); |
|
401 |
||
402 |
// Uncommon Trap when class that array contains is not loaded |
|
403 |
// we need the loaded class for the rest of graph; do not |
|
404 |
// initialize the container class (see Java spec)!!! |
|
405 |
assert(will_link, "anewarray: typeflow responsibility"); |
|
406 |
||
407 |
ciObjArrayKlass* array_klass = ciObjArrayKlass::make(klass); |
|
408 |
// Check that array_klass object is loaded |
|
409 |
if (!array_klass->is_loaded()) { |
|
410 |
// Generate uncommon_trap for unloaded array_class |
|
411 |
uncommon_trap(Deoptimization::Reason_unloaded, |
|
412 |
Deoptimization::Action_reinterpret, |
|
413 |
array_klass); |
|
414 |
return; |
|
415 |
} |
|
416 |
||
417 |
kill_dead_locals(); |
|
418 |
||
419 |
const TypeKlassPtr* array_klass_type = TypeKlassPtr::make(array_klass); |
|
420 |
Node* count_val = pop(); |
|
2574
1d5f85c2d755
6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents:
670
diff
changeset
|
421 |
Node* obj = new_array(makecon(array_klass_type), count_val, 1); |
1 | 422 |
push(obj); |
423 |
} |
|
424 |
||
425 |
||
426 |
void Parse::do_newarray(BasicType elem_type) { |
|
427 |
kill_dead_locals(); |
|
428 |
||
429 |
Node* count_val = pop(); |
|
430 |
const TypeKlassPtr* array_klass = TypeKlassPtr::make(ciTypeArrayKlass::make(elem_type)); |
|
2574
1d5f85c2d755
6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents:
670
diff
changeset
|
431 |
Node* obj = new_array(makecon(array_klass), count_val, 1); |
1 | 432 |
// Push resultant oop onto stack |
433 |
push(obj); |
|
434 |
} |
|
435 |
||
436 |
// Expand simple expressions like new int[3][5] and new Object[2][nonConLen]. |
|
437 |
// Also handle the degenerate 1-dimensional case of anewarray. |
|
2574
1d5f85c2d755
6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents:
670
diff
changeset
|
438 |
Node* Parse::expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions, int nargs) { |
1 | 439 |
Node* length = lengths[0]; |
440 |
assert(length != NULL, ""); |
|
2574
1d5f85c2d755
6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents:
670
diff
changeset
|
441 |
Node* array = new_array(makecon(TypeKlassPtr::make(array_klass)), length, nargs); |
1 | 442 |
if (ndimensions > 1) { |
443 |
jint length_con = find_int_con(length, -1); |
|
444 |
guarantee(length_con >= 0, "non-constant multianewarray"); |
|
445 |
ciArrayKlass* array_klass_1 = array_klass->as_obj_array_klass()->element_klass()->as_array_klass(); |
|
446 |
const TypePtr* adr_type = TypeAryPtr::OOPS; |
|
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3178
diff
changeset
|
447 |
const TypeOopPtr* elemtype = _gvn.type(array)->is_aryptr()->elem()->make_oopptr(); |
1 | 448 |
const intptr_t header = arrayOopDesc::base_offset_in_bytes(T_OBJECT); |
449 |
for (jint i = 0; i < length_con; i++) { |
|
2574
1d5f85c2d755
6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents:
670
diff
changeset
|
450 |
Node* elem = expand_multianewarray(array_klass_1, &lengths[1], ndimensions-1, nargs); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
353
diff
changeset
|
451 |
intptr_t offset = header + ((intptr_t)i << LogBytesPerHeapOop); |
1 | 452 |
Node* eaddr = basic_plus_adr(array, offset); |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
453 |
store_oop_to_array(control(), array, eaddr, adr_type, elem, elemtype, T_OBJECT, MemNode::unordered); |
1 | 454 |
} |
455 |
} |
|
456 |
return array; |
|
457 |
} |
|
458 |
||
459 |
void Parse::do_multianewarray() { |
|
460 |
int ndimensions = iter().get_dimensions(); |
|
461 |
||
462 |
// the m-dimensional array |
|
463 |
bool will_link; |
|
464 |
ciArrayKlass* array_klass = iter().get_klass(will_link)->as_array_klass(); |
|
465 |
assert(will_link, "multianewarray: typeflow responsibility"); |
|
466 |
||
467 |
// Note: Array classes are always initialized; no is_initialized check. |
|
468 |
||
469 |
kill_dead_locals(); |
|
470 |
||
471 |
// get the lengths from the stack (first dimension is on top) |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
472 |
Node** length = NEW_RESOURCE_ARRAY(Node*, ndimensions + 1); |
1 | 473 |
length[ndimensions] = NULL; // terminating null for make_runtime_call |
474 |
int j; |
|
475 |
for (j = ndimensions-1; j >= 0 ; j--) length[j] = pop(); |
|
476 |
||
477 |
// The original expression was of this form: new T[length0][length1]... |
|
478 |
// It is often the case that the lengths are small (except the last). |
|
479 |
// If that happens, use the fast 1-d creator a constant number of times. |
|
480 |
const jint expand_limit = MIN2((juint)MultiArrayExpandLimit, (juint)100); |
|
481 |
jint expand_count = 1; // count of allocations in the expansion |
|
482 |
jint expand_fanout = 1; // running total fanout |
|
483 |
for (j = 0; j < ndimensions-1; j++) { |
|
484 |
jint dim_con = find_int_con(length[j], -1); |
|
485 |
expand_fanout *= dim_con; |
|
486 |
expand_count += expand_fanout; // count the level-J sub-arrays |
|
353 | 487 |
if (dim_con <= 0 |
1 | 488 |
|| dim_con > expand_limit |
489 |
|| expand_count > expand_limit) { |
|
490 |
expand_count = 0; |
|
491 |
break; |
|
492 |
} |
|
493 |
} |
|
494 |
||
495 |
// Can use multianewarray instead of [a]newarray if only one dimension, |
|
496 |
// or if all non-final dimensions are small constants. |
|
4893
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
497 |
if (ndimensions == 1 || (1 <= expand_count && expand_count <= expand_limit)) { |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
498 |
Node* obj = NULL; |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
499 |
// Set the original stack and the reexecute bit for the interpreter |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
500 |
// to reexecute the multianewarray bytecode if deoptimization happens. |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
501 |
// Do it unconditionally even for one dimension multianewarray. |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
502 |
// Note: the reexecute bit will be set in GraphKit::add_safepoint_edges() |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
503 |
// when AllocateArray node for newarray is created. |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
504 |
{ PreserveReexecuteState preexecs(this); |
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
505 |
inc_sp(ndimensions); |
4893
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
506 |
// Pass 0 as nargs since uncommon trap code does not need to restore stack. |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
507 |
obj = expand_multianewarray(array_klass, &length[0], ndimensions, 0); |
fedc27b54caa
6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents:
4567
diff
changeset
|
508 |
} //original reexecute and sp are set back here |
1 | 509 |
push(obj); |
510 |
return; |
|
511 |
} |
|
512 |
||
513 |
address fun = NULL; |
|
514 |
switch (ndimensions) { |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
515 |
case 1: ShouldNotReachHere(); break; |
1 | 516 |
case 2: fun = OptoRuntime::multianewarray2_Java(); break; |
517 |
case 3: fun = OptoRuntime::multianewarray3_Java(); break; |
|
518 |
case 4: fun = OptoRuntime::multianewarray4_Java(); break; |
|
519 |
case 5: fun = OptoRuntime::multianewarray5_Java(); break; |
|
520 |
}; |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
521 |
Node* c = NULL; |
1 | 522 |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
523 |
if (fun != NULL) { |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
524 |
c = make_runtime_call(RC_NO_LEAF | RC_NO_IO, |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
525 |
OptoRuntime::multianewarray_Type(ndimensions), |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
526 |
fun, NULL, TypeRawPtr::BOTTOM, |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
527 |
makecon(TypeKlassPtr::make(array_klass)), |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
528 |
length[0], length[1], length[2], |
15480
a9e84da84519
8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents:
14835
diff
changeset
|
529 |
(ndimensions > 2) ? length[3] : NULL, |
a9e84da84519
8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents:
14835
diff
changeset
|
530 |
(ndimensions > 3) ? length[4] : NULL); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
531 |
} else { |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
532 |
// Create a java array for dimension sizes |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
533 |
Node* dims = NULL; |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
534 |
{ PreserveReexecuteState preexecs(this); |
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13963
diff
changeset
|
535 |
inc_sp(ndimensions); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
536 |
Node* dims_array_klass = makecon(TypeKlassPtr::make(ciArrayKlass::make(ciType::make(T_INT)))); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
537 |
dims = new_array(dims_array_klass, intcon(ndimensions), 0); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
538 |
|
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
539 |
// Fill-in it with values |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
540 |
for (j = 0; j < ndimensions; j++) { |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
541 |
Node *dims_elem = array_element_address(dims, intcon(j), T_INT); |
22845
d8812d0ff387
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents:
19770
diff
changeset
|
542 |
store_to_memory(control(), dims_elem, length[j], T_INT, TypeAryPtr::INTS, MemNode::unordered); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
543 |
} |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
544 |
} |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
545 |
|
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
546 |
c = make_runtime_call(RC_NO_LEAF | RC_NO_IO, |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
547 |
OptoRuntime::multianewarrayN_Type(), |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
548 |
OptoRuntime::multianewarrayN_Java(), NULL, TypeRawPtr::BOTTOM, |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
549 |
makecon(TypeKlassPtr::make(array_klass)), |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
550 |
dims); |
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
551 |
} |
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14621
diff
changeset
|
552 |
make_slow_call_ex(c, env()->Throwable_klass(), false); |
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
553 |
|
13895
f6dfe4123709
7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents:
10511
diff
changeset
|
554 |
Node* res = _gvn.transform(new (C) ProjNode(c, TypeFunc::Parms)); |
1 | 555 |
|
556 |
const Type* type = TypeOopPtr::make_from_klass_raw(array_klass); |
|
557 |
||
558 |
// Improve the type: We know it's not null, exact, and of a given length. |
|
559 |
type = type->is_ptr()->cast_to_ptr_type(TypePtr::NotNull); |
|
560 |
type = type->is_aryptr()->cast_to_exactness(true); |
|
561 |
||
562 |
const TypeInt* ltype = _gvn.find_int_type(length[0]); |
|
563 |
if (ltype != NULL) |
|
564 |
type = type->is_aryptr()->cast_to_size(ltype); |
|
565 |
||
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
8725
diff
changeset
|
566 |
// We cannot sharpen the nested sub-arrays, since the top level is mutable. |
1 | 567 |
|
13895
f6dfe4123709
7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents:
10511
diff
changeset
|
568 |
Node* cast = _gvn.transform( new (C) CheckCastPPNode(control(), res, type) ); |
1 | 569 |
push(cast); |
570 |
||
571 |
// Possible improvements: |
|
572 |
// - Make a fast path for small multi-arrays. (W/ implicit init. loops.) |
|
573 |
// - Issue CastII against length[*] values, to TypeInt::POS. |
|
574 |
} |