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.cc645 uint32_t pc2dex_offset = 0u; local
654 DCHECK(pc2dex_offset <= tgt_lir->offset);
655 pc2dex_data_size += UnsignedLeb128Size(tgt_lir->offset - pc2dex_offset);
658 pc2dex_offset = tgt_lir->offset;
682 pc2dex_offset = 0u;
688 DCHECK(pc2dex_offset <= tgt_lir->offset);
689 write_pos = EncodeUnsignedLeb128(write_pos, tgt_lir->offset - pc2dex_offset);
692 pc2dex_offset = tgt_lir->offset;

Completed in 36 milliseconds