Home
last modified time | relevance | path

Searched refs:start_guess (Results 1 – 2 of 2) sorted by relevance

/art/runtime/verifier/
Dmethod_verifier.cc1809 uint32_t start_guess = 0; in CodeFlowVerifyMethod() local
1817 uint32_t insn_idx = start_guess; in CodeFlowVerifyMethod()
1823 if (start_guess != 0) { in CodeFlowVerifyMethod()
1825 start_guess = 0; in CodeFlowVerifyMethod()
1858 if (!CodeFlowVerifyInstruction(&start_guess)) { in CodeFlowVerifyMethod()
1966 bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) { in CodeFlowVerifyInstruction() argument
3624 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits(); in CodeFlowVerifyInstruction()
3627 *start_guess = work_insn_idx_ + branch_target; in CodeFlowVerifyInstruction()
3630 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_); in CodeFlowVerifyInstruction()
3631 DCHECK(GetInstructionFlags(*start_guess).IsOpcode()); in CodeFlowVerifyInstruction()
Dmethod_verifier.h579 bool CodeFlowVerifyInstruction(uint32_t* start_guess)