Merge remote-tracking branch 'origin/master' into pipe-video
[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 }
45 #include "../glsl/glsl_types.h"
46 #include "../glsl/ir.h"
47
48 enum register_file {
49 ARF = BRW_ARCHITECTURE_REGISTER_FILE,
50 GRF = BRW_GENERAL_REGISTER_FILE,
51 MRF = BRW_MESSAGE_REGISTER_FILE,
52 IMM = BRW_IMMEDIATE_VALUE,
53 FIXED_HW_REG, /* a struct brw_reg */
54 UNIFORM, /* prog_data->params[hw_reg] */
55 BAD_FILE
56 };
57
58 enum fs_opcodes {
59 FS_OPCODE_FB_WRITE = 256,
60 FS_OPCODE_RCP,
61 FS_OPCODE_RSQ,
62 FS_OPCODE_SQRT,
63 FS_OPCODE_EXP2,
64 FS_OPCODE_LOG2,
65 FS_OPCODE_POW,
66 FS_OPCODE_SIN,
67 FS_OPCODE_COS,
68 FS_OPCODE_DDX,
69 FS_OPCODE_DDY,
70 FS_OPCODE_PIXEL_X,
71 FS_OPCODE_PIXEL_Y,
72 FS_OPCODE_CINTERP,
73 FS_OPCODE_LINTERP,
74 FS_OPCODE_TEX,
75 FS_OPCODE_TXB,
76 FS_OPCODE_TXD,
77 FS_OPCODE_TXL,
78 FS_OPCODE_DISCARD,
79 FS_OPCODE_SPILL,
80 FS_OPCODE_UNSPILL,
81 FS_OPCODE_PULL_CONSTANT_LOAD,
82 };
83
84
85 class fs_reg {
86 public:
87 /* Callers of this ralloc-based new need not call delete. It's
88 * easier to just ralloc_free 'ctx' (or any of its ancestors). */
89 static void* operator new(size_t size, void *ctx)
90 {
91 void *node;
92
93 node = ralloc_size(ctx, size);
94 assert(node != NULL);
95
96 return node;
97 }
98
99 void init()
100 {
101 memset(this, 0, sizeof(*this));
102 this->hw_reg = -1;
103 this->smear = -1;
104 }
105
106 /** Generic unset register constructor. */
107 fs_reg()
108 {
109 init();
110 this->file = BAD_FILE;
111 }
112
113 /** Immediate value constructor. */
114 fs_reg(float f)
115 {
116 init();
117 this->file = IMM;
118 this->type = BRW_REGISTER_TYPE_F;
119 this->imm.f = f;
120 }
121
122 /** Immediate value constructor. */
123 fs_reg(int32_t i)
124 {
125 init();
126 this->file = IMM;
127 this->type = BRW_REGISTER_TYPE_D;
128 this->imm.i = i;
129 }
130
131 /** Immediate value constructor. */
132 fs_reg(uint32_t u)
133 {
134 init();
135 this->file = IMM;
136 this->type = BRW_REGISTER_TYPE_UD;
137 this->imm.u = u;
138 }
139
140 /** Fixed brw_reg Immediate value constructor. */
141 fs_reg(struct brw_reg fixed_hw_reg)
142 {
143 init();
144 this->file = FIXED_HW_REG;
145 this->fixed_hw_reg = fixed_hw_reg;
146 this->type = fixed_hw_reg.type;
147 }
148
149 fs_reg(enum register_file file, int hw_reg);
150 fs_reg(enum register_file file, int hw_reg, uint32_t type);
151 fs_reg(class fs_visitor *v, const struct glsl_type *type);
152
153 bool equals(fs_reg *r)
154 {
155 return (file == r->file &&
156 reg == r->reg &&
157 reg_offset == r->reg_offset &&
158 hw_reg == r->hw_reg &&
159 type == r->type &&
160 negate == r->negate &&
161 abs == r->abs &&
162 memcmp(&fixed_hw_reg, &r->fixed_hw_reg,
163 sizeof(fixed_hw_reg)) == 0 &&
164 smear == r->smear &&
165 imm.u == r->imm.u);
166 }
167
168 /** Register file: ARF, GRF, MRF, IMM. */
169 enum register_file file;
170 /** virtual register number. 0 = fixed hw reg */
171 int reg;
172 /** Offset within the virtual register. */
173 int reg_offset;
174 /** HW register number. Generally unset until register allocation. */
175 int hw_reg;
176 /** Register type. BRW_REGISTER_TYPE_* */
177 int type;
178 bool negate;
179 bool abs;
180 bool sechalf;
181 struct brw_reg fixed_hw_reg;
182 int smear; /* -1, or a channel of the reg to smear to all channels. */
183
184 /** Value for file == BRW_IMMMEDIATE_FILE */
185 union {
186 int32_t i;
187 uint32_t u;
188 float f;
189 } imm;
190 };
191
192 static const fs_reg reg_undef;
193 static const fs_reg reg_null_f(ARF, BRW_ARF_NULL, BRW_REGISTER_TYPE_F);
194 static const fs_reg reg_null_d(ARF, BRW_ARF_NULL, BRW_REGISTER_TYPE_D);
195
196 class fs_inst : public exec_node {
197 public:
198 /* Callers of this ralloc-based new need not call delete. It's
199 * easier to just ralloc_free 'ctx' (or any of its ancestors). */
200 static void* operator new(size_t size, void *ctx)
201 {
202 void *node;
203
204 node = rzalloc_size(ctx, size);
205 assert(node != NULL);
206
207 return node;
208 }
209
210 void init()
211 {
212 memset(this, 0, sizeof(*this));
213 this->opcode = BRW_OPCODE_NOP;
214 this->conditional_mod = BRW_CONDITIONAL_NONE;
215
216 this->dst = reg_undef;
217 this->src[0] = reg_undef;
218 this->src[1] = reg_undef;
219 this->src[2] = reg_undef;
220 }
221
222 fs_inst()
223 {
224 init();
225 }
226
227 fs_inst(int opcode)
228 {
229 init();
230 this->opcode = opcode;
231 }
232
233 fs_inst(int opcode, fs_reg dst)
234 {
235 init();
236 this->opcode = opcode;
237 this->dst = dst;
238
239 if (dst.file == GRF)
240 assert(dst.reg_offset >= 0);
241 }
242
243 fs_inst(int opcode, fs_reg dst, fs_reg src0)
244 {
245 init();
246 this->opcode = opcode;
247 this->dst = dst;
248 this->src[0] = src0;
249
250 if (dst.file == GRF)
251 assert(dst.reg_offset >= 0);
252 if (src[0].file == GRF)
253 assert(src[0].reg_offset >= 0);
254 }
255
256 fs_inst(int opcode, fs_reg dst, fs_reg src0, fs_reg src1)
257 {
258 init();
259 this->opcode = opcode;
260 this->dst = dst;
261 this->src[0] = src0;
262 this->src[1] = src1;
263
264 if (dst.file == GRF)
265 assert(dst.reg_offset >= 0);
266 if (src[0].file == GRF)
267 assert(src[0].reg_offset >= 0);
268 if (src[1].file == GRF)
269 assert(src[1].reg_offset >= 0);
270 }
271
272 fs_inst(int opcode, fs_reg dst, fs_reg src0, fs_reg src1, fs_reg src2)
273 {
274 init();
275 this->opcode = opcode;
276 this->dst = dst;
277 this->src[0] = src0;
278 this->src[1] = src1;
279 this->src[2] = src2;
280
281 if (dst.file == GRF)
282 assert(dst.reg_offset >= 0);
283 if (src[0].file == GRF)
284 assert(src[0].reg_offset >= 0);
285 if (src[1].file == GRF)
286 assert(src[1].reg_offset >= 0);
287 if (src[2].file == GRF)
288 assert(src[2].reg_offset >= 0);
289 }
290
291 bool equals(fs_inst *inst)
292 {
293 return (opcode == inst->opcode &&
294 dst.equals(&inst->dst) &&
295 src[0].equals(&inst->src[0]) &&
296 src[1].equals(&inst->src[1]) &&
297 src[2].equals(&inst->src[2]) &&
298 saturate == inst->saturate &&
299 predicated == inst->predicated &&
300 conditional_mod == inst->conditional_mod &&
301 mlen == inst->mlen &&
302 base_mrf == inst->base_mrf &&
303 sampler == inst->sampler &&
304 target == inst->target &&
305 eot == inst->eot &&
306 header_present == inst->header_present &&
307 shadow_compare == inst->shadow_compare &&
308 offset == inst->offset);
309 }
310
311 bool is_tex()
312 {
313 return (opcode == FS_OPCODE_TEX ||
314 opcode == FS_OPCODE_TXB ||
315 opcode == FS_OPCODE_TXD ||
316 opcode == FS_OPCODE_TXL);
317 }
318
319 bool is_math()
320 {
321 return (opcode == FS_OPCODE_RCP ||
322 opcode == FS_OPCODE_RSQ ||
323 opcode == FS_OPCODE_SQRT ||
324 opcode == FS_OPCODE_EXP2 ||
325 opcode == FS_OPCODE_LOG2 ||
326 opcode == FS_OPCODE_SIN ||
327 opcode == FS_OPCODE_COS ||
328 opcode == FS_OPCODE_POW);
329 }
330
331 int opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
332 fs_reg dst;
333 fs_reg src[3];
334 bool saturate;
335 bool predicated;
336 bool predicate_inverse;
337 int conditional_mod; /**< BRW_CONDITIONAL_* */
338
339 int mlen; /**< SEND message length */
340 int base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
341 int sampler;
342 int target; /**< MRT target. */
343 bool eot;
344 bool header_present;
345 bool shadow_compare;
346 bool force_uncompressed;
347 bool force_sechalf;
348 uint32_t offset; /* spill/unspill offset */
349
350 /** @{
351 * Annotation for the generated IR. One of the two can be set.
352 */
353 ir_instruction *ir;
354 const char *annotation;
355 /** @} */
356 };
357
358 class fs_visitor : public ir_visitor
359 {
360 public:
361
362 fs_visitor(struct brw_wm_compile *c, struct brw_shader *shader)
363 {
364 this->c = c;
365 this->p = &c->func;
366 this->brw = p->brw;
367 this->fp = brw->fragment_program;
368 this->intel = &brw->intel;
369 this->ctx = &intel->ctx;
370 this->mem_ctx = ralloc_context(NULL);
371 this->shader = shader;
372 this->failed = false;
373 this->variable_ht = hash_table_ctor(0,
374 hash_table_pointer_hash,
375 hash_table_pointer_compare);
376
377 /* There's a question that appears to be left open in the spec:
378 * How do implicit dst conversions interact with the CMP
379 * instruction or conditional mods? On gen6, the instruction:
380 *
381 * CMP null<d> src0<f> src1<f>
382 *
383 * will do src1 - src0 and compare that result as if it was an
384 * integer. On gen4, it will do src1 - src0 as float, convert
385 * the result to int, and compare as int. In between, it
386 * appears that it does src1 - src0 and does the compare in the
387 * execution type so dst type doesn't matter.
388 */
389 if (this->intel->gen > 4)
390 this->reg_null_cmp = reg_null_d;
391 else
392 this->reg_null_cmp = reg_null_f;
393
394 this->frag_color = NULL;
395 this->frag_data = NULL;
396 this->frag_depth = NULL;
397 this->first_non_payload_grf = 0;
398
399 this->current_annotation = NULL;
400 this->base_ir = NULL;
401
402 this->virtual_grf_sizes = NULL;
403 this->virtual_grf_next = 1;
404 this->virtual_grf_array_size = 0;
405 this->virtual_grf_def = NULL;
406 this->virtual_grf_use = NULL;
407 this->live_intervals_valid = false;
408
409 this->kill_emitted = false;
410 this->force_uncompressed_stack = 0;
411 this->force_sechalf_stack = 0;
412 }
413
414 ~fs_visitor()
415 {
416 ralloc_free(this->mem_ctx);
417 hash_table_dtor(this->variable_ht);
418 }
419
420 fs_reg *variable_storage(ir_variable *var);
421 int virtual_grf_alloc(int size);
422 void import_uniforms(struct hash_table *src_variable_ht);
423
424 void visit(ir_variable *ir);
425 void visit(ir_assignment *ir);
426 void visit(ir_dereference_variable *ir);
427 void visit(ir_dereference_record *ir);
428 void visit(ir_dereference_array *ir);
429 void visit(ir_expression *ir);
430 void visit(ir_texture *ir);
431 void visit(ir_if *ir);
432 void visit(ir_constant *ir);
433 void visit(ir_swizzle *ir);
434 void visit(ir_return *ir);
435 void visit(ir_loop *ir);
436 void visit(ir_loop_jump *ir);
437 void visit(ir_discard *ir);
438 void visit(ir_call *ir);
439 void visit(ir_function *ir);
440 void visit(ir_function_signature *ir);
441
442 fs_inst *emit(fs_inst inst);
443
444 fs_inst *emit(int opcode)
445 {
446 return emit(fs_inst(opcode));
447 }
448
449 fs_inst *emit(int opcode, fs_reg dst)
450 {
451 return emit(fs_inst(opcode, dst));
452 }
453
454 fs_inst *emit(int opcode, fs_reg dst, fs_reg src0)
455 {
456 return emit(fs_inst(opcode, dst, src0));
457 }
458
459 fs_inst *emit(int opcode, fs_reg dst, fs_reg src0, fs_reg src1)
460 {
461 return emit(fs_inst(opcode, dst, src0, src1));
462 }
463
464 fs_inst *emit(int opcode, fs_reg dst, fs_reg src0, fs_reg src1, fs_reg src2)
465 {
466 return emit(fs_inst(opcode, dst, src0, src1, src2));
467 }
468
469 bool run();
470 void setup_paramvalues_refs();
471 void assign_curb_setup();
472 void calculate_urb_setup();
473 void assign_urb_setup();
474 bool assign_regs();
475 void assign_regs_trivial();
476 int choose_spill_reg(struct ra_graph *g);
477 void spill_reg(int spill_reg);
478 void split_virtual_grfs();
479 void setup_pull_constants();
480 void calculate_live_intervals();
481 bool propagate_constants();
482 bool register_coalesce();
483 bool compute_to_mrf();
484 bool dead_code_eliminate();
485 bool remove_duplicate_mrf_writes();
486 bool virtual_grf_interferes(int a, int b);
487 void schedule_instructions();
488 void fail(const char *msg, ...);
489
490 void push_force_uncompressed();
491 void pop_force_uncompressed();
492 void push_force_sechalf();
493 void pop_force_sechalf();
494
495 void generate_code();
496 void generate_fb_write(fs_inst *inst);
497 void generate_pixel_xy(struct brw_reg dst, bool is_x);
498 void generate_linterp(fs_inst *inst, struct brw_reg dst,
499 struct brw_reg *src);
500 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
501 void generate_math(fs_inst *inst, struct brw_reg dst, struct brw_reg *src);
502 void generate_discard(fs_inst *inst);
503 void generate_ddx(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
504 void generate_ddy(fs_inst *inst, struct brw_reg dst, struct brw_reg src);
505 void generate_spill(fs_inst *inst, struct brw_reg src);
506 void generate_unspill(fs_inst *inst, struct brw_reg dst);
507 void generate_pull_constant_load(fs_inst *inst, struct brw_reg dst);
508
509 void emit_dummy_fs();
510 fs_reg *emit_fragcoord_interpolation(ir_variable *ir);
511 fs_reg *emit_frontfacing_interpolation(ir_variable *ir);
512 fs_reg *emit_general_interpolation(ir_variable *ir);
513 void emit_interpolation_setup_gen4();
514 void emit_interpolation_setup_gen6();
515 fs_inst *emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate,
516 int sampler);
517 fs_inst *emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate,
518 int sampler);
519 fs_inst *emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate,
520 int sampler);
521 fs_inst *emit_math(fs_opcodes op, fs_reg dst, fs_reg src0);
522 fs_inst *emit_math(fs_opcodes op, fs_reg dst, fs_reg src0, fs_reg src1);
523 bool try_emit_saturate(ir_expression *ir);
524 void emit_bool_to_cond_code(ir_rvalue *condition);
525 void emit_if_gen6(ir_if *ir);
526 void emit_unspill(fs_inst *inst, fs_reg reg, uint32_t spill_offset);
527
528 void emit_color_write(int index, int first_color_mrf, fs_reg color);
529 void emit_fb_writes();
530 void emit_assignment_writes(fs_reg &l, fs_reg &r,
531 const glsl_type *type, bool predicated);
532
533 struct brw_reg interp_reg(int location, int channel);
534 int setup_uniform_values(int loc, const glsl_type *type);
535 void setup_builtin_uniform_values(ir_variable *ir);
536 int implied_mrf_writes(fs_inst *inst);
537
538 struct brw_context *brw;
539 const struct gl_fragment_program *fp;
540 struct intel_context *intel;
541 struct gl_context *ctx;
542 struct brw_wm_compile *c;
543 struct brw_compile *p;
544 struct brw_shader *shader;
545 void *mem_ctx;
546 exec_list instructions;
547
548 /* Delayed setup of c->prog_data.params[] due to realloc of
549 * ParamValues[] during compile.
550 */
551 int param_index[MAX_UNIFORMS * 4];
552 int param_offset[MAX_UNIFORMS * 4];
553
554 int *virtual_grf_sizes;
555 int virtual_grf_next;
556 int virtual_grf_array_size;
557 int *virtual_grf_def;
558 int *virtual_grf_use;
559 bool live_intervals_valid;
560
561 struct hash_table *variable_ht;
562 ir_variable *frag_color, *frag_data, *frag_depth;
563 int first_non_payload_grf;
564 int urb_setup[FRAG_ATTRIB_MAX];
565 bool kill_emitted;
566
567 /** @{ debug annotation info */
568 const char *current_annotation;
569 ir_instruction *base_ir;
570 /** @} */
571
572 bool failed;
573
574 /* Result of last visit() method. */
575 fs_reg result;
576
577 fs_reg pixel_x;
578 fs_reg pixel_y;
579 fs_reg wpos_w;
580 fs_reg pixel_w;
581 fs_reg delta_x;
582 fs_reg delta_y;
583 fs_reg reg_null_cmp;
584
585 int grf_used;
586
587 int force_uncompressed_stack;
588 int force_sechalf_stack;
589 };
590
591 GLboolean brw_do_channel_expressions(struct exec_list *instructions);
592 GLboolean brw_do_vector_splitting(struct exec_list *instructions);