Lines Matching refs:baserange
79 ir_rvalue *prune_expression(ir_expression *expr, minmax_range baserange);
308 * @param baserange the range that the parents of this min/max expression
312 ir_minmax_visitor::prune_expression(ir_expression *expr, minmax_range baserange)
352 /* If this operand is always greater than baserange, then even if
356 if (!is_redundant && limits[i].low && baserange.high) {
357 cr = compare_components(limits[i].low, baserange.high);
370 /* If this operand is always lower than baserange, then even if
374 if (!is_redundant && limits[i].high && baserange.low) {
375 cr = compare_components(limits[i].high, baserange.low);
388 return prune_expression(op_expr, baserange);
410 /* Now recurse to operands giving them the proper baserange. The baserange
411 * to pass is the intersection of our baserange and the other operand's
413 * intersection, we use the current baserange.
419 /* We can only compute a new baserange for this operand if we managed
426 minmax_range base = range_intersection(limits[1 - i], baserange);