Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc608 int opcode_flags = Instruction::FlagsOf(inst->Opcode()); in Fail() local
610 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) { in Fail()
1632 int opcode_flags = Instruction::FlagsOf(inst->Opcode()); in CodeFlowVerifyInstruction() local
1649 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) { in CodeFlowVerifyInstruction()
1923 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction()
2930 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction()
2959 if ((opcode_flags & Instruction::kBranch) != 0) { in CodeFlowVerifyInstruction()
2966 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0); in CodeFlowVerifyInstruction()
2988 if ((opcode_flags & Instruction::kSwitch) != 0) { in CodeFlowVerifyInstruction()
3026 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) { in CodeFlowVerifyInstruction()
[all …]