Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.cc511 uint32_t pc2dex_offset = pc_info.native_pc; in BuildSourceMap() local
513 src_map->push_back(SrcMapElem({pc2dex_offset, pc2dex_dalvik_offset})); in BuildSourceMap()
520 uint32_t pc2dex_offset = 0u; in BuildMappingTable() local
529 pc2dex_data_size += UnsignedLeb128Size(pc_info.native_pc - pc2dex_offset); in BuildMappingTable()
531 pc2dex_offset = pc_info.native_pc; in BuildMappingTable()
561 pc2dex_offset = 0u; in BuildMappingTable()
568 DCHECK(pc2dex_offset <= pc_info.native_pc); in BuildMappingTable()
569 write_pos = EncodeUnsignedLeb128(write_pos, pc_info.native_pc - pc2dex_offset); in BuildMappingTable()
571 pc2dex_offset = pc_info.native_pc; in BuildMappingTable()
/art/compiler/dex/quick/
Dcodegen_util.cc677 uint32_t pc2dex_offset = 0u; in CreateMappingTables() local
688 DCHECK(pc2dex_offset <= tgt_lir->offset); in CreateMappingTables()
689 pc2dex_data_size += UnsignedLeb128Size(tgt_lir->offset - pc2dex_offset); in CreateMappingTables()
692 pc2dex_offset = tgt_lir->offset; in CreateMappingTables()
721 pc2dex_offset = 0u; in CreateMappingTables()
733 DCHECK(pc2dex_offset <= tgt_lir->offset); in CreateMappingTables()
734 write_pos = EncodeUnsignedLeb128(write_pos, tgt_lir->offset - pc2dex_offset); in CreateMappingTables()
737 pc2dex_offset = tgt_lir->offset; in CreateMappingTables()