Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dbuilder.cc193 HBasicBlock* branch_target = FindBlockStartingAt(dex_pc + target_offset); in If_22t() local
195 DCHECK(branch_target != nullptr); in If_22t()
197 PotentiallyAddSuspendCheck(branch_target, dex_pc); in If_22t()
204 current_block_->AddSuccessor(branch_target); in If_22t()
212 HBasicBlock* branch_target = FindBlockStartingAt(dex_pc + target_offset); in If_21t() local
214 DCHECK(branch_target != nullptr); in If_21t()
216 PotentiallyAddSuspendCheck(branch_target, dex_pc); in If_21t()
222 current_block_->AddSuccessor(branch_target); in If_21t()
/art/runtime/verifier/
Dmethod_verifier.cc1634 int32_t branch_target = 0; in CodeFlowVerifyInstruction() local
2961 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) { in CodeFlowVerifyInstruction()
2967 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) { in CodeFlowVerifyInstruction()
2972 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) { in CodeFlowVerifyInstruction()
2976 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) { in CodeFlowVerifyInstruction()
3149 *start_guess = work_insn_idx_ + branch_target; in CodeFlowVerifyInstruction()