Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dsuspend_check_test.cc82 Instruction::IF_EQZ, 0xFFFF, in TEST()
/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/runtime/
Ddex_instruction_utils.h79 return Instruction::IF_EQZ <= opcode && opcode <= Instruction::IF_LEZ; in IsInstructionIfCcZ()
Ddex_instruction_list.h77 …V(0x38, IF_EQZ, "if-eqz", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarg…
/art/compiler/dex/
Dmir_optimization.cc230 static_assert(arraysize(kIfCcZConditionCodes) == Instruction::IF_LEZ - Instruction::IF_EQZ + 1,
234 return kIfCcZConditionCodes[opcode - Instruction::IF_EQZ]; in ConditionCodeForIfCcZ()
237 static_assert(ConditionCodeForIfCcZ(Instruction::IF_EQZ) == kCondEq, "if_eqz ccode");
454 case Instruction::IF_EQZ: is_taken = (src1 == 0); break; in EvaluateBranch()
506 case Instruction::IF_EQZ: in BasicBlockOpt()
798 case Instruction::IF_EQZ: opcode = Instruction::IF_NEZ; break; in LayoutBlocks()
799 case Instruction::IF_NEZ: opcode = Instruction::IF_EQZ; break; in LayoutBlocks()
Dmir_graph.h473 return ((last_opcode == Instruction::IF_EQZ && fall_through == succ_id) || in BranchesToSuccessorOnlyIfNotZero()
Dmir_optimization_test.cc894 DEF_OTHER1(3u, Instruction::IF_EQZ, 13u), // Last insn in the BB #3. in TEST_F()
Dgvn_dead_code_elimination.cc1089 case Instruction::IF_EQZ: in RecordMIR()
Dlocal_value_numbering.cc1525 case Instruction::IF_EQZ: in GetValueNumber()
Dmir_graph.cc475 case Instruction::IF_EQZ: in ProcessCanBranch()
/art/compiler/dex/quick/
Dquick_compiler.cc194 Instruction::IF_EQZ,
Dmir_to_lir.cc711 case Instruction::IF_EQZ: in CompileDalvikInstruction()
Dgen_common.cc418 case Instruction::IF_EQZ: in GenCompareZeroAndBranch()
/art/runtime/verifier/
Dmethod_verifier.cc1099 case Instruction::IF_EQZ: in GetBranchOffset()
2141 case Instruction::IF_EQZ: in CodeFlowVerifyInstruction()
2203 if (inst->Opcode() == Instruction::IF_EQZ) { in CodeFlowVerifyInstruction()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc864 HANDLE_INSTRUCTION_START(IF_EQZ) { in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc732 case Instruction::IF_EQZ: { in ExecuteSwitchImpl()