Home
last modified time | relevance | path

Searched refs:gc_map (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Doptimizing_compiler.cc167 std::vector<uint8_t> gc_map; in TryCompile() local
168 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit); in TryCompile()
178 ArrayRef<const uint8_t>(gc_map), in TryCompile()
/art/runtime/
Doat_file-inl.h94 const uint8_t* gc_map = GetGcMap(); in GetGcMapOffset() local
95 return static_cast<uint32_t>(gc_map != nullptr ? gc_map - begin_ : 0u); in GetGcMapOffset()
Dthread.cc2076 const uint8_t* gc_map = m->GetNativeGcMap(sizeof(void*)); in VisitShadowFrame() local
2077 CHECK(gc_map != nullptr) << PrettyMethod(m); in VisitShadowFrame()
2078 verifier::DexPcToReferenceMap dex_gc_map(gc_map); in VisitShadowFrame()
/art/runtime/entrypoints/portable/
Dportable_thread_entrypoints.cc38 const uint8_t* gc_map = method->GetNativeGcMap(sizeof(void*)); in VisitFrame() local
39 verifier::DexPcToReferenceMap dex_gc_map(gc_map); in VisitFrame()
/art/compiler/
Dcommon_compiler_test.cc176 const SwapVector<uint8_t>& gc_map = compiled_method->GetGcMap(); in MakeExecutable() local
177 uint32_t gc_map_offset = gc_map.empty() ? 0u in MakeExecutable()
178 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size() + gc_map.size(); in MakeExecutable()
187 gc_map.size(); in MakeExecutable()
195 chunk->insert(chunk->begin(), gc_map.begin(), gc_map.end()); in MakeExecutable()
Dcompiled_method.cc178 const std::string& code, const ArrayRef<const uint8_t>& gc_map, in CompiledMethod() argument
182 fp_spill_mask_(0), gc_map_(driver->DeduplicateGCMap(gc_map)), in CompiledMethod()
Dcompiled_method.h130 const ArrayRef<const uint8_t>& gc_map, const std::string& symbol);
Doat_writer.cc468 const SwapVector<uint8_t>& gc_map = compiled_method->GetGcMap(); in VisitMethod() local
469 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]); in VisitMethod()
472 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " " in VisitMethod()