Home
last modified time | relevance | path

Searched refs:MIR_IGNORE_RANGE_CHECK (Results 1 – 14 of 14) sorted by relevance

/art/compiler/dex/
Dlocal_value_numbering_test.cc521 ((i >= 12u && i <= 15u) ? MIR_IGNORE_RANGE_CHECK : 0); in TEST_F()
541 ((i == 3u) ? MIR_IGNORE_RANGE_CHECK : 0); in TEST_F()
624 ((i >= 4 && i != 6u && i != 9u) ? MIR_IGNORE_RANGE_CHECK : 0u); in TEST_F()
679 ((i == 6u || i == 7u || i >= 20u) ? MIR_IGNORE_RANGE_CHECK : 0u); in TEST_F()
706 int expected = (i == 6u || i == 7u) ? (MIR_IGNORE_NULL_CHECK | MIR_IGNORE_RANGE_CHECK) : 0u; in TEST_F()
Dmir_optimization.cc591 if (mir->optimization_flags & MIR_IGNORE_RANGE_CHECK) { in CountChecks()
687 can_combine &= ((throw_insn->optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0); in CombineBlocks()
Dmir_graph.h189 #define MIR_IGNORE_RANGE_CHECK (1 << kMIRIgnoreRangeCheck) macro
Dglobal_value_numbering_test.cc1817 (mirs_[i].optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0) << i; in TEST_F()
2053 (mirs_[i].optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0) << i; in TEST_F()
Dmir_graph.cc941 … (mir->optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0 ? " no_rangecheck" : " ", in DumpCFG()
Dlocal_value_numbering.cc997 mir->optimization_flags |= MIR_IGNORE_RANGE_CHECK; in HandleRangeCheck()
/art/compiler/dex/quick/mips/
Dint_mips.cc506 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayGet()
585 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayPut()
/art/compiler/dex/quick/arm/
Dint_arm.cc1319 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayGet()
1419 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayPut()
/art/compiler/dex/quick/arm64/
Dint_arm64.cc1127 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayGet()
1236 bool needs_range_check = (!(opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenArrayPut()
/art/compiler/dex/quick/x86/
Dint_x86.cc2090 if (!(opt_flags & MIR_IGNORE_RANGE_CHECK)) { in GenArrayGet()
2138 if (!(opt_flags & MIR_IGNORE_RANGE_CHECK)) { in GenArrayPut()
Dtarget_x86.cc2847 bool range_check = (!(info->opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenInlinedCharAt()
/art/compiler/dex/quick/
Dgen_invoke.cc1251 bool range_check = (!(info->opt_flags & MIR_IGNORE_RANGE_CHECK)); in GenInlinedCharAt()
Dgen_common.cc811 bool needs_range_check = !(opt_flags & MIR_IGNORE_RANGE_CHECK); in GenArrayObjPut()
/art/compiler/llvm/
Dgbc_expander.cc2624 bool ignore_range_check = ((opt_flags & MIR_IGNORE_RANGE_CHECK) != 0); in EmitGuard_ArrayIndexOutOfBoundsException()