mesa: move ShaderCompilerOptions into gl_constants
[mesa.git] / src / mesa / program / ir_to_mesa.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 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 */
25
26 /**
27 * \file ir_to_mesa.cpp
28 *
29 * Translate GLSL IR to Mesa's gl_program representation.
30 */
31
32 #include <stdio.h>
33 #include "main/compiler.h"
34 #include "ir.h"
35 #include "ir_visitor.h"
36 #include "ir_expression_flattening.h"
37 #include "ir_uniform.h"
38 #include "glsl_types.h"
39 #include "glsl_parser_extras.h"
40 #include "../glsl/program.h"
41 #include "ir_optimization.h"
42 #include "ast.h"
43 #include "linker.h"
44
45 #include "main/mtypes.h"
46 #include "main/shaderobj.h"
47 #include "main/uniforms.h"
48 #include "program/hash_table.h"
49
50 extern "C" {
51 #include "main/shaderapi.h"
52 #include "program/prog_instruction.h"
53 #include "program/prog_optimize.h"
54 #include "program/prog_print.h"
55 #include "program/program.h"
56 #include "program/prog_parameter.h"
57 #include "program/sampler.h"
58 }
59
60 static int swizzle_for_size(int size);
61
62 namespace {
63
64 class src_reg;
65 class dst_reg;
66
67 /**
68 * This struct is a corresponding struct to Mesa prog_src_register, with
69 * wider fields.
70 */
71 class src_reg {
72 public:
73 src_reg(gl_register_file file, int index, const glsl_type *type)
74 {
75 this->file = file;
76 this->index = index;
77 if (type && (type->is_scalar() || type->is_vector() || type->is_matrix()))
78 this->swizzle = swizzle_for_size(type->vector_elements);
79 else
80 this->swizzle = SWIZZLE_XYZW;
81 this->negate = 0;
82 this->reladdr = NULL;
83 }
84
85 src_reg()
86 {
87 this->file = PROGRAM_UNDEFINED;
88 this->index = 0;
89 this->swizzle = 0;
90 this->negate = 0;
91 this->reladdr = NULL;
92 }
93
94 explicit src_reg(dst_reg reg);
95
96 gl_register_file file; /**< PROGRAM_* from Mesa */
97 int index; /**< temporary index, VERT_ATTRIB_*, VARYING_SLOT_*, etc. */
98 GLuint swizzle; /**< SWIZZLE_XYZWONEZERO swizzles from Mesa. */
99 int negate; /**< NEGATE_XYZW mask from mesa */
100 /** Register index should be offset by the integer in this reg. */
101 src_reg *reladdr;
102 };
103
104 class dst_reg {
105 public:
106 dst_reg(gl_register_file file, int writemask)
107 {
108 this->file = file;
109 this->index = 0;
110 this->writemask = writemask;
111 this->cond_mask = COND_TR;
112 this->reladdr = NULL;
113 }
114
115 dst_reg()
116 {
117 this->file = PROGRAM_UNDEFINED;
118 this->index = 0;
119 this->writemask = 0;
120 this->cond_mask = COND_TR;
121 this->reladdr = NULL;
122 }
123
124 explicit dst_reg(src_reg reg);
125
126 gl_register_file file; /**< PROGRAM_* from Mesa */
127 int index; /**< temporary index, VERT_ATTRIB_*, VARYING_SLOT_*, etc. */
128 int writemask; /**< Bitfield of WRITEMASK_[XYZW] */
129 GLuint cond_mask:4;
130 /** Register index should be offset by the integer in this reg. */
131 src_reg *reladdr;
132 };
133
134 } /* anonymous namespace */
135
136 src_reg::src_reg(dst_reg reg)
137 {
138 this->file = reg.file;
139 this->index = reg.index;
140 this->swizzle = SWIZZLE_XYZW;
141 this->negate = 0;
142 this->reladdr = reg.reladdr;
143 }
144
145 dst_reg::dst_reg(src_reg reg)
146 {
147 this->file = reg.file;
148 this->index = reg.index;
149 this->writemask = WRITEMASK_XYZW;
150 this->cond_mask = COND_TR;
151 this->reladdr = reg.reladdr;
152 }
153
154 namespace {
155
156 class ir_to_mesa_instruction : public exec_node {
157 public:
158 DECLARE_RALLOC_CXX_OPERATORS(ir_to_mesa_instruction)
159
160 enum prog_opcode op;
161 dst_reg dst;
162 src_reg src[3];
163 /** Pointer to the ir source this tree came from for debugging */
164 ir_instruction *ir;
165 GLboolean cond_update;
166 bool saturate;
167 int sampler; /**< sampler index */
168 int tex_target; /**< One of TEXTURE_*_INDEX */
169 GLboolean tex_shadow;
170 };
171
172 class variable_storage : public exec_node {
173 public:
174 variable_storage(ir_variable *var, gl_register_file file, int index)
175 : file(file), index(index), var(var)
176 {
177 /* empty */
178 }
179
180 gl_register_file file;
181 int index;
182 ir_variable *var; /* variable that maps to this, if any */
183 };
184
185 class function_entry : public exec_node {
186 public:
187 ir_function_signature *sig;
188
189 /**
190 * identifier of this function signature used by the program.
191 *
192 * At the point that Mesa instructions for function calls are
193 * generated, we don't know the address of the first instruction of
194 * the function body. So we make the BranchTarget that is called a
195 * small integer and rewrite them during set_branchtargets().
196 */
197 int sig_id;
198
199 /**
200 * Pointer to first instruction of the function body.
201 *
202 * Set during function body emits after main() is processed.
203 */
204 ir_to_mesa_instruction *bgn_inst;
205
206 /**
207 * Index of the first instruction of the function body in actual
208 * Mesa IR.
209 *
210 * Set after convertion from ir_to_mesa_instruction to prog_instruction.
211 */
212 int inst;
213
214 /** Storage for the return value. */
215 src_reg return_reg;
216 };
217
218 class ir_to_mesa_visitor : public ir_visitor {
219 public:
220 ir_to_mesa_visitor();
221 ~ir_to_mesa_visitor();
222
223 function_entry *current_function;
224
225 struct gl_context *ctx;
226 struct gl_program *prog;
227 struct gl_shader_program *shader_program;
228 struct gl_shader_compiler_options *options;
229
230 int next_temp;
231
232 variable_storage *find_variable_storage(const ir_variable *var);
233
234 src_reg get_temp(const glsl_type *type);
235 void reladdr_to_temp(ir_instruction *ir, src_reg *reg, int *num_reladdr);
236
237 src_reg src_reg_for_float(float val);
238
239 /**
240 * \name Visit methods
241 *
242 * As typical for the visitor pattern, there must be one \c visit method for
243 * each concrete subclass of \c ir_instruction. Virtual base classes within
244 * the hierarchy should not have \c visit methods.
245 */
246 /*@{*/
247 virtual void visit(ir_variable *);
248 virtual void visit(ir_loop *);
249 virtual void visit(ir_loop_jump *);
250 virtual void visit(ir_function_signature *);
251 virtual void visit(ir_function *);
252 virtual void visit(ir_expression *);
253 virtual void visit(ir_swizzle *);
254 virtual void visit(ir_dereference_variable *);
255 virtual void visit(ir_dereference_array *);
256 virtual void visit(ir_dereference_record *);
257 virtual void visit(ir_assignment *);
258 virtual void visit(ir_constant *);
259 virtual void visit(ir_call *);
260 virtual void visit(ir_return *);
261 virtual void visit(ir_discard *);
262 virtual void visit(ir_texture *);
263 virtual void visit(ir_if *);
264 virtual void visit(ir_emit_vertex *);
265 virtual void visit(ir_end_primitive *);
266 /*@}*/
267
268 src_reg result;
269
270 /** List of variable_storage */
271 exec_list variables;
272
273 /** List of function_entry */
274 exec_list function_signatures;
275 int next_signature_id;
276
277 /** List of ir_to_mesa_instruction */
278 exec_list instructions;
279
280 ir_to_mesa_instruction *emit(ir_instruction *ir, enum prog_opcode op);
281
282 ir_to_mesa_instruction *emit(ir_instruction *ir, enum prog_opcode op,
283 dst_reg dst, src_reg src0);
284
285 ir_to_mesa_instruction *emit(ir_instruction *ir, enum prog_opcode op,
286 dst_reg dst, src_reg src0, src_reg src1);
287
288 ir_to_mesa_instruction *emit(ir_instruction *ir, enum prog_opcode op,
289 dst_reg dst,
290 src_reg src0, src_reg src1, src_reg src2);
291
292 /**
293 * Emit the correct dot-product instruction for the type of arguments
294 */
295 ir_to_mesa_instruction * emit_dp(ir_instruction *ir,
296 dst_reg dst,
297 src_reg src0,
298 src_reg src1,
299 unsigned elements);
300
301 void emit_scalar(ir_instruction *ir, enum prog_opcode op,
302 dst_reg dst, src_reg src0);
303
304 void emit_scalar(ir_instruction *ir, enum prog_opcode op,
305 dst_reg dst, src_reg src0, src_reg src1);
306
307 void emit_scs(ir_instruction *ir, enum prog_opcode op,
308 dst_reg dst, const src_reg &src);
309
310 bool try_emit_mad(ir_expression *ir,
311 int mul_operand);
312 bool try_emit_mad_for_and_not(ir_expression *ir,
313 int mul_operand);
314 bool try_emit_sat(ir_expression *ir);
315
316 void emit_swz(ir_expression *ir);
317
318 bool process_move_condition(ir_rvalue *ir);
319
320 void copy_propagate(void);
321
322 void *mem_ctx;
323 };
324
325 } /* anonymous namespace */
326
327 static src_reg undef_src = src_reg(PROGRAM_UNDEFINED, 0, NULL);
328
329 static dst_reg undef_dst = dst_reg(PROGRAM_UNDEFINED, SWIZZLE_NOOP);
330
331 static dst_reg address_reg = dst_reg(PROGRAM_ADDRESS, WRITEMASK_X);
332
333 static int
334 swizzle_for_size(int size)
335 {
336 static const int size_swizzles[4] = {
337 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_X, SWIZZLE_X, SWIZZLE_X),
338 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Y, SWIZZLE_Y),
339 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_Z),
340 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W),
341 };
342
343 assert((size >= 1) && (size <= 4));
344 return size_swizzles[size - 1];
345 }
346
347 ir_to_mesa_instruction *
348 ir_to_mesa_visitor::emit(ir_instruction *ir, enum prog_opcode op,
349 dst_reg dst,
350 src_reg src0, src_reg src1, src_reg src2)
351 {
352 ir_to_mesa_instruction *inst = new(mem_ctx) ir_to_mesa_instruction();
353 int num_reladdr = 0;
354
355 /* If we have to do relative addressing, we want to load the ARL
356 * reg directly for one of the regs, and preload the other reladdr
357 * sources into temps.
358 */
359 num_reladdr += dst.reladdr != NULL;
360 num_reladdr += src0.reladdr != NULL;
361 num_reladdr += src1.reladdr != NULL;
362 num_reladdr += src2.reladdr != NULL;
363
364 reladdr_to_temp(ir, &src2, &num_reladdr);
365 reladdr_to_temp(ir, &src1, &num_reladdr);
366 reladdr_to_temp(ir, &src0, &num_reladdr);
367
368 if (dst.reladdr) {
369 emit(ir, OPCODE_ARL, address_reg, *dst.reladdr);
370 num_reladdr--;
371 }
372 assert(num_reladdr == 0);
373
374 inst->op = op;
375 inst->dst = dst;
376 inst->src[0] = src0;
377 inst->src[1] = src1;
378 inst->src[2] = src2;
379 inst->ir = ir;
380
381 this->instructions.push_tail(inst);
382
383 return inst;
384 }
385
386
387 ir_to_mesa_instruction *
388 ir_to_mesa_visitor::emit(ir_instruction *ir, enum prog_opcode op,
389 dst_reg dst, src_reg src0, src_reg src1)
390 {
391 return emit(ir, op, dst, src0, src1, undef_src);
392 }
393
394 ir_to_mesa_instruction *
395 ir_to_mesa_visitor::emit(ir_instruction *ir, enum prog_opcode op,
396 dst_reg dst, src_reg src0)
397 {
398 assert(dst.writemask != 0);
399 return emit(ir, op, dst, src0, undef_src, undef_src);
400 }
401
402 ir_to_mesa_instruction *
403 ir_to_mesa_visitor::emit(ir_instruction *ir, enum prog_opcode op)
404 {
405 return emit(ir, op, undef_dst, undef_src, undef_src, undef_src);
406 }
407
408 ir_to_mesa_instruction *
409 ir_to_mesa_visitor::emit_dp(ir_instruction *ir,
410 dst_reg dst, src_reg src0, src_reg src1,
411 unsigned elements)
412 {
413 static const gl_inst_opcode dot_opcodes[] = {
414 OPCODE_DP2, OPCODE_DP3, OPCODE_DP4
415 };
416
417 return emit(ir, dot_opcodes[elements - 2], dst, src0, src1);
418 }
419
420 /**
421 * Emits Mesa scalar opcodes to produce unique answers across channels.
422 *
423 * Some Mesa opcodes are scalar-only, like ARB_fp/vp. The src X
424 * channel determines the result across all channels. So to do a vec4
425 * of this operation, we want to emit a scalar per source channel used
426 * to produce dest channels.
427 */
428 void
429 ir_to_mesa_visitor::emit_scalar(ir_instruction *ir, enum prog_opcode op,
430 dst_reg dst,
431 src_reg orig_src0, src_reg orig_src1)
432 {
433 int i, j;
434 int done_mask = ~dst.writemask;
435
436 /* Mesa RCP is a scalar operation splatting results to all channels,
437 * like ARB_fp/vp. So emit as many RCPs as necessary to cover our
438 * dst channels.
439 */
440 for (i = 0; i < 4; i++) {
441 GLuint this_mask = (1 << i);
442 ir_to_mesa_instruction *inst;
443 src_reg src0 = orig_src0;
444 src_reg src1 = orig_src1;
445
446 if (done_mask & this_mask)
447 continue;
448
449 GLuint src0_swiz = GET_SWZ(src0.swizzle, i);
450 GLuint src1_swiz = GET_SWZ(src1.swizzle, i);
451 for (j = i + 1; j < 4; j++) {
452 /* If there is another enabled component in the destination that is
453 * derived from the same inputs, generate its value on this pass as
454 * well.
455 */
456 if (!(done_mask & (1 << j)) &&
457 GET_SWZ(src0.swizzle, j) == src0_swiz &&
458 GET_SWZ(src1.swizzle, j) == src1_swiz) {
459 this_mask |= (1 << j);
460 }
461 }
462 src0.swizzle = MAKE_SWIZZLE4(src0_swiz, src0_swiz,
463 src0_swiz, src0_swiz);
464 src1.swizzle = MAKE_SWIZZLE4(src1_swiz, src1_swiz,
465 src1_swiz, src1_swiz);
466
467 inst = emit(ir, op, dst, src0, src1);
468 inst->dst.writemask = this_mask;
469 done_mask |= this_mask;
470 }
471 }
472
473 void
474 ir_to_mesa_visitor::emit_scalar(ir_instruction *ir, enum prog_opcode op,
475 dst_reg dst, src_reg src0)
476 {
477 src_reg undef = undef_src;
478
479 undef.swizzle = SWIZZLE_XXXX;
480
481 emit_scalar(ir, op, dst, src0, undef);
482 }
483
484 /**
485 * Emit an OPCODE_SCS instruction
486 *
487 * The \c SCS opcode functions a bit differently than the other Mesa (or
488 * ARB_fragment_program) opcodes. Instead of splatting its result across all
489 * four components of the destination, it writes one value to the \c x
490 * component and another value to the \c y component.
491 *
492 * \param ir IR instruction being processed
493 * \param op Either \c OPCODE_SIN or \c OPCODE_COS depending on which
494 * value is desired.
495 * \param dst Destination register
496 * \param src Source register
497 */
498 void
499 ir_to_mesa_visitor::emit_scs(ir_instruction *ir, enum prog_opcode op,
500 dst_reg dst,
501 const src_reg &src)
502 {
503 /* Vertex programs cannot use the SCS opcode.
504 */
505 if (this->prog->Target == GL_VERTEX_PROGRAM_ARB) {
506 emit_scalar(ir, op, dst, src);
507 return;
508 }
509
510 const unsigned component = (op == OPCODE_SIN) ? 0 : 1;
511 const unsigned scs_mask = (1U << component);
512 int done_mask = ~dst.writemask;
513 src_reg tmp;
514
515 assert(op == OPCODE_SIN || op == OPCODE_COS);
516
517 /* If there are compnents in the destination that differ from the component
518 * that will be written by the SCS instrution, we'll need a temporary.
519 */
520 if (scs_mask != unsigned(dst.writemask)) {
521 tmp = get_temp(glsl_type::vec4_type);
522 }
523
524 for (unsigned i = 0; i < 4; i++) {
525 unsigned this_mask = (1U << i);
526 src_reg src0 = src;
527
528 if ((done_mask & this_mask) != 0)
529 continue;
530
531 /* The source swizzle specified which component of the source generates
532 * sine / cosine for the current component in the destination. The SCS
533 * instruction requires that this value be swizzle to the X component.
534 * Replace the current swizzle with a swizzle that puts the source in
535 * the X component.
536 */
537 unsigned src0_swiz = GET_SWZ(src.swizzle, i);
538
539 src0.swizzle = MAKE_SWIZZLE4(src0_swiz, src0_swiz,
540 src0_swiz, src0_swiz);
541 for (unsigned j = i + 1; j < 4; j++) {
542 /* If there is another enabled component in the destination that is
543 * derived from the same inputs, generate its value on this pass as
544 * well.
545 */
546 if (!(done_mask & (1 << j)) &&
547 GET_SWZ(src0.swizzle, j) == src0_swiz) {
548 this_mask |= (1 << j);
549 }
550 }
551
552 if (this_mask != scs_mask) {
553 ir_to_mesa_instruction *inst;
554 dst_reg tmp_dst = dst_reg(tmp);
555
556 /* Emit the SCS instruction.
557 */
558 inst = emit(ir, OPCODE_SCS, tmp_dst, src0);
559 inst->dst.writemask = scs_mask;
560
561 /* Move the result of the SCS instruction to the desired location in
562 * the destination.
563 */
564 tmp.swizzle = MAKE_SWIZZLE4(component, component,
565 component, component);
566 inst = emit(ir, OPCODE_SCS, dst, tmp);
567 inst->dst.writemask = this_mask;
568 } else {
569 /* Emit the SCS instruction to write directly to the destination.
570 */
571 ir_to_mesa_instruction *inst = emit(ir, OPCODE_SCS, dst, src0);
572 inst->dst.writemask = scs_mask;
573 }
574
575 done_mask |= this_mask;
576 }
577 }
578
579 src_reg
580 ir_to_mesa_visitor::src_reg_for_float(float val)
581 {
582 src_reg src(PROGRAM_CONSTANT, -1, NULL);
583
584 src.index = _mesa_add_unnamed_constant(this->prog->Parameters,
585 (const gl_constant_value *)&val, 1, &src.swizzle);
586
587 return src;
588 }
589
590 static int
591 type_size(const struct glsl_type *type)
592 {
593 unsigned int i;
594 int size;
595
596 switch (type->base_type) {
597 case GLSL_TYPE_UINT:
598 case GLSL_TYPE_INT:
599 case GLSL_TYPE_FLOAT:
600 case GLSL_TYPE_BOOL:
601 if (type->is_matrix()) {
602 return type->matrix_columns;
603 } else {
604 /* Regardless of size of vector, it gets a vec4. This is bad
605 * packing for things like floats, but otherwise arrays become a
606 * mess. Hopefully a later pass over the code can pack scalars
607 * down if appropriate.
608 */
609 return 1;
610 }
611 case GLSL_TYPE_ARRAY:
612 assert(type->length > 0);
613 return type_size(type->fields.array) * type->length;
614 case GLSL_TYPE_STRUCT:
615 size = 0;
616 for (i = 0; i < type->length; i++) {
617 size += type_size(type->fields.structure[i].type);
618 }
619 return size;
620 case GLSL_TYPE_SAMPLER:
621 case GLSL_TYPE_IMAGE:
622 /* Samplers take up one slot in UNIFORMS[], but they're baked in
623 * at link time.
624 */
625 return 1;
626 case GLSL_TYPE_ATOMIC_UINT:
627 case GLSL_TYPE_VOID:
628 case GLSL_TYPE_ERROR:
629 case GLSL_TYPE_INTERFACE:
630 assert(!"Invalid type in type_size");
631 break;
632 }
633
634 return 0;
635 }
636
637 /**
638 * In the initial pass of codegen, we assign temporary numbers to
639 * intermediate results. (not SSA -- variable assignments will reuse
640 * storage). Actual register allocation for the Mesa VM occurs in a
641 * pass over the Mesa IR later.
642 */
643 src_reg
644 ir_to_mesa_visitor::get_temp(const glsl_type *type)
645 {
646 src_reg src;
647
648 src.file = PROGRAM_TEMPORARY;
649 src.index = next_temp;
650 src.reladdr = NULL;
651 next_temp += type_size(type);
652
653 if (type->is_array() || type->is_record()) {
654 src.swizzle = SWIZZLE_NOOP;
655 } else {
656 src.swizzle = swizzle_for_size(type->vector_elements);
657 }
658 src.negate = 0;
659
660 return src;
661 }
662
663 variable_storage *
664 ir_to_mesa_visitor::find_variable_storage(const ir_variable *var)
665 {
666 foreach_in_list(variable_storage, entry, &this->variables) {
667 if (entry->var == var)
668 return entry;
669 }
670
671 return NULL;
672 }
673
674 void
675 ir_to_mesa_visitor::visit(ir_variable *ir)
676 {
677 if (strcmp(ir->name, "gl_FragCoord") == 0) {
678 struct gl_fragment_program *fp = (struct gl_fragment_program *)this->prog;
679
680 fp->OriginUpperLeft = ir->data.origin_upper_left;
681 fp->PixelCenterInteger = ir->data.pixel_center_integer;
682 }
683
684 if (ir->data.mode == ir_var_uniform && strncmp(ir->name, "gl_", 3) == 0) {
685 unsigned int i;
686 const ir_state_slot *const slots = ir->state_slots;
687 assert(ir->state_slots != NULL);
688
689 /* Check if this statevar's setup in the STATE file exactly
690 * matches how we'll want to reference it as a
691 * struct/array/whatever. If not, then we need to move it into
692 * temporary storage and hope that it'll get copy-propagated
693 * out.
694 */
695 for (i = 0; i < ir->num_state_slots; i++) {
696 if (slots[i].swizzle != SWIZZLE_XYZW) {
697 break;
698 }
699 }
700
701 variable_storage *storage;
702 dst_reg dst;
703 if (i == ir->num_state_slots) {
704 /* We'll set the index later. */
705 storage = new(mem_ctx) variable_storage(ir, PROGRAM_STATE_VAR, -1);
706 this->variables.push_tail(storage);
707
708 dst = undef_dst;
709 } else {
710 /* The variable_storage constructor allocates slots based on the size
711 * of the type. However, this had better match the number of state
712 * elements that we're going to copy into the new temporary.
713 */
714 assert((int) ir->num_state_slots == type_size(ir->type));
715
716 storage = new(mem_ctx) variable_storage(ir, PROGRAM_TEMPORARY,
717 this->next_temp);
718 this->variables.push_tail(storage);
719 this->next_temp += type_size(ir->type);
720
721 dst = dst_reg(src_reg(PROGRAM_TEMPORARY, storage->index, NULL));
722 }
723
724
725 for (unsigned int i = 0; i < ir->num_state_slots; i++) {
726 int index = _mesa_add_state_reference(this->prog->Parameters,
727 (gl_state_index *)slots[i].tokens);
728
729 if (storage->file == PROGRAM_STATE_VAR) {
730 if (storage->index == -1) {
731 storage->index = index;
732 } else {
733 assert(index == storage->index + (int)i);
734 }
735 } else {
736 src_reg src(PROGRAM_STATE_VAR, index, NULL);
737 src.swizzle = slots[i].swizzle;
738 emit(ir, OPCODE_MOV, dst, src);
739 /* even a float takes up a whole vec4 reg in a struct/array. */
740 dst.index++;
741 }
742 }
743
744 if (storage->file == PROGRAM_TEMPORARY &&
745 dst.index != storage->index + (int) ir->num_state_slots) {
746 linker_error(this->shader_program,
747 "failed to load builtin uniform `%s' "
748 "(%d/%d regs loaded)\n",
749 ir->name, dst.index - storage->index,
750 type_size(ir->type));
751 }
752 }
753 }
754
755 void
756 ir_to_mesa_visitor::visit(ir_loop *ir)
757 {
758 emit(NULL, OPCODE_BGNLOOP);
759
760 visit_exec_list(&ir->body_instructions, this);
761
762 emit(NULL, OPCODE_ENDLOOP);
763 }
764
765 void
766 ir_to_mesa_visitor::visit(ir_loop_jump *ir)
767 {
768 switch (ir->mode) {
769 case ir_loop_jump::jump_break:
770 emit(NULL, OPCODE_BRK);
771 break;
772 case ir_loop_jump::jump_continue:
773 emit(NULL, OPCODE_CONT);
774 break;
775 }
776 }
777
778
779 void
780 ir_to_mesa_visitor::visit(ir_function_signature *ir)
781 {
782 assert(0);
783 (void)ir;
784 }
785
786 void
787 ir_to_mesa_visitor::visit(ir_function *ir)
788 {
789 /* Ignore function bodies other than main() -- we shouldn't see calls to
790 * them since they should all be inlined before we get to ir_to_mesa.
791 */
792 if (strcmp(ir->name, "main") == 0) {
793 const ir_function_signature *sig;
794 exec_list empty;
795
796 sig = ir->matching_signature(NULL, &empty, false);
797
798 assert(sig);
799
800 foreach_in_list(ir_instruction, ir, &sig->body) {
801 ir->accept(this);
802 }
803 }
804 }
805
806 bool
807 ir_to_mesa_visitor::try_emit_mad(ir_expression *ir, int mul_operand)
808 {
809 int nonmul_operand = 1 - mul_operand;
810 src_reg a, b, c;
811
812 ir_expression *expr = ir->operands[mul_operand]->as_expression();
813 if (!expr || expr->operation != ir_binop_mul)
814 return false;
815
816 expr->operands[0]->accept(this);
817 a = this->result;
818 expr->operands[1]->accept(this);
819 b = this->result;
820 ir->operands[nonmul_operand]->accept(this);
821 c = this->result;
822
823 this->result = get_temp(ir->type);
824 emit(ir, OPCODE_MAD, dst_reg(this->result), a, b, c);
825
826 return true;
827 }
828
829 /**
830 * Emit OPCODE_MAD(a, -b, a) instead of AND(a, NOT(b))
831 *
832 * The logic values are 1.0 for true and 0.0 for false. Logical-and is
833 * implemented using multiplication, and logical-or is implemented using
834 * addition. Logical-not can be implemented as (true - x), or (1.0 - x).
835 * As result, the logical expression (a & !b) can be rewritten as:
836 *
837 * - a * !b
838 * - a * (1 - b)
839 * - (a * 1) - (a * b)
840 * - a + -(a * b)
841 * - a + (a * -b)
842 *
843 * This final expression can be implemented as a single MAD(a, -b, a)
844 * instruction.
845 */
846 bool
847 ir_to_mesa_visitor::try_emit_mad_for_and_not(ir_expression *ir, int try_operand)
848 {
849 const int other_operand = 1 - try_operand;
850 src_reg a, b;
851
852 ir_expression *expr = ir->operands[try_operand]->as_expression();
853 if (!expr || expr->operation != ir_unop_logic_not)
854 return false;
855
856 ir->operands[other_operand]->accept(this);
857 a = this->result;
858 expr->operands[0]->accept(this);
859 b = this->result;
860
861 b.negate = ~b.negate;
862
863 this->result = get_temp(ir->type);
864 emit(ir, OPCODE_MAD, dst_reg(this->result), a, b, a);
865
866 return true;
867 }
868
869 bool
870 ir_to_mesa_visitor::try_emit_sat(ir_expression *ir)
871 {
872 /* Saturates were only introduced to vertex programs in
873 * NV_vertex_program3, so don't give them to drivers in the VP.
874 */
875 if (this->prog->Target == GL_VERTEX_PROGRAM_ARB)
876 return false;
877
878 ir_rvalue *sat_src = ir->as_rvalue_to_saturate();
879 if (!sat_src)
880 return false;
881
882 sat_src->accept(this);
883 src_reg src = this->result;
884
885 /* If we generated an expression instruction into a temporary in
886 * processing the saturate's operand, apply the saturate to that
887 * instruction. Otherwise, generate a MOV to do the saturate.
888 *
889 * Note that we have to be careful to only do this optimization if
890 * the instruction in question was what generated src->result. For
891 * example, ir_dereference_array might generate a MUL instruction
892 * to create the reladdr, and return us a src reg using that
893 * reladdr. That MUL result is not the value we're trying to
894 * saturate.
895 */
896 ir_expression *sat_src_expr = sat_src->as_expression();
897 ir_to_mesa_instruction *new_inst;
898 new_inst = (ir_to_mesa_instruction *)this->instructions.get_tail();
899 if (sat_src_expr && (sat_src_expr->operation == ir_binop_mul ||
900 sat_src_expr->operation == ir_binop_add ||
901 sat_src_expr->operation == ir_binop_dot)) {
902 new_inst->saturate = true;
903 } else {
904 this->result = get_temp(ir->type);
905 ir_to_mesa_instruction *inst;
906 inst = emit(ir, OPCODE_MOV, dst_reg(this->result), src);
907 inst->saturate = true;
908 }
909
910 return true;
911 }
912
913 void
914 ir_to_mesa_visitor::reladdr_to_temp(ir_instruction *ir,
915 src_reg *reg, int *num_reladdr)
916 {
917 if (!reg->reladdr)
918 return;
919
920 emit(ir, OPCODE_ARL, address_reg, *reg->reladdr);
921
922 if (*num_reladdr != 1) {
923 src_reg temp = get_temp(glsl_type::vec4_type);
924
925 emit(ir, OPCODE_MOV, dst_reg(temp), *reg);
926 *reg = temp;
927 }
928
929 (*num_reladdr)--;
930 }
931
932 void
933 ir_to_mesa_visitor::emit_swz(ir_expression *ir)
934 {
935 /* Assume that the vector operator is in a form compatible with OPCODE_SWZ.
936 * This means that each of the operands is either an immediate value of -1,
937 * 0, or 1, or is a component from one source register (possibly with
938 * negation).
939 */
940 uint8_t components[4] = { 0 };
941 bool negate[4] = { false };
942 ir_variable *var = NULL;
943
944 for (unsigned i = 0; i < ir->type->vector_elements; i++) {
945 ir_rvalue *op = ir->operands[i];
946
947 assert(op->type->is_scalar());
948
949 while (op != NULL) {
950 switch (op->ir_type) {
951 case ir_type_constant: {
952
953 assert(op->type->is_scalar());
954
955 const ir_constant *const c = op->as_constant();
956 if (c->is_one()) {
957 components[i] = SWIZZLE_ONE;
958 } else if (c->is_zero()) {
959 components[i] = SWIZZLE_ZERO;
960 } else if (c->is_negative_one()) {
961 components[i] = SWIZZLE_ONE;
962 negate[i] = true;
963 } else {
964 assert(!"SWZ constant must be 0.0 or 1.0.");
965 }
966
967 op = NULL;
968 break;
969 }
970
971 case ir_type_dereference_variable: {
972 ir_dereference_variable *const deref =
973 (ir_dereference_variable *) op;
974
975 assert((var == NULL) || (deref->var == var));
976 components[i] = SWIZZLE_X;
977 var = deref->var;
978 op = NULL;
979 break;
980 }
981
982 case ir_type_expression: {
983 ir_expression *const expr = (ir_expression *) op;
984
985 assert(expr->operation == ir_unop_neg);
986 negate[i] = true;
987
988 op = expr->operands[0];
989 break;
990 }
991
992 case ir_type_swizzle: {
993 ir_swizzle *const swiz = (ir_swizzle *) op;
994
995 components[i] = swiz->mask.x;
996 op = swiz->val;
997 break;
998 }
999
1000 default:
1001 assert(!"Should not get here.");
1002 return;
1003 }
1004 }
1005 }
1006
1007 assert(var != NULL);
1008
1009 ir_dereference_variable *const deref =
1010 new(mem_ctx) ir_dereference_variable(var);
1011
1012 this->result.file = PROGRAM_UNDEFINED;
1013 deref->accept(this);
1014 if (this->result.file == PROGRAM_UNDEFINED) {
1015 printf("Failed to get tree for expression operand:\n");
1016 deref->print();
1017 printf("\n");
1018 exit(1);
1019 }
1020
1021 src_reg src;
1022
1023 src = this->result;
1024 src.swizzle = MAKE_SWIZZLE4(components[0],
1025 components[1],
1026 components[2],
1027 components[3]);
1028 src.negate = ((unsigned(negate[0]) << 0)
1029 | (unsigned(negate[1]) << 1)
1030 | (unsigned(negate[2]) << 2)
1031 | (unsigned(negate[3]) << 3));
1032
1033 /* Storage for our result. Ideally for an assignment we'd be using the
1034 * actual storage for the result here, instead.
1035 */
1036 const src_reg result_src = get_temp(ir->type);
1037 dst_reg result_dst = dst_reg(result_src);
1038
1039 /* Limit writes to the channels that will be used by result_src later.
1040 * This does limit this temp's use as a temporary for multi-instruction
1041 * sequences.
1042 */
1043 result_dst.writemask = (1 << ir->type->vector_elements) - 1;
1044
1045 emit(ir, OPCODE_SWZ, result_dst, src);
1046 this->result = result_src;
1047 }
1048
1049 void
1050 ir_to_mesa_visitor::visit(ir_expression *ir)
1051 {
1052 unsigned int operand;
1053 src_reg op[Elements(ir->operands)];
1054 src_reg result_src;
1055 dst_reg result_dst;
1056
1057 /* Quick peephole: Emit OPCODE_MAD(a, b, c) instead of ADD(MUL(a, b), c)
1058 */
1059 if (ir->operation == ir_binop_add) {
1060 if (try_emit_mad(ir, 1))
1061 return;
1062 if (try_emit_mad(ir, 0))
1063 return;
1064 }
1065
1066 /* Quick peephole: Emit OPCODE_MAD(-a, -b, a) instead of AND(a, NOT(b))
1067 */
1068 if (ir->operation == ir_binop_logic_and) {
1069 if (try_emit_mad_for_and_not(ir, 1))
1070 return;
1071 if (try_emit_mad_for_and_not(ir, 0))
1072 return;
1073 }
1074
1075 if (try_emit_sat(ir))
1076 return;
1077
1078 if (ir->operation == ir_quadop_vector) {
1079 this->emit_swz(ir);
1080 return;
1081 }
1082
1083 for (operand = 0; operand < ir->get_num_operands(); operand++) {
1084 this->result.file = PROGRAM_UNDEFINED;
1085 ir->operands[operand]->accept(this);
1086 if (this->result.file == PROGRAM_UNDEFINED) {
1087 printf("Failed to get tree for expression operand:\n");
1088 ir->operands[operand]->print();
1089 printf("\n");
1090 exit(1);
1091 }
1092 op[operand] = this->result;
1093
1094 /* Matrix expression operands should have been broken down to vector
1095 * operations already.
1096 */
1097 assert(!ir->operands[operand]->type->is_matrix());
1098 }
1099
1100 int vector_elements = ir->operands[0]->type->vector_elements;
1101 if (ir->operands[1]) {
1102 vector_elements = MAX2(vector_elements,
1103 ir->operands[1]->type->vector_elements);
1104 }
1105
1106 this->result.file = PROGRAM_UNDEFINED;
1107
1108 /* Storage for our result. Ideally for an assignment we'd be using
1109 * the actual storage for the result here, instead.
1110 */
1111 result_src = get_temp(ir->type);
1112 /* convenience for the emit functions below. */
1113 result_dst = dst_reg(result_src);
1114 /* Limit writes to the channels that will be used by result_src later.
1115 * This does limit this temp's use as a temporary for multi-instruction
1116 * sequences.
1117 */
1118 result_dst.writemask = (1 << ir->type->vector_elements) - 1;
1119
1120 switch (ir->operation) {
1121 case ir_unop_logic_not:
1122 /* Previously 'SEQ dst, src, 0.0' was used for this. However, many
1123 * older GPUs implement SEQ using multiple instructions (i915 uses two
1124 * SGE instructions and a MUL instruction). Since our logic values are
1125 * 0.0 and 1.0, 1-x also implements !x.
1126 */
1127 op[0].negate = ~op[0].negate;
1128 emit(ir, OPCODE_ADD, result_dst, op[0], src_reg_for_float(1.0));
1129 break;
1130 case ir_unop_neg:
1131 op[0].negate = ~op[0].negate;
1132 result_src = op[0];
1133 break;
1134 case ir_unop_abs:
1135 emit(ir, OPCODE_ABS, result_dst, op[0]);
1136 break;
1137 case ir_unop_sign:
1138 emit(ir, OPCODE_SSG, result_dst, op[0]);
1139 break;
1140 case ir_unop_rcp:
1141 emit_scalar(ir, OPCODE_RCP, result_dst, op[0]);
1142 break;
1143
1144 case ir_unop_exp2:
1145 emit_scalar(ir, OPCODE_EX2, result_dst, op[0]);
1146 break;
1147 case ir_unop_exp:
1148 case ir_unop_log:
1149 assert(!"not reached: should be handled by ir_explog_to_explog2");
1150 break;
1151 case ir_unop_log2:
1152 emit_scalar(ir, OPCODE_LG2, result_dst, op[0]);
1153 break;
1154 case ir_unop_sin:
1155 emit_scalar(ir, OPCODE_SIN, result_dst, op[0]);
1156 break;
1157 case ir_unop_cos:
1158 emit_scalar(ir, OPCODE_COS, result_dst, op[0]);
1159 break;
1160 case ir_unop_sin_reduced:
1161 emit_scs(ir, OPCODE_SIN, result_dst, op[0]);
1162 break;
1163 case ir_unop_cos_reduced:
1164 emit_scs(ir, OPCODE_COS, result_dst, op[0]);
1165 break;
1166
1167 case ir_unop_dFdx:
1168 emit(ir, OPCODE_DDX, result_dst, op[0]);
1169 break;
1170 case ir_unop_dFdy:
1171 emit(ir, OPCODE_DDY, result_dst, op[0]);
1172 break;
1173
1174 case ir_unop_noise: {
1175 const enum prog_opcode opcode =
1176 prog_opcode(OPCODE_NOISE1
1177 + (ir->operands[0]->type->vector_elements) - 1);
1178 assert((opcode >= OPCODE_NOISE1) && (opcode <= OPCODE_NOISE4));
1179
1180 emit(ir, opcode, result_dst, op[0]);
1181 break;
1182 }
1183
1184 case ir_binop_add:
1185 emit(ir, OPCODE_ADD, result_dst, op[0], op[1]);
1186 break;
1187 case ir_binop_sub:
1188 emit(ir, OPCODE_SUB, result_dst, op[0], op[1]);
1189 break;
1190
1191 case ir_binop_mul:
1192 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]);
1193 break;
1194 case ir_binop_div:
1195 assert(!"not reached: should be handled by ir_div_to_mul_rcp");
1196 break;
1197 case ir_binop_mod:
1198 /* Floating point should be lowered by MOD_TO_FRACT in the compiler. */
1199 assert(ir->type->is_integer());
1200 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]);
1201 break;
1202
1203 case ir_binop_less:
1204 emit(ir, OPCODE_SLT, result_dst, op[0], op[1]);
1205 break;
1206 case ir_binop_greater:
1207 emit(ir, OPCODE_SGT, result_dst, op[0], op[1]);
1208 break;
1209 case ir_binop_lequal:
1210 emit(ir, OPCODE_SLE, result_dst, op[0], op[1]);
1211 break;
1212 case ir_binop_gequal:
1213 emit(ir, OPCODE_SGE, result_dst, op[0], op[1]);
1214 break;
1215 case ir_binop_equal:
1216 emit(ir, OPCODE_SEQ, result_dst, op[0], op[1]);
1217 break;
1218 case ir_binop_nequal:
1219 emit(ir, OPCODE_SNE, result_dst, op[0], op[1]);
1220 break;
1221 case ir_binop_all_equal:
1222 /* "==" operator producing a scalar boolean. */
1223 if (ir->operands[0]->type->is_vector() ||
1224 ir->operands[1]->type->is_vector()) {
1225 src_reg temp = get_temp(glsl_type::vec4_type);
1226 emit(ir, OPCODE_SNE, dst_reg(temp), op[0], op[1]);
1227
1228 /* After the dot-product, the value will be an integer on the
1229 * range [0,4]. Zero becomes 1.0, and positive values become zero.
1230 */
1231 emit_dp(ir, result_dst, temp, temp, vector_elements);
1232
1233 /* Negating the result of the dot-product gives values on the range
1234 * [-4, 0]. Zero becomes 1.0, and negative values become zero. This
1235 * achieved using SGE.
1236 */
1237 src_reg sge_src = result_src;
1238 sge_src.negate = ~sge_src.negate;
1239 emit(ir, OPCODE_SGE, result_dst, sge_src, src_reg_for_float(0.0));
1240 } else {
1241 emit(ir, OPCODE_SEQ, result_dst, op[0], op[1]);
1242 }
1243 break;
1244 case ir_binop_any_nequal:
1245 /* "!=" operator producing a scalar boolean. */
1246 if (ir->operands[0]->type->is_vector() ||
1247 ir->operands[1]->type->is_vector()) {
1248 src_reg temp = get_temp(glsl_type::vec4_type);
1249 emit(ir, OPCODE_SNE, dst_reg(temp), op[0], op[1]);
1250
1251 /* After the dot-product, the value will be an integer on the
1252 * range [0,4]. Zero stays zero, and positive values become 1.0.
1253 */
1254 ir_to_mesa_instruction *const dp =
1255 emit_dp(ir, result_dst, temp, temp, vector_elements);
1256 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1257 /* The clamping to [0,1] can be done for free in the fragment
1258 * shader with a saturate.
1259 */
1260 dp->saturate = true;
1261 } else {
1262 /* Negating the result of the dot-product gives values on the range
1263 * [-4, 0]. Zero stays zero, and negative values become 1.0. This
1264 * achieved using SLT.
1265 */
1266 src_reg slt_src = result_src;
1267 slt_src.negate = ~slt_src.negate;
1268 emit(ir, OPCODE_SLT, result_dst, slt_src, src_reg_for_float(0.0));
1269 }
1270 } else {
1271 emit(ir, OPCODE_SNE, result_dst, op[0], op[1]);
1272 }
1273 break;
1274
1275 case ir_unop_any: {
1276 assert(ir->operands[0]->type->is_vector());
1277
1278 /* After the dot-product, the value will be an integer on the
1279 * range [0,4]. Zero stays zero, and positive values become 1.0.
1280 */
1281 ir_to_mesa_instruction *const dp =
1282 emit_dp(ir, result_dst, op[0], op[0],
1283 ir->operands[0]->type->vector_elements);
1284 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1285 /* The clamping to [0,1] can be done for free in the fragment
1286 * shader with a saturate.
1287 */
1288 dp->saturate = true;
1289 } else {
1290 /* Negating the result of the dot-product gives values on the range
1291 * [-4, 0]. Zero stays zero, and negative values become 1.0. This
1292 * is achieved using SLT.
1293 */
1294 src_reg slt_src = result_src;
1295 slt_src.negate = ~slt_src.negate;
1296 emit(ir, OPCODE_SLT, result_dst, slt_src, src_reg_for_float(0.0));
1297 }
1298 break;
1299 }
1300
1301 case ir_binop_logic_xor:
1302 emit(ir, OPCODE_SNE, result_dst, op[0], op[1]);
1303 break;
1304
1305 case ir_binop_logic_or: {
1306 /* After the addition, the value will be an integer on the
1307 * range [0,2]. Zero stays zero, and positive values become 1.0.
1308 */
1309 ir_to_mesa_instruction *add =
1310 emit(ir, OPCODE_ADD, result_dst, op[0], op[1]);
1311 if (this->prog->Target == GL_FRAGMENT_PROGRAM_ARB) {
1312 /* The clamping to [0,1] can be done for free in the fragment
1313 * shader with a saturate.
1314 */
1315 add->saturate = true;
1316 } else {
1317 /* Negating the result of the addition gives values on the range
1318 * [-2, 0]. Zero stays zero, and negative values become 1.0. This
1319 * is achieved using SLT.
1320 */
1321 src_reg slt_src = result_src;
1322 slt_src.negate = ~slt_src.negate;
1323 emit(ir, OPCODE_SLT, result_dst, slt_src, src_reg_for_float(0.0));
1324 }
1325 break;
1326 }
1327
1328 case ir_binop_logic_and:
1329 /* the bool args are stored as float 0.0 or 1.0, so "mul" gives us "and". */
1330 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]);
1331 break;
1332
1333 case ir_binop_dot:
1334 assert(ir->operands[0]->type->is_vector());
1335 assert(ir->operands[0]->type == ir->operands[1]->type);
1336 emit_dp(ir, result_dst, op[0], op[1],
1337 ir->operands[0]->type->vector_elements);
1338 break;
1339
1340 case ir_unop_sqrt:
1341 /* sqrt(x) = x * rsq(x). */
1342 emit_scalar(ir, OPCODE_RSQ, result_dst, op[0]);
1343 emit(ir, OPCODE_MUL, result_dst, result_src, op[0]);
1344 /* For incoming channels <= 0, set the result to 0. */
1345 op[0].negate = ~op[0].negate;
1346 emit(ir, OPCODE_CMP, result_dst,
1347 op[0], result_src, src_reg_for_float(0.0));
1348 break;
1349 case ir_unop_rsq:
1350 emit_scalar(ir, OPCODE_RSQ, result_dst, op[0]);
1351 break;
1352 case ir_unop_i2f:
1353 case ir_unop_u2f:
1354 case ir_unop_b2f:
1355 case ir_unop_b2i:
1356 case ir_unop_i2u:
1357 case ir_unop_u2i:
1358 /* Mesa IR lacks types, ints are stored as truncated floats. */
1359 result_src = op[0];
1360 break;
1361 case ir_unop_f2i:
1362 case ir_unop_f2u:
1363 emit(ir, OPCODE_TRUNC, result_dst, op[0]);
1364 break;
1365 case ir_unop_f2b:
1366 case ir_unop_i2b:
1367 emit(ir, OPCODE_SNE, result_dst,
1368 op[0], src_reg_for_float(0.0));
1369 break;
1370 case ir_unop_bitcast_f2i: // Ignore these 4, they can't happen here anyway
1371 case ir_unop_bitcast_f2u:
1372 case ir_unop_bitcast_i2f:
1373 case ir_unop_bitcast_u2f:
1374 break;
1375 case ir_unop_trunc:
1376 emit(ir, OPCODE_TRUNC, result_dst, op[0]);
1377 break;
1378 case ir_unop_ceil:
1379 op[0].negate = ~op[0].negate;
1380 emit(ir, OPCODE_FLR, result_dst, op[0]);
1381 result_src.negate = ~result_src.negate;
1382 break;
1383 case ir_unop_floor:
1384 emit(ir, OPCODE_FLR, result_dst, op[0]);
1385 break;
1386 case ir_unop_fract:
1387 emit(ir, OPCODE_FRC, result_dst, op[0]);
1388 break;
1389 case ir_unop_pack_snorm_2x16:
1390 case ir_unop_pack_snorm_4x8:
1391 case ir_unop_pack_unorm_2x16:
1392 case ir_unop_pack_unorm_4x8:
1393 case ir_unop_pack_half_2x16:
1394 case ir_unop_unpack_snorm_2x16:
1395 case ir_unop_unpack_snorm_4x8:
1396 case ir_unop_unpack_unorm_2x16:
1397 case ir_unop_unpack_unorm_4x8:
1398 case ir_unop_unpack_half_2x16:
1399 case ir_unop_unpack_half_2x16_split_x:
1400 case ir_unop_unpack_half_2x16_split_y:
1401 case ir_binop_pack_half_2x16_split:
1402 case ir_unop_bitfield_reverse:
1403 case ir_unop_bit_count:
1404 case ir_unop_find_msb:
1405 case ir_unop_find_lsb:
1406 assert(!"not supported");
1407 break;
1408 case ir_binop_min:
1409 emit(ir, OPCODE_MIN, result_dst, op[0], op[1]);
1410 break;
1411 case ir_binop_max:
1412 emit(ir, OPCODE_MAX, result_dst, op[0], op[1]);
1413 break;
1414 case ir_binop_pow:
1415 emit_scalar(ir, OPCODE_POW, result_dst, op[0], op[1]);
1416 break;
1417
1418 /* GLSL 1.30 integer ops are unsupported in Mesa IR, but since
1419 * hardware backends have no way to avoid Mesa IR generation
1420 * even if they don't use it, we need to emit "something" and
1421 * continue.
1422 */
1423 case ir_binop_lshift:
1424 case ir_binop_rshift:
1425 case ir_binop_bit_and:
1426 case ir_binop_bit_xor:
1427 case ir_binop_bit_or:
1428 emit(ir, OPCODE_ADD, result_dst, op[0], op[1]);
1429 break;
1430
1431 case ir_unop_bit_not:
1432 case ir_unop_round_even:
1433 emit(ir, OPCODE_MOV, result_dst, op[0]);
1434 break;
1435
1436 case ir_binop_ubo_load:
1437 assert(!"not supported");
1438 break;
1439
1440 case ir_triop_lrp:
1441 /* ir_triop_lrp operands are (x, y, a) while
1442 * OPCODE_LRP operands are (a, y, x) to match ARB_fragment_program.
1443 */
1444 emit(ir, OPCODE_LRP, result_dst, op[2], op[1], op[0]);
1445 break;
1446
1447 case ir_binop_vector_extract:
1448 case ir_binop_bfm:
1449 case ir_triop_fma:
1450 case ir_triop_bfi:
1451 case ir_triop_bitfield_extract:
1452 case ir_triop_vector_insert:
1453 case ir_quadop_bitfield_insert:
1454 case ir_binop_ldexp:
1455 case ir_triop_csel:
1456 case ir_binop_carry:
1457 case ir_binop_borrow:
1458 case ir_binop_imul_high:
1459 case ir_unop_interpolate_at_centroid:
1460 case ir_binop_interpolate_at_offset:
1461 case ir_binop_interpolate_at_sample:
1462 assert(!"not supported");
1463 break;
1464
1465 case ir_quadop_vector:
1466 /* This operation should have already been handled.
1467 */
1468 assert(!"Should not get here.");
1469 break;
1470 }
1471
1472 this->result = result_src;
1473 }
1474
1475
1476 void
1477 ir_to_mesa_visitor::visit(ir_swizzle *ir)
1478 {
1479 src_reg src;
1480 int i;
1481 int swizzle[4];
1482
1483 /* Note that this is only swizzles in expressions, not those on the left
1484 * hand side of an assignment, which do write masking. See ir_assignment
1485 * for that.
1486 */
1487
1488 ir->val->accept(this);
1489 src = this->result;
1490 assert(src.file != PROGRAM_UNDEFINED);
1491
1492 for (i = 0; i < 4; i++) {
1493 if (i < ir->type->vector_elements) {
1494 switch (i) {
1495 case 0:
1496 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.x);
1497 break;
1498 case 1:
1499 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.y);
1500 break;
1501 case 2:
1502 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.z);
1503 break;
1504 case 3:
1505 swizzle[i] = GET_SWZ(src.swizzle, ir->mask.w);
1506 break;
1507 }
1508 } else {
1509 /* If the type is smaller than a vec4, replicate the last
1510 * channel out.
1511 */
1512 swizzle[i] = swizzle[ir->type->vector_elements - 1];
1513 }
1514 }
1515
1516 src.swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
1517
1518 this->result = src;
1519 }
1520
1521 void
1522 ir_to_mesa_visitor::visit(ir_dereference_variable *ir)
1523 {
1524 variable_storage *entry = find_variable_storage(ir->var);
1525 ir_variable *var = ir->var;
1526
1527 if (!entry) {
1528 switch (var->data.mode) {
1529 case ir_var_uniform:
1530 entry = new(mem_ctx) variable_storage(var, PROGRAM_UNIFORM,
1531 var->data.location);
1532 this->variables.push_tail(entry);
1533 break;
1534 case ir_var_shader_in:
1535 /* The linker assigns locations for varyings and attributes,
1536 * including deprecated builtins (like gl_Color),
1537 * user-assigned generic attributes (glBindVertexLocation),
1538 * and user-defined varyings.
1539 */
1540 assert(var->data.location != -1);
1541 entry = new(mem_ctx) variable_storage(var,
1542 PROGRAM_INPUT,
1543 var->data.location);
1544 break;
1545 case ir_var_shader_out:
1546 assert(var->data.location != -1);
1547 entry = new(mem_ctx) variable_storage(var,
1548 PROGRAM_OUTPUT,
1549 var->data.location);
1550 break;
1551 case ir_var_system_value:
1552 entry = new(mem_ctx) variable_storage(var,
1553 PROGRAM_SYSTEM_VALUE,
1554 var->data.location);
1555 break;
1556 case ir_var_auto:
1557 case ir_var_temporary:
1558 entry = new(mem_ctx) variable_storage(var, PROGRAM_TEMPORARY,
1559 this->next_temp);
1560 this->variables.push_tail(entry);
1561
1562 next_temp += type_size(var->type);
1563 break;
1564 }
1565
1566 if (!entry) {
1567 printf("Failed to make storage for %s\n", var->name);
1568 exit(1);
1569 }
1570 }
1571
1572 this->result = src_reg(entry->file, entry->index, var->type);
1573 }
1574
1575 void
1576 ir_to_mesa_visitor::visit(ir_dereference_array *ir)
1577 {
1578 ir_constant *index;
1579 src_reg src;
1580 int element_size = type_size(ir->type);
1581
1582 index = ir->array_index->constant_expression_value();
1583
1584 ir->array->accept(this);
1585 src = this->result;
1586
1587 if (index) {
1588 src.index += index->value.i[0] * element_size;
1589 } else {
1590 /* Variable index array dereference. It eats the "vec4" of the
1591 * base of the array and an index that offsets the Mesa register
1592 * index.
1593 */
1594 ir->array_index->accept(this);
1595
1596 src_reg index_reg;
1597
1598 if (element_size == 1) {
1599 index_reg = this->result;
1600 } else {
1601 index_reg = get_temp(glsl_type::float_type);
1602
1603 emit(ir, OPCODE_MUL, dst_reg(index_reg),
1604 this->result, src_reg_for_float(element_size));
1605 }
1606
1607 /* If there was already a relative address register involved, add the
1608 * new and the old together to get the new offset.
1609 */
1610 if (src.reladdr != NULL) {
1611 src_reg accum_reg = get_temp(glsl_type::float_type);
1612
1613 emit(ir, OPCODE_ADD, dst_reg(accum_reg),
1614 index_reg, *src.reladdr);
1615
1616 index_reg = accum_reg;
1617 }
1618
1619 src.reladdr = ralloc(mem_ctx, src_reg);
1620 memcpy(src.reladdr, &index_reg, sizeof(index_reg));
1621 }
1622
1623 /* If the type is smaller than a vec4, replicate the last channel out. */
1624 if (ir->type->is_scalar() || ir->type->is_vector())
1625 src.swizzle = swizzle_for_size(ir->type->vector_elements);
1626 else
1627 src.swizzle = SWIZZLE_NOOP;
1628
1629 this->result = src;
1630 }
1631
1632 void
1633 ir_to_mesa_visitor::visit(ir_dereference_record *ir)
1634 {
1635 unsigned int i;
1636 const glsl_type *struct_type = ir->record->type;
1637 int offset = 0;
1638
1639 ir->record->accept(this);
1640
1641 for (i = 0; i < struct_type->length; i++) {
1642 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
1643 break;
1644 offset += type_size(struct_type->fields.structure[i].type);
1645 }
1646
1647 /* If the type is smaller than a vec4, replicate the last channel out. */
1648 if (ir->type->is_scalar() || ir->type->is_vector())
1649 this->result.swizzle = swizzle_for_size(ir->type->vector_elements);
1650 else
1651 this->result.swizzle = SWIZZLE_NOOP;
1652
1653 this->result.index += offset;
1654 }
1655
1656 /**
1657 * We want to be careful in assignment setup to hit the actual storage
1658 * instead of potentially using a temporary like we might with the
1659 * ir_dereference handler.
1660 */
1661 static dst_reg
1662 get_assignment_lhs(ir_dereference *ir, ir_to_mesa_visitor *v)
1663 {
1664 /* The LHS must be a dereference. If the LHS is a variable indexed array
1665 * access of a vector, it must be separated into a series conditional moves
1666 * before reaching this point (see ir_vec_index_to_cond_assign).
1667 */
1668 assert(ir->as_dereference());
1669 ir_dereference_array *deref_array = ir->as_dereference_array();
1670 if (deref_array) {
1671 assert(!deref_array->array->type->is_vector());
1672 }
1673
1674 /* Use the rvalue deref handler for the most part. We'll ignore
1675 * swizzles in it and write swizzles using writemask, though.
1676 */
1677 ir->accept(v);
1678 return dst_reg(v->result);
1679 }
1680
1681 /**
1682 * Process the condition of a conditional assignment
1683 *
1684 * Examines the condition of a conditional assignment to generate the optimal
1685 * first operand of a \c CMP instruction. If the condition is a relational
1686 * operator with 0 (e.g., \c ir_binop_less), the value being compared will be
1687 * used as the source for the \c CMP instruction. Otherwise the comparison
1688 * is processed to a boolean result, and the boolean result is used as the
1689 * operand to the CMP instruction.
1690 */
1691 bool
1692 ir_to_mesa_visitor::process_move_condition(ir_rvalue *ir)
1693 {
1694 ir_rvalue *src_ir = ir;
1695 bool negate = true;
1696 bool switch_order = false;
1697
1698 ir_expression *const expr = ir->as_expression();
1699 if ((expr != NULL) && (expr->get_num_operands() == 2)) {
1700 bool zero_on_left = false;
1701
1702 if (expr->operands[0]->is_zero()) {
1703 src_ir = expr->operands[1];
1704 zero_on_left = true;
1705 } else if (expr->operands[1]->is_zero()) {
1706 src_ir = expr->operands[0];
1707 zero_on_left = false;
1708 }
1709
1710 /* a is - 0 + - 0 +
1711 * (a < 0) T F F ( a < 0) T F F
1712 * (0 < a) F F T (-a < 0) F F T
1713 * (a <= 0) T T F (-a < 0) F F T (swap order of other operands)
1714 * (0 <= a) F T T ( a < 0) T F F (swap order of other operands)
1715 * (a > 0) F F T (-a < 0) F F T
1716 * (0 > a) T F F ( a < 0) T F F
1717 * (a >= 0) F T T ( a < 0) T F F (swap order of other operands)
1718 * (0 >= a) T T F (-a < 0) F F T (swap order of other operands)
1719 *
1720 * Note that exchanging the order of 0 and 'a' in the comparison simply
1721 * means that the value of 'a' should be negated.
1722 */
1723 if (src_ir != ir) {
1724 switch (expr->operation) {
1725 case ir_binop_less:
1726 switch_order = false;
1727 negate = zero_on_left;
1728 break;
1729
1730 case ir_binop_greater:
1731 switch_order = false;
1732 negate = !zero_on_left;
1733 break;
1734
1735 case ir_binop_lequal:
1736 switch_order = true;
1737 negate = !zero_on_left;
1738 break;
1739
1740 case ir_binop_gequal:
1741 switch_order = true;
1742 negate = zero_on_left;
1743 break;
1744
1745 default:
1746 /* This isn't the right kind of comparison afterall, so make sure
1747 * the whole condition is visited.
1748 */
1749 src_ir = ir;
1750 break;
1751 }
1752 }
1753 }
1754
1755 src_ir->accept(this);
1756
1757 /* We use the OPCODE_CMP (a < 0 ? b : c) for conditional moves, and the
1758 * condition we produced is 0.0 or 1.0. By flipping the sign, we can
1759 * choose which value OPCODE_CMP produces without an extra instruction
1760 * computing the condition.
1761 */
1762 if (negate)
1763 this->result.negate = ~this->result.negate;
1764
1765 return switch_order;
1766 }
1767
1768 void
1769 ir_to_mesa_visitor::visit(ir_assignment *ir)
1770 {
1771 dst_reg l;
1772 src_reg r;
1773 int i;
1774
1775 ir->rhs->accept(this);
1776 r = this->result;
1777
1778 l = get_assignment_lhs(ir->lhs, this);
1779
1780 /* FINISHME: This should really set to the correct maximal writemask for each
1781 * FINISHME: component written (in the loops below). This case can only
1782 * FINISHME: occur for matrices, arrays, and structures.
1783 */
1784 if (ir->write_mask == 0) {
1785 assert(!ir->lhs->type->is_scalar() && !ir->lhs->type->is_vector());
1786 l.writemask = WRITEMASK_XYZW;
1787 } else if (ir->lhs->type->is_scalar()) {
1788 /* FINISHME: This hack makes writing to gl_FragDepth, which lives in the
1789 * FINISHME: W component of fragment shader output zero, work correctly.
1790 */
1791 l.writemask = WRITEMASK_XYZW;
1792 } else {
1793 int swizzles[4];
1794 int first_enabled_chan = 0;
1795 int rhs_chan = 0;
1796
1797 assert(ir->lhs->type->is_vector());
1798 l.writemask = ir->write_mask;
1799
1800 for (int i = 0; i < 4; i++) {
1801 if (l.writemask & (1 << i)) {
1802 first_enabled_chan = GET_SWZ(r.swizzle, i);
1803 break;
1804 }
1805 }
1806
1807 /* Swizzle a small RHS vector into the channels being written.
1808 *
1809 * glsl ir treats write_mask as dictating how many channels are
1810 * present on the RHS while Mesa IR treats write_mask as just
1811 * showing which channels of the vec4 RHS get written.
1812 */
1813 for (int i = 0; i < 4; i++) {
1814 if (l.writemask & (1 << i))
1815 swizzles[i] = GET_SWZ(r.swizzle, rhs_chan++);
1816 else
1817 swizzles[i] = first_enabled_chan;
1818 }
1819 r.swizzle = MAKE_SWIZZLE4(swizzles[0], swizzles[1],
1820 swizzles[2], swizzles[3]);
1821 }
1822
1823 assert(l.file != PROGRAM_UNDEFINED);
1824 assert(r.file != PROGRAM_UNDEFINED);
1825
1826 if (ir->condition) {
1827 const bool switch_order = this->process_move_condition(ir->condition);
1828 src_reg condition = this->result;
1829
1830 for (i = 0; i < type_size(ir->lhs->type); i++) {
1831 if (switch_order) {
1832 emit(ir, OPCODE_CMP, l, condition, src_reg(l), r);
1833 } else {
1834 emit(ir, OPCODE_CMP, l, condition, r, src_reg(l));
1835 }
1836
1837 l.index++;
1838 r.index++;
1839 }
1840 } else {
1841 for (i = 0; i < type_size(ir->lhs->type); i++) {
1842 emit(ir, OPCODE_MOV, l, r);
1843 l.index++;
1844 r.index++;
1845 }
1846 }
1847 }
1848
1849
1850 void
1851 ir_to_mesa_visitor::visit(ir_constant *ir)
1852 {
1853 src_reg src;
1854 GLfloat stack_vals[4] = { 0 };
1855 GLfloat *values = stack_vals;
1856 unsigned int i;
1857
1858 /* Unfortunately, 4 floats is all we can get into
1859 * _mesa_add_unnamed_constant. So, make a temp to store an
1860 * aggregate constant and move each constant value into it. If we
1861 * get lucky, copy propagation will eliminate the extra moves.
1862 */
1863
1864 if (ir->type->base_type == GLSL_TYPE_STRUCT) {
1865 src_reg temp_base = get_temp(ir->type);
1866 dst_reg temp = dst_reg(temp_base);
1867
1868 foreach_in_list(ir_constant, field_value, &ir->components) {
1869 int size = type_size(field_value->type);
1870
1871 assert(size > 0);
1872
1873 field_value->accept(this);
1874 src = this->result;
1875
1876 for (i = 0; i < (unsigned int)size; i++) {
1877 emit(ir, OPCODE_MOV, temp, src);
1878
1879 src.index++;
1880 temp.index++;
1881 }
1882 }
1883 this->result = temp_base;
1884 return;
1885 }
1886
1887 if (ir->type->is_array()) {
1888 src_reg temp_base = get_temp(ir->type);
1889 dst_reg temp = dst_reg(temp_base);
1890 int size = type_size(ir->type->fields.array);
1891
1892 assert(size > 0);
1893
1894 for (i = 0; i < ir->type->length; i++) {
1895 ir->array_elements[i]->accept(this);
1896 src = this->result;
1897 for (int j = 0; j < size; j++) {
1898 emit(ir, OPCODE_MOV, temp, src);
1899
1900 src.index++;
1901 temp.index++;
1902 }
1903 }
1904 this->result = temp_base;
1905 return;
1906 }
1907
1908 if (ir->type->is_matrix()) {
1909 src_reg mat = get_temp(ir->type);
1910 dst_reg mat_column = dst_reg(mat);
1911
1912 for (i = 0; i < ir->type->matrix_columns; i++) {
1913 assert(ir->type->base_type == GLSL_TYPE_FLOAT);
1914 values = &ir->value.f[i * ir->type->vector_elements];
1915
1916 src = src_reg(PROGRAM_CONSTANT, -1, NULL);
1917 src.index = _mesa_add_unnamed_constant(this->prog->Parameters,
1918 (gl_constant_value *) values,
1919 ir->type->vector_elements,
1920 &src.swizzle);
1921 emit(ir, OPCODE_MOV, mat_column, src);
1922
1923 mat_column.index++;
1924 }
1925
1926 this->result = mat;
1927 return;
1928 }
1929
1930 src.file = PROGRAM_CONSTANT;
1931 switch (ir->type->base_type) {
1932 case GLSL_TYPE_FLOAT:
1933 values = &ir->value.f[0];
1934 break;
1935 case GLSL_TYPE_UINT:
1936 for (i = 0; i < ir->type->vector_elements; i++) {
1937 values[i] = ir->value.u[i];
1938 }
1939 break;
1940 case GLSL_TYPE_INT:
1941 for (i = 0; i < ir->type->vector_elements; i++) {
1942 values[i] = ir->value.i[i];
1943 }
1944 break;
1945 case GLSL_TYPE_BOOL:
1946 for (i = 0; i < ir->type->vector_elements; i++) {
1947 values[i] = ir->value.b[i];
1948 }
1949 break;
1950 default:
1951 assert(!"Non-float/uint/int/bool constant");
1952 }
1953
1954 this->result = src_reg(PROGRAM_CONSTANT, -1, ir->type);
1955 this->result.index = _mesa_add_unnamed_constant(this->prog->Parameters,
1956 (gl_constant_value *) values,
1957 ir->type->vector_elements,
1958 &this->result.swizzle);
1959 }
1960
1961 void
1962 ir_to_mesa_visitor::visit(ir_call *)
1963 {
1964 assert(!"ir_to_mesa: All function calls should have been inlined by now.");
1965 }
1966
1967 void
1968 ir_to_mesa_visitor::visit(ir_texture *ir)
1969 {
1970 src_reg result_src, coord, lod_info, projector, dx, dy;
1971 dst_reg result_dst, coord_dst;
1972 ir_to_mesa_instruction *inst = NULL;
1973 prog_opcode opcode = OPCODE_NOP;
1974
1975 if (ir->op == ir_txs)
1976 this->result = src_reg_for_float(0.0);
1977 else
1978 ir->coordinate->accept(this);
1979
1980 /* Put our coords in a temp. We'll need to modify them for shadow,
1981 * projection, or LOD, so the only case we'd use it as is is if
1982 * we're doing plain old texturing. Mesa IR optimization should
1983 * handle cleaning up our mess in that case.
1984 */
1985 coord = get_temp(glsl_type::vec4_type);
1986 coord_dst = dst_reg(coord);
1987 emit(ir, OPCODE_MOV, coord_dst, this->result);
1988
1989 if (ir->projector) {
1990 ir->projector->accept(this);
1991 projector = this->result;
1992 }
1993
1994 /* Storage for our result. Ideally for an assignment we'd be using
1995 * the actual storage for the result here, instead.
1996 */
1997 result_src = get_temp(glsl_type::vec4_type);
1998 result_dst = dst_reg(result_src);
1999
2000 switch (ir->op) {
2001 case ir_tex:
2002 case ir_txs:
2003 opcode = OPCODE_TEX;
2004 break;
2005 case ir_txb:
2006 opcode = OPCODE_TXB;
2007 ir->lod_info.bias->accept(this);
2008 lod_info = this->result;
2009 break;
2010 case ir_txf:
2011 /* Pretend to be TXL so the sampler, coordinate, lod are available */
2012 case ir_txl:
2013 opcode = OPCODE_TXL;
2014 ir->lod_info.lod->accept(this);
2015 lod_info = this->result;
2016 break;
2017 case ir_txd:
2018 opcode = OPCODE_TXD;
2019 ir->lod_info.grad.dPdx->accept(this);
2020 dx = this->result;
2021 ir->lod_info.grad.dPdy->accept(this);
2022 dy = this->result;
2023 break;
2024 case ir_txf_ms:
2025 assert(!"Unexpected ir_txf_ms opcode");
2026 break;
2027 case ir_lod:
2028 assert(!"Unexpected ir_lod opcode");
2029 break;
2030 case ir_tg4:
2031 assert(!"Unexpected ir_tg4 opcode");
2032 break;
2033 case ir_query_levels:
2034 assert(!"Unexpected ir_query_levels opcode");
2035 break;
2036 }
2037
2038 const glsl_type *sampler_type = ir->sampler->type;
2039
2040 if (ir->projector) {
2041 if (opcode == OPCODE_TEX) {
2042 /* Slot the projector in as the last component of the coord. */
2043 coord_dst.writemask = WRITEMASK_W;
2044 emit(ir, OPCODE_MOV, coord_dst, projector);
2045 coord_dst.writemask = WRITEMASK_XYZW;
2046 opcode = OPCODE_TXP;
2047 } else {
2048 src_reg coord_w = coord;
2049 coord_w.swizzle = SWIZZLE_WWWW;
2050
2051 /* For the other TEX opcodes there's no projective version
2052 * since the last slot is taken up by lod info. Do the
2053 * projective divide now.
2054 */
2055 coord_dst.writemask = WRITEMASK_W;
2056 emit(ir, OPCODE_RCP, coord_dst, projector);
2057
2058 /* In the case where we have to project the coordinates "by hand,"
2059 * the shadow comparitor value must also be projected.
2060 */
2061 src_reg tmp_src = coord;
2062 if (ir->shadow_comparitor) {
2063 /* Slot the shadow value in as the second to last component of the
2064 * coord.
2065 */
2066 ir->shadow_comparitor->accept(this);
2067
2068 tmp_src = get_temp(glsl_type::vec4_type);
2069 dst_reg tmp_dst = dst_reg(tmp_src);
2070
2071 /* Projective division not allowed for array samplers. */
2072 assert(!sampler_type->sampler_array);
2073
2074 tmp_dst.writemask = WRITEMASK_Z;
2075 emit(ir, OPCODE_MOV, tmp_dst, this->result);
2076
2077 tmp_dst.writemask = WRITEMASK_XY;
2078 emit(ir, OPCODE_MOV, tmp_dst, coord);
2079 }
2080
2081 coord_dst.writemask = WRITEMASK_XYZ;
2082 emit(ir, OPCODE_MUL, coord_dst, tmp_src, coord_w);
2083
2084 coord_dst.writemask = WRITEMASK_XYZW;
2085 coord.swizzle = SWIZZLE_XYZW;
2086 }
2087 }
2088
2089 /* If projection is done and the opcode is not OPCODE_TXP, then the shadow
2090 * comparitor was put in the correct place (and projected) by the code,
2091 * above, that handles by-hand projection.
2092 */
2093 if (ir->shadow_comparitor && (!ir->projector || opcode == OPCODE_TXP)) {
2094 /* Slot the shadow value in as the second to last component of the
2095 * coord.
2096 */
2097 ir->shadow_comparitor->accept(this);
2098
2099 /* XXX This will need to be updated for cubemap array samplers. */
2100 if (sampler_type->sampler_dimensionality == GLSL_SAMPLER_DIM_2D &&
2101 sampler_type->sampler_array) {
2102 coord_dst.writemask = WRITEMASK_W;
2103 } else {
2104 coord_dst.writemask = WRITEMASK_Z;
2105 }
2106
2107 emit(ir, OPCODE_MOV, coord_dst, this->result);
2108 coord_dst.writemask = WRITEMASK_XYZW;
2109 }
2110
2111 if (opcode == OPCODE_TXL || opcode == OPCODE_TXB) {
2112 /* Mesa IR stores lod or lod bias in the last channel of the coords. */
2113 coord_dst.writemask = WRITEMASK_W;
2114 emit(ir, OPCODE_MOV, coord_dst, lod_info);
2115 coord_dst.writemask = WRITEMASK_XYZW;
2116 }
2117
2118 if (opcode == OPCODE_TXD)
2119 inst = emit(ir, opcode, result_dst, coord, dx, dy);
2120 else
2121 inst = emit(ir, opcode, result_dst, coord);
2122
2123 if (ir->shadow_comparitor)
2124 inst->tex_shadow = GL_TRUE;
2125
2126 inst->sampler = _mesa_get_sampler_uniform_value(ir->sampler,
2127 this->shader_program,
2128 this->prog);
2129
2130 switch (sampler_type->sampler_dimensionality) {
2131 case GLSL_SAMPLER_DIM_1D:
2132 inst->tex_target = (sampler_type->sampler_array)
2133 ? TEXTURE_1D_ARRAY_INDEX : TEXTURE_1D_INDEX;
2134 break;
2135 case GLSL_SAMPLER_DIM_2D:
2136 inst->tex_target = (sampler_type->sampler_array)
2137 ? TEXTURE_2D_ARRAY_INDEX : TEXTURE_2D_INDEX;
2138 break;
2139 case GLSL_SAMPLER_DIM_3D:
2140 inst->tex_target = TEXTURE_3D_INDEX;
2141 break;
2142 case GLSL_SAMPLER_DIM_CUBE:
2143 inst->tex_target = TEXTURE_CUBE_INDEX;
2144 break;
2145 case GLSL_SAMPLER_DIM_RECT:
2146 inst->tex_target = TEXTURE_RECT_INDEX;
2147 break;
2148 case GLSL_SAMPLER_DIM_BUF:
2149 assert(!"FINISHME: Implement ARB_texture_buffer_object");
2150 break;
2151 case GLSL_SAMPLER_DIM_EXTERNAL:
2152 inst->tex_target = TEXTURE_EXTERNAL_INDEX;
2153 break;
2154 default:
2155 assert(!"Should not get here.");
2156 }
2157
2158 this->result = result_src;
2159 }
2160
2161 void
2162 ir_to_mesa_visitor::visit(ir_return *ir)
2163 {
2164 /* Non-void functions should have been inlined. We may still emit RETs
2165 * from main() unless the EmitNoMainReturn option is set.
2166 */
2167 assert(!ir->get_value());
2168 emit(ir, OPCODE_RET);
2169 }
2170
2171 void
2172 ir_to_mesa_visitor::visit(ir_discard *ir)
2173 {
2174 if (ir->condition) {
2175 ir->condition->accept(this);
2176 this->result.negate = ~this->result.negate;
2177 emit(ir, OPCODE_KIL, undef_dst, this->result);
2178 } else {
2179 emit(ir, OPCODE_KIL_NV);
2180 }
2181 }
2182
2183 void
2184 ir_to_mesa_visitor::visit(ir_if *ir)
2185 {
2186 ir_to_mesa_instruction *cond_inst, *if_inst;
2187 ir_to_mesa_instruction *prev_inst;
2188
2189 prev_inst = (ir_to_mesa_instruction *)this->instructions.get_tail();
2190
2191 ir->condition->accept(this);
2192 assert(this->result.file != PROGRAM_UNDEFINED);
2193
2194 if (this->options->EmitCondCodes) {
2195 cond_inst = (ir_to_mesa_instruction *)this->instructions.get_tail();
2196
2197 /* See if we actually generated any instruction for generating
2198 * the condition. If not, then cook up a move to a temp so we
2199 * have something to set cond_update on.
2200 */
2201 if (cond_inst == prev_inst) {
2202 src_reg temp = get_temp(glsl_type::bool_type);
2203 cond_inst = emit(ir->condition, OPCODE_MOV, dst_reg(temp), result);
2204 }
2205 cond_inst->cond_update = GL_TRUE;
2206
2207 if_inst = emit(ir->condition, OPCODE_IF);
2208 if_inst->dst.cond_mask = COND_NE;
2209 } else {
2210 if_inst = emit(ir->condition, OPCODE_IF, undef_dst, this->result);
2211 }
2212
2213 this->instructions.push_tail(if_inst);
2214
2215 visit_exec_list(&ir->then_instructions, this);
2216
2217 if (!ir->else_instructions.is_empty()) {
2218 emit(ir->condition, OPCODE_ELSE);
2219 visit_exec_list(&ir->else_instructions, this);
2220 }
2221
2222 emit(ir->condition, OPCODE_ENDIF);
2223 }
2224
2225 void
2226 ir_to_mesa_visitor::visit(ir_emit_vertex *)
2227 {
2228 assert(!"Geometry shaders not supported.");
2229 }
2230
2231 void
2232 ir_to_mesa_visitor::visit(ir_end_primitive *)
2233 {
2234 assert(!"Geometry shaders not supported.");
2235 }
2236
2237 ir_to_mesa_visitor::ir_to_mesa_visitor()
2238 {
2239 result.file = PROGRAM_UNDEFINED;
2240 next_temp = 1;
2241 next_signature_id = 1;
2242 current_function = NULL;
2243 mem_ctx = ralloc_context(NULL);
2244 }
2245
2246 ir_to_mesa_visitor::~ir_to_mesa_visitor()
2247 {
2248 ralloc_free(mem_ctx);
2249 }
2250
2251 static struct prog_src_register
2252 mesa_src_reg_from_ir_src_reg(src_reg reg)
2253 {
2254 struct prog_src_register mesa_reg;
2255
2256 mesa_reg.File = reg.file;
2257 assert(reg.index < (1 << INST_INDEX_BITS));
2258 mesa_reg.Index = reg.index;
2259 mesa_reg.Swizzle = reg.swizzle;
2260 mesa_reg.RelAddr = reg.reladdr != NULL;
2261 mesa_reg.Negate = reg.negate;
2262 mesa_reg.Abs = 0;
2263 mesa_reg.HasIndex2 = GL_FALSE;
2264 mesa_reg.RelAddr2 = 0;
2265 mesa_reg.Index2 = 0;
2266
2267 return mesa_reg;
2268 }
2269
2270 static void
2271 set_branchtargets(ir_to_mesa_visitor *v,
2272 struct prog_instruction *mesa_instructions,
2273 int num_instructions)
2274 {
2275 int if_count = 0, loop_count = 0;
2276 int *if_stack, *loop_stack;
2277 int if_stack_pos = 0, loop_stack_pos = 0;
2278 int i, j;
2279
2280 for (i = 0; i < num_instructions; i++) {
2281 switch (mesa_instructions[i].Opcode) {
2282 case OPCODE_IF:
2283 if_count++;
2284 break;
2285 case OPCODE_BGNLOOP:
2286 loop_count++;
2287 break;
2288 case OPCODE_BRK:
2289 case OPCODE_CONT:
2290 mesa_instructions[i].BranchTarget = -1;
2291 break;
2292 default:
2293 break;
2294 }
2295 }
2296
2297 if_stack = rzalloc_array(v->mem_ctx, int, if_count);
2298 loop_stack = rzalloc_array(v->mem_ctx, int, loop_count);
2299
2300 for (i = 0; i < num_instructions; i++) {
2301 switch (mesa_instructions[i].Opcode) {
2302 case OPCODE_IF:
2303 if_stack[if_stack_pos] = i;
2304 if_stack_pos++;
2305 break;
2306 case OPCODE_ELSE:
2307 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2308 if_stack[if_stack_pos - 1] = i;
2309 break;
2310 case OPCODE_ENDIF:
2311 mesa_instructions[if_stack[if_stack_pos - 1]].BranchTarget = i;
2312 if_stack_pos--;
2313 break;
2314 case OPCODE_BGNLOOP:
2315 loop_stack[loop_stack_pos] = i;
2316 loop_stack_pos++;
2317 break;
2318 case OPCODE_ENDLOOP:
2319 loop_stack_pos--;
2320 /* Rewrite any breaks/conts at this nesting level (haven't
2321 * already had a BranchTarget assigned) to point to the end
2322 * of the loop.
2323 */
2324 for (j = loop_stack[loop_stack_pos]; j < i; j++) {
2325 if (mesa_instructions[j].Opcode == OPCODE_BRK ||
2326 mesa_instructions[j].Opcode == OPCODE_CONT) {
2327 if (mesa_instructions[j].BranchTarget == -1) {
2328 mesa_instructions[j].BranchTarget = i;
2329 }
2330 }
2331 }
2332 /* The loop ends point at each other. */
2333 mesa_instructions[i].BranchTarget = loop_stack[loop_stack_pos];
2334 mesa_instructions[loop_stack[loop_stack_pos]].BranchTarget = i;
2335 break;
2336 case OPCODE_CAL:
2337 foreach_in_list(function_entry, entry, &v->function_signatures) {
2338 if (entry->sig_id == mesa_instructions[i].BranchTarget) {
2339 mesa_instructions[i].BranchTarget = entry->inst;
2340 break;
2341 }
2342 }
2343 break;
2344 default:
2345 break;
2346 }
2347 }
2348 }
2349
2350 static void
2351 print_program(struct prog_instruction *mesa_instructions,
2352 ir_instruction **mesa_instruction_annotation,
2353 int num_instructions)
2354 {
2355 ir_instruction *last_ir = NULL;
2356 int i;
2357 int indent = 0;
2358
2359 for (i = 0; i < num_instructions; i++) {
2360 struct prog_instruction *mesa_inst = mesa_instructions + i;
2361 ir_instruction *ir = mesa_instruction_annotation[i];
2362
2363 fprintf(stdout, "%3d: ", i);
2364
2365 if (last_ir != ir && ir) {
2366 int j;
2367
2368 for (j = 0; j < indent; j++) {
2369 fprintf(stdout, " ");
2370 }
2371 ir->print();
2372 printf("\n");
2373 last_ir = ir;
2374
2375 fprintf(stdout, " "); /* line number spacing. */
2376 }
2377
2378 indent = _mesa_fprint_instruction_opt(stdout, mesa_inst, indent,
2379 PROG_PRINT_DEBUG, NULL);
2380 }
2381 }
2382
2383 namespace {
2384
2385 class add_uniform_to_shader : public program_resource_visitor {
2386 public:
2387 add_uniform_to_shader(struct gl_shader_program *shader_program,
2388 struct gl_program_parameter_list *params,
2389 gl_shader_stage shader_type)
2390 : shader_program(shader_program), params(params), idx(-1),
2391 shader_type(shader_type)
2392 {
2393 /* empty */
2394 }
2395
2396 void process(ir_variable *var)
2397 {
2398 this->idx = -1;
2399 this->program_resource_visitor::process(var);
2400
2401 var->data.location = this->idx;
2402 }
2403
2404 private:
2405 virtual void visit_field(const glsl_type *type, const char *name,
2406 bool row_major);
2407
2408 struct gl_shader_program *shader_program;
2409 struct gl_program_parameter_list *params;
2410 int idx;
2411 gl_shader_stage shader_type;
2412 };
2413
2414 } /* anonymous namespace */
2415
2416 void
2417 add_uniform_to_shader::visit_field(const glsl_type *type, const char *name,
2418 bool row_major)
2419 {
2420 unsigned int size;
2421
2422 (void) row_major;
2423
2424 if (type->is_vector() || type->is_scalar()) {
2425 size = type->vector_elements;
2426 } else {
2427 size = type_size(type) * 4;
2428 }
2429
2430 gl_register_file file;
2431 if (type->is_sampler() ||
2432 (type->is_array() && type->fields.array->is_sampler())) {
2433 file = PROGRAM_SAMPLER;
2434 } else {
2435 file = PROGRAM_UNIFORM;
2436 }
2437
2438 int index = _mesa_lookup_parameter_index(params, -1, name);
2439 if (index < 0) {
2440 index = _mesa_add_parameter(params, file, name, size, type->gl_type,
2441 NULL, NULL);
2442
2443 /* Sampler uniform values are stored in prog->SamplerUnits,
2444 * and the entry in that array is selected by this index we
2445 * store in ParameterValues[].
2446 */
2447 if (file == PROGRAM_SAMPLER) {
2448 unsigned location;
2449 const bool found =
2450 this->shader_program->UniformHash->get(location,
2451 params->Parameters[index].Name);
2452 assert(found);
2453
2454 if (!found)
2455 return;
2456
2457 struct gl_uniform_storage *storage =
2458 &this->shader_program->UniformStorage[location];
2459
2460 assert(storage->sampler[shader_type].active);
2461
2462 for (unsigned int j = 0; j < size / 4; j++)
2463 params->ParameterValues[index + j][0].f =
2464 storage->sampler[shader_type].index + j;
2465 }
2466 }
2467
2468 /* The first part of the uniform that's processed determines the base
2469 * location of the whole uniform (for structures).
2470 */
2471 if (this->idx < 0)
2472 this->idx = index;
2473 }
2474
2475 /**
2476 * Generate the program parameters list for the user uniforms in a shader
2477 *
2478 * \param shader_program Linked shader program. This is only used to
2479 * emit possible link errors to the info log.
2480 * \param sh Shader whose uniforms are to be processed.
2481 * \param params Parameter list to be filled in.
2482 */
2483 void
2484 _mesa_generate_parameters_list_for_uniforms(struct gl_shader_program
2485 *shader_program,
2486 struct gl_shader *sh,
2487 struct gl_program_parameter_list
2488 *params)
2489 {
2490 add_uniform_to_shader add(shader_program, params, sh->Stage);
2491
2492 foreach_in_list(ir_instruction, node, sh->ir) {
2493 ir_variable *var = node->as_variable();
2494
2495 if ((var == NULL) || (var->data.mode != ir_var_uniform)
2496 || var->is_in_uniform_block() || (strncmp(var->name, "gl_", 3) == 0))
2497 continue;
2498
2499 add.process(var);
2500 }
2501 }
2502
2503 void
2504 _mesa_associate_uniform_storage(struct gl_context *ctx,
2505 struct gl_shader_program *shader_program,
2506 struct gl_program_parameter_list *params)
2507 {
2508 /* After adding each uniform to the parameter list, connect the storage for
2509 * the parameter with the tracking structure used by the API for the
2510 * uniform.
2511 */
2512 unsigned last_location = unsigned(~0);
2513 for (unsigned i = 0; i < params->NumParameters; i++) {
2514 if (params->Parameters[i].Type != PROGRAM_UNIFORM)
2515 continue;
2516
2517 unsigned location;
2518 const bool found =
2519 shader_program->UniformHash->get(location, params->Parameters[i].Name);
2520 assert(found);
2521
2522 if (!found)
2523 continue;
2524
2525 if (location != last_location) {
2526 struct gl_uniform_storage *storage =
2527 &shader_program->UniformStorage[location];
2528 enum gl_uniform_driver_format format = uniform_native;
2529
2530 unsigned columns = 0;
2531 switch (storage->type->base_type) {
2532 case GLSL_TYPE_UINT:
2533 assert(ctx->Const.NativeIntegers);
2534 format = uniform_native;
2535 columns = 1;
2536 break;
2537 case GLSL_TYPE_INT:
2538 format =
2539 (ctx->Const.NativeIntegers) ? uniform_native : uniform_int_float;
2540 columns = 1;
2541 break;
2542 case GLSL_TYPE_FLOAT:
2543 format = uniform_native;
2544 columns = storage->type->matrix_columns;
2545 break;
2546 case GLSL_TYPE_BOOL:
2547 if (ctx->Const.NativeIntegers) {
2548 format = (ctx->Const.UniformBooleanTrue == 1)
2549 ? uniform_bool_int_0_1 : uniform_bool_int_0_not0;
2550 } else {
2551 format = uniform_bool_float;
2552 }
2553 columns = 1;
2554 break;
2555 case GLSL_TYPE_SAMPLER:
2556 case GLSL_TYPE_IMAGE:
2557 format = uniform_native;
2558 columns = 1;
2559 break;
2560 case GLSL_TYPE_ATOMIC_UINT:
2561 case GLSL_TYPE_ARRAY:
2562 case GLSL_TYPE_VOID:
2563 case GLSL_TYPE_STRUCT:
2564 case GLSL_TYPE_ERROR:
2565 case GLSL_TYPE_INTERFACE:
2566 assert(!"Should not get here.");
2567 break;
2568 }
2569
2570 _mesa_uniform_attach_driver_storage(storage,
2571 4 * sizeof(float) * columns,
2572 4 * sizeof(float),
2573 format,
2574 &params->ParameterValues[i]);
2575
2576 /* After attaching the driver's storage to the uniform, propagate any
2577 * data from the linker's backing store. This will cause values from
2578 * initializers in the source code to be copied over.
2579 */
2580 _mesa_propagate_uniforms_to_driver_storage(storage,
2581 0,
2582 MAX2(1, storage->array_elements));
2583
2584 last_location = location;
2585 }
2586 }
2587 }
2588
2589 /*
2590 * On a basic block basis, tracks available PROGRAM_TEMPORARY register
2591 * channels for copy propagation and updates following instructions to
2592 * use the original versions.
2593 *
2594 * The ir_to_mesa_visitor lazily produces code assuming that this pass
2595 * will occur. As an example, a TXP production before this pass:
2596 *
2597 * 0: MOV TEMP[1], INPUT[4].xyyy;
2598 * 1: MOV TEMP[1].w, INPUT[4].wwww;
2599 * 2: TXP TEMP[2], TEMP[1], texture[0], 2D;
2600 *
2601 * and after:
2602 *
2603 * 0: MOV TEMP[1], INPUT[4].xyyy;
2604 * 1: MOV TEMP[1].w, INPUT[4].wwww;
2605 * 2: TXP TEMP[2], INPUT[4].xyyw, texture[0], 2D;
2606 *
2607 * which allows for dead code elimination on TEMP[1]'s writes.
2608 */
2609 void
2610 ir_to_mesa_visitor::copy_propagate(void)
2611 {
2612 ir_to_mesa_instruction **acp = rzalloc_array(mem_ctx,
2613 ir_to_mesa_instruction *,
2614 this->next_temp * 4);
2615 int *acp_level = rzalloc_array(mem_ctx, int, this->next_temp * 4);
2616 int level = 0;
2617
2618 foreach_in_list(ir_to_mesa_instruction, inst, &this->instructions) {
2619 assert(inst->dst.file != PROGRAM_TEMPORARY
2620 || inst->dst.index < this->next_temp);
2621
2622 /* First, do any copy propagation possible into the src regs. */
2623 for (int r = 0; r < 3; r++) {
2624 ir_to_mesa_instruction *first = NULL;
2625 bool good = true;
2626 int acp_base = inst->src[r].index * 4;
2627
2628 if (inst->src[r].file != PROGRAM_TEMPORARY ||
2629 inst->src[r].reladdr)
2630 continue;
2631
2632 /* See if we can find entries in the ACP consisting of MOVs
2633 * from the same src register for all the swizzled channels
2634 * of this src register reference.
2635 */
2636 for (int i = 0; i < 4; i++) {
2637 int src_chan = GET_SWZ(inst->src[r].swizzle, i);
2638 ir_to_mesa_instruction *copy_chan = acp[acp_base + src_chan];
2639
2640 if (!copy_chan) {
2641 good = false;
2642 break;
2643 }
2644
2645 assert(acp_level[acp_base + src_chan] <= level);
2646
2647 if (!first) {
2648 first = copy_chan;
2649 } else {
2650 if (first->src[0].file != copy_chan->src[0].file ||
2651 first->src[0].index != copy_chan->src[0].index) {
2652 good = false;
2653 break;
2654 }
2655 }
2656 }
2657
2658 if (good) {
2659 /* We've now validated that we can copy-propagate to
2660 * replace this src register reference. Do it.
2661 */
2662 inst->src[r].file = first->src[0].file;
2663 inst->src[r].index = first->src[0].index;
2664
2665 int swizzle = 0;
2666 for (int i = 0; i < 4; i++) {
2667 int src_chan = GET_SWZ(inst->src[r].swizzle, i);
2668 ir_to_mesa_instruction *copy_inst = acp[acp_base + src_chan];
2669 swizzle |= (GET_SWZ(copy_inst->src[0].swizzle, src_chan) <<
2670 (3 * i));
2671 }
2672 inst->src[r].swizzle = swizzle;
2673 }
2674 }
2675
2676 switch (inst->op) {
2677 case OPCODE_BGNLOOP:
2678 case OPCODE_ENDLOOP:
2679 /* End of a basic block, clear the ACP entirely. */
2680 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2681 break;
2682
2683 case OPCODE_IF:
2684 ++level;
2685 break;
2686
2687 case OPCODE_ENDIF:
2688 case OPCODE_ELSE:
2689 /* Clear all channels written inside the block from the ACP, but
2690 * leaving those that were not touched.
2691 */
2692 for (int r = 0; r < this->next_temp; r++) {
2693 for (int c = 0; c < 4; c++) {
2694 if (!acp[4 * r + c])
2695 continue;
2696
2697 if (acp_level[4 * r + c] >= level)
2698 acp[4 * r + c] = NULL;
2699 }
2700 }
2701 if (inst->op == OPCODE_ENDIF)
2702 --level;
2703 break;
2704
2705 default:
2706 /* Continuing the block, clear any written channels from
2707 * the ACP.
2708 */
2709 if (inst->dst.file == PROGRAM_TEMPORARY && inst->dst.reladdr) {
2710 /* Any temporary might be written, so no copy propagation
2711 * across this instruction.
2712 */
2713 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2714 } else if (inst->dst.file == PROGRAM_OUTPUT &&
2715 inst->dst.reladdr) {
2716 /* Any output might be written, so no copy propagation
2717 * from outputs across this instruction.
2718 */
2719 for (int r = 0; r < this->next_temp; r++) {
2720 for (int c = 0; c < 4; c++) {
2721 if (!acp[4 * r + c])
2722 continue;
2723
2724 if (acp[4 * r + c]->src[0].file == PROGRAM_OUTPUT)
2725 acp[4 * r + c] = NULL;
2726 }
2727 }
2728 } else if (inst->dst.file == PROGRAM_TEMPORARY ||
2729 inst->dst.file == PROGRAM_OUTPUT) {
2730 /* Clear where it's used as dst. */
2731 if (inst->dst.file == PROGRAM_TEMPORARY) {
2732 for (int c = 0; c < 4; c++) {
2733 if (inst->dst.writemask & (1 << c)) {
2734 acp[4 * inst->dst.index + c] = NULL;
2735 }
2736 }
2737 }
2738
2739 /* Clear where it's used as src. */
2740 for (int r = 0; r < this->next_temp; r++) {
2741 for (int c = 0; c < 4; c++) {
2742 if (!acp[4 * r + c])
2743 continue;
2744
2745 int src_chan = GET_SWZ(acp[4 * r + c]->src[0].swizzle, c);
2746
2747 if (acp[4 * r + c]->src[0].file == inst->dst.file &&
2748 acp[4 * r + c]->src[0].index == inst->dst.index &&
2749 inst->dst.writemask & (1 << src_chan))
2750 {
2751 acp[4 * r + c] = NULL;
2752 }
2753 }
2754 }
2755 }
2756 break;
2757 }
2758
2759 /* If this is a copy, add it to the ACP. */
2760 if (inst->op == OPCODE_MOV &&
2761 inst->dst.file == PROGRAM_TEMPORARY &&
2762 !(inst->dst.file == inst->src[0].file &&
2763 inst->dst.index == inst->src[0].index) &&
2764 !inst->dst.reladdr &&
2765 !inst->saturate &&
2766 !inst->src[0].reladdr &&
2767 !inst->src[0].negate) {
2768 for (int i = 0; i < 4; i++) {
2769 if (inst->dst.writemask & (1 << i)) {
2770 acp[4 * inst->dst.index + i] = inst;
2771 acp_level[4 * inst->dst.index + i] = level;
2772 }
2773 }
2774 }
2775 }
2776
2777 ralloc_free(acp_level);
2778 ralloc_free(acp);
2779 }
2780
2781
2782 /**
2783 * Convert a shader's GLSL IR into a Mesa gl_program.
2784 */
2785 static struct gl_program *
2786 get_mesa_program(struct gl_context *ctx,
2787 struct gl_shader_program *shader_program,
2788 struct gl_shader *shader)
2789 {
2790 ir_to_mesa_visitor v;
2791 struct prog_instruction *mesa_instructions, *mesa_inst;
2792 ir_instruction **mesa_instruction_annotation;
2793 int i;
2794 struct gl_program *prog;
2795 GLenum target = _mesa_shader_stage_to_program(shader->Stage);
2796 const char *target_string = _mesa_shader_stage_to_string(shader->Stage);
2797 struct gl_shader_compiler_options *options =
2798 &ctx->Const.ShaderCompilerOptions[shader->Stage];
2799
2800 validate_ir_tree(shader->ir);
2801
2802 prog = ctx->Driver.NewProgram(ctx, target, shader_program->Name);
2803 if (!prog)
2804 return NULL;
2805 prog->Parameters = _mesa_new_parameter_list();
2806 v.ctx = ctx;
2807 v.prog = prog;
2808 v.shader_program = shader_program;
2809 v.options = options;
2810
2811 _mesa_generate_parameters_list_for_uniforms(shader_program, shader,
2812 prog->Parameters);
2813
2814 /* Emit Mesa IR for main(). */
2815 visit_exec_list(shader->ir, &v);
2816 v.emit(NULL, OPCODE_END);
2817
2818 prog->NumTemporaries = v.next_temp;
2819
2820 unsigned num_instructions = v.instructions.length();
2821
2822 mesa_instructions =
2823 (struct prog_instruction *)calloc(num_instructions,
2824 sizeof(*mesa_instructions));
2825 mesa_instruction_annotation = ralloc_array(v.mem_ctx, ir_instruction *,
2826 num_instructions);
2827
2828 v.copy_propagate();
2829
2830 /* Convert ir_mesa_instructions into prog_instructions.
2831 */
2832 mesa_inst = mesa_instructions;
2833 i = 0;
2834 foreach_in_list(const ir_to_mesa_instruction, inst, &v.instructions) {
2835 mesa_inst->Opcode = inst->op;
2836 mesa_inst->CondUpdate = inst->cond_update;
2837 if (inst->saturate)
2838 mesa_inst->SaturateMode = SATURATE_ZERO_ONE;
2839 mesa_inst->DstReg.File = inst->dst.file;
2840 mesa_inst->DstReg.Index = inst->dst.index;
2841 mesa_inst->DstReg.CondMask = inst->dst.cond_mask;
2842 mesa_inst->DstReg.WriteMask = inst->dst.writemask;
2843 mesa_inst->DstReg.RelAddr = inst->dst.reladdr != NULL;
2844 mesa_inst->SrcReg[0] = mesa_src_reg_from_ir_src_reg(inst->src[0]);
2845 mesa_inst->SrcReg[1] = mesa_src_reg_from_ir_src_reg(inst->src[1]);
2846 mesa_inst->SrcReg[2] = mesa_src_reg_from_ir_src_reg(inst->src[2]);
2847 mesa_inst->TexSrcUnit = inst->sampler;
2848 mesa_inst->TexSrcTarget = inst->tex_target;
2849 mesa_inst->TexShadow = inst->tex_shadow;
2850 mesa_instruction_annotation[i] = inst->ir;
2851
2852 /* Set IndirectRegisterFiles. */
2853 if (mesa_inst->DstReg.RelAddr)
2854 prog->IndirectRegisterFiles |= 1 << mesa_inst->DstReg.File;
2855
2856 /* Update program's bitmask of indirectly accessed register files */
2857 for (unsigned src = 0; src < 3; src++)
2858 if (mesa_inst->SrcReg[src].RelAddr)
2859 prog->IndirectRegisterFiles |= 1 << mesa_inst->SrcReg[src].File;
2860
2861 switch (mesa_inst->Opcode) {
2862 case OPCODE_IF:
2863 if (options->MaxIfDepth == 0) {
2864 linker_warning(shader_program,
2865 "Couldn't flatten if-statement. "
2866 "This will likely result in software "
2867 "rasterization.\n");
2868 }
2869 break;
2870 case OPCODE_BGNLOOP:
2871 if (options->EmitNoLoops) {
2872 linker_warning(shader_program,
2873 "Couldn't unroll loop. "
2874 "This will likely result in software "
2875 "rasterization.\n");
2876 }
2877 break;
2878 case OPCODE_CONT:
2879 if (options->EmitNoCont) {
2880 linker_warning(shader_program,
2881 "Couldn't lower continue-statement. "
2882 "This will likely result in software "
2883 "rasterization.\n");
2884 }
2885 break;
2886 case OPCODE_ARL:
2887 prog->NumAddressRegs = 1;
2888 break;
2889 default:
2890 break;
2891 }
2892
2893 mesa_inst++;
2894 i++;
2895
2896 if (!shader_program->LinkStatus)
2897 break;
2898 }
2899
2900 if (!shader_program->LinkStatus) {
2901 goto fail_exit;
2902 }
2903
2904 set_branchtargets(&v, mesa_instructions, num_instructions);
2905
2906 if (ctx->_Shader->Flags & GLSL_DUMP) {
2907 fprintf(stderr, "\n");
2908 fprintf(stderr, "GLSL IR for linked %s program %d:\n", target_string,
2909 shader_program->Name);
2910 _mesa_print_ir(stderr, shader->ir, NULL);
2911 fprintf(stderr, "\n");
2912 fprintf(stderr, "\n");
2913 fprintf(stderr, "Mesa IR for linked %s program %d:\n", target_string,
2914 shader_program->Name);
2915 print_program(mesa_instructions, mesa_instruction_annotation,
2916 num_instructions);
2917 fflush(stderr);
2918 }
2919
2920 prog->Instructions = mesa_instructions;
2921 prog->NumInstructions = num_instructions;
2922
2923 /* Setting this to NULL prevents a possible double free in the fail_exit
2924 * path (far below).
2925 */
2926 mesa_instructions = NULL;
2927
2928 do_set_program_inouts(shader->ir, prog, shader->Stage);
2929
2930 prog->SamplersUsed = shader->active_samplers;
2931 prog->ShadowSamplers = shader->shadow_samplers;
2932 _mesa_update_shader_textures_used(shader_program, prog);
2933
2934 /* Set the gl_FragDepth layout. */
2935 if (target == GL_FRAGMENT_PROGRAM_ARB) {
2936 struct gl_fragment_program *fp = (struct gl_fragment_program *)prog;
2937 fp->FragDepthLayout = shader_program->FragDepthLayout;
2938 }
2939
2940 _mesa_reference_program(ctx, &shader->Program, prog);
2941
2942 if ((ctx->_Shader->Flags & GLSL_NO_OPT) == 0) {
2943 _mesa_optimize_program(ctx, prog);
2944 }
2945
2946 /* This has to be done last. Any operation that can cause
2947 * prog->ParameterValues to get reallocated (e.g., anything that adds a
2948 * program constant) has to happen before creating this linkage.
2949 */
2950 _mesa_associate_uniform_storage(ctx, shader_program, prog->Parameters);
2951 if (!shader_program->LinkStatus) {
2952 goto fail_exit;
2953 }
2954
2955 return prog;
2956
2957 fail_exit:
2958 free(mesa_instructions);
2959 _mesa_reference_program(ctx, &shader->Program, NULL);
2960 return NULL;
2961 }
2962
2963 extern "C" {
2964
2965 /**
2966 * Link a shader.
2967 * Called via ctx->Driver.LinkShader()
2968 * This actually involves converting GLSL IR into Mesa gl_programs with
2969 * code lowering and other optimizations.
2970 */
2971 GLboolean
2972 _mesa_ir_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
2973 {
2974 assert(prog->LinkStatus);
2975
2976 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
2977 if (prog->_LinkedShaders[i] == NULL)
2978 continue;
2979
2980 bool progress;
2981 exec_list *ir = prog->_LinkedShaders[i]->ir;
2982 const struct gl_shader_compiler_options *options =
2983 &ctx->Const.ShaderCompilerOptions[prog->_LinkedShaders[i]->Stage];
2984
2985 do {
2986 progress = false;
2987
2988 /* Lowering */
2989 do_mat_op_to_vec(ir);
2990 lower_instructions(ir, (MOD_TO_FRACT | DIV_TO_MUL_RCP | EXP_TO_EXP2
2991 | LOG_TO_LOG2 | INT_DIV_TO_MUL_RCP
2992 | ((options->EmitNoPow) ? POW_TO_EXP2 : 0)));
2993
2994 progress = do_lower_jumps(ir, true, true, options->EmitNoMainReturn, options->EmitNoCont, options->EmitNoLoops) || progress;
2995
2996 progress = do_common_optimization(ir, true, true,
2997 options, ctx->Const.NativeIntegers)
2998 || progress;
2999
3000 progress = lower_quadop_vector(ir, true) || progress;
3001
3002 if (options->MaxIfDepth == 0)
3003 progress = lower_discard(ir) || progress;
3004
3005 progress = lower_if_to_cond_assign(ir, options->MaxIfDepth) || progress;
3006
3007 if (options->EmitNoNoise)
3008 progress = lower_noise(ir) || progress;
3009
3010 /* If there are forms of indirect addressing that the driver
3011 * cannot handle, perform the lowering pass.
3012 */
3013 if (options->EmitNoIndirectInput || options->EmitNoIndirectOutput
3014 || options->EmitNoIndirectTemp || options->EmitNoIndirectUniform)
3015 progress =
3016 lower_variable_index_to_cond_assign(ir,
3017 options->EmitNoIndirectInput,
3018 options->EmitNoIndirectOutput,
3019 options->EmitNoIndirectTemp,
3020 options->EmitNoIndirectUniform)
3021 || progress;
3022
3023 progress = do_vec_index_to_cond_assign(ir) || progress;
3024 progress = lower_vector_insert(ir, true) || progress;
3025 } while (progress);
3026
3027 validate_ir_tree(ir);
3028 }
3029
3030 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
3031 struct gl_program *linked_prog;
3032
3033 if (prog->_LinkedShaders[i] == NULL)
3034 continue;
3035
3036 linked_prog = get_mesa_program(ctx, prog, prog->_LinkedShaders[i]);
3037
3038 if (linked_prog) {
3039 _mesa_copy_linked_program_data((gl_shader_stage) i, prog, linked_prog);
3040
3041 _mesa_reference_program(ctx, &prog->_LinkedShaders[i]->Program,
3042 linked_prog);
3043 if (!ctx->Driver.ProgramStringNotify(ctx,
3044 _mesa_shader_stage_to_program(i),
3045 linked_prog)) {
3046 return GL_FALSE;
3047 }
3048 }
3049
3050 _mesa_reference_program(ctx, &linked_prog, NULL);
3051 }
3052
3053 return prog->LinkStatus;
3054 }
3055
3056 /**
3057 * Link a GLSL shader program. Called via glLinkProgram().
3058 */
3059 void
3060 _mesa_glsl_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
3061 {
3062 unsigned int i;
3063
3064 _mesa_clear_shader_program_data(ctx, prog);
3065
3066 prog->LinkStatus = GL_TRUE;
3067
3068 for (i = 0; i < prog->NumShaders; i++) {
3069 if (!prog->Shaders[i]->CompileStatus) {
3070 linker_error(prog, "linking with uncompiled shader");
3071 }
3072 }
3073
3074 if (prog->LinkStatus) {
3075 link_shaders(ctx, prog);
3076 }
3077
3078 if (prog->LinkStatus) {
3079 if (!ctx->Driver.LinkShader(ctx, prog)) {
3080 prog->LinkStatus = GL_FALSE;
3081 }
3082 }
3083
3084 if (ctx->_Shader->Flags & GLSL_DUMP) {
3085 if (!prog->LinkStatus) {
3086 fprintf(stderr, "GLSL shader program %d failed to link\n", prog->Name);
3087 }
3088
3089 if (prog->InfoLog && prog->InfoLog[0] != 0) {
3090 fprintf(stderr, "GLSL shader program %d info log:\n", prog->Name);
3091 fprintf(stderr, "%s\n", prog->InfoLog);
3092 }
3093 }
3094 }
3095
3096 } /* extern "C" */