@@ -120,7 +120,7 @@ int ArrayCopyNode::get_count(PhaseGVN *phase) const {
120
120
if (is_clonebasic ()) {
121
121
if (src_type->isa_instptr ()) {
122
122
const TypeInstPtr* inst_src = src_type->is_instptr ();
123
- ciInstanceKlass* ik = inst_src->klass ()-> as_instance_klass ();
123
+ ciInstanceKlass* ik = inst_src->instance_klass ();
124
124
// ciInstanceKlass::nof_nonstatic_fields() doesn't take injected
125
125
// fields into account. They are rare anyway so easier to simply
126
126
// skip instances with injected fields.
@@ -193,8 +193,10 @@ Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int c
193
193
phase->is_IterGVN ()->_worklist .push (mem);
194
194
}
195
195
196
+
197
+ ciInstanceKlass* ik = inst_src->instance_klass ();
198
+
196
199
if (!inst_src->klass_is_exact ()) {
197
- ciInstanceKlass* ik = inst_src->klass ()->as_instance_klass ();
198
200
assert (!ik->is_interface (), " inconsistent klass hierarchy" );
199
201
if (ik->has_subklass ()) {
200
202
// Concurrent class loading.
@@ -205,7 +207,6 @@ Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int c
205
207
}
206
208
}
207
209
208
- ciInstanceKlass* ik = inst_src->klass ()->as_instance_klass ();
209
210
assert (ik->nof_nonstatic_fields () <= ArrayCopyLoadStoreMaxElem, " too many fields" );
210
211
211
212
BarrierSetC2* bs = BarrierSet::barrier_set ()->barrier_set_c2 ();
@@ -263,17 +264,16 @@ bool ArrayCopyNode::prepare_array_copy(PhaseGVN *phase, bool can_reshape,
263
264
264
265
// newly allocated object is guaranteed to not overlap with source object
265
266
disjoint_bases = is_alloc_tightly_coupled ();
266
-
267
- if (ary_src == NULL || ary_src->klass () == NULL ||
268
- ary_dest == NULL || ary_dest->klass () == NULL ) {
267
+ if (ary_src == NULL || ary_src->elem () == Type::BOTTOM ||
268
+ ary_dest == NULL || ary_dest->elem () == Type::BOTTOM) {
269
269
// We don't know if arguments are arrays
270
270
return false ;
271
271
}
272
272
273
- BasicType src_elem = ary_src->klass ()->as_array_klass ()-> element_type ()-> basic_type ();
274
- BasicType dest_elem = ary_dest->klass ()->as_array_klass ()-> element_type ()-> basic_type ();
275
- if (is_reference_type (src_elem)) src_elem = T_OBJECT;
276
- if (is_reference_type (dest_elem)) dest_elem = T_OBJECT;
273
+ BasicType src_elem = ary_src->elem ()->array_element_basic_type ();
274
+ BasicType dest_elem = ary_dest->elem ()->array_element_basic_type ();
275
+ if (is_reference_type (src_elem, true )) src_elem = T_OBJECT;
276
+ if (is_reference_type (dest_elem, true )) dest_elem = T_OBJECT;
277
277
278
278
if (src_elem != dest_elem || dest_elem == T_VOID) {
279
279
// We don't know if arguments are arrays of the same type
@@ -323,8 +323,8 @@ bool ArrayCopyNode::prepare_array_copy(PhaseGVN *phase, bool can_reshape,
323
323
324
324
disjoint_bases = true ;
325
325
326
- BasicType elem = ary_src->klass ()->as_array_klass ()->element_type ()-> basic_type ();
327
- if (is_reference_type (elem)) {
326
+ BasicType elem = ary_src->isa_aryptr ()->elem ()->array_element_basic_type ();
327
+ if (is_reference_type (elem, true )) {
328
328
elem = T_OBJECT;
329
329
}
330
330
@@ -734,7 +734,9 @@ bool ArrayCopyNode::modifies(intptr_t offset_lo, intptr_t offset_hi, PhaseTransf
734
734
return !must_modify;
735
735
}
736
736
737
- BasicType ary_elem = ary_t ->klass ()->as_array_klass ()->element_type ()->basic_type ();
737
+ BasicType ary_elem = ary_t ->isa_aryptr ()->elem ()->array_element_basic_type ();
738
+ if (is_reference_type (ary_elem, true )) ary_elem = T_OBJECT;
739
+
738
740
uint header = arrayOopDesc::base_offset_in_bytes (ary_elem);
739
741
uint elemsize = type2aelembytes (ary_elem);
740
742
0 commit comments