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