Lines Matching refs:abs_offset
1395 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1396 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1397 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()
1398 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1400 << reinterpret_cast<void*>(abs_offset) << ") at " in CheckBranchTarget()
1404 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()
1541 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local
1542 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()
1543 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()
1544 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()
1546 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at " in CheckSwitchTargets()
1551 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckSwitchTargets()
3435 uint32_t abs_offset; in CodeFlowVerifyInstruction() local
3440 abs_offset = work_insn_idx_ + offset; in CodeFlowVerifyInstruction()
3441 DCHECK_LT(abs_offset, code_item_accessor_.InsnsSizeInCodeUnits()); in CodeFlowVerifyInstruction()
3442 if (!CheckNotMoveExceptionOrMoveResult(code_item_accessor_.Insns(), abs_offset)) { in CodeFlowVerifyInstruction()
3445 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) { in CodeFlowVerifyInstruction()