Searched refs:PACKED_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/dexdump/ |
D | dexdump_cfg.cc | 53 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in dumpMethodCFGImpl() 230 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in dumpMethodCFGImpl()
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | Opcode.java | 63 PACKED_SWITCH, enumConstant
|
D | Instruction.java | 364 addOpcodeInfo(Opcode.PACKED_SWITCH, "packed-switch", 0x2b, 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 | 412 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); in DoPackedSwitch()
|
D | interpreter_switch_impl.cc | 637 case Instruction::PACKED_SWITCH: { in ExecuteSwitchImpl()
|
/art/runtime/ |
D | dex_instruction_list.h | 65 …V(0x2B, PACKED_SWITCH, "packed-switch", k31t, kIndexNone, kContinue | kSwitch, kVerifyRegA | kVeri…
|
/art/runtime/verifier/ |
D | method_verifier.cc | 1512 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/ |
D | instruction_builder.cc | 2754 case Instruction::PACKED_SWITCH: { in ProcessDexInstruction()
|