st/mesa: move to renumbering registers in a group
[mesa.git] / src / mesa / state_tracker / st_glsl_to_tgsi.cpp
1 /*
2 * Copyright (C) 2005-2007 Brian Paul All Rights Reserved.
3 * Copyright (C) 2008 VMware, Inc. All Rights Reserved.
4 * Copyright © 2010 Intel Corporation
5 * Copyright © 2011 Bryan Cain
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
25 */
26
27 /**
28 * \file glsl_to_tgsi.cpp
29 *
30 * Translate GLSL IR to TGSI.
31 */
32
33 #include "st_glsl_to_tgsi.h"
34
35 #include "glsl_parser_extras.h"
36 #include "ir_optimization.h"
37
38 #include "main/errors.h"
39 #include "main/shaderobj.h"
40 #include "main/uniforms.h"
41 #include "main/shaderapi.h"
42 #include "program/prog_instruction.h"
43 #include "program/sampler.h"
44
45 #include "pipe/p_context.h"
46 #include "pipe/p_screen.h"
47 #include "tgsi/tgsi_ureg.h"
48 #include "tgsi/tgsi_info.h"
49 #include "util/u_math.h"
50 #include "util/u_memory.h"
51 #include "st_program.h"
52 #include "st_mesa_to_tgsi.h"
53
54
55 #define PROGRAM_IMMEDIATE PROGRAM_FILE_MAX
56 #define PROGRAM_ANY_CONST ((1 << PROGRAM_STATE_VAR) | \
57 (1 << PROGRAM_CONSTANT) | \
58 (1 << PROGRAM_UNIFORM))
59
60 #define MAX_GLSL_TEXTURE_OFFSET 4
61
62 class st_src_reg;
63 class st_dst_reg;
64
65 static int swizzle_for_size(int size);
66
67 /**
68 * This struct is a corresponding struct to TGSI ureg_src.
69 */
70 class st_src_reg {
71 public:
72 st_src_reg(gl_register_file file, int index, const glsl_type *type)
73 {
74 this->file = file;
75 this->index = index;
76 if (type && (type->is_scalar() || type->is_vector() || type->is_matrix()))
77 this->swizzle = swizzle_for_size(type->vector_elements);
78 else
79 this->swizzle = SWIZZLE_XYZW;
80 this->negate = 0;
81 this->index2D = 0;
82 this->type = type ? type->base_type : GLSL_TYPE_ERROR;
83 this->reladdr = NULL;
84 this->reladdr2 = NULL;
85 this->has_index2 = false;
86 this->double_reg2 = false;
87 this->array_id = 0;
88 }
89
90 st_src_reg(gl_register_file file, int index, int type)
91 {
92 this->type = type;
93 this->file = file;
94 this->index = index;
95 this->index2D = 0;
96 this->swizzle = SWIZZLE_XYZW;
97 this->negate = 0;
98 this->reladdr = NULL;
99 this->reladdr2 = NULL;
100 this->has_index2 = false;
101 this->double_reg2 = false;
102 this->array_id = 0;
103 }
104
105 st_src_reg(gl_register_file file, int index, int type, int index2D)
106 {
107 this->type = type;
108 this->file = file;
109 this->index = index;
110 this->index2D = index2D;
111 this->swizzle = SWIZZLE_XYZW;
112 this->negate = 0;
113 this->reladdr = NULL;
114 this->reladdr2 = NULL;
115 this->has_index2 = false;
116 this->double_reg2 = false;
117 this->array_id = 0;
118 }
119
120 st_src_reg()
121 {
122 this->type = GLSL_TYPE_ERROR;
123 this->file = PROGRAM_UNDEFINED;
124 this->index = 0;
125 this->index2D = 0;
126 this->swizzle = 0;
127 this->negate = 0;
128 this->reladdr = NULL;
129 this->reladdr2 = NULL;
130 this->has_index2 = false;
131 this->double_reg2 = false;
132 this->array_id = 0;
133 }
134
135 explicit st_src_reg(st_dst_reg reg);
136
137 gl_register_file file; /**< PROGRAM_* from Mesa */
138 int index; /**< temporary index, VERT_ATTRIB_*, VARYING_SLOT_*, etc. */
139 int index2D;
140 GLuint swizzle; /**< SWIZZLE_XYZWONEZERO swizzles from Mesa. */
141 int negate; /**< NEGATE_XYZW mask from mesa */
142 int type; /** GLSL_TYPE_* from GLSL IR (enum glsl_base_type) */
143 /** Register index should be offset by the integer in this reg. */
144 st_src_reg *reladdr;
145 st_src_reg *reladdr2;
146 bool has_index2;
147 /*
148 * Is this the second half of a double register pair?
149 * currently used for input mapping only.
150 */
151 bool double_reg2;
152 unsigned array_id;
153 };
154
155 class st_dst_reg {
156 public:
157 st_dst_reg(gl_register_file file, int writemask, int type, int index)
158 {
159 this->file = file;
160 this->index = index;
161 this->index2D = 0;
162 this->writemask = writemask;
163 this->cond_mask = COND_TR;
164 this->reladdr = NULL;
165 this->reladdr2 = NULL;
166 this->has_index2 = false;
167 this->type = type;
168 this->array_id = 0;
169 }
170
171 st_dst_reg(gl_register_file file, int writemask, int type)
172 {
173 this->file = file;
174 this->index = 0;
175 this->index2D = 0;
176 this->writemask = writemask;
177 this->cond_mask = COND_TR;
178 this->reladdr = NULL;
179 this->reladdr2 = NULL;
180 this->has_index2 = false;
181 this->type = type;
182 this->array_id = 0;
183 }
184
185 st_dst_reg()
186 {
187 this->type = GLSL_TYPE_ERROR;
188 this->file = PROGRAM_UNDEFINED;
189 this->index = 0;
190 this->index2D = 0;
191 this->writemask = 0;
192 this->cond_mask = COND_TR;
193 this->reladdr = NULL;
194 this->reladdr2 = NULL;
195 this->has_index2 = false;
196 this->array_id = 0;
197 }
198
199 explicit st_dst_reg(st_src_reg reg);
200
201 gl_register_file file; /**< PROGRAM_* from Mesa */
202 int index; /**< temporary index, VERT_ATTRIB_*, VARYING_SLOT_*, etc. */
203 int index2D;
204 int writemask; /**< Bitfield of WRITEMASK_[XYZW] */
205 GLuint cond_mask:4;
206 int type; /** GLSL_TYPE_* from GLSL IR (enum glsl_base_type) */
207 /** Register index should be offset by the integer in this reg. */
208 st_src_reg *reladdr;
209 st_src_reg *reladdr2;
210 bool has_index2;
211 unsigned array_id;
212 };
213
214 st_src_reg::st_src_reg(st_dst_reg reg)
215 {
216 this->type = reg.type;
217 this->file = reg.file;
218 this->index = reg.index;
219 this->swizzle = SWIZZLE_XYZW;
220 this->negate = 0;
221 this->reladdr = reg.reladdr;
222 this->index2D = reg.index2D;
223 this->reladdr2 = reg.reladdr2;
224 this->has_index2 = reg.has_index2;
225 this->double_reg2 = false;
226 this->array_id = reg.array_id;
227 }
228
229 st_dst_reg::st_dst_reg(st_src_reg reg)
230 {
231 this->type = reg.type;
232 this->file = reg.file;
233 this->index = reg.index;
234 this->writemask = WRITEMASK_XYZW;
235 this->cond_mask = COND_TR;
236 this->reladdr = reg.reladdr;
237 this->index2D = reg.index2D;
238 this->reladdr2 = reg.reladdr2;
239 this->has_index2 = reg.has_index2;
240 this->array_id = reg.array_id;
241 }
242
243 class glsl_to_tgsi_instruction : public exec_node {
244 public:
245 DECLARE_RALLOC_CXX_OPERATORS(glsl_to_tgsi_instruction)
246
247 unsigned op;
248 st_dst_reg dst[2];
249 st_src_reg src[4];
250 /** Pointer to the ir source this tree came from for debugging */
251 ir_instruction *ir;
252 GLboolean cond_update;
253 bool saturate;
254 st_src_reg sampler; /**< sampler register */
255 int sampler_array_size; /**< 1-based size of sampler array, 1 if not array */
256 int tex_target; /**< One of TEXTURE_*_INDEX */
257 glsl_base_type tex_type;
258 GLboolean tex_shadow;
259
260 st_src_reg tex_offsets[MAX_GLSL_TEXTURE_OFFSET];
261 unsigned tex_offset_num_offset;
262 int dead_mask; /**< Used in dead code elimination */
263
264 class function_entry *function; /* Set on TGSI_OPCODE_CAL or TGSI_OPCODE_BGNSUB */
265 const struct tgsi_opcode_info *info;
266 };
267
268 class variable_storage : public exec_node {
269 public:
270 variable_storage(ir_variable *var, gl_register_file file, int index,
271 unsigned array_id = 0)
272 : file(file), index(index), var(var), array_id(array_id)
273 {
274 /* empty */
275 }
276
277 gl_register_file file;
278 int index;
279 ir_variable *var; /* variable that maps to this, if any */
280 unsigned array_id;
281 };
282
283 class immediate_storage : public exec_node {
284 public:
285 immediate_storage(gl_constant_value *values, int size32, int type)
286 {
287 memcpy(this->values, values, size32 * sizeof(gl_constant_value));
288 this->size32 = size32;
289 this->type = type;
290 }
291
292 /* doubles are stored across 2 gl_constant_values */
293 gl_constant_value values[4];
294 int size32; /**< Number of 32-bit components (1-4) */
295 int type; /**< GL_DOUBLE, GL_FLOAT, GL_INT, GL_BOOL, or GL_UNSIGNED_INT */
296 };
297
298 class function_entry : public exec_node {
299 public:
300 ir_function_signature *sig;
301
302 /**
303 * identifier of this function signature used by the program.
304 *
305 * At the point that TGSI instructions for function calls are
306 * generated, we don't know the address of the first instruction of
307 * the function body. So we make the BranchTarget that is called a
308 * small integer and rewrite them during set_branchtargets().
309 */
310 int sig_id;
311
312 /**
313 * Pointer to first instruction of the function body.
314 *
315 * Set during function body emits after main() is processed.
316 */
317 glsl_to_tgsi_instruction *bgn_inst;
318
319 /**
320 * Index of the first instruction of the function body in actual TGSI.
321 *
322 * Set after conversion from glsl_to_tgsi_instruction to TGSI.
323 */
324 int inst;
325
326 /** Storage for the return value. */
327 st_src_reg return_reg;
328 };
329
330 static st_src_reg undef_src = st_src_reg(PROGRAM_UNDEFINED, 0, GLSL_TYPE_ERROR);
331 static st_dst_reg undef_dst = st_dst_reg(PROGRAM_UNDEFINED, SWIZZLE_NOOP, GLSL_TYPE_ERROR);
332
333 struct array_decl {
334 unsigned mesa_index;
335 unsigned array_id;
336 unsigned array_size;
337 };
338
339 struct rename_reg_pair {
340 int old_reg;
341 int new_reg;
342 };
343
344 struct glsl_to_tgsi_visitor : public ir_visitor {
345 public:
346 glsl_to_tgsi_visitor();
347 ~glsl_to_tgsi_visitor();
348
349 function_entry *current_function;
350
351 struct gl_context *ctx;
352 struct gl_program *prog;
353 struct gl_shader_program *shader_program;
354 struct gl_shader *shader;
355 struct gl_shader_compiler_options *options;
356
357 int next_temp;
358
359 unsigned *array_sizes;
360 unsigned max_num_arrays;
361 unsigned next_array;
362
363 struct array_decl input_arrays[PIPE_MAX_SHADER_INPUTS];
364 unsigned num_input_arrays;
365 struct array_decl output_arrays[PIPE_MAX_SHADER_OUTPUTS];
366 unsigned num_output_arrays;
367
368 int num_address_regs;
369 int samplers_used;
370 glsl_base_type sampler_types[PIPE_MAX_SAMPLERS];
371 int sampler_targets[PIPE_MAX_SAMPLERS]; /**< One of TGSI_TEXTURE_* */
372 bool indirect_addr_consts;
373 int wpos_transform_const;
374
375 int glsl_version;
376 bool native_integers;
377 bool have_sqrt;
378 bool have_fma;
379
380 variable_storage *find_variable_storage(ir_variable *var);
381
382 int add_constant(gl_register_file file, gl_constant_value values[8],
383 int size, int datatype, GLuint *swizzle_out);
384
385 function_entry *get_function_signature(ir_function_signature *sig);
386
387 st_src_reg get_temp(const glsl_type *type);
388 void reladdr_to_temp(ir_instruction *ir, st_src_reg *reg, int *num_reladdr);
389
390 st_src_reg st_src_reg_for_double(double val);
391 st_src_reg st_src_reg_for_float(float val);
392 st_src_reg st_src_reg_for_int(int val);
393 st_src_reg st_src_reg_for_type(int type, int val);
394
395 /**
396 * \name Visit methods
397 *
398 * As typical for the visitor pattern, there must be one \c visit method for
399 * each concrete subclass of \c ir_instruction. Virtual base classes within
400 * the hierarchy should not have \c visit methods.
401 */
402 /*@{*/
403 virtual void visit(ir_variable *);
404 virtual void visit(ir_loop *);
405 virtual void visit(ir_loop_jump *);
406 virtual void visit(ir_function_signature *);
407 virtual void visit(ir_function *);
408 virtual void visit(ir_expression *);
409 virtual void visit(ir_swizzle *);
410 virtual void visit(ir_dereference_variable *);
411 virtual void visit(ir_dereference_array *);
412 virtual void visit(ir_dereference_record *);
413 virtual void visit(ir_assignment *);
414 virtual void visit(ir_constant *);
415 virtual void visit(ir_call *);
416 virtual void visit(ir_return *);
417 virtual void visit(ir_discard *);
418 virtual void visit(ir_texture *);
419 virtual void visit(ir_if *);
420 virtual void visit(ir_emit_vertex *);
421 virtual void visit(ir_end_primitive *);
422 virtual void visit(ir_barrier *);
423 /*@}*/
424
425 st_src_reg result;
426
427 /** List of variable_storage */
428 exec_list variables;
429
430 /** List of immediate_storage */
431 exec_list immediates;
432 unsigned num_immediates;
433
434 /** List of function_entry */
435 exec_list function_signatures;
436 int next_signature_id;
437
438 /** List of glsl_to_tgsi_instruction */
439 exec_list instructions;
440
441 glsl_to_tgsi_instruction *emit_asm(ir_instruction *ir, unsigned op,
442 st_dst_reg dst = undef_dst,
443 st_src_reg src0 = undef_src,
444 st_src_reg src1 = undef_src,
445 st_src_reg src2 = undef_src,
446 st_src_reg src3 = undef_src);
447
448 glsl_to_tgsi_instruction *emit_asm(ir_instruction *ir, unsigned op,
449 st_dst_reg dst, st_dst_reg dst1,
450 st_src_reg src0 = undef_src,
451 st_src_reg src1 = undef_src,
452 st_src_reg src2 = undef_src,
453 st_src_reg src3 = undef_src);
454
455 unsigned get_opcode(ir_instruction *ir, unsigned op,
456 st_dst_reg dst,
457 st_src_reg src0, st_src_reg src1);
458
459 /**
460 * Emit the correct dot-product instruction for the type of arguments
461 */
462 glsl_to_tgsi_instruction *emit_dp(ir_instruction *ir,
463 st_dst_reg dst,
464 st_src_reg src0,
465 st_src_reg src1,
466 unsigned elements);
467
468 void emit_scalar(ir_instruction *ir, unsigned op,
469 st_dst_reg dst, st_src_reg src0);
470
471 void emit_scalar(ir_instruction *ir, unsigned op,
472 st_dst_reg dst, st_src_reg src0, st_src_reg src1);
473
474 void emit_arl(ir_instruction *ir, st_dst_reg dst, st_src_reg src0);
475
476 bool try_emit_mad(ir_expression *ir,
477 int mul_operand);
478 bool try_emit_mad_for_and_not(ir_expression *ir,
479 int mul_operand);
480
481 void emit_swz(ir_expression *ir);
482
483 bool process_move_condition(ir_rvalue *ir);
484
485 void simplify_cmp(void);
486
487 void rename_temp_registers(int num_renames, struct rename_reg_pair *renames);
488 void get_first_temp_read(int *first_reads);
489 void get_last_temp_read_first_temp_write(int *last_reads, int *first_writes);
490 void get_last_temp_write(int *last_writes);
491
492 void copy_propagate(void);
493 int eliminate_dead_code(void);
494
495 void merge_two_dsts(void);
496 void merge_registers(void);
497 void renumber_registers(void);
498
499 void emit_block_mov(ir_assignment *ir, const struct glsl_type *type,
500 st_dst_reg *l, st_src_reg *r,
501 st_src_reg *cond, bool cond_swap);
502
503 void *mem_ctx;
504 };
505
506 static st_dst_reg address_reg = st_dst_reg(PROGRAM_ADDRESS, WRITEMASK_X, GLSL_TYPE_FLOAT, 0);
507 static st_dst_reg address_reg2 = st_dst_reg(PROGRAM_ADDRESS, WRITEMASK_X, GLSL_TYPE_FLOAT, 1);
508 static st_dst_reg sampler_reladdr = st_dst_reg(PROGRAM_ADDRESS, WRITEMASK_X, GLSL_TYPE_FLOAT, 2);
509
510 static void
511 fail_link(struct gl_shader_program *prog, const char *fmt, ...) PRINTFLIKE(2, 3);
512
513 static void
514 fail_link(struct gl_shader_program *prog, const char *fmt, ...)
515 {
516 va_list args;
517 va_start(args, fmt);
518 ralloc_vasprintf_append(&prog->InfoLog, fmt, args);
519 va_end(args);
520
521 prog->LinkStatus = GL_FALSE;
522 }
523
524 static int
525 swizzle_for_size(int size)
526 {
527 static const int size_swizzles[4] = {
528 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_X, SWIZZLE_X, SWIZZLE_X),
529 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Y, SWIZZLE_Y),
530 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_Z),
531 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W),
532 };
533
534 assert((size >= 1) && (size <= 4));
535 return size_swizzles[size - 1];
536 }
537
538 static unsigned
539 num_inst_dst_regs(const glsl_to_tgsi_instruction *op)
540 {
541 return op->info->num_dst;
542 }
543
544 static unsigned
545 num_inst_src_regs(const glsl_to_tgsi_instruction *op)
546 {
547 return op->info->is_tex ? op->info->num_src - 1 : op->info->num_src;
548 }
549
550 glsl_to_tgsi_instruction *
551 glsl_to_tgsi_visitor::emit_asm(ir_instruction *ir, unsigned op,
552 st_dst_reg dst, st_dst_reg dst1,
553 st_src_reg src0, st_src_reg src1,
554 st_src_reg src2, st_src_reg src3)
555 {
556 glsl_to_tgsi_instruction *inst = new(mem_ctx) glsl_to_tgsi_instruction();
557 int num_reladdr = 0, i, j;
558
559 op = get_opcode(ir, op, dst, src0, src1);
560
561 /* If we have to do relative addressing, we want to load the ARL
562 * reg directly for one of the regs, and preload the other reladdr
563 * sources into temps.
564 */
565 num_reladdr += dst.reladdr != NULL || dst.reladdr2;
566 num_reladdr += dst1.reladdr != NULL || dst1.reladdr2;
567 num_reladdr += src0.reladdr != NULL || src0.reladdr2 != NULL;
568 num_reladdr += src1.reladdr != NULL || src1.reladdr2 != NULL;
569 num_reladdr += src2.reladdr != NULL || src2.reladdr2 != NULL;
570 num_reladdr += src3.reladdr != NULL || src3.reladdr2 != NULL;
571
572 reladdr_to_temp(ir, &src3, &num_reladdr);
573 reladdr_to_temp(ir, &src2, &num_reladdr);
574 reladdr_to_temp(ir, &src1, &num_reladdr);
575 reladdr_to_temp(ir, &src0, &num_reladdr);
576
577 if (dst.reladdr || dst.reladdr2) {
578 if (dst.reladdr)
579 emit_arl(ir, address_reg, *dst.reladdr);
580 if (dst.reladdr2)
581 emit_arl(ir, address_reg2, *dst.reladdr2);
582 num_reladdr--;
583 }
584 if (dst1.reladdr) {
585 emit_arl(ir, address_reg, *dst1.reladdr);
586 num_reladdr--;
587 }
588 assert(num_reladdr == 0);
589
590 inst->op = op;
591 inst->info = tgsi_get_opcode_info(op);
592 inst->dst[0] = dst;
593 inst->dst[1] = dst1;
594 inst->src[0] = src0;
595 inst->src[1] = src1;
596 inst->src[2] = src2;
597 inst->src[3] = src3;
598 inst->ir = ir;
599 inst->dead_mask = 0;
600 /* default to float, for paths where this is not initialized
601 * (since 0==UINT which is likely wrong):
602 */
603 inst->tex_type = GLSL_TYPE_FLOAT;
604
605 inst->function = NULL;
606
607 /* Update indirect addressing status used by TGSI */
608 if (dst.reladdr || dst.reladdr2) {
609 switch(dst.file) {
610 case PROGRAM_STATE_VAR:
611 case PROGRAM_CONSTANT:
612 case PROGRAM_UNIFORM:
613 this->indirect_addr_consts = true;
614 break;
615 case PROGRAM_IMMEDIATE:
616 assert(!"immediates should not have indirect addressing");
617 break;
618 default:
619 break;
620 }
621 }
622 else {
623 for (i = 0; i < 4; i++) {
624 if(inst->src[i].reladdr) {
625 switch(inst->src[i].file) {
626 case PROGRAM_STATE_VAR:
627 case PROGRAM_CONSTANT:
628 case PROGRAM_UNIFORM:
629 this->indirect_addr_consts = true;
630 break;
631 case PROGRAM_IMMEDIATE:
632 assert(!"immediates should not have indirect addressing");
633 break;
634 default:
635 break;
636 }
637 }
638 }
639 }
640
641 this->instructions.push_tail(inst);
642
643 /*
644 * This section contains the double processing.
645 * GLSL just represents doubles as single channel values,
646 * however most HW and TGSI represent doubles as pairs of register channels.
647 *
648 * so we have to fixup destination writemask/index and src swizzle/indexes.
649 * dest writemasks need to translate from single channel write mask
650 * to a dual-channel writemask, but also need to modify the index,
651 * if we are touching the Z,W fields in the pre-translated writemask.
652 *
653 * src channels have similiar index modifications along with swizzle
654 * changes to we pick the XY, ZW pairs from the correct index.
655 *
656 * GLSL [0].x -> TGSI [0].xy
657 * GLSL [0].y -> TGSI [0].zw
658 * GLSL [0].z -> TGSI [1].xy
659 * GLSL [0].w -> TGSI [1].zw
660 */
661 if (inst->dst[0].type == GLSL_TYPE_DOUBLE || inst->dst[1].type == GLSL_TYPE_DOUBLE ||
662 inst->src[0].type == GLSL_TYPE_DOUBLE) {
663 glsl_to_tgsi_instruction *dinst = NULL;
664 int initial_src_swz[4], initial_src_idx[4];
665 int initial_dst_idx[2], initial_dst_writemask[2];
666 /* select the writemask for dst0 or dst1 */
667 unsigned writemask = inst->dst[0].file == PROGRAM_UNDEFINED ? inst->dst[1].writemask : inst->dst[0].writemask;
668
669 /* copy out the writemask, index and swizzles for all src/dsts. */
670 for (j = 0; j < 2; j++) {
671 initial_dst_writemask[j] = inst->dst[j].writemask;
672 initial_dst_idx[j] = inst->dst[j].index;
673 }
674
675 for (j = 0; j < 4; j++) {
676 initial_src_swz[j] = inst->src[j].swizzle;
677 initial_src_idx[j] = inst->src[j].index;
678 }
679
680 /*
681 * scan all the components in the dst writemask
682 * generate an instruction for each of them if required.
683 */
684 while (writemask) {
685
686 int i = u_bit_scan(&writemask);
687
688 /* first time use previous instruction */
689 if (dinst == NULL) {
690 dinst = inst;
691 } else {
692 /* create a new instructions for subsequent attempts */
693 dinst = new(mem_ctx) glsl_to_tgsi_instruction();
694 *dinst = *inst;
695 dinst->next = NULL;
696 dinst->prev = NULL;
697 this->instructions.push_tail(dinst);
698 }
699
700 /* modify the destination if we are splitting */
701 for (j = 0; j < 2; j++) {
702 if (dinst->dst[j].type == GLSL_TYPE_DOUBLE) {
703 dinst->dst[j].writemask = (i & 1) ? WRITEMASK_ZW : WRITEMASK_XY;
704 dinst->dst[j].index = initial_dst_idx[j];
705 if (i > 1)
706 dinst->dst[j].index++;
707 } else {
708 /* if we aren't writing to a double, just get the bit of the initial writemask
709 for this channel */
710 dinst->dst[j].writemask = initial_dst_writemask[j] & (1 << i);
711 }
712 }
713
714 /* modify the src registers */
715 for (j = 0; j < 4; j++) {
716 int swz = GET_SWZ(initial_src_swz[j], i);
717
718 if (dinst->src[j].type == GLSL_TYPE_DOUBLE) {
719 dinst->src[j].index = initial_src_idx[j];
720 if (swz > 1) {
721 dinst->src[j].double_reg2 = true;
722 dinst->src[j].index++;
723 }
724
725 if (swz & 1)
726 dinst->src[j].swizzle = MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_Z, SWIZZLE_W);
727 else
728 dinst->src[j].swizzle = MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_X, SWIZZLE_Y);
729
730 } else {
731 /* some opcodes are special case in what they use as sources
732 - F2D is a float src0, DLDEXP is integer src1 */
733 if (op == TGSI_OPCODE_F2D ||
734 op == TGSI_OPCODE_DLDEXP ||
735 (op == TGSI_OPCODE_UCMP && dinst->dst[0].type == GLSL_TYPE_DOUBLE)) {
736 dinst->src[j].swizzle = MAKE_SWIZZLE4(swz, swz, swz, swz);
737 }
738 }
739 }
740 }
741 inst = dinst;
742 }
743
744
745 return inst;
746 }
747
748 glsl_to_tgsi_instruction *
749 glsl_to_tgsi_visitor::emit_asm(ir_instruction *ir, unsigned op,
750 st_dst_reg dst,
751 st_src_reg src0, st_src_reg src1,
752 st_src_reg src2, st_src_reg src3)
753 {
754 return emit_asm(ir, op, dst, undef_dst, src0, src1, src2, src3);
755 }
756
757 /**
758 * Determines whether to use an integer, unsigned integer, or float opcode
759 * based on the operands and input opcode, then emits the result.
760 */
761 unsigned
762 glsl_to_tgsi_visitor::get_opcode(ir_instruction *ir, unsigned op,
763 st_dst_reg dst,
764 st_src_reg src0, st_src_reg src1)
765 {
766 int type = GLSL_TYPE_FLOAT;
767
768 if (op == TGSI_OPCODE_MOV)
769 return op;
770
771 assert(src0.type != GLSL_TYPE_ARRAY);
772 assert(src0.type != GLSL_TYPE_STRUCT);
773 assert(src1.type != GLSL_TYPE_ARRAY);
774 assert(src1.type != GLSL_TYPE_STRUCT);
775
776 if (src0.type == GLSL_TYPE_DOUBLE || src1.type == GLSL_TYPE_DOUBLE)
777 type = GLSL_TYPE_DOUBLE;
778 else if (src0.type == GLSL_TYPE_FLOAT || src1.type == GLSL_TYPE_FLOAT)
779 type = GLSL_TYPE_FLOAT;
780 else if (native_integers)
781 type = src0.type == GLSL_TYPE_BOOL ? GLSL_TYPE_INT : src0.type;
782
783 #define case5(c, f, i, u, d) \
784 case TGSI_OPCODE_##c: \
785 if (type == GLSL_TYPE_DOUBLE) \
786 op = TGSI_OPCODE_##d; \
787 else if (type == GLSL_TYPE_INT) \
788 op = TGSI_OPCODE_##i; \
789 else if (type == GLSL_TYPE_UINT) \
790 op = TGSI_OPCODE_##u; \
791 else \
792 op = TGSI_OPCODE_##f; \
793 break;
794
795 #define case4(c, f, i, u) \
796 case TGSI_OPCODE_##c: \
797 if (type == GLSL_TYPE_INT) \
798 op = TGSI_OPCODE_##i; \
799 else if (type == GLSL_TYPE_UINT) \
800 op = TGSI_OPCODE_##u; \
801 else \
802 op = TGSI_OPCODE_##f; \
803 break;
804
805 #define case3(f, i, u) case4(f, f, i, u)
806 #define case4d(f, i, u, d) case5(f, f, i, u, d)
807 #define case3fid(f, i, d) case5(f, f, i, i, d)
808 #define case2fi(f, i) case4(f, f, i, i)
809 #define case2iu(i, u) case4(i, LAST, i, u)
810
811 #define casecomp(c, f, i, u, d) \
812 case TGSI_OPCODE_##c: \
813 if (type == GLSL_TYPE_DOUBLE) \
814 op = TGSI_OPCODE_##d; \
815 else if (type == GLSL_TYPE_INT || type == GLSL_TYPE_SUBROUTINE) \
816 op = TGSI_OPCODE_##i; \
817 else if (type == GLSL_TYPE_UINT) \
818 op = TGSI_OPCODE_##u; \
819 else if (native_integers) \
820 op = TGSI_OPCODE_##f; \
821 else \
822 op = TGSI_OPCODE_##c; \
823 break;
824
825 switch(op) {
826 case3fid(ADD, UADD, DADD);
827 case3fid(MUL, UMUL, DMUL);
828 case3fid(MAD, UMAD, DMAD);
829 case3fid(FMA, UMAD, DFMA);
830 case3(DIV, IDIV, UDIV);
831 case4d(MAX, IMAX, UMAX, DMAX);
832 case4d(MIN, IMIN, UMIN, DMIN);
833 case2iu(MOD, UMOD);
834
835 casecomp(SEQ, FSEQ, USEQ, USEQ, DSEQ);
836 casecomp(SNE, FSNE, USNE, USNE, DSNE);
837 casecomp(SGE, FSGE, ISGE, USGE, DSGE);
838 casecomp(SLT, FSLT, ISLT, USLT, DSLT);
839
840 case2iu(ISHR, USHR);
841
842 case3fid(SSG, ISSG, DSSG);
843 case3fid(ABS, IABS, DABS);
844
845 case2iu(IBFE, UBFE);
846 case2iu(IMSB, UMSB);
847 case2iu(IMUL_HI, UMUL_HI);
848
849 case3fid(SQRT, SQRT, DSQRT);
850
851 case3fid(RCP, RCP, DRCP);
852 case3fid(RSQ, RSQ, DRSQ);
853
854 case3fid(FRC, FRC, DFRAC);
855 case3fid(TRUNC, TRUNC, DTRUNC);
856 case3fid(CEIL, CEIL, DCEIL);
857 case3fid(FLR, FLR, DFLR);
858 case3fid(ROUND, ROUND, DROUND);
859
860 default: break;
861 }
862
863 assert(op != TGSI_OPCODE_LAST);
864 return op;
865 }
866
867 glsl_to_tgsi_instruction *
868 glsl_to_tgsi_visitor::emit_dp(ir_instruction *ir,
869 st_dst_reg dst, st_src_reg src0, st_src_reg src1,
870 unsigned elements)
871 {
872 static const unsigned dot_opcodes[] = {
873 TGSI_OPCODE_DP2, TGSI_OPCODE_DP3, TGSI_OPCODE_DP4
874 };
875
876 return emit_asm(ir, dot_opcodes[elements - 2], dst, src0, src1);
877 }
878
879 /**
880 * Emits TGSI scalar opcodes to produce unique answers across channels.
881 *
882 * Some TGSI opcodes are scalar-only, like ARB_fp/vp. The src X
883 * channel determines the result across all channels. So to do a vec4
884 * of this operation, we want to emit a scalar per source channel used
885 * to produce dest channels.
886 */
887 void
888 glsl_to_tgsi_visitor::emit_scalar(ir_instruction *ir, unsigned op,
889 st_dst_reg dst,
890 st_src_reg orig_src0, st_src_reg orig_src1)
891 {
892 int i, j;
893 int done_mask = ~dst.writemask;
894
895 /* TGSI RCP is a scalar operation splatting results to all channels,
896 * like ARB_fp/vp. So emit as many RCPs as necessary to cover our
897 * dst channels.
898 */
899 for (i = 0; i < 4; i++) {
900 GLuint this_mask = (1 << i);
901 st_src_reg src0 = orig_src0;
902 st_src_reg src1 = orig_src1;
903
904 if (done_mask & this_mask)
905 continue;
906
907 GLuint src0_swiz = GET_SWZ(src0.swizzle, i);
908 GLuint src1_swiz = GET_SWZ(src1.swizzle, i);
909 for (j = i + 1; j < 4; j++) {
910 /* If there is another enabled component in the destination that is
911 * derived from the same inputs, generate its value on this pass as
912 * well.
913 */
914 if (!(done_mask & (1 << j)) &&
915 GET_SWZ(src0.swizzle, j) == src0_swiz &&
916 GET_SWZ(src1.swizzle, j) == src1_swiz) {
917 this_mask |= (1 << j);
918 }
919 }
920 src0.swizzle = MAKE_SWIZZLE4(src0_swiz, src0_swiz,
921 src0_swiz, src0_swiz);
922 src1.swizzle = MAKE_SWIZZLE4(src1_swiz, src1_swiz,
923 src1_swiz, src1_swiz);
924
925 dst.writemask = this_mask;
926 emit_asm(ir, op, dst, src0, src1);
927 done_mask |= this_mask;
928 }
929 }
930
931 void
932 glsl_to_tgsi_visitor::emit_scalar(ir_instruction *ir, unsigned op,
933 st_dst_reg dst, st_src_reg src0)
934 {
935 st_src_reg undef = undef_src;
936
937 undef.swizzle = SWIZZLE_XXXX;
938
939 emit_scalar(ir, op, dst, src0, undef);
940 }
941
942 void
943 glsl_to_tgsi_visitor::emit_arl(ir_instruction *ir,
944 st_dst_reg dst, st_src_reg src0)
945 {
946 int op = TGSI_OPCODE_ARL;
947
948 if (src0.type == GLSL_TYPE_INT || src0.type == GLSL_TYPE_UINT)
949 op = TGSI_OPCODE_UARL;
950
951 assert(dst.file == PROGRAM_ADDRESS);
952 if (dst.index >= this->num_address_regs)
953 this->num_address_regs = dst.index + 1;
954
955 emit_asm(NULL, op, dst, src0);
956 }
957
958 int
959 glsl_to_tgsi_visitor::add_constant(gl_register_file file,
960 gl_constant_value values[8], int size, int datatype,
961 GLuint *swizzle_out)
962 {
963 if (file == PROGRAM_CONSTANT) {
964 return _mesa_add_typed_unnamed_constant(this->prog->Parameters, values,
965 size, datatype, swizzle_out);
966 }
967
968 assert(file == PROGRAM_IMMEDIATE);
969
970 int index = 0;
971 immediate_storage *entry;
972 int size32 = size * (datatype == GL_DOUBLE ? 2 : 1);
973 int i;
974
975 /* Search immediate storage to see if we already have an identical
976 * immediate that we can use instead of adding a duplicate entry.
977 */
978 foreach_in_list(immediate_storage, entry, &this->immediates) {
979 immediate_storage *tmp = entry;
980
981 for (i = 0; i * 4 < size32; i++) {
982 int slot_size = MIN2(size32 - (i * 4), 4);
983 if (tmp->type != datatype || tmp->size32 != slot_size)
984 break;
985 if (memcmp(tmp->values, &values[i * 4],
986 slot_size * sizeof(gl_constant_value)))
987 break;
988
989 /* Everything matches, keep going until the full size is matched */
990 tmp = (immediate_storage *)tmp->next;
991 }
992
993 /* The full value matched */
994 if (i * 4 >= size32)
995 return index;
996
997 index++;
998 }
999
1000 for (i = 0; i * 4 < size32; i++) {
1001 int slot_size = MIN2(size32 - (i * 4), 4);
1002 /* Add this immediate to the list. */
1003 entry = new(mem_ctx) immediate_storage(&values[i * 4], slot_size, datatype);
1004 this->immediates.push_tail(entry);
1005 this->num_immediates++;
1006 }
1007 return index;
1008 }
1009
1010 st_src_reg
1011 glsl_to_tgsi_visitor::st_src_reg_for_float(float val)
1012 {
1013 st_src_reg src(PROGRAM_IMMEDIATE, -1, GLSL_TYPE_FLOAT);
1014 union gl_constant_value uval;
1015
1016 uval.f = val;
1017 src.index = add_constant(src.file, &uval, 1, GL_FLOAT, &src.swizzle);
1018
1019 return src;
1020 }
1021
1022 st_src_reg
1023 glsl_to_tgsi_visitor::st_src_reg_for_double(double val)
1024 {
1025 st_src_reg src(PROGRAM_IMMEDIATE, -1, GLSL_TYPE_DOUBLE);
1026 union gl_constant_value uval[2];
1027
1028 uval[0].u = *(uint32_t *)&val;
1029 uval[1].u = *(((uint32_t *)&val) + 1);
1030 src.index = add_constant(src.file, uval, 1, GL_DOUBLE, &src.swizzle);
1031
1032 return src;
1033 }
1034
1035 st_src_reg
1036 glsl_to_tgsi_visitor::st_src_reg_for_int(int val)
1037 {
1038 st_src_reg src(PROGRAM_IMMEDIATE, -1, GLSL_TYPE_INT);
1039 union gl_constant_value uval;
1040
1041 assert(native_integers);
1042
1043 uval.i = val;
1044 src.index = add_constant(src.file, &uval, 1, GL_INT, &src.swizzle);
1045
1046 return src;
1047 }
1048
1049 st_src_reg
1050 glsl_to_tgsi_visitor::st_src_reg_for_type(int type, int val)
1051 {
1052 if (native_integers)
1053 return type == GLSL_TYPE_FLOAT ? st_src_reg_for_float(val) :
1054 st_src_reg_for_int(val);
1055 else
1056 return st_src_reg_for_float(val);
1057 }
1058
1059 static int
1060 type_size(const struct glsl_type *type)
1061 {
1062 unsigned int i;
1063 int size;
1064
1065 switch (type->base_type) {
1066 case GLSL_TYPE_UINT:
1067 case GLSL_TYPE_INT:
1068 case GLSL_TYPE_FLOAT:
1069 case GLSL_TYPE_BOOL:
1070 if (type->is_matrix()) {
1071 return type->matrix_columns;
1072 } else {
1073 /* Regardless of size of vector, it gets a vec4. This is bad
1074 * packing for things like floats, but otherwise arrays become a
1075 * mess. Hopefully a later pass over the code can pack scalars
1076 * down if appropriate.
1077 */
1078 return 1;
1079 }
1080 break;
1081 case GLSL_TYPE_DOUBLE:
1082 if (type->is_matrix()) {
1083 if (type->vector_elements <= 2)
1084 return type->matrix_columns;
1085 else
1086 return type->matrix_columns * 2;
1087 } else {
1088 /* For doubles if we have a double or dvec2 they fit in one
1089 * vec4, else they need 2 vec4s.
1090 */
1091 if (type->vector_elements <= 2)
1092 return 1;
1093 else
1094 return 2;
1095 }
1096 break;
1097 case GLSL_TYPE_ARRAY:
1098 assert(type->length > 0);
1099 return type_size(type->fields.array) * type->length;
1100 case GLSL_TYPE_STRUCT:
1101 size = 0;
1102 for (i = 0; i < type->length; i++) {
1103 size += type_size(type->fields.structure[i].type);
1104 }
1105 return size;
1106 case GLSL_TYPE_SAMPLER:
1107 case GLSL_TYPE_IMAGE:
1108 case GLSL_TYPE_SUBROUTINE:
1109 /* Samplers take up one slot in UNIFORMS[], but they're baked in
1110 * at link time.
1111 */
1112 return 1;
1113 case GLSL_TYPE_ATOMIC_UINT:
1114 case GLSL_TYPE_INTERFACE:
1115 case GLSL_TYPE_VOID:
1116 case GLSL_TYPE_ERROR:
1117 assert(!"Invalid type in type_size");
1118 break;
1119 }
1120 return 0;
1121 }
1122
1123
1124 /**
1125 * If the given GLSL type is an array or matrix or a structure containing
1126 * an array/matrix member, return true. Else return false.
1127 *
1128 * This is used to determine which kind of temp storage (PROGRAM_TEMPORARY
1129 * or PROGRAM_ARRAY) should be used for variables of this type. Anytime
1130 * we have an array that might be indexed with a variable, we need to use
1131 * the later storage type.
1132 */
1133 static bool
1134 type_has_array_or_matrix(const glsl_type *type)
1135 {
1136 if (type->is_array() || type->is_matrix())
1137 return true;
1138
1139 if (type->is_record()) {
1140 for (unsigned i = 0; i < type->length; i++) {
1141 if (type_has_array_or_matrix(type->fields.structure[i].type)) {
1142 return true;
1143 }
1144 }
1145 }
1146
1147 return false;
1148 }
1149
1150
1151 /**
1152 * In the initial pass of codegen, we assign temporary numbers to
1153 * intermediate results. (not SSA -- variable assignments will reuse
1154 * storage).
1155 */
1156 st_src_reg
1157 glsl_to_tgsi_visitor::get_temp(const glsl_type *type)
1158 {
1159 st_src_reg src;
1160
1161 src.type = native_integers ? type->base_type : GLSL_TYPE_FLOAT;
1162 src.reladdr = NULL;
1163 src.negate = 0;
1164
1165 if (!options->EmitNoIndirectTemp && type_has_array_or_matrix(type)) {
1166 if (next_array >= max_num_arrays) {
1167 max_num_arrays += 32;
1168 array_sizes = (unsigned*)
1169 realloc(array_sizes, sizeof(array_sizes[0]) * max_num_arrays);
1170 }
1171
1172 src.file = PROGRAM_ARRAY;
1173 src.index = next_array << 16 | 0x8000;
1174 array_sizes[next_array] = type_size(type);
1175 ++next_array;
1176
1177 } else {
1178 src.file = PROGRAM_TEMPORARY;
1179 src.index = next_temp;
1180 next_temp += type_size(type);
1181 }
1182
1183 if (type->is_array() || type->is_record()) {
1184 src.swizzle = SWIZZLE_NOOP;
1185 } else {
1186 src.swizzle = swizzle_for_size(type->vector_elements);
1187 }
1188
1189 return src;
1190 }
1191
1192 variable_storage *
1193 glsl_to_tgsi_visitor::find_variable_storage(ir_variable *var)
1194 {
1195
1196 foreach_in_list(variable_storage, entry, &this->variables) {
1197 if (entry->var == var)
1198 return entry;
1199 }
1200
1201 return NULL;
1202 }
1203
1204 void
1205 glsl_to_tgsi_visitor::visit(ir_variable *ir)
1206 {
1207 if (strcmp(ir->name, "gl_FragCoord") == 0) {
1208 struct gl_fragment_program *fp = (struct gl_fragment_program *)this->prog;
1209
1210 fp->OriginUpperLeft = ir->data.origin_upper_left;
1211 fp->PixelCenterInteger = ir->data.pixel_center_integer;
1212 }
1213
1214 if (ir->data.mode == ir_var_uniform && strncmp(ir->name, "gl_", 3) == 0) {
1215 unsigned int i;
1216 const ir_state_slot *const slots = ir->get_state_slots();
1217 assert(slots != NULL);
1218
1219 /* Check if this statevar's setup in the STATE file exactly
1220 * matches how we'll want to reference it as a
1221 * struct/array/whatever. If not, then we need to move it into
1222 * temporary storage and hope that it'll get copy-propagated
1223 * out.
1224 */
1225 for (i = 0; i < ir->get_num_state_slots(); i++) {
1226 if (slots[i].swizzle != SWIZZLE_XYZW) {
1227 break;
1228 }
1229 }
1230
1231 variable_storage *storage;
1232 st_dst_reg dst;
1233 if (i == ir->get_num_state_slots()) {
1234 /* We'll set the index later. */
1235 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
1236 this->variables.push_tail(storage);
1237
1238 dst = undef_dst;
1239 } else {
1240 /* The variable_storage constructor allocates slots based on the size
1241 * of the type. However, this had better match the number of state
1242 * elements that we're going to copy into the new temporary.
1243 */
1244 assert((int) ir->get_num_state_slots() == type_size(ir->type));
1245
1246 dst = st_dst_reg(get_temp(ir->type));
1247
1248 storage = new(mem_ctx) variable_storage(ir, dst.file, dst.index);
1249
1250 this->variables.push_tail(storage);
1251 }
1252
1253
1254 for (unsigned int i = 0; i < ir->get_num_state_slots(); i++) {
1255 int index = _mesa_add_state_reference(this->prog->Parameters,
1256 (gl_state_index *)slots[i].tokens);
1257
1258 if (storage->file == PROGRAM_STATE_VAR) {
1259 if (storage->index == -1) {
1260 storage->index = index;
1261 } else {
1262 assert(index == storage->index + (int)i);
1263 }
1264 } else {
1265 /* We use GLSL_TYPE_FLOAT here regardless of the actual type of
1266 * the data being moved since MOV does not care about the type of
1267 * data it is moving, and we don't want to declare registers with
1268 * array or struct types.
1269 */
1270 st_src_reg src(PROGRAM_STATE_VAR, index, GLSL_TYPE_FLOAT);
1271 src.swizzle = slots[i].swizzle;
1272 emit_asm(ir, TGSI_OPCODE_MOV, dst, src);
1273 /* even a float takes up a whole vec4 reg in a struct/array. */
1274 dst.index++;
1275 }
1276 }
1277
1278 if (storage->file == PROGRAM_TEMPORARY &&
1279 dst.index != storage->index + (int) ir->get_num_state_slots()) {
1280 fail_link(this->shader_program,
1281 "failed to load builtin uniform `%s' (%d/%d regs loaded)\n",
1282 ir->name, dst.index - storage->index,
1283 type_size(ir->type));
1284 }
1285 }
1286 }
1287
1288 void
1289 glsl_to_tgsi_visitor::visit(ir_loop *ir)
1290 {
1291 emit_asm(NULL, TGSI_OPCODE_BGNLOOP);
1292
1293 visit_exec_list(&ir->body_instructions, this);
1294
1295 emit_asm(NULL, TGSI_OPCODE_ENDLOOP);
1296 }
1297
1298 void
1299 glsl_to_tgsi_visitor::visit(ir_loop_jump *ir)
1300 {
1301 switch (ir->mode) {
1302 case ir_loop_jump::jump_break:
1303 emit_asm(NULL, TGSI_OPCODE_BRK);
1304 break;
1305 case ir_loop_jump::jump_continue:
1306 emit_asm(NULL, TGSI_OPCODE_CONT);
1307 break;
1308 }
1309 }
1310
1311
1312 void
1313 glsl_to_tgsi_visitor::visit(ir_function_signature *ir)
1314 {
1315 assert(0);
1316 (void)ir;
1317 }
1318
1319 void
1320 glsl_to_tgsi_visitor::visit(ir_function *ir)
1321 {
1322 /* Ignore function bodies other than main() -- we shouldn't see calls to
1323 * them since they should all be inlined before we get to glsl_to_tgsi.
1324 */
1325 if (strcmp(ir->name, "main") == 0) {
1326 const ir_function_signature *sig;
1327 exec_list empty;
1328
1329 sig = ir->matching_signature(NULL, &empty, false);
1330
1331 assert(sig);
1332
1333 foreach_in_list(ir_instruction, ir, &sig->body) {
1334 ir->accept(this);
1335 }
1336 }
1337 }
1338
1339 bool
1340 glsl_to_tgsi_visitor::try_emit_mad(ir_expression *ir, int mul_operand)
1341 {
1342 int nonmul_operand = 1 - mul_operand;
1343 st_src_reg a, b, c;
1344 st_dst_reg result_dst;
1345
1346 ir_expression *expr = ir->operands[mul_operand]->as_expression();
1347 if (!expr || expr->operation != ir_binop_mul)
1348 return false;
1349
1350 expr->operands[0]->accept(this);
1351 a = this->result;
1352 expr->operands[1]->accept(this);
1353 b = this->result;
1354 ir->operands[nonmul_operand]->accept(this);
1355 c = this->result;
1356
1357 this->result = get_temp(ir->type);
1358 result_dst = st_dst_reg(this->result);
1359 result_dst.writemask = (1 << ir->type->vector_elements) - 1;
1360 emit_asm(ir, TGSI_OPCODE_MAD, result_dst, a, b, c);
1361
1362 return true;
1363 }
1364
1365 /**
1366 * Emit MAD(a, -b, a) instead of AND(a, NOT(b))
1367 *
1368 * The logic values are 1.0 for true and 0.0 for false. Logical-and is
1369 * implemented using multiplication, and logical-or is implemented using
1370 * addition. Logical-not can be implemented as (true - x), or (1.0 - x).
1371 * As result, the logical expression (a & !b) can be rewritten as:
1372 *
1373 * - a * !b
1374 * - a * (1 - b)
1375 * - (a * 1) - (a * b)
1376 * - a + -(a * b)
1377 * - a + (a * -b)
1378 *
1379 * This final expression can be implemented as a single MAD(a, -b, a)
1380 * instruction.
1381 */
1382 bool
1383 glsl_to_tgsi_visitor::try_emit_mad_for_and_not(ir_expression *ir, int try_operand)
1384 {
1385 const int other_operand = 1 - try_operand;
1386 st_src_reg a, b;
1387
1388 ir_expression *expr = ir->operands[try_operand]->as_expression();
1389 if (!expr || expr->operation != ir_unop_logic_not)
1390 return false;
1391
1392 ir->operands[other_operand]->accept(this);
1393 a = this->result;
1394 expr->operands[0]->accept(this);
1395 b = this->result;
1396
1397 b.negate = ~b.negate;
1398
1399 this->result = get_temp(ir->type);
1400 emit_asm(ir, TGSI_OPCODE_MAD, st_dst_reg(this->result), a, b, a);
1401
1402 return true;
1403 }
1404
1405 void
1406 glsl_to_tgsi_visitor::reladdr_to_temp(ir_instruction *ir,
1407 st_src_reg *reg, int *num_reladdr)
1408 {
1409 if (!reg->reladdr && !reg->reladdr2)
1410 return;
1411
1412 if (reg->reladdr) emit_arl(ir, address_reg, *reg->reladdr);
1413 if (reg->reladdr2) emit_arl(ir, address_reg2, *reg->reladdr2);
1414
1415 if (*num_reladdr != 1) {
1416 st_src_reg temp = get_temp(glsl_type::vec4_type);
1417
1418 emit_asm(ir, TGSI_OPCODE_MOV, st_dst_reg(temp), *reg);
1419 *reg = temp;
1420 }
1421
1422 (*num_reladdr)--;
1423 }
1424
1425 void
1426 glsl_to_tgsi_visitor::visit(ir_expression *ir)
1427 {
1428 unsigned int operand;
1429 st_src_reg op[ARRAY_SIZE(ir->operands)];
1430 st_src_reg result_src;
1431 st_dst_reg result_dst;
1432
1433 /* Quick peephole: Emit MAD(a, b, c) instead of ADD(MUL(a, b), c)
1434 */
1435 if (ir->operation == ir_binop_add) {
1436 if (try_emit_mad(ir, 1))
1437 return;
1438 if (try_emit_mad(ir, 0))
1439 return;
1440 }
1441
1442 /* Quick peephole: Emit OPCODE_MAD(-a, -b, a) instead of AND(a, NOT(b))
1443 */
1444 if (!native_integers && ir->operation == ir_binop_logic_and) {
1445 if (try_emit_mad_for_and_not(ir, 1))
1446 return;
1447 if (try_emit_mad_for_and_not(ir, 0))
1448 return;
1449 }
1450
1451 if (ir->operation == ir_quadop_vector)
1452 assert(!"ir_quadop_vector should have been lowered");
1453
1454 for (operand = 0; operand < ir->get_num_operands(); operand++) {
1455 this->result.file = PROGRAM_UNDEFINED;
1456 ir->operands[operand]->accept(this);
1457 if (this->result.file == PROGRAM_UNDEFINED) {
1458 printf("Failed to get tree for expression operand:\n");
1459 ir->operands[operand]->print();
1460 printf("\n");
1461 exit(1);
1462 }
1463 op[operand] = this->result;
1464
1465 /* Matrix expression operands should have been broken down to vector
1466 * operations already.
1467 */
1468 assert(!ir->operands[operand]->type->is_matrix());
1469 }
1470
1471 int vector_elements = ir->operands[0]->type->vector_elements;
1472 if (ir->operands[1]) {
1473 vector_elements = MAX2(vector_elements,
1474 ir->operands[1]->type->vector_elements);
1475 }
1476
1477 this->result.file = PROGRAM_UNDEFINED;
1478
1479 /* Storage for our result. Ideally for an assignment we'd be using
1480 * the actual storage for the result here, instead.
1481 */
1482 result_src = get_temp(ir->type);
1483 /* convenience for the emit functions below. */
1484 result_dst = st_dst_reg(result_src);
1485 /* Limit writes to the channels that will be used by result_src later.
1486 * This does limit this temp's use as a temporary for multi-instruction
1487 * sequences.
1488 */
1489 result_dst.writemask = (1 << ir->type->vector_elements) - 1;
1490
1491 switch (ir->operation) {
1492 case ir_unop_logic_not:
1493 if (result_dst.type != GLSL_TYPE_FLOAT)
1494 emit_asm(ir, TGSI_OPCODE_NOT, result_dst, op[0]);
1495 else {
1496 /* Previously 'SEQ dst, src, 0.0' was used for this. However, many
1497 * older GPUs implement SEQ using multiple instructions (i915 uses two
1498 * SGE instructions and a MUL instruction). Since our logic values are
1499 * 0.0 and 1.0, 1-x also implements !x.
1500 */
1501 op[0].negate = ~op[0].negate;
1502 emit_asm(ir, TGSI_OPCODE_ADD, result_dst, op[0], st_src_reg_for_float(1.0));
1503 }
1504 break;
1505 case ir_unop_neg:
1506 if (result_dst.type == GLSL_TYPE_INT || result_dst.type == GLSL_TYPE_UINT)
1507 emit_asm(ir, TGSI_OPCODE_INEG, result_dst, op[0]);
1508 else if (result_dst.type == GLSL_TYPE_DOUBLE)
1509 emit_asm(ir, TGSI_OPCODE_DNEG, result_dst, op[0]);
1510 else {
1511 op[0].negate = ~op[0].negate;
1512 result_src = op[0];
1513 }
1514 break;
1515 case ir_unop_subroutine_to_int:
1516 emit_asm(ir, TGSI_OPCODE_MOV, result_dst, op[0]);
1517 break;
1518 case ir_unop_abs:
1519 emit_asm(ir, TGSI_OPCODE_ABS, result_dst, op[0]);
1520 break;
1521 case ir_unop_sign:
1522 emit_asm(ir, TGSI_OPCODE_SSG, result_dst, op[0]);
1523 break;
1524 case ir_unop_rcp:
1525 emit_scalar(ir, TGSI_OPCODE_RCP, result_dst, op[0]);
1526 break;
1527
1528 case ir_unop_exp2:
1529 emit_scalar(ir, TGSI_OPCODE_EX2, result_dst, op[0]);
1530 break;
1531 case ir_unop_exp:
1532 case ir_unop_log:
1533 assert(!"not reached: should be handled by ir_explog_to_explog2");
1534 break;
1535 case ir_unop_log2:
1536 emit_scalar(ir, TGSI_OPCODE_LG2, result_dst, op[0]);
1537 break;
1538 case ir_unop_sin:
1539 emit_scalar(ir, TGSI_OPCODE_SIN, result_dst, op[0]);
1540 break;
1541 case ir_unop_cos:
1542 emit_scalar(ir, TGSI_OPCODE_COS, result_dst, op[0]);
1543 break;
1544 case ir_unop_saturate: {
1545 glsl_to_tgsi_instruction *inst;
1546 inst = emit_asm(ir, TGSI_OPCODE_MOV, result_dst, op[0]);
1547 inst->saturate = true;
1548 break;
1549 }
1550
1551 case ir_unop_dFdx:
1552 case ir_unop_dFdx_coarse:
1553 emit_asm(ir, TGSI_OPCODE_DDX, result_dst, op[0]);
1554 break;
1555 case ir_unop_dFdx_fine:
1556 emit_asm(ir, TGSI_OPCODE_DDX_FINE, result_dst, op[0]);
1557 break;
1558 case ir_unop_dFdy:
1559 case ir_unop_dFdy_coarse:
1560 case ir_unop_dFdy_fine:
1561 {
1562 /* The X component contains 1 or -1 depending on whether the framebuffer
1563 * is a FBO or the window system buffer, respectively.
1564 * It is then multiplied with the source operand of DDY.
1565 */
1566 static const gl_state_index transform_y_state[STATE_LENGTH]
1567 = { STATE_INTERNAL, STATE_FB_WPOS_Y_TRANSFORM };
1568
1569 unsigned transform_y_index =
1570 _mesa_add_state_reference(this->prog->Parameters,
1571 transform_y_state);
1572
1573 st_src_reg transform_y = st_src_reg(PROGRAM_STATE_VAR,
1574 transform_y_index,
1575 glsl_type::vec4_type);
1576 transform_y.swizzle = SWIZZLE_XXXX;
1577
1578 st_src_reg temp = get_temp(glsl_type::vec4_type);
1579
1580 emit_asm(ir, TGSI_OPCODE_MUL, st_dst_reg(temp), transform_y, op[0]);
1581 emit_asm(ir, ir->operation == ir_unop_dFdy_fine ?
1582 TGSI_OPCODE_DDY_FINE : TGSI_OPCODE_DDY, result_dst, temp);
1583 break;
1584 }
1585
1586 case ir_unop_frexp_sig:
1587 emit_asm(ir, TGSI_OPCODE_DFRACEXP, result_dst, undef_dst, op[0]);
1588 break;
1589
1590 case ir_unop_frexp_exp:
1591 emit_asm(ir, TGSI_OPCODE_DFRACEXP, undef_dst, result_dst, op[0]);
1592 break;
1593
1594 case ir_unop_noise: {
1595 /* At some point, a motivated person could add a better
1596 * implementation of noise. Currently not even the nvidia
1597 * binary drivers do anything more than this. In any case, the
1598 * place to do this is in the GL state tracker, not the poor
1599 * driver.
1600 */
1601 emit_asm(ir, TGSI_OPCODE_MOV, result_dst, st_src_reg_for_float(0.5));
1602 break;
1603 }
1604
1605 case ir_binop_add:
1606 emit_asm(ir, TGSI_OPCODE_ADD, result_dst, op[0], op[1]);
1607 break;
1608 case ir_binop_sub:
1609 emit_asm(ir, TGSI_OPCODE_SUB, result_dst, op[0], op[1]);
1610 break;
1611
1612 case ir_binop_mul:
1613 emit_asm(ir, TGSI_OPCODE_MUL, result_dst, op[0], op[1]);
1614 break;
1615 case ir_binop_div:
1616 if (result_dst.type == GLSL_TYPE_FLOAT || result_dst.type == GLSL_TYPE_DOUBLE)
1617 assert(!"not reached: should be handled by ir_div_to_mul_rcp");
1618 else
1619 emit_asm(ir, TGSI_OPCODE_DIV, result_dst, op[0], op[1]);
1620 break;
1621 case ir_binop_mod:
1622 if (result_dst.type == GLSL_TYPE_FLOAT)
1623 assert(!"ir_binop_mod should have been converted to b * fract(a/b)");
1624 else
1625 emit_asm(ir, TGSI_OPCODE_MOD, result_dst, op[0], op[1]);
1626 break;
1627
1628 case ir_binop_less:
1629 emit_asm(ir, TGSI_OPCODE_SLT, result_dst, op[0], op[1]);
1630 break;
1631 case ir_binop_greater:
1632 emit_asm(ir, TGSI_OPCODE_SLT, result_dst, op[1], op[0]);
1633 break;
1634 case ir_binop_lequal:
1635 emit_asm(ir, TGSI_OPCODE_SGE, result_dst, op[1], op[0]);
1636 break;
1637 case ir_binop_gequal:
1638 emit_asm(ir, TGSI_OPCODE_SGE, result_dst, op[0], op[1]);
1639 break;
1640 case ir_binop_equal:
1641 emit_asm(ir, TGSI_OPCODE_SEQ, result_dst, op[0], op[1]);
1642 break;
1643 case ir_binop_nequal:
1644 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], op[1]);
1645 break;
1646 case ir_binop_all_equal:
1647 /* "==" operator producing a scalar boolean. */
1648 if (ir->operands[0]->type->is_vector() ||
1649 ir->operands[1]->type->is_vector()) {
1650 st_src_reg temp = get_temp(native_integers ?
1651 glsl_type::uvec4_type :
1652 glsl_type::vec4_type);
1653
1654 if (native_integers) {
1655 st_dst_reg temp_dst = st_dst_reg(temp);
1656 st_src_reg temp1 = st_src_reg(temp), temp2 = st_src_reg(temp);
1657
1658 emit_asm(ir, TGSI_OPCODE_SEQ, st_dst_reg(temp), op[0], op[1]);
1659
1660 /* Emit 1-3 AND operations to combine the SEQ results. */
1661 switch (ir->operands[0]->type->vector_elements) {
1662 case 2:
1663 break;
1664 case 3:
1665 temp_dst.writemask = WRITEMASK_Y;
1666 temp1.swizzle = SWIZZLE_YYYY;
1667 temp2.swizzle = SWIZZLE_ZZZZ;
1668 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2);
1669 break;
1670 case 4:
1671 temp_dst.writemask = WRITEMASK_X;
1672 temp1.swizzle = SWIZZLE_XXXX;
1673 temp2.swizzle = SWIZZLE_YYYY;
1674 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2);
1675 temp_dst.writemask = WRITEMASK_Y;
1676 temp1.swizzle = SWIZZLE_ZZZZ;
1677 temp2.swizzle = SWIZZLE_WWWW;
1678 emit_asm(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2);
1679 }
1680
1681 temp1.swizzle = SWIZZLE_XXXX;
1682 temp2.swizzle = SWIZZLE_YYYY;
1683 emit_asm(ir, TGSI_OPCODE_AND, result_dst, temp1, temp2);
1684 } else {
1685 emit_asm(ir, TGSI_OPCODE_SNE, st_dst_reg(temp), op[0], op[1]);
1686
1687 /* After the dot-product, the value will be an integer on the
1688 * range [0,4]. Zero becomes 1.0, and positive values become zero.
1689 */
1690 emit_dp(ir, result_dst, temp, temp, vector_elements);
1691
1692 /* Negating the result of the dot-product gives values on the range
1693 * [-4, 0]. Zero becomes 1.0, and negative values become zero.
1694 * This is achieved using SGE.
1695 */
1696 st_src_reg sge_src = result_src;
1697 sge_src.negate = ~sge_src.negate;
1698 emit_asm(ir, TGSI_OPCODE_SGE, result_dst, sge_src, st_src_reg_for_float(0.0));
1699 }
1700 } else {
1701 emit_asm(ir, TGSI_OPCODE_SEQ, result_dst, op[0], op[1]);
1702 }
1703 break;
1704 case ir_binop_any_nequal:
1705 /* "!=" operator producing a scalar boolean. */
1706 if (ir->operands[0]->type->is_vector() ||
1707 ir->operands[1]->type->is_vector()) {
1708 st_src_reg temp = get_temp(native_integers ?
1709 glsl_type::uvec4_type :
1710 glsl_type::vec4_type);
1711 emit_asm(ir, TGSI_OPCODE_SNE, st_dst_reg(temp), op[0], op[1]);
1712
1713 if (native_integers) {
1714 st_dst_reg temp_dst = st_dst_reg(temp);
1715 st_src_reg temp1 = st_src_reg(temp), temp2 = st_src_reg(temp);
1716
1717 /* Emit 1-3 OR operations to combine the SNE results. */
1718 switch (ir->operands[0]->type->vector_elements) {
1719 case 2:
1720 break;
1721 case 3:
1722 temp_dst.writemask = WRITEMASK_Y;
1723 temp1.swizzle = SWIZZLE_YYYY;
1724 temp2.swizzle = SWIZZLE_ZZZZ;
1725 emit_asm(ir, TGSI_OPCODE_OR, temp_dst, temp1, temp2);
1726 break;
1727 case 4:
1728 temp_dst.writemask = WRITEMASK_X;
1729 temp1.swizzle = SWIZZLE_XXXX;
1730 temp2.swizzle = SWIZZLE_YYYY;
1731 emit_asm(ir, TGSI_OPCODE_OR, temp_dst, temp1, temp2);
1732 temp_dst.writemask = WRITEMASK_Y;
1733 temp1.swizzle = SWIZZLE_ZZZZ;
1734 temp2.swizzle = SWIZZLE_WWWW;
1735 emit_asm(ir, TGSI_OPCODE_OR, temp_dst, temp1, temp2);
1736 }
1737
1738 temp1.swizzle = SWIZZLE_XXXX;
1739 temp2.swizzle = SWIZZLE_YYYY;
1740 emit_asm(ir, TGSI_OPCODE_OR, result_dst, temp1, temp2);
1741 } else {
1742 /* After the dot-product, the value will be an integer on the
1743 * range [0,4]. Zero stays zero, and positive values become 1.0.
1744 */
1745 glsl_to_tgsi_instruction *const dp =
1746 emit_dp(ir, result_dst, temp, temp, vector_elements);
1747 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1748 /* The clamping to [0,1] can be done for free in the fragment
1749 * shader with a saturate.
1750 */
1751 dp->saturate = true;
1752 } else {
1753 /* Negating the result of the dot-product gives values on the range
1754 * [-4, 0]. Zero stays zero, and negative values become 1.0. This
1755 * achieved using SLT.
1756 */
1757 st_src_reg slt_src = result_src;
1758 slt_src.negate = ~slt_src.negate;
1759 emit_asm(ir, TGSI_OPCODE_SLT, result_dst, slt_src, st_src_reg_for_float(0.0));
1760 }
1761 }
1762 } else {
1763 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], op[1]);
1764 }
1765 break;
1766
1767 case ir_unop_any: {
1768 assert(ir->operands[0]->type->is_vector());
1769
1770 if (native_integers) {
1771 int dst_swizzle = 0, op0_swizzle, i;
1772 st_src_reg accum = op[0];
1773
1774 op0_swizzle = op[0].swizzle;
1775 accum.swizzle = MAKE_SWIZZLE4(GET_SWZ(op0_swizzle, 0),
1776 GET_SWZ(op0_swizzle, 0),
1777 GET_SWZ(op0_swizzle, 0),
1778 GET_SWZ(op0_swizzle, 0));
1779 for (i = 0; i < 4; i++) {
1780 if (result_dst.writemask & (1 << i)) {
1781 dst_swizzle = MAKE_SWIZZLE4(i, i, i, i);
1782 break;
1783 }
1784 }
1785 assert(i != 4);
1786 assert(ir->operands[0]->type->is_boolean());
1787
1788 /* OR all the components together, since they should be either 0 or ~0
1789 */
1790 switch (ir->operands[0]->type->vector_elements) {
1791 case 4:
1792 op[0].swizzle = MAKE_SWIZZLE4(GET_SWZ(op0_swizzle, 3),
1793 GET_SWZ(op0_swizzle, 3),
1794 GET_SWZ(op0_swizzle, 3),
1795 GET_SWZ(op0_swizzle, 3));
1796 emit_asm(ir, TGSI_OPCODE_OR, result_dst, accum, op[0]);
1797 accum = st_src_reg(result_dst);
1798 accum.swizzle = dst_swizzle;
1799 /* fallthrough */
1800 case 3:
1801 op[0].swizzle = MAKE_SWIZZLE4(GET_SWZ(op0_swizzle, 2),
1802 GET_SWZ(op0_swizzle, 2),
1803 GET_SWZ(op0_swizzle, 2),
1804 GET_SWZ(op0_swizzle, 2));
1805 emit_asm(ir, TGSI_OPCODE_OR, result_dst, accum, op[0]);
1806 accum = st_src_reg(result_dst);
1807 accum.swizzle = dst_swizzle;
1808 /* fallthrough */
1809 case 2:
1810 op[0].swizzle = MAKE_SWIZZLE4(GET_SWZ(op0_swizzle, 1),
1811 GET_SWZ(op0_swizzle, 1),
1812 GET_SWZ(op0_swizzle, 1),
1813 GET_SWZ(op0_swizzle, 1));
1814 emit_asm(ir, TGSI_OPCODE_OR, result_dst, accum, op[0]);
1815 break;
1816 default:
1817 assert(!"Unexpected vector size");
1818 break;
1819 }
1820 } else {
1821 /* After the dot-product, the value will be an integer on the
1822 * range [0,4]. Zero stays zero, and positive values become 1.0.
1823 */
1824 glsl_to_tgsi_instruction *const dp =
1825 emit_dp(ir, result_dst, op[0], op[0],
1826 ir->operands[0]->type->vector_elements);
1827 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB &&
1828 result_dst.type == GLSL_TYPE_FLOAT) {
1829 /* The clamping to [0,1] can be done for free in the fragment
1830 * shader with a saturate.
1831 */
1832 dp->saturate = true;
1833 } else if (result_dst.type == GLSL_TYPE_FLOAT) {
1834 /* Negating the result of the dot-product gives values on the range
1835 * [-4, 0]. Zero stays zero, and negative values become 1.0. This
1836 * is achieved using SLT.
1837 */
1838 st_src_reg slt_src = result_src;
1839 slt_src.negate = ~slt_src.negate;
1840 emit_asm(ir, TGSI_OPCODE_SLT, result_dst, slt_src, st_src_reg_for_float(0.0));
1841 }
1842 else {
1843 /* Use SNE 0 if integers are being used as boolean values. */
1844 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, result_src, st_src_reg_for_int(0));
1845 }
1846 }
1847 break;
1848 }
1849
1850 case ir_binop_logic_xor:
1851 if (native_integers)
1852 emit_asm(ir, TGSI_OPCODE_XOR, result_dst, op[0], op[1]);
1853 else
1854 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], op[1]);
1855 break;
1856
1857 case ir_binop_logic_or: {
1858 if (native_integers) {
1859 /* If integers are used as booleans, we can use an actual "or"
1860 * instruction.
1861 */
1862 assert(native_integers);
1863 emit_asm(ir, TGSI_OPCODE_OR, result_dst, op[0], op[1]);
1864 } else {
1865 /* After the addition, the value will be an integer on the
1866 * range [0,2]. Zero stays zero, and positive values become 1.0.
1867 */
1868 glsl_to_tgsi_instruction *add =
1869 emit_asm(ir, TGSI_OPCODE_ADD, result_dst, op[0], op[1]);
1870 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1871 /* The clamping to [0,1] can be done for free in the fragment
1872 * shader with a saturate if floats are being used as boolean values.
1873 */
1874 add->saturate = true;
1875 } else {
1876 /* Negating the result of the addition gives values on the range
1877 * [-2, 0]. Zero stays zero, and negative values become 1.0. This
1878 * is achieved using SLT.
1879 */
1880 st_src_reg slt_src = result_src;
1881 slt_src.negate = ~slt_src.negate;
1882 emit_asm(ir, TGSI_OPCODE_SLT, result_dst, slt_src, st_src_reg_for_float(0.0));
1883 }
1884 }
1885 break;
1886 }
1887
1888 case ir_binop_logic_and:
1889 /* If native integers are disabled, the bool args are stored as float 0.0
1890 * or 1.0, so "mul" gives us "and". If they're enabled, just use the
1891 * actual AND opcode.
1892 */
1893 if (native_integers)
1894 emit_asm(ir, TGSI_OPCODE_AND, result_dst, op[0], op[1]);
1895 else
1896 emit_asm(ir, TGSI_OPCODE_MUL, result_dst, op[0], op[1]);
1897 break;
1898
1899 case ir_binop_dot:
1900 assert(ir->operands[0]->type->is_vector());
1901 assert(ir->operands[0]->type == ir->operands[1]->type);
1902 emit_dp(ir, result_dst, op[0], op[1],
1903 ir->operands[0]->type->vector_elements);
1904 break;
1905
1906 case ir_unop_sqrt:
1907 if (have_sqrt) {
1908 emit_scalar(ir, TGSI_OPCODE_SQRT, result_dst, op[0]);
1909 } else {
1910 /* sqrt(x) = x * rsq(x). */
1911 emit_scalar(ir, TGSI_OPCODE_RSQ, result_dst, op[0]);
1912 emit_asm(ir, TGSI_OPCODE_MUL, result_dst, result_src, op[0]);
1913 /* For incoming channels <= 0, set the result to 0. */
1914 op[0].negate = ~op[0].negate;
1915 emit_asm(ir, TGSI_OPCODE_CMP, result_dst,
1916 op[0], result_src, st_src_reg_for_float(0.0));
1917 }
1918 break;
1919 case ir_unop_rsq:
1920 emit_scalar(ir, TGSI_OPCODE_RSQ, result_dst, op[0]);
1921 break;
1922 case ir_unop_i2f:
1923 if (native_integers) {
1924 emit_asm(ir, TGSI_OPCODE_I2F, result_dst, op[0]);
1925 break;
1926 }
1927 /* fallthrough to next case otherwise */
1928 case ir_unop_b2f:
1929 if (native_integers) {
1930 emit_asm(ir, TGSI_OPCODE_AND, result_dst, op[0], st_src_reg_for_float(1.0));
1931 break;
1932 }
1933 /* fallthrough to next case otherwise */
1934 case ir_unop_i2u:
1935 case ir_unop_u2i:
1936 /* Converting between signed and unsigned integers is a no-op. */
1937 result_src = op[0];
1938 break;
1939 case ir_unop_b2i:
1940 if (native_integers) {
1941 /* Booleans are stored as integers using ~0 for true and 0 for false.
1942 * GLSL requires that int(bool) return 1 for true and 0 for false.
1943 * This conversion is done with AND, but it could be done with NEG.
1944 */
1945 emit_asm(ir, TGSI_OPCODE_AND, result_dst, op[0], st_src_reg_for_int(1));
1946 } else {
1947 /* Booleans and integers are both stored as floats when native
1948 * integers are disabled.
1949 */
1950 result_src = op[0];
1951 }
1952 break;
1953 case ir_unop_f2i:
1954 if (native_integers)
1955 emit_asm(ir, TGSI_OPCODE_F2I, result_dst, op[0]);
1956 else
1957 emit_asm(ir, TGSI_OPCODE_TRUNC, result_dst, op[0]);
1958 break;
1959 case ir_unop_f2u:
1960 if (native_integers)
1961 emit_asm(ir, TGSI_OPCODE_F2U, result_dst, op[0]);
1962 else
1963 emit_asm(ir, TGSI_OPCODE_TRUNC, result_dst, op[0]);
1964 break;
1965 case ir_unop_bitcast_f2i:
1966 result_src = op[0];
1967 result_src.type = GLSL_TYPE_INT;
1968 break;
1969 case ir_unop_bitcast_f2u:
1970 result_src = op[0];
1971 result_src.type = GLSL_TYPE_UINT;
1972 break;
1973 case ir_unop_bitcast_i2f:
1974 case ir_unop_bitcast_u2f:
1975 result_src = op[0];
1976 result_src.type = GLSL_TYPE_FLOAT;
1977 break;
1978 case ir_unop_f2b:
1979 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], st_src_reg_for_float(0.0));
1980 break;
1981 case ir_unop_d2b:
1982 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], st_src_reg_for_double(0.0));
1983 break;
1984 case ir_unop_i2b:
1985 if (native_integers)
1986 emit_asm(ir, TGSI_OPCODE_USNE, result_dst, op[0], st_src_reg_for_int(0));
1987 else
1988 emit_asm(ir, TGSI_OPCODE_SNE, result_dst, op[0], st_src_reg_for_float(0.0));
1989 break;
1990 case ir_unop_trunc:
1991 emit_asm(ir, TGSI_OPCODE_TRUNC, result_dst, op[0]);
1992 break;
1993 case ir_unop_ceil:
1994 emit_asm(ir, TGSI_OPCODE_CEIL, result_dst, op[0]);
1995 break;
1996 case ir_unop_floor:
1997 emit_asm(ir, TGSI_OPCODE_FLR, result_dst, op[0]);
1998 break;
1999 case ir_unop_round_even:
2000 emit_asm(ir, TGSI_OPCODE_ROUND, result_dst, op[0]);
2001 break;
2002 case ir_unop_fract:
2003 emit_asm(ir, TGSI_OPCODE_FRC, result_dst, op[0]);
2004 break;
2005
2006 case ir_binop_min:
2007 emit_asm(ir, TGSI_OPCODE_MIN, result_dst, op[0], op[1]);
2008 break;
2009 case ir_binop_max:
2010 emit_asm(ir, TGSI_OPCODE_MAX, result_dst, op[0], op[1]);
2011 break;
2012 case ir_binop_pow:
2013 emit_scalar(ir, TGSI_OPCODE_POW, result_dst, op[0], op[1]);
2014 break;
2015
2016 case ir_unop_bit_not:
2017 if (native_integers) {
2018 emit_asm(ir, TGSI_OPCODE_NOT, result_dst, op[0]);
2019 break;
2020 }
2021 case ir_unop_u2f:
2022 if (native_integers) {
2023 emit_asm(ir, TGSI_OPCODE_U2F, result_dst, op[0]);
2024 break;
2025 }
2026 case ir_binop_lshift:
2027 if (native_integers) {
2028 emit_asm(ir, TGSI_OPCODE_SHL, result_dst, op[0], op[1]);
2029 break;
2030 }
2031 case ir_binop_rshift:
2032 if (native_integers) {
2033 emit_asm(ir, TGSI_OPCODE_ISHR, result_dst, op[0], op[1]);
2034 break;
2035 }
2036 case ir_binop_bit_and:
2037 if (native_integers) {
2038 emit_asm(ir, TGSI_OPCODE_AND, result_dst, op[0], op[1]);
2039 break;
2040 }
2041 case ir_binop_bit_xor:
2042 if (native_integers) {
2043 emit_asm(ir, TGSI_OPCODE_XOR, result_dst, op[0], op[1]);
2044 break;
2045 }
2046 case ir_binop_bit_or:
2047 if (native_integers) {
2048 emit_asm(ir, TGSI_OPCODE_OR, result_dst, op[0], op[1]);
2049 break;
2050 }
2051
2052 assert(!"GLSL 1.30 features unsupported");
2053 break;
2054
2055 case ir_binop_ubo_load: {
2056 ir_constant *const_uniform_block = ir->operands[0]->as_constant();
2057 ir_constant *const_offset_ir = ir->operands[1]->as_constant();
2058 unsigned const_offset = const_offset_ir ? const_offset_ir->value.u[0] : 0;
2059 unsigned const_block = const_uniform_block ? const_uniform_block->value.u[0] + 1 : 0;
2060 st_src_reg index_reg = get_temp(glsl_type::uint_type);
2061 st_src_reg cbuf;
2062
2063 cbuf.type = ir->type->base_type;
2064 cbuf.file = PROGRAM_CONSTANT;
2065 cbuf.index = 0;
2066 cbuf.reladdr = NULL;
2067 cbuf.negate = 0;
2068
2069 assert(ir->type->is_vector() || ir->type->is_scalar());
2070
2071 if (const_offset_ir) {
2072 /* Constant index into constant buffer */
2073 cbuf.reladdr = NULL;
2074 cbuf.index = const_offset / 16;
2075 }
2076 else {
2077 /* Relative/variable index into constant buffer */
2078 emit_asm(ir, TGSI_OPCODE_USHR, st_dst_reg(index_reg), op[1],
2079 st_src_reg_for_int(4));
2080 cbuf.reladdr = ralloc(mem_ctx, st_src_reg);
2081 memcpy(cbuf.reladdr, &index_reg, sizeof(index_reg));
2082 }
2083
2084 if (const_uniform_block) {
2085 /* Constant constant buffer */
2086 cbuf.reladdr2 = NULL;
2087 cbuf.index2D = const_block;
2088 cbuf.has_index2 = true;
2089 }
2090 else {
2091 /* Relative/variable constant buffer */
2092 cbuf.reladdr2 = ralloc(mem_ctx, st_src_reg);
2093 cbuf.index2D = 1;
2094 memcpy(cbuf.reladdr2, &op[0], sizeof(st_src_reg));
2095 cbuf.has_index2 = true;
2096 }
2097
2098 cbuf.swizzle = swizzle_for_size(ir->type->vector_elements);
2099 if (cbuf.type == GLSL_TYPE_DOUBLE)
2100 cbuf.swizzle += MAKE_SWIZZLE4(const_offset % 16 / 8,
2101 const_offset % 16 / 8,
2102 const_offset % 16 / 8,
2103 const_offset % 16 / 8);
2104 else
2105 cbuf.swizzle += MAKE_SWIZZLE4(const_offset % 16 / 4,
2106 const_offset % 16 / 4,
2107 const_offset % 16 / 4,
2108 const_offset % 16 / 4);
2109
2110 if (ir->type->base_type == GLSL_TYPE_BOOL) {
2111 emit_asm(ir, TGSI_OPCODE_USNE, result_dst, cbuf, st_src_reg_for_int(0));
2112 } else {
2113 emit_asm(ir, TGSI_OPCODE_MOV, result_dst, cbuf);
2114 }
2115 break;
2116 }
2117 case ir_triop_lrp:
2118 /* note: we have to reorder the three args here */
2119 emit_asm(ir, TGSI_OPCODE_LRP, result_dst, op[2], op[1], op[0]);
2120 break;
2121 case ir_triop_csel:
2122 if (this->ctx->Const.NativeIntegers)
2123 emit_asm(ir, TGSI_OPCODE_UCMP, result_dst, op[0], op[1], op[2]);
2124 else {
2125 op[0].negate = ~op[0].negate;
2126 emit_asm(ir, TGSI_OPCODE_CMP, result_dst, op[0], op[1], op[2]);
2127 }
2128 break;
2129 case ir_triop_bitfield_extract:
2130 emit_asm(ir, TGSI_OPCODE_IBFE, result_dst, op[0], op[1], op[2]);
2131 break;
2132 case ir_quadop_bitfield_insert:
2133 emit_asm(ir, TGSI_OPCODE_BFI, result_dst, op[0], op[1], op[2], op[3]);
2134 break;
2135 case ir_unop_bitfield_reverse:
2136 emit_asm(ir, TGSI_OPCODE_BREV, result_dst, op[0]);
2137 break;
2138 case ir_unop_bit_count:
2139 emit_asm(ir, TGSI_OPCODE_POPC, result_dst, op[0]);
2140 break;
2141 case ir_unop_find_msb:
2142 emit_asm(ir, TGSI_OPCODE_IMSB, result_dst, op[0]);
2143 break;
2144 case ir_unop_find_lsb:
2145 emit_asm(ir, TGSI_OPCODE_LSB, result_dst, op[0]);
2146 break;
2147 case ir_binop_imul_high:
2148 emit_asm(ir, TGSI_OPCODE_IMUL_HI, result_dst, op[0], op[1]);
2149 break;
2150 case ir_triop_fma:
2151 /* In theory, MAD is incorrect here. */
2152 if (have_fma)
2153 emit_asm(ir, TGSI_OPCODE_FMA, result_dst, op[0], op[1], op[2]);
2154 else
2155 emit_asm(ir, TGSI_OPCODE_MAD, result_dst, op[0], op[1], op[2]);
2156 break;
2157 case ir_unop_interpolate_at_centroid:
2158 emit_asm(ir, TGSI_OPCODE_INTERP_CENTROID, result_dst, op[0]);
2159 break;
2160 case ir_binop_interpolate_at_offset:
2161 emit_asm(ir, TGSI_OPCODE_INTERP_OFFSET, result_dst, op[0], op[1]);
2162 break;
2163 case ir_binop_interpolate_at_sample:
2164 emit_asm(ir, TGSI_OPCODE_INTERP_SAMPLE, result_dst, op[0], op[1]);
2165 break;
2166
2167 case ir_unop_d2f:
2168 emit_asm(ir, TGSI_OPCODE_D2F, result_dst, op[0]);
2169 break;
2170 case ir_unop_f2d:
2171 emit_asm(ir, TGSI_OPCODE_F2D, result_dst, op[0]);
2172 break;
2173 case ir_unop_d2i:
2174 emit_asm(ir, TGSI_OPCODE_D2I, result_dst, op[0]);
2175 break;
2176 case ir_unop_i2d:
2177 emit_asm(ir, TGSI_OPCODE_I2D, result_dst, op[0]);
2178 break;
2179 case ir_unop_d2u:
2180 emit_asm(ir, TGSI_OPCODE_D2U, result_dst, op[0]);
2181 break;
2182 case ir_unop_u2d:
2183 emit_asm(ir, TGSI_OPCODE_U2D, result_dst, op[0]);
2184 break;
2185 case ir_unop_unpack_double_2x32:
2186 case ir_unop_pack_double_2x32:
2187 emit_asm(ir, TGSI_OPCODE_MOV, result_dst, op[0]);
2188 break;
2189
2190 case ir_binop_ldexp:
2191 if (ir->operands[0]->type->base_type == GLSL_TYPE_DOUBLE) {
2192 emit_asm(ir, TGSI_OPCODE_DLDEXP, result_dst, op[0], op[1]);
2193 } else {
2194 assert(!"Invalid ldexp for non-double opcode in glsl_to_tgsi_visitor::visit()");
2195 }
2196 break;
2197
2198 case ir_unop_pack_snorm_2x16:
2199 case ir_unop_pack_unorm_2x16:
2200 case ir_unop_pack_half_2x16:
2201 case ir_unop_pack_snorm_4x8:
2202 case ir_unop_pack_unorm_4x8:
2203
2204 case ir_unop_unpack_snorm_2x16:
2205 case ir_unop_unpack_unorm_2x16:
2206 case ir_unop_unpack_half_2x16:
2207 case ir_unop_unpack_half_2x16_split_x:
2208 case ir_unop_unpack_half_2x16_split_y:
2209 case ir_unop_unpack_snorm_4x8:
2210 case ir_unop_unpack_unorm_4x8:
2211
2212 case ir_binop_pack_half_2x16_split:
2213 case ir_binop_bfm:
2214 case ir_triop_bfi:
2215 case ir_quadop_vector:
2216 case ir_binop_vector_extract:
2217 case ir_triop_vector_insert:
2218 case ir_binop_carry:
2219 case ir_binop_borrow:
2220 /* This operation is not supported, or should have already been handled.
2221 */
2222 assert(!"Invalid ir opcode in glsl_to_tgsi_visitor::visit()");
2223 break;
2224 }
2225
2226 this->result = result_src;
2227 }
2228
2229
2230 void
2231 glsl_to_tgsi_visitor::visit(ir_swizzle *ir)
2232 {
2233 st_src_reg src;
2234 int i;
2235 int swizzle[4];
2236
2237 /* Note that this is only swizzles in expressions, not those on the left
2238 * hand side of an assignment, which do write masking. See ir_assignment
2239 * for that.
2240 */
2241
2242 ir->val->accept(this);
2243 src = this->result;
2244 assert(src.file != PROGRAM_UNDEFINED);
2245 assert(ir->type->vector_elements > 0);
2246
2247 for (i = 0; i < 4; i++) {
2248 if (i < ir->type->vector_elements) {
2249 switch (i) {
2250 case 0:
2251 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.x);
2252 break;
2253 case 1:
2254 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.y);
2255 break;
2256 case 2:
2257 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.z);
2258 break;
2259 case 3:
2260 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.w);
2261 break;
2262 }
2263 } else {
2264 /* If the type is smaller than a vec4, replicate the last
2265 * channel out.
2266 */
2267 swizzle[i] = swizzle[ir->type->vector_elements - 1];
2268 }
2269 }
2270
2271 src.swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
2272
2273 this->result = src;
2274 }
2275
2276 /* Test if the variable is an array. Note that geometry and
2277 * tessellation shader inputs are outputs are always arrays (except
2278 * for patch inputs), so only the array element type is considered.
2279 */
2280 static bool
2281 is_inout_array(unsigned stage, ir_variable *var, bool *is_2d)
2282 {
2283 const glsl_type *type = var->type;
2284
2285 if ((stage == MESA_SHADER_VERTEX && var->data.mode == ir_var_shader_in) ||
2286 (stage == MESA_SHADER_FRAGMENT && var->data.mode == ir_var_shader_out))
2287 return false;
2288
2289 *is_2d = false;
2290
2291 if (((stage == MESA_SHADER_GEOMETRY && var->data.mode == ir_var_shader_in) ||
2292 (stage == MESA_SHADER_TESS_EVAL && var->data.mode == ir_var_shader_in) ||
2293 stage == MESA_SHADER_TESS_CTRL) &&
2294 !var->data.patch) {
2295 if (!var->type->is_array())
2296 return false; /* a system value probably */
2297
2298 type = var->type->fields.array;
2299 *is_2d = true;
2300 }
2301
2302 return type->is_array() || type->is_matrix();
2303 }
2304
2305 void
2306 glsl_to_tgsi_visitor::visit(ir_dereference_variable *ir)
2307 {
2308 variable_storage *entry = find_variable_storage(ir->var);
2309 ir_variable *var = ir->var;
2310 bool is_2d;
2311
2312 if (!entry) {
2313 switch (var->data.mode) {
2314 case ir_var_uniform:
2315 entry = new(mem_ctx) variable_storage(var, PROGRAM_UNIFORM,
2316 var->data.location);
2317 this->variables.push_tail(entry);
2318 break;
2319 case ir_var_shader_in:
2320 /* The linker assigns locations for varyings and attributes,
2321 * including deprecated builtins (like gl_Color), user-assign
2322 * generic attributes (glBindVertexLocation), and
2323 * user-defined varyings.
2324 */
2325 assert(var->data.location != -1);
2326
2327 if (is_inout_array(shader->Stage, var, &is_2d)) {
2328 struct array_decl *decl = &input_arrays[num_input_arrays];
2329
2330 decl->mesa_index = var->data.location;
2331 decl->array_id = num_input_arrays + 1;
2332 if (is_2d)
2333 decl->array_size = type_size(var->type->fields.array);
2334 else
2335 decl->array_size = type_size(var->type);
2336 num_input_arrays++;
2337
2338 entry = new(mem_ctx) variable_storage(var,
2339 PROGRAM_INPUT,
2340 var->data.location,
2341 decl->array_id);
2342 }
2343 else {
2344 entry = new(mem_ctx) variable_storage(var,
2345 PROGRAM_INPUT,
2346 var->data.location);
2347 }
2348 this->variables.push_tail(entry);
2349 break;
2350 case ir_var_shader_out:
2351 assert(var->data.location != -1);
2352
2353 if (is_inout_array(shader->Stage, var, &is_2d)) {
2354 struct array_decl *decl = &output_arrays[num_output_arrays];
2355
2356 decl->mesa_index = var->data.location;
2357 decl->array_id = num_output_arrays + 1;
2358 if (is_2d)
2359 decl->array_size = type_size(var->type->fields.array);
2360 else
2361 decl->array_size = type_size(var->type);
2362 num_output_arrays++;
2363
2364 entry = new(mem_ctx) variable_storage(var,
2365 PROGRAM_OUTPUT,
2366 var->data.location,
2367 decl->array_id);
2368 }
2369 else {
2370 entry = new(mem_ctx) variable_storage(var,
2371 PROGRAM_OUTPUT,
2372 var->data.location
2373 + var->data.index);
2374 }
2375 this->variables.push_tail(entry);
2376 break;
2377 case ir_var_system_value:
2378 entry = new(mem_ctx) variable_storage(var,
2379 PROGRAM_SYSTEM_VALUE,
2380 var->data.location);
2381 break;
2382 case ir_var_auto:
2383 case ir_var_temporary:
2384 st_src_reg src = get_temp(var->type);
2385
2386 entry = new(mem_ctx) variable_storage(var, src.file, src.index);
2387 this->variables.push_tail(entry);
2388
2389 break;
2390 }
2391
2392 if (!entry) {
2393 printf("Failed to make storage for %s\n", var->name);
2394 exit(1);
2395 }
2396 }
2397
2398 this->result = st_src_reg(entry->file, entry->index, var->type);
2399 this->result.array_id = entry->array_id;
2400 if (!native_integers)
2401 this->result.type = GLSL_TYPE_FLOAT;
2402 }
2403
2404 static void
2405 shrink_array_declarations(struct array_decl *arrays, unsigned count,
2406 GLbitfield64 usage_mask,
2407 GLbitfield patch_usage_mask)
2408 {
2409 unsigned i, j;
2410
2411 /* Fix array declarations by removing unused array elements at both ends
2412 * of the arrays. For example, mat4[3] where only mat[1] is used.
2413 */
2414 for (i = 0; i < count; i++) {
2415 struct array_decl *decl = &arrays[i];
2416
2417 /* Shrink the beginning. */
2418 for (j = 0; j < decl->array_size; j++) {
2419 if (decl->mesa_index >= VARYING_SLOT_PATCH0) {
2420 if (patch_usage_mask &
2421 BITFIELD64_BIT(decl->mesa_index - VARYING_SLOT_PATCH0 + j))
2422 break;
2423 }
2424 else {
2425 if (usage_mask & BITFIELD64_BIT(decl->mesa_index+j))
2426 break;
2427 }
2428
2429 decl->mesa_index++;
2430 decl->array_size--;
2431 j--;
2432 }
2433
2434 /* Shrink the end. */
2435 for (j = decl->array_size-1; j >= 0; j--) {
2436 if (decl->mesa_index >= VARYING_SLOT_PATCH0) {
2437 if (patch_usage_mask &
2438 BITFIELD64_BIT(decl->mesa_index - VARYING_SLOT_PATCH0 + j))
2439 break;
2440 }
2441 else {
2442 if (usage_mask & BITFIELD64_BIT(decl->mesa_index+j))
2443 break;
2444 }
2445
2446 decl->array_size--;
2447 }
2448 }
2449 }
2450
2451 void
2452 glsl_to_tgsi_visitor::visit(ir_dereference_array *ir)
2453 {
2454 ir_constant *index;
2455 st_src_reg src;
2456 int element_size = type_size(ir->type);
2457 bool is_2D = false;
2458
2459 index = ir->array_index->constant_expression_value();
2460
2461 ir->array->accept(this);
2462 src = this->result;
2463
2464 if (ir->array->ir_type != ir_type_dereference_array) {
2465 switch (this->prog->Target) {
2466 case GL_TESS_CONTROL_PROGRAM_NV:
2467 is_2D = (src.file == PROGRAM_INPUT || src.file == PROGRAM_OUTPUT) &&
2468 !ir->variable_referenced()->data.patch;
2469 break;
2470 case GL_TESS_EVALUATION_PROGRAM_NV:
2471 is_2D = src.file == PROGRAM_INPUT &&
2472 !ir->variable_referenced()->data.patch;
2473 break;
2474 case GL_GEOMETRY_PROGRAM_NV:
2475 is_2D = src.file == PROGRAM_INPUT;
2476 break;
2477 }
2478 }
2479
2480 if (is_2D)
2481 element_size = 1;
2482
2483 if (index) {
2484 if (is_2D) {
2485 src.index2D = index->value.i[0];
2486 src.has_index2 = true;
2487 } else
2488 src.index += index->value.i[0] * element_size;
2489 } else {
2490 /* Variable index array dereference. It eats the "vec4" of the
2491 * base of the array and an index that offsets the TGSI register
2492 * index.
2493 */
2494 ir->array_index->accept(this);
2495
2496 st_src_reg index_reg;
2497
2498 if (element_size == 1) {
2499 index_reg = this->result;
2500 } else {
2501 index_reg = get_temp(native_integers ?
2502 glsl_type::int_type : glsl_type::float_type);
2503
2504 emit_asm(ir, TGSI_OPCODE_MUL, st_dst_reg(index_reg),
2505 this->result, st_src_reg_for_type(index_reg.type, element_size));
2506 }
2507
2508 /* If there was already a relative address register involved, add the
2509 * new and the old together to get the new offset.
2510 */
2511 if (!is_2D && src.reladdr != NULL) {
2512 st_src_reg accum_reg = get_temp(native_integers ?
2513 glsl_type::int_type : glsl_type::float_type);
2514
2515 emit_asm(ir, TGSI_OPCODE_ADD, st_dst_reg(accum_reg),
2516 index_reg, *src.reladdr);
2517
2518 index_reg = accum_reg;
2519 }
2520
2521 if (is_2D) {
2522 src.reladdr2 = ralloc(mem_ctx, st_src_reg);
2523 memcpy(src.reladdr2, &index_reg, sizeof(index_reg));
2524 src.index2D = 0;
2525 src.has_index2 = true;
2526 } else {
2527 src.reladdr = ralloc(mem_ctx, st_src_reg);
2528 memcpy(src.reladdr, &index_reg, sizeof(index_reg));
2529 }
2530 }
2531
2532 /* If the type is smaller than a vec4, replicate the last channel out. */
2533 if (ir->type->is_scalar() || ir->type->is_vector())
2534 src.swizzle = swizzle_for_size(ir->type->vector_elements);
2535 else
2536 src.swizzle = SWIZZLE_NOOP;
2537
2538 /* Change the register type to the element type of the array. */
2539 src.type = ir->type->base_type;
2540
2541 this->result = src;
2542 }
2543
2544 void
2545 glsl_to_tgsi_visitor::visit(ir_dereference_record *ir)
2546 {
2547 unsigned int i;
2548 const glsl_type *struct_type = ir->record->type;
2549 int offset = 0;
2550
2551 ir->record->accept(this);
2552
2553 for (i = 0; i < struct_type->length; i++) {
2554 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
2555 break;
2556 offset += type_size(struct_type->fields.structure[i].type);
2557 }
2558
2559 /* If the type is smaller than a vec4, replicate the last channel out. */
2560 if (ir->type->is_scalar() || ir->type->is_vector())
2561 this->result.swizzle = swizzle_for_size(ir->type->vector_elements);
2562 else
2563 this->result.swizzle = SWIZZLE_NOOP;
2564
2565 this->result.index += offset;
2566 this->result.type = ir->type->base_type;
2567 }
2568
2569 /**
2570 * We want to be careful in assignment setup to hit the actual storage
2571 * instead of potentially using a temporary like we might with the
2572 * ir_dereference handler.
2573 */
2574 static st_dst_reg
2575 get_assignment_lhs(ir_dereference *ir, glsl_to_tgsi_visitor *v)
2576 {
2577 /* The LHS must be a dereference. If the LHS is a variable indexed array
2578 * access of a vector, it must be separated into a series conditional moves
2579 * before reaching this point (see ir_vec_index_to_cond_assign).
2580 */
2581 assert(ir->as_dereference());
2582 ir_dereference_array *deref_array = ir->as_dereference_array();
2583 if (deref_array) {
2584 assert(!deref_array->array->type->is_vector());
2585 }
2586
2587 /* Use the rvalue deref handler for the most part. We'll ignore
2588 * swizzles in it and write swizzles using writemask, though.
2589 */
2590 ir->accept(v);
2591 return st_dst_reg(v->result);
2592 }
2593
2594 /**
2595 * Process the condition of a conditional assignment
2596 *
2597 * Examines the condition of a conditional assignment to generate the optimal
2598 * first operand of a \c CMP instruction. If the condition is a relational
2599 * operator with 0 (e.g., \c ir_binop_less), the value being compared will be
2600 * used as the source for the \c CMP instruction. Otherwise the comparison
2601 * is processed to a boolean result, and the boolean result is used as the
2602 * operand to the CMP instruction.
2603 */
2604 bool
2605 glsl_to_tgsi_visitor::process_move_condition(ir_rvalue *ir)
2606 {
2607 ir_rvalue *src_ir = ir;
2608 bool negate = true;
2609 bool switch_order = false;
2610
2611 ir_expression *const expr = ir->as_expression();
2612
2613 if (native_integers) {
2614 if ((expr != NULL) && (expr->get_num_operands() == 2)) {
2615 enum glsl_base_type type = expr->operands[0]->type->base_type;
2616 if (type == GLSL_TYPE_INT || type == GLSL_TYPE_UINT ||
2617 type == GLSL_TYPE_BOOL) {
2618 if (expr->operation == ir_binop_equal) {
2619 if (expr->operands[0]->is_zero()) {
2620 src_ir = expr->operands[1];
2621 switch_order = true;
2622 }
2623 else if (expr->operands[1]->is_zero()) {
2624 src_ir = expr->operands[0];
2625 switch_order = true;
2626 }
2627 }
2628 else if (expr->operation == ir_binop_nequal) {
2629 if (expr->operands[0]->is_zero()) {
2630 src_ir = expr->operands[1];
2631 }
2632 else if (expr->operands[1]->is_zero()) {
2633 src_ir = expr->operands[0];
2634 }
2635 }
2636 }
2637 }
2638
2639 src_ir->accept(this);
2640 return switch_order;
2641 }
2642
2643 if ((expr != NULL) && (expr->get_num_operands() == 2)) {
2644 bool zero_on_left = false;
2645
2646 if (expr->operands[0]->is_zero()) {
2647 src_ir = expr->operands[1];
2648 zero_on_left = true;
2649 } else if (expr->operands[1]->is_zero()) {
2650 src_ir = expr->operands[0];
2651 zero_on_left = false;
2652 }
2653
2654 /* a is - 0 + - 0 +
2655 * (a < 0) T F F ( a < 0) T F F
2656 * (0 < a) F F T (-a < 0) F F T
2657 * (a <= 0) T T F (-a < 0) F F T (swap order of other operands)
2658 * (0 <= a) F T T ( a < 0) T F F (swap order of other operands)
2659 * (a > 0) F F T (-a < 0) F F T
2660 * (0 > a) T F F ( a < 0) T F F
2661 * (a >= 0) F T T ( a < 0) T F F (swap order of other operands)
2662 * (0 >= a) T T F (-a < 0) F F T (swap order of other operands)
2663 *
2664 * Note that exchanging the order of 0 and 'a' in the comparison simply
2665 * means that the value of 'a' should be negated.
2666 */
2667 if (src_ir != ir) {
2668 switch (expr->operation) {
2669 case ir_binop_less:
2670 switch_order = false;
2671 negate = zero_on_left;
2672 break;
2673
2674 case ir_binop_greater:
2675 switch_order = false;
2676 negate = !zero_on_left;
2677 break;
2678
2679 case ir_binop_lequal:
2680 switch_order = true;
2681 negate = !zero_on_left;
2682 break;
2683
2684 case ir_binop_gequal:
2685 switch_order = true;
2686 negate = zero_on_left;
2687 break;
2688
2689 default:
2690 /* This isn't the right kind of comparison afterall, so make sure
2691 * the whole condition is visited.
2692 */
2693 src_ir = ir;
2694 break;
2695 }
2696 }
2697 }
2698
2699 src_ir->accept(this);
2700
2701 /* We use the TGSI_OPCODE_CMP (a < 0 ? b : c) for conditional moves, and the
2702 * condition we produced is 0.0 or 1.0. By flipping the sign, we can
2703 * choose which value TGSI_OPCODE_CMP produces without an extra instruction
2704 * computing the condition.
2705 */
2706 if (negate)
2707 this->result.negate = ~this->result.negate;
2708
2709 return switch_order;
2710 }
2711
2712 void
2713 glsl_to_tgsi_visitor::emit_block_mov(ir_assignment *ir, const struct glsl_type *type,
2714 st_dst_reg *l, st_src_reg *r,
2715 st_src_reg *cond, bool cond_swap)
2716 {
2717 if (type->base_type == GLSL_TYPE_STRUCT) {
2718 for (unsigned int i = 0; i < type->length; i++) {
2719 emit_block_mov(ir, type->fields.structure[i].type, l, r,
2720 cond, cond_swap);
2721 }
2722 return;
2723 }
2724
2725 if (type->is_array()) {
2726 for (unsigned int i = 0; i < type->length; i++) {
2727 emit_block_mov(ir, type->fields.array, l, r, cond, cond_swap);
2728 }
2729 return;
2730 }
2731
2732 if (type->is_matrix()) {
2733 const struct glsl_type *vec_type;
2734
2735 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
2736 type->vector_elements, 1);
2737
2738 for (int i = 0; i < type->matrix_columns; i++) {
2739 emit_block_mov(ir, vec_type, l, r, cond, cond_swap);
2740 }
2741 return;
2742 }
2743
2744 assert(type->is_scalar() || type->is_vector());
2745
2746 r->type = type->base_type;
2747 if (cond) {
2748 st_src_reg l_src = st_src_reg(*l);
2749 l_src.swizzle = swizzle_for_size(type->vector_elements);
2750
2751 if (native_integers) {
2752 emit_asm(ir, TGSI_OPCODE_UCMP, *l, *cond,
2753 cond_swap ? l_src : *r,
2754 cond_swap ? *r : l_src);
2755 } else {
2756 emit_asm(ir, TGSI_OPCODE_CMP, *l, *cond,
2757 cond_swap ? l_src : *r,
2758 cond_swap ? *r : l_src);
2759 }
2760 } else {
2761 emit_asm(ir, TGSI_OPCODE_MOV, *l, *r);
2762 }
2763 l->index++;
2764 r->index++;
2765 }
2766
2767 void
2768 glsl_to_tgsi_visitor::visit(ir_assignment *ir)
2769 {
2770 st_dst_reg l;
2771 st_src_reg r;
2772
2773 ir->rhs->accept(this);
2774 r = this->result;
2775
2776 l = get_assignment_lhs(ir->lhs, this);
2777
2778 /* FINISHME: This should really set to the correct maximal writemask for each
2779 * FINISHME: component written (in the loops below). This case can only
2780 * FINISHME: occur for matrices, arrays, and structures.
2781 */
2782 if (ir->write_mask == 0) {
2783 assert(!ir->lhs->type->is_scalar() && !ir->lhs->type->is_vector());
2784 l.writemask = WRITEMASK_XYZW;
2785 } else if (ir->lhs->type->is_scalar() &&
2786 !ir->lhs->type->is_double() &&
2787 ir->lhs->variable_referenced()->data.mode == ir_var_shader_out) {
2788 /* FINISHME: This hack makes writing to gl_FragDepth, which lives in the
2789 * FINISHME: W component of fragment shader output zero, work correctly.
2790 */
2791 l.writemask = WRITEMASK_XYZW;
2792 } else {
2793 int swizzles[4];
2794 int first_enabled_chan = 0;
2795 int rhs_chan = 0;
2796
2797 l.writemask = ir->write_mask;
2798
2799 for (int i = 0; i < 4; i++) {
2800 if (l.writemask & (1 << i)) {
2801 first_enabled_chan = GET_SWZ(r.swizzle, i);
2802 break;
2803 }
2804 }
2805
2806 /* Swizzle a small RHS vector into the channels being written.
2807 *
2808 * glsl ir treats write_mask as dictating how many channels are
2809 * present on the RHS while TGSI treats write_mask as just
2810 * showing which channels of the vec4 RHS get written.
2811 */
2812 for (int i = 0; i < 4; i++) {
2813 if (l.writemask & (1 << i))
2814 swizzles[i] = GET_SWZ(r.swizzle, rhs_chan++);
2815 else
2816 swizzles[i] = first_enabled_chan;
2817 }
2818 r.swizzle = MAKE_SWIZZLE4(swizzles[0], swizzles[1],
2819 swizzles[2], swizzles[3]);
2820 }
2821
2822 assert(l.file != PROGRAM_UNDEFINED);
2823 assert(r.file != PROGRAM_UNDEFINED);
2824
2825 if (ir->condition) {
2826 const bool switch_order = this->process_move_condition(ir->condition);
2827 st_src_reg condition = this->result;
2828
2829 emit_block_mov(ir, ir->lhs->type, &l, &r, &condition, switch_order);
2830 } else if (ir->rhs->as_expression() &&
2831 this->instructions.get_tail() &&
2832 ir->rhs == ((glsl_to_tgsi_instruction *)this->instructions.get_tail())->ir &&
2833 type_size(ir->lhs->type) == 1 &&
2834 l.writemask == ((glsl_to_tgsi_instruction *)this->instructions.get_tail())->dst[0].writemask) {
2835 /* To avoid emitting an extra MOV when assigning an expression to a
2836 * variable, emit the last instruction of the expression again, but
2837 * replace the destination register with the target of the assignment.
2838 * Dead code elimination will remove the original instruction.
2839 */
2840 glsl_to_tgsi_instruction *inst, *new_inst;
2841 inst = (glsl_to_tgsi_instruction *)this->instructions.get_tail();
2842 new_inst = emit_asm(ir, inst->op, l, inst->src[0], inst->src[1], inst->src[2], inst->src[3]);
2843 new_inst->saturate = inst->saturate;
2844 inst->dead_mask = inst->dst[0].writemask;
2845 } else {
2846 emit_block_mov(ir, ir->rhs->type, &l, &r, NULL, false);
2847 }
2848 }
2849
2850
2851 void
2852 glsl_to_tgsi_visitor::visit(ir_constant *ir)
2853 {
2854 st_src_reg src;
2855 GLdouble stack_vals[4] = { 0 };
2856 gl_constant_value *values = (gl_constant_value *) stack_vals;
2857 GLenum gl_type = GL_NONE;
2858 unsigned int i;
2859 static int in_array = 0;
2860 gl_register_file file = in_array ? PROGRAM_CONSTANT : PROGRAM_IMMEDIATE;
2861
2862 /* Unfortunately, 4 floats is all we can get into
2863 * _mesa_add_typed_unnamed_constant. So, make a temp to store an
2864 * aggregate constant and move each constant value into it. If we
2865 * get lucky, copy propagation will eliminate the extra moves.
2866 */
2867 if (ir->type->base_type == GLSL_TYPE_STRUCT) {
2868 st_src_reg temp_base = get_temp(ir->type);
2869 st_dst_reg temp = st_dst_reg(temp_base);
2870
2871 foreach_in_list(ir_constant, field_value, &ir->components) {
2872 int size = type_size(field_value->type);
2873
2874 assert(size > 0);
2875
2876 field_value->accept(this);
2877 src = this->result;
2878
2879 for (i = 0; i < (unsigned int)size; i++) {
2880 emit_asm(ir, TGSI_OPCODE_MOV, temp, src);
2881
2882 src.index++;
2883 temp.index++;
2884 }
2885 }
2886 this->result = temp_base;
2887 return;
2888 }
2889
2890 if (ir->type->is_array()) {
2891 st_src_reg temp_base = get_temp(ir->type);
2892 st_dst_reg temp = st_dst_reg(temp_base);
2893 int size = type_size(ir->type->fields.array);
2894
2895 assert(size > 0);
2896 in_array++;
2897
2898 for (i = 0; i < ir->type->length; i++) {
2899 ir->array_elements[i]->accept(this);
2900 src = this->result;
2901 for (int j = 0; j < size; j++) {
2902 emit_asm(ir, TGSI_OPCODE_MOV, temp, src);
2903
2904 src.index++;
2905 temp.index++;
2906 }
2907 }
2908 this->result = temp_base;
2909 in_array--;
2910 return;
2911 }
2912
2913 if (ir->type->is_matrix()) {
2914 st_src_reg mat = get_temp(ir->type);
2915 st_dst_reg mat_column = st_dst_reg(mat);
2916
2917 for (i = 0; i < ir->type->matrix_columns; i++) {
2918 assert(ir->type->base_type == GLSL_TYPE_FLOAT);
2919 values = (gl_constant_value *) &ir->value.f[i * ir->type->vector_elements];
2920
2921 src = st_src_reg(file, -1, ir->type->base_type);
2922 src.index = add_constant(file,
2923 values,
2924 ir->type->vector_elements,
2925 GL_FLOAT,
2926 &src.swizzle);
2927 emit_asm(ir, TGSI_OPCODE_MOV, mat_column, src);
2928
2929 mat_column.index++;
2930 }
2931
2932 this->result = mat;
2933 return;
2934 }
2935
2936 switch (ir->type->base_type) {
2937 case GLSL_TYPE_FLOAT:
2938 gl_type = GL_FLOAT;
2939 for (i = 0; i < ir->type->vector_elements; i++) {
2940 values[i].f = ir->value.f[i];
2941 }
2942 break;
2943 case GLSL_TYPE_DOUBLE:
2944 gl_type = GL_DOUBLE;
2945 for (i = 0; i < ir->type->vector_elements; i++) {
2946 values[i * 2].i = *(uint32_t *)&ir->value.d[i];
2947 values[i * 2 + 1].i = *(((uint32_t *)&ir->value.d[i]) + 1);
2948 }
2949 break;
2950 case GLSL_TYPE_UINT:
2951 gl_type = native_integers ? GL_UNSIGNED_INT : GL_FLOAT;
2952 for (i = 0; i < ir->type->vector_elements; i++) {
2953 if (native_integers)
2954 values[i].u = ir->value.u[i];
2955 else
2956 values[i].f = ir->value.u[i];
2957 }
2958 break;
2959 case GLSL_TYPE_INT:
2960 gl_type = native_integers ? GL_INT : GL_FLOAT;
2961 for (i = 0; i < ir->type->vector_elements; i++) {
2962 if (native_integers)
2963 values[i].i = ir->value.i[i];
2964 else
2965 values[i].f = ir->value.i[i];
2966 }
2967 break;
2968 case GLSL_TYPE_BOOL:
2969 gl_type = native_integers ? GL_BOOL : GL_FLOAT;
2970 for (i = 0; i < ir->type->vector_elements; i++) {
2971 values[i].u = ir->value.b[i] ? ctx->Const.UniformBooleanTrue : 0;
2972 }
2973 break;
2974 default:
2975 assert(!"Non-float/uint/int/bool constant");
2976 }
2977
2978 this->result = st_src_reg(file, -1, ir->type);
2979 this->result.index = add_constant(file,
2980 values,
2981 ir->type->vector_elements,
2982 gl_type,
2983 &this->result.swizzle);
2984 }
2985
2986 function_entry *
2987 glsl_to_tgsi_visitor::get_function_signature(ir_function_signature *sig)
2988 {
2989 foreach_in_list_use_after(function_entry, entry, &this->function_signatures) {
2990 if (entry->sig == sig)
2991 return entry;
2992 }
2993
2994 entry = ralloc(mem_ctx, function_entry);
2995 entry->sig = sig;
2996 entry->sig_id = this->next_signature_id++;
2997 entry->bgn_inst = NULL;
2998
2999 /* Allocate storage for all the parameters. */
3000 foreach_in_list(ir_variable, param, &sig->parameters) {
3001 variable_storage *storage;
3002
3003 storage = find_variable_storage(param);
3004 assert(!storage);
3005
3006 st_src_reg src = get_temp(param->type);
3007
3008 storage = new(mem_ctx) variable_storage(param, src.file, src.index);
3009 this->variables.push_tail(storage);
3010 }
3011
3012 if (!sig->return_type->is_void()) {
3013 entry->return_reg = get_temp(sig->return_type);
3014 } else {
3015 entry->return_reg = undef_src;
3016 }
3017
3018 this->function_signatures.push_tail(entry);
3019 return entry;
3020 }
3021
3022 void
3023 glsl_to_tgsi_visitor::visit(ir_call *ir)
3024 {
3025 glsl_to_tgsi_instruction *call_inst;
3026 ir_function_signature *sig = ir->callee;
3027 function_entry *entry = get_function_signature(sig);
3028 int i;
3029
3030 /* Process in parameters. */
3031 foreach_two_lists(formal_node, &sig->parameters,
3032 actual_node, &ir->actual_parameters) {
3033 ir_rvalue *param_rval = (ir_rvalue *) actual_node;
3034 ir_variable *param = (ir_variable *) formal_node;
3035
3036 if (param->data.mode == ir_var_function_in ||
3037 param->data.mode == ir_var_function_inout) {
3038 variable_storage *storage = find_variable_storage(param);
3039 assert(storage);
3040
3041 param_rval->accept(this);
3042 st_src_reg r = this->result;
3043
3044 st_dst_reg l;
3045 l.file = storage->file;
3046 l.index = storage->index;
3047 l.reladdr = NULL;
3048 l.writemask = WRITEMASK_XYZW;
3049 l.cond_mask = COND_TR;
3050
3051 for (i = 0; i < type_size(param->type); i++) {
3052 emit_asm(ir, TGSI_OPCODE_MOV, l, r);
3053 l.index++;
3054 r.index++;
3055 }
3056 }
3057 }
3058
3059 /* Emit call instruction */
3060 call_inst = emit_asm(ir, TGSI_OPCODE_CAL);
3061 call_inst->function = entry;
3062
3063 /* Process out parameters. */
3064 foreach_two_lists(formal_node, &sig->parameters,
3065 actual_node, &ir->actual_parameters) {
3066 ir_rvalue *param_rval = (ir_rvalue *) actual_node;
3067 ir_variable *param = (ir_variable *) formal_node;
3068
3069 if (param->data.mode == ir_var_function_out ||
3070 param->data.mode == ir_var_function_inout) {
3071 variable_storage *storage = find_variable_storage(param);
3072 assert(storage);
3073
3074 st_src_reg r;
3075 r.file = storage->file;
3076 r.index = storage->index;
3077 r.reladdr = NULL;
3078 r.swizzle = SWIZZLE_NOOP;
3079 r.negate = 0;
3080
3081 param_rval->accept(this);
3082 st_dst_reg l = st_dst_reg(this->result);
3083
3084 for (i = 0; i < type_size(param->type); i++) {
3085 emit_asm(ir, TGSI_OPCODE_MOV, l, r);
3086 l.index++;
3087 r.index++;
3088 }
3089 }
3090 }
3091
3092 /* Process return value. */
3093 this->result = entry->return_reg;
3094 }
3095
3096 void
3097 glsl_to_tgsi_visitor::visit(ir_texture *ir)
3098 {
3099 st_src_reg result_src, coord, cube_sc, lod_info, projector, dx, dy;
3100 st_src_reg offset[MAX_GLSL_TEXTURE_OFFSET], sample_index, component;
3101 st_src_reg levels_src;
3102 st_dst_reg result_dst, coord_dst, cube_sc_dst;
3103 glsl_to_tgsi_instruction *inst = NULL;
3104 unsigned opcode = TGSI_OPCODE_NOP;
3105 const glsl_type *sampler_type = ir->sampler->type;
3106 ir_rvalue *sampler_index =
3107 _mesa_get_sampler_array_nonconst_index(ir->sampler);
3108 bool is_cube_array = false;
3109 unsigned i;
3110
3111 /* if we are a cube array sampler */
3112 if ((sampler_type->sampler_dimensionality == GLSL_SAMPLER_DIM_CUBE &&
3113 sampler_type->sampler_array)) {
3114 is_cube_array = true;
3115 }
3116
3117 if (ir->coordinate) {
3118 ir->coordinate->accept(this);
3119
3120 /* Put our coords in a temp. We'll need to modify them for shadow,
3121 * projection, or LOD, so the only case we'd use it as is is if
3122 * we're doing plain old texturing. The optimization passes on
3123 * glsl_to_tgsi_visitor should handle cleaning up our mess in that case.
3124 */
3125 coord = get_temp(glsl_type::vec4_type);
3126 coord_dst = st_dst_reg(coord);
3127 coord_dst.writemask = (1 << ir->coordinate->type->vector_elements) - 1;
3128 emit_asm(ir, TGSI_OPCODE_MOV, coord_dst, this->result);
3129 }
3130
3131 if (ir->projector) {
3132 ir->projector->accept(this);
3133 projector = this->result;
3134 }
3135
3136 /* Storage for our result. Ideally for an assignment we'd be using
3137 * the actual storage for the result here, instead.
3138 */
3139 result_src = get_temp(ir->type);
3140 result_dst = st_dst_reg(result_src);
3141
3142 switch (ir->op) {
3143 case ir_tex:
3144 opcode = (is_cube_array && ir->shadow_comparitor) ? TGSI_OPCODE_TEX2 : TGSI_OPCODE_TEX;
3145 if (ir->offset) {
3146 ir->offset->accept(this);
3147 offset[0] = this->result;
3148 }
3149 break;
3150 case ir_txb:
3151 if (is_cube_array ||
3152 sampler_type == glsl_type::samplerCubeShadow_type) {
3153 opcode = TGSI_OPCODE_TXB2;
3154 }
3155 else {
3156 opcode = TGSI_OPCODE_TXB;
3157 }
3158 ir->lod_info.bias->accept(this);
3159 lod_info = this->result;
3160 if (ir->offset) {
3161 ir->offset->accept(this);
3162 offset[0] = this->result;
3163 }
3164 break;
3165 case ir_txl:
3166 opcode = is_cube_array ? TGSI_OPCODE_TXL2 : TGSI_OPCODE_TXL;
3167 ir->lod_info.lod->accept(this);
3168 lod_info = this->result;
3169 if (ir->offset) {
3170 ir->offset->accept(this);
3171 offset[0] = this->result;
3172 }
3173 break;
3174 case ir_txd:
3175 opcode = TGSI_OPCODE_TXD;
3176 ir->lod_info.grad.dPdx->accept(this);
3177 dx = this->result;
3178 ir->lod_info.grad.dPdy->accept(this);
3179 dy = this->result;
3180 if (ir->offset) {
3181 ir->offset->accept(this);
3182 offset[0] = this->result;
3183 }
3184 break;
3185 case ir_txs:
3186 opcode = TGSI_OPCODE_TXQ;
3187 ir->lod_info.lod->accept(this);
3188 lod_info = this->result;
3189 break;
3190 case ir_query_levels:
3191 opcode = TGSI_OPCODE_TXQ;
3192 lod_info = undef_src;
3193 levels_src = get_temp(ir->type);
3194 break;
3195 case ir_txf:
3196 opcode = TGSI_OPCODE_TXF;
3197 ir->lod_info.lod->accept(this);
3198 lod_info = this->result;
3199 if (ir->offset) {
3200 ir->offset->accept(this);
3201 offset[0] = this->result;
3202 }
3203 break;
3204 case ir_txf_ms:
3205 opcode = TGSI_OPCODE_TXF;
3206 ir->lod_info.sample_index->accept(this);
3207 sample_index = this->result;
3208 break;
3209 case ir_tg4:
3210 opcode = TGSI_OPCODE_TG4;
3211 ir->lod_info.component->accept(this);
3212 component = this->result;
3213 if (ir->offset) {
3214 ir->offset->accept(this);
3215 if (ir->offset->type->base_type == GLSL_TYPE_ARRAY) {
3216 const glsl_type *elt_type = ir->offset->type->fields.array;
3217 for (i = 0; i < ir->offset->type->length; i++) {
3218 offset[i] = this->result;
3219 offset[i].index += i * type_size(elt_type);
3220 offset[i].type = elt_type->base_type;
3221 offset[i].swizzle = swizzle_for_size(elt_type->vector_elements);
3222 }
3223 } else {
3224 offset[0] = this->result;
3225 }
3226 }
3227 break;
3228 case ir_lod:
3229 opcode = TGSI_OPCODE_LODQ;
3230 break;
3231 }
3232
3233 if (ir->projector) {
3234 if (opcode == TGSI_OPCODE_TEX) {
3235 /* Slot the projector in as the last component of the coord. */
3236 coord_dst.writemask = WRITEMASK_W;
3237 emit_asm(ir, TGSI_OPCODE_MOV, coord_dst, projector);
3238 coord_dst.writemask = WRITEMASK_XYZW;
3239 opcode = TGSI_OPCODE_TXP;
3240 } else {
3241 st_src_reg coord_w = coord;
3242 coord_w.swizzle = SWIZZLE_WWWW;
3243
3244 /* For the other TEX opcodes there's no projective version
3245 * since the last slot is taken up by LOD info. Do the
3246 * projective divide now.
3247 */
3248 coord_dst.writemask = WRITEMASK_W;
3249 emit_asm(ir, TGSI_OPCODE_RCP, coord_dst, projector);
3250
3251 /* In the case where we have to project the coordinates "by hand,"
3252 * the shadow comparator value must also be projected.
3253 */
3254 st_src_reg tmp_src = coord;
3255 if (ir->shadow_comparitor) {
3256 /* Slot the shadow value in as the second to last component of the
3257 * coord.
3258 */
3259 ir->shadow_comparitor->accept(this);
3260
3261 tmp_src = get_temp(glsl_type::vec4_type);
3262 st_dst_reg tmp_dst = st_dst_reg(tmp_src);
3263
3264 /* Projective division not allowed for array samplers. */
3265 assert(!sampler_type->sampler_array);
3266
3267 tmp_dst.writemask = WRITEMASK_Z;
3268 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, this->result);
3269
3270 tmp_dst.writemask = WRITEMASK_XY;
3271 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, coord);
3272 }
3273
3274 coord_dst.writemask = WRITEMASK_XYZ;
3275 emit_asm(ir, TGSI_OPCODE_MUL, coord_dst, tmp_src, coord_w);
3276
3277 coord_dst.writemask = WRITEMASK_XYZW;
3278 coord.swizzle = SWIZZLE_XYZW;
3279 }
3280 }
3281
3282 /* If projection is done and the opcode is not TGSI_OPCODE_TXP, then the shadow
3283 * comparator was put in the correct place (and projected) by the code,
3284 * above, that handles by-hand projection.
3285 */
3286 if (ir->shadow_comparitor && (!ir->projector || opcode == TGSI_OPCODE_TXP)) {
3287 /* Slot the shadow value in as the second to last component of the
3288 * coord.
3289 */
3290 ir->shadow_comparitor->accept(this);
3291
3292 if (is_cube_array) {
3293 cube_sc = get_temp(glsl_type::float_type);
3294 cube_sc_dst = st_dst_reg(cube_sc);
3295 cube_sc_dst.writemask = WRITEMASK_X;
3296 emit_asm(ir, TGSI_OPCODE_MOV, cube_sc_dst, this->result);
3297 cube_sc_dst.writemask = WRITEMASK_X;
3298 }
3299 else {
3300 if ((sampler_type->sampler_dimensionality == GLSL_SAMPLER_DIM_2D &&
3301 sampler_type->sampler_array) ||
3302 sampler_type->sampler_dimensionality == GLSL_SAMPLER_DIM_CUBE) {
3303 coord_dst.writemask = WRITEMASK_W;
3304 } else {
3305 coord_dst.writemask = WRITEMASK_Z;
3306 }
3307 emit_asm(ir, TGSI_OPCODE_MOV, coord_dst, this->result);
3308 coord_dst.writemask = WRITEMASK_XYZW;
3309 }
3310 }
3311
3312 if (ir->op == ir_txf_ms) {
3313 coord_dst.writemask = WRITEMASK_W;
3314 emit_asm(ir, TGSI_OPCODE_MOV, coord_dst, sample_index);
3315 coord_dst.writemask = WRITEMASK_XYZW;
3316 } else if (opcode == TGSI_OPCODE_TXL || opcode == TGSI_OPCODE_TXB ||
3317 opcode == TGSI_OPCODE_TXF) {
3318 /* TGSI stores LOD or LOD bias in the last channel of the coords. */
3319 coord_dst.writemask = WRITEMASK_W;
3320 emit_asm(ir, TGSI_OPCODE_MOV, coord_dst, lod_info);
3321 coord_dst.writemask = WRITEMASK_XYZW;
3322 }
3323
3324 if (sampler_index) {
3325 sampler_index->accept(this);
3326 emit_arl(ir, sampler_reladdr, this->result);
3327 }
3328
3329 if (opcode == TGSI_OPCODE_TXD)
3330 inst = emit_asm(ir, opcode, result_dst, coord, dx, dy);
3331 else if (opcode == TGSI_OPCODE_TXQ) {
3332 if (ir->op == ir_query_levels) {
3333 /* the level is stored in W */
3334 inst = emit_asm(ir, opcode, st_dst_reg(levels_src), lod_info);
3335 result_dst.writemask = WRITEMASK_X;
3336 levels_src.swizzle = SWIZZLE_WWWW;
3337 emit_asm(ir, TGSI_OPCODE_MOV, result_dst, levels_src);
3338 } else
3339 inst = emit_asm(ir, opcode, result_dst, lod_info);
3340 } else if (opcode == TGSI_OPCODE_TXF) {
3341 inst = emit_asm(ir, opcode, result_dst, coord);
3342 } else if (opcode == TGSI_OPCODE_TXL2 || opcode == TGSI_OPCODE_TXB2) {
3343 inst = emit_asm(ir, opcode, result_dst, coord, lod_info);
3344 } else if (opcode == TGSI_OPCODE_TEX2) {
3345 inst = emit_asm(ir, opcode, result_dst, coord, cube_sc);
3346 } else if (opcode == TGSI_OPCODE_TG4) {
3347 if (is_cube_array && ir->shadow_comparitor) {
3348 inst = emit_asm(ir, opcode, result_dst, coord, cube_sc);
3349 } else {
3350 inst = emit_asm(ir, opcode, result_dst, coord, component);
3351 }
3352 } else
3353 inst = emit_asm(ir, opcode, result_dst, coord);
3354
3355 if (ir->shadow_comparitor)
3356 inst->tex_shadow = GL_TRUE;
3357
3358 inst->sampler.index = _mesa_get_sampler_uniform_value(ir->sampler,
3359 this->shader_program,
3360 this->prog);
3361 if (sampler_index) {
3362 inst->sampler.reladdr = ralloc(mem_ctx, st_src_reg);
3363 memcpy(inst->sampler.reladdr, &sampler_reladdr, sizeof(sampler_reladdr));
3364 inst->sampler_array_size =
3365 ir->sampler->as_dereference_array()->array->type->array_size();
3366 } else {
3367 inst->sampler_array_size = 1;
3368 }
3369
3370 if (ir->offset) {
3371 for (i = 0; i < MAX_GLSL_TEXTURE_OFFSET && offset[i].file != PROGRAM_UNDEFINED; i++)
3372 inst->tex_offsets[i] = offset[i];
3373 inst->tex_offset_num_offset = i;
3374 }
3375
3376 switch (sampler_type->sampler_dimensionality) {
3377 case GLSL_SAMPLER_DIM_1D:
3378 inst->tex_target = (sampler_type->sampler_array)
3379 ? TEXTURE_1D_ARRAY_INDEX : TEXTURE_1D_INDEX;
3380 break;
3381 case GLSL_SAMPLER_DIM_2D:
3382 inst->tex_target = (sampler_type->sampler_array)
3383 ? TEXTURE_2D_ARRAY_INDEX : TEXTURE_2D_INDEX;
3384 break;
3385 case GLSL_SAMPLER_DIM_3D:
3386 inst->tex_target = TEXTURE_3D_INDEX;
3387 break;
3388 case GLSL_SAMPLER_DIM_CUBE:
3389 inst->tex_target = (sampler_type->sampler_array)
3390 ? TEXTURE_CUBE_ARRAY_INDEX : TEXTURE_CUBE_INDEX;
3391 break;
3392 case GLSL_SAMPLER_DIM_RECT:
3393 inst->tex_target = TEXTURE_RECT_INDEX;
3394 break;
3395 case GLSL_SAMPLER_DIM_BUF:
3396 inst->tex_target = TEXTURE_BUFFER_INDEX;
3397 break;
3398 case GLSL_SAMPLER_DIM_EXTERNAL:
3399 inst->tex_target = TEXTURE_EXTERNAL_INDEX;
3400 break;
3401 case GLSL_SAMPLER_DIM_MS:
3402 inst->tex_target = (sampler_type->sampler_array)
3403 ? TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX : TEXTURE_2D_MULTISAMPLE_INDEX;
3404 break;
3405 default:
3406 assert(!"Should not get here.");
3407 }
3408
3409 inst->tex_type = ir->type->base_type;
3410
3411 this->result = result_src;
3412 }
3413
3414 void
3415 glsl_to_tgsi_visitor::visit(ir_return *ir)
3416 {
3417 if (ir->get_value()) {
3418 st_dst_reg l;
3419 int i;
3420
3421 assert(current_function);
3422
3423 ir->get_value()->accept(this);
3424 st_src_reg r = this->result;
3425
3426 l = st_dst_reg(current_function->return_reg);
3427
3428 for (i = 0; i < type_size(current_function->sig->return_type); i++) {
3429 emit_asm(ir, TGSI_OPCODE_MOV, l, r);
3430 l.index++;
3431 r.index++;
3432 }
3433 }
3434
3435 emit_asm(ir, TGSI_OPCODE_RET);
3436 }
3437
3438 void
3439 glsl_to_tgsi_visitor::visit(ir_discard *ir)
3440 {
3441 if (ir->condition) {
3442 ir->condition->accept(this);
3443 st_src_reg condition = this->result;
3444
3445 /* Convert the bool condition to a float so we can negate. */
3446 if (native_integers) {
3447 st_src_reg temp = get_temp(ir->condition->type);
3448 emit_asm(ir, TGSI_OPCODE_AND, st_dst_reg(temp),
3449 condition, st_src_reg_for_float(1.0));
3450 condition = temp;
3451 }
3452
3453 condition.negate = ~condition.negate;
3454 emit_asm(ir, TGSI_OPCODE_KILL_IF, undef_dst, condition);
3455 } else {
3456 /* unconditional kil */
3457 emit_asm(ir, TGSI_OPCODE_KILL);
3458 }
3459 }
3460
3461 void
3462 glsl_to_tgsi_visitor::visit(ir_if *ir)
3463 {
3464 unsigned if_opcode;
3465 glsl_to_tgsi_instruction *if_inst;
3466
3467 ir->condition->accept(this);
3468 assert(this->result.file != PROGRAM_UNDEFINED);
3469
3470 if_opcode = native_integers ? TGSI_OPCODE_UIF : TGSI_OPCODE_IF;
3471
3472 if_inst = emit_asm(ir->condition, if_opcode, undef_dst, this->result);
3473
3474 this->instructions.push_tail(if_inst);
3475
3476 visit_exec_list(&ir->then_instructions, this);
3477
3478 if (!ir->else_instructions.is_empty()) {
3479 emit_asm(ir->condition, TGSI_OPCODE_ELSE);
3480 visit_exec_list(&ir->else_instructions, this);
3481 }
3482
3483 if_inst = emit_asm(ir->condition, TGSI_OPCODE_ENDIF);
3484 }
3485
3486
3487 void
3488 glsl_to_tgsi_visitor::visit(ir_emit_vertex *ir)
3489 {
3490 assert(this->prog->Target == GL_GEOMETRY_PROGRAM_NV);
3491
3492 ir->stream->accept(this);
3493 emit_asm(ir, TGSI_OPCODE_EMIT, undef_dst, this->result);
3494 }
3495
3496 void
3497 glsl_to_tgsi_visitor::visit(ir_end_primitive *ir)
3498 {
3499 assert(this->prog->Target == GL_GEOMETRY_PROGRAM_NV);
3500
3501 ir->stream->accept(this);
3502 emit_asm(ir, TGSI_OPCODE_ENDPRIM, undef_dst, this->result);
3503 }
3504
3505 void
3506 glsl_to_tgsi_visitor::visit(ir_barrier *ir)
3507 {
3508 assert(this->prog->Target == GL_TESS_CONTROL_PROGRAM_NV ||
3509 this->prog->Target == GL_COMPUTE_PROGRAM_NV);
3510
3511 emit_asm(ir, TGSI_OPCODE_BARRIER);
3512 }
3513
3514 glsl_to_tgsi_visitor::glsl_to_tgsi_visitor()
3515 {
3516 result.file = PROGRAM_UNDEFINED;
3517 next_temp = 1;
3518 array_sizes = NULL;
3519 max_num_arrays = 0;
3520 next_array = 0;
3521 num_input_arrays = 0;
3522 num_output_arrays = 0;
3523 next_signature_id = 1;
3524 num_immediates = 0;
3525 current_function = NULL;
3526 num_address_regs = 0;
3527 samplers_used = 0;
3528 indirect_addr_consts = false;
3529 wpos_transform_const = -1;
3530 glsl_version = 0;
3531 native_integers = false;
3532 mem_ctx = ralloc_context(NULL);
3533 ctx = NULL;
3534 prog = NULL;
3535 shader_program = NULL;
3536 shader = NULL;
3537 options = NULL;
3538 have_sqrt = false;
3539 have_fma = false;
3540 }
3541
3542 glsl_to_tgsi_visitor::~glsl_to_tgsi_visitor()
3543 {
3544 free(array_sizes);
3545 ralloc_free(mem_ctx);
3546 }
3547
3548 extern "C" void free_glsl_to_tgsi_visitor(glsl_to_tgsi_visitor *v)
3549 {
3550 delete v;
3551 }
3552
3553
3554 /**
3555 * Count resources used by the given gpu program (number of texture
3556 * samplers, etc).
3557 */
3558 static void
3559 count_resources(glsl_to_tgsi_visitor *v, gl_program *prog)
3560 {
3561 v->samplers_used = 0;
3562
3563 foreach_in_list(glsl_to_tgsi_instruction, inst, &v->instructions) {
3564 if (inst->info->is_tex) {
3565 for (int i = 0; i < inst->sampler_array_size; i++) {
3566 unsigned idx = inst->sampler.index + i;
3567 v->samplers_used |= 1 << idx;
3568
3569 debug_assert(idx < (int)ARRAY_SIZE(v->sampler_types));
3570 v->sampler_types[idx] = inst->tex_type;
3571 v->sampler_targets[idx] =
3572 st_translate_texture_target(inst->tex_target, inst->tex_shadow);
3573
3574 if (inst->tex_shadow) {
3575 prog->ShadowSamplers |= 1 << (inst->sampler.index + i);
3576 }
3577 }
3578 }
3579 }
3580 prog->SamplersUsed = v->samplers_used;
3581
3582 if (v->shader_program != NULL)
3583 _mesa_update_shader_textures_used(v->shader_program, prog);
3584 }
3585
3586 /**
3587 * Returns the mask of channels (bitmask of WRITEMASK_X,Y,Z,W) which
3588 * are read from the given src in this instruction
3589 */
3590 static int
3591 get_src_arg_mask(st_dst_reg dst, st_src_reg src)
3592 {
3593 int read_mask = 0, comp;
3594
3595 /* Now, given the src swizzle and the written channels, find which
3596 * components are actually read
3597 */
3598 for (comp = 0; comp < 4; ++comp) {
3599 const unsigned coord = GET_SWZ(src.swizzle, comp);
3600 assert(coord < 4);
3601 if (dst.writemask & (1 << comp) && coord <= SWIZZLE_W)
3602 read_mask |= 1 << coord;
3603 }
3604
3605 return read_mask;
3606 }
3607
3608 /**
3609 * This pass replaces CMP T0, T1 T2 T0 with MOV T0, T2 when the CMP
3610 * instruction is the first instruction to write to register T0. There are
3611 * several lowering passes done in GLSL IR (e.g. branches and
3612 * relative addressing) that create a large number of conditional assignments
3613 * that ir_to_mesa converts to CMP instructions like the one mentioned above.
3614 *
3615 * Here is why this conversion is safe:
3616 * CMP T0, T1 T2 T0 can be expanded to:
3617 * if (T1 < 0.0)
3618 * MOV T0, T2;
3619 * else
3620 * MOV T0, T0;
3621 *
3622 * If (T1 < 0.0) evaluates to true then our replacement MOV T0, T2 is the same
3623 * as the original program. If (T1 < 0.0) evaluates to false, executing
3624 * MOV T0, T0 will store a garbage value in T0 since T0 is uninitialized.
3625 * Therefore, it doesn't matter that we are replacing MOV T0, T0 with MOV T0, T2
3626 * because any instruction that was going to read from T0 after this was going
3627 * to read a garbage value anyway.
3628 */
3629 void
3630 glsl_to_tgsi_visitor::simplify_cmp(void)
3631 {
3632 int tempWritesSize = 0;
3633 unsigned *tempWrites = NULL;
3634 unsigned outputWrites[VARYING_SLOT_TESS_MAX];
3635
3636 memset(outputWrites, 0, sizeof(outputWrites));
3637
3638 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3639 unsigned prevWriteMask = 0;
3640
3641 /* Give up if we encounter relative addressing or flow control. */
3642 if (inst->dst[0].reladdr || inst->dst[0].reladdr2 ||
3643 inst->dst[1].reladdr || inst->dst[1].reladdr2 ||
3644 tgsi_get_opcode_info(inst->op)->is_branch ||
3645 inst->op == TGSI_OPCODE_BGNSUB ||
3646 inst->op == TGSI_OPCODE_CONT ||
3647 inst->op == TGSI_OPCODE_END ||
3648 inst->op == TGSI_OPCODE_ENDSUB ||
3649 inst->op == TGSI_OPCODE_RET) {
3650 break;
3651 }
3652
3653 if (inst->dst[0].file == PROGRAM_OUTPUT) {
3654 assert(inst->dst[0].index < (signed)ARRAY_SIZE(outputWrites));
3655 prevWriteMask = outputWrites[inst->dst[0].index];
3656 outputWrites[inst->dst[0].index] |= inst->dst[0].writemask;
3657 } else if (inst->dst[0].file == PROGRAM_TEMPORARY) {
3658 if (inst->dst[0].index >= tempWritesSize) {
3659 const int inc = 4096;
3660
3661 tempWrites = (unsigned*)
3662 realloc(tempWrites,
3663 (tempWritesSize + inc) * sizeof(unsigned));
3664 if (!tempWrites)
3665 return;
3666
3667 memset(tempWrites + tempWritesSize, 0, inc * sizeof(unsigned));
3668 tempWritesSize += inc;
3669 }
3670
3671 prevWriteMask = tempWrites[inst->dst[0].index];
3672 tempWrites[inst->dst[0].index] |= inst->dst[0].writemask;
3673 } else
3674 continue;
3675
3676 /* For a CMP to be considered a conditional write, the destination
3677 * register and source register two must be the same. */
3678 if (inst->op == TGSI_OPCODE_CMP
3679 && !(inst->dst[0].writemask & prevWriteMask)
3680 && inst->src[2].file == inst->dst[0].file
3681 && inst->src[2].index == inst->dst[0].index
3682 && inst->dst[0].writemask == get_src_arg_mask(inst->dst[0], inst->src[2])) {
3683
3684 inst->op = TGSI_OPCODE_MOV;
3685 inst->src[0] = inst->src[1];
3686 }
3687 }
3688
3689 free(tempWrites);
3690 }
3691
3692 /* Replaces all references to a temporary register index with another index. */
3693 void
3694 glsl_to_tgsi_visitor::rename_temp_registers(int num_renames, struct rename_reg_pair *renames)
3695 {
3696 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3697 unsigned j;
3698 int k;
3699 for (j = 0; j < num_inst_src_regs(inst); j++) {
3700 if (inst->src[j].file == PROGRAM_TEMPORARY)
3701 for (k = 0; k < num_renames; k++)
3702 if (inst->src[j].index == renames[k].old_reg)
3703 inst->src[j].index = renames[k].new_reg;
3704 }
3705
3706 for (j = 0; j < inst->tex_offset_num_offset; j++) {
3707 if (inst->tex_offsets[j].file == PROGRAM_TEMPORARY)
3708 for (k = 0; k < num_renames; k++)
3709 if (inst->tex_offsets[j].index == renames[k].old_reg)
3710 inst->tex_offsets[j].index = renames[k].new_reg;
3711 }
3712
3713 for (j = 0; j < num_inst_dst_regs(inst); j++) {
3714 if (inst->dst[j].file == PROGRAM_TEMPORARY)
3715 for (k = 0; k < num_renames; k++)
3716 if (inst->dst[j].index == renames[k].old_reg)
3717 inst->dst[j].index = renames[k].new_reg;
3718 }
3719 }
3720 }
3721
3722 void
3723 glsl_to_tgsi_visitor::get_first_temp_read(int *first_reads)
3724 {
3725 int depth = 0; /* loop depth */
3726 int loop_start = -1; /* index of the first active BGNLOOP (if any) */
3727 unsigned i = 0, j;
3728
3729 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3730 for (j = 0; j < num_inst_src_regs(inst); j++) {
3731 if (inst->src[j].file == PROGRAM_TEMPORARY) {
3732 if (first_reads[inst->src[j].index] == -1)
3733 first_reads[inst->src[j].index] = (depth == 0) ? i : loop_start;
3734 }
3735 }
3736 for (j = 0; j < inst->tex_offset_num_offset; j++) {
3737 if (inst->tex_offsets[j].file == PROGRAM_TEMPORARY) {
3738 if (first_reads[inst->tex_offsets[j].index] == -1)
3739 first_reads[inst->tex_offsets[j].index] = (depth == 0) ? i : loop_start;
3740 }
3741 }
3742 if (inst->op == TGSI_OPCODE_BGNLOOP) {
3743 if(depth++ == 0)
3744 loop_start = i;
3745 } else if (inst->op == TGSI_OPCODE_ENDLOOP) {
3746 if (--depth == 0)
3747 loop_start = -1;
3748 }
3749 assert(depth >= 0);
3750 i++;
3751 }
3752 }
3753
3754 void
3755 glsl_to_tgsi_visitor::get_last_temp_read_first_temp_write(int *last_reads, int *first_writes)
3756 {
3757 int depth = 0; /* loop depth */
3758 int loop_start = -1; /* index of the first active BGNLOOP (if any) */
3759 unsigned i = 0, j;
3760 int k;
3761 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3762 for (j = 0; j < num_inst_src_regs(inst); j++) {
3763 if (inst->src[j].file == PROGRAM_TEMPORARY)
3764 last_reads[inst->src[j].index] = (depth == 0) ? i : -2;
3765 }
3766 for (j = 0; j < num_inst_dst_regs(inst); j++) {
3767 if (inst->dst[j].file == PROGRAM_TEMPORARY)
3768 if (first_writes[inst->dst[j].index] == -1)
3769 first_writes[inst->dst[j].index] = (depth == 0) ? i : loop_start;
3770 }
3771 for (j = 0; j < inst->tex_offset_num_offset; j++) {
3772 if (inst->tex_offsets[j].file == PROGRAM_TEMPORARY)
3773 last_reads[inst->tex_offsets[j].index] = (depth == 0) ? i : -2;
3774 }
3775 if (inst->op == TGSI_OPCODE_BGNLOOP) {
3776 if(depth++ == 0)
3777 loop_start = i;
3778 } else if (inst->op == TGSI_OPCODE_ENDLOOP) {
3779 if (--depth == 0) {
3780 loop_start = -1;
3781 for (k = 0; k < this->next_temp; k++) {
3782 if (last_reads[k] == -2) {
3783 last_reads[k] = i;
3784 }
3785 }
3786 }
3787 }
3788 assert(depth >= 0);
3789 i++;
3790 }
3791 }
3792
3793 void
3794 glsl_to_tgsi_visitor::get_last_temp_write(int *last_writes)
3795 {
3796 int depth = 0; /* loop depth */
3797 int i = 0, k;
3798 unsigned j;
3799
3800 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3801 for (j = 0; j < num_inst_dst_regs(inst); j++) {
3802 if (inst->dst[j].file == PROGRAM_TEMPORARY)
3803 last_writes[inst->dst[j].index] = (depth == 0) ? i : -2;
3804 }
3805
3806 if (inst->op == TGSI_OPCODE_BGNLOOP)
3807 depth++;
3808 else if (inst->op == TGSI_OPCODE_ENDLOOP)
3809 if (--depth == 0) {
3810 for (k = 0; k < this->next_temp; k++) {
3811 if (last_writes[k] == -2) {
3812 last_writes[k] = i;
3813 }
3814 }
3815 }
3816 assert(depth >= 0);
3817 i++;
3818 }
3819 }
3820
3821 /*
3822 * On a basic block basis, tracks available PROGRAM_TEMPORARY register
3823 * channels for copy propagation and updates following instructions to
3824 * use the original versions.
3825 *
3826 * The glsl_to_tgsi_visitor lazily produces code assuming that this pass
3827 * will occur. As an example, a TXP production before this pass:
3828 *
3829 * 0: MOV TEMP[1], INPUT[4].xyyy;
3830 * 1: MOV TEMP[1].w, INPUT[4].wwww;
3831 * 2: TXP TEMP[2], TEMP[1], texture[0], 2D;
3832 *
3833 * and after:
3834 *
3835 * 0: MOV TEMP[1], INPUT[4].xyyy;
3836 * 1: MOV TEMP[1].w, INPUT[4].wwww;
3837 * 2: TXP TEMP[2], INPUT[4].xyyw, texture[0], 2D;
3838 *
3839 * which allows for dead code elimination on TEMP[1]'s writes.
3840 */
3841 void
3842 glsl_to_tgsi_visitor::copy_propagate(void)
3843 {
3844 glsl_to_tgsi_instruction **acp = rzalloc_array(mem_ctx,
3845 glsl_to_tgsi_instruction *,
3846 this->next_temp * 4);
3847 int *acp_level = rzalloc_array(mem_ctx, int, this->next_temp * 4);
3848 int level = 0;
3849
3850 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
3851 assert(inst->dst[0].file != PROGRAM_TEMPORARY
3852 || inst->dst[0].index < this->next_temp);
3853
3854 /* First, do any copy propagation possible into the src regs. */
3855 for (int r = 0; r < 3; r++) {
3856 glsl_to_tgsi_instruction *first = NULL;
3857 bool good = true;
3858 int acp_base = inst->src[r].index * 4;
3859
3860 if (inst->src[r].file != PROGRAM_TEMPORARY ||
3861 inst->src[r].reladdr ||
3862 inst->src[r].reladdr2)
3863 continue;
3864
3865 /* See if we can find entries in the ACP consisting of MOVs
3866 * from the same src register for all the swizzled channels
3867 * of this src register reference.
3868 */
3869 for (int i = 0; i < 4; i++) {
3870 int src_chan = GET_SWZ(inst->src[r].swizzle, i);
3871 glsl_to_tgsi_instruction *copy_chan = acp[acp_base + src_chan];
3872
3873 if (!copy_chan) {
3874 good = false;
3875 break;
3876 }
3877
3878 assert(acp_level[acp_base + src_chan] <= level);
3879
3880 if (!first) {
3881 first = copy_chan;
3882 } else {
3883 if (first->src[0].file != copy_chan->src[0].file ||
3884 first->src[0].index != copy_chan->src[0].index ||
3885 first->src[0].double_reg2 != copy_chan->src[0].double_reg2 ||
3886 first->src[0].index2D != copy_chan->src[0].index2D) {
3887 good = false;
3888 break;
3889 }
3890 }
3891 }
3892
3893 if (good) {
3894 /* We've now validated that we can copy-propagate to
3895 * replace this src register reference. Do it.
3896 */
3897 inst->src[r].file = first->src[0].file;
3898 inst->src[r].index = first->src[0].index;
3899 inst->src[r].index2D = first->src[0].index2D;
3900 inst->src[r].has_index2 = first->src[0].has_index2;
3901 inst->src[r].double_reg2 = first->src[0].double_reg2;
3902 inst->src[r].array_id = first->src[0].array_id;
3903
3904 int swizzle = 0;
3905 for (int i = 0; i < 4; i++) {
3906 int src_chan = GET_SWZ(inst->src[r].swizzle, i);
3907 glsl_to_tgsi_instruction *copy_inst = acp[acp_base + src_chan];
3908 swizzle |= (GET_SWZ(copy_inst->src[0].swizzle, src_chan) << (3 * i));
3909 }
3910 inst->src[r].swizzle = swizzle;
3911 }
3912 }
3913
3914 switch (inst->op) {
3915 case TGSI_OPCODE_BGNLOOP:
3916 case TGSI_OPCODE_ENDLOOP:
3917 /* End of a basic block, clear the ACP entirely. */
3918 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
3919 break;
3920
3921 case TGSI_OPCODE_IF:
3922 case TGSI_OPCODE_UIF:
3923 ++level;
3924 break;
3925
3926 case TGSI_OPCODE_ENDIF:
3927 case TGSI_OPCODE_ELSE:
3928 /* Clear all channels written inside the block from the ACP, but
3929 * leaving those that were not touched.
3930 */
3931 for (int r = 0; r < this->next_temp; r++) {
3932 for (int c = 0; c < 4; c++) {
3933 if (!acp[4 * r + c])
3934 continue;
3935
3936 if (acp_level[4 * r + c] >= level)
3937 acp[4 * r + c] = NULL;
3938 }
3939 }
3940 if (inst->op == TGSI_OPCODE_ENDIF)
3941 --level;
3942 break;
3943
3944 default:
3945 /* Continuing the block, clear any written channels from
3946 * the ACP.
3947 */
3948 for (int d = 0; d < 2; d++) {
3949 if (inst->dst[d].file == PROGRAM_TEMPORARY && inst->dst[d].reladdr) {
3950 /* Any temporary might be written, so no copy propagation
3951 * across this instruction.
3952 */
3953 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
3954 } else if (inst->dst[d].file == PROGRAM_OUTPUT &&
3955 inst->dst[d].reladdr) {
3956 /* Any output might be written, so no copy propagation
3957 * from outputs across this instruction.
3958 */
3959 for (int r = 0; r < this->next_temp; r++) {
3960 for (int c = 0; c < 4; c++) {
3961 if (!acp[4 * r + c])
3962 continue;
3963
3964 if (acp[4 * r + c]->src[0].file == PROGRAM_OUTPUT)
3965 acp[4 * r + c] = NULL;
3966 }
3967 }
3968 } else if (inst->dst[d].file == PROGRAM_TEMPORARY ||
3969 inst->dst[d].file == PROGRAM_OUTPUT) {
3970 /* Clear where it's used as dst. */
3971 if (inst->dst[d].file == PROGRAM_TEMPORARY) {
3972 for (int c = 0; c < 4; c++) {
3973 if (inst->dst[d].writemask & (1 << c))
3974 acp[4 * inst->dst[d].index + c] = NULL;
3975 }
3976 }
3977
3978 /* Clear where it's used as src. */
3979 for (int r = 0; r < this->next_temp; r++) {
3980 for (int c = 0; c < 4; c++) {
3981 if (!acp[4 * r + c])
3982 continue;
3983
3984 int src_chan = GET_SWZ(acp[4 * r + c]->src[0].swizzle, c);
3985
3986 if (acp[4 * r + c]->src[0].file == inst->dst[d].file &&
3987 acp[4 * r + c]->src[0].index == inst->dst[d].index &&
3988 inst->dst[d].writemask & (1 << src_chan)) {
3989 acp[4 * r + c] = NULL;
3990 }
3991 }
3992 }
3993 }
3994 }
3995 break;
3996 }
3997
3998 /* If this is a copy, add it to the ACP. */
3999 if (inst->op == TGSI_OPCODE_MOV &&
4000 inst->dst[0].file == PROGRAM_TEMPORARY &&
4001 !(inst->dst[0].file == inst->src[0].file &&
4002 inst->dst[0].index == inst->src[0].index) &&
4003 !inst->dst[0].reladdr &&
4004 !inst->dst[0].reladdr2 &&
4005 !inst->saturate &&
4006 inst->src[0].file != PROGRAM_ARRAY &&
4007 !inst->src[0].reladdr &&
4008 !inst->src[0].reladdr2 &&
4009 !inst->src[0].negate) {
4010 for (int i = 0; i < 4; i++) {
4011 if (inst->dst[0].writemask & (1 << i)) {
4012 acp[4 * inst->dst[0].index + i] = inst;
4013 acp_level[4 * inst->dst[0].index + i] = level;
4014 }
4015 }
4016 }
4017 }
4018
4019 ralloc_free(acp_level);
4020 ralloc_free(acp);
4021 }
4022
4023 /*
4024 * On a basic block basis, tracks available PROGRAM_TEMPORARY registers for dead
4025 * code elimination.
4026 *
4027 * The glsl_to_tgsi_visitor lazily produces code assuming that this pass
4028 * will occur. As an example, a TXP production after copy propagation but
4029 * before this pass:
4030 *
4031 * 0: MOV TEMP[1], INPUT[4].xyyy;
4032 * 1: MOV TEMP[1].w, INPUT[4].wwww;
4033 * 2: TXP TEMP[2], INPUT[4].xyyw, texture[0], 2D;
4034 *
4035 * and after this pass:
4036 *
4037 * 0: TXP TEMP[2], INPUT[4].xyyw, texture[0], 2D;
4038 */
4039 int
4040 glsl_to_tgsi_visitor::eliminate_dead_code(void)
4041 {
4042 glsl_to_tgsi_instruction **writes = rzalloc_array(mem_ctx,
4043 glsl_to_tgsi_instruction *,
4044 this->next_temp * 4);
4045 int *write_level = rzalloc_array(mem_ctx, int, this->next_temp * 4);
4046 int level = 0;
4047 int removed = 0;
4048
4049 foreach_in_list(glsl_to_tgsi_instruction, inst, &this->instructions) {
4050 assert(inst->dst[0].file != PROGRAM_TEMPORARY
4051 || inst->dst[0].index < this->next_temp);
4052
4053 switch (inst->op) {
4054 case TGSI_OPCODE_BGNLOOP:
4055 case TGSI_OPCODE_ENDLOOP:
4056 case TGSI_OPCODE_CONT:
4057 case TGSI_OPCODE_BRK:
4058 /* End of a basic block, clear the write array entirely.
4059 *
4060 * This keeps us from killing dead code when the writes are
4061 * on either side of a loop, even when the register isn't touched
4062 * inside the loop. However, glsl_to_tgsi_visitor doesn't seem to emit
4063 * dead code of this type, so it shouldn't make a difference as long as
4064 * the dead code elimination pass in the GLSL compiler does its job.
4065 */
4066 memset(writes, 0, sizeof(*writes) * this->next_temp * 4);
4067 break;
4068
4069 case TGSI_OPCODE_ENDIF:
4070 case TGSI_OPCODE_ELSE:
4071 /* Promote the recorded level of all channels written inside the
4072 * preceding if or else block to the level above the if/else block.
4073 */
4074 for (int r = 0; r < this->next_temp; r++) {
4075 for (int c = 0; c < 4; c++) {
4076 if (!writes[4 * r + c])
4077 continue;
4078
4079 if (write_level[4 * r + c] == level)
4080 write_level[4 * r + c] = level-1;
4081 }
4082 }
4083 if(inst->op == TGSI_OPCODE_ENDIF)
4084 --level;
4085 break;
4086
4087 case TGSI_OPCODE_IF:
4088 case TGSI_OPCODE_UIF:
4089 ++level;
4090 /* fallthrough to default case to mark the condition as read */
4091 default:
4092 /* Continuing the block, clear any channels from the write array that
4093 * are read by this instruction.
4094 */
4095 for (unsigned i = 0; i < ARRAY_SIZE(inst->src); i++) {
4096 if (inst->src[i].file == PROGRAM_TEMPORARY && inst->src[i].reladdr){
4097 /* Any temporary might be read, so no dead code elimination
4098 * across this instruction.
4099 */
4100 memset(writes, 0, sizeof(*writes) * this->next_temp * 4);
4101 } else if (inst->src[i].file == PROGRAM_TEMPORARY) {
4102 /* Clear where it's used as src. */
4103 int src_chans = 1 << GET_SWZ(inst->src[i].swizzle, 0);
4104 src_chans |= 1 << GET_SWZ(inst->src[i].swizzle, 1);
4105 src_chans |= 1 << GET_SWZ(inst->src[i].swizzle, 2);
4106 src_chans |= 1 << GET_SWZ(inst->src[i].swizzle, 3);
4107
4108 for (int c = 0; c < 4; c++) {
4109 if (src_chans & (1 << c))
4110 writes[4 * inst->src[i].index + c] = NULL;
4111 }
4112 }
4113 }
4114 for (unsigned i = 0; i < inst->tex_offset_num_offset; i++) {
4115 if (inst->tex_offsets[i].file == PROGRAM_TEMPORARY && inst->tex_offsets[i].reladdr){
4116 /* Any temporary might be read, so no dead code elimination
4117 * across this instruction.
4118 */
4119 memset(writes, 0, sizeof(*writes) * this->next_temp * 4);
4120 } else if (inst->tex_offsets[i].file == PROGRAM_TEMPORARY) {
4121 /* Clear where it's used as src. */
4122 int src_chans = 1 << GET_SWZ(inst->tex_offsets[i].swizzle, 0);
4123 src_chans |= 1 << GET_SWZ(inst->tex_offsets[i].swizzle, 1);
4124 src_chans |= 1 << GET_SWZ(inst->tex_offsets[i].swizzle, 2);
4125 src_chans |= 1 << GET_SWZ(inst->tex_offsets[i].swizzle, 3);
4126
4127 for (int c = 0; c < 4; c++) {
4128 if (src_chans & (1 << c))
4129 writes[4 * inst->tex_offsets[i].index + c] = NULL;
4130 }
4131 }
4132 }
4133 break;
4134 }
4135
4136 /* If this instruction writes to a temporary, add it to the write array.
4137 * If there is already an instruction in the write array for one or more
4138 * of the channels, flag that channel write as dead.
4139 */
4140 for (unsigned i = 0; i < ARRAY_SIZE(inst->dst); i++) {
4141 if (inst->dst[i].file == PROGRAM_TEMPORARY &&
4142 !inst->dst[i].reladdr &&
4143 !inst->saturate) {
4144 for (int c = 0; c < 4; c++) {
4145 if (inst->dst[i].writemask & (1 << c)) {
4146 if (writes[4 * inst->dst[i].index + c]) {
4147 if (write_level[4 * inst->dst[i].index + c] < level)
4148 continue;
4149 else
4150 writes[4 * inst->dst[i].index + c]->dead_mask |= (1 << c);
4151 }
4152 writes[4 * inst->dst[i].index + c] = inst;
4153 write_level[4 * inst->dst[i].index + c] = level;
4154 }
4155 }
4156 }
4157 }
4158 }
4159
4160 /* Anything still in the write array at this point is dead code. */
4161 for (int r = 0; r < this->next_temp; r++) {
4162 for (int c = 0; c < 4; c++) {
4163 glsl_to_tgsi_instruction *inst = writes[4 * r + c];
4164 if (inst)
4165 inst->dead_mask |= (1 << c);
4166 }
4167 }
4168
4169 /* Now actually remove the instructions that are completely dead and update
4170 * the writemask of other instructions with dead channels.
4171 */
4172 foreach_in_list_safe(glsl_to_tgsi_instruction, inst, &this->instructions) {
4173 if (!inst->dead_mask || !inst->dst[0].writemask)
4174 continue;
4175 else if ((inst->dst[0].writemask & ~inst->dead_mask) == 0) {
4176 inst->remove();
4177 delete inst;
4178 removed++;
4179 } else {
4180 if (inst->dst[0].type == GLSL_TYPE_DOUBLE) {
4181 if (inst->dead_mask == WRITEMASK_XY ||
4182 inst->dead_mask == WRITEMASK_ZW)
4183 inst->dst[0].writemask &= ~(inst->dead_mask);
4184 } else
4185 inst->dst[0].writemask &= ~(inst->dead_mask);
4186 }
4187 }
4188
4189 ralloc_free(write_level);
4190 ralloc_free(writes);
4191
4192 return removed;
4193 }
4194
4195 /* merge DFRACEXP instructions into one. */
4196 void
4197 glsl_to_tgsi_visitor::merge_two_dsts(void)
4198 {
4199 foreach_in_list_safe(glsl_to_tgsi_instruction, inst, &this->instructions) {
4200 glsl_to_tgsi_instruction *inst2;
4201 bool merged;
4202 if (num_inst_dst_regs(inst) != 2)
4203 continue;
4204
4205 if (inst->dst[0].file != PROGRAM_UNDEFINED &&
4206 inst->dst[1].file != PROGRAM_UNDEFINED)
4207 continue;
4208
4209 inst2 = (glsl_to_tgsi_instruction *) inst->next;
4210 do {
4211
4212 if (inst->src[0].file == inst2->src[0].file &&
4213 inst->src[0].index == inst2->src[0].index &&
4214 inst->src[0].type == inst2->src[0].type &&
4215 inst->src[0].swizzle == inst2->src[0].swizzle)
4216 break;
4217 inst2 = (glsl_to_tgsi_instruction *) inst2->next;
4218 } while (inst2);
4219
4220 if (!inst2)
4221 continue;
4222 merged = false;
4223 if (inst->dst[0].file == PROGRAM_UNDEFINED) {
4224 merged = true;
4225 inst->dst[0] = inst2->dst[0];
4226 } else if (inst->dst[1].file == PROGRAM_UNDEFINED) {
4227 inst->dst[1] = inst2->dst[1];
4228 merged = true;
4229 }
4230
4231 if (merged) {
4232 inst2->remove();
4233 delete inst2;
4234 }
4235 }
4236 }
4237
4238 /* Merges temporary registers together where possible to reduce the number of
4239 * registers needed to run a program.
4240 *
4241 * Produces optimal code only after copy propagation and dead code elimination
4242 * have been run. */
4243 void
4244 glsl_to_tgsi_visitor::merge_registers(void)
4245 {
4246 int *last_reads = rzalloc_array(mem_ctx, int, this->next_temp);
4247 int *first_writes = rzalloc_array(mem_ctx, int, this->next_temp);
4248 struct rename_reg_pair *renames = rzalloc_array(mem_ctx, struct rename_reg_pair, this->next_temp);
4249 int i, j;
4250 int num_renames = 0;
4251
4252 /* Read the indices of the last read and first write to each temp register
4253 * into an array so that we don't have to traverse the instruction list as
4254 * much. */
4255 for (i = 0; i < this->next_temp; i++) {
4256 last_reads[i] = -1;
4257 first_writes[i] = -1;
4258 }
4259 get_last_temp_read_first_temp_write(last_reads, first_writes);
4260
4261 /* Start looking for registers with non-overlapping usages that can be
4262 * merged together. */
4263 for (i = 0; i < this->next_temp; i++) {
4264 /* Don't touch unused registers. */
4265 if (last_reads[i] < 0 || first_writes[i] < 0) continue;
4266
4267 for (j = 0; j < this->next_temp; j++) {
4268 /* Don't touch unused registers. */
4269 if (last_reads[j] < 0 || first_writes[j] < 0) continue;
4270
4271 /* We can merge the two registers if the first write to j is after or
4272 * in the same instruction as the last read from i. Note that the
4273 * register at index i will always be used earlier or at the same time
4274 * as the register at index j. */
4275 if (first_writes[i] <= first_writes[j] &&
4276 last_reads[i] <= first_writes[j]) {
4277 renames[num_renames].old_reg = j;
4278 renames[num_renames].new_reg = i;
4279 num_renames++;
4280
4281 /* Update the first_writes and last_reads arrays with the new
4282 * values for the merged register index, and mark the newly unused
4283 * register index as such. */
4284 last_reads[i] = last_reads[j];
4285 first_writes[j] = -1;
4286 last_reads[j] = -1;
4287 }
4288 }
4289 }
4290
4291 rename_temp_registers(num_renames, renames);
4292 ralloc_free(renames);
4293 ralloc_free(last_reads);
4294 ralloc_free(first_writes);
4295 }
4296
4297 /* Reassign indices to temporary registers by reusing unused indices created
4298 * by optimization passes. */
4299 void
4300 glsl_to_tgsi_visitor::renumber_registers(void)
4301 {
4302 int i = 0;
4303 int new_index = 0;
4304 int *first_reads = rzalloc_array(mem_ctx, int, this->next_temp);
4305 struct rename_reg_pair *renames = rzalloc_array(mem_ctx, struct rename_reg_pair, this->next_temp);
4306 int num_renames = 0;
4307 for (i = 0; i < this->next_temp; i++) {
4308 first_reads[i] = -1;
4309 }
4310 get_first_temp_read(first_reads);
4311
4312 for (i = 0; i < this->next_temp; i++) {
4313 if (first_reads[i] < 0) continue;
4314 if (i != new_index) {
4315 renames[num_renames].old_reg = i;
4316 renames[num_renames].new_reg = new_index;
4317 num_renames++;
4318 }
4319 new_index++;
4320 }
4321
4322 rename_temp_registers(num_renames, renames);
4323 this->next_temp = new_index;
4324 ralloc_free(renames);
4325 ralloc_free(first_reads);
4326 }
4327
4328 /**
4329 * Returns a fragment program which implements the current pixel transfer ops.
4330 * Based on get_pixel_transfer_program in st_atom_pixeltransfer.c.
4331 */
4332 extern "C" void
4333 get_pixel_transfer_visitor(struct st_fragment_program *fp,
4334 glsl_to_tgsi_visitor *original,
4335 int scale_and_bias, int pixel_maps)
4336 {
4337 glsl_to_tgsi_visitor *v = new glsl_to_tgsi_visitor();
4338 struct st_context *st = st_context(original->ctx);
4339 struct gl_program *prog = &fp->Base.Base;
4340 struct gl_program_parameter_list *params = _mesa_new_parameter_list();
4341 st_src_reg coord, src0;
4342 st_dst_reg dst0;
4343 glsl_to_tgsi_instruction *inst;
4344
4345 /* Copy attributes of the glsl_to_tgsi_visitor in the original shader. */
4346 v->ctx = original->ctx;
4347 v->prog = prog;
4348 v->shader_program = NULL;
4349 v->shader = NULL;
4350 v->glsl_version = original->glsl_version;
4351 v->native_integers = original->native_integers;
4352 v->options = original->options;
4353 v->next_temp = original->next_temp;
4354 v->num_address_regs = original->num_address_regs;
4355 v->samplers_used = prog->SamplersUsed = original->samplers_used;
4356 v->indirect_addr_consts = original->indirect_addr_consts;
4357 memcpy(&v->immediates, &original->immediates, sizeof(v->immediates));
4358 v->num_immediates = original->num_immediates;
4359
4360 /*
4361 * Get initial pixel color from the texture.
4362 * TEX colorTemp, fragment.texcoord[0], texture[0], 2D;
4363 */
4364 coord = st_src_reg(PROGRAM_INPUT, VARYING_SLOT_TEX0, glsl_type::vec2_type);
4365 src0 = v->get_temp(glsl_type::vec4_type);
4366 dst0 = st_dst_reg(src0);
4367 inst = v->emit_asm(NULL, TGSI_OPCODE_TEX, dst0, coord);
4368 inst->sampler_array_size = 1;
4369 inst->tex_target = TEXTURE_2D_INDEX;
4370
4371 prog->InputsRead |= VARYING_BIT_TEX0;
4372 prog->SamplersUsed |= (1 << 0); /* mark sampler 0 as used */
4373 v->samplers_used |= (1 << 0);
4374
4375 if (scale_and_bias) {
4376 static const gl_state_index scale_state[STATE_LENGTH] =
4377 { STATE_INTERNAL, STATE_PT_SCALE,
4378 (gl_state_index) 0, (gl_state_index) 0, (gl_state_index) 0 };
4379 static const gl_state_index bias_state[STATE_LENGTH] =
4380 { STATE_INTERNAL, STATE_PT_BIAS,
4381 (gl_state_index) 0, (gl_state_index) 0, (gl_state_index) 0 };
4382 GLint scale_p, bias_p;
4383 st_src_reg scale, bias;
4384
4385 scale_p = _mesa_add_state_reference(params, scale_state);
4386 bias_p = _mesa_add_state_reference(params, bias_state);
4387
4388 /* MAD colorTemp, colorTemp, scale, bias; */
4389 scale = st_src_reg(PROGRAM_STATE_VAR, scale_p, GLSL_TYPE_FLOAT);
4390 bias = st_src_reg(PROGRAM_STATE_VAR, bias_p, GLSL_TYPE_FLOAT);
4391 inst = v->emit_asm(NULL, TGSI_OPCODE_MAD, dst0, src0, scale, bias);
4392 }
4393
4394 if (pixel_maps) {
4395 st_src_reg temp = v->get_temp(glsl_type::vec4_type);
4396 st_dst_reg temp_dst = st_dst_reg(temp);
4397
4398 assert(st->pixel_xfer.pixelmap_texture);
4399 (void) st;
4400
4401 /* With a little effort, we can do four pixel map look-ups with
4402 * two TEX instructions:
4403 */
4404
4405 /* TEX temp.rg, colorTemp.rgba, texture[1], 2D; */
4406 temp_dst.writemask = WRITEMASK_XY; /* write R,G */
4407 inst = v->emit_asm(NULL, TGSI_OPCODE_TEX, temp_dst, src0);
4408 inst->sampler.index = 1;
4409 inst->sampler_array_size = 1;
4410 inst->tex_target = TEXTURE_2D_INDEX;
4411
4412 /* TEX temp.ba, colorTemp.baba, texture[1], 2D; */
4413 src0.swizzle = MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_Z, SWIZZLE_W);
4414 temp_dst.writemask = WRITEMASK_ZW; /* write B,A */
4415 inst = v->emit_asm(NULL, TGSI_OPCODE_TEX, temp_dst, src0);
4416 inst->sampler.index = 1;
4417 inst->sampler_array_size = 1;
4418 inst->tex_target = TEXTURE_2D_INDEX;
4419
4420 prog->SamplersUsed |= (1 << 1); /* mark sampler 1 as used */
4421 v->samplers_used |= (1 << 1);
4422
4423 /* MOV colorTemp, temp; */
4424 inst = v->emit_asm(NULL, TGSI_OPCODE_MOV, dst0, temp);
4425 }
4426
4427 /* Now copy the instructions from the original glsl_to_tgsi_visitor into the
4428 * new visitor. */
4429 foreach_in_list(glsl_to_tgsi_instruction, inst, &original->instructions) {
4430 glsl_to_tgsi_instruction *newinst;
4431 st_src_reg src_regs[4];
4432
4433 if (inst->dst[0].file == PROGRAM_OUTPUT)
4434 prog->OutputsWritten |= BITFIELD64_BIT(inst->dst[0].index);
4435
4436 for (int i = 0; i < 4; i++) {
4437 src_regs[i] = inst->src[i];
4438 if (src_regs[i].file == PROGRAM_INPUT &&
4439 src_regs[i].index == VARYING_SLOT_COL0) {
4440 src_regs[i].file = PROGRAM_TEMPORARY;
4441 src_regs[i].index = src0.index;
4442 }
4443 else if (src_regs[i].file == PROGRAM_INPUT)
4444 prog->InputsRead |= BITFIELD64_BIT(src_regs[i].index);
4445 }
4446
4447 newinst = v->emit_asm(NULL, inst->op, inst->dst[0], src_regs[0], src_regs[1], src_regs[2], src_regs[3]);
4448 newinst->tex_target = inst->tex_target;
4449 newinst->sampler_array_size = inst->sampler_array_size;
4450 }
4451
4452 /* Make modifications to fragment program info. */
4453 prog->Parameters = _mesa_combine_parameter_lists(params,
4454 original->prog->Parameters);
4455 _mesa_free_parameter_list(params);
4456 count_resources(v, prog);
4457 fp->glsl_to_tgsi = v;
4458 }
4459
4460 /**
4461 * Make fragment program for glBitmap:
4462 * Sample the texture and kill the fragment if the bit is 0.
4463 * This program will be combined with the user's fragment program.
4464 *
4465 * Based on make_bitmap_fragment_program in st_cb_bitmap.c.
4466 */
4467 extern "C" void
4468 get_bitmap_visitor(struct st_fragment_program *fp,
4469 glsl_to_tgsi_visitor *original, int samplerIndex)
4470 {
4471 glsl_to_tgsi_visitor *v = new glsl_to_tgsi_visitor();
4472 struct st_context *st = st_context(original->ctx);
4473 struct gl_program *prog = &fp->Base.Base;
4474 st_src_reg coord, src0;
4475 st_dst_reg dst0;
4476 glsl_to_tgsi_instruction *inst;
4477
4478 /* Copy attributes of the glsl_to_tgsi_visitor in the original shader. */
4479 v->ctx = original->ctx;
4480 v->prog = prog;
4481 v->shader_program = NULL;
4482 v->shader = NULL;
4483 v->glsl_version = original->glsl_version;
4484 v->native_integers = original->native_integers;
4485 v->options = original->options;
4486 v->next_temp = original->next_temp;
4487 v->num_address_regs = original->num_address_regs;
4488 v->samplers_used = prog->SamplersUsed = original->samplers_used;
4489 v->indirect_addr_consts = original->indirect_addr_consts;
4490 memcpy(&v->immediates, &original->immediates, sizeof(v->immediates));
4491 v->num_immediates = original->num_immediates;
4492
4493 /* TEX tmp0, fragment.texcoord[0], texture[0], 2D; */
4494 coord = st_src_reg(PROGRAM_INPUT, VARYING_SLOT_TEX0, glsl_type::vec2_type);
4495 src0 = v->get_temp(glsl_type::vec4_type);
4496 dst0 = st_dst_reg(src0);
4497 inst = v->emit_asm(NULL, TGSI_OPCODE_TEX, dst0, coord);
4498 inst->sampler.index = samplerIndex;
4499 inst->sampler_array_size = 1;
4500 inst->tex_target = TEXTURE_2D_INDEX;
4501
4502 prog->InputsRead |= VARYING_BIT_TEX0;
4503 prog->SamplersUsed |= (1 << samplerIndex); /* mark sampler as used */
4504 v->samplers_used |= (1 << samplerIndex);
4505
4506 /* KIL if -tmp0 < 0 # texel=0 -> keep / texel=0 -> discard */
4507 src0.negate = NEGATE_XYZW;
4508 if (st->bitmap.tex_format == PIPE_FORMAT_L8_UNORM)
4509 src0.swizzle = SWIZZLE_XXXX;
4510 inst = v->emit_asm(NULL, TGSI_OPCODE_KILL_IF, undef_dst, src0);
4511
4512 /* Now copy the instructions from the original glsl_to_tgsi_visitor into the
4513 * new visitor. */
4514 foreach_in_list(glsl_to_tgsi_instruction, inst, &original->instructions) {
4515 glsl_to_tgsi_instruction *newinst;
4516 st_src_reg src_regs[4];
4517
4518 if (inst->dst[0].file == PROGRAM_OUTPUT)
4519 prog->OutputsWritten |= BITFIELD64_BIT(inst->dst[0].index);
4520
4521 for (int i = 0; i < 4; i++) {
4522 src_regs[i] = inst->src[i];
4523 if (src_regs[i].file == PROGRAM_INPUT)
4524 prog->InputsRead |= BITFIELD64_BIT(src_regs[i].index);
4525 }
4526
4527 newinst = v->emit_asm(NULL, inst->op, inst->dst[0], src_regs[0], src_regs[1], src_regs[2], src_regs[3]);
4528 newinst->tex_target = inst->tex_target;
4529 newinst->sampler_array_size = inst->sampler_array_size;
4530 }
4531
4532 /* Make modifications to fragment program info. */
4533 prog->Parameters = _mesa_clone_parameter_list(original->prog->Parameters);
4534 count_resources(v, prog);
4535 fp->glsl_to_tgsi = v;
4536 }
4537
4538 /* ------------------------- TGSI conversion stuff -------------------------- */
4539 struct label {
4540 unsigned branch_target;
4541 unsigned token;
4542 };
4543
4544 /**
4545 * Intermediate state used during shader translation.
4546 */
4547 struct st_translate {
4548 struct ureg_program *ureg;
4549
4550 unsigned temps_size;
4551 struct ureg_dst *temps;
4552
4553 struct ureg_dst *arrays;
4554 unsigned num_temp_arrays;
4555 struct ureg_src *constants;
4556 int num_constants;
4557 struct ureg_src *immediates;
4558 int num_immediates;
4559 struct ureg_dst outputs[PIPE_MAX_SHADER_OUTPUTS];
4560 struct ureg_src inputs[PIPE_MAX_SHADER_INPUTS];
4561 struct ureg_dst address[3];
4562 struct ureg_src samplers[PIPE_MAX_SAMPLERS];
4563 struct ureg_src systemValues[SYSTEM_VALUE_MAX];
4564 struct tgsi_texture_offset tex_offsets[MAX_GLSL_TEXTURE_OFFSET];
4565 unsigned *array_sizes;
4566 struct array_decl *input_arrays;
4567 struct array_decl *output_arrays;
4568
4569 const GLuint *inputMapping;
4570 const GLuint *outputMapping;
4571
4572 /* For every instruction that contains a label (eg CALL), keep
4573 * details so that we can go back afterwards and emit the correct
4574 * tgsi instruction number for each label.
4575 */
4576 struct label *labels;
4577 unsigned labels_size;
4578 unsigned labels_count;
4579
4580 /* Keep a record of the tgsi instruction number that each mesa
4581 * instruction starts at, will be used to fix up labels after
4582 * translation.
4583 */
4584 unsigned *insn;
4585 unsigned insn_size;
4586 unsigned insn_count;
4587
4588 unsigned procType; /**< TGSI_PROCESSOR_VERTEX/FRAGMENT */
4589
4590 boolean error;
4591 };
4592
4593 /** Map Mesa's SYSTEM_VALUE_x to TGSI_SEMANTIC_x */
4594 const unsigned _mesa_sysval_to_semantic[SYSTEM_VALUE_MAX] = {
4595 /* Vertex shader
4596 */
4597 TGSI_SEMANTIC_VERTEXID,
4598 TGSI_SEMANTIC_INSTANCEID,
4599 TGSI_SEMANTIC_VERTEXID_NOBASE,
4600 TGSI_SEMANTIC_BASEVERTEX,
4601
4602 /* Geometry shader
4603 */
4604 TGSI_SEMANTIC_INVOCATIONID,
4605
4606 /* Fragment shader
4607 */
4608 TGSI_SEMANTIC_FACE,
4609 TGSI_SEMANTIC_SAMPLEID,
4610 TGSI_SEMANTIC_SAMPLEPOS,
4611 TGSI_SEMANTIC_SAMPLEMASK,
4612
4613 /* Tessellation shaders
4614 */
4615 TGSI_SEMANTIC_TESSCOORD,
4616 TGSI_SEMANTIC_VERTICESIN,
4617 TGSI_SEMANTIC_PRIMID,
4618 TGSI_SEMANTIC_TESSOUTER,
4619 TGSI_SEMANTIC_TESSINNER,
4620 };
4621
4622 /**
4623 * Make note of a branch to a label in the TGSI code.
4624 * After we've emitted all instructions, we'll go over the list
4625 * of labels built here and patch the TGSI code with the actual
4626 * location of each label.
4627 */
4628 static unsigned *get_label(struct st_translate *t, unsigned branch_target)
4629 {
4630 unsigned i;
4631
4632 if (t->labels_count + 1 >= t->labels_size) {
4633 t->labels_size = 1 << (util_logbase2(t->labels_size) + 1);
4634 t->labels = (struct label *)realloc(t->labels,
4635 t->labels_size * sizeof(struct label));
4636 if (t->labels == NULL) {
4637 static unsigned dummy;
4638 t->error = TRUE;
4639 return &dummy;
4640 }
4641 }
4642
4643 i = t->labels_count++;
4644 t->labels[i].branch_target = branch_target;
4645 return &t->labels[i].token;
4646 }
4647
4648 /**
4649 * Called prior to emitting the TGSI code for each instruction.
4650 * Allocate additional space for instructions if needed.
4651 * Update the insn[] array so the next glsl_to_tgsi_instruction points to
4652 * the next TGSI instruction.
4653 */
4654 static void set_insn_start(struct st_translate *t, unsigned start)
4655 {
4656 if (t->insn_count + 1 >= t->insn_size) {
4657 t->insn_size = 1 << (util_logbase2(t->insn_size) + 1);
4658 t->insn = (unsigned *)realloc(t->insn, t->insn_size * sizeof(t->insn[0]));
4659 if (t->insn == NULL) {
4660 t->error = TRUE;
4661 return;
4662 }
4663 }
4664
4665 t->insn[t->insn_count++] = start;
4666 }
4667
4668 /**
4669 * Map a glsl_to_tgsi constant/immediate to a TGSI immediate.
4670 */
4671 static struct ureg_src
4672 emit_immediate(struct st_translate *t,
4673 gl_constant_value values[4],
4674 int type, int size)
4675 {
4676 struct ureg_program *ureg = t->ureg;
4677
4678 switch(type)
4679 {
4680 case GL_FLOAT:
4681 return ureg_DECL_immediate(ureg, &values[0].f, size);
4682 case GL_DOUBLE:
4683 return ureg_DECL_immediate_f64(ureg, (double *)&values[0].f, size);
4684 case GL_INT:
4685 return ureg_DECL_immediate_int(ureg, &values[0].i, size);
4686 case GL_UNSIGNED_INT:
4687 case GL_BOOL:
4688 return ureg_DECL_immediate_uint(ureg, &values[0].u, size);
4689 default:
4690 assert(!"should not get here - type must be float, int, uint, or bool");
4691 return ureg_src_undef();
4692 }
4693 }
4694
4695 /**
4696 * Map a glsl_to_tgsi dst register to a TGSI ureg_dst register.
4697 */
4698 static struct ureg_dst
4699 dst_register(struct st_translate *t, gl_register_file file, unsigned index,
4700 unsigned array_id)
4701 {
4702 unsigned array;
4703
4704 switch(file) {
4705 case PROGRAM_UNDEFINED:
4706 return ureg_dst_undef();
4707
4708 case PROGRAM_TEMPORARY:
4709 /* Allocate space for temporaries on demand. */
4710 if (index >= t->temps_size) {
4711 const int inc = 4096;
4712
4713 t->temps = (struct ureg_dst*)
4714 realloc(t->temps,
4715 (t->temps_size + inc) * sizeof(struct ureg_dst));
4716 if (!t->temps)
4717 return ureg_dst_undef();
4718
4719 memset(t->temps + t->temps_size, 0, inc * sizeof(struct ureg_dst));
4720 t->temps_size += inc;
4721 }
4722
4723 if (ureg_dst_is_undef(t->temps[index]))
4724 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4725
4726 return t->temps[index];
4727
4728 case PROGRAM_ARRAY:
4729 array = index >> 16;
4730
4731 assert(array < t->num_temp_arrays);
4732
4733 if (ureg_dst_is_undef(t->arrays[array]))
4734 t->arrays[array] = ureg_DECL_array_temporary(
4735 t->ureg, t->array_sizes[array], TRUE);
4736
4737 return ureg_dst_array_offset(t->arrays[array],
4738 (int)(index & 0xFFFF) - 0x8000);
4739
4740 case PROGRAM_OUTPUT:
4741 if (!array_id) {
4742 if (t->procType == TGSI_PROCESSOR_FRAGMENT)
4743 assert(index < FRAG_RESULT_MAX);
4744 else if (t->procType == TGSI_PROCESSOR_TESS_CTRL ||
4745 t->procType == TGSI_PROCESSOR_TESS_EVAL)
4746 assert(index < VARYING_SLOT_TESS_MAX);
4747 else
4748 assert(index < VARYING_SLOT_MAX);
4749
4750 assert(t->outputMapping[index] < ARRAY_SIZE(t->outputs));
4751 assert(t->outputs[t->outputMapping[index]].File != TGSI_FILE_NULL);
4752 return t->outputs[t->outputMapping[index]];
4753 }
4754 else {
4755 struct array_decl *decl = &t->output_arrays[array_id-1];
4756 unsigned mesa_index = decl->mesa_index;
4757 int slot = t->outputMapping[mesa_index];
4758
4759 assert(slot != -1 && t->outputs[slot].File == TGSI_FILE_OUTPUT);
4760 assert(t->outputs[slot].ArrayID == array_id);
4761 return ureg_dst_array_offset(t->outputs[slot], index - mesa_index);
4762 }
4763
4764 case PROGRAM_ADDRESS:
4765 return t->address[index];
4766
4767 default:
4768 assert(!"unknown dst register file");
4769 return ureg_dst_undef();
4770 }
4771 }
4772
4773 /**
4774 * Map a glsl_to_tgsi src register to a TGSI ureg_src register.
4775 */
4776 static struct ureg_src
4777 src_register(struct st_translate *t, const st_src_reg *reg)
4778 {
4779 int index = reg->index;
4780 int double_reg2 = reg->double_reg2 ? 1 : 0;
4781
4782 switch(reg->file) {
4783 case PROGRAM_UNDEFINED:
4784 return ureg_imm4f(t->ureg, 0, 0, 0, 0);
4785
4786 case PROGRAM_TEMPORARY:
4787 case PROGRAM_ARRAY:
4788 case PROGRAM_OUTPUT:
4789 return ureg_src(dst_register(t, reg->file, reg->index, reg->array_id));
4790
4791 case PROGRAM_UNIFORM:
4792 assert(reg->index >= 0);
4793 return reg->index < t->num_constants ?
4794 t->constants[reg->index] : ureg_imm4f(t->ureg, 0, 0, 0, 0);
4795 case PROGRAM_STATE_VAR:
4796 case PROGRAM_CONSTANT: /* ie, immediate */
4797 if (reg->has_index2)
4798 return ureg_src_register(TGSI_FILE_CONSTANT, reg->index);
4799 else
4800 return reg->index >= 0 && reg->index < t->num_constants ?
4801 t->constants[reg->index] : ureg_imm4f(t->ureg, 0, 0, 0, 0);
4802
4803 case PROGRAM_IMMEDIATE:
4804 assert(reg->index >= 0 && reg->index < t->num_immediates);
4805 return t->immediates[reg->index];
4806
4807 case PROGRAM_INPUT:
4808 /* GLSL inputs are 64-bit containers, so we have to
4809 * map back to the original index and add the offset after
4810 * mapping. */
4811 index -= double_reg2;
4812 if (!reg->array_id) {
4813 assert(t->inputMapping[index] < ARRAY_SIZE(t->inputs));
4814 assert(t->inputs[t->inputMapping[index]].File != TGSI_FILE_NULL);
4815 return t->inputs[t->inputMapping[index]];
4816 }
4817 else {
4818 struct array_decl *decl = &t->input_arrays[reg->array_id-1];
4819 unsigned mesa_index = decl->mesa_index;
4820 int slot = t->inputMapping[mesa_index];
4821
4822 assert(slot != -1 && t->inputs[slot].File == TGSI_FILE_INPUT);
4823 assert(t->inputs[slot].ArrayID == reg->array_id);
4824 return ureg_src_array_offset(t->inputs[slot], index - mesa_index);
4825 }
4826
4827 case PROGRAM_ADDRESS:
4828 return ureg_src(t->address[reg->index]);
4829
4830 case PROGRAM_SYSTEM_VALUE:
4831 assert(reg->index < (int) ARRAY_SIZE(t->systemValues));
4832 return t->systemValues[reg->index];
4833
4834 default:
4835 assert(!"unknown src register file");
4836 return ureg_src_undef();
4837 }
4838 }
4839
4840 /**
4841 * Create a TGSI ureg_dst register from an st_dst_reg.
4842 */
4843 static struct ureg_dst
4844 translate_dst(struct st_translate *t,
4845 const st_dst_reg *dst_reg,
4846 bool saturate, bool clamp_color)
4847 {
4848 struct ureg_dst dst = dst_register(t, dst_reg->file, dst_reg->index,
4849 dst_reg->array_id);
4850
4851 if (dst.File == TGSI_FILE_NULL)
4852 return dst;
4853
4854 dst = ureg_writemask(dst, dst_reg->writemask);
4855
4856 if (saturate)
4857 dst = ureg_saturate(dst);
4858 else if (clamp_color && dst_reg->file == PROGRAM_OUTPUT) {
4859 /* Clamp colors for ARB_color_buffer_float. */
4860 switch (t->procType) {
4861 case TGSI_PROCESSOR_VERTEX:
4862 /* This can only occur with a compatibility profile, which doesn't
4863 * support geometry shaders. */
4864 if (dst_reg->index == VARYING_SLOT_COL0 ||
4865 dst_reg->index == VARYING_SLOT_COL1 ||
4866 dst_reg->index == VARYING_SLOT_BFC0 ||
4867 dst_reg->index == VARYING_SLOT_BFC1) {
4868 dst = ureg_saturate(dst);
4869 }
4870 break;
4871
4872 case TGSI_PROCESSOR_FRAGMENT:
4873 if (dst_reg->index == FRAG_RESULT_COLOR ||
4874 dst_reg->index >= FRAG_RESULT_DATA0) {
4875 dst = ureg_saturate(dst);
4876 }
4877 break;
4878 }
4879 }
4880
4881 if (dst_reg->reladdr != NULL) {
4882 assert(dst_reg->file != PROGRAM_TEMPORARY);
4883 dst = ureg_dst_indirect(dst, ureg_src(t->address[0]));
4884 }
4885
4886 if (dst_reg->has_index2) {
4887 if (dst_reg->reladdr2)
4888 dst = ureg_dst_dimension_indirect(dst, ureg_src(t->address[1]),
4889 dst_reg->index2D);
4890 else
4891 dst = ureg_dst_dimension(dst, dst_reg->index2D);
4892 }
4893
4894 return dst;
4895 }
4896
4897 /**
4898 * Create a TGSI ureg_src register from an st_src_reg.
4899 */
4900 static struct ureg_src
4901 translate_src(struct st_translate *t, const st_src_reg *src_reg)
4902 {
4903 struct ureg_src src = src_register(t, src_reg);
4904
4905 if (src_reg->has_index2) {
4906 /* 2D indexes occur with geometry shader inputs (attrib, vertex)
4907 * and UBO constant buffers (buffer, position).
4908 */
4909 if (src_reg->reladdr2)
4910 src = ureg_src_dimension_indirect(src, ureg_src(t->address[1]),
4911 src_reg->index2D);
4912 else
4913 src = ureg_src_dimension(src, src_reg->index2D);
4914 }
4915
4916 src = ureg_swizzle(src,
4917 GET_SWZ(src_reg->swizzle, 0) & 0x3,
4918 GET_SWZ(src_reg->swizzle, 1) & 0x3,
4919 GET_SWZ(src_reg->swizzle, 2) & 0x3,
4920 GET_SWZ(src_reg->swizzle, 3) & 0x3);
4921
4922 if ((src_reg->negate & 0xf) == NEGATE_XYZW)
4923 src = ureg_negate(src);
4924
4925 if (src_reg->reladdr != NULL) {
4926 assert(src_reg->file != PROGRAM_TEMPORARY);
4927 src = ureg_src_indirect(src, ureg_src(t->address[0]));
4928 }
4929
4930 return src;
4931 }
4932
4933 static struct tgsi_texture_offset
4934 translate_tex_offset(struct st_translate *t,
4935 const st_src_reg *in_offset, int idx)
4936 {
4937 struct tgsi_texture_offset offset;
4938 struct ureg_src imm_src;
4939 struct ureg_dst dst;
4940 int array;
4941
4942 switch (in_offset->file) {
4943 case PROGRAM_IMMEDIATE:
4944 assert(in_offset->index >= 0 && in_offset->index < t->num_immediates);
4945 imm_src = t->immediates[in_offset->index];
4946
4947 offset.File = imm_src.File;
4948 offset.Index = imm_src.Index;
4949 offset.SwizzleX = imm_src.SwizzleX;
4950 offset.SwizzleY = imm_src.SwizzleY;
4951 offset.SwizzleZ = imm_src.SwizzleZ;
4952 offset.Padding = 0;
4953 break;
4954 case PROGRAM_TEMPORARY:
4955 imm_src = ureg_src(t->temps[in_offset->index]);
4956 offset.File = imm_src.File;
4957 offset.Index = imm_src.Index;
4958 offset.SwizzleX = GET_SWZ(in_offset->swizzle, 0);
4959 offset.SwizzleY = GET_SWZ(in_offset->swizzle, 1);
4960 offset.SwizzleZ = GET_SWZ(in_offset->swizzle, 2);
4961 offset.Padding = 0;
4962 break;
4963 case PROGRAM_ARRAY:
4964 array = in_offset->index >> 16;
4965
4966 assert(array >= 0);
4967 assert(array < (int)t->num_temp_arrays);
4968
4969 dst = t->arrays[array];
4970 offset.File = dst.File;
4971 offset.Index = dst.Index + (in_offset->index & 0xFFFF) - 0x8000;
4972 offset.SwizzleX = GET_SWZ(in_offset->swizzle, 0);
4973 offset.SwizzleY = GET_SWZ(in_offset->swizzle, 1);
4974 offset.SwizzleZ = GET_SWZ(in_offset->swizzle, 2);
4975 offset.Padding = 0;
4976 break;
4977 default:
4978 break;
4979 }
4980 return offset;
4981 }
4982
4983 static void
4984 compile_tgsi_instruction(struct st_translate *t,
4985 const glsl_to_tgsi_instruction *inst,
4986 bool clamp_dst_color_output)
4987 {
4988 struct ureg_program *ureg = t->ureg;
4989 GLuint i;
4990 struct ureg_dst dst[2];
4991 struct ureg_src src[4];
4992 struct tgsi_texture_offset texoffsets[MAX_GLSL_TEXTURE_OFFSET];
4993
4994 unsigned num_dst;
4995 unsigned num_src;
4996 unsigned tex_target;
4997
4998 num_dst = num_inst_dst_regs(inst);
4999 num_src = num_inst_src_regs(inst);
5000
5001 for (i = 0; i < num_dst; i++)
5002 dst[i] = translate_dst(t,
5003 &inst->dst[i],
5004 inst->saturate,
5005 clamp_dst_color_output);
5006
5007 for (i = 0; i < num_src; i++)
5008 src[i] = translate_src(t, &inst->src[i]);
5009
5010 switch(inst->op) {
5011 case TGSI_OPCODE_BGNLOOP:
5012 case TGSI_OPCODE_CAL:
5013 case TGSI_OPCODE_ELSE:
5014 case TGSI_OPCODE_ENDLOOP:
5015 case TGSI_OPCODE_IF:
5016 case TGSI_OPCODE_UIF:
5017 assert(num_dst == 0);
5018 ureg_label_insn(ureg,
5019 inst->op,
5020 src, num_src,
5021 get_label(t,
5022 inst->op == TGSI_OPCODE_CAL ? inst->function->sig_id : 0));
5023 return;
5024
5025 case TGSI_OPCODE_TEX:
5026 case TGSI_OPCODE_TXB:
5027 case TGSI_OPCODE_TXD:
5028 case TGSI_OPCODE_TXL:
5029 case TGSI_OPCODE_TXP:
5030 case TGSI_OPCODE_TXQ:
5031 case TGSI_OPCODE_TXF:
5032 case TGSI_OPCODE_TEX2:
5033 case TGSI_OPCODE_TXB2:
5034 case TGSI_OPCODE_TXL2:
5035 case TGSI_OPCODE_TG4:
5036 case TGSI_OPCODE_LODQ:
5037 src[num_src] = t->samplers[inst->sampler.index];
5038 assert(src[num_src].File != TGSI_FILE_NULL);
5039 if (inst->sampler.reladdr)
5040 src[num_src] =
5041 ureg_src_indirect(src[num_src], ureg_src(t->address[2]));
5042 num_src++;
5043 for (i = 0; i < inst->tex_offset_num_offset; i++) {
5044 texoffsets[i] = translate_tex_offset(t, &inst->tex_offsets[i], i);
5045 }
5046 tex_target = st_translate_texture_target(inst->tex_target, inst->tex_shadow);
5047
5048 ureg_tex_insn(ureg,
5049 inst->op,
5050 dst, num_dst,
5051 tex_target,
5052 texoffsets, inst->tex_offset_num_offset,
5053 src, num_src);
5054 return;
5055
5056 case TGSI_OPCODE_SCS:
5057 dst[0] = ureg_writemask(dst[0], TGSI_WRITEMASK_XY);
5058 ureg_insn(ureg, inst->op, dst, num_dst, src, num_src);
5059 break;
5060
5061 default:
5062 ureg_insn(ureg,
5063 inst->op,
5064 dst, num_dst,
5065 src, num_src);
5066 break;
5067 }
5068 }
5069
5070 /**
5071 * Emit the TGSI instructions for inverting and adjusting WPOS.
5072 * This code is unavoidable because it also depends on whether
5073 * a FBO is bound (STATE_FB_WPOS_Y_TRANSFORM).
5074 */
5075 static void
5076 emit_wpos_adjustment( struct st_translate *t,
5077 int wpos_transform_const,
5078 boolean invert,
5079 GLfloat adjX, GLfloat adjY[2])
5080 {
5081 struct ureg_program *ureg = t->ureg;
5082
5083 assert(wpos_transform_const >= 0);
5084
5085 /* Fragment program uses fragment position input.
5086 * Need to replace instances of INPUT[WPOS] with temp T
5087 * where T = INPUT[WPOS] is inverted by Y.
5088 */
5089 struct ureg_src wpostrans = ureg_DECL_constant(ureg, wpos_transform_const);
5090 struct ureg_dst wpos_temp = ureg_DECL_temporary( ureg );
5091 struct ureg_src wpos_input = t->inputs[t->inputMapping[VARYING_SLOT_POS]];
5092
5093 /* First, apply the coordinate shift: */
5094 if (adjX || adjY[0] || adjY[1]) {
5095 if (adjY[0] != adjY[1]) {
5096 /* Adjust the y coordinate by adjY[1] or adjY[0] respectively
5097 * depending on whether inversion is actually going to be applied
5098 * or not, which is determined by testing against the inversion
5099 * state variable used below, which will be either +1 or -1.
5100 */
5101 struct ureg_dst adj_temp = ureg_DECL_local_temporary(ureg);
5102
5103 ureg_CMP(ureg, adj_temp,
5104 ureg_scalar(wpostrans, invert ? 2 : 0),
5105 ureg_imm4f(ureg, adjX, adjY[0], 0.0f, 0.0f),
5106 ureg_imm4f(ureg, adjX, adjY[1], 0.0f, 0.0f));
5107 ureg_ADD(ureg, wpos_temp, wpos_input, ureg_src(adj_temp));
5108 } else {
5109 ureg_ADD(ureg, wpos_temp, wpos_input,
5110 ureg_imm4f(ureg, adjX, adjY[0], 0.0f, 0.0f));
5111 }
5112 wpos_input = ureg_src(wpos_temp);
5113 } else {
5114 /* MOV wpos_temp, input[wpos]
5115 */
5116 ureg_MOV( ureg, wpos_temp, wpos_input );
5117 }
5118
5119 /* Now the conditional y flip: STATE_FB_WPOS_Y_TRANSFORM.xy/zw will be
5120 * inversion/identity, or the other way around if we're drawing to an FBO.
5121 */
5122 if (invert) {
5123 /* MAD wpos_temp.y, wpos_input, wpostrans.xxxx, wpostrans.yyyy
5124 */
5125 ureg_MAD( ureg,
5126 ureg_writemask(wpos_temp, TGSI_WRITEMASK_Y ),
5127 wpos_input,
5128 ureg_scalar(wpostrans, 0),
5129 ureg_scalar(wpostrans, 1));
5130 } else {
5131 /* MAD wpos_temp.y, wpos_input, wpostrans.zzzz, wpostrans.wwww
5132 */
5133 ureg_MAD( ureg,
5134 ureg_writemask(wpos_temp, TGSI_WRITEMASK_Y ),
5135 wpos_input,
5136 ureg_scalar(wpostrans, 2),
5137 ureg_scalar(wpostrans, 3));
5138 }
5139
5140 /* Use wpos_temp as position input from here on:
5141 */
5142 t->inputs[t->inputMapping[VARYING_SLOT_POS]] = ureg_src(wpos_temp);
5143 }
5144
5145
5146 /**
5147 * Emit fragment position/ooordinate code.
5148 */
5149 static void
5150 emit_wpos(struct st_context *st,
5151 struct st_translate *t,
5152 const struct gl_program *program,
5153 struct ureg_program *ureg,
5154 int wpos_transform_const)
5155 {
5156 const struct gl_fragment_program *fp =
5157 (const struct gl_fragment_program *) program;
5158 struct pipe_screen *pscreen = st->pipe->screen;
5159 GLfloat adjX = 0.0f;
5160 GLfloat adjY[2] = { 0.0f, 0.0f };
5161 boolean invert = FALSE;
5162
5163 /* Query the pixel center conventions supported by the pipe driver and set
5164 * adjX, adjY to help out if it cannot handle the requested one internally.
5165 *
5166 * The bias of the y-coordinate depends on whether y-inversion takes place
5167 * (adjY[1]) or not (adjY[0]), which is in turn dependent on whether we are
5168 * drawing to an FBO (causes additional inversion), and whether the the pipe
5169 * driver origin and the requested origin differ (the latter condition is
5170 * stored in the 'invert' variable).
5171 *
5172 * For height = 100 (i = integer, h = half-integer, l = lower, u = upper):
5173 *
5174 * center shift only:
5175 * i -> h: +0.5
5176 * h -> i: -0.5
5177 *
5178 * inversion only:
5179 * l,i -> u,i: ( 0.0 + 1.0) * -1 + 100 = 99
5180 * l,h -> u,h: ( 0.5 + 0.0) * -1 + 100 = 99.5
5181 * u,i -> l,i: (99.0 + 1.0) * -1 + 100 = 0
5182 * u,h -> l,h: (99.5 + 0.0) * -1 + 100 = 0.5
5183 *
5184 * inversion and center shift:
5185 * l,i -> u,h: ( 0.0 + 0.5) * -1 + 100 = 99.5
5186 * l,h -> u,i: ( 0.5 + 0.5) * -1 + 100 = 99
5187 * u,i -> l,h: (99.0 + 0.5) * -1 + 100 = 0.5
5188 * u,h -> l,i: (99.5 + 0.5) * -1 + 100 = 0
5189 */
5190 if (fp->OriginUpperLeft) {
5191 /* Fragment shader wants origin in upper-left */
5192 if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT)) {
5193 /* the driver supports upper-left origin */
5194 }
5195 else if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT)) {
5196 /* the driver supports lower-left origin, need to invert Y */
5197 ureg_property(ureg, TGSI_PROPERTY_FS_COORD_ORIGIN,
5198 TGSI_FS_COORD_ORIGIN_LOWER_LEFT);
5199 invert = TRUE;
5200 }
5201 else
5202 assert(0);
5203 }
5204 else {
5205 /* Fragment shader wants origin in lower-left */
5206 if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT))
5207 /* the driver supports lower-left origin */
5208 ureg_property(ureg, TGSI_PROPERTY_FS_COORD_ORIGIN,
5209 TGSI_FS_COORD_ORIGIN_LOWER_LEFT);
5210 else if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT))
5211 /* the driver supports upper-left origin, need to invert Y */
5212 invert = TRUE;
5213 else
5214 assert(0);
5215 }
5216
5217 if (fp->PixelCenterInteger) {
5218 /* Fragment shader wants pixel center integer */
5219 if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER)) {
5220 /* the driver supports pixel center integer */
5221 adjY[1] = 1.0f;
5222 ureg_property(ureg, TGSI_PROPERTY_FS_COORD_PIXEL_CENTER,
5223 TGSI_FS_COORD_PIXEL_CENTER_INTEGER);
5224 }
5225 else if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER)) {
5226 /* the driver supports pixel center half integer, need to bias X,Y */
5227 adjX = -0.5f;
5228 adjY[0] = -0.5f;
5229 adjY[1] = 0.5f;
5230 }
5231 else
5232 assert(0);
5233 }
5234 else {
5235 /* Fragment shader wants pixel center half integer */
5236 if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER)) {
5237 /* the driver supports pixel center half integer */
5238 }
5239 else if (pscreen->get_param(pscreen, PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER)) {
5240 /* the driver supports pixel center integer, need to bias X,Y */
5241 adjX = adjY[0] = adjY[1] = 0.5f;
5242 ureg_property(ureg, TGSI_PROPERTY_FS_COORD_PIXEL_CENTER,
5243 TGSI_FS_COORD_PIXEL_CENTER_INTEGER);
5244 }
5245 else
5246 assert(0);
5247 }
5248
5249 /* we invert after adjustment so that we avoid the MOV to temporary,
5250 * and reuse the adjustment ADD instead */
5251 emit_wpos_adjustment(t, wpos_transform_const, invert, adjX, adjY);
5252 }
5253
5254 /**
5255 * OpenGL's fragment gl_FrontFace input is 1 for front-facing, 0 for back.
5256 * TGSI uses +1 for front, -1 for back.
5257 * This function converts the TGSI value to the GL value. Simply clamping/
5258 * saturating the value to [0,1] does the job.
5259 */
5260 static void
5261 emit_face_var(struct gl_context *ctx, struct st_translate *t)
5262 {
5263 struct ureg_program *ureg = t->ureg;
5264 struct ureg_dst face_temp = ureg_DECL_temporary(ureg);
5265 struct ureg_src face_input = t->inputs[t->inputMapping[VARYING_SLOT_FACE]];
5266
5267 if (ctx->Const.NativeIntegers) {
5268 ureg_FSGE(ureg, face_temp, face_input, ureg_imm1f(ureg, 0));
5269 }
5270 else {
5271 /* MOV_SAT face_temp, input[face] */
5272 ureg_MOV(ureg, ureg_saturate(face_temp), face_input);
5273 }
5274
5275 /* Use face_temp as face input from here on: */
5276 t->inputs[t->inputMapping[VARYING_SLOT_FACE]] = ureg_src(face_temp);
5277 }
5278
5279 static void
5280 emit_edgeflags(struct st_translate *t)
5281 {
5282 struct ureg_program *ureg = t->ureg;
5283 struct ureg_dst edge_dst = t->outputs[t->outputMapping[VARYING_SLOT_EDGE]];
5284 struct ureg_src edge_src = t->inputs[t->inputMapping[VERT_ATTRIB_EDGEFLAG]];
5285
5286 ureg_MOV(ureg, edge_dst, edge_src);
5287 }
5288
5289 static bool
5290 find_array(unsigned attr, struct array_decl *arrays, unsigned count,
5291 unsigned *array_id, unsigned *array_size)
5292 {
5293 unsigned i;
5294
5295 for (i = 0; i < count; i++) {
5296 struct array_decl *decl = &arrays[i];
5297
5298 if (attr == decl->mesa_index) {
5299 *array_id = decl->array_id;
5300 *array_size = decl->array_size;
5301 assert(*array_size);
5302 return true;
5303 }
5304 }
5305 return false;
5306 }
5307
5308 /**
5309 * Translate intermediate IR (glsl_to_tgsi_instruction) to TGSI format.
5310 * \param program the program to translate
5311 * \param numInputs number of input registers used
5312 * \param inputMapping maps Mesa fragment program inputs to TGSI generic
5313 * input indexes
5314 * \param inputSemanticName the TGSI_SEMANTIC flag for each input
5315 * \param inputSemanticIndex the semantic index (ex: which texcoord) for
5316 * each input
5317 * \param interpMode the TGSI_INTERPOLATE_LINEAR/PERSP mode for each input
5318 * \param interpLocation the TGSI_INTERPOLATE_LOC_* location for each input
5319 * \param numOutputs number of output registers used
5320 * \param outputMapping maps Mesa fragment program outputs to TGSI
5321 * generic outputs
5322 * \param outputSemanticName the TGSI_SEMANTIC flag for each output
5323 * \param outputSemanticIndex the semantic index (ex: which texcoord) for
5324 * each output
5325 *
5326 * \return PIPE_OK or PIPE_ERROR_OUT_OF_MEMORY
5327 */
5328 extern "C" enum pipe_error
5329 st_translate_program(
5330 struct gl_context *ctx,
5331 uint procType,
5332 struct ureg_program *ureg,
5333 glsl_to_tgsi_visitor *program,
5334 const struct gl_program *proginfo,
5335 GLuint numInputs,
5336 const GLuint inputMapping[],
5337 const GLuint inputSlotToAttr[],
5338 const ubyte inputSemanticName[],
5339 const ubyte inputSemanticIndex[],
5340 const GLuint interpMode[],
5341 const GLuint interpLocation[],
5342 GLuint numOutputs,
5343 const GLuint outputMapping[],
5344 const GLuint outputSlotToAttr[],
5345 const ubyte outputSemanticName[],
5346 const ubyte outputSemanticIndex[],
5347 boolean passthrough_edgeflags,
5348 boolean clamp_color)
5349 {
5350 struct st_translate *t;
5351 unsigned i;
5352 enum pipe_error ret = PIPE_OK;
5353
5354 assert(numInputs <= ARRAY_SIZE(t->inputs));
5355 assert(numOutputs <= ARRAY_SIZE(t->outputs));
5356
5357 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_FRONT_FACE] ==
5358 TGSI_SEMANTIC_FACE);
5359 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_VERTEX_ID] ==
5360 TGSI_SEMANTIC_VERTEXID);
5361 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_INSTANCE_ID] ==
5362 TGSI_SEMANTIC_INSTANCEID);
5363 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_SAMPLE_ID] ==
5364 TGSI_SEMANTIC_SAMPLEID);
5365 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_SAMPLE_POS] ==
5366 TGSI_SEMANTIC_SAMPLEPOS);
5367 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_SAMPLE_MASK_IN] ==
5368 TGSI_SEMANTIC_SAMPLEMASK);
5369 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_INVOCATION_ID] ==
5370 TGSI_SEMANTIC_INVOCATIONID);
5371 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_VERTEX_ID_ZERO_BASE] ==
5372 TGSI_SEMANTIC_VERTEXID_NOBASE);
5373 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_BASE_VERTEX] ==
5374 TGSI_SEMANTIC_BASEVERTEX);
5375 assert(_mesa_sysval_to_semantic[SYSTEM_VALUE_TESS_COORD] ==
5376 TGSI_SEMANTIC_TESSCOORD);
5377
5378 t = CALLOC_STRUCT(st_translate);
5379 if (!t) {
5380 ret = PIPE_ERROR_OUT_OF_MEMORY;
5381 goto out;
5382 }
5383
5384 t->procType = procType;
5385 t->inputMapping = inputMapping;
5386 t->outputMapping = outputMapping;
5387 t->ureg = ureg;
5388 t->num_temp_arrays = program->next_array;
5389 if (t->num_temp_arrays)
5390 t->arrays = (struct ureg_dst*)
5391 calloc(1, sizeof(t->arrays[0]) * t->num_temp_arrays);
5392
5393 /*
5394 * Declare input attributes.
5395 */
5396 switch (procType) {
5397 case TGSI_PROCESSOR_FRAGMENT:
5398 for (i = 0; i < numInputs; i++) {
5399 unsigned array_id = 0;
5400 unsigned array_size;
5401
5402 if (find_array(inputSlotToAttr[i], program->input_arrays,
5403 program->num_input_arrays, &array_id, &array_size)) {
5404 /* We've found an array. Declare it so. */
5405 t->inputs[i] = ureg_DECL_fs_input_cyl_centroid(ureg,
5406 inputSemanticName[i], inputSemanticIndex[i],
5407 interpMode[i], 0, interpLocation[i],
5408 array_id, array_size);
5409 i += array_size - 1;
5410 }
5411 else {
5412 t->inputs[i] = ureg_DECL_fs_input_cyl_centroid(ureg,
5413 inputSemanticName[i], inputSemanticIndex[i],
5414 interpMode[i], 0, interpLocation[i], 0, 1);
5415 }
5416 }
5417 break;
5418 case TGSI_PROCESSOR_GEOMETRY:
5419 case TGSI_PROCESSOR_TESS_EVAL:
5420 case TGSI_PROCESSOR_TESS_CTRL:
5421 for (i = 0; i < numInputs; i++) {
5422 unsigned array_id = 0;
5423 unsigned array_size;
5424
5425 if (find_array(inputSlotToAttr[i], program->input_arrays,
5426 program->num_input_arrays, &array_id, &array_size)) {
5427 /* We've found an array. Declare it so. */
5428 t->inputs[i] = ureg_DECL_input(ureg, inputSemanticName[i],
5429 inputSemanticIndex[i],
5430 array_id, array_size);
5431 i += array_size - 1;
5432 }
5433 else {
5434 t->inputs[i] = ureg_DECL_input(ureg, inputSemanticName[i],
5435 inputSemanticIndex[i], 0, 1);
5436 }
5437 }
5438 break;
5439 case TGSI_PROCESSOR_VERTEX:
5440 for (i = 0; i < numInputs; i++) {
5441 t->inputs[i] = ureg_DECL_vs_input(ureg, i);
5442 }
5443 break;
5444 default:
5445 assert(0);
5446 }
5447
5448 /*
5449 * Declare output attributes.
5450 */
5451 switch (procType) {
5452 case TGSI_PROCESSOR_FRAGMENT:
5453 break;
5454 case TGSI_PROCESSOR_GEOMETRY:
5455 case TGSI_PROCESSOR_TESS_EVAL:
5456 case TGSI_PROCESSOR_TESS_CTRL:
5457 case TGSI_PROCESSOR_VERTEX:
5458 for (i = 0; i < numOutputs; i++) {
5459 unsigned array_id = 0;
5460 unsigned array_size;
5461
5462 if (find_array(outputSlotToAttr[i], program->output_arrays,
5463 program->num_output_arrays, &array_id, &array_size)) {
5464 /* We've found an array. Declare it so. */
5465 t->outputs[i] = ureg_DECL_output_array(ureg,
5466 outputSemanticName[i],
5467 outputSemanticIndex[i],
5468 array_id, array_size);
5469 i += array_size - 1;
5470 }
5471 else {
5472 t->outputs[i] = ureg_DECL_output(ureg,
5473 outputSemanticName[i],
5474 outputSemanticIndex[i]);
5475 }
5476 }
5477 break;
5478 default:
5479 assert(0);
5480 }
5481
5482 if (procType == TGSI_PROCESSOR_FRAGMENT) {
5483 if (proginfo->InputsRead & VARYING_BIT_POS) {
5484 /* Must do this after setting up t->inputs. */
5485 emit_wpos(st_context(ctx), t, proginfo, ureg,
5486 program->wpos_transform_const);
5487 }
5488
5489 if (proginfo->InputsRead & VARYING_BIT_FACE)
5490 emit_face_var(ctx, t);
5491
5492 for (i = 0; i < numOutputs; i++) {
5493 switch (outputSemanticName[i]) {
5494 case TGSI_SEMANTIC_POSITION:
5495 t->outputs[i] = ureg_DECL_output(ureg,
5496 TGSI_SEMANTIC_POSITION, /* Z/Depth */
5497 outputSemanticIndex[i]);
5498 t->outputs[i] = ureg_writemask(t->outputs[i], TGSI_WRITEMASK_Z);
5499 break;
5500 case TGSI_SEMANTIC_STENCIL:
5501 t->outputs[i] = ureg_DECL_output(ureg,
5502 TGSI_SEMANTIC_STENCIL, /* Stencil */
5503 outputSemanticIndex[i]);
5504 t->outputs[i] = ureg_writemask(t->outputs[i], TGSI_WRITEMASK_Y);
5505 break;
5506 case TGSI_SEMANTIC_COLOR:
5507 t->outputs[i] = ureg_DECL_output(ureg,
5508 TGSI_SEMANTIC_COLOR,
5509 outputSemanticIndex[i]);
5510 break;
5511 case TGSI_SEMANTIC_SAMPLEMASK:
5512 t->outputs[i] = ureg_DECL_output(ureg,
5513 TGSI_SEMANTIC_SAMPLEMASK,
5514 outputSemanticIndex[i]);
5515 /* TODO: If we ever support more than 32 samples, this will have
5516 * to become an array.
5517 */
5518 t->outputs[i] = ureg_writemask(t->outputs[i], TGSI_WRITEMASK_X);
5519 break;
5520 default:
5521 assert(!"fragment shader outputs must be POSITION/STENCIL/COLOR");
5522 ret = PIPE_ERROR_BAD_INPUT;
5523 goto out;
5524 }
5525 }
5526 }
5527 else if (procType == TGSI_PROCESSOR_VERTEX) {
5528 for (i = 0; i < numOutputs; i++) {
5529 if (outputSemanticName[i] == TGSI_SEMANTIC_FOG) {
5530 /* force register to contain a fog coordinate in the form (F, 0, 0, 1). */
5531 ureg_MOV(ureg,
5532 ureg_writemask(t->outputs[i], TGSI_WRITEMASK_YZW),
5533 ureg_imm4f(ureg, 0.0f, 0.0f, 0.0f, 1.0f));
5534 t->outputs[i] = ureg_writemask(t->outputs[i], TGSI_WRITEMASK_X);
5535 }
5536 }
5537 if (passthrough_edgeflags)
5538 emit_edgeflags(t);
5539 }
5540
5541 /* Declare address register.
5542 */
5543 if (program->num_address_regs > 0) {
5544 assert(program->num_address_regs <= 3);
5545 for (int i = 0; i < program->num_address_regs; i++)
5546 t->address[i] = ureg_DECL_address(ureg);
5547 }
5548
5549 /* Declare misc input registers
5550 */
5551 {
5552 GLbitfield sysInputs = proginfo->SystemValuesRead;
5553 unsigned numSys = 0;
5554 for (i = 0; sysInputs; i++) {
5555 if (sysInputs & (1 << i)) {
5556 unsigned semName = _mesa_sysval_to_semantic[i];
5557 t->systemValues[i] = ureg_DECL_system_value(ureg, numSys, semName, 0);
5558 if (semName == TGSI_SEMANTIC_INSTANCEID ||
5559 semName == TGSI_SEMANTIC_VERTEXID) {
5560 /* From Gallium perspective, these system values are always
5561 * integer, and require native integer support. However, if
5562 * native integer is supported on the vertex stage but not the
5563 * pixel stage (e.g, i915g + draw), Mesa will generate IR that
5564 * assumes these system values are floats. To resolve the
5565 * inconsistency, we insert a U2F.
5566 */
5567 struct st_context *st = st_context(ctx);
5568 struct pipe_screen *pscreen = st->pipe->screen;
5569 assert(procType == TGSI_PROCESSOR_VERTEX);
5570 assert(pscreen->get_shader_param(pscreen, PIPE_SHADER_VERTEX, PIPE_SHADER_CAP_INTEGERS));
5571 (void) pscreen;
5572 if (!ctx->Const.NativeIntegers) {
5573 struct ureg_dst temp = ureg_DECL_local_temporary(t->ureg);
5574 ureg_U2F( t->ureg, ureg_writemask(temp, TGSI_WRITEMASK_X), t->systemValues[i]);
5575 t->systemValues[i] = ureg_scalar(ureg_src(temp), 0);
5576 }
5577 }
5578 numSys++;
5579 sysInputs &= ~(1 << i);
5580 }
5581 }
5582 }
5583
5584 t->array_sizes = program->array_sizes;
5585 t->input_arrays = program->input_arrays;
5586 t->output_arrays = program->output_arrays;
5587
5588 /* Emit constants and uniforms. TGSI uses a single index space for these,
5589 * so we put all the translated regs in t->constants.
5590 */
5591 if (proginfo->Parameters) {
5592 t->constants = (struct ureg_src *)
5593 calloc(proginfo->Parameters->NumParameters, sizeof(t->constants[0]));
5594 if (t->constants == NULL) {
5595 ret = PIPE_ERROR_OUT_OF_MEMORY;
5596 goto out;
5597 }
5598 t->num_constants = proginfo->Parameters->NumParameters;
5599
5600 for (i = 0; i < proginfo->Parameters->NumParameters; i++) {
5601 switch (proginfo->Parameters->Parameters[i].Type) {
5602 case PROGRAM_STATE_VAR:
5603 case PROGRAM_UNIFORM:
5604 t->constants[i] = ureg_DECL_constant(ureg, i);
5605 break;
5606
5607 /* Emit immediates for PROGRAM_CONSTANT only when there's no indirect
5608 * addressing of the const buffer.
5609 * FIXME: Be smarter and recognize param arrays:
5610 * indirect addressing is only valid within the referenced
5611 * array.
5612 */
5613 case PROGRAM_CONSTANT:
5614 if (program->indirect_addr_consts)
5615 t->constants[i] = ureg_DECL_constant(ureg, i);
5616 else
5617 t->constants[i] = emit_immediate(t,
5618 proginfo->Parameters->ParameterValues[i],
5619 proginfo->Parameters->Parameters[i].DataType,
5620 4);
5621 break;
5622 default:
5623 break;
5624 }
5625 }
5626 }
5627
5628 if (program->shader) {
5629 unsigned num_ubos = program->shader->NumUniformBlocks;
5630
5631 for (i = 0; i < num_ubos; i++) {
5632 unsigned size = program->shader->UniformBlocks[i].UniformBufferSize;
5633 unsigned num_const_vecs = (size + 15) / 16;
5634 unsigned first, last;
5635 assert(num_const_vecs > 0);
5636 first = 0;
5637 last = num_const_vecs > 0 ? num_const_vecs - 1 : 0;
5638 ureg_DECL_constant2D(t->ureg, first, last, i + 1);
5639 }
5640 }
5641
5642 /* Emit immediate values.
5643 */
5644 t->immediates = (struct ureg_src *)
5645 calloc(program->num_immediates, sizeof(struct ureg_src));
5646 if (t->immediates == NULL) {
5647 ret = PIPE_ERROR_OUT_OF_MEMORY;
5648 goto out;
5649 }
5650 t->num_immediates = program->num_immediates;
5651
5652 i = 0;
5653 foreach_in_list(immediate_storage, imm, &program->immediates) {
5654 assert(i < program->num_immediates);
5655 t->immediates[i++] = emit_immediate(t, imm->values, imm->type, imm->size32);
5656 }
5657 assert(i == program->num_immediates);
5658
5659 /* texture samplers */
5660 for (i = 0; i < ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits; i++) {
5661 if (program->samplers_used & (1 << i)) {
5662 unsigned type;
5663
5664 t->samplers[i] = ureg_DECL_sampler(ureg, i);
5665
5666 switch (program->sampler_types[i]) {
5667 case GLSL_TYPE_INT:
5668 type = TGSI_RETURN_TYPE_SINT;
5669 break;
5670 case GLSL_TYPE_UINT:
5671 type = TGSI_RETURN_TYPE_UINT;
5672 break;
5673 case GLSL_TYPE_FLOAT:
5674 type = TGSI_RETURN_TYPE_FLOAT;
5675 break;
5676 default:
5677 unreachable("not reached");
5678 }
5679
5680 ureg_DECL_sampler_view( ureg, i, program->sampler_targets[i],
5681 type, type, type, type );
5682 }
5683 }
5684
5685 /* Emit each instruction in turn:
5686 */
5687 foreach_in_list(glsl_to_tgsi_instruction, inst, &program->instructions) {
5688 set_insn_start(t, ureg_get_instruction_number(ureg));
5689 compile_tgsi_instruction(t, inst, clamp_color);
5690 }
5691
5692 /* Fix up all emitted labels:
5693 */
5694 for (i = 0; i < t->labels_count; i++) {
5695 ureg_fixup_label(ureg, t->labels[i].token,
5696 t->insn[t->labels[i].branch_target]);
5697 }
5698
5699 out:
5700 if (t) {
5701 free(t->arrays);
5702 free(t->temps);
5703 free(t->insn);
5704 free(t->labels);
5705 free(t->constants);
5706 t->num_constants = 0;
5707 free(t->immediates);
5708 t->num_immediates = 0;
5709
5710 if (t->error) {
5711 debug_printf("%s: translate error flag set\n", __func__);
5712 }
5713
5714 FREE(t);
5715 }
5716
5717 return ret;
5718 }
5719 /* ----------------------------- End TGSI code ------------------------------ */
5720
5721
5722 /**
5723 * Convert a shader's GLSL IR into a Mesa gl_program, although without
5724 * generating Mesa IR.
5725 */
5726 static struct gl_program *
5727 get_mesa_program(struct gl_context *ctx,
5728 struct gl_shader_program *shader_program,
5729 struct gl_shader *shader)
5730 {
5731 glsl_to_tgsi_visitor* v;
5732 struct gl_program *prog;
5733 GLenum target = _mesa_shader_stage_to_program(shader->Stage);
5734 bool progress;
5735 struct gl_shader_compiler_options *options =
5736 &ctx->Const.ShaderCompilerOptions[_mesa_shader_enum_to_shader_stage(shader->Type)];
5737 struct pipe_screen *pscreen = ctx->st->pipe->screen;
5738 unsigned ptarget = st_shader_stage_to_ptarget(shader->Stage);
5739
5740 validate_ir_tree(shader->ir);
5741
5742 prog = ctx->Driver.NewProgram(ctx, target, shader_program->Name);
5743 if (!prog)
5744 return NULL;
5745 prog->Parameters = _mesa_new_parameter_list();
5746 v = new glsl_to_tgsi_visitor();
5747 v->ctx = ctx;
5748 v->prog = prog;
5749 v->shader_program = shader_program;
5750 v->shader = shader;
5751 v->options = options;
5752 v->glsl_version = ctx->Const.GLSLVersion;
5753 v->native_integers = ctx->Const.NativeIntegers;
5754
5755 v->have_sqrt = pscreen->get_shader_param(pscreen, ptarget,
5756 PIPE_SHADER_CAP_TGSI_SQRT_SUPPORTED);
5757 v->have_fma = pscreen->get_shader_param(pscreen, ptarget,
5758 PIPE_SHADER_CAP_TGSI_FMA_SUPPORTED);
5759
5760 _mesa_copy_linked_program_data(shader->Stage, shader_program, prog);
5761 _mesa_generate_parameters_list_for_uniforms(shader_program, shader,
5762 prog->Parameters);
5763
5764 /* Remove reads from output registers. */
5765 lower_output_reads(shader->Stage, shader->ir);
5766
5767 /* Emit intermediate IR for main(). */
5768 visit_exec_list(shader->ir, v);
5769
5770 /* Now emit bodies for any functions that were used. */
5771 do {
5772 progress = GL_FALSE;
5773
5774 foreach_in_list(function_entry, entry, &v->function_signatures) {
5775 if (!entry->bgn_inst) {
5776 v->current_function = entry;
5777
5778 entry->bgn_inst = v->emit_asm(NULL, TGSI_OPCODE_BGNSUB);
5779 entry->bgn_inst->function = entry;
5780
5781 visit_exec_list(&entry->sig->body, v);
5782
5783 glsl_to_tgsi_instruction *last;
5784 last = (glsl_to_tgsi_instruction *)v->instructions.get_tail();
5785 if (last->op != TGSI_OPCODE_RET)
5786 v->emit_asm(NULL, TGSI_OPCODE_RET);
5787
5788 glsl_to_tgsi_instruction *end;
5789 end = v->emit_asm(NULL, TGSI_OPCODE_ENDSUB);
5790 end->function = entry;
5791
5792 progress = GL_TRUE;
5793 }
5794 }
5795 } while (progress);
5796
5797 #if 0
5798 /* Print out some information (for debugging purposes) used by the
5799 * optimization passes. */
5800 {
5801 int i;
5802 int *first_writes = rzalloc_array(v->mem_ctx, int, v->next_temp);
5803 int *first_reads = rzalloc_array(v->mem_ctx, int, v->next_temp);
5804 int *last_writes = rzalloc_array(v->mem_ctx, int, v->next_temp);
5805 int *last_reads = rzalloc_array(v->mem_ctx, int, v->next_temp);
5806
5807 for (i = 0; i < v->next_temp; i++) {
5808 first_writes[i] = -1;
5809 first_reads[i] = -1;
5810 last_writes[i] = -1;
5811 last_reads[i] = -1;
5812 }
5813 v->get_first_temp_read(first_reads);
5814 v->get_last_temp_read_first_temp_write(last_reads, first_writes);
5815 v->get_last_temp_write(last_writes);
5816 for (i = 0; i < v->next_temp; i++)
5817 printf("Temp %d: FR=%3d FW=%3d LR=%3d LW=%3d\n", i, first_reads[i],
5818 first_writes[i],
5819 last_reads[i],
5820 last_writes[i]);
5821 ralloc_free(first_writes);
5822 ralloc_free(first_reads);
5823 ralloc_free(last_writes);
5824 ralloc_free(last_reads);
5825 }
5826 #endif
5827
5828 /* Perform optimizations on the instructions in the glsl_to_tgsi_visitor. */
5829 v->simplify_cmp();
5830
5831 if (shader->Type != GL_TESS_CONTROL_SHADER &&
5832 shader->Type != GL_TESS_EVALUATION_SHADER)
5833 v->copy_propagate();
5834
5835 while (v->eliminate_dead_code());
5836
5837 v->merge_two_dsts();
5838 v->merge_registers();
5839 v->renumber_registers();
5840
5841 /* Write the END instruction. */
5842 v->emit_asm(NULL, TGSI_OPCODE_END);
5843
5844 if (ctx->_Shader->Flags & GLSL_DUMP) {
5845 _mesa_log("\n");
5846 _mesa_log("GLSL IR for linked %s program %d:\n",
5847 _mesa_shader_stage_to_string(shader->Stage),
5848 shader_program->Name);
5849 _mesa_print_ir(_mesa_get_log_file(), shader->ir, NULL);
5850 _mesa_log("\n\n");
5851 }
5852
5853 prog->Instructions = NULL;
5854 prog->NumInstructions = 0;
5855
5856 do_set_program_inouts(shader->ir, prog, shader->Stage);
5857 shrink_array_declarations(v->input_arrays, v->num_input_arrays,
5858 prog->InputsRead, prog->PatchInputsRead);
5859 shrink_array_declarations(v->output_arrays, v->num_output_arrays,
5860 prog->OutputsWritten, prog->PatchOutputsWritten);
5861 count_resources(v, prog);
5862
5863 /* This must be done before the uniform storage is associated. */
5864 if (shader->Type == GL_FRAGMENT_SHADER &&
5865 prog->InputsRead & VARYING_BIT_POS){
5866 static const gl_state_index wposTransformState[STATE_LENGTH] = {
5867 STATE_INTERNAL, STATE_FB_WPOS_Y_TRANSFORM
5868 };
5869
5870 v->wpos_transform_const = _mesa_add_state_reference(prog->Parameters,
5871 wposTransformState);
5872 }
5873
5874 _mesa_reference_program(ctx, &shader->Program, prog);
5875
5876 /* This has to be done last. Any operation the can cause
5877 * prog->ParameterValues to get reallocated (e.g., anything that adds a
5878 * program constant) has to happen before creating this linkage.
5879 */
5880 _mesa_associate_uniform_storage(ctx, shader_program, prog->Parameters);
5881 if (!shader_program->LinkStatus) {
5882 free_glsl_to_tgsi_visitor(v);
5883 return NULL;
5884 }
5885
5886 struct st_vertex_program *stvp;
5887 struct st_fragment_program *stfp;
5888 struct st_geometry_program *stgp;
5889 struct st_tessctrl_program *sttcp;
5890 struct st_tesseval_program *sttep;
5891
5892 switch (shader->Type) {
5893 case GL_VERTEX_SHADER:
5894 stvp = (struct st_vertex_program *)prog;
5895 stvp->glsl_to_tgsi = v;
5896 break;
5897 case GL_FRAGMENT_SHADER:
5898 stfp = (struct st_fragment_program *)prog;
5899 stfp->glsl_to_tgsi = v;
5900 break;
5901 case GL_GEOMETRY_SHADER:
5902 stgp = (struct st_geometry_program *)prog;
5903 stgp->glsl_to_tgsi = v;
5904 break;
5905 case GL_TESS_CONTROL_SHADER:
5906 sttcp = (struct st_tessctrl_program *)prog;
5907 sttcp->glsl_to_tgsi = v;
5908 break;
5909 case GL_TESS_EVALUATION_SHADER:
5910 sttep = (struct st_tesseval_program *)prog;
5911 sttep->glsl_to_tgsi = v;
5912 break;
5913 default:
5914 assert(!"should not be reached");
5915 return NULL;
5916 }
5917
5918 return prog;
5919 }
5920
5921 extern "C" {
5922
5923 static void
5924 st_dump_program_for_shader_db(struct gl_context *ctx,
5925 struct gl_shader_program *prog)
5926 {
5927 /* Dump only successfully compiled and linked shaders to the specified
5928 * file. This is for shader-db.
5929 *
5930 * These options allow some pre-processing of shaders while dumping,
5931 * because some apps have ill-formed shaders.
5932 */
5933 const char *dump_filename = os_get_option("ST_DUMP_SHADERS");
5934 const char *insert_directives = os_get_option("ST_DUMP_INSERT");
5935
5936 if (dump_filename && prog->Name != 0) {
5937 FILE *f = fopen(dump_filename, "a");
5938
5939 if (f) {
5940 for (unsigned i = 0; i < prog->NumShaders; i++) {
5941 const struct gl_shader *sh = prog->Shaders[i];
5942 const char *source;
5943 bool skip_version = false;
5944
5945 if (!sh)
5946 continue;
5947
5948 source = sh->Source;
5949
5950 /* This string mustn't be changed. shader-db uses it to find
5951 * where the shader begins.
5952 */
5953 fprintf(f, "GLSL %s shader %d source for linked program %d:\n",
5954 _mesa_shader_stage_to_string(sh->Stage),
5955 i, prog->Name);
5956
5957 /* Dump the forced version if set. */
5958 if (ctx->Const.ForceGLSLVersion) {
5959 fprintf(f, "#version %i\n", ctx->Const.ForceGLSLVersion);
5960 skip_version = true;
5961 }
5962
5963 /* Insert directives (optional). */
5964 if (insert_directives) {
5965 if (!ctx->Const.ForceGLSLVersion && prog->Version)
5966 fprintf(f, "#version %i\n", prog->Version);
5967 fprintf(f, "%s\n", insert_directives);
5968 skip_version = true;
5969 }
5970
5971 if (skip_version && strncmp(source, "#version ", 9) == 0) {
5972 const char *next_line = strstr(source, "\n");
5973
5974 if (next_line)
5975 source = next_line + 1;
5976 else
5977 continue;
5978 }
5979
5980 fprintf(f, "%s", source);
5981 fprintf(f, "\n");
5982 }
5983 fclose(f);
5984 }
5985 }
5986 }
5987
5988 /**
5989 * Link a shader.
5990 * Called via ctx->Driver.LinkShader()
5991 * This actually involves converting GLSL IR into an intermediate TGSI-like IR
5992 * with code lowering and other optimizations.
5993 */
5994 GLboolean
5995 st_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
5996 {
5997 struct pipe_screen *pscreen = ctx->st->pipe->screen;
5998 assert(prog->LinkStatus);
5999
6000 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
6001 if (prog->_LinkedShaders[i] == NULL)
6002 continue;
6003
6004 bool progress;
6005 exec_list *ir = prog->_LinkedShaders[i]->ir;
6006 gl_shader_stage stage = _mesa_shader_enum_to_shader_stage(prog->_LinkedShaders[i]->Type);
6007 const struct gl_shader_compiler_options *options =
6008 &ctx->Const.ShaderCompilerOptions[stage];
6009 unsigned ptarget = st_shader_stage_to_ptarget(stage);
6010 bool have_dround = pscreen->get_shader_param(pscreen, ptarget,
6011 PIPE_SHADER_CAP_TGSI_DROUND_SUPPORTED);
6012 bool have_dfrexp = pscreen->get_shader_param(pscreen, ptarget,
6013 PIPE_SHADER_CAP_TGSI_DFRACEXP_DLDEXP_SUPPORTED);
6014
6015 /* If there are forms of indirect addressing that the driver
6016 * cannot handle, perform the lowering pass.
6017 */
6018 if (options->EmitNoIndirectInput || options->EmitNoIndirectOutput ||
6019 options->EmitNoIndirectTemp || options->EmitNoIndirectUniform) {
6020 lower_variable_index_to_cond_assign(prog->_LinkedShaders[i]->Stage, ir,
6021 options->EmitNoIndirectInput,
6022 options->EmitNoIndirectOutput,
6023 options->EmitNoIndirectTemp,
6024 options->EmitNoIndirectUniform);
6025 }
6026
6027 if (ctx->Extensions.ARB_shading_language_packing) {
6028 unsigned lower_inst = LOWER_PACK_SNORM_2x16 |
6029 LOWER_UNPACK_SNORM_2x16 |
6030 LOWER_PACK_UNORM_2x16 |
6031 LOWER_UNPACK_UNORM_2x16 |
6032 LOWER_PACK_SNORM_4x8 |
6033 LOWER_UNPACK_SNORM_4x8 |
6034 LOWER_UNPACK_UNORM_4x8 |
6035 LOWER_PACK_UNORM_4x8 |
6036 LOWER_PACK_HALF_2x16 |
6037 LOWER_UNPACK_HALF_2x16;
6038
6039 if (ctx->Extensions.ARB_gpu_shader5)
6040 lower_inst |= LOWER_PACK_USE_BFI |
6041 LOWER_PACK_USE_BFE;
6042
6043 lower_packing_builtins(ir, lower_inst);
6044 }
6045
6046 if (!pscreen->get_param(pscreen, PIPE_CAP_TEXTURE_GATHER_OFFSETS))
6047 lower_offset_arrays(ir);
6048 do_mat_op_to_vec(ir);
6049 lower_instructions(ir,
6050 MOD_TO_FLOOR |
6051 DIV_TO_MUL_RCP |
6052 EXP_TO_EXP2 |
6053 LOG_TO_LOG2 |
6054 LDEXP_TO_ARITH |
6055 (have_dfrexp ? 0 : DFREXP_DLDEXP_TO_ARITH) |
6056 CARRY_TO_ARITH |
6057 BORROW_TO_ARITH |
6058 (have_dround ? 0 : DOPS_TO_DFRAC) |
6059 (options->EmitNoPow ? POW_TO_EXP2 : 0) |
6060 (!ctx->Const.NativeIntegers ? INT_DIV_TO_MUL_RCP : 0) |
6061 (options->EmitNoSat ? SAT_TO_CLAMP : 0));
6062
6063 lower_ubo_reference(prog->_LinkedShaders[i], ir);
6064 do_vec_index_to_cond_assign(ir);
6065 lower_vector_insert(ir, true);
6066 lower_quadop_vector(ir, false);
6067 lower_noise(ir);
6068 if (options->MaxIfDepth == 0) {
6069 lower_discard(ir);
6070 }
6071
6072 do {
6073 progress = false;
6074
6075 progress = do_lower_jumps(ir, true, true, options->EmitNoMainReturn, options->EmitNoCont, options->EmitNoLoops) || progress;
6076
6077 progress = do_common_optimization(ir, true, true, options,
6078 ctx->Const.NativeIntegers)
6079 || progress;
6080
6081 progress = lower_if_to_cond_assign(ir, options->MaxIfDepth) || progress;
6082
6083 } while (progress);
6084
6085 validate_ir_tree(ir);
6086 }
6087
6088 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
6089 struct gl_program *linked_prog;
6090
6091 if (prog->_LinkedShaders[i] == NULL)
6092 continue;
6093
6094 linked_prog = get_mesa_program(ctx, prog, prog->_LinkedShaders[i]);
6095
6096 if (linked_prog) {
6097 _mesa_reference_program(ctx, &prog->_LinkedShaders[i]->Program,
6098 linked_prog);
6099 if (!ctx->Driver.ProgramStringNotify(ctx,
6100 _mesa_shader_stage_to_program(i),
6101 linked_prog)) {
6102 _mesa_reference_program(ctx, &prog->_LinkedShaders[i]->Program,
6103 NULL);
6104 _mesa_reference_program(ctx, &linked_prog, NULL);
6105 return GL_FALSE;
6106 }
6107 }
6108
6109 _mesa_reference_program(ctx, &linked_prog, NULL);
6110 }
6111
6112 st_dump_program_for_shader_db(ctx, prog);
6113 return GL_TRUE;
6114 }
6115
6116 void
6117 st_translate_stream_output_info(glsl_to_tgsi_visitor *glsl_to_tgsi,
6118 const GLuint outputMapping[],
6119 struct pipe_stream_output_info *so)
6120 {
6121 unsigned i;
6122 struct gl_transform_feedback_info *info =
6123 &glsl_to_tgsi->shader_program->LinkedTransformFeedback;
6124
6125 for (i = 0; i < info->NumOutputs; i++) {
6126 so->output[i].register_index =
6127 outputMapping[info->Outputs[i].OutputRegister];
6128 so->output[i].start_component = info->Outputs[i].ComponentOffset;
6129 so->output[i].num_components = info->Outputs[i].NumComponents;
6130 so->output[i].output_buffer = info->Outputs[i].OutputBuffer;
6131 so->output[i].dst_offset = info->Outputs[i].DstOffset;
6132 so->output[i].stream = info->Outputs[i].StreamId;
6133 }
6134
6135 for (i = 0; i < PIPE_MAX_SO_BUFFERS; i++) {
6136 so->stride[i] = info->BufferStride[i];
6137 }
6138 so->num_outputs = info->NumOutputs;
6139 }
6140
6141 } /* extern "C" */