Home
last modified time | relevance | path

Searched refs:JitInstrumentationCache (Results 1 – 5 of 5) sorted by relevance

/art/runtime/jit/
Djit_instrumentation.cc29 explicit JitCompileTask(ArtMethod* method, JitInstrumentationCache* cache) in JitCompileTask()
49 JitInstrumentationCache* const cache_;
54 JitInstrumentationCache::JitInstrumentationCache(size_t hot_method_threshold) in JitInstrumentationCache() function in art::jit::JitInstrumentationCache
58 void JitInstrumentationCache::CreateThreadPool() { in CreateThreadPool()
62 void JitInstrumentationCache::DeleteThreadPool() { in DeleteThreadPool()
66 void JitInstrumentationCache::SignalCompiled(Thread* self, ArtMethod* method) { in SignalCompiled()
76 void JitInstrumentationCache::AddSamples(Thread* self, ArtMethod* method, size_t count) { in AddSamples()
115 JitInstrumentationListener::JitInstrumentationListener(JitInstrumentationCache* cache) in JitInstrumentationListener()
Djit_instrumentation.h46 class JitInstrumentationCache {
48 explicit JitInstrumentationCache(size_t hot_method_threshold);
62 DISALLOW_IMPLICIT_CONSTRUCTORS(JitInstrumentationCache);
67 explicit JitInstrumentationListener(JitInstrumentationCache* cache);
101 JitInstrumentationCache* const instrumentation_cache_;
Djit.h40 class JitInstrumentationCache; variable
85 std::unique_ptr<jit::JitInstrumentationCache> instrumentation_cache_;
Djit_code_cache.h40 class JitInstrumentationCache; variable
Djit.cc172 instrumentation_cache_.reset(new jit::JitInstrumentationCache(compile_threshold)); in CreateInstrumentationCache()