blob: 79b6c264498ad759f17b23b5a879919669905fcd [file] [log] [blame]
Chang Xing605fe242017-07-20 15:57:21 -07001/*
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 Gampe5d3b0022017-08-31 10:36:31 -070019#include "class_status.h"
Mathieu Chartier9e050df2017-08-09 10:05:47 -070020#include "compiler_callbacks.h"
David Sehr312f3b22018-03-19 08:39:26 -070021#include "dex/class_reference.h"
Chang Xing605fe242017-07-20 15:57:21 -070022#include "handle_scope-inl.h"
Mathieu Chartier9e050df2017-08-09 10:05:47 -070023#include "mirror/class-inl.h"
Chang Xing605fe242017-07-20 15:57:21 -070024#include "runtime.h"
Mathieu Chartier9e050df2017-08-09 10:05:47 -070025#include "verifier/verifier_enums.h"
Chang Xing605fe242017-07-20 15:57:21 -070026
27namespace art {
28
Andreas Gampe87658f32019-04-18 18:39:02 +000029AotClassLinker::AotClassLinker(InternTable* intern_table)
30 : ClassLinker(intern_table, /*fast_class_not_found_exceptions=*/ false) {}
Chang Xing605fe242017-07-20 15:57:21 -070031
32AotClassLinker::~AotClassLinker() {}
33
Chang Xing0c2c2222017-08-04 14:36:17 -070034bool AotClassLinker::CanAllocClass() {
35 // AllocClass doesn't work under transaction, so we abort.
36 if (Runtime::Current()->IsActiveTransaction()) {
37 Runtime::Current()->AbortTransactionAndThrowAbortError(
38 Thread::Current(), "Can't resolve type within transaction.");
39 return false;
40 }
41 return ClassLinker::CanAllocClass();
42}
43
Chang Xing605fe242017-07-20 15:57:21 -070044// Wrap the original InitializeClass with creation of transaction when in strict mode.
Vladimir Marko4617d582019-03-28 13:48:31 +000045bool AotClassLinker::InitializeClass(Thread* self,
46 Handle<mirror::Class> klass,
47 bool can_init_statics,
48 bool can_init_parents) {
Chang Xing605fe242017-07-20 15:57:21 -070049 Runtime* const runtime = Runtime::Current();
Chang Xingadbb91c2017-07-17 11:23:55 -070050 bool strict_mode_ = runtime->IsActiveStrictTransactionMode();
Chang Xing605fe242017-07-20 15:57:21 -070051
52 DCHECK(klass != nullptr);
53 if (klass->IsInitialized() || klass->IsInitializing()) {
54 return ClassLinker::InitializeClass(self, klass, can_init_statics, can_init_parents);
55 }
56
Chang Xing0c2c2222017-08-04 14:36:17 -070057 // When in strict_mode, don't initialize a class if it belongs to boot but not initialized.
58 if (strict_mode_ && klass->IsBootStrapClassLoaded()) {
59 runtime->AbortTransactionAndThrowAbortError(self, "Can't resolve "
60 + klass->PrettyTypeOf() + " because it is an uninitialized boot class.");
61 return false;
62 }
63
Chang Xingadbb91c2017-07-17 11:23:55 -070064 // Don't initialize klass if it's superclass is not initialized, because superclass might abort
65 // the transaction and rolled back after klass's change is commited.
66 if (strict_mode_ && !klass->IsInterface() && klass->HasSuperClass()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +000067 if (klass->GetSuperClass()->GetStatus() == ClassStatus::kInitializing) {
Chang Xingadbb91c2017-07-17 11:23:55 -070068 runtime->AbortTransactionAndThrowAbortError(self, "Can't resolve "
69 + klass->PrettyTypeOf() + " because it's superclass is not initialized.");
70 return false;
71 }
72 }
73
74 if (strict_mode_) {
Vladimir Marko672c0802019-07-26 13:03:13 +010075 runtime->EnterTransactionMode(/*strict=*/ true, klass.Get());
Chang Xing605fe242017-07-20 15:57:21 -070076 }
77 bool success = ClassLinker::InitializeClass(self, klass, can_init_statics, can_init_parents);
78
Chang Xingadbb91c2017-07-17 11:23:55 -070079 if (strict_mode_) {
Chang Xing605fe242017-07-20 15:57:21 -070080 if (success) {
81 // Exit Transaction if success.
82 runtime->ExitTransactionMode();
83 } else {
Chang Xing0c2c2222017-08-04 14:36:17 -070084 // If not successfully initialized, don't rollback immediately, leave the cleanup to compiler
85 // driver which needs abort message and exception.
Chang Xing605fe242017-07-20 15:57:21 -070086 DCHECK(self->IsExceptionPending());
87 }
88 }
89 return success;
90}
Mathieu Chartier9e050df2017-08-09 10:05:47 -070091
92verifier::FailureKind AotClassLinker::PerformClassVerification(Thread* self,
93 Handle<mirror::Class> klass,
94 verifier::HardFailLogMode log_level,
95 std::string* error_msg) {
96 Runtime* const runtime = Runtime::Current();
97 CompilerCallbacks* callbacks = runtime->GetCompilerCallbacks();
Andreas Gampe5d3b0022017-08-31 10:36:31 -070098 ClassStatus old_status = callbacks->GetPreviousClassState(
99 ClassReference(&klass->GetDexFile(), klass->GetDexClassDefIndex()));
Andreas Gamped3ea5b32017-09-04 14:55:34 -0700100 // Was it verified? Report no failure.
Vladimir Marko2c64a832018-01-04 11:31:56 +0000101 if (old_status >= ClassStatus::kVerified) {
Mathieu Chartier9e050df2017-08-09 10:05:47 -0700102 return verifier::FailureKind::kNoFailure;
103 }
Andreas Gamped3ea5b32017-09-04 14:55:34 -0700104 // Does it need to be verified at runtime? Report soft failure.
Vladimir Marko2c64a832018-01-04 11:31:56 +0000105 if (old_status >= ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gamped3ea5b32017-09-04 14:55:34 -0700106 // Error messages from here are only reported through -verbose:class. It is not worth it to
107 // create a message.
108 return verifier::FailureKind::kSoftFailure;
109 }
110 // Do the actual work.
Mathieu Chartier9e050df2017-08-09 10:05:47 -0700111 return ClassLinker::PerformClassVerification(self, klass, log_level, error_msg);
112}
113
Chang Xing605fe242017-07-20 15:57:21 -0700114} // namespace art