Lines Matching refs:klass

886             || (PatchALot && obj->klass() != ciEnv::current()->String_klass())) {
890 assert(!obj->is_klass(), "must be java_mirror of klass");
1678 ciInstanceKlass* klass = target->holder();
1713 // how klass->is_loaded() can be true and yet target->is_loaded() is false.
1718 if (UseCHA && DeoptC1 && klass->is_loaded() && target->is_loaded() &&
1772 // klass but we need both a dependence on the single interface
1800 // to match that class, otherwise klass will refer to the
1802 klass = cha_monomorphic_target->holder();
1806 CheckCast* c = new CheckCast(klass, receiver, copy_state_for_exception());
1808 c->set_direct_compare(klass->is_final());
1837 if (!PatchALot && Inline && klass->is_loaded() &&
1838 (klass->is_initialized() || klass->is_interface() && target->holder()->is_initialized())
1953 ciKlass* klass = stream()->get_klass(will_link);
1954 assert(klass->is_instance_klass(), "must be an instance klass");
1955 NewInstance* new_instance = new NewInstance(klass->as_instance_klass(), state_before);
1969 ciKlass* klass = stream()->get_klass(will_link);
1970 ValueStack* state_before = !klass->is_loaded() || PatchALot ? copy_state_before() : copy_state_exhandling();
1971 NewArray* n = new NewObjectArray(klass, ipop(), state_before);
1995 ciKlass* klass = stream()->get_klass(will_link);
1996 ValueStack* state_before = !klass->is_loaded() || PatchALot ? copy_state_before() : copy_state_for_exception();
1997 CheckCast* c = new CheckCast(klass, apop(), state_before);
1999 c->set_direct_compare(direct_compare(klass));
2016 ciKlass* klass = stream()->get_klass(will_link);
2017 ValueStack* state_before = !klass->is_loaded() || PatchALot ? copy_state_before() : copy_state_exhandling();
2018 InstanceOf* i = new InstanceOf(klass, apop(), state_before);
2020 i->set_direct_compare(direct_compare(klass));
2051 ciKlass* klass = stream()->get_klass(will_link);
2052 ValueStack* state_before = !klass->is_loaded() || PatchALot ? copy_state_before() : copy_state_exhandling();
2059 NewArray* n = new NewMultiArray(klass, dims, state_before);
3647 if (!callee->holder()->is_initialized()) INLINE_BAILOUT("callee's klass not initialized yet");