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