Home
last modified time | relevance | path

Searched refs:IF_EQZ (Results 1 – 10 of 10) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DRandomBranchChanger.java38 Opcode.IF_EQZ,
58 } else if (Opcode.isBetween(opcode, Opcode.IF_EQZ, Opcode.IF_LEZ)) { in getModifiedOpcode()
59 int index = opcode.ordinal() - Opcode.IF_EQZ.ordinal(); in getModifiedOpcode()
DOppositeBranchChanger.java50 case IF_EQZ: in getModifiedOpcode()
53 return Opcode.IF_EQZ; in getModifiedOpcode()
/art/compiler/optimizing/
Dsuspend_check_test.cc81 Instruction::IF_EQZ, 0xFFFF, in TEST_F()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java76 IF_EQZ, enumConstant
DInstruction.java377 addOpcodeInfo(Opcode.IF_EQZ, "if-eqz", 0x38, new Format21t()); in addOpcodeInfo() argument
/art/libdexfile/dex/
Ddex_instruction_utils.h84 return Instruction::IF_EQZ <= opcode && opcode <= Instruction::IF_LEZ; in IsInstructionIfCcZ()
Ddex_instruction_list.h78 …V(0x38, IF_EQZ, "if-eqz", k21t, kIndexNone, kContinue | kBranch, 0, kVerifyRegA | kVerifyBranchTar…
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc426 case Instruction::IF_EQZ: in ProcessCodeItem()
/art/runtime/verifier/
Dmethod_verifier.cc1473 case Instruction::IF_EQZ: in GetBranchOffset()
2664 case Instruction::IF_EQZ: in CodeFlowVerifyInstruction()
2728 if (inst->Opcode() == Instruction::IF_EQZ) { in CodeFlowVerifyInstruction()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h819 HANDLER_ATTRIBUTES bool IF_EQZ() { in IF_EQZ() function