Skip to content

Commit aa7ccdf

Browse files
committedMay 11, 2022
8275201: C2: hide klass() accessor from TypeOopPtr and typeKlassPtr subclasses
Reviewed-by: vlivanov, iveresov
1 parent 6586e5a commit aa7ccdf

33 files changed

+1041
-661
lines changed
 

‎src/hotspot/share/ci/ciObjArrayKlass.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ ciObjArrayKlass* ciObjArrayKlass::make(ciKlass* element_klass) {
167167
GUARDED_VM_ENTRY(return make_impl(element_klass);)
168168
}
169169

170+
ciObjArrayKlass* ciObjArrayKlass::make(ciKlass* element_klass, int dims) {
171+
ciKlass* klass = element_klass;
172+
for (int i = 0; i < dims; i++) {
173+
klass = ciObjArrayKlass::make(klass);
174+
}
175+
return klass->as_obj_array_klass();
176+
}
177+
170178
ciKlass* ciObjArrayKlass::exact_klass() {
171179
ciType* base = base_element_type();
172180
if (base->is_instance_klass()) {

‎src/hotspot/share/ci/ciObjArrayKlass.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class ciObjArrayKlass : public ciArrayKlass {
7373
bool is_obj_array_klass() const { return true; }
7474

7575
static ciObjArrayKlass* make(ciKlass* element_klass);
76+
static ciObjArrayKlass* make(ciKlass* element_klass, int dims);
7677

7778
virtual ciKlass* exact_klass();
7879
};

‎src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,8 @@ void G1BarrierSetC2::insert_pre_barrier(GraphKit* kit, Node* base_oop, Node* off
528528
if (itype != NULL) {
529529
// Can the klass of base_oop be statically determined to be
530530
// _not_ a sub-class of Reference and _not_ Object?
531-
ciKlass* klass = itype->klass();
532-
if ( klass->is_loaded() &&
531+
ciKlass* klass = itype->instance_klass();
532+
if (klass->is_loaded() &&
533533
!klass->is_subtype_of(kit->env()->Reference_klass()) &&
534534
!kit->env()->Object_klass()->is_subtype_of(klass)) {
535535
return;

‎src/hotspot/share/gc/shared/c2/barrierSetC2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ void C2Access::fixup_decorators() {
372372
intptr_t offset = Type::OffsetBot;
373373
AddPNode::Ideal_base_and_offset(adr, &gvn(), offset);
374374
if (offset >= 0) {
375-
int s = Klass::layout_helper_size_in_bytes(adr_type->isa_instptr()->klass()->layout_helper());
375+
int s = Klass::layout_helper_size_in_bytes(adr_type->isa_instptr()->instance_klass()->layout_helper());
376376
if (offset < s) {
377377
// Guaranteed to be a valid access, no need to pin it
378378
_decorators ^= C2_CONTROL_DEPENDENT_LOAD;

‎src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ void ShenandoahBarrierSetC2::insert_pre_barrier(GraphKit* kit, Node* base_oop, N
389389
if (itype != NULL) {
390390
// Can the klass of base_oop be statically determined to be
391391
// _not_ a sub-class of Reference and _not_ Object?
392-
ciKlass* klass = itype->klass();
393-
if ( klass->is_loaded() &&
392+
ciKlass* klass = itype->instance_klass();
393+
if (klass->is_loaded() &&
394394
!klass->is_subtype_of(kit->env()->Reference_klass()) &&
395395
!kit->env()->Object_klass()->is_subtype_of(klass)) {
396396
return;
@@ -783,8 +783,8 @@ bool ShenandoahBarrierSetC2::array_copy_requires_gc_barriers(bool tightly_couple
783783
bool ShenandoahBarrierSetC2::clone_needs_barrier(Node* src, PhaseGVN& gvn) {
784784
const TypeOopPtr* src_type = gvn.type(src)->is_oopptr();
785785
if (src_type->isa_instptr() != NULL) {
786-
ciInstanceKlass* ik = src_type->klass()->as_instance_klass();
787-
if ((src_type->klass_is_exact() || (!ik->is_interface() && !ik->has_subklass())) && !ik->has_injected_fields()) {
786+
ciInstanceKlass* ik = src_type->is_instptr()->instance_klass();
787+
if ((src_type->klass_is_exact() || !ik->has_subklass()) && !ik->has_injected_fields()) {
788788
if (ik->has_object_fields()) {
789789
return true;
790790
} else {
@@ -796,8 +796,8 @@ bool ShenandoahBarrierSetC2::clone_needs_barrier(Node* src, PhaseGVN& gvn) {
796796
return true;
797797
}
798798
} else if (src_type->isa_aryptr()) {
799-
BasicType src_elem = src_type->klass()->as_array_klass()->element_type()->basic_type();
800-
if (is_reference_type(src_elem)) {
799+
BasicType src_elem = src_type->isa_aryptr()->elem()->array_element_basic_type();
800+
if (is_reference_type(src_elem, true)) {
801801
return true;
802802
}
803803
} else {

‎src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ void ShenandoahBarrierC2Support::verify(RootNode* root) {
298298
if (adr_type->isa_oopptr() && adr_type->is_oopptr()->offset() == oopDesc::mark_offset_in_bytes()) {
299299
if (trace) {tty->print_cr("Mark load");}
300300
} else if (adr_type->isa_instptr() &&
301-
adr_type->is_instptr()->klass()->is_subtype_of(Compile::current()->env()->Reference_klass()) &&
301+
adr_type->is_instptr()->instance_klass()->is_subtype_of(Compile::current()->env()->Reference_klass()) &&
302302
adr_type->is_instptr()->offset() == java_lang_ref_Reference::referent_offset()) {
303303
if (trace) {tty->print_cr("Reference.get()");}
304304
} else if (!verify_helper(n->in(MemNode::Address), phis, visited, ShenandoahLoad, trace, barriers_used)) {

‎src/hotspot/share/opto/arraycopynode.cpp

+15-13
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int ArrayCopyNode::get_count(PhaseGVN *phase) const {
120120
if (is_clonebasic()) {
121121
if (src_type->isa_instptr()) {
122122
const TypeInstPtr* inst_src = src_type->is_instptr();
123-
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
123+
ciInstanceKlass* ik = inst_src->instance_klass();
124124
// ciInstanceKlass::nof_nonstatic_fields() doesn't take injected
125125
// fields into account. They are rare anyway so easier to simply
126126
// skip instances with injected fields.
@@ -193,8 +193,10 @@ Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int c
193193
phase->is_IterGVN()->_worklist.push(mem);
194194
}
195195

196+
197+
ciInstanceKlass* ik = inst_src->instance_klass();
198+
196199
if (!inst_src->klass_is_exact()) {
197-
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
198200
assert(!ik->is_interface(), "inconsistent klass hierarchy");
199201
if (ik->has_subklass()) {
200202
// Concurrent class loading.
@@ -205,7 +207,6 @@ Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int c
205207
}
206208
}
207209

208-
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
209210
assert(ik->nof_nonstatic_fields() <= ArrayCopyLoadStoreMaxElem, "too many fields");
210211

211212
BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
@@ -263,17 +264,16 @@ bool ArrayCopyNode::prepare_array_copy(PhaseGVN *phase, bool can_reshape,
263264

264265
// newly allocated object is guaranteed to not overlap with source object
265266
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) {
269269
// We don't know if arguments are arrays
270270
return false;
271271
}
272272

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;
277277

278278
if (src_elem != dest_elem || dest_elem == T_VOID) {
279279
// 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,
323323

324324
disjoint_bases = true;
325325

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)) {
328328
elem = T_OBJECT;
329329
}
330330

@@ -734,7 +734,9 @@ bool ArrayCopyNode::modifies(intptr_t offset_lo, intptr_t offset_hi, PhaseTransf
734734
return !must_modify;
735735
}
736736

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+
738740
uint header = arrayOopDesc::base_offset_in_bytes(ary_elem);
739741
uint elemsize = type2aelembytes(ary_elem);
740742

‎src/hotspot/share/opto/callnode.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, c
380380
case Type::KlassPtr:
381381
case Type::AryKlassPtr:
382382
case Type::InstKlassPtr:
383-
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_klassptr()->klass()));
383+
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_klassptr()->exact_klass()));
384384
break;
385385
case Type::MetadataPtr:
386386
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_metadataptr()->metadata()));
@@ -471,7 +471,7 @@ void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st)
471471
st->cr();
472472
st->print(" # ScObj" INT32_FORMAT " ", i);
473473
SafePointScalarObjectNode* spobj = scobjs.at(i);
474-
ciKlass* cik = spobj->bottom_type()->is_oopptr()->klass();
474+
ciKlass* cik = spobj->bottom_type()->is_oopptr()->exact_klass();
475475
assert(cik->is_instance_klass() ||
476476
cik->is_array_klass(), "Not supported allocation.");
477477
ciInstanceKlass *iklass = NULL;
@@ -807,11 +807,11 @@ bool CallNode::may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) {
807807
return false;
808808
}
809809
if (t_oop->is_ptr_to_boxed_value()) {
810-
ciKlass* boxing_klass = t_oop->klass();
810+
ciKlass* boxing_klass = t_oop->is_instptr()->instance_klass();
811811
if (is_CallStaticJava() && as_CallStaticJava()->is_boxing_method()) {
812812
// Skip unrelated boxing methods.
813813
Node* proj = proj_out_or_null(TypeFunc::Parms);
814-
if ((proj == NULL) || (phase->type(proj)->is_instptr()->klass() != boxing_klass)) {
814+
if ((proj == NULL) || (phase->type(proj)->is_instptr()->instance_klass() != boxing_klass)) {
815815
return false;
816816
}
817817
}
@@ -826,15 +826,15 @@ bool CallNode::may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) {
826826
if (proj != NULL) {
827827
const TypeInstPtr* inst_t = phase->type(proj)->isa_instptr();
828828
if ((inst_t != NULL) && (!inst_t->klass_is_exact() ||
829-
(inst_t->klass() == boxing_klass))) {
829+
(inst_t->instance_klass() == boxing_klass))) {
830830
return true;
831831
}
832832
}
833833
const TypeTuple* d = tf()->domain();
834834
for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
835835
const TypeInstPtr* inst_t = d->field_at(i)->isa_instptr();
836836
if ((inst_t != NULL) && (!inst_t->klass_is_exact() ||
837-
(inst_t->klass() == boxing_klass))) {
837+
(inst_t->instance_klass() == boxing_klass))) {
838838
return true;
839839
}
840840
}
@@ -2309,15 +2309,15 @@ bool CallNode::may_modify_arraycopy_helper(const TypeOopPtr* dest_t, const TypeO
23092309
return dest_t->instance_id() == t_oop->instance_id();
23102310
}
23112311

2312-
if (dest_t->isa_instptr() && !dest_t->klass()->equals(phase->C->env()->Object_klass())) {
2312+
if (dest_t->isa_instptr() && !dest_t->is_instptr()->instance_klass()->equals(phase->C->env()->Object_klass())) {
23132313
// clone
23142314
if (t_oop->isa_aryptr()) {
23152315
return false;
23162316
}
23172317
if (!t_oop->isa_instptr()) {
23182318
return true;
23192319
}
2320-
if (dest_t->klass()->is_subtype_of(t_oop->klass()) || t_oop->klass()->is_subtype_of(dest_t->klass())) {
2320+
if (dest_t->maybe_java_subtype_of(t_oop) || t_oop->maybe_java_subtype_of(dest_t)) {
23212321
return true;
23222322
}
23232323
// unrelated

‎src/hotspot/share/opto/cfgnode.cpp

+14-17
Original file line numberDiff line numberDiff line change
@@ -1177,16 +1177,14 @@ const Type* PhiNode::Value(PhaseGVN* phase) const {
11771177
// convert the one to the other.
11781178
const TypePtr* ttp = _type->make_ptr();
11791179
const TypeInstPtr* ttip = (ttp != NULL) ? ttp->isa_instptr() : NULL;
1180-
const TypeKlassPtr* ttkp = (ttp != NULL) ? ttp->isa_instklassptr() : NULL;
1180+
const TypeInstKlassPtr* ttkp = (ttp != NULL) ? ttp->isa_instklassptr() : NULL;
11811181
bool is_intf = false;
11821182
if (ttip != NULL) {
1183-
ciKlass* k = ttip->klass();
1184-
if (k->is_loaded() && k->is_interface())
1183+
if (ttip->is_interface())
11851184
is_intf = true;
11861185
}
11871186
if (ttkp != NULL) {
1188-
ciKlass* k = ttkp->klass();
1189-
if (k->is_loaded() && k->is_interface())
1187+
if (ttkp->is_interface())
11901188
is_intf = true;
11911189
}
11921190

@@ -1205,8 +1203,7 @@ const Type* PhiNode::Value(PhaseGVN* phase) const {
12051203
const TypeInstPtr* tiip = (tip != NULL) ? tip->isa_instptr() : NULL;
12061204
if (tiip) {
12071205
bool ti_is_intf = false;
1208-
ciKlass* k = tiip->klass();
1209-
if (k->is_loaded() && k->is_interface())
1206+
if (tiip->is_interface())
12101207
ti_is_intf = true;
12111208
if (is_intf != ti_is_intf)
12121209
{ t = _type; break; }
@@ -1244,14 +1241,14 @@ const Type* PhiNode::Value(PhaseGVN* phase) const {
12441241
// be 'I' or 'j/l/O'. Thus we'll pick 'j/l/O'. If this then flows
12451242
// into a Phi which "knows" it's an Interface type we'll have to
12461243
// uplift the type.
1247-
if (!t->empty() && ttip && ttip->is_loaded() && ttip->klass()->is_interface()) {
1244+
if (!t->empty() && ttip && ttip->is_interface()) {
12481245
assert(ft == _type, ""); // Uplift to interface
1249-
} else if (!t->empty() && ttkp && ttkp->is_loaded() && ttkp->klass()->is_interface()) {
1246+
} else if (!t->empty() && ttkp && ttkp->is_interface()) {
12501247
assert(ft == _type, ""); // Uplift to interface
12511248
} else {
12521249
// We also have to handle 'evil cases' of interface- vs. class-arrays
12531250
Type::get_arrays_base_elements(jt, _type, NULL, &ttip);
1254-
if (!t->empty() && ttip != NULL && ttip->is_loaded() && ttip->klass()->is_interface()) {
1251+
if (!t->empty() && ttip != NULL && ttip->is_interface()) {
12551252
assert(ft == _type, ""); // Uplift to array of interface
12561253
} else {
12571254
// Otherwise it's something stupid like non-overlapping int ranges
@@ -1270,19 +1267,19 @@ const Type* PhiNode::Value(PhaseGVN* phase) const {
12701267
// because the type system doesn't interact well with interfaces.
12711268
const TypePtr *jtp = jt->make_ptr();
12721269
const TypeInstPtr *jtip = (jtp != NULL) ? jtp->isa_instptr() : NULL;
1273-
const TypeKlassPtr *jtkp = (jtp != NULL) ? jtp->isa_instklassptr() : NULL;
1274-
if( jtip && ttip ) {
1275-
if( jtip->is_loaded() && jtip->klass()->is_interface() &&
1276-
ttip->is_loaded() && !ttip->klass()->is_interface() ) {
1270+
const TypeInstKlassPtr *jtkp = (jtp != NULL) ? jtp->isa_instklassptr() : NULL;
1271+
if (jtip && ttip) {
1272+
if (jtip->is_interface() &&
1273+
!ttip->is_interface()) {
12771274
assert(ft == ttip->cast_to_ptr_type(jtip->ptr()) ||
12781275
ft->isa_narrowoop() && ft->make_ptr() == ttip->cast_to_ptr_type(jtip->ptr()), "");
12791276
jt = ft;
12801277
}
12811278
}
1282-
if( jtkp && ttkp ) {
1283-
if( jtkp->is_loaded() && jtkp->klass()->is_interface() &&
1279+
if (jtkp && ttkp) {
1280+
if (jtkp->is_interface() &&
12841281
!jtkp->klass_is_exact() && // Keep exact interface klass (6894807)
1285-
ttkp->is_loaded() && !ttkp->klass()->is_interface() ) {
1282+
ttkp->is_loaded() && !ttkp->is_interface()) {
12861283
assert(ft == ttkp->cast_to_ptr_type(jtkp->ptr()) ||
12871284
ft->isa_narrowklass() && ft->make_ptr() == ttkp->cast_to_ptr_type(jtkp->ptr()), "");
12881285
jt = ft;

0 commit comments

Comments
 (0)
Please sign in to comment.