Home | History | Annotate | Download | only in dex

Lines Matching refs:check_insn

345   const Instruction* check_insn = Instruction::At(cu_->code_item->insns_ + catch_offset);
346 DCHECK(check_insn->Opcode() == Instruction::MOVE_EXCEPTION);
347 if (check_insn->VRegA_11x() == monitor_reg) {
351 check_insn = check_insn->Next();
355 switch (check_insn->Opcode()) {
361 dest = check_insn->VRegA_12x();
369 dest = check_insn->VRegA_22x();
377 dest = check_insn->VRegA_32x();
383 check_insn = check_insn->RelativeAt(check_insn->GetTargetOffset());
386 return check_insn->Opcode() == Instruction::MONITOR_EXIT &&
387 check_insn->VRegA_11x() == monitor_reg;
394 check_insn = check_insn->Next();