Searched defs:bound (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dbounds_check_elimination.cc26 * A value bound is represented as a pair of value and constant,
80 // Try to detect useful value bound format from an instruction, e.g.
103 // No useful bound detected.
125 bool Equals(ValueBound bound) const {
126 return instruction_ == bound.instruction_ && constant_ == bound.constant_;
158 // Returns if it's certain this->bound >= `bound`.
159 bool GreaterThanOrEqualTo(ValueBound bound) const {
160 if (Equal(instruction_, bound
493 MonotonicValueRange(ArenaAllocator* allocator, HPhi* induction_variable, HInstruction* initial, int32_t increment, ValueBound bound) argument
1280 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found); local
1502 ValueBound bound = ValueBound::DetectValueBoundFromValue( local
[all...]
/art/compiler/utils/x86/
H A Dassembler_x86.cc1607 int bound = buffer_.Size(); local
1608 CHECK(!label->IsBound()); // Labels can only be bound once.
1612 buffer_.Store<int32_t>(position, bound - (position + 4));
1615 label->BindTo(bound);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2096 int bound = buffer_.Size(); local
2097 CHECK(!label->IsBound()); // Labels can only be bound once.
2101 buffer_.Store<int32_t>(position, bound - (position + 4));
2104 label->BindTo(bound);

Completed in 297 milliseconds