Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
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/runtime/
Ddex_instruction_utils.h79 return Instruction::IF_EQZ <= opcode && opcode <= Instruction::IF_LEZ; in IsInstructionIfCcZ()
Ddex_instruction_list.h82 …V(0x3D, IF_LEZ, "if-lez", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarg…
/art/compiler/dex/
Dmir_optimization.cc230 static_assert(arraysize(kIfCcZConditionCodes) == Instruction::IF_LEZ - Instruction::IF_EQZ + 1,
242 static_assert(ConditionCodeForIfCcZ(Instruction::IF_LEZ) == kCondLe, "if_lez ccode");
459 case Instruction::IF_LEZ: is_taken = (src1 <= 0); break; in EvaluateBranch()
511 case Instruction::IF_LEZ: in BasicBlockOpt()
802 case Instruction::IF_GTZ: opcode = Instruction::IF_LEZ; break; in LayoutBlocks()
803 case Instruction::IF_LEZ: opcode = Instruction::IF_GTZ; break; in LayoutBlocks()
Dgvn_dead_code_elimination.cc1094 case Instruction::IF_LEZ: in RecordMIR()
Dlocal_value_numbering.cc1530 case Instruction::IF_LEZ: in GetValueNumber()
Dmir_graph.cc480 case Instruction::IF_LEZ: in ProcessCanBranch()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java571 if (Opcode.isBetween(opcode, Opcode.IF_EQ, Opcode.IF_LEZ) in isInstructionBranch()
/art/compiler/dex/quick/
Dquick_compiler.cc199 Instruction::IF_LEZ,
Dmir_to_lir.cc716 case Instruction::IF_LEZ: { in CompileDalvikInstruction()
Dgen_common.cc433 case Instruction::IF_LEZ: in GenCompareZeroAndBranch()
/art/runtime/verifier/
Dmethod_verifier.cc1104 case Instruction::IF_LEZ: in GetBranchOffset()
2252 case Instruction::IF_LEZ: { in CodeFlowVerifyInstruction()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc949 HANDLE_INSTRUCTION_START(IF_LEZ) { in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc797 case Instruction::IF_LEZ: { in ExecuteSwitchImpl()