i965: Move fs_visitor ra pass to new fs_visitor::allocate_registers()
[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 #pragma once
29
30 #include "brw_shader.h"
31
32 extern "C" {
33
34 #include <sys/types.h>
35
36 #include "main/macros.h"
37 #include "main/shaderobj.h"
38 #include "main/uniforms.h"
39 #include "program/prog_parameter.h"
40 #include "program/prog_print.h"
41 #include "program/prog_optimize.h"
42 #include "util/register_allocate.h"
43 #include "program/sampler.h"
44 #include "program/hash_table.h"
45 #include "brw_context.h"
46 #include "brw_eu.h"
47 #include "brw_wm.h"
48 #include "brw_shader.h"
49 #include "intel_asm_annotation.h"
50 }
51 #include "glsl/glsl_types.h"
52 #include "glsl/ir.h"
53
54 #define MAX_SAMPLER_MESSAGE_SIZE 11
55 #define MAX_VGRF_SIZE 16
56
57 struct bblock_t;
58 namespace {
59 struct acp_entry;
60 }
61
62 namespace brw {
63 class fs_live_variables;
64 }
65
66 class fs_inst;
67 class fs_visitor;
68
69 class fs_reg : public backend_reg {
70 public:
71 DECLARE_RALLOC_CXX_OPERATORS(fs_reg)
72
73 void init();
74
75 fs_reg();
76 explicit fs_reg(float f);
77 explicit fs_reg(int32_t i);
78 explicit fs_reg(uint32_t u);
79 fs_reg(struct brw_reg fixed_hw_reg);
80 fs_reg(enum register_file file, int reg);
81 fs_reg(enum register_file file, int reg, enum brw_reg_type type);
82 fs_reg(enum register_file file, int reg, enum brw_reg_type type, uint8_t width);
83 fs_reg(fs_visitor *v, const struct glsl_type *type);
84
85 bool equals(const fs_reg &r) const;
86 bool is_valid_3src() const;
87 bool is_contiguous() const;
88
89 fs_reg &apply_stride(unsigned stride);
90 /** Smear a channel of the reg to all channels. */
91 fs_reg &set_smear(unsigned subreg);
92
93 /**
94 * Offset in bytes from the start of the register. Values up to a
95 * backend_reg::reg_offset unit are valid.
96 */
97 int subreg_offset;
98
99 fs_reg *reladdr;
100
101 /**
102 * The register width. This indicates how many hardware values are
103 * represented by each virtual value. Valid values are 1, 8, or 16.
104 * For immediate values, this is 1. Most of the rest of the time, it
105 * will be equal to the dispatch width.
106 */
107 uint8_t width;
108
109 /**
110 * Returns the effective register width when used as a source in the
111 * given instruction. Registers such as uniforms and immediates
112 * effectively take on the width of the instruction in which they are
113 * used.
114 */
115 uint8_t effective_width;
116
117 /** Register region horizontal stride */
118 uint8_t stride;
119 };
120
121 static inline fs_reg
122 retype(fs_reg reg, enum brw_reg_type type)
123 {
124 reg.fixed_hw_reg.type = reg.type = type;
125 return reg;
126 }
127
128 static inline fs_reg
129 byte_offset(fs_reg reg, unsigned delta)
130 {
131 switch (reg.file) {
132 case BAD_FILE:
133 break;
134 case GRF:
135 reg.reg_offset += delta / 32;
136 break;
137 case MRF:
138 reg.reg += delta / 32;
139 break;
140 default:
141 assert(delta == 0);
142 }
143 reg.subreg_offset += delta % 32;
144 return reg;
145 }
146
147 static inline fs_reg
148 horiz_offset(fs_reg reg, unsigned delta)
149 {
150 switch (reg.file) {
151 case BAD_FILE:
152 case UNIFORM:
153 case IMM:
154 /* These only have a single component that is implicitly splatted. A
155 * horizontal offset should be a harmless no-op.
156 */
157 break;
158 case GRF:
159 case MRF:
160 return byte_offset(reg, delta * reg.stride * type_sz(reg.type));
161 default:
162 assert(delta == 0);
163 }
164 return reg;
165 }
166
167 static inline fs_reg
168 offset(fs_reg reg, unsigned delta)
169 {
170 assert(reg.stride > 0);
171 switch (reg.file) {
172 case BAD_FILE:
173 break;
174 case GRF:
175 case MRF:
176 return byte_offset(reg, delta * reg.width * reg.stride * type_sz(reg.type));
177 case UNIFORM:
178 reg.reg_offset += delta;
179 break;
180 default:
181 assert(delta == 0);
182 }
183 return reg;
184 }
185
186 static inline fs_reg
187 component(fs_reg reg, unsigned idx)
188 {
189 assert(reg.subreg_offset == 0);
190 assert(idx < reg.width);
191 reg.subreg_offset = idx * type_sz(reg.type);
192 reg.width = 1;
193 return reg;
194 }
195
196 /**
197 * Get either of the 8-component halves of a 16-component register.
198 *
199 * Note: this also works if \c reg represents a SIMD16 pair of registers.
200 */
201 static inline fs_reg
202 half(fs_reg reg, unsigned idx)
203 {
204 assert(idx < 2);
205 assert(idx == 0 || (reg.file != HW_REG && reg.file != IMM));
206 assert(reg.width == 16);
207 reg.width = 8;
208 return horiz_offset(reg, 8 * idx);
209 }
210
211 static const fs_reg reg_undef;
212
213 class ip_record : public exec_node {
214 public:
215 DECLARE_RALLOC_CXX_OPERATORS(ip_record)
216
217 ip_record(int ip)
218 {
219 this->ip = ip;
220 }
221
222 int ip;
223 };
224
225 class fs_inst : public backend_instruction {
226 fs_inst &operator=(const fs_inst &);
227
228 void init(enum opcode opcode, uint8_t exec_width, const fs_reg &dst,
229 fs_reg *src, int sources);
230
231 public:
232 DECLARE_RALLOC_CXX_OPERATORS(fs_inst)
233
234 fs_inst();
235 fs_inst(enum opcode opcode, uint8_t exec_size);
236 fs_inst(enum opcode opcode, const fs_reg &dst);
237 fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
238 const fs_reg &src0);
239 fs_inst(enum opcode opcode, const fs_reg &dst, const fs_reg &src0);
240 fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
241 const fs_reg &src0, const fs_reg &src1);
242 fs_inst(enum opcode opcode, const fs_reg &dst, const fs_reg &src0,
243 const fs_reg &src1);
244 fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
245 const fs_reg &src0, const fs_reg &src1, const fs_reg &src2);
246 fs_inst(enum opcode opcode, const fs_reg &dst, const fs_reg &src0,
247 const fs_reg &src1, const fs_reg &src2);
248 fs_inst(enum opcode opcode, const fs_reg &dst, fs_reg src[], int sources);
249 fs_inst(enum opcode opcode, uint8_t exec_size, const fs_reg &dst,
250 fs_reg src[], int sources);
251 fs_inst(const fs_inst &that);
252
253 void resize_sources(uint8_t num_sources);
254
255 bool equals(fs_inst *inst) const;
256 bool overwrites_reg(const fs_reg &reg) const;
257 bool is_send_from_grf() const;
258 bool is_partial_write() const;
259 int regs_read(fs_visitor *v, int arg) const;
260 bool can_do_source_mods(struct brw_context *brw);
261
262 bool reads_flag() const;
263 bool writes_flag() const;
264
265 fs_reg dst;
266 fs_reg *src;
267
268 uint8_t sources; /**< Number of fs_reg sources. */
269
270 /**
271 * Execution size of the instruction. This is used by the generator to
272 * generate the correct binary for the given fs_inst. Current valid
273 * values are 1, 8, 16.
274 */
275 uint8_t exec_size;
276
277 /* Chooses which flag subregister (f0.0 or f0.1) is used for conditional
278 * mod and predication.
279 */
280 uint8_t flag_subreg;
281
282 uint8_t regs_written; /**< Number of vgrfs written by a SEND message, or 1 */
283 bool eot:1;
284 bool header_present:1;
285 bool shadow_compare:1;
286 bool force_uncompressed:1;
287 bool force_sechalf:1;
288 bool pi_noperspective:1; /**< Pixel interpolator noperspective flag */
289 };
290
291 /**
292 * The fragment shader front-end.
293 *
294 * Translates either GLSL IR or Mesa IR (for ARB_fragment_program) into FS IR.
295 */
296 class fs_visitor : public backend_visitor
297 {
298 public:
299 const fs_reg reg_null_f;
300 const fs_reg reg_null_d;
301 const fs_reg reg_null_ud;
302
303 fs_visitor(struct brw_context *brw,
304 void *mem_ctx,
305 const struct brw_wm_prog_key *key,
306 struct brw_wm_prog_data *prog_data,
307 struct gl_shader_program *shader_prog,
308 struct gl_fragment_program *fp,
309 unsigned dispatch_width);
310 ~fs_visitor();
311 void init();
312
313 fs_reg *variable_storage(ir_variable *var);
314 int virtual_grf_alloc(int size);
315 void import_uniforms(fs_visitor *v);
316
317 void visit(ir_variable *ir);
318 void visit(ir_assignment *ir);
319 void visit(ir_dereference_variable *ir);
320 void visit(ir_dereference_record *ir);
321 void visit(ir_dereference_array *ir);
322 void visit(ir_expression *ir);
323 void visit(ir_texture *ir);
324 void visit(ir_if *ir);
325 void visit(ir_constant *ir);
326 void visit(ir_swizzle *ir);
327 void visit(ir_return *ir);
328 void visit(ir_loop *ir);
329 void visit(ir_loop_jump *ir);
330 void visit(ir_discard *ir);
331 void visit(ir_call *ir);
332 void visit(ir_function *ir);
333 void visit(ir_function_signature *ir);
334 void visit(ir_emit_vertex *);
335 void visit(ir_end_primitive *);
336
337 uint32_t gather_channel(int orig_chan, uint32_t sampler);
338 void swizzle_result(ir_texture_opcode op, int dest_components,
339 fs_reg orig_val, uint32_t sampler);
340
341 fs_inst *emit(fs_inst *inst);
342 void emit(exec_list list);
343
344 fs_inst *emit(enum opcode opcode);
345 fs_inst *emit(enum opcode opcode, const fs_reg &dst);
346 fs_inst *emit(enum opcode opcode, const fs_reg &dst, const fs_reg &src0);
347 fs_inst *emit(enum opcode opcode, const fs_reg &dst, const fs_reg &src0,
348 const fs_reg &src1);
349 fs_inst *emit(enum opcode opcode, const fs_reg &dst,
350 const fs_reg &src0, const fs_reg &src1, const fs_reg &src2);
351 fs_inst *emit(enum opcode opcode, const fs_reg &dst,
352 fs_reg src[], int sources);
353
354 fs_inst *MOV(const fs_reg &dst, const fs_reg &src);
355 fs_inst *NOT(const fs_reg &dst, const fs_reg &src);
356 fs_inst *RNDD(const fs_reg &dst, const fs_reg &src);
357 fs_inst *RNDE(const fs_reg &dst, const fs_reg &src);
358 fs_inst *RNDZ(const fs_reg &dst, const fs_reg &src);
359 fs_inst *FRC(const fs_reg &dst, const fs_reg &src);
360 fs_inst *ADD(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
361 fs_inst *MUL(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
362 fs_inst *MACH(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
363 fs_inst *MAC(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
364 fs_inst *SHL(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
365 fs_inst *SHR(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
366 fs_inst *ASR(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
367 fs_inst *AND(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
368 fs_inst *OR(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
369 fs_inst *XOR(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
370 fs_inst *IF(enum brw_predicate predicate);
371 fs_inst *IF(const fs_reg &src0, const fs_reg &src1,
372 enum brw_conditional_mod condition);
373 fs_inst *CMP(fs_reg dst, fs_reg src0, fs_reg src1,
374 enum brw_conditional_mod condition);
375 fs_inst *LRP(const fs_reg &dst, const fs_reg &a, const fs_reg &y,
376 const fs_reg &x);
377 fs_inst *DEP_RESOLVE_MOV(int grf);
378 fs_inst *BFREV(const fs_reg &dst, const fs_reg &value);
379 fs_inst *BFE(const fs_reg &dst, const fs_reg &bits, const fs_reg &offset,
380 const fs_reg &value);
381 fs_inst *BFI1(const fs_reg &dst, const fs_reg &bits, const fs_reg &offset);
382 fs_inst *BFI2(const fs_reg &dst, const fs_reg &bfi1_dst,
383 const fs_reg &insert, const fs_reg &base);
384 fs_inst *FBH(const fs_reg &dst, const fs_reg &value);
385 fs_inst *FBL(const fs_reg &dst, const fs_reg &value);
386 fs_inst *CBIT(const fs_reg &dst, const fs_reg &value);
387 fs_inst *MAD(const fs_reg &dst, const fs_reg &c, const fs_reg &b,
388 const fs_reg &a);
389 fs_inst *ADDC(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
390 fs_inst *SUBB(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
391 fs_inst *SEL(const fs_reg &dst, const fs_reg &src0, const fs_reg &src1);
392
393 int type_size(const struct glsl_type *type);
394 fs_inst *get_instruction_generating_reg(fs_inst *start,
395 fs_inst *end,
396 const fs_reg &reg);
397
398 fs_inst *LOAD_PAYLOAD(const fs_reg &dst, fs_reg *src, int sources);
399
400 exec_list VARYING_PULL_CONSTANT_LOAD(const fs_reg &dst,
401 const fs_reg &surf_index,
402 const fs_reg &varying_offset,
403 uint32_t const_offset);
404
405 bool run();
406 void optimize();
407 void allocate_registers();
408 void assign_binding_table_offsets();
409 void setup_payload_gen4();
410 void setup_payload_gen6();
411 void assign_curb_setup();
412 void calculate_urb_setup();
413 void assign_urb_setup();
414 bool assign_regs(bool allow_spilling);
415 void assign_regs_trivial();
416 void get_used_mrfs(bool *mrf_used);
417 void setup_payload_interference(struct ra_graph *g, int payload_reg_count,
418 int first_payload_node);
419 void setup_mrf_hack_interference(struct ra_graph *g,
420 int first_mrf_hack_node);
421 int choose_spill_reg(struct ra_graph *g);
422 void spill_reg(int spill_reg);
423 void split_virtual_grfs();
424 bool compact_virtual_grfs();
425 void move_uniform_array_access_to_pull_constants();
426 void assign_constant_locations();
427 void demote_pull_constants();
428 void invalidate_live_intervals();
429 void calculate_live_intervals();
430 void calculate_register_pressure();
431 bool opt_algebraic();
432 bool opt_cse();
433 bool opt_cse_local(bblock_t *block);
434 bool opt_copy_propagate();
435 bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry);
436 bool try_constant_propagate(fs_inst *inst, acp_entry *entry);
437 bool opt_copy_propagate_local(void *mem_ctx, bblock_t *block,
438 exec_list *acp);
439 void opt_drop_redundant_mov_to_flags();
440 bool opt_register_renaming();
441 bool register_coalesce();
442 bool compute_to_mrf();
443 bool dead_code_eliminate();
444 bool remove_duplicate_mrf_writes();
445 bool virtual_grf_interferes(int a, int b);
446 void schedule_instructions(instruction_scheduler_mode mode);
447 void insert_gen4_send_dependency_workarounds();
448 void insert_gen4_pre_send_dependency_workarounds(bblock_t *block,
449 fs_inst *inst);
450 void insert_gen4_post_send_dependency_workarounds(bblock_t *block,
451 fs_inst *inst);
452 void vfail(const char *msg, va_list args);
453 void fail(const char *msg, ...);
454 void no16(const char *msg, ...);
455 void lower_uniform_pull_constant_loads();
456 bool lower_load_payload();
457
458 void emit_dummy_fs();
459 void emit_repclear_shader();
460 fs_reg *emit_fragcoord_interpolation(ir_variable *ir);
461 fs_inst *emit_linterp(const fs_reg &attr, const fs_reg &interp,
462 glsl_interp_qualifier interpolation_mode,
463 bool is_centroid, bool is_sample);
464 fs_reg *emit_frontfacing_interpolation();
465 fs_reg *emit_samplepos_setup();
466 fs_reg *emit_sampleid_setup();
467 fs_reg *emit_general_interpolation(ir_variable *ir);
468 void emit_interpolation_setup_gen4();
469 void emit_interpolation_setup_gen6();
470 void compute_sample_position(fs_reg dst, fs_reg int_sample_pos);
471 fs_reg rescale_texcoord(fs_reg coordinate, const glsl_type *coord_type,
472 bool is_rect, uint32_t sampler, int texunit);
473 fs_inst *emit_texture_gen4(ir_texture_opcode op, fs_reg dst,
474 fs_reg coordinate, int coord_components,
475 fs_reg shadow_comp,
476 fs_reg lod, fs_reg lod2, int grad_components,
477 uint32_t sampler);
478 fs_inst *emit_texture_gen5(ir_texture_opcode op, fs_reg dst,
479 fs_reg coordinate, int coord_components,
480 fs_reg shadow_comp,
481 fs_reg lod, fs_reg lod2, int grad_components,
482 fs_reg sample_index, uint32_t sampler,
483 bool has_offset);
484 fs_inst *emit_texture_gen7(ir_texture_opcode op, fs_reg dst,
485 fs_reg coordinate, int coord_components,
486 fs_reg shadow_comp,
487 fs_reg lod, fs_reg lod2, int grad_components,
488 fs_reg sample_index, fs_reg mcs, fs_reg sampler,
489 fs_reg offset_value);
490 void emit_texture(ir_texture_opcode op,
491 const glsl_type *dest_type,
492 fs_reg coordinate, const struct glsl_type *coord_type,
493 fs_reg shadow_c,
494 fs_reg lod, fs_reg dpdy, int grad_components,
495 fs_reg sample_index,
496 fs_reg offset, unsigned offset_components,
497 fs_reg mcs,
498 int gather_component,
499 bool is_cube_array,
500 bool is_rect,
501 uint32_t sampler,
502 fs_reg sampler_reg,
503 int texunit);
504 fs_reg emit_mcs_fetch(fs_reg coordinate, int components, fs_reg sampler);
505 void emit_gen6_gather_wa(uint8_t wa, fs_reg dst);
506 fs_reg fix_math_operand(fs_reg src);
507 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0);
508 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0, fs_reg src1);
509 void emit_lrp(const fs_reg &dst, const fs_reg &x, const fs_reg &y,
510 const fs_reg &a);
511 void emit_minmax(enum brw_conditional_mod conditionalmod, const fs_reg &dst,
512 const fs_reg &src0, const fs_reg &src1);
513 bool try_emit_saturate(ir_expression *ir);
514 bool try_emit_mad(ir_expression *ir);
515 void try_replace_with_sel();
516 bool opt_peephole_sel();
517 bool opt_peephole_predicated_break();
518 bool opt_saturate_propagation();
519 void emit_bool_to_cond_code(ir_rvalue *condition);
520 void emit_if_gen6(ir_if *ir);
521 void emit_unspill(bblock_t *block, fs_inst *inst, fs_reg reg,
522 uint32_t spill_offset, int count);
523 void emit_spill(bblock_t *block, fs_inst *inst, fs_reg reg,
524 uint32_t spill_offset, int count);
525
526 void emit_fragment_program_code();
527 void setup_fp_regs();
528 fs_reg get_fp_src_reg(const prog_src_register *src);
529 fs_reg get_fp_dst_reg(const prog_dst_register *dst);
530 void emit_fp_alu1(enum opcode opcode,
531 const struct prog_instruction *fpi,
532 fs_reg dst, fs_reg src);
533 void emit_fp_alu2(enum opcode opcode,
534 const struct prog_instruction *fpi,
535 fs_reg dst, fs_reg src0, fs_reg src1);
536 void emit_fp_scalar_write(const struct prog_instruction *fpi,
537 fs_reg dst, fs_reg src);
538 void emit_fp_scalar_math(enum opcode opcode,
539 const struct prog_instruction *fpi,
540 fs_reg dst, fs_reg src);
541
542 void emit_fp_minmax(const struct prog_instruction *fpi,
543 fs_reg dst, fs_reg src0, fs_reg src1);
544
545 void emit_fp_sop(enum brw_conditional_mod conditional_mod,
546 const struct prog_instruction *fpi,
547 fs_reg dst, fs_reg src0, fs_reg src1, fs_reg one);
548
549 int setup_color_payload(fs_reg *dst, fs_reg color, unsigned components);
550 void emit_alpha_test();
551 fs_inst *emit_single_fb_write(fs_reg color1, fs_reg color2,
552 fs_reg src0_alpha, unsigned components);
553 void emit_fb_writes();
554
555 void emit_shader_time_begin();
556 void emit_shader_time_end();
557 void emit_shader_time_write(enum shader_time_shader_type type,
558 fs_reg value);
559
560 void emit_untyped_atomic(unsigned atomic_op, unsigned surf_index,
561 fs_reg dst, fs_reg offset, fs_reg src0,
562 fs_reg src1);
563
564 void emit_untyped_surface_read(unsigned surf_index, fs_reg dst,
565 fs_reg offset);
566
567 void emit_interpolate_expression(ir_expression *ir);
568
569 bool try_rewrite_rhs_to_dst(ir_assignment *ir,
570 fs_reg dst,
571 fs_reg src,
572 fs_inst *pre_rhs_inst,
573 fs_inst *last_rhs_inst);
574 void emit_assignment_writes(fs_reg &l, fs_reg &r,
575 const glsl_type *type, bool predicated);
576 void resolve_ud_negate(fs_reg *reg);
577 void resolve_bool_comparison(ir_rvalue *rvalue, fs_reg *reg);
578
579 fs_reg get_timestamp();
580
581 struct brw_reg interp_reg(int location, int channel);
582 void setup_uniform_values(ir_variable *ir);
583 void setup_builtin_uniform_values(ir_variable *ir);
584 int implied_mrf_writes(fs_inst *inst);
585
586 virtual void dump_instructions();
587 virtual void dump_instructions(const char *name);
588 void dump_instruction(backend_instruction *inst);
589 void dump_instruction(backend_instruction *inst, FILE *file);
590
591 void visit_atomic_counter_intrinsic(ir_call *ir);
592
593 const void *const key;
594 struct brw_stage_prog_data *prog_data;
595 unsigned int sanity_param_count;
596
597 int *param_size;
598
599 int *virtual_grf_sizes;
600 int virtual_grf_count;
601 int virtual_grf_array_size;
602 int *virtual_grf_start;
603 int *virtual_grf_end;
604 brw::fs_live_variables *live_intervals;
605
606 int *regs_live_at_ip;
607
608 /** Number of uniform variable components visited. */
609 unsigned uniforms;
610
611 /** Byte-offset for the next available spot in the scratch space buffer. */
612 unsigned last_scratch;
613
614 /**
615 * Array mapping UNIFORM register numbers to the pull parameter index,
616 * or -1 if this uniform register isn't being uploaded as a pull constant.
617 */
618 int *pull_constant_loc;
619
620 /**
621 * Array mapping UNIFORM register numbers to the push parameter index,
622 * or -1 if this uniform register isn't being uploaded as a push constant.
623 */
624 int *push_constant_loc;
625
626 struct hash_table *variable_ht;
627 fs_reg frag_depth;
628 fs_reg sample_mask;
629 fs_reg outputs[BRW_MAX_DRAW_BUFFERS];
630 unsigned output_components[BRW_MAX_DRAW_BUFFERS];
631 fs_reg dual_src_output;
632 bool do_dual_src;
633 int first_non_payload_grf;
634 /** Either BRW_MAX_GRF or GEN7_MRF_HACK_START */
635 int max_grf;
636
637 fs_reg *fp_temp_regs;
638 fs_reg *fp_input_regs;
639
640 /** @{ debug annotation info */
641 const char *current_annotation;
642 const void *base_ir;
643 /** @} */
644
645 bool failed;
646 char *fail_msg;
647 bool simd16_unsupported;
648 char *no16_msg;
649
650 /* Result of last visit() method. */
651 fs_reg result;
652
653 /** Register numbers for thread payload fields. */
654 struct {
655 uint8_t source_depth_reg;
656 uint8_t source_w_reg;
657 uint8_t aa_dest_stencil_reg;
658 uint8_t dest_depth_reg;
659 uint8_t sample_pos_reg;
660 uint8_t sample_mask_in_reg;
661 uint8_t barycentric_coord_reg[BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT];
662
663 /** The number of thread payload registers the hardware will supply. */
664 uint8_t num_regs;
665 } payload;
666
667 bool source_depth_to_render_target;
668 bool runtime_check_aads_emit;
669
670 fs_reg pixel_x;
671 fs_reg pixel_y;
672 fs_reg wpos_w;
673 fs_reg pixel_w;
674 fs_reg delta_x[BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT];
675 fs_reg delta_y[BRW_WM_BARYCENTRIC_INTERP_MODE_COUNT];
676 fs_reg shader_start_time;
677
678 int grf_used;
679 bool spilled_any_registers;
680
681 const unsigned dispatch_width; /**< 8 or 16 */
682 };
683
684 /**
685 * The fragment shader code generator.
686 *
687 * Translates FS IR to actual i965 assembly code.
688 */
689 class fs_generator
690 {
691 public:
692 fs_generator(struct brw_context *brw,
693 void *mem_ctx,
694 const struct brw_wm_prog_key *key,
695 struct brw_wm_prog_data *prog_data,
696 struct gl_shader_program *shader_prog,
697 struct gl_fragment_program *fp,
698 bool runtime_check_aads_emit,
699 bool debug_flag);
700 ~fs_generator();
701
702 int generate_code(const cfg_t *cfg, int dispatch_width);
703 const unsigned *get_assembly(unsigned int *assembly_size);
704
705 private:
706 void fire_fb_write(fs_inst *inst,
707 struct brw_reg payload,
708 struct brw_reg implied_header,
709 GLuint nr);
710 void generate_fb_write(fs_inst *inst, struct brw_reg payload);
711 void generate_blorp_fb_write(fs_inst *inst);
712 void generate_pixel_xy(struct brw_reg dst, bool is_x);
713 void generate_linterp(fs_inst *inst, struct brw_reg dst,
714 struct brw_reg *src);
715 void generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src,
716 struct brw_reg sampler_index);
717 void generate_math_gen6(fs_inst *inst,
718 struct brw_reg dst,
719 struct brw_reg src0,
720 struct brw_reg src1);
721 void generate_math_gen4(fs_inst *inst,
722 struct brw_reg dst,
723 struct brw_reg src);
724 void generate_math_g45(fs_inst *inst,
725 struct brw_reg dst,
726 struct brw_reg src);
727 void generate_ddx(fs_inst *inst, struct brw_reg dst, struct brw_reg src, struct brw_reg quality);
728 void generate_ddy(fs_inst *inst, struct brw_reg dst, struct brw_reg src,
729 struct brw_reg quality, bool negate_value);
730 void generate_scratch_write(fs_inst *inst, struct brw_reg src);
731 void generate_scratch_read(fs_inst *inst, struct brw_reg dst);
732 void generate_scratch_read_gen7(fs_inst *inst, struct brw_reg dst);
733 void generate_uniform_pull_constant_load(fs_inst *inst, struct brw_reg dst,
734 struct brw_reg index,
735 struct brw_reg offset);
736 void generate_uniform_pull_constant_load_gen7(fs_inst *inst,
737 struct brw_reg dst,
738 struct brw_reg surf_index,
739 struct brw_reg offset);
740 void generate_varying_pull_constant_load(fs_inst *inst, struct brw_reg dst,
741 struct brw_reg index,
742 struct brw_reg offset);
743 void generate_varying_pull_constant_load_gen7(fs_inst *inst,
744 struct brw_reg dst,
745 struct brw_reg index,
746 struct brw_reg offset);
747 void generate_mov_dispatch_to_flags(fs_inst *inst);
748
749 void generate_pixel_interpolator_query(fs_inst *inst,
750 struct brw_reg dst,
751 struct brw_reg src,
752 struct brw_reg msg_data,
753 unsigned msg_type);
754
755 void generate_set_omask(fs_inst *inst,
756 struct brw_reg dst,
757 struct brw_reg sample_mask);
758
759 void generate_set_sample_id(fs_inst *inst,
760 struct brw_reg dst,
761 struct brw_reg src0,
762 struct brw_reg src1);
763
764 void generate_set_simd4x2_offset(fs_inst *inst,
765 struct brw_reg dst,
766 struct brw_reg offset);
767 void generate_discard_jump(fs_inst *inst);
768
769 void generate_pack_half_2x16_split(fs_inst *inst,
770 struct brw_reg dst,
771 struct brw_reg x,
772 struct brw_reg y);
773 void generate_unpack_half_2x16_split(fs_inst *inst,
774 struct brw_reg dst,
775 struct brw_reg src);
776
777 void generate_shader_time_add(fs_inst *inst,
778 struct brw_reg payload,
779 struct brw_reg offset,
780 struct brw_reg value);
781
782 void generate_untyped_atomic(fs_inst *inst,
783 struct brw_reg dst,
784 struct brw_reg payload,
785 struct brw_reg atomic_op,
786 struct brw_reg surf_index);
787
788 void generate_untyped_surface_read(fs_inst *inst,
789 struct brw_reg dst,
790 struct brw_reg payload,
791 struct brw_reg surf_index);
792
793 bool patch_discard_jumps_to_fb_writes();
794
795 struct brw_context *brw;
796 struct gl_context *ctx;
797
798 struct brw_compile *p;
799 gl_shader_stage stage;
800 const void * const key;
801 struct brw_stage_prog_data * const prog_data;
802
803 struct gl_shader_program * const shader_prog;
804 const struct gl_program *prog;
805
806 unsigned dispatch_width; /**< 8 or 16 */
807
808 exec_list discard_halt_patches;
809 bool runtime_check_aads_emit;
810 const bool debug_flag;
811 void *mem_ctx;
812 };
813
814 bool brw_do_channel_expressions(struct exec_list *instructions);
815 bool brw_do_vector_splitting(struct exec_list *instructions);
816 bool brw_fs_precompile(struct gl_context *ctx, struct gl_shader_program *prog);
817
818 struct brw_reg brw_reg_from_fs_reg(fs_reg *reg);