Lines Matching refs:ArtMethod

40 class ArtMethod;  variable
109 ArtMethod* method;
124 void Put(const void* code, ArtMethod* method) REQUIRES(Locks::jit_lock_);
128 const void* GetCodeFor(ArtMethod* method, uintptr_t pc = 0) const;
131 bool ContainsMethod(ArtMethod* method) const { in ContainsMethod()
197 bool NotifyCompilationOf(ArtMethod* method,
205 void NotifyMethodRedefined(ArtMethod* method)
213 ProfilingInfo* NotifyCompilerUse(ArtMethod* method, Thread* self)
217 void DoneCompiling(ArtMethod* method, Thread* self, CompilationKind compilation_kind)
221 void DoneCompilerUse(ArtMethod* method, Thread* self)
233 bool WillExecuteJitCode(ArtMethod* method) REQUIRES(!Locks::jit_lock_);
236 bool ContainsMethod(ArtMethod* method) REQUIRES(!Locks::jit_lock_);
239 const void* GetJniStubCode(ArtMethod* method) REQUIRES(!Locks::jit_lock_);
248 ArtMethod* method,
263 ArtMethod* method,
273 const ArenaSet<ArtMethod*>& cha_single_implementation_list)
293 OatQuickMethodHeader* LookupMethodHeader(uintptr_t pc, ArtMethod* method)
297 OatQuickMethodHeader* LookupOsrMethodHeader(ArtMethod* method)
304 bool RemoveMethod(ArtMethod* method, bool release_memory)
320 ArtMethod* method,
342 void InvalidateCompiledCodeFor(ArtMethod* method, const OatQuickMethodHeader* code)
348 bool IsOsrCompiled(ArtMethod* method) REQUIRES(!Locks::jit_lock_);
362 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method)
380 const void* FindCompiledCodeForInstrumentation(ArtMethod* method)
386 const void* GetSavedEntryPointOfPreCompiledMethod(ArtMethod* method)
417 ArtMethod* method,
441 bool RemoveMethodLocked(ArtMethod* method, bool release_memory)
446 void VisitAllMethods(const std::function<void(const void*, ArtMethod*)>& cb)
503 void AddMethodBeingCompiled(ArtMethod* method, CompilationKind compilation_kind)
507 void RemoveMethodBeingCompiled(ArtMethod* method, CompilationKind compilation_kind)
511 bool IsMethodBeingCompiled(ArtMethod* method, CompilationKind compilation_kind)
515 bool IsMethodBeingCompiled(ArtMethod* method) REQUIRES(Locks::jit_lock_);
542 SafeMap<const void*, ArtMethod*> method_code_map_ GUARDED_BY(Locks::jit_lock_);
546 SafeMap<ArtMethod*, const void*> saved_compiled_methods_map_ GUARDED_BY(Locks::jit_lock_);
549 SafeMap<ArtMethod*, const void*> osr_code_map_ GUARDED_BY(Locks::jit_lock_);
555 std::set<ArtMethod*> current_optimized_compilations_ GUARDED_BY(Locks::jit_lock_);
556 std::set<ArtMethod*> current_osr_compilations_ GUARDED_BY(Locks::jit_lock_);
557 std::set<ArtMethod*> current_baseline_compilations_ GUARDED_BY(Locks::jit_lock_);