Home
last modified time | relevance | path

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

/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc2334 uint32_t prev_idx = work_insn_idx_ - 1; in CodeFlowVerifyInstruction() local
2335 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2336 prev_idx--; in CodeFlowVerifyInstruction()
2338 const Instruction& prev_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
2358 if (prev_idx == 0 || GetInstructionFlags(prev_idx).IsBranchTarget()) { in CodeFlowVerifyInstruction()
2361 prev_idx--; in CodeFlowVerifyInstruction()
2362 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2363 prev_idx--; in CodeFlowVerifyInstruction()
2365 const Instruction& prev2_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
/aosp12/art/libdexfile/dex/
H A Ddex_file_verifier.cc2582 dex::TypeIndex prev_idx = prev_it.GetTypeIdx(); in CheckInterProtoIdItem() local
2584 DCHECK_NE(prev_idx, dex::TypeIndex(DexFile::kDexNoIndex16)); in CheckInterProtoIdItem()
2587 if (prev_idx < curr_idx) { in CheckInterProtoIdItem()
2589 } else if (UNLIKELY(prev_idx > curr_idx)) { in CheckInterProtoIdItem()