Home
last modified time | relevance | path

Searched refs:IF_LEZ (Results 1 – 11 of 11) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DOppositeBranchChanger.java57 return Opcode.IF_LEZ; in getModifiedOpcode()
60 case IF_LEZ: in getModifiedOpcode()
DRandomBranchChanger.java43 Opcode.IF_LEZ
58 } else if (Opcode.isBetween(opcode, Opcode.IF_EQZ, Opcode.IF_LEZ)) { in getModifiedOpcode()
DIfBranchChanger.java153 if (Opcode.isBetween(opcode, Opcode.IF_EQ, Opcode.IF_LEZ)) { in isIfBranchOperation()
DRandomInstructionGenerator.java194 if (Opcode.isBetween(newOpcode, Opcode.IF_EQ, Opcode.IF_LEZ) in generateMutation()
211 if (Opcode.isBetween(newOpcode, Opcode.IF_EQ, Opcode.IF_LEZ) in applyMutation()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java81 IF_LEZ, enumConstant
DInstruction.java382 addOpcodeInfo(Opcode.IF_LEZ, "if-lez", 0x3d, new Format21t()); in addOpcodeInfo() argument
/art/libdexfile/dex/
Ddex_instruction_utils.h89 return Instruction::IF_EQZ <= opcode && opcode <= Instruction::IF_LEZ; in IsInstructionIfCcZ()
Ddex_instruction_list.h83 …V(0x3D, IF_LEZ, "if-lez", k21t, kIndexNone, kContinue | kBranch, 0, kVerifyRegA | kVerifyBranchTar…
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java579 if (Opcode.isBetween(opcode, Opcode.IF_EQ, Opcode.IF_LEZ) in isInstructionBranch()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h914 HANDLER_ATTRIBUTES bool IF_LEZ() { in IF_LEZ() function
/art/runtime/verifier/
Dmethod_verifier.cc1472 case Instruction::IF_LEZ: in GetBranchOffset()
2786 case Instruction::IF_LEZ: { in CodeFlowVerifyInstruction()