Home | History | Annotate | Download | only in verifier

Lines Matching refs:abs_offset

1434   int32_t abs_offset = cur_offset + offset;
1435 if (UNLIKELY(abs_offset < 0 ||
1436 (uint32_t) abs_offset >= insn_count ||
1437 !GetInstructionFlags(abs_offset).IsOpcode())) {
1439 << reinterpret_cast<void*>(abs_offset) << ") at "
1443 GetInstructionFlags(abs_offset).SetBranchTarget();
1576 int32_t abs_offset = cur_offset + offset;
1577 if (UNLIKELY(abs_offset < 0 ||
1578 abs_offset >= static_cast<int32_t>(insn_count) ||
1579 !GetInstructionFlags(abs_offset).IsOpcode())) {
1581 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1586 GetInstructionFlags(abs_offset).SetBranchTarget();
3566 uint32_t abs_offset;
3571 abs_offset = work_insn_idx_ + offset;
3572 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
3573 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
3576 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {