i965/vec4: Remove unused method definition.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4.h
1 /*
2 * Copyright © 2011 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
24 #ifndef BRW_VEC4_H
25 #define BRW_VEC4_H
26
27 #include <stdint.h>
28 #include "brw_shader.h"
29 #include "main/compiler.h"
30 #include "program/hash_table.h"
31 #include "brw_program.h"
32
33 #ifdef __cplusplus
34 #include "brw_ir_vec4.h"
35
36 extern "C" {
37 #endif
38
39 #include "brw_context.h"
40 #include "brw_eu.h"
41 #include "intel_asm_annotation.h"
42
43 #ifdef __cplusplus
44 }; /* extern "C" */
45 #endif
46
47 #include "glsl/ir.h"
48
49
50 struct brw_vec4_compile {
51 GLuint last_scratch; /**< measured in 32-byte (register size) units */
52 };
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 void
59 brw_vue_setup_prog_key_for_precompile(struct gl_context *ctx,
60 struct brw_vue_prog_key *key,
61 GLuint id, struct gl_program *prog);
62
63 #ifdef __cplusplus
64 } /* extern "C" */
65
66 namespace brw {
67
68 class vec4_live_variables;
69
70 /**
71 * The vertex shader front-end.
72 *
73 * Translates either GLSL IR or Mesa IR (for ARB_vertex_program and
74 * fixed-function) into VS IR.
75 */
76 class vec4_visitor : public backend_visitor
77 {
78 public:
79 vec4_visitor(struct brw_context *brw,
80 struct brw_vec4_compile *c,
81 struct gl_program *prog,
82 const struct brw_vue_prog_key *key,
83 struct brw_vue_prog_data *prog_data,
84 struct gl_shader_program *shader_prog,
85 gl_shader_stage stage,
86 void *mem_ctx,
87 bool no_spills,
88 shader_time_shader_type st_base,
89 shader_time_shader_type st_written,
90 shader_time_shader_type st_reset);
91 ~vec4_visitor();
92
93 dst_reg dst_null_f()
94 {
95 return dst_reg(brw_null_reg());
96 }
97
98 dst_reg dst_null_d()
99 {
100 return dst_reg(retype(brw_null_reg(), BRW_REGISTER_TYPE_D));
101 }
102
103 dst_reg dst_null_ud()
104 {
105 return dst_reg(retype(brw_null_reg(), BRW_REGISTER_TYPE_UD));
106 }
107
108 struct brw_vec4_compile * const c;
109 const struct brw_vue_prog_key * const key;
110 struct brw_vue_prog_data * const prog_data;
111 unsigned int sanity_param_count;
112
113 char *fail_msg;
114 bool failed;
115
116 /**
117 * GLSL IR currently being processed, which is associated with our
118 * driver IR instructions for debugging purposes.
119 */
120 const void *base_ir;
121 const char *current_annotation;
122
123 int first_non_payload_grf;
124 unsigned int max_grf;
125 int *virtual_grf_start;
126 int *virtual_grf_end;
127 brw::vec4_live_variables *live_intervals;
128 dst_reg userplane[MAX_CLIP_PLANES];
129
130 dst_reg *variable_storage(ir_variable *var);
131
132 void reladdr_to_temp(ir_instruction *ir, src_reg *reg, int *num_reladdr);
133
134 bool need_all_constants_in_pull_buffer;
135
136 /**
137 * \name Visit methods
138 *
139 * As typical for the visitor pattern, there must be one \c visit method for
140 * each concrete subclass of \c ir_instruction. Virtual base classes within
141 * the hierarchy should not have \c visit methods.
142 */
143 /*@{*/
144 virtual void visit(ir_variable *);
145 virtual void visit(ir_loop *);
146 virtual void visit(ir_loop_jump *);
147 virtual void visit(ir_function_signature *);
148 virtual void visit(ir_function *);
149 virtual void visit(ir_expression *);
150 virtual void visit(ir_swizzle *);
151 virtual void visit(ir_dereference_variable *);
152 virtual void visit(ir_dereference_array *);
153 virtual void visit(ir_dereference_record *);
154 virtual void visit(ir_assignment *);
155 virtual void visit(ir_constant *);
156 virtual void visit(ir_call *);
157 virtual void visit(ir_return *);
158 virtual void visit(ir_discard *);
159 virtual void visit(ir_texture *);
160 virtual void visit(ir_if *);
161 virtual void visit(ir_emit_vertex *);
162 virtual void visit(ir_end_primitive *);
163 /*@}*/
164
165 src_reg result;
166
167 /* Regs for vertex results. Generated at ir_variable visiting time
168 * for the ir->location's used.
169 */
170 dst_reg output_reg[BRW_VARYING_SLOT_COUNT];
171 const char *output_reg_annotation[BRW_VARYING_SLOT_COUNT];
172 int *uniform_size;
173 int *uniform_vector_size;
174 int uniform_array_size; /*< Size of uniform_[vector_]size arrays */
175 int uniforms;
176
177 src_reg shader_start_time;
178
179 struct hash_table *variable_ht;
180
181 bool run(void);
182 void fail(const char *msg, ...);
183
184 void setup_uniform_clipplane_values();
185 void setup_uniform_values(ir_variable *ir);
186 void setup_builtin_uniform_values(ir_variable *ir);
187 int setup_uniforms(int payload_reg);
188 bool reg_allocate_trivial();
189 bool reg_allocate();
190 void evaluate_spill_costs(float *spill_costs, bool *no_spill);
191 int choose_spill_reg(struct ra_graph *g);
192 void spill_reg(int spill_reg);
193 void move_grf_array_access_to_scratch();
194 void move_uniform_array_access_to_pull_constants();
195 void move_push_constants_to_pull_constants();
196 void split_uniform_registers();
197 void pack_uniform_registers();
198 void calculate_live_intervals();
199 void invalidate_live_intervals();
200 void split_virtual_grfs();
201 bool opt_vector_float();
202 bool opt_reduce_swizzle();
203 bool dead_code_eliminate();
204 bool virtual_grf_interferes(int a, int b);
205 bool opt_copy_propagation(bool do_constant_prop = true);
206 bool opt_cse_local(bblock_t *block);
207 bool opt_cse();
208 bool opt_algebraic();
209 bool opt_register_coalesce();
210 bool is_dep_ctrl_unsafe(const vec4_instruction *inst);
211 void opt_set_dependency_control();
212 void opt_schedule_instructions();
213
214 vec4_instruction *emit(vec4_instruction *inst);
215
216 vec4_instruction *emit(enum opcode opcode);
217 vec4_instruction *emit(enum opcode opcode, const dst_reg &dst);
218 vec4_instruction *emit(enum opcode opcode, const dst_reg &dst,
219 const src_reg &src0);
220 vec4_instruction *emit(enum opcode opcode, const dst_reg &dst,
221 const src_reg &src0, const src_reg &src1);
222 vec4_instruction *emit(enum opcode opcode, const dst_reg &dst,
223 const src_reg &src0, const src_reg &src1,
224 const src_reg &src2);
225
226 vec4_instruction *emit_before(bblock_t *block,
227 vec4_instruction *inst,
228 vec4_instruction *new_inst);
229
230 #define EMIT1(op) vec4_instruction *op(const dst_reg &, const src_reg &);
231 #define EMIT2(op) vec4_instruction *op(const dst_reg &, const src_reg &, const src_reg &);
232 #define EMIT3(op) vec4_instruction *op(const dst_reg &, const src_reg &, const src_reg &, const src_reg &);
233 EMIT1(MOV)
234 EMIT1(NOT)
235 EMIT1(RNDD)
236 EMIT1(RNDE)
237 EMIT1(RNDZ)
238 EMIT1(FRC)
239 EMIT1(F32TO16)
240 EMIT1(F16TO32)
241 EMIT2(ADD)
242 EMIT2(MUL)
243 EMIT2(MACH)
244 EMIT2(MAC)
245 EMIT2(AND)
246 EMIT2(OR)
247 EMIT2(XOR)
248 EMIT2(DP3)
249 EMIT2(DP4)
250 EMIT2(DPH)
251 EMIT2(SHL)
252 EMIT2(SHR)
253 EMIT2(ASR)
254 vec4_instruction *CMP(dst_reg dst, src_reg src0, src_reg src1,
255 enum brw_conditional_mod condition);
256 vec4_instruction *IF(src_reg src0, src_reg src1,
257 enum brw_conditional_mod condition);
258 vec4_instruction *IF(enum brw_predicate predicate);
259 EMIT1(SCRATCH_READ)
260 EMIT2(SCRATCH_WRITE)
261 EMIT3(LRP)
262 EMIT1(BFREV)
263 EMIT3(BFE)
264 EMIT2(BFI1)
265 EMIT3(BFI2)
266 EMIT1(FBH)
267 EMIT1(FBL)
268 EMIT1(CBIT)
269 EMIT3(MAD)
270 EMIT2(ADDC)
271 EMIT2(SUBB)
272 #undef EMIT1
273 #undef EMIT2
274 #undef EMIT3
275
276 int implied_mrf_writes(vec4_instruction *inst);
277
278 bool try_rewrite_rhs_to_dst(ir_assignment *ir,
279 dst_reg dst,
280 src_reg src,
281 vec4_instruction *pre_rhs_inst,
282 vec4_instruction *last_rhs_inst);
283
284 /** Walks an exec_list of ir_instruction and sends it through this visitor. */
285 void visit_instructions(const exec_list *list);
286
287 void emit_vp_sop(enum brw_conditional_mod condmod, dst_reg dst,
288 src_reg src0, src_reg src1, src_reg one);
289
290 void emit_bool_to_cond_code(ir_rvalue *ir, enum brw_predicate *predicate);
291 void emit_if_gen6(ir_if *ir);
292
293 void emit_minmax(enum brw_conditional_mod conditionalmod, dst_reg dst,
294 src_reg src0, src_reg src1);
295
296 void emit_lrp(const dst_reg &dst,
297 const src_reg &x, const src_reg &y, const src_reg &a);
298
299 void emit_block_move(dst_reg *dst, src_reg *src,
300 const struct glsl_type *type, brw_predicate predicate);
301
302 void emit_constant_values(dst_reg *dst, ir_constant *value);
303
304 /**
305 * Emit the correct dot-product instruction for the type of arguments
306 */
307 void emit_dp(dst_reg dst, src_reg src0, src_reg src1, unsigned elements);
308
309 void emit_scalar(ir_instruction *ir, enum prog_opcode op,
310 dst_reg dst, src_reg src0);
311
312 void emit_scalar(ir_instruction *ir, enum prog_opcode op,
313 dst_reg dst, src_reg src0, src_reg src1);
314
315 void emit_scs(ir_instruction *ir, enum prog_opcode op,
316 dst_reg dst, const src_reg &src);
317
318 src_reg fix_3src_operand(src_reg src);
319
320 void emit_math(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
321 const src_reg &src1 = src_reg());
322 src_reg fix_math_operand(src_reg src);
323
324 void emit_pack_half_2x16(dst_reg dst, src_reg src0);
325 void emit_unpack_half_2x16(dst_reg dst, src_reg src0);
326 void emit_unpack_unorm_4x8(const dst_reg &dst, src_reg src0);
327 void emit_unpack_snorm_4x8(const dst_reg &dst, src_reg src0);
328 void emit_pack_unorm_4x8(const dst_reg &dst, const src_reg &src0);
329 void emit_pack_snorm_4x8(const dst_reg &dst, const src_reg &src0);
330
331 uint32_t gather_channel(ir_texture *ir, uint32_t sampler);
332 src_reg emit_mcs_fetch(ir_texture *ir, src_reg coordinate, src_reg sampler);
333 void emit_gen6_gather_wa(uint8_t wa, dst_reg dst);
334 void swizzle_result(ir_texture *ir, src_reg orig_val, uint32_t sampler);
335
336 void emit_ndc_computation();
337 void emit_psiz_and_flags(dst_reg reg);
338 void emit_clip_distances(dst_reg reg, int offset);
339 vec4_instruction *emit_generic_urb_slot(dst_reg reg, int varying);
340 void emit_urb_slot(dst_reg reg, int varying);
341
342 void emit_shader_time_begin();
343 void emit_shader_time_end();
344 void emit_shader_time_write(enum shader_time_shader_type type,
345 src_reg value);
346
347 void emit_untyped_atomic(unsigned atomic_op, unsigned surf_index,
348 dst_reg dst, src_reg offset, src_reg src0,
349 src_reg src1);
350
351 void emit_untyped_surface_read(unsigned surf_index, dst_reg dst,
352 src_reg offset);
353
354 src_reg get_scratch_offset(bblock_t *block, vec4_instruction *inst,
355 src_reg *reladdr, int reg_offset);
356 src_reg get_pull_constant_offset(bblock_t *block, vec4_instruction *inst,
357 src_reg *reladdr, int reg_offset);
358 void emit_scratch_read(bblock_t *block, vec4_instruction *inst,
359 dst_reg dst,
360 src_reg orig_src,
361 int base_offset);
362 void emit_scratch_write(bblock_t *block, vec4_instruction *inst,
363 int base_offset);
364 void emit_pull_constant_load(bblock_t *block, vec4_instruction *inst,
365 dst_reg dst,
366 src_reg orig_src,
367 int base_offset);
368
369 bool try_emit_mad(ir_expression *ir);
370 bool try_emit_b2f_of_compare(ir_expression *ir);
371 void resolve_ud_negate(src_reg *reg);
372 void resolve_bool_comparison(ir_rvalue *rvalue, src_reg *reg);
373
374 src_reg get_timestamp();
375
376 bool process_move_condition(ir_rvalue *ir);
377
378 void dump_instruction(backend_instruction *inst);
379 void dump_instruction(backend_instruction *inst, FILE *file);
380
381 void visit_atomic_counter_intrinsic(ir_call *ir);
382
383 protected:
384 void emit_vertex();
385 void lower_attributes_to_hw_regs(const int *attribute_map,
386 bool interleaved);
387 void setup_payload_interference(struct ra_graph *g, int first_payload_node,
388 int reg_node_count);
389 virtual dst_reg *make_reg_for_system_value(ir_variable *ir) = 0;
390 virtual void assign_binding_table_offsets();
391 virtual void setup_payload() = 0;
392 virtual void emit_prolog() = 0;
393 virtual void emit_program_code() = 0;
394 virtual void emit_thread_end() = 0;
395 virtual void emit_urb_write_header(int mrf) = 0;
396 virtual vec4_instruction *emit_urb_write_opcode(bool complete) = 0;
397 virtual int compute_array_stride(ir_dereference_array *ir);
398
399 private:
400 /**
401 * If true, then register allocation should fail instead of spilling.
402 */
403 const bool no_spills;
404
405 const shader_time_shader_type st_base;
406 const shader_time_shader_type st_written;
407 const shader_time_shader_type st_reset;
408 };
409
410
411 /**
412 * The vertex shader code generator.
413 *
414 * Translates VS IR to actual i965 assembly code.
415 */
416 class vec4_generator
417 {
418 public:
419 vec4_generator(struct brw_context *brw,
420 struct gl_shader_program *shader_prog,
421 struct gl_program *prog,
422 struct brw_vue_prog_data *prog_data,
423 void *mem_ctx,
424 bool debug_flag,
425 const char *stage_name,
426 const char *stage_abbrev);
427 ~vec4_generator();
428
429 const unsigned *generate_assembly(const cfg_t *cfg, unsigned *asm_size);
430
431 private:
432 void generate_code(const cfg_t *cfg);
433
434 void generate_math1_gen4(vec4_instruction *inst,
435 struct brw_reg dst,
436 struct brw_reg src);
437 void generate_math2_gen4(vec4_instruction *inst,
438 struct brw_reg dst,
439 struct brw_reg src0,
440 struct brw_reg src1);
441 void generate_math_gen6(vec4_instruction *inst,
442 struct brw_reg dst,
443 struct brw_reg src0,
444 struct brw_reg src1);
445
446 void generate_tex(vec4_instruction *inst,
447 struct brw_reg dst,
448 struct brw_reg src,
449 struct brw_reg sampler_index);
450
451 void generate_vs_urb_write(vec4_instruction *inst);
452 void generate_gs_urb_write(vec4_instruction *inst);
453 void generate_gs_urb_write_allocate(vec4_instruction *inst);
454 void generate_gs_thread_end(vec4_instruction *inst);
455 void generate_gs_set_write_offset(struct brw_reg dst,
456 struct brw_reg src0,
457 struct brw_reg src1);
458 void generate_gs_set_vertex_count(struct brw_reg dst,
459 struct brw_reg src);
460 void generate_gs_svb_write(vec4_instruction *inst,
461 struct brw_reg dst,
462 struct brw_reg src0,
463 struct brw_reg src1);
464 void generate_gs_svb_set_destination_index(vec4_instruction *inst,
465 struct brw_reg dst,
466 struct brw_reg src);
467 void generate_gs_set_dword_2(struct brw_reg dst, struct brw_reg src);
468 void generate_gs_prepare_channel_masks(struct brw_reg dst);
469 void generate_gs_set_channel_masks(struct brw_reg dst, struct brw_reg src);
470 void generate_gs_get_instance_id(struct brw_reg dst);
471 void generate_gs_ff_sync_set_primitives(struct brw_reg dst,
472 struct brw_reg src0,
473 struct brw_reg src1,
474 struct brw_reg src2);
475 void generate_gs_ff_sync(vec4_instruction *inst,
476 struct brw_reg dst,
477 struct brw_reg src0,
478 struct brw_reg src1);
479 void generate_gs_set_primitive_id(struct brw_reg dst);
480 void generate_oword_dual_block_offsets(struct brw_reg m1,
481 struct brw_reg index);
482 void generate_scratch_write(vec4_instruction *inst,
483 struct brw_reg dst,
484 struct brw_reg src,
485 struct brw_reg index);
486 void generate_scratch_read(vec4_instruction *inst,
487 struct brw_reg dst,
488 struct brw_reg index);
489 void generate_pull_constant_load(vec4_instruction *inst,
490 struct brw_reg dst,
491 struct brw_reg index,
492 struct brw_reg offset);
493 void generate_pull_constant_load_gen7(vec4_instruction *inst,
494 struct brw_reg dst,
495 struct brw_reg surf_index,
496 struct brw_reg offset);
497 void generate_unpack_flags(struct brw_reg dst);
498
499 void generate_untyped_atomic(vec4_instruction *inst,
500 struct brw_reg dst,
501 struct brw_reg atomic_op,
502 struct brw_reg surf_index);
503
504 void generate_untyped_surface_read(vec4_instruction *inst,
505 struct brw_reg dst,
506 struct brw_reg surf_index);
507
508 struct brw_context *brw;
509
510 struct brw_compile *p;
511
512 struct gl_shader_program *shader_prog;
513 const struct gl_program *prog;
514
515 struct brw_vue_prog_data *prog_data;
516
517 void *mem_ctx;
518 const char *stage_name;
519 const char *stage_abbrev;
520 const bool debug_flag;
521 };
522
523 } /* namespace brw */
524 #endif /* __cplusplus */
525
526 #endif /* BRW_VEC4_H */