Searched refs:SPARSE_SWITCH (Results 1 – 11 of 11) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | InstructionDuplicator.java | 76 if (opcode == Opcode.SPARSE_SWITCH || opcode == Opcode.PACKED_SWITCH in generateMutation()
|
D | RandomInstructionGenerator.java | 134 || Opcode.isBetween(newOpcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH) in generateMutation()
|
/art/runtime/ |
D | bytecode_utils.h | 61 sparse_(instruction.Opcode() == Instruction::SPARSE_SWITCH) { in DexSwitchTable()
|
D | dex_instruction_list.h | 66 …V(0x2C, SPARSE_SWITCH, "sparse-switch", k31t, kIndexNone, kContinue | kSwitch, kVerifyRegA | kVeri…
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | Opcode.java | 64 SPARSE_SWITCH, enumConstant
|
D | Instruction.java | 365 addOpcodeInfo(Opcode.SPARSE_SWITCH, "sparse-switch", 0x2c, new Format31t()); in addOpcodeInfo() argument
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | CodeTranslator.java | 591 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) { in isInstructionSwitch()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 440 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH); in DoSparseSwitch()
|
D | interpreter_switch_impl.cc | 645 case Instruction::SPARSE_SWITCH: { in ExecuteSwitchImpl()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2552 case Instruction::SPARSE_SWITCH: in CodeFlowVerifyInstruction() 3560 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH); in CodeFlowVerifyInstruction()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 2753 case Instruction::SPARSE_SWITCH: in ProcessDexInstruction()
|