Home
last modified time | relevance | path

Searched refs:dex2pc_offset (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dcode_generator.cc524 uint32_t dex2pc_offset = 0u; in BuildMappingTable() local
541 dex2pc_data_size += UnsignedLeb128Size(native_pc - dex2pc_offset); in BuildMappingTable()
543 dex2pc_offset = native_pc; in BuildMappingTable()
563 dex2pc_offset = 0u; in BuildMappingTable()
579 write_pos2 = EncodeUnsignedLeb128(write_pos2, native_pc - dex2pc_offset); in BuildMappingTable()
581 dex2pc_offset = native_pc; in BuildMappingTable()
/art/compiler/dex/quick/
Dcodegen_util.cc682 uint32_t dex2pc_offset = 0u; in CreateMappingTables() local
697 DCHECK(dex2pc_offset <= tgt_lir->offset); in CreateMappingTables()
698 dex2pc_data_size += UnsignedLeb128Size(tgt_lir->offset - dex2pc_offset); in CreateMappingTables()
701 dex2pc_offset = tgt_lir->offset; in CreateMappingTables()
723 dex2pc_offset = 0u; in CreateMappingTables()
741 DCHECK(dex2pc_offset <= tgt_lir->offset); in CreateMappingTables()
742 write_pos2 = EncodeUnsignedLeb128(write_pos2, tgt_lir->offset - dex2pc_offset); in CreateMappingTables()
745 dex2pc_offset = tgt_lir->offset; in CreateMappingTables()