summaryrefslogtreecommitdiffstats
path: root/src/glsl/opt_algebraic.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2015-01-30 13:42:19 -0800
committerMatt Turner <mattst88@gmail.com>2015-02-11 13:50:19 -0800
commit69ad5fd4ce33aeab73d9eb546072d77e73e3a730 (patch)
treee67fb354a443038d85baaa84f3aacd08d956744b /src/glsl/opt_algebraic.cpp
parentc262b2b582798f389601b8198b1dbf3c7ba7a187 (diff)
downloadexternal_mesa3d-69ad5fd4ce33aeab73d9eb546072d77e73e3a730.zip
external_mesa3d-69ad5fd4ce33aeab73d9eb546072d77e73e3a730.tar.gz
external_mesa3d-69ad5fd4ce33aeab73d9eb546072d77e73e3a730.tar.bz2
glsl: Optimize (f2i(trunc x)) into (f2i x).
total instructions in shared programs: 5950326 -> 5949286 (-0.02%) instructions in affected programs: 88264 -> 87224 (-1.18%) helped: 692
Diffstat (limited to 'src/glsl/opt_algebraic.cpp')
-rw-r--r--src/glsl/opt_algebraic.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/glsl/opt_algebraic.cpp b/src/glsl/opt_algebraic.cpp
index 588228c..7bc65da 100644
--- a/src/glsl/opt_algebraic.cpp
+++ b/src/glsl/opt_algebraic.cpp
@@ -376,6 +376,15 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir)
}
break;
+ case ir_unop_f2i:
+ case ir_unop_f2u:
+ if (op_expr[0] && op_expr[0]->operation == ir_unop_trunc) {
+ return new(mem_ctx) ir_expression(ir->operation,
+ ir->type,
+ op_expr[0]->operands[0]);
+ }
+ break;
+
case ir_unop_logic_not: {
enum ir_expression_operation new_op = ir_unop_logic_not;