Home | History | Annotate | Download | only in optimizing

Lines Matching refs:GetConstant

136   int32_t GetConstant() const { return constant_; }
413 if (!lower.IsConstant() || lower.GetConstant() == std::numeric_limits<int32_t>::min()) {
429 upper = upper_bound.GetConstant();
430 } else if (upper_bound.IsRelatedToArrayLength() && upper_bound.GetConstant() <= 0) {
432 upper = max_array_len + upper_bound.GetConstant();
463 if ((!upper.IsConstant() || upper.GetConstant() == std::numeric_limits<int32_t>::max()) &&
472 int32_t constant = range->GetLower().GetConstant();
645 right_range->GetBound().GetConstant() < 0) {
805 if (lower.GetConstant() == 0 && upper.GetConstant() == 0) {
859 if (constant < lower.GetConstant()) {
1033 int32_t c1 = lower.GetConstant();
1034 int32_t c2 = upper.GetConstant();
1043 ValueBound(nullptr, right_const - upper.GetConstant()),
1044 ValueBound(array_length, right_const - lower.GetConstant()));
1230 GetConstant();
1231 int32_t max_c = value.GetConstant();
1259 int32_t other_c = other_value.GetConstant();
1273 int32_t other_c = ValueBound::AsValueBound(other_index).GetConstant();
1349 int32_t min_c = base == nullptr ? 0 : value.GetConstant();
1350 int32_t max_c = value.GetConstant();
1362 int32_t other_c = other_value.GetConstant();
1384 int32_t other_c = ValueBound::AsValueBound(other_index).GetConstant();
1406 int32_t other_c = ValueBound::AsValueBound(other_index).GetConstant();
1793 default: zero = graph->GetConstant(type, 0); break;