Home | History | Annotate | Download | only in dex

Lines Matching refs:code_offset

155 BasicBlock* MIRGraph::SplitBlock(DexOffset code_offset,
157 DCHECK_GT(code_offset, orig_block->start_offset);
161 if (insn->offset == code_offset) break;
171 bottom_block->start_offset = code_offset;
266 BasicBlock* MIRGraph::FindBlock(DexOffset code_offset, bool split, bool create,
268 if (code_offset >= cu_->code_item->insns_size_in_code_units_) {
272 int block_id = dex_pc_to_block_map_.Get(code_offset);
275 if ((bb != NULL) && (bb->start_offset == code_offset)) {
287 return SplitBlock(code_offset, bb, bb == *immed_pred_block_p ? immed_pred_block_p : NULL);
293 bb->start_offset = code_offset;