Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction_list.h48 …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 …]
Ddex_instruction.h147 kThrow = 0x08, // could cause an exception to be thrown enumerator
573 return (kInstructionDescriptors[Opcode()].flags & kThrow) != 0; in IsThrow()
/art/runtime/
Dclass_linker-inl.h267 template <bool kThrow>
272 return CheckInvokeClassMismatch<kThrow>( in CheckInvokeClassMismatch()
Dclass_linker.h1322 template <bool kThrow>
/art/runtime/verifier/
Dmethod_verifier.cc2055 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) { in CodeFlowVerifyInstruction()
2412 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction()
3487 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction()
3581 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) { in CodeFlowVerifyInstruction()
5476 if ((opcode_flags & Instruction::kThrow) == 0 && in Fail()
/art/compiler/optimizing/
Dnodes.h7051 : HExpression(kThrow, SideEffects::CanTriggerGC(), dex_pc) { in HThrow()