Searched defs:mapping_table (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Doat_file-inl.h107 const uint8_t* mapping_table = GetMappingTable(); local
108 return static_cast<uint32_t>(mapping_table != nullptr ? mapping_table - begin_ : 0u);
/art/compiler/
H A Dcompiled_method.cc131 const ArrayRef<const uint8_t>& mapping_table,
148 mapping_table_ = mapping_table.empty() ?
149 nullptr : new SwapVector<uint8_t>(mapping_table.begin(), mapping_table.end(),
162 mapping_table_ = mapping_table.empty() ?
163 nullptr : driver->DeduplicateMappingTable(mapping_table);
178 const ArrayRef<const uint8_t>& mapping_table,
186 fp_spill_mask, src_mapping_table, mapping_table, vmap_table, native_gc_map,
124 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, DefaultSrcMap* src_mapping_table, const ArrayRef<const uint8_t>& mapping_table, const ArrayRef<const uint8_t>& vmap_table, const ArrayRef<const uint8_t>& native_gc_map, const ArrayRef<const uint8_t>& cfi_info, const ArrayRef<const LinkerPatch>& patches) argument
170 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, DefaultSrcMap* src_mapping_table, const ArrayRef<const uint8_t>& mapping_table, const ArrayRef<const uint8_t>& vmap_table, const ArrayRef<const uint8_t>& native_gc_map, const ArrayRef<const uint8_t>& cfi_info, const ArrayRef<const LinkerPatch>& patches) argument
H A Dcommon_compiler_test.cc62 const SwapVector<uint8_t>* mapping_table = compiled_method->GetMappingTable(); local
63 bool mapping_table_used = mapping_table != nullptr && !mapping_table->empty();
64 size_t mapping_table_size = mapping_table_used ? mapping_table->size() : 0U;
88 chunk->insert(chunk->begin(), mapping_table->begin(), mapping_table->end());
/art/compiler/jit/
H A Djit_compiler.cc180 const uint8_t* mapping_table,
201 code_ptr - mapping_table, code_ptr - vmap_table, code_ptr - gc_map, frame_size_in_bytes,
218 auto* const mapping_table = compiled_method->GetMappingTable(); local
224 self, mapping_table->data(), mapping_table->data() + mapping_table->size());
178 WriteMethodHeaderAndCode(const CompiledMethod* compiled_method, uint8_t* reserve_begin, uint8_t* reserve_end, const uint8_t* mapping_table, const uint8_t* vmap_table, const uint8_t* gc_map) argument
/art/compiler/optimizing/
H A Doptimizing_compiler.cc433 ArrayRef<const uint8_t>(), // mapping_table.
447 std::vector<uint8_t> mapping_table; local
448 codegen->BuildMappingTable(&mapping_table);
470 AlignVectorSize(mapping_table),

Completed in 212 milliseconds