Home | History | Annotate | Download | only in optimizing

Lines Matching defs:GetConstant

136   int32_t GetConstant() const { return constant_; }
428 if (!lower.IsConstant() || lower.GetConstant() == std::numeric_limits<int32_t>::min()) {
444 upper = upper_bound.GetConstant();
445 } else if (upper_bound.IsRelatedToArrayLength() && upper_bound.GetConstant() <= 0) {
447 upper = max_array_len + upper_bound.GetConstant();
478 if ((!upper.IsConstant() || upper.GetConstant() == std::numeric_limits<int32_t>::max()) &&
487 int32_t constant = range->GetLower().GetConstant();
657 right_range->GetBound().GetConstant() < 0) {
851 if (constant < lower.GetConstant()) {
1020 int32_t c1 = lower.GetConstant();
1021 int32_t c2 = upper.GetConstant();
1030 ValueBound(nullptr, right_const - upper.GetConstant()),
1031 ValueBound(array_length, right_const - lower.GetConstant()));
1211 int32_t min_c = base == nullptr ? 0 : value.GetConstant();
1212 int32_t max_c = value.GetConstant();
1240 int32_t other_c = other_value.GetConstant();
1254 int32_t other_c = ValueBound::AsValueBound(other_index).GetConstant();
1691 default: zero = graph->GetConstant(type, 0); break;