Home
last modified time | relevance | path

Searched refs:SPARSE_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/runtime/
Dbytecode_utils.h61 sparse_(instruction.Opcode() == Instruction::SPARSE_SWITCH) { in DexSwitchTable()
Ddex_instruction_list.h66 …V(0x2C, SPARSE_SWITCH, "sparse-switch", k31t, kIndexNone, kContinue | kSwitch, kVerifyRegA | kVeri…
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java64 SPARSE_SWITCH, enumConstant
DInstruction.java365 addOpcodeInfo(Opcode.SPARSE_SWITCH, "sparse-switch", 0x2c, 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.h440 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); in DoSparseSwitch()
Dinterpreter_switch_impl.cc645 case Instruction::SPARSE_SWITCH: { in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc2552 case Instruction::SPARSE_SWITCH: in CodeFlowVerifyInstruction()
3560 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH); in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dinstruction_builder.cc2753 case Instruction::SPARSE_SWITCH: in ProcessDexInstruction()