HomeSort by relevance Sort by last modified time
    Searched refs:code_cache (Results 1 - 15 of 15) sorted by null

  /art/test/708-jit-cache-churn/
jit.cc 46 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
52 bool removed = code_cache->RemoveMethod(method, static_cast<bool>(releaseMemory));
  /art/runtime/jit/
profiling_info.cc 67 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); local
68 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr;
jit.h 171 static Jit* Create(JitCodeCache* code_cache, JitOptions* options);
325 Jit(JitCodeCache* code_cache, JitOptions* options);
jit.cc 176 Jit::Jit(JitCodeCache* code_cache, JitOptions* options)
177 : code_cache_(code_cache),
183 Jit* Jit::Create(JitCodeCache* code_cache, JitOptions* options) {
193 std::unique_ptr<Jit> jit(new Jit(code_cache, options));
199 if (code_cache->GetGarbageCollectCode()) {
200 code_cache->SetGarbageCollectCode(!jit_generate_debug_info_(jit_compiler_handle_) &&
    [all...]
jit_code_cache.cc 573 explicit ScopedCodeCacheWrite(const JitCodeCache* const code_cache)
575 code_cache_(code_cache) {
    [all...]
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 33 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
40 if (code_cache->ContainsPc(pc)) {
  /art/test/common/
runtime_state.cc 231 jit::JitCodeCache* code_cache = jit->GetCodeCache(); variable
234 code_cache->SetGarbageCollectCode(false);
236 if (native && code_cache->ContainsMethod(method)) {
238 } else if (code_cache->WillExecuteJitCode(method)) {
334 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
339 code_cache->GetProfiledMethods(unused_locations, unused_vector);
  /art/compiler/
compiler.h 75 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED,
  /art/compiler/jit/
jit_compiler.cc 199 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); local
201 success = compiler_->JitCompile(self, code_cache, method, baseline, osr, jit_logger_.get());
  /art/runtime/gc/space/
dlmalloc_space.cc 388 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
389 if (code_cache->OwnsSpace(mspace)) {
390 return code_cache->MoreCore(mspace, increment);
  /art/compiler/optimizing/
optimizing_compiler.cc 297 jit::JitCodeCache* code_cache,
    [all...]
  /art/runtime/
cha.cc 688 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
690 code_cache->InvalidateCompiledCodeFor(pair.first, pair.second);
art_method.cc 609 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
610 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
615 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
    [all...]
class_linker.cc 2500 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
    [all...]
  /art/openjdkjvmti/
ti_redefine.cc 1546 auto code_cache = jit->GetCodeCache(); local
    [all...]

Completed in 865 milliseconds