tgsi: store the sampler view type directly in the instruction
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_ureg.c
1 /**************************************************************************
2 *
3 * Copyright 2009-2010 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE, INC AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28
29 #include "pipe/p_screen.h"
30 #include "pipe/p_context.h"
31 #include "pipe/p_state.h"
32 #include "tgsi/tgsi_ureg.h"
33 #include "tgsi/tgsi_build.h"
34 #include "tgsi/tgsi_info.h"
35 #include "tgsi/tgsi_dump.h"
36 #include "tgsi/tgsi_sanity.h"
37 #include "util/u_debug.h"
38 #include "util/u_inlines.h"
39 #include "util/u_memory.h"
40 #include "util/u_math.h"
41 #include "util/u_bitmask.h"
42
43 union tgsi_any_token {
44 struct tgsi_header header;
45 struct tgsi_processor processor;
46 struct tgsi_token token;
47 struct tgsi_property prop;
48 struct tgsi_property_data prop_data;
49 struct tgsi_declaration decl;
50 struct tgsi_declaration_range decl_range;
51 struct tgsi_declaration_dimension decl_dim;
52 struct tgsi_declaration_interp decl_interp;
53 struct tgsi_declaration_image decl_image;
54 struct tgsi_declaration_semantic decl_semantic;
55 struct tgsi_declaration_sampler_view decl_sampler_view;
56 struct tgsi_declaration_array array;
57 struct tgsi_immediate imm;
58 union tgsi_immediate_data imm_data;
59 struct tgsi_instruction insn;
60 struct tgsi_instruction_label insn_label;
61 struct tgsi_instruction_texture insn_texture;
62 struct tgsi_instruction_memory insn_memory;
63 struct tgsi_texture_offset insn_texture_offset;
64 struct tgsi_src_register src;
65 struct tgsi_ind_register ind;
66 struct tgsi_dimension dim;
67 struct tgsi_dst_register dst;
68 unsigned value;
69 };
70
71
72 struct ureg_tokens {
73 union tgsi_any_token *tokens;
74 unsigned size;
75 unsigned order;
76 unsigned count;
77 };
78
79 #define UREG_MAX_INPUT (4 * PIPE_MAX_SHADER_INPUTS)
80 #define UREG_MAX_SYSTEM_VALUE PIPE_MAX_ATTRIBS
81 #define UREG_MAX_OUTPUT (4 * PIPE_MAX_SHADER_OUTPUTS)
82 #define UREG_MAX_CONSTANT_RANGE 32
83 #define UREG_MAX_IMMEDIATE 4096
84 #define UREG_MAX_ADDR 3
85 #define UREG_MAX_ARRAY_TEMPS 256
86
87 struct const_decl {
88 struct {
89 unsigned first;
90 unsigned last;
91 } constant_range[UREG_MAX_CONSTANT_RANGE];
92 unsigned nr_constant_ranges;
93 };
94
95 #define DOMAIN_DECL 0
96 #define DOMAIN_INSN 1
97
98 struct ureg_program
99 {
100 unsigned processor;
101 bool supports_any_inout_decl_range;
102 int next_shader_processor;
103
104 struct {
105 unsigned semantic_name;
106 unsigned semantic_index;
107 unsigned interp;
108 unsigned char cylindrical_wrap;
109 unsigned char usage_mask;
110 unsigned interp_location;
111 unsigned first;
112 unsigned last;
113 unsigned array_id;
114 } input[UREG_MAX_INPUT];
115 unsigned nr_inputs, nr_input_regs;
116
117 unsigned vs_inputs[PIPE_MAX_ATTRIBS/32];
118
119 struct {
120 unsigned semantic_name;
121 unsigned semantic_index;
122 } system_value[UREG_MAX_SYSTEM_VALUE];
123 unsigned nr_system_values;
124
125 struct {
126 unsigned semantic_name;
127 unsigned semantic_index;
128 unsigned streams;
129 unsigned usage_mask; /* = TGSI_WRITEMASK_* */
130 unsigned first;
131 unsigned last;
132 unsigned array_id;
133 } output[UREG_MAX_OUTPUT];
134 unsigned nr_outputs, nr_output_regs;
135
136 struct {
137 union {
138 float f[4];
139 unsigned u[4];
140 int i[4];
141 } value;
142 unsigned nr;
143 unsigned type;
144 } immediate[UREG_MAX_IMMEDIATE];
145 unsigned nr_immediates;
146
147 struct ureg_src sampler[PIPE_MAX_SAMPLERS];
148 unsigned nr_samplers;
149
150 struct {
151 unsigned index;
152 unsigned target;
153 unsigned return_type_x;
154 unsigned return_type_y;
155 unsigned return_type_z;
156 unsigned return_type_w;
157 } sampler_view[PIPE_MAX_SHADER_SAMPLER_VIEWS];
158 unsigned nr_sampler_views;
159
160 struct {
161 unsigned index;
162 unsigned target;
163 unsigned format;
164 boolean wr;
165 boolean raw;
166 } image[PIPE_MAX_SHADER_IMAGES];
167 unsigned nr_images;
168
169 struct {
170 unsigned index;
171 bool atomic;
172 } buffer[PIPE_MAX_SHADER_BUFFERS];
173 unsigned nr_buffers;
174
175 struct util_bitmask *free_temps;
176 struct util_bitmask *local_temps;
177 struct util_bitmask *decl_temps;
178 unsigned nr_temps;
179
180 unsigned array_temps[UREG_MAX_ARRAY_TEMPS];
181 unsigned nr_array_temps;
182
183 struct const_decl const_decls;
184 struct const_decl const_decls2D[PIPE_MAX_CONSTANT_BUFFERS];
185
186 unsigned properties[TGSI_PROPERTY_COUNT];
187
188 unsigned nr_addrs;
189 unsigned nr_instructions;
190
191 struct ureg_tokens domain[2];
192
193 bool use_memory[TGSI_MEMORY_TYPE_COUNT];
194 };
195
196 static union tgsi_any_token error_tokens[32];
197
198 static void tokens_error( struct ureg_tokens *tokens )
199 {
200 if (tokens->tokens && tokens->tokens != error_tokens)
201 FREE(tokens->tokens);
202
203 tokens->tokens = error_tokens;
204 tokens->size = ARRAY_SIZE(error_tokens);
205 tokens->count = 0;
206 }
207
208
209 static void tokens_expand( struct ureg_tokens *tokens,
210 unsigned count )
211 {
212 unsigned old_size = tokens->size * sizeof(unsigned);
213
214 if (tokens->tokens == error_tokens) {
215 return;
216 }
217
218 while (tokens->count + count > tokens->size) {
219 tokens->size = (1 << ++tokens->order);
220 }
221
222 tokens->tokens = REALLOC(tokens->tokens,
223 old_size,
224 tokens->size * sizeof(unsigned));
225 if (tokens->tokens == NULL) {
226 tokens_error(tokens);
227 }
228 }
229
230 static void set_bad( struct ureg_program *ureg )
231 {
232 tokens_error(&ureg->domain[0]);
233 }
234
235
236
237 static union tgsi_any_token *get_tokens( struct ureg_program *ureg,
238 unsigned domain,
239 unsigned count )
240 {
241 struct ureg_tokens *tokens = &ureg->domain[domain];
242 union tgsi_any_token *result;
243
244 if (tokens->count + count > tokens->size)
245 tokens_expand(tokens, count);
246
247 result = &tokens->tokens[tokens->count];
248 tokens->count += count;
249 return result;
250 }
251
252
253 static union tgsi_any_token *retrieve_token( struct ureg_program *ureg,
254 unsigned domain,
255 unsigned nr )
256 {
257 if (ureg->domain[domain].tokens == error_tokens)
258 return &error_tokens[0];
259
260 return &ureg->domain[domain].tokens[nr];
261 }
262
263
264 void
265 ureg_property(struct ureg_program *ureg, unsigned name, unsigned value)
266 {
267 assert(name < ARRAY_SIZE(ureg->properties));
268 ureg->properties[name] = value;
269 }
270
271 struct ureg_src
272 ureg_DECL_fs_input_cyl_centroid_layout(struct ureg_program *ureg,
273 unsigned semantic_name,
274 unsigned semantic_index,
275 unsigned interp_mode,
276 unsigned cylindrical_wrap,
277 unsigned interp_location,
278 unsigned index,
279 unsigned usage_mask,
280 unsigned array_id,
281 unsigned array_size)
282 {
283 unsigned i;
284
285 assert(usage_mask != 0);
286 assert(usage_mask <= TGSI_WRITEMASK_XYZW);
287
288 for (i = 0; i < ureg->nr_inputs; i++) {
289 if (ureg->input[i].semantic_name == semantic_name &&
290 ureg->input[i].semantic_index == semantic_index) {
291 assert(ureg->input[i].interp == interp_mode);
292 assert(ureg->input[i].cylindrical_wrap == cylindrical_wrap);
293 assert(ureg->input[i].interp_location == interp_location);
294 if (ureg->input[i].array_id == array_id) {
295 ureg->input[i].usage_mask |= usage_mask;
296 goto out;
297 }
298 assert((ureg->input[i].usage_mask & usage_mask) == 0);
299 }
300 }
301
302 if (ureg->nr_inputs < UREG_MAX_INPUT) {
303 assert(array_size >= 1);
304 ureg->input[i].semantic_name = semantic_name;
305 ureg->input[i].semantic_index = semantic_index;
306 ureg->input[i].interp = interp_mode;
307 ureg->input[i].cylindrical_wrap = cylindrical_wrap;
308 ureg->input[i].interp_location = interp_location;
309 ureg->input[i].first = index;
310 ureg->input[i].last = index + array_size - 1;
311 ureg->input[i].array_id = array_id;
312 ureg->input[i].usage_mask = usage_mask;
313 ureg->nr_input_regs = MAX2(ureg->nr_input_regs, index + array_size);
314 ureg->nr_inputs++;
315 } else {
316 set_bad(ureg);
317 }
318
319 out:
320 return ureg_src_array_register(TGSI_FILE_INPUT, ureg->input[i].first,
321 array_id);
322 }
323
324 struct ureg_src
325 ureg_DECL_fs_input_cyl_centroid(struct ureg_program *ureg,
326 unsigned semantic_name,
327 unsigned semantic_index,
328 unsigned interp_mode,
329 unsigned cylindrical_wrap,
330 unsigned interp_location,
331 unsigned array_id,
332 unsigned array_size)
333 {
334 return ureg_DECL_fs_input_cyl_centroid_layout(ureg,
335 semantic_name, semantic_index, interp_mode, cylindrical_wrap, interp_location,
336 ureg->nr_input_regs, TGSI_WRITEMASK_XYZW, array_id, array_size);
337 }
338
339
340 struct ureg_src
341 ureg_DECL_vs_input( struct ureg_program *ureg,
342 unsigned index )
343 {
344 assert(ureg->processor == PIPE_SHADER_VERTEX);
345 assert(index / 32 < ARRAY_SIZE(ureg->vs_inputs));
346
347 ureg->vs_inputs[index/32] |= 1 << (index % 32);
348 return ureg_src_register( TGSI_FILE_INPUT, index );
349 }
350
351
352 struct ureg_src
353 ureg_DECL_input_layout(struct ureg_program *ureg,
354 unsigned semantic_name,
355 unsigned semantic_index,
356 unsigned index,
357 unsigned usage_mask,
358 unsigned array_id,
359 unsigned array_size)
360 {
361 return ureg_DECL_fs_input_cyl_centroid_layout(ureg,
362 semantic_name, semantic_index, 0, 0, 0,
363 index, usage_mask, array_id, array_size);
364 }
365
366
367 struct ureg_src
368 ureg_DECL_input(struct ureg_program *ureg,
369 unsigned semantic_name,
370 unsigned semantic_index,
371 unsigned array_id,
372 unsigned array_size)
373 {
374 return ureg_DECL_fs_input_cyl_centroid(ureg, semantic_name, semantic_index,
375 0, 0, 0, array_id, array_size);
376 }
377
378
379 struct ureg_src
380 ureg_DECL_system_value(struct ureg_program *ureg,
381 unsigned semantic_name,
382 unsigned semantic_index)
383 {
384 unsigned i;
385
386 for (i = 0; i < ureg->nr_system_values; i++) {
387 if (ureg->system_value[i].semantic_name == semantic_name &&
388 ureg->system_value[i].semantic_index == semantic_index) {
389 goto out;
390 }
391 }
392
393 if (ureg->nr_system_values < UREG_MAX_SYSTEM_VALUE) {
394 ureg->system_value[ureg->nr_system_values].semantic_name = semantic_name;
395 ureg->system_value[ureg->nr_system_values].semantic_index = semantic_index;
396 i = ureg->nr_system_values;
397 ureg->nr_system_values++;
398 } else {
399 set_bad(ureg);
400 }
401
402 out:
403 return ureg_src_register(TGSI_FILE_SYSTEM_VALUE, i);
404 }
405
406
407 struct ureg_dst
408 ureg_DECL_output_layout(struct ureg_program *ureg,
409 unsigned semantic_name,
410 unsigned semantic_index,
411 unsigned streams,
412 unsigned index,
413 unsigned usage_mask,
414 unsigned array_id,
415 unsigned array_size)
416 {
417 unsigned i;
418
419 assert(usage_mask != 0);
420 assert(!(streams & 0x03) || (usage_mask & 1));
421 assert(!(streams & 0x0c) || (usage_mask & 2));
422 assert(!(streams & 0x30) || (usage_mask & 4));
423 assert(!(streams & 0xc0) || (usage_mask & 8));
424
425 for (i = 0; i < ureg->nr_outputs; i++) {
426 if (ureg->output[i].semantic_name == semantic_name &&
427 ureg->output[i].semantic_index == semantic_index) {
428 if (ureg->output[i].array_id == array_id) {
429 ureg->output[i].usage_mask |= usage_mask;
430 goto out;
431 }
432 assert((ureg->output[i].usage_mask & usage_mask) == 0);
433 }
434 }
435
436 if (ureg->nr_outputs < UREG_MAX_OUTPUT) {
437 ureg->output[i].semantic_name = semantic_name;
438 ureg->output[i].semantic_index = semantic_index;
439 ureg->output[i].usage_mask = usage_mask;
440 ureg->output[i].first = index;
441 ureg->output[i].last = index + array_size - 1;
442 ureg->output[i].array_id = array_id;
443 ureg->nr_output_regs = MAX2(ureg->nr_output_regs, index + array_size);
444 ureg->nr_outputs++;
445 }
446 else {
447 set_bad( ureg );
448 i = 0;
449 }
450
451 out:
452 ureg->output[i].streams |= streams;
453
454 return ureg_dst_array_register(TGSI_FILE_OUTPUT, ureg->output[i].first,
455 array_id);
456 }
457
458
459 struct ureg_dst
460 ureg_DECL_output_masked(struct ureg_program *ureg,
461 unsigned name,
462 unsigned index,
463 unsigned usage_mask,
464 unsigned array_id,
465 unsigned array_size)
466 {
467 return ureg_DECL_output_layout(ureg, name, index, 0,
468 ureg->nr_output_regs, usage_mask, array_id, array_size);
469 }
470
471
472 struct ureg_dst
473 ureg_DECL_output(struct ureg_program *ureg,
474 unsigned name,
475 unsigned index)
476 {
477 return ureg_DECL_output_masked(ureg, name, index, TGSI_WRITEMASK_XYZW,
478 0, 1);
479 }
480
481 struct ureg_dst
482 ureg_DECL_output_array(struct ureg_program *ureg,
483 unsigned semantic_name,
484 unsigned semantic_index,
485 unsigned array_id,
486 unsigned array_size)
487 {
488 return ureg_DECL_output_masked(ureg, semantic_name, semantic_index,
489 TGSI_WRITEMASK_XYZW,
490 array_id, array_size);
491 }
492
493
494 /* Returns a new constant register. Keep track of which have been
495 * referred to so that we can emit decls later.
496 *
497 * Constant operands declared with this function must be addressed
498 * with a two-dimensional index.
499 *
500 * There is nothing in this code to bind this constant to any tracked
501 * value or manage any constant_buffer contents -- that's the
502 * resposibility of the calling code.
503 */
504 void
505 ureg_DECL_constant2D(struct ureg_program *ureg,
506 unsigned first,
507 unsigned last,
508 unsigned index2D)
509 {
510 struct const_decl *decl = &ureg->const_decls2D[index2D];
511
512 assert(index2D < PIPE_MAX_CONSTANT_BUFFERS);
513
514 if (decl->nr_constant_ranges < UREG_MAX_CONSTANT_RANGE) {
515 uint i = decl->nr_constant_ranges++;
516
517 decl->constant_range[i].first = first;
518 decl->constant_range[i].last = last;
519 }
520 }
521
522
523 /* A one-dimensional, deprecated version of ureg_DECL_constant2D().
524 *
525 * Constant operands declared with this function must be addressed
526 * with a one-dimensional index.
527 */
528 struct ureg_src
529 ureg_DECL_constant(struct ureg_program *ureg,
530 unsigned index)
531 {
532 struct const_decl *decl = &ureg->const_decls;
533 unsigned minconst = index, maxconst = index;
534 unsigned i;
535
536 /* Inside existing range?
537 */
538 for (i = 0; i < decl->nr_constant_ranges; i++) {
539 if (decl->constant_range[i].first <= index &&
540 decl->constant_range[i].last >= index) {
541 goto out;
542 }
543 }
544
545 /* Extend existing range?
546 */
547 for (i = 0; i < decl->nr_constant_ranges; i++) {
548 if (decl->constant_range[i].last == index - 1) {
549 decl->constant_range[i].last = index;
550 goto out;
551 }
552
553 if (decl->constant_range[i].first == index + 1) {
554 decl->constant_range[i].first = index;
555 goto out;
556 }
557
558 minconst = MIN2(minconst, decl->constant_range[i].first);
559 maxconst = MAX2(maxconst, decl->constant_range[i].last);
560 }
561
562 /* Create new range?
563 */
564 if (decl->nr_constant_ranges < UREG_MAX_CONSTANT_RANGE) {
565 i = decl->nr_constant_ranges++;
566 decl->constant_range[i].first = index;
567 decl->constant_range[i].last = index;
568 goto out;
569 }
570
571 /* Collapse all ranges down to one:
572 */
573 i = 0;
574 decl->constant_range[0].first = minconst;
575 decl->constant_range[0].last = maxconst;
576 decl->nr_constant_ranges = 1;
577
578 out:
579 assert(i < decl->nr_constant_ranges);
580 assert(decl->constant_range[i].first <= index);
581 assert(decl->constant_range[i].last >= index);
582 return ureg_src_register(TGSI_FILE_CONSTANT, index);
583 }
584
585 static struct ureg_dst alloc_temporary( struct ureg_program *ureg,
586 boolean local )
587 {
588 unsigned i;
589
590 /* Look for a released temporary.
591 */
592 for (i = util_bitmask_get_first_index(ureg->free_temps);
593 i != UTIL_BITMASK_INVALID_INDEX;
594 i = util_bitmask_get_next_index(ureg->free_temps, i + 1)) {
595 if (util_bitmask_get(ureg->local_temps, i) == local)
596 break;
597 }
598
599 /* Or allocate a new one.
600 */
601 if (i == UTIL_BITMASK_INVALID_INDEX) {
602 i = ureg->nr_temps++;
603
604 if (local)
605 util_bitmask_set(ureg->local_temps, i);
606
607 /* Start a new declaration when the local flag changes */
608 if (!i || util_bitmask_get(ureg->local_temps, i - 1) != local)
609 util_bitmask_set(ureg->decl_temps, i);
610 }
611
612 util_bitmask_clear(ureg->free_temps, i);
613
614 return ureg_dst_register( TGSI_FILE_TEMPORARY, i );
615 }
616
617 struct ureg_dst ureg_DECL_temporary( struct ureg_program *ureg )
618 {
619 return alloc_temporary(ureg, FALSE);
620 }
621
622 struct ureg_dst ureg_DECL_local_temporary( struct ureg_program *ureg )
623 {
624 return alloc_temporary(ureg, TRUE);
625 }
626
627 struct ureg_dst ureg_DECL_array_temporary( struct ureg_program *ureg,
628 unsigned size,
629 boolean local )
630 {
631 unsigned i = ureg->nr_temps;
632 struct ureg_dst dst = ureg_dst_register( TGSI_FILE_TEMPORARY, i );
633
634 if (local)
635 util_bitmask_set(ureg->local_temps, i);
636
637 /* Always start a new declaration at the start */
638 util_bitmask_set(ureg->decl_temps, i);
639
640 ureg->nr_temps += size;
641
642 /* and also at the end of the array */
643 util_bitmask_set(ureg->decl_temps, ureg->nr_temps);
644
645 if (ureg->nr_array_temps < UREG_MAX_ARRAY_TEMPS) {
646 ureg->array_temps[ureg->nr_array_temps++] = i;
647 dst.ArrayID = ureg->nr_array_temps;
648 }
649
650 return dst;
651 }
652
653 void ureg_release_temporary( struct ureg_program *ureg,
654 struct ureg_dst tmp )
655 {
656 if(tmp.File == TGSI_FILE_TEMPORARY)
657 util_bitmask_set(ureg->free_temps, tmp.Index);
658 }
659
660
661 /* Allocate a new address register.
662 */
663 struct ureg_dst ureg_DECL_address( struct ureg_program *ureg )
664 {
665 if (ureg->nr_addrs < UREG_MAX_ADDR)
666 return ureg_dst_register( TGSI_FILE_ADDRESS, ureg->nr_addrs++ );
667
668 assert( 0 );
669 return ureg_dst_register( TGSI_FILE_ADDRESS, 0 );
670 }
671
672 /* Allocate a new sampler.
673 */
674 struct ureg_src ureg_DECL_sampler( struct ureg_program *ureg,
675 unsigned nr )
676 {
677 unsigned i;
678
679 for (i = 0; i < ureg->nr_samplers; i++)
680 if (ureg->sampler[i].Index == nr)
681 return ureg->sampler[i];
682
683 if (i < PIPE_MAX_SAMPLERS) {
684 ureg->sampler[i] = ureg_src_register( TGSI_FILE_SAMPLER, nr );
685 ureg->nr_samplers++;
686 return ureg->sampler[i];
687 }
688
689 assert( 0 );
690 return ureg->sampler[0];
691 }
692
693 /*
694 * Allocate a new shader sampler view.
695 */
696 struct ureg_src
697 ureg_DECL_sampler_view(struct ureg_program *ureg,
698 unsigned index,
699 unsigned target,
700 unsigned return_type_x,
701 unsigned return_type_y,
702 unsigned return_type_z,
703 unsigned return_type_w)
704 {
705 struct ureg_src reg = ureg_src_register(TGSI_FILE_SAMPLER_VIEW, index);
706 uint i;
707
708 for (i = 0; i < ureg->nr_sampler_views; i++) {
709 if (ureg->sampler_view[i].index == index) {
710 return reg;
711 }
712 }
713
714 if (i < PIPE_MAX_SHADER_SAMPLER_VIEWS) {
715 ureg->sampler_view[i].index = index;
716 ureg->sampler_view[i].target = target;
717 ureg->sampler_view[i].return_type_x = return_type_x;
718 ureg->sampler_view[i].return_type_y = return_type_y;
719 ureg->sampler_view[i].return_type_z = return_type_z;
720 ureg->sampler_view[i].return_type_w = return_type_w;
721 ureg->nr_sampler_views++;
722 return reg;
723 }
724
725 assert(0);
726 return reg;
727 }
728
729 /* Allocate a new image.
730 */
731 struct ureg_src
732 ureg_DECL_image(struct ureg_program *ureg,
733 unsigned index,
734 unsigned target,
735 unsigned format,
736 boolean wr,
737 boolean raw)
738 {
739 struct ureg_src reg = ureg_src_register(TGSI_FILE_IMAGE, index);
740 unsigned i;
741
742 for (i = 0; i < ureg->nr_images; i++)
743 if (ureg->image[i].index == index)
744 return reg;
745
746 if (i < PIPE_MAX_SHADER_IMAGES) {
747 ureg->image[i].index = index;
748 ureg->image[i].target = target;
749 ureg->image[i].wr = wr;
750 ureg->image[i].raw = raw;
751 ureg->image[i].format = format;
752 ureg->nr_images++;
753 return reg;
754 }
755
756 assert(0);
757 return reg;
758 }
759
760 /* Allocate a new buffer.
761 */
762 struct ureg_src ureg_DECL_buffer(struct ureg_program *ureg, unsigned nr,
763 bool atomic)
764 {
765 struct ureg_src reg = ureg_src_register(TGSI_FILE_BUFFER, nr);
766 unsigned i;
767
768 for (i = 0; i < ureg->nr_buffers; i++)
769 if (ureg->buffer[i].index == nr)
770 return reg;
771
772 if (i < PIPE_MAX_SHADER_BUFFERS) {
773 ureg->buffer[i].index = nr;
774 ureg->buffer[i].atomic = atomic;
775 ureg->nr_buffers++;
776 return reg;
777 }
778
779 assert(0);
780 return reg;
781 }
782
783 /* Allocate a memory area.
784 */
785 struct ureg_src ureg_DECL_memory(struct ureg_program *ureg,
786 unsigned memory_type)
787 {
788 struct ureg_src reg = ureg_src_register(TGSI_FILE_MEMORY, memory_type);
789
790 ureg->use_memory[memory_type] = true;
791 return reg;
792 }
793
794 static int
795 match_or_expand_immediate64( const unsigned *v,
796 int type,
797 unsigned nr,
798 unsigned *v2,
799 unsigned *pnr2,
800 unsigned *swizzle )
801 {
802 unsigned nr2 = *pnr2;
803 unsigned i, j;
804 *swizzle = 0;
805
806 for (i = 0; i < nr; i += 2) {
807 boolean found = FALSE;
808
809 for (j = 0; j < nr2 && !found; j += 2) {
810 if (v[i] == v2[j] && v[i + 1] == v2[j + 1]) {
811 *swizzle |= (j << (i * 2)) | ((j + 1) << ((i + 1) * 2));
812 found = TRUE;
813 }
814 }
815 if (!found) {
816 if ((nr2) >= 4) {
817 return FALSE;
818 }
819
820 v2[nr2] = v[i];
821 v2[nr2 + 1] = v[i + 1];
822
823 *swizzle |= (nr2 << (i * 2)) | ((nr2 + 1) << ((i + 1) * 2));
824 nr2 += 2;
825 }
826 }
827
828 /* Actually expand immediate only when fully succeeded.
829 */
830 *pnr2 = nr2;
831 return TRUE;
832 }
833
834 static int
835 match_or_expand_immediate( const unsigned *v,
836 int type,
837 unsigned nr,
838 unsigned *v2,
839 unsigned *pnr2,
840 unsigned *swizzle )
841 {
842 unsigned nr2 = *pnr2;
843 unsigned i, j;
844
845 if (type == TGSI_IMM_FLOAT64 ||
846 type == TGSI_IMM_UINT64 ||
847 type == TGSI_IMM_INT64)
848 return match_or_expand_immediate64(v, type, nr, v2, pnr2, swizzle);
849
850 *swizzle = 0;
851
852 for (i = 0; i < nr; i++) {
853 boolean found = FALSE;
854
855 for (j = 0; j < nr2 && !found; j++) {
856 if (v[i] == v2[j]) {
857 *swizzle |= j << (i * 2);
858 found = TRUE;
859 }
860 }
861
862 if (!found) {
863 if (nr2 >= 4) {
864 return FALSE;
865 }
866
867 v2[nr2] = v[i];
868 *swizzle |= nr2 << (i * 2);
869 nr2++;
870 }
871 }
872
873 /* Actually expand immediate only when fully succeeded.
874 */
875 *pnr2 = nr2;
876 return TRUE;
877 }
878
879
880 static struct ureg_src
881 decl_immediate( struct ureg_program *ureg,
882 const unsigned *v,
883 unsigned nr,
884 unsigned type )
885 {
886 unsigned i, j;
887 unsigned swizzle = 0;
888
889 /* Could do a first pass where we examine all existing immediates
890 * without expanding.
891 */
892
893 for (i = 0; i < ureg->nr_immediates; i++) {
894 if (ureg->immediate[i].type != type) {
895 continue;
896 }
897 if (match_or_expand_immediate(v,
898 type,
899 nr,
900 ureg->immediate[i].value.u,
901 &ureg->immediate[i].nr,
902 &swizzle)) {
903 goto out;
904 }
905 }
906
907 if (ureg->nr_immediates < UREG_MAX_IMMEDIATE) {
908 i = ureg->nr_immediates++;
909 ureg->immediate[i].type = type;
910 if (match_or_expand_immediate(v,
911 type,
912 nr,
913 ureg->immediate[i].value.u,
914 &ureg->immediate[i].nr,
915 &swizzle)) {
916 goto out;
917 }
918 }
919
920 set_bad(ureg);
921
922 out:
923 /* Make sure that all referenced elements are from this immediate.
924 * Has the effect of making size-one immediates into scalars.
925 */
926 if (type == TGSI_IMM_FLOAT64 ||
927 type == TGSI_IMM_UINT64 ||
928 type == TGSI_IMM_INT64) {
929 for (j = nr; j < 4; j+=2) {
930 swizzle |= (swizzle & 0xf) << (j * 2);
931 }
932 } else {
933 for (j = nr; j < 4; j++) {
934 swizzle |= (swizzle & 0x3) << (j * 2);
935 }
936 }
937 return ureg_swizzle(ureg_src_register(TGSI_FILE_IMMEDIATE, i),
938 (swizzle >> 0) & 0x3,
939 (swizzle >> 2) & 0x3,
940 (swizzle >> 4) & 0x3,
941 (swizzle >> 6) & 0x3);
942 }
943
944
945 struct ureg_src
946 ureg_DECL_immediate( struct ureg_program *ureg,
947 const float *v,
948 unsigned nr )
949 {
950 union {
951 float f[4];
952 unsigned u[4];
953 } fu;
954 unsigned int i;
955
956 for (i = 0; i < nr; i++) {
957 fu.f[i] = v[i];
958 }
959
960 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT32);
961 }
962
963 struct ureg_src
964 ureg_DECL_immediate_f64( struct ureg_program *ureg,
965 const double *v,
966 unsigned nr )
967 {
968 union {
969 unsigned u[4];
970 double d[2];
971 } fu;
972 unsigned int i;
973
974 assert((nr / 2) < 3);
975 for (i = 0; i < nr / 2; i++) {
976 fu.d[i] = v[i];
977 }
978
979 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_FLOAT64);
980 }
981
982 struct ureg_src
983 ureg_DECL_immediate_uint( struct ureg_program *ureg,
984 const unsigned *v,
985 unsigned nr )
986 {
987 return decl_immediate(ureg, v, nr, TGSI_IMM_UINT32);
988 }
989
990
991 struct ureg_src
992 ureg_DECL_immediate_block_uint( struct ureg_program *ureg,
993 const unsigned *v,
994 unsigned nr )
995 {
996 uint index;
997 uint i;
998
999 if (ureg->nr_immediates + (nr + 3) / 4 > UREG_MAX_IMMEDIATE) {
1000 set_bad(ureg);
1001 return ureg_src_register(TGSI_FILE_IMMEDIATE, 0);
1002 }
1003
1004 index = ureg->nr_immediates;
1005 ureg->nr_immediates += (nr + 3) / 4;
1006
1007 for (i = index; i < ureg->nr_immediates; i++) {
1008 ureg->immediate[i].type = TGSI_IMM_UINT32;
1009 ureg->immediate[i].nr = nr > 4 ? 4 : nr;
1010 memcpy(ureg->immediate[i].value.u,
1011 &v[(i - index) * 4],
1012 ureg->immediate[i].nr * sizeof(uint));
1013 nr -= 4;
1014 }
1015
1016 return ureg_src_register(TGSI_FILE_IMMEDIATE, index);
1017 }
1018
1019
1020 struct ureg_src
1021 ureg_DECL_immediate_int( struct ureg_program *ureg,
1022 const int *v,
1023 unsigned nr )
1024 {
1025 return decl_immediate(ureg, (const unsigned *)v, nr, TGSI_IMM_INT32);
1026 }
1027
1028 struct ureg_src
1029 ureg_DECL_immediate_uint64( struct ureg_program *ureg,
1030 const uint64_t *v,
1031 unsigned nr )
1032 {
1033 union {
1034 unsigned u[4];
1035 uint64_t u64[2];
1036 } fu;
1037 unsigned int i;
1038
1039 assert((nr / 2) < 3);
1040 for (i = 0; i < nr / 2; i++) {
1041 fu.u64[i] = v[i];
1042 }
1043
1044 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_UINT64);
1045 }
1046
1047 struct ureg_src
1048 ureg_DECL_immediate_int64( struct ureg_program *ureg,
1049 const int64_t *v,
1050 unsigned nr )
1051 {
1052 union {
1053 unsigned u[4];
1054 int64_t i64[2];
1055 } fu;
1056 unsigned int i;
1057
1058 assert((nr / 2) < 3);
1059 for (i = 0; i < nr / 2; i++) {
1060 fu.i64[i] = v[i];
1061 }
1062
1063 return decl_immediate(ureg, fu.u, nr, TGSI_IMM_INT64);
1064 }
1065
1066 void
1067 ureg_emit_src( struct ureg_program *ureg,
1068 struct ureg_src src )
1069 {
1070 unsigned size = 1 + (src.Indirect ? 1 : 0) +
1071 (src.Dimension ? (src.DimIndirect ? 2 : 1) : 0);
1072
1073 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_INSN, size );
1074 unsigned n = 0;
1075
1076 assert(src.File != TGSI_FILE_NULL);
1077 assert(src.File < TGSI_FILE_COUNT);
1078
1079 out[n].value = 0;
1080 out[n].src.File = src.File;
1081 out[n].src.SwizzleX = src.SwizzleX;
1082 out[n].src.SwizzleY = src.SwizzleY;
1083 out[n].src.SwizzleZ = src.SwizzleZ;
1084 out[n].src.SwizzleW = src.SwizzleW;
1085 out[n].src.Index = src.Index;
1086 out[n].src.Negate = src.Negate;
1087 out[0].src.Absolute = src.Absolute;
1088 n++;
1089
1090 if (src.Indirect) {
1091 out[0].src.Indirect = 1;
1092 out[n].value = 0;
1093 out[n].ind.File = src.IndirectFile;
1094 out[n].ind.Swizzle = src.IndirectSwizzle;
1095 out[n].ind.Index = src.IndirectIndex;
1096 if (!ureg->supports_any_inout_decl_range &&
1097 (src.File == TGSI_FILE_INPUT || src.File == TGSI_FILE_OUTPUT))
1098 out[n].ind.ArrayID = 0;
1099 else
1100 out[n].ind.ArrayID = src.ArrayID;
1101 n++;
1102 }
1103
1104 if (src.Dimension) {
1105 out[0].src.Dimension = 1;
1106 out[n].dim.Dimension = 0;
1107 out[n].dim.Padding = 0;
1108 if (src.DimIndirect) {
1109 out[n].dim.Indirect = 1;
1110 out[n].dim.Index = src.DimensionIndex;
1111 n++;
1112 out[n].value = 0;
1113 out[n].ind.File = src.DimIndFile;
1114 out[n].ind.Swizzle = src.DimIndSwizzle;
1115 out[n].ind.Index = src.DimIndIndex;
1116 if (!ureg->supports_any_inout_decl_range &&
1117 (src.File == TGSI_FILE_INPUT || src.File == TGSI_FILE_OUTPUT))
1118 out[n].ind.ArrayID = 0;
1119 else
1120 out[n].ind.ArrayID = src.ArrayID;
1121 } else {
1122 out[n].dim.Indirect = 0;
1123 out[n].dim.Index = src.DimensionIndex;
1124 }
1125 n++;
1126 }
1127
1128 assert(n == size);
1129 }
1130
1131
1132 void
1133 ureg_emit_dst( struct ureg_program *ureg,
1134 struct ureg_dst dst )
1135 {
1136 unsigned size = 1 + (dst.Indirect ? 1 : 0) +
1137 (dst.Dimension ? (dst.DimIndirect ? 2 : 1) : 0);
1138
1139 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_INSN, size );
1140 unsigned n = 0;
1141
1142 assert(dst.File != TGSI_FILE_NULL);
1143 assert(dst.File != TGSI_FILE_CONSTANT);
1144 assert(dst.File != TGSI_FILE_INPUT);
1145 assert(dst.File != TGSI_FILE_SAMPLER);
1146 assert(dst.File != TGSI_FILE_SAMPLER_VIEW);
1147 assert(dst.File != TGSI_FILE_IMMEDIATE);
1148 assert(dst.File < TGSI_FILE_COUNT);
1149
1150 out[n].value = 0;
1151 out[n].dst.File = dst.File;
1152 out[n].dst.WriteMask = dst.WriteMask;
1153 out[n].dst.Indirect = dst.Indirect;
1154 out[n].dst.Index = dst.Index;
1155 n++;
1156
1157 if (dst.Indirect) {
1158 out[n].value = 0;
1159 out[n].ind.File = dst.IndirectFile;
1160 out[n].ind.Swizzle = dst.IndirectSwizzle;
1161 out[n].ind.Index = dst.IndirectIndex;
1162 if (!ureg->supports_any_inout_decl_range &&
1163 (dst.File == TGSI_FILE_INPUT || dst.File == TGSI_FILE_OUTPUT))
1164 out[n].ind.ArrayID = 0;
1165 else
1166 out[n].ind.ArrayID = dst.ArrayID;
1167 n++;
1168 }
1169
1170 if (dst.Dimension) {
1171 out[0].dst.Dimension = 1;
1172 out[n].dim.Dimension = 0;
1173 out[n].dim.Padding = 0;
1174 if (dst.DimIndirect) {
1175 out[n].dim.Indirect = 1;
1176 out[n].dim.Index = dst.DimensionIndex;
1177 n++;
1178 out[n].value = 0;
1179 out[n].ind.File = dst.DimIndFile;
1180 out[n].ind.Swizzle = dst.DimIndSwizzle;
1181 out[n].ind.Index = dst.DimIndIndex;
1182 if (!ureg->supports_any_inout_decl_range &&
1183 (dst.File == TGSI_FILE_INPUT || dst.File == TGSI_FILE_OUTPUT))
1184 out[n].ind.ArrayID = 0;
1185 else
1186 out[n].ind.ArrayID = dst.ArrayID;
1187 } else {
1188 out[n].dim.Indirect = 0;
1189 out[n].dim.Index = dst.DimensionIndex;
1190 }
1191 n++;
1192 }
1193
1194 assert(n == size);
1195 }
1196
1197
1198 static void validate( unsigned opcode,
1199 unsigned nr_dst,
1200 unsigned nr_src )
1201 {
1202 #ifdef DEBUG
1203 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( opcode );
1204 assert(info);
1205 if (info) {
1206 assert(nr_dst == info->num_dst);
1207 assert(nr_src == info->num_src);
1208 }
1209 #endif
1210 }
1211
1212 struct ureg_emit_insn_result
1213 ureg_emit_insn(struct ureg_program *ureg,
1214 unsigned opcode,
1215 boolean saturate,
1216 unsigned num_dst,
1217 unsigned num_src)
1218 {
1219 union tgsi_any_token *out;
1220 uint count = 1;
1221 struct ureg_emit_insn_result result;
1222
1223 validate( opcode, num_dst, num_src );
1224
1225 out = get_tokens( ureg, DOMAIN_INSN, count );
1226 out[0].insn = tgsi_default_instruction();
1227 out[0].insn.Opcode = opcode;
1228 out[0].insn.Saturate = saturate;
1229 out[0].insn.NumDstRegs = num_dst;
1230 out[0].insn.NumSrcRegs = num_src;
1231
1232 result.insn_token = ureg->domain[DOMAIN_INSN].count - count;
1233 result.extended_token = result.insn_token;
1234
1235 ureg->nr_instructions++;
1236
1237 return result;
1238 }
1239
1240
1241 /**
1242 * Emit a label token.
1243 * \param label_token returns a token number indicating where the label
1244 * needs to be patched later. Later, this value should be passed to the
1245 * ureg_fixup_label() function.
1246 */
1247 void
1248 ureg_emit_label(struct ureg_program *ureg,
1249 unsigned extended_token,
1250 unsigned *label_token )
1251 {
1252 union tgsi_any_token *out, *insn;
1253
1254 if (!label_token)
1255 return;
1256
1257 out = get_tokens( ureg, DOMAIN_INSN, 1 );
1258 out[0].value = 0;
1259
1260 insn = retrieve_token( ureg, DOMAIN_INSN, extended_token );
1261 insn->insn.Label = 1;
1262
1263 *label_token = ureg->domain[DOMAIN_INSN].count - 1;
1264 }
1265
1266 /* Will return a number which can be used in a label to point to the
1267 * next instruction to be emitted.
1268 */
1269 unsigned
1270 ureg_get_instruction_number( struct ureg_program *ureg )
1271 {
1272 return ureg->nr_instructions;
1273 }
1274
1275 /* Patch a given label (expressed as a token number) to point to a
1276 * given instruction (expressed as an instruction number).
1277 */
1278 void
1279 ureg_fixup_label(struct ureg_program *ureg,
1280 unsigned label_token,
1281 unsigned instruction_number )
1282 {
1283 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_INSN, label_token );
1284
1285 out->insn_label.Label = instruction_number;
1286 }
1287
1288
1289 void
1290 ureg_emit_texture(struct ureg_program *ureg,
1291 unsigned extended_token,
1292 unsigned target, unsigned return_type, unsigned num_offsets)
1293 {
1294 union tgsi_any_token *out, *insn;
1295
1296 out = get_tokens( ureg, DOMAIN_INSN, 1 );
1297 insn = retrieve_token( ureg, DOMAIN_INSN, extended_token );
1298
1299 insn->insn.Texture = 1;
1300
1301 out[0].value = 0;
1302 out[0].insn_texture.Texture = target;
1303 out[0].insn_texture.NumOffsets = num_offsets;
1304 out[0].insn_texture.ReturnType = return_type;
1305 }
1306
1307 void
1308 ureg_emit_texture_offset(struct ureg_program *ureg,
1309 const struct tgsi_texture_offset *offset)
1310 {
1311 union tgsi_any_token *out;
1312
1313 out = get_tokens( ureg, DOMAIN_INSN, 1);
1314
1315 out[0].value = 0;
1316 out[0].insn_texture_offset = *offset;
1317
1318 }
1319
1320 void
1321 ureg_emit_memory(struct ureg_program *ureg,
1322 unsigned extended_token,
1323 unsigned qualifier,
1324 unsigned texture,
1325 unsigned format)
1326 {
1327 union tgsi_any_token *out, *insn;
1328
1329 out = get_tokens( ureg, DOMAIN_INSN, 1 );
1330 insn = retrieve_token( ureg, DOMAIN_INSN, extended_token );
1331
1332 insn->insn.Memory = 1;
1333
1334 out[0].value = 0;
1335 out[0].insn_memory.Qualifier = qualifier;
1336 out[0].insn_memory.Texture = texture;
1337 out[0].insn_memory.Format = format;
1338 }
1339
1340 void
1341 ureg_fixup_insn_size(struct ureg_program *ureg,
1342 unsigned insn )
1343 {
1344 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_INSN, insn );
1345
1346 assert(out->insn.Type == TGSI_TOKEN_TYPE_INSTRUCTION);
1347 out->insn.NrTokens = ureg->domain[DOMAIN_INSN].count - insn - 1;
1348 }
1349
1350
1351 void
1352 ureg_insn(struct ureg_program *ureg,
1353 unsigned opcode,
1354 const struct ureg_dst *dst,
1355 unsigned nr_dst,
1356 const struct ureg_src *src,
1357 unsigned nr_src )
1358 {
1359 struct ureg_emit_insn_result insn;
1360 unsigned i;
1361 boolean saturate;
1362
1363 if (nr_dst && ureg_dst_is_empty(dst[0])) {
1364 return;
1365 }
1366
1367 saturate = nr_dst ? dst[0].Saturate : FALSE;
1368
1369 insn = ureg_emit_insn(ureg,
1370 opcode,
1371 saturate,
1372 nr_dst,
1373 nr_src);
1374
1375 for (i = 0; i < nr_dst; i++)
1376 ureg_emit_dst( ureg, dst[i] );
1377
1378 for (i = 0; i < nr_src; i++)
1379 ureg_emit_src( ureg, src[i] );
1380
1381 ureg_fixup_insn_size( ureg, insn.insn_token );
1382 }
1383
1384 void
1385 ureg_tex_insn(struct ureg_program *ureg,
1386 unsigned opcode,
1387 const struct ureg_dst *dst,
1388 unsigned nr_dst,
1389 unsigned target,
1390 unsigned return_type,
1391 const struct tgsi_texture_offset *texoffsets,
1392 unsigned nr_offset,
1393 const struct ureg_src *src,
1394 unsigned nr_src )
1395 {
1396 struct ureg_emit_insn_result insn;
1397 unsigned i;
1398 boolean saturate;
1399
1400 if (nr_dst && ureg_dst_is_empty(dst[0])) {
1401 return;
1402 }
1403
1404 saturate = nr_dst ? dst[0].Saturate : FALSE;
1405
1406 insn = ureg_emit_insn(ureg,
1407 opcode,
1408 saturate,
1409 nr_dst,
1410 nr_src);
1411
1412 ureg_emit_texture( ureg, insn.extended_token, target, return_type,
1413 nr_offset );
1414
1415 for (i = 0; i < nr_offset; i++)
1416 ureg_emit_texture_offset( ureg, &texoffsets[i]);
1417
1418 for (i = 0; i < nr_dst; i++)
1419 ureg_emit_dst( ureg, dst[i] );
1420
1421 for (i = 0; i < nr_src; i++)
1422 ureg_emit_src( ureg, src[i] );
1423
1424 ureg_fixup_insn_size( ureg, insn.insn_token );
1425 }
1426
1427
1428 void
1429 ureg_memory_insn(struct ureg_program *ureg,
1430 unsigned opcode,
1431 const struct ureg_dst *dst,
1432 unsigned nr_dst,
1433 const struct ureg_src *src,
1434 unsigned nr_src,
1435 unsigned qualifier,
1436 unsigned texture,
1437 unsigned format)
1438 {
1439 struct ureg_emit_insn_result insn;
1440 unsigned i;
1441
1442 insn = ureg_emit_insn(ureg,
1443 opcode,
1444 FALSE,
1445 nr_dst,
1446 nr_src);
1447
1448 ureg_emit_memory(ureg, insn.extended_token, qualifier, texture, format);
1449
1450 for (i = 0; i < nr_dst; i++)
1451 ureg_emit_dst(ureg, dst[i]);
1452
1453 for (i = 0; i < nr_src; i++)
1454 ureg_emit_src(ureg, src[i]);
1455
1456 ureg_fixup_insn_size(ureg, insn.insn_token);
1457 }
1458
1459
1460 static void
1461 emit_decl_semantic(struct ureg_program *ureg,
1462 unsigned file,
1463 unsigned first,
1464 unsigned last,
1465 unsigned semantic_name,
1466 unsigned semantic_index,
1467 unsigned streams,
1468 unsigned usage_mask,
1469 unsigned array_id)
1470 {
1471 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, array_id ? 4 : 3);
1472
1473 out[0].value = 0;
1474 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1475 out[0].decl.NrTokens = 3;
1476 out[0].decl.File = file;
1477 out[0].decl.UsageMask = usage_mask;
1478 out[0].decl.Semantic = 1;
1479 out[0].decl.Array = array_id != 0;
1480
1481 out[1].value = 0;
1482 out[1].decl_range.First = first;
1483 out[1].decl_range.Last = last;
1484
1485 out[2].value = 0;
1486 out[2].decl_semantic.Name = semantic_name;
1487 out[2].decl_semantic.Index = semantic_index;
1488 out[2].decl_semantic.StreamX = streams & 3;
1489 out[2].decl_semantic.StreamY = (streams >> 2) & 3;
1490 out[2].decl_semantic.StreamZ = (streams >> 4) & 3;
1491 out[2].decl_semantic.StreamW = (streams >> 6) & 3;
1492
1493 if (array_id) {
1494 out[3].value = 0;
1495 out[3].array.ArrayID = array_id;
1496 }
1497 }
1498
1499
1500 static void
1501 emit_decl_fs(struct ureg_program *ureg,
1502 unsigned file,
1503 unsigned first,
1504 unsigned last,
1505 unsigned semantic_name,
1506 unsigned semantic_index,
1507 unsigned interpolate,
1508 unsigned cylindrical_wrap,
1509 unsigned interpolate_location,
1510 unsigned array_id,
1511 unsigned usage_mask)
1512 {
1513 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL,
1514 array_id ? 5 : 4);
1515
1516 out[0].value = 0;
1517 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1518 out[0].decl.NrTokens = 4;
1519 out[0].decl.File = file;
1520 out[0].decl.UsageMask = usage_mask;
1521 out[0].decl.Interpolate = 1;
1522 out[0].decl.Semantic = 1;
1523 out[0].decl.Array = array_id != 0;
1524
1525 out[1].value = 0;
1526 out[1].decl_range.First = first;
1527 out[1].decl_range.Last = last;
1528
1529 out[2].value = 0;
1530 out[2].decl_interp.Interpolate = interpolate;
1531 out[2].decl_interp.CylindricalWrap = cylindrical_wrap;
1532 out[2].decl_interp.Location = interpolate_location;
1533
1534 out[3].value = 0;
1535 out[3].decl_semantic.Name = semantic_name;
1536 out[3].decl_semantic.Index = semantic_index;
1537
1538 if (array_id) {
1539 out[4].value = 0;
1540 out[4].array.ArrayID = array_id;
1541 }
1542 }
1543
1544 static void
1545 emit_decl_temps( struct ureg_program *ureg,
1546 unsigned first, unsigned last,
1547 boolean local,
1548 unsigned arrayid )
1549 {
1550 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL,
1551 arrayid ? 3 : 2 );
1552
1553 out[0].value = 0;
1554 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1555 out[0].decl.NrTokens = 2;
1556 out[0].decl.File = TGSI_FILE_TEMPORARY;
1557 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1558 out[0].decl.Local = local;
1559
1560 out[1].value = 0;
1561 out[1].decl_range.First = first;
1562 out[1].decl_range.Last = last;
1563
1564 if (arrayid) {
1565 out[0].decl.Array = 1;
1566 out[2].value = 0;
1567 out[2].array.ArrayID = arrayid;
1568 }
1569 }
1570
1571 static void emit_decl_range( struct ureg_program *ureg,
1572 unsigned file,
1573 unsigned first,
1574 unsigned count )
1575 {
1576 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 2 );
1577
1578 out[0].value = 0;
1579 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1580 out[0].decl.NrTokens = 2;
1581 out[0].decl.File = file;
1582 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1583 out[0].decl.Semantic = 0;
1584
1585 out[1].value = 0;
1586 out[1].decl_range.First = first;
1587 out[1].decl_range.Last = first + count - 1;
1588 }
1589
1590 static void
1591 emit_decl_range2D(struct ureg_program *ureg,
1592 unsigned file,
1593 unsigned first,
1594 unsigned last,
1595 unsigned index2D)
1596 {
1597 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3);
1598
1599 out[0].value = 0;
1600 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1601 out[0].decl.NrTokens = 3;
1602 out[0].decl.File = file;
1603 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1604 out[0].decl.Dimension = 1;
1605
1606 out[1].value = 0;
1607 out[1].decl_range.First = first;
1608 out[1].decl_range.Last = last;
1609
1610 out[2].value = 0;
1611 out[2].decl_dim.Index2D = index2D;
1612 }
1613
1614 static void
1615 emit_decl_sampler_view(struct ureg_program *ureg,
1616 unsigned index,
1617 unsigned target,
1618 unsigned return_type_x,
1619 unsigned return_type_y,
1620 unsigned return_type_z,
1621 unsigned return_type_w )
1622 {
1623 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3);
1624
1625 out[0].value = 0;
1626 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1627 out[0].decl.NrTokens = 3;
1628 out[0].decl.File = TGSI_FILE_SAMPLER_VIEW;
1629 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1630
1631 out[1].value = 0;
1632 out[1].decl_range.First = index;
1633 out[1].decl_range.Last = index;
1634
1635 out[2].value = 0;
1636 out[2].decl_sampler_view.Resource = target;
1637 out[2].decl_sampler_view.ReturnTypeX = return_type_x;
1638 out[2].decl_sampler_view.ReturnTypeY = return_type_y;
1639 out[2].decl_sampler_view.ReturnTypeZ = return_type_z;
1640 out[2].decl_sampler_view.ReturnTypeW = return_type_w;
1641 }
1642
1643 static void
1644 emit_decl_image(struct ureg_program *ureg,
1645 unsigned index,
1646 unsigned target,
1647 unsigned format,
1648 boolean wr,
1649 boolean raw)
1650 {
1651 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3);
1652
1653 out[0].value = 0;
1654 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1655 out[0].decl.NrTokens = 3;
1656 out[0].decl.File = TGSI_FILE_IMAGE;
1657 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1658
1659 out[1].value = 0;
1660 out[1].decl_range.First = index;
1661 out[1].decl_range.Last = index;
1662
1663 out[2].value = 0;
1664 out[2].decl_image.Resource = target;
1665 out[2].decl_image.Writable = wr;
1666 out[2].decl_image.Raw = raw;
1667 out[2].decl_image.Format = format;
1668 }
1669
1670 static void
1671 emit_decl_buffer(struct ureg_program *ureg,
1672 unsigned index,
1673 bool atomic)
1674 {
1675 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 2);
1676
1677 out[0].value = 0;
1678 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1679 out[0].decl.NrTokens = 2;
1680 out[0].decl.File = TGSI_FILE_BUFFER;
1681 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1682 out[0].decl.Atomic = atomic;
1683
1684 out[1].value = 0;
1685 out[1].decl_range.First = index;
1686 out[1].decl_range.Last = index;
1687 }
1688
1689 static void
1690 emit_decl_memory(struct ureg_program *ureg, unsigned memory_type)
1691 {
1692 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 2);
1693
1694 out[0].value = 0;
1695 out[0].decl.Type = TGSI_TOKEN_TYPE_DECLARATION;
1696 out[0].decl.NrTokens = 2;
1697 out[0].decl.File = TGSI_FILE_MEMORY;
1698 out[0].decl.UsageMask = TGSI_WRITEMASK_XYZW;
1699 out[0].decl.MemType = memory_type;
1700
1701 out[1].value = 0;
1702 out[1].decl_range.First = memory_type;
1703 out[1].decl_range.Last = memory_type;
1704 }
1705
1706 static void
1707 emit_immediate( struct ureg_program *ureg,
1708 const unsigned *v,
1709 unsigned type )
1710 {
1711 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 5 );
1712
1713 out[0].value = 0;
1714 out[0].imm.Type = TGSI_TOKEN_TYPE_IMMEDIATE;
1715 out[0].imm.NrTokens = 5;
1716 out[0].imm.DataType = type;
1717 out[0].imm.Padding = 0;
1718
1719 out[1].imm_data.Uint = v[0];
1720 out[2].imm_data.Uint = v[1];
1721 out[3].imm_data.Uint = v[2];
1722 out[4].imm_data.Uint = v[3];
1723 }
1724
1725 static void
1726 emit_property(struct ureg_program *ureg,
1727 unsigned name,
1728 unsigned data)
1729 {
1730 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 2);
1731
1732 out[0].value = 0;
1733 out[0].prop.Type = TGSI_TOKEN_TYPE_PROPERTY;
1734 out[0].prop.NrTokens = 2;
1735 out[0].prop.PropertyName = name;
1736
1737 out[1].prop_data.Data = data;
1738 }
1739
1740
1741 static void emit_decls( struct ureg_program *ureg )
1742 {
1743 unsigned i,j;
1744
1745 for (i = 0; i < ARRAY_SIZE(ureg->properties); i++)
1746 if (ureg->properties[i] != ~0)
1747 emit_property(ureg, i, ureg->properties[i]);
1748
1749 if (ureg->processor == PIPE_SHADER_VERTEX) {
1750 for (i = 0; i < PIPE_MAX_ATTRIBS; i++) {
1751 if (ureg->vs_inputs[i/32] & (1u << (i%32))) {
1752 emit_decl_range( ureg, TGSI_FILE_INPUT, i, 1 );
1753 }
1754 }
1755 } else if (ureg->processor == PIPE_SHADER_FRAGMENT) {
1756 if (ureg->supports_any_inout_decl_range) {
1757 for (i = 0; i < ureg->nr_inputs; i++) {
1758 emit_decl_fs(ureg,
1759 TGSI_FILE_INPUT,
1760 ureg->input[i].first,
1761 ureg->input[i].last,
1762 ureg->input[i].semantic_name,
1763 ureg->input[i].semantic_index,
1764 ureg->input[i].interp,
1765 ureg->input[i].cylindrical_wrap,
1766 ureg->input[i].interp_location,
1767 ureg->input[i].array_id,
1768 ureg->input[i].usage_mask);
1769 }
1770 }
1771 else {
1772 for (i = 0; i < ureg->nr_inputs; i++) {
1773 for (j = ureg->input[i].first; j <= ureg->input[i].last; j++) {
1774 emit_decl_fs(ureg,
1775 TGSI_FILE_INPUT,
1776 j, j,
1777 ureg->input[i].semantic_name,
1778 ureg->input[i].semantic_index +
1779 (j - ureg->input[i].first),
1780 ureg->input[i].interp,
1781 ureg->input[i].cylindrical_wrap,
1782 ureg->input[i].interp_location, 0,
1783 ureg->input[i].usage_mask);
1784 }
1785 }
1786 }
1787 } else {
1788 if (ureg->supports_any_inout_decl_range) {
1789 for (i = 0; i < ureg->nr_inputs; i++) {
1790 emit_decl_semantic(ureg,
1791 TGSI_FILE_INPUT,
1792 ureg->input[i].first,
1793 ureg->input[i].last,
1794 ureg->input[i].semantic_name,
1795 ureg->input[i].semantic_index,
1796 0,
1797 TGSI_WRITEMASK_XYZW,
1798 ureg->input[i].array_id);
1799 }
1800 }
1801 else {
1802 for (i = 0; i < ureg->nr_inputs; i++) {
1803 for (j = ureg->input[i].first; j <= ureg->input[i].last; j++) {
1804 emit_decl_semantic(ureg,
1805 TGSI_FILE_INPUT,
1806 j, j,
1807 ureg->input[i].semantic_name,
1808 ureg->input[i].semantic_index +
1809 (j - ureg->input[i].first),
1810 0,
1811 TGSI_WRITEMASK_XYZW, 0);
1812 }
1813 }
1814 }
1815 }
1816
1817 for (i = 0; i < ureg->nr_system_values; i++) {
1818 emit_decl_semantic(ureg,
1819 TGSI_FILE_SYSTEM_VALUE,
1820 i,
1821 i,
1822 ureg->system_value[i].semantic_name,
1823 ureg->system_value[i].semantic_index,
1824 0,
1825 TGSI_WRITEMASK_XYZW, 0);
1826 }
1827
1828 if (ureg->supports_any_inout_decl_range) {
1829 for (i = 0; i < ureg->nr_outputs; i++) {
1830 emit_decl_semantic(ureg,
1831 TGSI_FILE_OUTPUT,
1832 ureg->output[i].first,
1833 ureg->output[i].last,
1834 ureg->output[i].semantic_name,
1835 ureg->output[i].semantic_index,
1836 ureg->output[i].streams,
1837 ureg->output[i].usage_mask,
1838 ureg->output[i].array_id);
1839 }
1840 }
1841 else {
1842 for (i = 0; i < ureg->nr_outputs; i++) {
1843 for (j = ureg->output[i].first; j <= ureg->output[i].last; j++) {
1844 emit_decl_semantic(ureg,
1845 TGSI_FILE_OUTPUT,
1846 j, j,
1847 ureg->output[i].semantic_name,
1848 ureg->output[i].semantic_index +
1849 (j - ureg->output[i].first),
1850 ureg->output[i].streams,
1851 ureg->output[i].usage_mask, 0);
1852 }
1853 }
1854 }
1855
1856 for (i = 0; i < ureg->nr_samplers; i++) {
1857 emit_decl_range( ureg,
1858 TGSI_FILE_SAMPLER,
1859 ureg->sampler[i].Index, 1 );
1860 }
1861
1862 for (i = 0; i < ureg->nr_sampler_views; i++) {
1863 emit_decl_sampler_view(ureg,
1864 ureg->sampler_view[i].index,
1865 ureg->sampler_view[i].target,
1866 ureg->sampler_view[i].return_type_x,
1867 ureg->sampler_view[i].return_type_y,
1868 ureg->sampler_view[i].return_type_z,
1869 ureg->sampler_view[i].return_type_w);
1870 }
1871
1872 for (i = 0; i < ureg->nr_images; i++) {
1873 emit_decl_image(ureg,
1874 ureg->image[i].index,
1875 ureg->image[i].target,
1876 ureg->image[i].format,
1877 ureg->image[i].wr,
1878 ureg->image[i].raw);
1879 }
1880
1881 for (i = 0; i < ureg->nr_buffers; i++) {
1882 emit_decl_buffer(ureg, ureg->buffer[i].index, ureg->buffer[i].atomic);
1883 }
1884
1885 for (i = 0; i < TGSI_MEMORY_TYPE_COUNT; i++) {
1886 if (ureg->use_memory[i])
1887 emit_decl_memory(ureg, i);
1888 }
1889
1890 if (ureg->const_decls.nr_constant_ranges) {
1891 for (i = 0; i < ureg->const_decls.nr_constant_ranges; i++) {
1892 emit_decl_range(ureg,
1893 TGSI_FILE_CONSTANT,
1894 ureg->const_decls.constant_range[i].first,
1895 ureg->const_decls.constant_range[i].last - ureg->const_decls.constant_range[i].first + 1);
1896 }
1897 }
1898
1899 for (i = 0; i < PIPE_MAX_CONSTANT_BUFFERS; i++) {
1900 struct const_decl *decl = &ureg->const_decls2D[i];
1901
1902 if (decl->nr_constant_ranges) {
1903 uint j;
1904
1905 for (j = 0; j < decl->nr_constant_ranges; j++) {
1906 emit_decl_range2D(ureg,
1907 TGSI_FILE_CONSTANT,
1908 decl->constant_range[j].first,
1909 decl->constant_range[j].last,
1910 i);
1911 }
1912 }
1913 }
1914
1915 if (ureg->nr_temps) {
1916 unsigned array = 0;
1917 for (i = 0; i < ureg->nr_temps;) {
1918 boolean local = util_bitmask_get(ureg->local_temps, i);
1919 unsigned first = i;
1920 i = util_bitmask_get_next_index(ureg->decl_temps, i + 1);
1921 if (i == UTIL_BITMASK_INVALID_INDEX)
1922 i = ureg->nr_temps;
1923
1924 if (array < ureg->nr_array_temps && ureg->array_temps[array] == first)
1925 emit_decl_temps( ureg, first, i - 1, local, ++array );
1926 else
1927 emit_decl_temps( ureg, first, i - 1, local, 0 );
1928 }
1929 }
1930
1931 if (ureg->nr_addrs) {
1932 emit_decl_range( ureg,
1933 TGSI_FILE_ADDRESS,
1934 0, ureg->nr_addrs );
1935 }
1936
1937 for (i = 0; i < ureg->nr_immediates; i++) {
1938 emit_immediate( ureg,
1939 ureg->immediate[i].value.u,
1940 ureg->immediate[i].type );
1941 }
1942 }
1943
1944 /* Append the instruction tokens onto the declarations to build a
1945 * contiguous stream suitable to send to the driver.
1946 */
1947 static void copy_instructions( struct ureg_program *ureg )
1948 {
1949 unsigned nr_tokens = ureg->domain[DOMAIN_INSN].count;
1950 union tgsi_any_token *out = get_tokens( ureg,
1951 DOMAIN_DECL,
1952 nr_tokens );
1953
1954 memcpy(out,
1955 ureg->domain[DOMAIN_INSN].tokens,
1956 nr_tokens * sizeof out[0] );
1957 }
1958
1959
1960 static void
1961 fixup_header_size(struct ureg_program *ureg)
1962 {
1963 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_DECL, 0 );
1964
1965 out->header.BodySize = ureg->domain[DOMAIN_DECL].count - 2;
1966 }
1967
1968
1969 static void
1970 emit_header( struct ureg_program *ureg )
1971 {
1972 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 2 );
1973
1974 out[0].header.HeaderSize = 2;
1975 out[0].header.BodySize = 0;
1976
1977 out[1].processor.Processor = ureg->processor;
1978 out[1].processor.Padding = 0;
1979 }
1980
1981
1982 const struct tgsi_token *ureg_finalize( struct ureg_program *ureg )
1983 {
1984 const struct tgsi_token *tokens;
1985
1986 switch (ureg->processor) {
1987 case PIPE_SHADER_VERTEX:
1988 case PIPE_SHADER_TESS_EVAL:
1989 ureg_property(ureg, TGSI_PROPERTY_NEXT_SHADER,
1990 ureg->next_shader_processor == -1 ?
1991 PIPE_SHADER_FRAGMENT :
1992 ureg->next_shader_processor);
1993 break;
1994 }
1995
1996 emit_header( ureg );
1997 emit_decls( ureg );
1998 copy_instructions( ureg );
1999 fixup_header_size( ureg );
2000
2001 if (ureg->domain[0].tokens == error_tokens ||
2002 ureg->domain[1].tokens == error_tokens) {
2003 debug_printf("%s: error in generated shader\n", __FUNCTION__);
2004 assert(0);
2005 return NULL;
2006 }
2007
2008 tokens = &ureg->domain[DOMAIN_DECL].tokens[0].token;
2009
2010 if (0) {
2011 debug_printf("%s: emitted shader %d tokens:\n", __FUNCTION__,
2012 ureg->domain[DOMAIN_DECL].count);
2013 tgsi_dump( tokens, 0 );
2014 }
2015
2016 #if DEBUG
2017 if (tokens && !tgsi_sanity_check(tokens)) {
2018 debug_printf("tgsi_ureg.c, sanity check failed on generated tokens:\n");
2019 tgsi_dump(tokens, 0);
2020 assert(0);
2021 }
2022 #endif
2023
2024
2025 return tokens;
2026 }
2027
2028
2029 void *ureg_create_shader( struct ureg_program *ureg,
2030 struct pipe_context *pipe,
2031 const struct pipe_stream_output_info *so )
2032 {
2033 struct pipe_shader_state state;
2034
2035 pipe_shader_state_from_tgsi(&state, ureg_finalize(ureg));
2036 if(!state.tokens)
2037 return NULL;
2038
2039 if (so)
2040 state.stream_output = *so;
2041
2042 switch (ureg->processor) {
2043 case PIPE_SHADER_VERTEX:
2044 return pipe->create_vs_state(pipe, &state);
2045 case PIPE_SHADER_TESS_CTRL:
2046 return pipe->create_tcs_state(pipe, &state);
2047 case PIPE_SHADER_TESS_EVAL:
2048 return pipe->create_tes_state(pipe, &state);
2049 case PIPE_SHADER_GEOMETRY:
2050 return pipe->create_gs_state(pipe, &state);
2051 case PIPE_SHADER_FRAGMENT:
2052 return pipe->create_fs_state(pipe, &state);
2053 default:
2054 return NULL;
2055 }
2056 }
2057
2058
2059 const struct tgsi_token *ureg_get_tokens( struct ureg_program *ureg,
2060 unsigned *nr_tokens )
2061 {
2062 const struct tgsi_token *tokens;
2063
2064 ureg_finalize(ureg);
2065
2066 tokens = &ureg->domain[DOMAIN_DECL].tokens[0].token;
2067
2068 if (nr_tokens)
2069 *nr_tokens = ureg->domain[DOMAIN_DECL].count;
2070
2071 ureg->domain[DOMAIN_DECL].tokens = 0;
2072 ureg->domain[DOMAIN_DECL].size = 0;
2073 ureg->domain[DOMAIN_DECL].order = 0;
2074 ureg->domain[DOMAIN_DECL].count = 0;
2075
2076 return tokens;
2077 }
2078
2079
2080 void ureg_free_tokens( const struct tgsi_token *tokens )
2081 {
2082 FREE((struct tgsi_token *)tokens);
2083 }
2084
2085
2086 struct ureg_program *
2087 ureg_create(unsigned processor)
2088 {
2089 return ureg_create_with_screen(processor, NULL);
2090 }
2091
2092
2093 struct ureg_program *
2094 ureg_create_with_screen(unsigned processor, struct pipe_screen *screen)
2095 {
2096 int i;
2097 struct ureg_program *ureg = CALLOC_STRUCT( ureg_program );
2098 if (!ureg)
2099 goto no_ureg;
2100
2101 ureg->processor = processor;
2102 ureg->supports_any_inout_decl_range =
2103 screen &&
2104 screen->get_shader_param(screen, processor,
2105 PIPE_SHADER_CAP_TGSI_ANY_INOUT_DECL_RANGE) != 0;
2106 ureg->next_shader_processor = -1;
2107
2108 for (i = 0; i < ARRAY_SIZE(ureg->properties); i++)
2109 ureg->properties[i] = ~0;
2110
2111 ureg->free_temps = util_bitmask_create();
2112 if (ureg->free_temps == NULL)
2113 goto no_free_temps;
2114
2115 ureg->local_temps = util_bitmask_create();
2116 if (ureg->local_temps == NULL)
2117 goto no_local_temps;
2118
2119 ureg->decl_temps = util_bitmask_create();
2120 if (ureg->decl_temps == NULL)
2121 goto no_decl_temps;
2122
2123 return ureg;
2124
2125 no_decl_temps:
2126 util_bitmask_destroy(ureg->local_temps);
2127 no_local_temps:
2128 util_bitmask_destroy(ureg->free_temps);
2129 no_free_temps:
2130 FREE(ureg);
2131 no_ureg:
2132 return NULL;
2133 }
2134
2135
2136 void
2137 ureg_set_next_shader_processor(struct ureg_program *ureg, unsigned processor)
2138 {
2139 ureg->next_shader_processor = processor;
2140 }
2141
2142
2143 unsigned
2144 ureg_get_nr_outputs( const struct ureg_program *ureg )
2145 {
2146 if (!ureg)
2147 return 0;
2148 return ureg->nr_outputs;
2149 }
2150
2151
2152 void ureg_destroy( struct ureg_program *ureg )
2153 {
2154 unsigned i;
2155
2156 for (i = 0; i < ARRAY_SIZE(ureg->domain); i++) {
2157 if (ureg->domain[i].tokens &&
2158 ureg->domain[i].tokens != error_tokens)
2159 FREE(ureg->domain[i].tokens);
2160 }
2161
2162 util_bitmask_destroy(ureg->free_temps);
2163 util_bitmask_destroy(ureg->local_temps);
2164 util_bitmask_destroy(ureg->decl_temps);
2165
2166 FREE(ureg);
2167 }