Home
last modified time | relevance | path

Searched refs:PACKED_SWITCH (Results 1 – 17 of 17) 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/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/runtime/interpreter/
Dinterpreter_common.h293 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); in DoPackedSwitch()
Dinterpreter_goto_table_impl.cc642 HANDLE_INSTRUCTION_START(PACKED_SWITCH) { in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc538 case Instruction::PACKED_SWITCH: { in ExecuteSwitchImpl()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java583 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) { in isInstructionSwitch()
/art/compiler/dex/quick/
Dquick_compiler.cc181 Instruction::PACKED_SWITCH,
Dmir_to_lir.cc679 case Instruction::PACKED_SWITCH: in CompileDalvikInstruction()
/art/compiler/dex/
Dmir_graph.cc535 if (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) { in ProcessCanSwitch()
565 (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ? kPackedSwitch : kSparseSwitch; in ProcessCanSwitch()
578 (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ? in ProcessCanSwitch()
Dgvn_dead_code_elimination.cc1081 case Instruction::PACKED_SWITCH: in RecordMIR()
Dlocal_value_numbering.cc1517 case Instruction::PACKED_SWITCH: in GetValueNumber()
/art/runtime/
Ddex_instruction_list.h64 …V(0x2B, PACKED_SWITCH, "packed-switch", k31t, false, kNone, kContinue | kSwitch, kVerifyRegA | kVe…
/art/compiler/dex/quick/x86/
Dutility_x86.cc986 case Instruction::PACKED_SWITCH: in AnalyzeMIR()
/art/runtime/verifier/
Dmethod_verifier.cc1137 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in CheckSwitchTargets()
2071 case Instruction::PACKED_SWITCH: in CodeFlowVerifyInstruction()
2994 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dbuilder.cc2270 case Instruction::PACKED_SWITCH: { in AnalyzeDexInstruction()