glsl: move variables in to ir_variable::data, part I
This patch moves following bitfields in to the data structure: used, assigned, how_declared, mode, interpolation, origin_upper_left, pixel_center_integer Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
@@ -211,8 +211,8 @@ ir_tree_grafting_visitor::visit_enter(ir_call *ir)
|
||||
ir_rvalue *ir = (ir_rvalue *)iter.get();
|
||||
ir_rvalue *new_ir = ir;
|
||||
|
||||
if (sig_param->mode != ir_var_function_in
|
||||
&& sig_param->mode != ir_var_const_in) {
|
||||
if (sig_param->data.mode != ir_var_function_in
|
||||
&& sig_param->data.mode != ir_var_const_in) {
|
||||
if (check_graft(ir, sig_param) == visit_stop)
|
||||
return visit_stop;
|
||||
continue;
|
||||
@@ -361,9 +361,9 @@ tree_grafting_basic_block(ir_instruction *bb_first,
|
||||
if (!lhs_var)
|
||||
continue;
|
||||
|
||||
if (lhs_var->mode == ir_var_function_out ||
|
||||
lhs_var->mode == ir_var_function_inout ||
|
||||
lhs_var->mode == ir_var_shader_out)
|
||||
if (lhs_var->data.mode == ir_var_function_out ||
|
||||
lhs_var->data.mode == ir_var_function_inout ||
|
||||
lhs_var->data.mode == ir_var_shader_out)
|
||||
continue;
|
||||
|
||||
ir_variable_refcount_entry *entry = info->refs->get_variable_entry(lhs_var);
|
||||
|
||||
Reference in New Issue
Block a user