diff options
| author | 2017-02-13 21:26:22 +0000 | |
|---|---|---|
| committer | 2017-02-13 21:26:23 +0000 | |
| commit | 60acc33c5b9bb93c23c4b54f6d97db2d5ec0828c (patch) | |
| tree | 1be4af0c2b98992c782e44d4706df794f99d0bc9 /runtime | |
| parent | 2d33ce2d9640c32c6a912aedd9e2436b51985608 (diff) | |
| parent | 37c8e5c1739c02f2c01217f556e946e554cd06d0 (diff) | |
Merge "Remove special treatment of native method for CHA."
Diffstat (limited to 'runtime')
| -rw-r--r-- | runtime/art_method.cc | 1 | ||||
| -rw-r--r-- | runtime/cha.cc | 18 |
2 files changed, 8 insertions, 11 deletions
diff --git a/runtime/art_method.cc b/runtime/art_method.cc index 6cb8544617..4902ad42d7 100644 --- a/runtime/art_method.cc +++ b/runtime/art_method.cc @@ -67,7 +67,6 @@ ArtMethod* ArtMethod::GetNonObsoleteMethod() { } ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) { - DCHECK(!IsNative()); if (!IsAbstract()) { // A non-abstract's single implementation is itself. return this; diff --git a/runtime/cha.cc b/runtime/cha.cc index d11b12f700..eaba01b2ce 100644 --- a/runtime/cha.cc +++ b/runtime/cha.cc @@ -200,7 +200,8 @@ void ClassHierarchyAnalysis::VerifyNonSingleImplementation(mirror::Class* verify if (verify_method != excluded_method) { DCHECK(!verify_method->HasSingleImplementation()) << "class: " << verify_class->PrettyClass() - << " verify_method: " << verify_method->PrettyMethod(true); + << " verify_method: " << verify_method->PrettyMethod(true) + << " excluded_method: " << excluded_method->PrettyMethod(true); if (verify_method->IsAbstract()) { DCHECK(verify_method->GetSingleImplementation(image_pointer_size) == nullptr); } @@ -257,9 +258,6 @@ void ClassHierarchyAnalysis::CheckSingleImplementationInfo( return; } - // Native methods don't have single-implementation flag set. - DCHECK(!method_in_super->IsNative()); - uint16_t method_index = method_in_super->GetMethodIndex(); if (method_in_super->IsAbstract()) { if (kIsDebugBuild) { @@ -374,12 +372,12 @@ void ClassHierarchyAnalysis::InitSingleImplementationFlag(Handle<mirror::Class> // used for static methods or methods of final classes. return; } - if (method->IsNative()) { - // Native method's invocation overhead is already high and it - // cannot be inlined. It's not worthwhile to devirtualize the - // call which can add a deoptimization point. - DCHECK(!method->HasSingleImplementation()); - } else if (method->IsAbstract()) { + if (method->IsAbstract()) { + // single-implementation of abstract method shares the same field + // that's used for JNI function of native method. It's fine since a method + // cannot be both abstract and native. + DCHECK(!method->IsNative()) << "Abstract method cannot be native"; + if (method->GetDeclaringClass()->IsInstantiable()) { // Rare case, but we do accept it (such as 800-smali/smali/b_26143249.smali). // Do not attempt to devirtualize it. |