Searched defs:opcode_flags (Results 1 - 1 of 1) sorted by relevance

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

Completed in 26 milliseconds