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

  /art/compiler/jit/
jit_logger.h 97 void WriteLog(JitCodeCache* code_cache, ArtMethod* method, bool osr)
99 WritePerfMapLog(code_cache, method, osr);
100 WriteJitDumpLog(code_cache, method, osr);
111 void WritePerfMapLog(JitCodeCache* code_cache, ArtMethod* method, bool osr)
117 void WriteJitDumpLog(JitCodeCache* code_cache, ArtMethod* method, bool osr)
jit_logger.cc 53 void JitLogger::WritePerfMapLog(JitCodeCache* code_cache, ArtMethod* method, bool osr) {
55 const void* ptr = osr ? code_cache->LookupOsrMethodHeader(method)->GetCode()
57 size_t code_size = code_cache->GetMemorySizeOfCodePointer(ptr);
273 void JitLogger::WriteJitDumpLog(JitCodeCache* code_cache, ArtMethod* method, bool osr) {
275 const void* code = osr ? code_cache->LookupOsrMethodHeader(method)->GetCode()
277 size_t code_size = code_cache->GetMemorySizeOfCodePointer(code);
jit_compiler.cc 199 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); local
200 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr);
202 jit_logger_->WriteLog(code_cache, method, osr);
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 32 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
39 if (code_cache->ContainsPc(pc)) {
  /art/runtime/jit/
profiling_info.cc 75 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); local
76 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr;
jit_code_cache.cc     [all...]
  /art/compiler/
compiler.h 77 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED,
  /art/test/common/
runtime_state.cc 196 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
199 code_cache->SetGarbageCollectCode(false);
202 if (code_cache->ContainsPc(pc)) {
  /art/runtime/gc/space/
dlmalloc_space.cc 329 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
330 if (code_cache->OwnsSpace(mspace)) {
331 return code_cache->MoreCore(mspace, increment);
  /external/v8/src/snapshot/
partial-serializer.cc 55 DCHECK(Map::cast(obj)->code_cache() == obj->GetHeap()->empty_fixed_array());
  /external/v8/src/heap/
object-stats.cc 466 FixedArray* code_cache = map_obj->code_cache(); local
467 if (code_cache->IsCodeCacheHashTable()) {
468 RecordHashTableHelper(map_obj, CodeCacheHashTable::cast(code_cache),
471 RecordFixedArrayHelper(map_obj, code_cache, MAP_CODE_CACHE_SUB_TYPE, 0);
  /art/compiler/optimizing/
optimizing_compiler.cc 341 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
    [all...]
  /art/runtime/
art_method.cc 640 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
641 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
646 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
    [all...]
class_linker.cc 2217 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
    [all...]
  /external/v8/src/
objects-printer.cc 610 os << "\n - code cache: " << Brief(code_cache());
    [all...]
objects-inl.h     [all...]
objects.h     [all...]
objects.cc     [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc     [all...]

Completed in 1410 milliseconds