Home | History | Annotate | Download | only in verifier

Lines Matching refs:start_guess

1329   uint32_t start_guess = 0;
1333 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1334 uint32_t insn_idx = start_guess;
1340 if (start_guess != 0) {
1342 start_guess = 0;
1375 if (!CodeFlowVerifyInstruction(&start_guess)) {
1434 bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
2947 * Update start_guess. Advance to the next instruction of that's
2949 * neither of those exists we're in a return or throw; leave start_guess
2953 *start_guess = work_insn_idx_ + insn_flags_[work_insn_idx_].GetLengthInCodeUnits();
2956 *start_guess = work_insn_idx_ + branch_target;
2959 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
2960 DCHECK(insn_flags_[*start_guess].IsOpcode());