Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc1470 uint32_t start_guess = 0; in CodeFlowVerifyMethod() local
1478 uint32_t insn_idx = start_guess; in CodeFlowVerifyMethod()
1484 if (start_guess != 0) { in CodeFlowVerifyMethod()
1486 start_guess = 0; in CodeFlowVerifyMethod()
1519 if (!CodeFlowVerifyInstruction(&start_guess)) { in CodeFlowVerifyMethod()
1600 bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) { in CodeFlowVerifyInstruction() argument
3146 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits(); in CodeFlowVerifyInstruction()
3149 *start_guess = work_insn_idx_ + branch_target; in CodeFlowVerifyInstruction()
3152 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_); in CodeFlowVerifyInstruction()
3153 DCHECK(insn_flags_[*start_guess].IsOpcode()); in CodeFlowVerifyInstruction()
Dmethod_verifier.h522 bool CodeFlowVerifyInstruction(uint32_t* start_guess)