diff options
Diffstat (limited to 'runtime/jit/jit.h')
-rw-r--r-- | runtime/jit/jit.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/runtime/jit/jit.h b/runtime/jit/jit.h index 2af58e2187..5aa53ff8fe 100644 --- a/runtime/jit/jit.h +++ b/runtime/jit/jit.h @@ -121,12 +121,6 @@ class JitOptions { return use_tiered_jit_compilation_; } - bool CanCompileBaseline() const { - return use_tiered_jit_compilation_ || - use_baseline_compiler_ || - interpreter::IsNterpSupported(); - } - void SetUseJitCompilation(bool b) { use_jit_compilation_ = b; } @@ -312,12 +306,6 @@ class Jit { bool with_backedges) REQUIRES_SHARED(Locks::mutator_lock_); - void InvokeVirtualOrInterface(ObjPtr<mirror::Object> this_object, - ArtMethod* caller, - uint32_t dex_pc, - ArtMethod* callee) - REQUIRES_SHARED(Locks::mutator_lock_); - void NotifyInterpreterToCompiledCodeTransition(Thread* self, ArtMethod* caller) REQUIRES_SHARED(Locks::mutator_lock_) { if (!IgnoreSamplesForMethod(caller)) { |