Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc303 uint32_t pc2dex_offset = 0u; in BuildMappingTable() local
311 pc2dex_data_size += UnsignedLeb128Size(pc_info.native_pc - pc2dex_offset); in BuildMappingTable()
313 pc2dex_offset = pc_info.native_pc; in BuildMappingTable()
329 pc2dex_offset = 0u; in BuildMappingTable()
333 DCHECK(pc2dex_offset <= pc_info.native_pc); in BuildMappingTable()
334 write_pos = EncodeUnsignedLeb128(write_pos, pc_info.native_pc - pc2dex_offset); in BuildMappingTable()
336 pc2dex_offset = pc_info.native_pc; in BuildMappingTable()
/art/compiler/dex/quick/
Dcodegen_util.cc659 uint32_t pc2dex_offset = 0u; in CreateMappingTables() local
668 DCHECK(pc2dex_offset <= tgt_lir->offset); in CreateMappingTables()
669 pc2dex_data_size += UnsignedLeb128Size(tgt_lir->offset - pc2dex_offset); in CreateMappingTables()
672 pc2dex_offset = tgt_lir->offset; in CreateMappingTables()
696 pc2dex_offset = 0u; in CreateMappingTables()
702 DCHECK(pc2dex_offset <= tgt_lir->offset); in CreateMappingTables()
703 write_pos = EncodeUnsignedLeb128(write_pos, tgt_lir->offset - pc2dex_offset); in CreateMappingTables()
706 pc2dex_offset = tgt_lir->offset; in CreateMappingTables()