Searched defs:pc2dex_offset (Results 1 - 2 of 2) sorted by relevance

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

Completed in 28 milliseconds