Searched refs:kThrow (Results 1 – 6 of 6) sorted by relevance
/art/libdexfile/dex/ |
D | dex_instruction_list.h | 48 …V(0x1A, CONST_STRING, "const-string", k21c, kIndexStringRef, kContinue | kThrow, 0, kVerifyRegA | … 49 …V(0x1B, CONST_STRING_JUMBO, "const-string/jumbo", k31c, kIndexStringRef, kContinue | kThrow, 0, kV… 50 …V(0x1C, CONST_CLASS, "const-class", k21c, kIndexTypeRef, kContinue | kThrow, 0, kVerifyRegA | kVer… 51 …V(0x1D, MONITOR_ENTER, "monitor-enter", k11x, kIndexNone, kContinue | kThrow, kClobber, kVerifyReg… 52 …V(0x1E, MONITOR_EXIT, "monitor-exit", k11x, kIndexNone, kContinue | kThrow, kClobber, kVerifyRegA)… 53 …V(0x1F, CHECK_CAST, "check-cast", k21c, kIndexTypeRef, kContinue | kThrow, 0, kVerifyRegA | kVerif… 54 …V(0x20, INSTANCE_OF, "instance-of", k22c, kIndexTypeRef, kContinue | kThrow, 0, kVerifyRegA | kVer… 55 …V(0x21, ARRAY_LENGTH, "array-length", k12x, kIndexNone, kContinue | kThrow, 0, kVerifyRegA | kVeri… 56 …V(0x22, NEW_INSTANCE, "new-instance", k21c, kIndexTypeRef, kContinue | kThrow, kClobber, kVerifyRe… 57 …V(0x23, NEW_ARRAY, "new-array", k22c, kIndexTypeRef, kContinue | kThrow, kClobber, kVerifyRegA | k… [all …]
|
D | dex_instruction.h | 147 kThrow = 0x08, // could cause an exception to be thrown enumerator 573 return (kInstructionDescriptors[Opcode()].flags & kThrow) != 0; in IsThrow()
|
/art/runtime/ |
D | class_linker-inl.h | 202 template <bool kThrow> 207 return CheckInvokeClassMismatch<kThrow>( in CheckInvokeClassMismatch()
|
D | class_linker.h | 1283 template <bool kThrow>
|
/art/runtime/verifier/ |
D | method_verifier.cc | 853 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) { in Fail() 2027 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) { in CodeFlowVerifyInstruction() 2349 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction() 3422 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction() 3516 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) { in CodeFlowVerifyInstruction()
|
/art/compiler/optimizing/ |
D | nodes.h | 6723 : HTemplateInstruction(kThrow, SideEffects::CanTriggerGC(), dex_pc) { in HThrow()
|