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

  /art/runtime/entrypoints/portable/
portable_thread_entrypoints.cc 38 const uint8_t* gc_map = method->GetNativeGcMap(sizeof(void*)); local
39 verifier::DexPcToReferenceMap dex_gc_map(gc_map);
  /art/compiler/optimizing/
optimizing_compiler.cc 167 std::vector<uint8_t> gc_map; local
168 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
178 ArrayRef<const uint8_t>(gc_map),
  /art/runtime/
oat_file-inl.h 94 const uint8_t* gc_map = GetGcMap(); local
95 return static_cast<uint32_t>(gc_map != nullptr ? gc_map - begin_ : 0u);
thread.cc 41 #include "gc_map.h"
2076 const uint8_t* gc_map = m->GetNativeGcMap(sizeof(void*)); local
    [all...]
  /art/compiler/
common_compiler_test.cc 176 const SwapVector<uint8_t>& gc_map = compiled_method->GetGcMap(); local
177 uint32_t gc_map_offset = gc_map.empty() ? 0u
178 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size() + gc_map.size();
187 gc_map.size();
195 chunk->insert(chunk->begin(), gc_map.begin(), gc_map.end());
compiled_method.cc 178 const std::string& code, const ArrayRef<const uint8_t>& gc_map,
182 fp_spill_mask_(0), gc_map_(driver->DeduplicateGCMap(gc_map)),
compiled_method.h 130 const ArrayRef<const uint8_t>& gc_map, const std::string& symbol);
oat_writer.cc 468 const SwapVector<uint8_t>& gc_map = compiled_method->GetGcMap(); local
469 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
472 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
    [all...]

Completed in 4572 milliseconds