Home
last modified time | relevance | path

Searched refs:PACKED_SWITCH (Results 1 – 13 of 13) 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.cc55 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in DumpMethodCFG()
229 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in DumpMethodCFG()
/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/dexlayout/
Dcompact_dex_writer.cc179 opcode == Instruction::PACKED_SWITCH || in WriteCodeItem()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java591 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) { in isInstructionSwitch()
/art/tools/veridex/
Dflow_analysis.cc657 case Instruction::PACKED_SWITCH: in ProcessDexInstruction()
/art/runtime/interpreter/
Dinterpreter_common.h898 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH); in DoPackedSwitch()
Dinterpreter_switch_impl-inl.h830 HANDLER_ATTRIBUTES bool PACKED_SWITCH() { in PACKED_SWITCH() function
/art/libdexfile/dex/
Ddex_instruction_list.h65 …V(0x2B, PACKED_SWITCH, "packed-switch", k31t, kIndexNone, kContinue | kSwitch, 0, kVerifyRegA | kV…
/art/runtime/verifier/
Dmethod_verifier.cc1512 bool is_packed_switch = (*insns & 0xff) == Instruction::PACKED_SWITCH; in CheckSwitchTargets()
2594 case Instruction::PACKED_SWITCH: in CodeFlowVerifyInstruction()
3557 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) { in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dinstruction_builder.cc3129 case Instruction::PACKED_SWITCH: { in ProcessDexInstruction()