Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "aot_class_linker.h" |
| 18 | |
Andreas Gampe | 5d3b002 | 2017-08-31 10:36:31 -0700 | [diff] [blame] | 19 | #include "class_status.h" |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 20 | #include "compiler_callbacks.h" |
David Sehr | 312f3b2 | 2018-03-19 08:39:26 -0700 | [diff] [blame] | 21 | #include "dex/class_reference.h" |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 22 | #include "handle_scope-inl.h" |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 23 | #include "mirror/class-inl.h" |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 24 | #include "runtime.h" |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 25 | #include "verifier/verifier_enums.h" |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
| 29 | AotClassLinker::AotClassLinker(InternTable *intern_table) : ClassLinker(intern_table) {} |
| 30 | |
| 31 | AotClassLinker::~AotClassLinker() {} |
| 32 | |
| 33 | // Wrap the original InitializeClass with creation of transaction when in strict mode. |
| 34 | bool AotClassLinker::InitializeClass(Thread* self, Handle<mirror::Class> klass, |
| 35 | bool can_init_statics, bool can_init_parents) { |
| 36 | Runtime* const runtime = Runtime::Current(); |
Chang Xing | adbb91c | 2017-07-17 11:23:55 -0700 | [diff] [blame] | 37 | bool strict_mode_ = runtime->IsActiveStrictTransactionMode(); |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 38 | |
| 39 | DCHECK(klass != nullptr); |
| 40 | if (klass->IsInitialized() || klass->IsInitializing()) { |
| 41 | return ClassLinker::InitializeClass(self, klass, can_init_statics, can_init_parents); |
| 42 | } |
| 43 | |
Chang Xing | adbb91c | 2017-07-17 11:23:55 -0700 | [diff] [blame] | 44 | // Don't initialize klass if it's superclass is not initialized, because superclass might abort |
| 45 | // the transaction and rolled back after klass's change is commited. |
| 46 | if (strict_mode_ && !klass->IsInterface() && klass->HasSuperClass()) { |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 47 | if (klass->GetSuperClass()->GetStatus() == ClassStatus::kInitializing) { |
Chang Xing | adbb91c | 2017-07-17 11:23:55 -0700 | [diff] [blame] | 48 | runtime->AbortTransactionAndThrowAbortError(self, "Can't resolve " |
| 49 | + klass->PrettyTypeOf() + " because it's superclass is not initialized."); |
| 50 | return false; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | if (strict_mode_) { |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 55 | runtime->EnterTransactionMode(true, klass.Get()->AsClass()); |
| 56 | } |
| 57 | bool success = ClassLinker::InitializeClass(self, klass, can_init_statics, can_init_parents); |
| 58 | |
Chang Xing | adbb91c | 2017-07-17 11:23:55 -0700 | [diff] [blame] | 59 | if (strict_mode_) { |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 60 | if (success) { |
| 61 | // Exit Transaction if success. |
| 62 | runtime->ExitTransactionMode(); |
| 63 | } else { |
Nicolas Geoffray | abadf02 | 2017-08-03 08:25:41 +0000 | [diff] [blame] | 64 | // If not successfully initialized, the last transaction must abort. Don't rollback |
| 65 | // immediately, leave the cleanup to compiler driver which needs abort message and exception. |
| 66 | DCHECK(runtime->IsTransactionAborted()); |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 67 | DCHECK(self->IsExceptionPending()); |
| 68 | } |
| 69 | } |
| 70 | return success; |
| 71 | } |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 72 | |
| 73 | verifier::FailureKind AotClassLinker::PerformClassVerification(Thread* self, |
| 74 | Handle<mirror::Class> klass, |
| 75 | verifier::HardFailLogMode log_level, |
| 76 | std::string* error_msg) { |
| 77 | Runtime* const runtime = Runtime::Current(); |
| 78 | CompilerCallbacks* callbacks = runtime->GetCompilerCallbacks(); |
Andreas Gampe | 5d3b002 | 2017-08-31 10:36:31 -0700 | [diff] [blame] | 79 | ClassStatus old_status = callbacks->GetPreviousClassState( |
| 80 | ClassReference(&klass->GetDexFile(), klass->GetDexClassDefIndex())); |
Andreas Gampe | d3ea5b3 | 2017-09-04 14:55:34 -0700 | [diff] [blame] | 81 | // Was it verified? Report no failure. |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 82 | if (old_status >= ClassStatus::kVerified) { |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 83 | return verifier::FailureKind::kNoFailure; |
| 84 | } |
Andreas Gampe | d3ea5b3 | 2017-09-04 14:55:34 -0700 | [diff] [blame] | 85 | // Does it need to be verified at runtime? Report soft failure. |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 86 | if (old_status >= ClassStatus::kRetryVerificationAtRuntime) { |
Andreas Gampe | d3ea5b3 | 2017-09-04 14:55:34 -0700 | [diff] [blame] | 87 | // Error messages from here are only reported through -verbose:class. It is not worth it to |
| 88 | // create a message. |
| 89 | return verifier::FailureKind::kSoftFailure; |
| 90 | } |
| 91 | // Do the actual work. |
Mathieu Chartier | 9e050df | 2017-08-09 10:05:47 -0700 | [diff] [blame] | 92 | return ClassLinker::PerformClassVerification(self, klass, log_level, error_msg); |
| 93 | } |
| 94 | |
Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 95 | } // namespace art |