HomeSort by relevance Sort by last modified time
    Searched defs:vmap_table (Results 1 - 3 of 3) sorted by null

  /art/compiler/optimizing/
optimizing_compiler.cc 165 std::vector<uint8_t> vmap_table; local
166 codegen->BuildVMapTable(&vmap_table);
177 ArrayRef<const uint8_t>(vmap_table),
  /art/runtime/
oat_file-inl.h 120 const uint8_t* vmap_table = GetVmapTable(); local
121 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u);
  /art/compiler/
common_compiler_test.cc 170 const SwapVector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); local
171 uint32_t vmap_table_offset = vmap_table.empty() ? 0u
172 : sizeof(OatQuickMethodHeader) + vmap_table.size();
175 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size();
178 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size() + gc_map.size();
186 size_t size = sizeof(method_header) + code_size + vmap_table.size() + mapping_table.size() +
193 chunk->insert(chunk->begin(), vmap_table.begin(), vmap_table.end());

Completed in 104 milliseconds