Searched refs:ValueBound (Results 1 – 1 of 1) sorted by relevance
34 class ValueBound : public ValueObject { class36 ValueBound(HInstruction* instruction, int32_t constant) { in ValueBound() function in art::ValueBound95 static ValueBound AsValueBound(HInstruction* instruction) { in AsValueBound()97 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue()); in AsValueBound()102 return ValueBound(left, right); in AsValueBound()104 return ValueBound(instruction, 0); in AsValueBound()109 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, /* out */ bool* found) { in DetectValueBoundFromValue()113 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue()); in DetectValueBoundFromValue()118 return ValueBound(instruction, 0); in DetectValueBoundFromValue()126 return ValueBound(left, right); in DetectValueBoundFromValue()[all …]