diff options
Diffstat (limited to 'runtime/jit/jit_code_cache.h')
-rw-r--r-- | runtime/jit/jit_code_cache.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/jit/jit_code_cache.h b/runtime/jit/jit_code_cache.h index a3e10c75af..3078e2be8f 100644 --- a/runtime/jit/jit_code_cache.h +++ b/runtime/jit/jit_code_cache.h @@ -101,7 +101,7 @@ class JitCodeCache { std::string* error_msg); ~JitCodeCache(); - bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr) + bool NotifyCompilationOf(ArtMethod* method, Thread* self, bool osr, bool prejit) REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!lock_); @@ -381,10 +381,6 @@ class JitCodeCache { REQUIRES(!lock_) REQUIRES_SHARED(Locks::mutator_lock_); - bool CheckLiveCompiledCodeHasProfilingInfo() - REQUIRES(lock_) - REQUIRES_SHARED(Locks::mutator_lock_); - CodeCacheBitmap* GetLiveBitmap() const { return live_bitmap_.get(); } |