Searched defs:vmap_table (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Doat_file-inl.h75 const uint8_t* vmap_table = GetVmapTable(); local
76 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u);
/art/compiler/
H A Dcompiled_method.cc109 const ArrayRef<const uint8_t>& vmap_table,
117 vmap_table_(driver->GetCompiledMethodStorage()->DeduplicateVMapTable(vmap_table)),
130 const ArrayRef<const uint8_t>& vmap_table,
143 vmap_table,
102 CompiledMethod(CompilerDriver* driver, InstructionSet instruction_set, const ArrayRef<const uint8_t>& quick_code, const size_t frame_size_in_bytes, const uint32_t core_spill_mask, const uint32_t fp_spill_mask, const ArrayRef<const uint8_t>& method_info, const ArrayRef<const uint8_t>& vmap_table, const ArrayRef<const uint8_t>& cfi_info, const ArrayRef<const linker::LinkerPatch>& patches) argument
122 SwapAllocCompiledMethod( CompilerDriver* driver, InstructionSet instruction_set, const ArrayRef<const uint8_t>& quick_code, const size_t frame_size_in_bytes, const uint32_t core_spill_mask, const uint32_t fp_spill_mask, const ArrayRef<const uint8_t>& method_info, const ArrayRef<const uint8_t>& vmap_table, const ArrayRef<const uint8_t>& cfi_info, const ArrayRef<const linker::LinkerPatch>& patches) argument
H A Dcommon_compiler_test.cc61 ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable(); local
62 const uint32_t vmap_table_offset = vmap_table.empty() ? 0u
63 : sizeof(OatQuickMethodHeader) + vmap_table.size();
79 const size_t size = method_info.size() + vmap_table.size() + sizeof(method_header) + code_size;
83 chunk->insert(chunk->begin(), vmap_table.begin(), vmap_table.end());
/art/compiler/driver/
H A Dcompiled_method_storage_test.cc60 ArrayRef<const uint8_t> vmap_table[] = { local
87 for (auto&& v : vmap_table) {

Completed in 62 milliseconds