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

/art/runtime/
H A Dexception_test.cc79 uint32_t gc_map_offset = mapping_table_offset + fake_gc_map_.size(); local
80 OatQuickMethodHeader method_header(mapping_table_offset, vmap_table_offset, gc_map_offset,
96 const uint8_t* code_ptr = &fake_header_code_and_maps_[gc_map_offset];
H A Doat.cc500 uint32_t mapping_table_offset, uint32_t vmap_table_offset, uint32_t gc_map_offset,
504 gc_map_offset_(gc_map_offset),
499 OatQuickMethodHeader( uint32_t mapping_table_offset, uint32_t vmap_table_offset, uint32_t gc_map_offset, uint32_t frame_size_in_bytes, uint32_t core_spill_mask, uint32_t fp_spill_mask, uint32_t code_size) argument
/art/compiler/
H A Dcommon_compiler_test.cc177 uint32_t gc_map_offset = gc_map.empty() ? 0u local
179 OatQuickMethodHeader method_header(mapping_table_offset, vmap_table_offset, gc_map_offset,
H A Doat_writer.cc380 uint32_t gc_map_offset = method_header->gc_map_offset_; local
392 if (gc_map_offset != 0u) {
393 gc_map_offset += code_offset;
394 DCHECK_LT(gc_map_offset, code_offset);
400 gc_map_offset, frame_size_in_bytes, core_spill_mask,
/art/oatdump/
H A Doatdump.cc505 uint32_t gc_map_offset = oat_method.GetGcMapOffset(); local
506 *indent2_os << StringPrintf("(offset=0x%08x)\n", gc_map_offset);
507 if (gc_map_offset > oat_file_.Size()) {
510 gc_map_offset, oat_file_.Size());

Completed in 103 milliseconds