Home | History | Annotate | Download | only in openjdkjvmti

Lines Matching refs:Jit

57 #include "jit/jit.h"
58 #include "jit/jit_code_cache.h"
197 // Update JIT Data structures to point to the new method.
198 art::jit::Jit* jit = art::Runtime::Current()->GetJit();
199 if (jit != nullptr) {
200 // Notify the JIT we are making this obsolete method. It will update the jit's internal
202 jit->GetCodeCache()->MoveObsoleteMethod(old_method, new_obsolete_method);
380 // Stop JIT for the duration of this redefine since the JIT might concurrently compile a method we
382 art::jit::ScopedJitSuspend suspend_jit;
1402 // Notify the jit that this method is redefined.
1403 art::jit::Jit* jit = driver_->runtime_->GetJit();
1404 if (jit != nullptr) {
1405 jit->GetCodeCache()->NotifyMethodRedefined(&method);