i965: Move FS backend structures to a header.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_fs.h
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
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:
10 *
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
13 * Software.
14 *
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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 extern "C" {
29
30 #include <sys/types.h>
31
32 #include "main/macros.h"
33 #include "main/shaderobj.h"
34 #include "main/uniforms.h"
35 #include "program/prog_parameter.h"
36 #include "program/prog_print.h"
37 #include "program/prog_optimize.h"
38 #include "program/register_allocate.h"
39 #include "program/sampler.h"
40 #include "program/hash_table.h"
41 #include "brw_context.h"
42 #include "brw_eu.h"
43 #include "brw_wm.h"
44 #include "talloc.h"
45 }
46 #include "../glsl/glsl_types.h"
47 #include "../glsl/ir.h"
48
49 enum register_file {
50 ARF = BRW_ARCHITECTURE_REGISTER_FILE,
51 GRF = BRW_GENERAL_REGISTER_FILE,
52 MRF = BRW_MESSAGE_REGISTER_FILE,
53 IMM = BRW_IMMEDIATE_VALUE,
54 FIXED_HW_REG, /* a struct brw_reg */
55 UNIFORM, /* prog_data->params[hw_reg] */
56 BAD_FILE
57 };
58
59 enum fs_opcodes {
60 FS_OPCODE_FB_WRITE = 256,
61 FS_OPCODE_RCP,
62 FS_OPCODE_RSQ,
63 FS_OPCODE_SQRT,
64 FS_OPCODE_EXP2,
65 FS_OPCODE_LOG2,
66 FS_OPCODE_POW,
67 FS_OPCODE_SIN,
68 FS_OPCODE_COS,
69 FS_OPCODE_DDX,
70 FS_OPCODE_DDY,
71 FS_OPCODE_LINTERP,
72 FS_OPCODE_TEX,
73 FS_OPCODE_TXB,
74 FS_OPCODE_TXL,
75 FS_OPCODE_DISCARD_NOT,
76 FS_OPCODE_DISCARD_AND,
77 };
78
79
80 class fs_reg {
81 public:
82 /* Callers of this talloc-based new need not call delete. It's
83 * easier to just talloc_free 'ctx' (or any of its ancestors). */
84 static void* operator new(size_t size, void *ctx)
85 {
86 void *node;
87
88 node = talloc_size(ctx, size);
89 assert(node != NULL);
90
91 return node;
92 }
93
94 void init()
95 {
96 this->reg = 0;
97 this->reg_offset = 0;
98 this->negate = 0;
99 this->abs = 0;
100 this->hw_reg = -1;
101 }
102
103 /** Generic unset register constructor. */
104 fs_reg()
105 {
106 init();
107 this->file = BAD_FILE;
108 }
109
110 /** Immediate value constructor. */
111 fs_reg(float f)
112 {
113 init();
114 this->file = IMM;
115 this->type = BRW_REGISTER_TYPE_F;
116 this->imm.f = f;
117 }
118
119 /** Immediate value constructor. */
120 fs_reg(int32_t i)
121 {
122 init();
123 this->file = IMM;
124 this->type = BRW_REGISTER_TYPE_D;
125 this->imm.i = i;
126 }
127
128 /** Immediate value constructor. */
129 fs_reg(uint32_t u)
130 {
131 init();
132 this->file = IMM;
133 this->type = BRW_REGISTER_TYPE_UD;
134 this->imm.u = u;
135 }
136
137 /** Fixed brw_reg Immediate value constructor. */
138 fs_reg(struct brw_reg fixed_hw_reg)
139 {
140 init();
141 this->file = FIXED_HW_REG;
142 this->fixed_hw_reg = fixed_hw_reg;
143 this->type = fixed_hw_reg.type;
144 }
145
146 fs_reg(enum register_file file, int hw_reg);
147 fs_reg(class fs_visitor *v, const struct glsl_type *type);
148
149 /** Register file: ARF, GRF, MRF, IMM. */
150 enum register_file file;
151 /** virtual register number. 0 = fixed hw reg */
152 int reg;
153 /** Offset within the virtual register. */
154 int reg_offset;
155 /** HW register number. Generally unset until register allocation. */
156 int hw_reg;
157 /** Register type. BRW_REGISTER_TYPE_* */
158 int type;
159 bool negate;
160 bool abs;
161 struct brw_reg fixed_hw_reg;
162
163 /** Value for file == BRW_IMMMEDIATE_FILE */
164 union {
165 int32_t i;
166 uint32_t u;
167 float f;
168 } imm;
169 };
170
171 class fs_inst : public exec_node {
172 public:
173 /* Callers of this talloc-based new need not call delete. It's
174 * easier to just talloc_free 'ctx' (or any of its ancestors). */
175 static void* operator new(size_t size, void *ctx)
176 {
177 void *node;
178
179 node = talloc_zero_size(ctx, size);
180 assert(node != NULL);
181
182 return node;
183 }
184
185 void init()
186 {
187 this->opcode = BRW_OPCODE_NOP;
188 this->saturate = false;
189 this->conditional_mod = BRW_CONDITIONAL_NONE;
190 this->predicated = false;
191 this->sampler = 0;
192 this->target = 0;
193 this->eot = false;
194 this->header_present = false;
195 this->shadow_compare = false;
196 }
197
198 fs_inst()
199 {
200 init();
201 }
202
203 fs_inst(int opcode)
204 {
205 init();
206 this->opcode = opcode;
207 }
208
209 fs_inst(int opcode, fs_reg dst, fs_reg src0)
210 {
211 init();
212 this->opcode = opcode;
213 this->dst = dst;
214 this->src[0] = src0;
215 }
216
217 fs_inst(int opcode, fs_reg dst, fs_reg src0, fs_reg src1)
218 {
219 init();
220 this->opcode = opcode;
221 this->dst = dst;
222 this->src[0] = src0;
223 this->src[1] = src1;
224 }
225
226 fs_inst(int opcode, fs_reg dst, fs_reg src0, fs_reg src1, fs_reg src2)
227 {
228 init();
229 this->opcode = opcode;
230 this->dst = dst;
231 this->src[0] = src0;
232 this->src[1] = src1;
233 this->src[2] = src2;
234 }
235
236 int opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
237 fs_reg dst;
238 fs_reg src[3];
239 bool saturate;
240 bool predicated;
241 int conditional_mod; /**< BRW_CONDITIONAL_* */
242
243 int mlen; /**< SEND message length */
244 int sampler;
245 int target; /**< MRT target. */
246 bool eot;
247 bool header_present;
248 bool shadow_compare;
249
250 /** @{
251 * Annotation for the generated IR. One of the two can be set.
252 */
253 ir_instruction *ir;
254 const char *annotation;
255 /** @} */
256 };
257
258 class fs_visitor : public ir_visitor
259 {
260 public:
261
262 fs_visitor(struct brw_wm_compile *c, struct brw_shader *shader)
263 {
264 this->c = c;
265 this->p = &c->func;
266 this->brw = p->brw;
267 this->fp = brw->fragment_program;
268 this->intel = &brw->intel;
269 this->ctx = &intel->ctx;
270 this->mem_ctx = talloc_new(NULL);
271 this->shader = shader;
272 this->fail = false;
273 this->variable_ht = hash_table_ctor(0,
274 hash_table_pointer_hash,
275 hash_table_pointer_compare);
276
277 this->frag_color = NULL;
278 this->frag_data = NULL;
279 this->frag_depth = NULL;
280 this->first_non_payload_grf = 0;
281
282 this->current_annotation = NULL;
283 this->annotation_string = NULL;
284 this->annotation_ir = NULL;
285 this->base_ir = NULL;
286
287 this->virtual_grf_sizes = NULL;
288 this->virtual_grf_next = 1;
289 this->virtual_grf_array_size = 0;
290 this->virtual_grf_def = NULL;
291 this->virtual_grf_use = NULL;
292
293 this->kill_emitted = false;
294 }
295
296 ~fs_visitor()
297 {
298 talloc_free(this->mem_ctx);
299 hash_table_dtor(this->variable_ht);
300 }
301
302 fs_reg *variable_storage(ir_variable *var);
303 int virtual_grf_alloc(int size);
304
305 void visit(ir_variable *ir);
306 void visit(ir_assignment *ir);
307 void visit(ir_dereference_variable *ir);
308 void visit(ir_dereference_record *ir);
309 void visit(ir_dereference_array *ir);
310 void visit(ir_expression *ir);
311 void visit(ir_texture *ir);
312 void visit(ir_if *ir);
313 void visit(ir_constant *ir);
314 void visit(ir_swizzle *ir);
315 void visit(ir_return *ir);
316 void visit(ir_loop *ir);
317 void visit(ir_loop_jump *ir);
318 void visit(ir_discard *ir);
319 void visit(ir_call *ir);
320 void visit(ir_function *ir);
321 void visit(ir_function_signature *ir);
322
323 fs_inst *emit(fs_inst inst);
324 void assign_curb_setup();
325 void calculate_urb_setup();
326 void assign_urb_setup();
327 void assign_regs();
328 void assign_regs_trivial();
329 void calculate_live_intervals();
330 bool propagate_constants();
331 bool register_coalesce();
332 bool dead_code_eliminate();
333 bool virtual_grf_interferes(int a, int b);
334 void generate_code();
335 void generate_fb_write(fs_inst *inst);
336 void generate_linterp(fs_inst *inst, struct brw_reg dst,
337 struct brw_reg *src);
338 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
339 void generate_math(fs_inst *inst, struct brw_reg dst, struct brw_reg *src);
340 void generate_discard_not(fs_inst *inst, struct brw_reg temp);
341 void generate_discard_and(fs_inst *inst, struct brw_reg temp);
342 void generate_ddx(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
343 void generate_ddy(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
344
345 void emit_dummy_fs();
346 fs_reg *emit_fragcoord_interpolation(ir_variable *ir);
347 fs_reg *emit_frontfacing_interpolation(ir_variable *ir);
348 fs_reg *emit_general_interpolation(ir_variable *ir);
349 void emit_interpolation_setup_gen4();
350 void emit_interpolation_setup_gen6();
351 fs_inst *emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate);
352 fs_inst *emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate);
353 void emit_fb_writes();
354 void emit_assignment_writes(fs_reg &l, fs_reg &r,
355 const glsl_type *type, bool predicated);
356
357 struct brw_reg interp_reg(int location, int channel);
358 int setup_uniform_values(int loc, const glsl_type *type);
359 void setup_builtin_uniform_values(ir_variable *ir);
360
361 struct brw_context *brw;
362 const struct gl_fragment_program *fp;
363 struct intel_context *intel;
364 GLcontext *ctx;
365 struct brw_wm_compile *c;
366 struct brw_compile *p;
367 struct brw_shader *shader;
368 void *mem_ctx;
369 exec_list instructions;
370
371 int *virtual_grf_sizes;
372 int virtual_grf_next;
373 int virtual_grf_array_size;
374 int *virtual_grf_def;
375 int *virtual_grf_use;
376
377 struct hash_table *variable_ht;
378 ir_variable *frag_color, *frag_data, *frag_depth;
379 int first_non_payload_grf;
380 int urb_setup[FRAG_ATTRIB_MAX];
381 bool kill_emitted;
382
383 /** @{ debug annotation info */
384 const char *current_annotation;
385 ir_instruction *base_ir;
386 const char **annotation_string;
387 ir_instruction **annotation_ir;
388 /** @} */
389
390 bool fail;
391
392 /* Result of last visit() method. */
393 fs_reg result;
394
395 fs_reg pixel_x;
396 fs_reg pixel_y;
397 fs_reg wpos_w;
398 fs_reg pixel_w;
399 fs_reg delta_x;
400 fs_reg delta_y;
401
402 int grf_used;
403 };
404
405 GLboolean brw_do_channel_expressions(struct exec_list *instructions);
406 GLboolean brw_do_vector_splitting(struct exec_list *instructions);