Searched refs:lower (Results 1 – 7 of 7) sorted by relevance
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 305 ValueRange(ArenaAllocator* allocator, ValueBound lower, ValueBound upper) in ValueRange() argument 306 : allocator_(allocator), lower_(lower), upper_(upper) {} in ValueRange() 352 ValueBound lower = lower_.Add(constant, &overflow, &underflow); in Add() local 364 return new (allocator_) ValueRange(allocator_, lower, upper); in Add() 427 ValueBound lower = ValueBound::NarrowLowerBound(bound_, range->GetLower()); in Narrow() local 428 if (!lower.IsConstant() || lower.GetConstant() == std::numeric_limits<int32_t>::min()) { in Narrow() 469 return new (GetAllocator()) ValueRange(GetAllocator(), lower, range->GetUpper()); in Narrow() 733 ValueBound lower = bound; in HandleIf() local 748 lower = right_range->GetLower(); in HandleIf() 751 lower = ValueBound::Min(); in HandleIf() [all …]
|
D | induction_var_range_test.cc | 72 void BuildLoop(int32_t lower, HInstruction* upper, int32_t stride) { in BuildLoop() argument 92 phi->AddInput(graph_->GetIntConstant(lower)); // i = l in BuildLoop() 646 HInstruction* lower = nullptr; in TEST_F() local 660 increment_, condition_->InputAt(0), graph_, loop_preheader_, &lower, &upper); in TEST_F() 663 ASSERT_TRUE(lower != nullptr); in TEST_F() 664 ASSERT_TRUE(lower->IsAdd()); in TEST_F() 665 ASSERT_TRUE(lower->InputAt(0)->IsIntConstant()); in TEST_F() 666 EXPECT_EQ(0, lower->InputAt(0)->AsIntConstant()->GetValue()); in TEST_F() 667 ASSERT_TRUE(lower->InputAt(1)->IsIntConstant()); in TEST_F() 668 EXPECT_EQ(0, lower->InputAt(1)->AsIntConstant()->GetValue()); in TEST_F() [all …]
|
D | induction_var_range.h | 105 /*out*/ HInstruction** lower, 188 /*out*/ HInstruction** lower,
|
D | induction_var_range.cc | 205 /*out*/HInstruction** lower, in GenerateRangeCode() argument 208 if (!GenerateCode(context, instruction, graph, block, lower, upper, nullptr, &b1, &b2)) { in GenerateRangeCode() 609 /*out*/HInstruction** lower, in GenerateCode() argument 651 GenerateCode(info, trip, graph, block, lower, in_body, /* is_min */ true)) && in GenerateCode()
|
/art/test/594-checker-irreducible-linorder/smali/ |
D | IrreducibleLoop.smali | 101 # a lower liveness than the phi use.
|
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 262 opcodes.append("op_" + match.group(2).lower())
|
/art/tools/ |
D | cpplint.py | 484 return header_path.replace('-inl.h', '.h').replace('-', '_').lower()
|