Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc2058 int opcode_flags = Instruction::FlagsOf(inst->Opcode()); in CodeFlowVerifyInstruction() local
2075 if (((opcode_flags & Instruction::kThrow) != 0 || IsCompatThrow(inst->Opcode())) && in CodeFlowVerifyInstruction()
2426 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction()
3494 LogVerifyInfo() << "Elevating opcode flags from " << opcode_flags << " to Throw"; in CodeFlowVerifyInstruction()
3496 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction()
3522 if ((opcode_flags & Instruction::kBranch) != 0) { in CodeFlowVerifyInstruction()
3529 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0); in CodeFlowVerifyInstruction()
3552 if ((opcode_flags & Instruction::kSwitch) != 0) { in CodeFlowVerifyInstruction()
3590 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) { in CodeFlowVerifyInstruction()
3654 if ((opcode_flags & Instruction::kContinue) != 0 && !exc_handler_unreachable) { in CodeFlowVerifyInstruction()
[all …]