Home
last modified time | relevance | path

Searched refs:lower (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dbounds_check_elimination.cc291 ValueRange(ScopedArenaAllocator* allocator, ValueBound lower, ValueBound upper) in ValueRange() argument
292 : allocator_(allocator), lower_(lower), upper_(upper) {} in ValueRange()
338 ValueBound lower = lower_.Add(constant, &overflow, &underflow); in Add() local
350 return new (allocator_) ValueRange(allocator_, lower, upper); in Add()
413 ValueBound lower = ValueBound::NarrowLowerBound(bound_, range->GetLower()); in Narrow() local
414 if (!lower.IsConstant() || lower.GetConstant() == std::numeric_limits<int32_t>::min()) { in Narrow()
455 return new (GetAllocator()) ValueRange(GetAllocator(), lower, range->GetUpper()); in Narrow()
721 ValueBound lower = bound; in HandleIf() local
736 lower = right_range->GetLower(); in HandleIf()
739 lower = ValueBound::Min(); in HandleIf()
[all …]
Dinduction_var_range_test.cc84 void BuildLoop(int32_t lower, HInstruction* upper, int32_t stride) { in BuildLoop() argument
104 phi->AddInput(graph_->GetIntConstant(lower)); // i = l in BuildLoop()
887 HInstruction* lower = nullptr; in TEST_F() local
897 range_.GenerateRange(increment_, phi, graph_, loop_preheader_, &lower, &upper); in TEST_F()
900 ASSERT_TRUE(lower != nullptr); in TEST_F()
901 ASSERT_TRUE(lower->IsAdd()); in TEST_F()
902 ExpectInt(0, lower->InputAt(0)); in TEST_F()
903 ExpectInt(0, lower->InputAt(1)); in TEST_F()
969 HInstruction* lower = nullptr; in TEST_F() local
979 range_.GenerateRange(increment_, phi, graph_, loop_preheader_, &lower, &upper); in TEST_F()
[all …]
Dinduction_var_range.cc270 /*out*/HInstruction** lower, in GenerateRange() argument
280 lower, in GenerateRange()
491 HInductionVarAnalysis::InductionInfo* lower = trip->op_b->op_a; in IsWellBehavedTripCount() local
494 return (!HasFetchInLoop(lower) || range.IsConstant(lower, kAtLeast, &not_used)) && in IsWellBehavedTripCount()
975 /*out*/HInstruction** lower, in GenerateRangeOrLastValue() argument
1002 lower = nullptr; in GenerateRangeOrLastValue()
1008 return GenerateLastValuePolynomial(info, trip, graph, block, lower); in GenerateRangeOrLastValue()
1010 return GenerateLastValueGeometric(info, trip, graph, block, lower); in GenerateRangeOrLastValue()
1012 return GenerateLastValueWrapAround(info, trip, graph, block, lower); in GenerateRangeOrLastValue()
1014 return GenerateLastValuePeriodic(info, trip, graph, block, lower, needs_taken_test); in GenerateRangeOrLastValue()
[all …]
Dinduction_var_range.h104 /*out*/ HInstruction** lower,
280 /*out*/ HInstruction** lower,
/art/libartbase/base/
Dutils.h206 const void* lower, in BoundsCheckedCast() argument
208 const uint8_t* bound_begin = static_cast<const uint8_t*>(lower); in BoundsCheckedCast()
/art/test/594-checker-irreducible-linorder/smali/
DIrreducibleLoop.smali101 # a lower liveness than the phi use.
/art/tools/runtime_memusage/
Dsymbol_trace_info.py105 cat_file_name = cat_name.lower() + "cat_output"
/art/runtime/interpreter/mterp/
Dgen_mterp.py262 opcodes.append("op_" + match.group(2).lower())
/art/tools/common/
Dcommon.py340 env.update({'ANDROID_LOG_TAGS':'*:' + log_severity.symbol.lower()})