Home
last modified time | relevance | path

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

/art/compiler/dex/quick/
Dcodegen_util.cc684 for (LIR* tgt_lir = first_lir_insn_; tgt_lir != nullptr; tgt_lir = NEXT_LIR(tgt_lir)) { in CreateMappingTables() local
686 if (!tgt_lir->flags.is_nop && (tgt_lir->opcode == kPseudoSafepointPC)) { in CreateMappingTables()
688 DCHECK(pc2dex_offset <= tgt_lir->offset); in CreateMappingTables()
689 pc2dex_data_size += UnsignedLeb128Size(tgt_lir->offset - pc2dex_offset); in CreateMappingTables()
690 pc2dex_data_size += SignedLeb128Size(static_cast<int32_t>(tgt_lir->dalvik_offset) - in CreateMappingTables()
692 pc2dex_offset = tgt_lir->offset; in CreateMappingTables()
693 pc2dex_dalvik_offset = tgt_lir->dalvik_offset; in CreateMappingTables()
695 if (!tgt_lir->flags.is_nop && (tgt_lir->opcode == kPseudoExportedPC)) { in CreateMappingTables()
697 DCHECK(dex2pc_offset <= tgt_lir->offset); in CreateMappingTables()
698 dex2pc_data_size += UnsignedLeb128Size(tgt_lir->offset - dex2pc_offset); in CreateMappingTables()
[all …]