Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction_list.h47 …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 …]
Ddex_instruction.h124 kThrow = 0x000008, // could cause an exception to be thrown enumerator
476 return (kInstructionFlags[Opcode()] & kThrow) != 0; in IsThrow()
/art/runtime/verifier/
Dmethod_verifier.cc1483 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) { in CodeFlowVerifyInstruction()
1743 opcode_flags &= ~Instruction::kThrow; in CodeFlowVerifyInstruction()
2742 opcode_flags = Instruction::kThrow; in CodeFlowVerifyInstruction()
2834 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) { in CodeFlowVerifyInstruction()
/art/compiler/dex/
Dmir_graph.cc798 } else if (flags & Instruction::kThrow) { in InlineMethod()