mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8139203: Consistent naming for klass type predicates
8138923: Remove oop coupling with InstanceKlass subclasses Renamed oop_is_instance and friends, removed the functions in oop that dug down into InstanceKlass. Reviewed-by: jrose, lfoltan, stefank
This commit is contained in:
parent
5179fc3488
commit
fc03719078
68 changed files with 257 additions and 279 deletions
|
@ -549,7 +549,7 @@ C2V_VMENTRY(jobject, resolveMethod, (JNIEnv *, jobject, jobject receiver_jvmci_t
|
|||
Klass* caller_klass = CompilerToVM::asKlass(caller_jvmci_type);
|
||||
Method* method = CompilerToVM::asMethod(jvmci_method);
|
||||
|
||||
if (recv_klass->oop_is_array() || (InstanceKlass::cast(recv_klass)->is_linked())) {
|
||||
if (recv_klass->is_array_klass() || (InstanceKlass::cast(recv_klass)->is_linked())) {
|
||||
Klass* holder_klass = method->method_holder();
|
||||
Symbol* method_name = method->name();
|
||||
Symbol* method_signature = method->signature();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue