Home | History | Annotate | Download | only in verifier

Lines Matching full:start_guess

1809   uint32_t start_guess = 0;
1816 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1817 uint32_t insn_idx = start_guess;
1823 if (start_guess != 0) {
1825 start_guess = 0;
1858 if (!CodeFlowVerifyInstruction(&start_guess)) {
1966 bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
3617 * Update start_guess. Advance to the next instruction of that's
3619 * neither of those exists we're in a return or throw; leave start_guess
3624 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
3627 *start_guess = work_insn_idx_ + branch_target;
3630 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
3631 DCHECK(GetInstructionFlags(*start_guess).IsOpcode());