| /* Copyright (C) 2017 The Android Open Source Project |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| * |
| * This file implements interfaces from the file jvmti.h. This implementation |
| * is licensed under the same terms as the file jvmti.h. The |
| * copyright and license information for the file jvmti.h follows. |
| * |
| * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| * |
| * This code is free software; you can redistribute it and/or modify it |
| * under the terms of the GNU General Public License version 2 only, as |
| * published by the Free Software Foundation. Oracle designates this |
| * particular file as subject to the "Classpath" exception as provided |
| * by Oracle in the LICENSE file that accompanied this code. |
| * |
| * This code is distributed in the hope that it will be useful, but WITHOUT |
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| * version 2 for more details (a copy is included in the LICENSE file that |
| * accompanied this code). |
| * |
| * You should have received a copy of the GNU General Public License version |
| * 2 along with this work; if not, write to the Free Software Foundation, |
| * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| * |
| * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| * or visit www.oracle.com if you need additional information or have any |
| * questions. |
| */ |
| |
| #include <functional> |
| |
| #include "deopt_manager.h" |
| |
| #include "art_jvmti.h" |
| #include "art_method-inl.h" |
| #include "base/enums.h" |
| #include "base/mutex-inl.h" |
| #include "dex_file_annotations.h" |
| #include "events-inl.h" |
| #include "jni_internal.h" |
| #include "mirror/class-inl.h" |
| #include "mirror/object_array-inl.h" |
| #include "modifiers.h" |
| #include "nativehelper/scoped_local_ref.h" |
| #include "runtime_callbacks.h" |
| #include "scoped_thread_state_change-inl.h" |
| #include "thread-current-inl.h" |
| #include "thread_list.h" |
| #include "ti_phase.h" |
| |
| namespace openjdkjvmti { |
| |
| // TODO We should make this much more selective in the future so we only return true when we |
| // actually care about the method (i.e. had locals changed, have breakpoints, etc.). For now though |
| // we can just assume that we care we are loaded at all. |
| // |
| // Even if we don't keep track of this at the method level we might want to keep track of it at the |
| // level of enabled capabilities. |
| bool JvmtiMethodInspectionCallback::IsMethodBeingInspected( |
| art::ArtMethod* method ATTRIBUTE_UNUSED) { |
| return true; |
| } |
| |
| bool JvmtiMethodInspectionCallback::IsMethodSafeToJit(art::ArtMethod* method) { |
| return !manager_->MethodHasBreakpoints(method); |
| } |
| |
| DeoptManager::DeoptManager() |
| : deoptimization_status_lock_("JVMTI_DeoptimizationStatusLock"), |
| deoptimization_condition_("JVMTI_DeoptimizationCondition", deoptimization_status_lock_), |
| performing_deoptimization_(false), |
| global_deopt_count_(0), |
| deopter_count_(0), |
| inspection_callback_(this) { } |
| |
| void DeoptManager::Setup() { |
| art::ScopedThreadStateChange stsc(art::Thread::Current(), |
| art::ThreadState::kWaitingForDebuggerToAttach); |
| art::ScopedSuspendAll ssa("Add method Inspection Callback"); |
| art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); |
| callbacks->AddMethodInspectionCallback(&inspection_callback_); |
| } |
| |
| void DeoptManager::Shutdown() { |
| art::ScopedThreadStateChange stsc(art::Thread::Current(), |
| art::ThreadState::kWaitingForDebuggerToAttach); |
| art::ScopedSuspendAll ssa("remove method Inspection Callback"); |
| art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); |
| callbacks->RemoveMethodInspectionCallback(&inspection_callback_); |
| } |
| |
| bool DeoptManager::MethodHasBreakpoints(art::ArtMethod* method) { |
| art::MutexLock lk(art::Thread::Current(), deoptimization_status_lock_); |
| return MethodHasBreakpointsLocked(method); |
| } |
| |
| bool DeoptManager::MethodHasBreakpointsLocked(art::ArtMethod* method) { |
| if (deopter_count_ == 0) { |
| return false; |
| } |
| auto elem = breakpoint_status_.find(method); |
| return elem != breakpoint_status_.end() && elem->second != 0; |
| } |
| |
| void DeoptManager::RemoveDeoptimizeAllMethods() { |
| art::Thread* self = art::Thread::Current(); |
| art::ScopedThreadSuspension sts(self, art::kSuspended); |
| deoptimization_status_lock_.ExclusiveLock(self); |
| RemoveDeoptimizeAllMethodsLocked(self); |
| } |
| |
| void DeoptManager::AddDeoptimizeAllMethods() { |
| art::Thread* self = art::Thread::Current(); |
| art::ScopedThreadSuspension sts(self, art::kSuspended); |
| deoptimization_status_lock_.ExclusiveLock(self); |
| AddDeoptimizeAllMethodsLocked(self); |
| } |
| |
| void DeoptManager::AddMethodBreakpoint(art::ArtMethod* method) { |
| DCHECK(method->IsInvokable()); |
| DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); |
| DCHECK(!method->IsNative()) << method->PrettyMethod(); |
| |
| art::Thread* self = art::Thread::Current(); |
| method = method->GetCanonicalMethod(); |
| bool is_default = method->IsDefault(); |
| |
| art::ScopedThreadSuspension sts(self, art::kSuspended); |
| deoptimization_status_lock_.ExclusiveLock(self); |
| |
| DCHECK_GT(deopter_count_, 0u) << "unexpected deotpimization request"; |
| |
| if (MethodHasBreakpointsLocked(method)) { |
| // Don't need to do anything extra. |
| breakpoint_status_[method]++; |
| // Another thread might be deoptimizing the very method we just added new breakpoints for. Wait |
| // for any deopts to finish before moving on. |
| WaitForDeoptimizationToFinish(self); |
| return; |
| } |
| breakpoint_status_[method] = 1; |
| auto instrumentation = art::Runtime::Current()->GetInstrumentation(); |
| if (instrumentation->IsForcedInterpretOnly()) { |
| // We are already interpreting everything so no need to do anything. |
| deoptimization_status_lock_.ExclusiveUnlock(self); |
| return; |
| } else if (is_default) { |
| AddDeoptimizeAllMethodsLocked(self); |
| } else { |
| PerformLimitedDeoptimization(self, method); |
| } |
| } |
| |
| void DeoptManager::RemoveMethodBreakpoint(art::ArtMethod* method) { |
| DCHECK(method->IsInvokable()) << method->PrettyMethod(); |
| DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); |
| DCHECK(!method->IsNative()) << method->PrettyMethod(); |
| |
| art::Thread* self = art::Thread::Current(); |
| method = method->GetCanonicalMethod(); |
| bool is_default = method->IsDefault(); |
| |
| art::ScopedThreadSuspension sts(self, art::kSuspended); |
| // Ideally we should do a ScopedSuspendAll right here to get the full mutator_lock_ that we might |
| // need but since that is very heavy we will instead just use a condition variable to make sure we |
| // don't race with ourselves. |
| deoptimization_status_lock_.ExclusiveLock(self); |
| |
| DCHECK_GT(deopter_count_, 0u) << "unexpected deotpimization request"; |
| DCHECK(MethodHasBreakpointsLocked(method)) << "Breakpoint on a method was removed without " |
| << "breakpoints present!"; |
| auto instrumentation = art::Runtime::Current()->GetInstrumentation(); |
| breakpoint_status_[method] -= 1; |
| if (UNLIKELY(instrumentation->IsForcedInterpretOnly())) { |
| // We don't need to do anything since we are interpreting everything anyway. |
| deoptimization_status_lock_.ExclusiveUnlock(self); |
| return; |
| } else if (breakpoint_status_[method] == 0) { |
| if (UNLIKELY(is_default)) { |
| RemoveDeoptimizeAllMethodsLocked(self); |
| } else { |
| PerformLimitedUndeoptimization(self, method); |
| } |
| } else { |
| // Another thread might be deoptimizing the very methods we just removed breakpoints from. Wait |
| // for any deopts to finish before moving on. |
| WaitForDeoptimizationToFinish(self); |
| } |
| } |
| |
| void DeoptManager::WaitForDeoptimizationToFinishLocked(art::Thread* self) { |
| while (performing_deoptimization_) { |
| deoptimization_condition_.Wait(self); |
| } |
| } |
| |
| void DeoptManager::WaitForDeoptimizationToFinish(art::Thread* self) { |
| WaitForDeoptimizationToFinishLocked(self); |
| deoptimization_status_lock_.ExclusiveUnlock(self); |
| } |
| |
| class ScopedDeoptimizationContext : public art::ValueObject { |
| public: |
| ScopedDeoptimizationContext(art::Thread* self, DeoptManager* deopt) |
| RELEASE(deopt->deoptimization_status_lock_) |
| ACQUIRE(art::Locks::mutator_lock_) |
| ACQUIRE(art::Roles::uninterruptible_) |
| : self_(self), deopt_(deopt), uninterruptible_cause_(nullptr) { |
| deopt_->WaitForDeoptimizationToFinishLocked(self_); |
| DCHECK(!deopt->performing_deoptimization_) |
| << "Already performing deoptimization on another thread!"; |
| // Use performing_deoptimization_ to keep track of the lock. |
| deopt_->performing_deoptimization_ = true; |
| deopt_->deoptimization_status_lock_.Unlock(self_); |
| art::Runtime::Current()->GetThreadList()->SuspendAll("JMVTI Deoptimizing methods", |
| /*long_suspend*/ false); |
| uninterruptible_cause_ = self_->StartAssertNoThreadSuspension("JVMTI deoptimizing methods"); |
| } |
| |
| ~ScopedDeoptimizationContext() |
| RELEASE(art::Locks::mutator_lock_) |
| RELEASE(art::Roles::uninterruptible_) { |
| // Can be suspended again. |
| self_->EndAssertNoThreadSuspension(uninterruptible_cause_); |
| // Release the mutator lock. |
| art::Runtime::Current()->GetThreadList()->ResumeAll(); |
| // Let other threads know it's fine to proceed. |
| art::MutexLock lk(self_, deopt_->deoptimization_status_lock_); |
| deopt_->performing_deoptimization_ = false; |
| deopt_->deoptimization_condition_.Broadcast(self_); |
| } |
| |
| private: |
| art::Thread* self_; |
| DeoptManager* deopt_; |
| const char* uninterruptible_cause_; |
| }; |
| |
| void DeoptManager::AddDeoptimizeAllMethodsLocked(art::Thread* self) { |
| global_deopt_count_++; |
| if (global_deopt_count_ == 1) { |
| PerformGlobalDeoptimization(self); |
| } else { |
| WaitForDeoptimizationToFinish(self); |
| } |
| } |
| |
| void DeoptManager::RemoveDeoptimizeAllMethodsLocked(art::Thread* self) { |
| DCHECK_GT(global_deopt_count_, 0u) << "Request to remove non-existant global deoptimization!"; |
| global_deopt_count_--; |
| if (global_deopt_count_ == 0) { |
| PerformGlobalUndeoptimization(self); |
| } else { |
| WaitForDeoptimizationToFinish(self); |
| } |
| } |
| |
| void DeoptManager::PerformLimitedDeoptimization(art::Thread* self, art::ArtMethod* method) { |
| ScopedDeoptimizationContext sdc(self, this); |
| art::Runtime::Current()->GetInstrumentation()->Deoptimize(method); |
| } |
| |
| void DeoptManager::PerformLimitedUndeoptimization(art::Thread* self, art::ArtMethod* method) { |
| ScopedDeoptimizationContext sdc(self, this); |
| art::Runtime::Current()->GetInstrumentation()->Undeoptimize(method); |
| } |
| |
| void DeoptManager::PerformGlobalDeoptimization(art::Thread* self) { |
| ScopedDeoptimizationContext sdc(self, this); |
| art::Runtime::Current()->GetInstrumentation()->DeoptimizeEverything( |
| kDeoptManagerInstrumentationKey); |
| } |
| |
| void DeoptManager::PerformGlobalUndeoptimization(art::Thread* self) { |
| ScopedDeoptimizationContext sdc(self, this); |
| art::Runtime::Current()->GetInstrumentation()->UndeoptimizeEverything( |
| kDeoptManagerInstrumentationKey); |
| } |
| |
| |
| void DeoptManager::RemoveDeoptimizationRequester() { |
| art::Thread* self = art::Thread::Current(); |
| art::ScopedThreadStateChange sts(self, art::kSuspended); |
| deoptimization_status_lock_.ExclusiveLock(self); |
| DCHECK_GT(deopter_count_, 0u) << "Removing deoptimization requester without any being present"; |
| deopter_count_--; |
| if (deopter_count_ == 0) { |
| ScopedDeoptimizationContext sdc(self, this); |
| // TODO Give this a real key. |
| art::Runtime::Current()->GetInstrumentation()->DisableDeoptimization(""); |
| return; |
| } else { |
| deoptimization_status_lock_.ExclusiveUnlock(self); |
| } |
| } |
| |
| void DeoptManager::AddDeoptimizationRequester() { |
| art::Thread* self = art::Thread::Current(); |
| art::ScopedThreadStateChange stsc(self, art::kSuspended); |
| deoptimization_status_lock_.ExclusiveLock(self); |
| deopter_count_++; |
| if (deopter_count_ == 1) { |
| ScopedDeoptimizationContext sdc(self, this); |
| art::Runtime::Current()->GetInstrumentation()->EnableDeoptimization(); |
| return; |
| } else { |
| deoptimization_status_lock_.ExclusiveUnlock(self); |
| } |
| } |
| |
| void DeoptManager::DeoptimizeThread(art::Thread* target) { |
| art::Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(target); |
| } |
| |
| extern DeoptManager gDeoptManager; |
| DeoptManager* DeoptManager::Get() { |
| return &gDeoptManager; |
| } |
| |
| } // namespace openjdkjvmti |