Home
last modified time | relevance | path

Searched refs:kSwitch (Results 1 – 3 of 3) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.h147 kSwitch = 0x04, // switch statement enumerator
575 return (kInstructionDescriptors[Opcode()].flags & kSwitch) != 0; in IsSwitch()
Ddex_instruction_list.h65 …V(0x2B, PACKED_SWITCH, "packed-switch", k31t, kIndexNone, kContinue | kSwitch, 0, kVerifyRegA | kV…
66 …V(0x2C, SPARSE_SWITCH, "sparse-switch", k31t, kIndexNone, kContinue | kSwitch, 0, kVerifyRegA | kV…
/art/runtime/verifier/
Dmethod_verifier.cc3496 if ((opcode_flags & Instruction::kSwitch) != 0) { in CodeFlowVerifyInstruction()