Lines Matching refs:abs_offset
1428 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1429 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1430 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()
1431 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1433 << reinterpret_cast<void*>(abs_offset) << ") at " in CheckBranchTarget()
1437 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()
1574 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local
1575 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()
1576 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()
1577 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()
1579 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at " in CheckSwitchTargets()
1584 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckSwitchTargets()
3569 uint32_t abs_offset; in CodeFlowVerifyInstruction() local
3574 abs_offset = work_insn_idx_ + offset; in CodeFlowVerifyInstruction()
3575 DCHECK_LT(abs_offset, code_item_accessor_.InsnsSizeInCodeUnits()); in CodeFlowVerifyInstruction()
3576 if (!CheckNotMoveExceptionOrMoveResult(code_item_accessor_.Insns(), abs_offset)) { in CodeFlowVerifyInstruction()
3579 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) { in CodeFlowVerifyInstruction()