Lines Matching refs:map
753 NativePcOffsetToReferenceMap map(gc_map_raw); in DumpGcMap() local
754 for (size_t entry = 0; entry < map.NumEntries(); entry++) { in DumpGcMap()
756 map.GetNativePcOffset(entry); in DumpGcMap()
758 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry)); in DumpGcMap()
763 verifier::DexPcToReferenceMap map(gc_map_raw); in DumpGcMap() local
764 for (size_t entry = 0; entry < map.NumEntries(); entry++) { in DumpGcMap()
765 uint32_t dex_pc = map.GetDexPc(entry); in DumpGcMap()
767 DumpGcMapRegisters(os, oat_method, code_item, map.RegWidth() * 8, map.GetBitMap(entry)); in DumpGcMap()
827 NativePcOffsetToReferenceMap map(gc_map_raw); in DumpGcMapAtNativePcOffset() local
828 if (map.HasEntry(native_pc_offset)) { in DumpGcMapAtNativePcOffset()
829 size_t num_regs = map.RegWidth() * 8; in DumpGcMapAtNativePcOffset()
830 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset); in DumpGcMapAtNativePcOffset()