Home
last modified time | relevance | path

Searched refs:PACKED_SWITCH (Results 1 – 11 of 11) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DInstructionDuplicator.java76 if (opcode == Opcode.SPARSE_SWITCH || opcode == Opcode.PACKED_SWITCH in generateMutation()
DRandomInstructionGenerator.java134 || Opcode.isBetween(newOpcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH) in generateMutation()
/art/dexdump/
Ddexdump_cfg.cc53 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in dumpMethodCFGImpl()
230 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in dumpMethodCFGImpl()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java63 PACKED_SWITCH, enumConstant
DInstruction.java364 addOpcodeInfo(Opcode.PACKED_SWITCH, "packed-switch", 0x2b, new Format31t()); in addOpcodeInfo() argument
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java591 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) { in isInstructionSwitch()
/art/runtime/interpreter/
Dinterpreter_common.h412 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); in DoPackedSwitch()
Dinterpreter_switch_impl.cc637 case Instruction::PACKED_SWITCH: { in ExecuteSwitchImpl()
/art/runtime/
Ddex_instruction_list.h65 …V(0x2B, PACKED_SWITCH, "packed-switch", k31t, kIndexNone, kContinue | kSwitch, kVerifyRegA | kVeri…
/art/runtime/verifier/
Dmethod_verifier.cc1512 bool is_packed_switch = (*insns & 0xff) == Instruction::PACKED_SWITCH; in CheckSwitchTargets()
2551 case Instruction::PACKED_SWITCH: in CodeFlowVerifyInstruction()
3555 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dinstruction_builder.cc2754 case Instruction::PACKED_SWITCH: { in ProcessDexInstruction()