Home
last modified time | relevance | path

Searched refs:mapping_table (Results 1 – 6 of 6) sorted by relevance

/art/compiler/optimizing/
Doptimizing_compiler.cc163 std::vector<uint8_t> mapping_table; in TryCompile() local
164 codegen->BuildMappingTable(&mapping_table); in TryCompile()
176 ArrayRef<const uint8_t>(mapping_table), in TryCompile()
/art/runtime/
Doat_file-inl.h107 const uint8_t* mapping_table = GetMappingTable(); in GetMappingTableOffset() local
108 return static_cast<uint32_t>(mapping_table != nullptr ? mapping_table - begin_ : 0u); in GetMappingTableOffset()
/art/compiler/
Dcommon_compiler_test.cc173 const SwapVector<uint8_t>& mapping_table = compiled_method->GetMappingTable(); in MakeExecutable() local
174 uint32_t mapping_table_offset = mapping_table.empty() ? 0u in MakeExecutable()
175 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size(); in MakeExecutable()
178 : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size() + gc_map.size(); in MakeExecutable()
186 size_t size = sizeof(method_header) + code_size + vmap_table.size() + mapping_table.size() + in MakeExecutable()
194 chunk->insert(chunk->begin(), mapping_table.begin(), mapping_table.end()); in MakeExecutable()
Dcompiled_method.cc149 const ArrayRef<const uint8_t>& mapping_table, in CompiledMethod() argument
155 mapping_table_(driver->DeduplicateMappingTable(mapping_table)), in CompiledMethod()
204 const ArrayRef<const uint8_t>& mapping_table, in SwapAllocCompiledMethod() argument
211 fp_spill_mask, mapping_table, vmap_table, native_gc_map, cfi_info); in SwapAllocCompiledMethod()
Dcompiled_method.h115 const ArrayRef<const uint8_t>& mapping_table,
144 const ArrayRef<const uint8_t>& mapping_table,
/art/compiler/dex/quick/
Dcodegen_util.cc750 MappingTable mapping_table(&encoded_mapping_table_[0]); in CreateNativeGcMap() local
752 for (auto it = mapping_table.PcToDexBegin(), end = mapping_table.PcToDexEnd(); it != end; ++it) { in CreateNativeGcMap()
765 mapping_table.PcToDexSize(), in CreateNativeGcMap()
768 for (auto it = mapping_table.PcToDexBegin(), end = mapping_table.PcToDexEnd(); it != end; ++it) { in CreateNativeGcMap()