2010-07-26 22:50:29 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-11-17 10:43:10 -08:00
|
|
|
* \file opt_algebraic.cpp
|
2010-07-26 22:50:29 -07:00
|
|
|
*
|
|
|
|
* Takes advantage of association, commutivity, and other algebraic
|
|
|
|
* properties to simplify expressions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ir.h"
|
|
|
|
#include "ir_visitor.h"
|
2010-08-13 20:39:24 -07:00
|
|
|
#include "ir_rvalue_visitor.h"
|
2010-07-26 22:50:29 -07:00
|
|
|
#include "ir_optimization.h"
|
2013-10-23 16:40:16 -07:00
|
|
|
#include "ir_builder.h"
|
2010-07-26 22:50:29 -07:00
|
|
|
#include "glsl_types.h"
|
|
|
|
|
2013-10-23 16:40:16 -07:00
|
|
|
using namespace ir_builder;
|
|
|
|
|
2012-05-29 16:18:37 -07:00
|
|
|
namespace {
|
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
/**
|
|
|
|
* Visitor class for replacing expressions with ir_constant values.
|
|
|
|
*/
|
|
|
|
|
2010-08-13 20:39:24 -07:00
|
|
|
class ir_algebraic_visitor : public ir_rvalue_visitor {
|
2010-07-26 22:50:29 -07:00
|
|
|
public:
|
|
|
|
ir_algebraic_visitor()
|
|
|
|
{
|
|
|
|
this->progress = false;
|
2010-08-17 13:27:44 -07:00
|
|
|
this->mem_ctx = NULL;
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~ir_algebraic_visitor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-13 20:39:24 -07:00
|
|
|
ir_rvalue *handle_expression(ir_expression *ir);
|
|
|
|
void handle_rvalue(ir_rvalue **rvalue);
|
2010-07-26 23:56:19 -07:00
|
|
|
bool reassociate_constant(ir_expression *ir1,
|
|
|
|
int const_index,
|
|
|
|
ir_constant *constant,
|
|
|
|
ir_expression *ir2);
|
|
|
|
void reassociate_operands(ir_expression *ir1,
|
|
|
|
int op1,
|
|
|
|
ir_expression *ir2,
|
|
|
|
int op2);
|
2010-08-17 13:24:50 -07:00
|
|
|
ir_rvalue *swizzle_if_required(ir_expression *expr,
|
|
|
|
ir_rvalue *operand);
|
2010-08-17 13:27:44 -07:00
|
|
|
|
|
|
|
void *mem_ctx;
|
2010-08-17 13:24:50 -07:00
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
bool progress;
|
|
|
|
};
|
|
|
|
|
2012-05-29 16:18:37 -07:00
|
|
|
} /* unnamed namespace */
|
|
|
|
|
2010-11-12 10:19:08 -08:00
|
|
|
static inline bool
|
2010-07-26 22:50:29 -07:00
|
|
|
is_vec_zero(ir_constant *ir)
|
|
|
|
{
|
2010-11-12 10:19:08 -08:00
|
|
|
return (ir == NULL) ? false : ir->is_zero();
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
2010-11-12 10:19:08 -08:00
|
|
|
static inline bool
|
2010-07-26 22:50:29 -07:00
|
|
|
is_vec_one(ir_constant *ir)
|
|
|
|
{
|
2010-11-12 10:19:08 -08:00
|
|
|
return (ir == NULL) ? false : ir->is_one();
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
2014-01-05 22:57:01 -08:00
|
|
|
static inline bool
|
|
|
|
is_vec_two(ir_constant *ir)
|
|
|
|
{
|
|
|
|
return (ir == NULL) ? false : ir->is_value(2.0, 2);
|
|
|
|
}
|
|
|
|
|
2013-10-15 23:42:19 -07:00
|
|
|
static inline bool
|
|
|
|
is_vec_negative_one(ir_constant *ir)
|
|
|
|
{
|
|
|
|
return (ir == NULL) ? false : ir->is_negative_one();
|
|
|
|
}
|
|
|
|
|
2012-06-04 21:59:34 -04:00
|
|
|
static inline bool
|
|
|
|
is_vec_basis(ir_constant *ir)
|
|
|
|
{
|
|
|
|
return (ir == NULL) ? false : ir->is_basis();
|
|
|
|
}
|
|
|
|
|
2010-07-26 23:56:19 -07:00
|
|
|
static void
|
|
|
|
update_type(ir_expression *ir)
|
|
|
|
{
|
|
|
|
if (ir->operands[0]->type->is_vector())
|
|
|
|
ir->type = ir->operands[0]->type;
|
|
|
|
else
|
|
|
|
ir->type = ir->operands[1]->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ir_algebraic_visitor::reassociate_operands(ir_expression *ir1,
|
|
|
|
int op1,
|
|
|
|
ir_expression *ir2,
|
|
|
|
int op2)
|
|
|
|
{
|
|
|
|
ir_rvalue *temp = ir2->operands[op2];
|
|
|
|
ir2->operands[op2] = ir1->operands[op1];
|
|
|
|
ir1->operands[op1] = temp;
|
|
|
|
|
|
|
|
/* Update the type of ir2. The type of ir1 won't have changed --
|
|
|
|
* base types matched, and at least one of the operands of the 2
|
|
|
|
* binops is still a vector if any of them were.
|
|
|
|
*/
|
|
|
|
update_type(ir2);
|
|
|
|
|
|
|
|
this->progress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reassociates a constant down a tree of adds or multiplies.
|
|
|
|
*
|
|
|
|
* Consider (2 * (a * (b * 0.5))). We want to send up with a * b.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
ir_algebraic_visitor::reassociate_constant(ir_expression *ir1, int const_index,
|
|
|
|
ir_constant *constant,
|
|
|
|
ir_expression *ir2)
|
|
|
|
{
|
|
|
|
if (!ir2 || ir1->operation != ir2->operation)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Don't want to even think about matrices. */
|
|
|
|
if (ir1->operands[0]->type->is_matrix() ||
|
2010-11-30 13:24:44 -08:00
|
|
|
ir1->operands[1]->type->is_matrix() ||
|
|
|
|
ir2->operands[0]->type->is_matrix() ||
|
2010-07-26 23:56:19 -07:00
|
|
|
ir2->operands[1]->type->is_matrix())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ir_constant *ir2_const[2];
|
|
|
|
ir2_const[0] = ir2->operands[0]->constant_expression_value();
|
|
|
|
ir2_const[1] = ir2->operands[1]->constant_expression_value();
|
|
|
|
|
|
|
|
if (ir2_const[0] && ir2_const[1])
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (ir2_const[0]) {
|
|
|
|
reassociate_operands(ir1, const_index, ir2, 1);
|
|
|
|
return true;
|
|
|
|
} else if (ir2_const[1]) {
|
|
|
|
reassociate_operands(ir1, const_index, ir2, 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reassociate_constant(ir1, const_index, constant,
|
|
|
|
ir2->operands[0]->as_expression())) {
|
|
|
|
update_type(ir2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reassociate_constant(ir1, const_index, constant,
|
|
|
|
ir2->operands[1]->as_expression())) {
|
|
|
|
update_type(ir2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-17 13:24:50 -07:00
|
|
|
/* When eliminating an expression and just returning one of its operands,
|
|
|
|
* we may need to swizzle that operand out to a vector if the expression was
|
|
|
|
* vector type.
|
|
|
|
*/
|
|
|
|
ir_rvalue *
|
|
|
|
ir_algebraic_visitor::swizzle_if_required(ir_expression *expr,
|
|
|
|
ir_rvalue *operand)
|
|
|
|
{
|
|
|
|
if (expr->type->is_vector() && operand->type->is_scalar()) {
|
|
|
|
return new(mem_ctx) ir_swizzle(operand, 0, 0, 0, 0,
|
|
|
|
expr->type->vector_elements);
|
|
|
|
} else
|
|
|
|
return operand;
|
|
|
|
}
|
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
ir_rvalue *
|
2010-08-13 20:39:24 -07:00
|
|
|
ir_algebraic_visitor::handle_expression(ir_expression *ir)
|
2010-07-26 22:50:29 -07:00
|
|
|
{
|
2013-04-09 17:45:12 -07:00
|
|
|
ir_constant *op_const[4] = {NULL, NULL, NULL, NULL};
|
|
|
|
ir_expression *op_expr[4] = {NULL, NULL, NULL, NULL};
|
2010-07-26 22:50:29 -07:00
|
|
|
unsigned int i;
|
|
|
|
|
2013-04-09 17:45:12 -07:00
|
|
|
assert(ir->get_num_operands() <= 4);
|
2010-07-26 22:50:29 -07:00
|
|
|
for (i = 0; i < ir->get_num_operands(); i++) {
|
|
|
|
if (ir->operands[i]->type->is_matrix())
|
2010-08-13 20:39:24 -07:00
|
|
|
return ir;
|
2010-07-26 22:50:29 -07:00
|
|
|
|
|
|
|
op_const[i] = ir->operands[i]->constant_expression_value();
|
|
|
|
op_expr[i] = ir->operands[i]->as_expression();
|
|
|
|
}
|
|
|
|
|
2010-08-17 13:27:44 -07:00
|
|
|
if (this->mem_ctx == NULL)
|
2011-01-21 14:32:31 -08:00
|
|
|
this->mem_ctx = ralloc_parent(ir);
|
2010-08-17 13:27:44 -07:00
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
switch (ir->operation) {
|
2014-01-18 10:36:28 -08:00
|
|
|
case ir_unop_bit_not:
|
|
|
|
if (op_expr[0] && op_expr[0]->operation == ir_unop_bit_not)
|
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
break;
|
|
|
|
|
2013-10-16 16:56:44 -07:00
|
|
|
case ir_unop_abs:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (op_expr[0]->operation) {
|
|
|
|
case ir_unop_abs:
|
|
|
|
case ir_unop_neg:
|
2013-10-24 15:03:45 -07:00
|
|
|
return abs(op_expr[0]->operands[0]);
|
2013-10-16 16:56:44 -07:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-10-16 16:56:45 -07:00
|
|
|
case ir_unop_neg:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (op_expr[0]->operation == ir_unop_neg) {
|
2013-10-24 14:55:50 -07:00
|
|
|
return op_expr[0]->operands[0];
|
2013-10-16 16:56:45 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-01-18 10:47:19 -08:00
|
|
|
case ir_unop_exp:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (op_expr[0]->operation == ir_unop_log) {
|
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_unop_log:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (op_expr[0]->operation == ir_unop_exp) {
|
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_unop_exp2:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (op_expr[0]->operation == ir_unop_log2) {
|
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_unop_log2:
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (op_expr[0]->operation == ir_unop_exp2) {
|
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-08-09 09:54:47 -07:00
|
|
|
case ir_unop_logic_not: {
|
|
|
|
enum ir_expression_operation new_op = ir_unop_logic_not;
|
|
|
|
|
|
|
|
if (op_expr[0] == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (op_expr[0]->operation) {
|
2010-08-09 10:46:38 -07:00
|
|
|
case ir_binop_less: new_op = ir_binop_gequal; break;
|
|
|
|
case ir_binop_greater: new_op = ir_binop_lequal; break;
|
|
|
|
case ir_binop_lequal: new_op = ir_binop_greater; break;
|
|
|
|
case ir_binop_gequal: new_op = ir_binop_less; break;
|
2010-08-09 09:54:47 -07:00
|
|
|
case ir_binop_equal: new_op = ir_binop_nequal; break;
|
|
|
|
case ir_binop_nequal: new_op = ir_binop_equal; break;
|
2010-09-08 01:31:39 +02:00
|
|
|
case ir_binop_all_equal: new_op = ir_binop_any_nequal; break;
|
|
|
|
case ir_binop_any_nequal: new_op = ir_binop_all_equal; break;
|
2010-08-09 09:54:47 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
/* The default case handler is here to silence a warning from GCC.
|
|
|
|
*/
|
|
|
|
break;
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
2010-08-09 09:54:47 -07:00
|
|
|
|
|
|
|
if (new_op != ir_unop_logic_not) {
|
2010-08-17 13:27:44 -07:00
|
|
|
return new(mem_ctx) ir_expression(new_op,
|
|
|
|
ir->type,
|
|
|
|
op_expr[0]->operands[0],
|
|
|
|
op_expr[0]->operands[1]);
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
2010-08-09 09:54:47 -07:00
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
break;
|
2010-08-09 09:54:47 -07:00
|
|
|
}
|
2010-07-26 22:50:29 -07:00
|
|
|
|
|
|
|
case ir_binop_add:
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_zero(op_const[0]))
|
|
|
|
return ir->operands[1];
|
|
|
|
if (is_vec_zero(op_const[1]))
|
|
|
|
return ir->operands[0];
|
2010-07-26 23:56:19 -07:00
|
|
|
|
|
|
|
/* Reassociate addition of constants so that we can do constant
|
|
|
|
* folding.
|
|
|
|
*/
|
|
|
|
if (op_const[0] && !op_const[1])
|
2013-10-16 16:56:43 -07:00
|
|
|
reassociate_constant(ir, 0, op_const[0], op_expr[1]);
|
2010-07-26 23:56:19 -07:00
|
|
|
if (op_const[1] && !op_const[0])
|
2013-10-16 16:56:43 -07:00
|
|
|
reassociate_constant(ir, 1, op_const[1], op_expr[0]);
|
2013-11-04 10:23:24 -08:00
|
|
|
|
|
|
|
/* Replace (-x + y) * a + x and commutative variations with lrp(x, y, a).
|
|
|
|
*
|
|
|
|
* (-x + y) * a + x
|
|
|
|
* (x * -a) + (y * a) + x
|
|
|
|
* x + (x * -a) + (y * a)
|
|
|
|
* x * (1 - a) + y * a
|
|
|
|
* lrp(x, y, a)
|
|
|
|
*/
|
|
|
|
for (int mul_pos = 0; mul_pos < 2; mul_pos++) {
|
|
|
|
ir_expression *mul = op_expr[mul_pos];
|
|
|
|
|
|
|
|
if (!mul || mul->operation != ir_binop_mul)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Multiply found on one of the operands. Now check for an
|
|
|
|
* inner addition operation.
|
|
|
|
*/
|
|
|
|
for (int inner_add_pos = 0; inner_add_pos < 2; inner_add_pos++) {
|
|
|
|
ir_expression *inner_add =
|
|
|
|
mul->operands[inner_add_pos]->as_expression();
|
|
|
|
|
|
|
|
if (!inner_add || inner_add->operation != ir_binop_add)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Inner addition found on one of the operands. Now check for
|
|
|
|
* one of the operands of the inner addition to be the negative
|
|
|
|
* of x_operand.
|
|
|
|
*/
|
|
|
|
for (int neg_pos = 0; neg_pos < 2; neg_pos++) {
|
|
|
|
ir_expression *neg =
|
|
|
|
inner_add->operands[neg_pos]->as_expression();
|
|
|
|
|
|
|
|
if (!neg || neg->operation != ir_unop_neg)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ir_rvalue *x_operand = ir->operands[1 - mul_pos];
|
|
|
|
|
|
|
|
if (!neg->operands[0]->equals(x_operand))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ir_rvalue *y_operand = inner_add->operands[1 - neg_pos];
|
|
|
|
ir_rvalue *a_operand = mul->operands[1 - inner_add_pos];
|
|
|
|
|
|
|
|
if (x_operand->type != y_operand->type ||
|
|
|
|
x_operand->type != a_operand->type)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return lrp(x_operand, y_operand, a_operand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-26 22:50:29 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_binop_sub:
|
2013-10-24 15:03:45 -07:00
|
|
|
if (is_vec_zero(op_const[0]))
|
|
|
|
return neg(ir->operands[1]);
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_zero(op_const[1]))
|
|
|
|
return ir->operands[0];
|
2010-07-26 22:50:29 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_binop_mul:
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_one(op_const[0]))
|
|
|
|
return ir->operands[1];
|
|
|
|
if (is_vec_one(op_const[1]))
|
|
|
|
return ir->operands[0];
|
2010-07-26 22:50:29 -07:00
|
|
|
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_zero(op_const[0]) || is_vec_zero(op_const[1]))
|
2010-07-28 12:20:38 -07:00
|
|
|
return ir_constant::zero(ir, ir->type);
|
2013-10-24 14:55:50 -07:00
|
|
|
|
2013-10-24 15:03:45 -07:00
|
|
|
if (is_vec_negative_one(op_const[0]))
|
|
|
|
return neg(ir->operands[1]);
|
|
|
|
if (is_vec_negative_one(op_const[1]))
|
|
|
|
return neg(ir->operands[0]);
|
2013-10-15 23:42:19 -07:00
|
|
|
|
2010-07-26 23:56:19 -07:00
|
|
|
|
|
|
|
/* Reassociate multiplication of constants so that we can do
|
|
|
|
* constant folding.
|
|
|
|
*/
|
|
|
|
if (op_const[0] && !op_const[1])
|
2013-10-16 16:56:43 -07:00
|
|
|
reassociate_constant(ir, 0, op_const[0], op_expr[1]);
|
2010-07-26 23:56:19 -07:00
|
|
|
if (op_const[1] && !op_const[0])
|
2013-10-16 16:56:43 -07:00
|
|
|
reassociate_constant(ir, 1, op_const[1], op_expr[0]);
|
2010-07-26 23:56:19 -07:00
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_binop_div:
|
|
|
|
if (is_vec_one(op_const[0]) && ir->type->base_type == GLSL_TYPE_FLOAT) {
|
2013-10-24 14:55:50 -07:00
|
|
|
return new(mem_ctx) ir_expression(ir_unop_rcp,
|
2010-08-17 13:24:50 -07:00
|
|
|
ir->operands[1]->type,
|
2010-08-17 13:27:44 -07:00
|
|
|
ir->operands[1],
|
|
|
|
NULL);
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_one(op_const[1]))
|
|
|
|
return ir->operands[0];
|
2010-07-26 22:50:29 -07:00
|
|
|
break;
|
|
|
|
|
2012-06-04 16:17:12 -04:00
|
|
|
case ir_binop_dot:
|
2013-10-24 14:55:50 -07:00
|
|
|
if (is_vec_zero(op_const[0]) || is_vec_zero(op_const[1]))
|
2012-06-04 16:17:12 -04:00
|
|
|
return ir_constant::zero(mem_ctx, ir->type);
|
2013-10-24 14:55:50 -07:00
|
|
|
|
2012-06-04 21:59:34 -04:00
|
|
|
if (is_vec_basis(op_const[0])) {
|
|
|
|
unsigned component = 0;
|
|
|
|
for (unsigned c = 0; c < op_const[0]->type->vector_elements; c++) {
|
|
|
|
if (op_const[0]->value.f[c] == 1.0)
|
|
|
|
component = c;
|
|
|
|
}
|
|
|
|
return new(mem_ctx) ir_swizzle(ir->operands[1], component, 0, 0, 0, 1);
|
|
|
|
}
|
|
|
|
if (is_vec_basis(op_const[1])) {
|
|
|
|
unsigned component = 0;
|
|
|
|
for (unsigned c = 0; c < op_const[1]->type->vector_elements; c++) {
|
|
|
|
if (op_const[1]->value.f[c] == 1.0)
|
|
|
|
component = c;
|
|
|
|
}
|
|
|
|
return new(mem_ctx) ir_swizzle(ir->operands[0], component, 0, 0, 0, 1);
|
|
|
|
}
|
2012-06-04 16:17:12 -04:00
|
|
|
break;
|
|
|
|
|
2013-10-21 17:01:49 -07:00
|
|
|
case ir_binop_rshift:
|
|
|
|
case ir_binop_lshift:
|
|
|
|
/* 0 >> x == 0 */
|
|
|
|
if (is_vec_zero(op_const[0]))
|
|
|
|
return ir->operands[0];
|
|
|
|
/* x >> 0 == x */
|
|
|
|
if (is_vec_zero(op_const[1]))
|
|
|
|
return ir->operands[0];
|
|
|
|
break;
|
|
|
|
|
2010-09-01 10:13:21 -07:00
|
|
|
case ir_binop_logic_and:
|
|
|
|
if (is_vec_one(op_const[0])) {
|
|
|
|
return ir->operands[1];
|
|
|
|
} else if (is_vec_one(op_const[1])) {
|
|
|
|
return ir->operands[0];
|
|
|
|
} else if (is_vec_zero(op_const[0]) || is_vec_zero(op_const[1])) {
|
|
|
|
return ir_constant::zero(mem_ctx, ir->type);
|
2013-10-23 16:42:34 -07:00
|
|
|
} else if (op_expr[0] && op_expr[0]->operation == ir_unop_logic_not &&
|
|
|
|
op_expr[1] && op_expr[1]->operation == ir_unop_logic_not) {
|
|
|
|
/* De Morgan's Law:
|
|
|
|
* (not A) and (not B) === not (A or B)
|
|
|
|
*/
|
2013-10-24 14:55:50 -07:00
|
|
|
return logic_not(logic_or(op_expr[0]->operands[0],
|
2013-10-23 16:42:34 -07:00
|
|
|
op_expr[1]->operands[0]));
|
2013-10-31 09:32:42 -07:00
|
|
|
} else if (ir->operands[0]->equals(ir->operands[1])) {
|
|
|
|
/* (a && a) == a */
|
|
|
|
return ir->operands[0];
|
2010-09-01 10:13:21 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_binop_logic_xor:
|
|
|
|
if (is_vec_zero(op_const[0])) {
|
|
|
|
return ir->operands[1];
|
|
|
|
} else if (is_vec_zero(op_const[1])) {
|
|
|
|
return ir->operands[0];
|
|
|
|
} else if (is_vec_one(op_const[0])) {
|
2013-10-24 15:03:45 -07:00
|
|
|
return logic_not(ir->operands[1]);
|
2010-09-01 10:13:21 -07:00
|
|
|
} else if (is_vec_one(op_const[1])) {
|
2013-10-24 15:03:45 -07:00
|
|
|
return logic_not(ir->operands[0]);
|
2013-11-07 12:10:25 -08:00
|
|
|
} else if (ir->operands[0]->equals(ir->operands[1])) {
|
|
|
|
/* (a ^^ a) == false */
|
|
|
|
return ir_constant::zero(mem_ctx, ir->type);
|
2010-09-01 10:13:21 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ir_binop_logic_or:
|
|
|
|
if (is_vec_zero(op_const[0])) {
|
|
|
|
return ir->operands[1];
|
|
|
|
} else if (is_vec_zero(op_const[1])) {
|
|
|
|
return ir->operands[0];
|
|
|
|
} else if (is_vec_one(op_const[0]) || is_vec_one(op_const[1])) {
|
|
|
|
ir_constant_data data;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < 16; i++)
|
|
|
|
data.b[i] = true;
|
|
|
|
|
|
|
|
return new(mem_ctx) ir_constant(ir->type, &data);
|
2013-10-23 16:40:16 -07:00
|
|
|
} else if (op_expr[0] && op_expr[0]->operation == ir_unop_logic_not &&
|
|
|
|
op_expr[1] && op_expr[1]->operation == ir_unop_logic_not) {
|
|
|
|
/* De Morgan's Law:
|
|
|
|
* (not A) or (not B) === not (A and B)
|
|
|
|
*/
|
2013-10-24 14:55:50 -07:00
|
|
|
return logic_not(logic_and(op_expr[0]->operands[0],
|
2013-10-23 16:40:16 -07:00
|
|
|
op_expr[1]->operands[0]));
|
2013-10-31 00:10:32 -07:00
|
|
|
} else if (ir->operands[0]->equals(ir->operands[1])) {
|
|
|
|
/* (a || a) == a */
|
|
|
|
return ir->operands[0];
|
2010-09-01 10:13:21 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-01-05 22:19:42 -08:00
|
|
|
case ir_binop_pow:
|
|
|
|
/* 1^x == 1 */
|
|
|
|
if (is_vec_one(op_const[0]))
|
|
|
|
return op_const[0];
|
2014-01-05 22:57:01 -08:00
|
|
|
|
2014-01-18 10:57:29 -08:00
|
|
|
/* x^1 == x */
|
|
|
|
if (is_vec_one(op_const[1]))
|
|
|
|
return ir->operands[0];
|
|
|
|
|
2014-01-05 22:57:01 -08:00
|
|
|
/* pow(2,x) == exp2(x) */
|
|
|
|
if (is_vec_two(op_const[0]))
|
|
|
|
return expr(ir_unop_exp2, ir->operands[1]);
|
|
|
|
|
2014-01-05 22:19:42 -08:00
|
|
|
break;
|
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
case ir_unop_rcp:
|
2013-10-24 14:55:50 -07:00
|
|
|
if (op_expr[0] && op_expr[0]->operation == ir_unop_rcp)
|
2010-07-26 22:50:29 -07:00
|
|
|
return op_expr[0]->operands[0];
|
|
|
|
|
2013-11-07 12:15:13 -08:00
|
|
|
/* While ir_to_mesa.cpp will lower sqrt(x) to rcp(rsq(x)), it does so at
|
|
|
|
* its IR level, so we can always apply this transformation.
|
2010-07-26 22:50:29 -07:00
|
|
|
*/
|
2013-11-07 12:15:13 -08:00
|
|
|
if (op_expr[0] && op_expr[0]->operation == ir_unop_rsq)
|
|
|
|
return sqrt(op_expr[0]->operands[0]);
|
2010-07-26 22:50:29 -07:00
|
|
|
|
|
|
|
/* As far as we know, all backends are OK with rsq. */
|
|
|
|
if (op_expr[0] && op_expr[0]->operation == ir_unop_sqrt) {
|
2013-10-24 15:03:45 -07:00
|
|
|
return rsq(op_expr[0]->operands[0]);
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2013-02-15 17:51:46 -08:00
|
|
|
case ir_triop_lrp:
|
|
|
|
/* Operands are (x, y, a). */
|
|
|
|
if (is_vec_zero(op_const[2])) {
|
2013-10-24 14:55:50 -07:00
|
|
|
return ir->operands[0];
|
2013-02-15 17:51:46 -08:00
|
|
|
} else if (is_vec_one(op_const[2])) {
|
2013-10-24 14:55:50 -07:00
|
|
|
return ir->operands[1];
|
2013-02-15 17:51:46 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-07-26 22:50:29 -07:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-08-13 20:39:24 -07:00
|
|
|
return ir;
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
2010-08-13 20:39:24 -07:00
|
|
|
void
|
|
|
|
ir_algebraic_visitor::handle_rvalue(ir_rvalue **rvalue)
|
2010-07-26 22:50:29 -07:00
|
|
|
{
|
2010-08-13 20:39:24 -07:00
|
|
|
if (!*rvalue)
|
|
|
|
return;
|
2010-07-26 22:50:29 -07:00
|
|
|
|
2010-08-13 20:39:24 -07:00
|
|
|
ir_expression *expr = (*rvalue)->as_expression();
|
2010-11-16 12:01:42 -08:00
|
|
|
if (!expr || expr->operation == ir_quadop_vector)
|
2010-08-13 20:39:24 -07:00
|
|
|
return;
|
2010-07-26 22:50:29 -07:00
|
|
|
|
2013-10-24 14:55:50 -07:00
|
|
|
ir_rvalue *new_rvalue = handle_expression(expr);
|
|
|
|
if (new_rvalue == *rvalue)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If the expr used to be some vec OP scalar returning a vector, and the
|
|
|
|
* optimization gave us back a scalar, we still need to turn it into a
|
|
|
|
* vector.
|
|
|
|
*/
|
|
|
|
*rvalue = swizzle_if_required(expr, new_rvalue);
|
|
|
|
|
|
|
|
this->progress = true;
|
2010-07-26 22:50:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
do_algebraic(exec_list *instructions)
|
|
|
|
{
|
|
|
|
ir_algebraic_visitor v;
|
|
|
|
|
|
|
|
visit_list_elements(&v, instructions);
|
|
|
|
|
|
|
|
return v.progress;
|
|
|
|
}
|