2 * Copyright © 2010 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 /** @file lower_discard_flow.cpp
26 * Implements the GLSL 1.30 revision 9 rule for fragment shader
29 * "Control flow exits the shader, and subsequent implicit or
30 * explicit derivatives are undefined when this control flow is
31 * non-uniform (meaning different fragments within the primitive
32 * take different control paths)."
34 * There seem to be two conflicting things here. "Control flow exits
35 * the shader" sounds like the discarded fragments should effectively
36 * jump to the end of the shader, but that breaks derivatives in the
37 * case of uniform control flow and causes rendering failure in the
38 * bushes in Unigine Tropics.
40 * The question, then, is whether the intent was "loops stop at the
41 * point that the only active channels left are discarded pixels" or
42 * "discarded pixels become inactive at the point that control flow
43 * returns to the top of a loop". This implements the second
47 #include "glsl_types.h"
49 #include "program/hash_table.h"
53 class lower_discard_flow_visitor
: public ir_hierarchical_visitor
{
55 lower_discard_flow_visitor(ir_variable
*discarded
)
56 : discarded(discarded
)
58 mem_ctx
= ralloc_parent(discarded
);
61 ~lower_discard_flow_visitor()
65 ir_visitor_status
visit_enter(ir_discard
*ir
);
66 ir_visitor_status
visit_enter(ir_loop_jump
*ir
);
67 ir_visitor_status
visit_enter(ir_loop
*ir
);
68 ir_visitor_status
visit_enter(ir_function_signature
*ir
);
70 ir_if
*generate_discard_break();
72 ir_variable
*discarded
;
76 } /* anonymous namespace */
79 lower_discard_flow_visitor::visit_enter(ir_loop_jump
*ir
)
81 if (ir
->mode
!= ir_loop_jump::jump_continue
)
82 return visit_continue
;
84 ir
->insert_before(generate_discard_break());
86 return visit_continue
;
90 lower_discard_flow_visitor::visit_enter(ir_discard
*ir
)
92 ir_dereference
*lhs
= new(mem_ctx
) ir_dereference_variable(discarded
);
95 /* discarded <- condition, use (var_ref discarded) as the condition */
97 ir
->condition
= new(mem_ctx
) ir_dereference_variable(discarded
);
99 rhs
= new(mem_ctx
) ir_constant(true);
101 ir_assignment
*assign
= new(mem_ctx
) ir_assignment(lhs
, rhs
);
102 ir
->insert_before(assign
);
104 return visit_continue
;
108 lower_discard_flow_visitor::visit_enter(ir_loop
*ir
)
110 ir
->body_instructions
.push_tail(generate_discard_break());
112 return visit_continue
;
116 lower_discard_flow_visitor::visit_enter(ir_function_signature
*ir
)
118 if (strcmp(ir
->function_name(), "main") != 0)
119 return visit_continue
;
121 ir_dereference
*lhs
= new(mem_ctx
) ir_dereference_variable(discarded
);
122 ir_rvalue
*rhs
= new(mem_ctx
) ir_constant(false);
123 ir_assignment
*assign
= new(mem_ctx
) ir_assignment(lhs
, rhs
);
124 ir
->body
.push_head(assign
);
126 return visit_continue
;
130 lower_discard_flow_visitor::generate_discard_break()
132 ir_rvalue
*if_condition
= new(mem_ctx
) ir_dereference_variable(discarded
);
133 ir_if
*if_inst
= new(mem_ctx
) ir_if(if_condition
);
135 ir_instruction
*br
= new(mem_ctx
) ir_loop_jump(ir_loop_jump::jump_break
);
136 if_inst
->then_instructions
.push_tail(br
);
142 lower_discard_flow(exec_list
*ir
)
146 ir_variable
*var
= new(mem_ctx
) ir_variable(glsl_type::bool_type
,
152 lower_discard_flow_visitor
v(var
);
154 visit_list_elements(&v
, ir
);