Lines Matching refs:abs_offset
1435 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1436 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1437 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()
1438 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1440 << reinterpret_cast<void*>(abs_offset) << ") at " in CheckBranchTarget()
1444 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()
1581 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local
1582 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()
1583 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()
1584 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()
1586 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at " in CheckSwitchTargets()
1591 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckSwitchTargets()
3514 uint32_t abs_offset; in CodeFlowVerifyInstruction() local
3519 abs_offset = work_insn_idx_ + offset; in CodeFlowVerifyInstruction()
3520 DCHECK_LT(abs_offset, code_item_accessor_.InsnsSizeInCodeUnits()); in CodeFlowVerifyInstruction()
3521 if (!CheckNotMoveExceptionOrMoveResult(code_item_accessor_.Insns(), abs_offset)) { in CodeFlowVerifyInstruction()
3524 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) { in CodeFlowVerifyInstruction()