Searched refs:kThrow (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | dex_instruction_list.h | 47 …V(0x1A, CONST_STRING, "const-string", k21c, true, kStringRef, kContinue | kThrow, kVerifyRegA | kV… 48 …V(0x1B, CONST_STRING_JUMBO, "const-string/jumbo", k31c, true, kStringRef, kContinue | kThrow, kVer… 49 …V(0x1C, CONST_CLASS, "const-class", k21c, true, kTypeRef, kContinue | kThrow, kVerifyRegA | kVerif… 50 …V(0x1D, MONITOR_ENTER, "monitor-enter", k11x, false, kNone, kContinue | kThrow | kClobber, kVerify… 51 …V(0x1E, MONITOR_EXIT, "monitor-exit", k11x, false, kNone, kContinue | kThrow | kClobber, kVerifyRe… 52 …V(0x1F, CHECK_CAST, "check-cast", k21c, true, kTypeRef, kContinue | kThrow, kVerifyRegA | kVerifyR… 53 …V(0x20, INSTANCE_OF, "instance-of", k22c, true, kTypeRef, kContinue | kThrow, kVerifyRegA | kVerif… 54 …V(0x21, ARRAY_LENGTH, "array-length", k12x, true, kNone, kContinue | kThrow, kVerifyRegA | kVerify… 55 …V(0x22, NEW_INSTANCE, "new-instance", k21c, true, kTypeRef, kContinue | kThrow | kClobber, kVerify… 56 …V(0x23, NEW_ARRAY, "new-array", k22c, true, kTypeRef, kContinue | kThrow | kClobber, kVerifyRegA |… [all …]
|
D | dex_instruction.h | 122 kThrow = 0x000008, // could cause an exception to be thrown enumerator 474 return (kInstructionFlags[Opcode()] & kThrow) != 0; in IsThrow()
|
/art/compiler/dex/ |
D | mir_graph.cc | 837 } else if (flags & Instruction::kThrow) { in InlineMethod() 2514 return Instruction::kContinue | Instruction::kThrow; in FlagsOf() 2516 return Instruction::kContinue | Instruction::kThrow; in FlagsOf() 2518 return Instruction::kContinue | Instruction::kThrow; in FlagsOf() 2520 return Instruction::kContinue | Instruction::kThrow; in FlagsOf() 2558 return Instruction::kContinue | Instruction::kThrow; in FlagsOf() 2560 return Instruction::kContinue | Instruction::kThrow; in FlagsOf()
|
D | mir_optimization.cc | 1819 if ((mir->dalvikInsn.FlagsOf() & Instruction::kThrow) == 0) { in CanThrow()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 610 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) { in Fail() 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() 3026 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) { in CodeFlowVerifyInstruction()
|