Lines Matching refs:opcode_flags
2049 int opcode_flags = Instruction::FlagsOf(inst->Opcode()); in CodeFlowVerifyInstruction() local
2066 if (((opcode_flags & Instruction::kThrow) != 0 || IsCompatThrow(inst->Opcode())) && in CodeFlowVerifyInstruction()
2418 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction()
3438 LogVerifyInfo() << "Elevating opcode flags from " << opcode_flags << " to Throw"; in CodeFlowVerifyInstruction()
3440 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction()
3466 if ((opcode_flags & Instruction::kBranch) != 0) { in CodeFlowVerifyInstruction()
3473 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0); in CodeFlowVerifyInstruction()
3496 if ((opcode_flags & Instruction::kSwitch) != 0) { in CodeFlowVerifyInstruction()
3534 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) { in CodeFlowVerifyInstruction()
3598 if ((opcode_flags & Instruction::kContinue) != 0 && !exc_handler_unreachable) { in CodeFlowVerifyInstruction()
3637 if ((opcode_flags & Instruction::kReturn) != 0) { in CodeFlowVerifyInstruction()
3647 if ((opcode_flags & Instruction::kContinue) != 0) { in CodeFlowVerifyInstruction()
3650 } else if ((opcode_flags & Instruction::kBranch) != 0) { in CodeFlowVerifyInstruction()