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 | 148 kThrow = 0x08, // could cause an exception to be thrown enumerator 580 return (kInstructionDescriptors[Opcode()].flags & kThrow) != 0; in IsThrow()
|
/art/runtime/ |
D | class_linker-inl.h | 271 template <bool kThrow> 276 return CheckInvokeClassMismatch<kThrow>( in CheckInvokeClassMismatch()
|
D | class_linker.h | 1391 template <bool kThrow>
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2075 if (((opcode_flags & Instruction::kThrow) != 0 || IsCompatThrow(inst->Opcode())) && in CodeFlowVerifyInstruction() 2426 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction() 3496 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction() 3590 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) { in CodeFlowVerifyInstruction() 5557 if ((Instruction::FlagsOf(opcode) & Instruction::kThrow) == 0 && in Fail()
|
/art/compiler/optimizing/ |
D | nodes.h | 7211 : HExpression(kThrow, SideEffects::CanTriggerGC(), dex_pc) { in HThrow()
|