Searched refs:ValueBound (Results 1 – 1 of 1) sorted by relevance
35 class ValueBound : public ValueObject { class37 ValueBound(HInstruction* instruction, int32_t constant) { in ValueBound() function in art::ValueBound96 static ValueBound AsValueBound(HInstruction* instruction) { in AsValueBound()98 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue()); in AsValueBound()103 return ValueBound(left, right); in AsValueBound()105 return ValueBound(instruction, 0); in AsValueBound()110 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, /* out */ bool* found) { in DetectValueBoundFromValue()114 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue()); in DetectValueBoundFromValue()119 return ValueBound(instruction, 0); in DetectValueBoundFromValue()127 return ValueBound(left, right); in DetectValueBoundFromValue()[all …]