1 /**************************************************************************
2 *
3 * Copyright 2007 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 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 #include "util/u_debug.h"
29 #include "util/format/u_formats.h"
30 #include "pipe/p_shader_tokens.h"
31 #include "tgsi_build.h"
32 #include "tgsi_parse.h"
33
34
35 /*
36 * header
37 */
38
39 struct tgsi_header
tgsi_build_header(void)40 tgsi_build_header( void )
41 {
42 struct tgsi_header header;
43
44 header.HeaderSize = 1;
45 header.BodySize = 0;
46
47 return header;
48 }
49
50 static void
header_headersize_grow(struct tgsi_header * header)51 header_headersize_grow( struct tgsi_header *header )
52 {
53 assert( header->HeaderSize < 0xFF );
54 assert( header->BodySize == 0 );
55
56 header->HeaderSize++;
57 }
58
59 static void
header_bodysize_grow(struct tgsi_header * header)60 header_bodysize_grow( struct tgsi_header *header )
61 {
62 assert( header->BodySize < 0xFFFFFF );
63
64 header->BodySize++;
65 }
66
67 struct tgsi_processor
tgsi_build_processor(unsigned type,struct tgsi_header * header)68 tgsi_build_processor(
69 unsigned type,
70 struct tgsi_header *header )
71 {
72 struct tgsi_processor processor;
73
74 processor.Processor = type;
75 processor.Padding = 0;
76
77 header_headersize_grow( header );
78
79 return processor;
80 }
81
82 /*
83 * declaration
84 */
85
86 static void
declaration_grow(struct tgsi_declaration * declaration,struct tgsi_header * header)87 declaration_grow(
88 struct tgsi_declaration *declaration,
89 struct tgsi_header *header )
90 {
91 assert( declaration->NrTokens < 0xFF );
92
93 declaration->NrTokens++;
94
95 header_bodysize_grow( header );
96 }
97
98 static struct tgsi_declaration
tgsi_default_declaration(void)99 tgsi_default_declaration( void )
100 {
101 struct tgsi_declaration declaration;
102
103 declaration.Type = TGSI_TOKEN_TYPE_DECLARATION;
104 declaration.NrTokens = 1;
105 declaration.File = TGSI_FILE_NULL;
106 declaration.UsageMask = TGSI_WRITEMASK_XYZW;
107 declaration.Interpolate = 0;
108 declaration.Dimension = 0;
109 declaration.Semantic = 0;
110 declaration.Invariant = 0;
111 declaration.Local = 0;
112 declaration.Array = 0;
113 declaration.Atomic = 0;
114 declaration.MemType = TGSI_MEMORY_TYPE_GLOBAL;
115 declaration.Padding = 0;
116
117 return declaration;
118 }
119
120 static struct tgsi_declaration
tgsi_build_declaration(enum tgsi_file_type file,unsigned usage_mask,unsigned interpolate,unsigned dimension,unsigned semantic,unsigned invariant,unsigned local,unsigned array,unsigned atomic,unsigned mem_type,struct tgsi_header * header)121 tgsi_build_declaration(
122 enum tgsi_file_type file,
123 unsigned usage_mask,
124 unsigned interpolate,
125 unsigned dimension,
126 unsigned semantic,
127 unsigned invariant,
128 unsigned local,
129 unsigned array,
130 unsigned atomic,
131 unsigned mem_type,
132 struct tgsi_header *header )
133 {
134 struct tgsi_declaration declaration;
135
136 assert( file < TGSI_FILE_COUNT );
137 assert( interpolate < TGSI_INTERPOLATE_COUNT );
138
139 declaration = tgsi_default_declaration();
140 declaration.File = file;
141 declaration.UsageMask = usage_mask;
142 declaration.Interpolate = interpolate;
143 declaration.Dimension = dimension;
144 declaration.Semantic = semantic;
145 declaration.Invariant = invariant;
146 declaration.Local = local;
147 declaration.Array = array;
148 declaration.Atomic = atomic;
149 declaration.MemType = mem_type;
150 header_bodysize_grow( header );
151
152 return declaration;
153 }
154
155 static struct tgsi_declaration_range
tgsi_default_declaration_range(void)156 tgsi_default_declaration_range( void )
157 {
158 struct tgsi_declaration_range dr;
159
160 dr.First = 0;
161 dr.Last = 0;
162
163 return dr;
164 }
165
166 static struct tgsi_declaration_dimension
tgsi_default_declaration_dimension()167 tgsi_default_declaration_dimension()
168 {
169 struct tgsi_declaration_dimension dim;
170
171 dim.Index2D = 0;
172 dim.Padding = 0;
173
174 return dim;
175 }
176
177 static struct tgsi_declaration_range
tgsi_build_declaration_range(unsigned first,unsigned last,struct tgsi_declaration * declaration,struct tgsi_header * header)178 tgsi_build_declaration_range(
179 unsigned first,
180 unsigned last,
181 struct tgsi_declaration *declaration,
182 struct tgsi_header *header )
183 {
184 struct tgsi_declaration_range declaration_range;
185
186 assert( last >= first );
187 assert( last <= 0xFFFF );
188
189 declaration_range.First = first;
190 declaration_range.Last = last;
191
192 declaration_grow( declaration, header );
193
194 return declaration_range;
195 }
196
197 static struct tgsi_declaration_dimension
tgsi_build_declaration_dimension(unsigned index_2d,struct tgsi_declaration * declaration,struct tgsi_header * header)198 tgsi_build_declaration_dimension(unsigned index_2d,
199 struct tgsi_declaration *declaration,
200 struct tgsi_header *header)
201 {
202 struct tgsi_declaration_dimension dd;
203
204 assert(index_2d <= 0xFFFF);
205
206 dd.Index2D = index_2d;
207 dd.Padding = 0;
208
209 declaration_grow(declaration, header);
210
211 return dd;
212 }
213
214 static struct tgsi_declaration_interp
tgsi_default_declaration_interp(void)215 tgsi_default_declaration_interp( void )
216 {
217 struct tgsi_declaration_interp di;
218
219 di.Interpolate = TGSI_INTERPOLATE_CONSTANT;
220 di.Location = TGSI_INTERPOLATE_LOC_CENTER;
221 di.Padding = 0;
222
223 return di;
224 }
225
226 static struct tgsi_declaration_interp
tgsi_build_declaration_interp(unsigned interpolate,unsigned interpolate_location,struct tgsi_declaration * declaration,struct tgsi_header * header)227 tgsi_build_declaration_interp(unsigned interpolate,
228 unsigned interpolate_location,
229 struct tgsi_declaration *declaration,
230 struct tgsi_header *header)
231 {
232 struct tgsi_declaration_interp di;
233
234 di.Interpolate = interpolate;
235 di.Location = interpolate_location;
236 di.Padding = 0;
237
238 declaration_grow(declaration, header);
239
240 return di;
241 }
242
243 static struct tgsi_declaration_semantic
tgsi_default_declaration_semantic(void)244 tgsi_default_declaration_semantic( void )
245 {
246 struct tgsi_declaration_semantic ds;
247
248 ds.Name = TGSI_SEMANTIC_POSITION;
249 ds.Index = 0;
250 ds.StreamX = 0;
251 ds.StreamY = 0;
252 ds.StreamZ = 0;
253 ds.StreamW = 0;
254
255 return ds;
256 }
257
258 static struct tgsi_declaration_semantic
tgsi_build_declaration_semantic(unsigned semantic_name,unsigned semantic_index,unsigned streamx,unsigned streamy,unsigned streamz,unsigned streamw,struct tgsi_declaration * declaration,struct tgsi_header * header)259 tgsi_build_declaration_semantic(
260 unsigned semantic_name,
261 unsigned semantic_index,
262 unsigned streamx,
263 unsigned streamy,
264 unsigned streamz,
265 unsigned streamw,
266 struct tgsi_declaration *declaration,
267 struct tgsi_header *header )
268 {
269 struct tgsi_declaration_semantic ds;
270
271 assert( semantic_name <= TGSI_SEMANTIC_COUNT );
272 assert( semantic_index <= 0xFFFF );
273
274 ds.Name = semantic_name;
275 ds.Index = semantic_index;
276 ds.StreamX = streamx;
277 ds.StreamY = streamy;
278 ds.StreamZ = streamz;
279 ds.StreamW = streamw;
280
281 declaration_grow( declaration, header );
282
283 return ds;
284 }
285
286 static struct tgsi_declaration_image
tgsi_default_declaration_image(void)287 tgsi_default_declaration_image(void)
288 {
289 struct tgsi_declaration_image di;
290
291 di.Resource = TGSI_TEXTURE_BUFFER;
292 di.Raw = 0;
293 di.Writable = 0;
294 di.Format = 0;
295 di.Padding = 0;
296
297 return di;
298 }
299
300 static struct tgsi_declaration_image
tgsi_build_declaration_image(unsigned texture,unsigned format,unsigned raw,unsigned writable,struct tgsi_declaration * declaration,struct tgsi_header * header)301 tgsi_build_declaration_image(unsigned texture,
302 unsigned format,
303 unsigned raw,
304 unsigned writable,
305 struct tgsi_declaration *declaration,
306 struct tgsi_header *header)
307 {
308 struct tgsi_declaration_image di;
309
310 di = tgsi_default_declaration_image();
311 di.Resource = texture;
312 di.Format = format;
313 di.Raw = raw;
314 di.Writable = writable;
315
316 declaration_grow(declaration, header);
317
318 return di;
319 }
320
321 static struct tgsi_declaration_sampler_view
tgsi_default_declaration_sampler_view(void)322 tgsi_default_declaration_sampler_view(void)
323 {
324 struct tgsi_declaration_sampler_view dsv;
325
326 dsv.Resource = TGSI_TEXTURE_BUFFER;
327 dsv.ReturnTypeX = TGSI_RETURN_TYPE_UNORM;
328 dsv.ReturnTypeY = TGSI_RETURN_TYPE_UNORM;
329 dsv.ReturnTypeZ = TGSI_RETURN_TYPE_UNORM;
330 dsv.ReturnTypeW = TGSI_RETURN_TYPE_UNORM;
331
332 return dsv;
333 }
334
335 static struct tgsi_declaration_sampler_view
tgsi_build_declaration_sampler_view(unsigned texture,unsigned return_type_x,unsigned return_type_y,unsigned return_type_z,unsigned return_type_w,struct tgsi_declaration * declaration,struct tgsi_header * header)336 tgsi_build_declaration_sampler_view(unsigned texture,
337 unsigned return_type_x,
338 unsigned return_type_y,
339 unsigned return_type_z,
340 unsigned return_type_w,
341 struct tgsi_declaration *declaration,
342 struct tgsi_header *header)
343 {
344 struct tgsi_declaration_sampler_view dsv;
345
346 dsv = tgsi_default_declaration_sampler_view();
347 dsv.Resource = texture;
348 dsv.ReturnTypeX = return_type_x;
349 dsv.ReturnTypeY = return_type_y;
350 dsv.ReturnTypeZ = return_type_z;
351 dsv.ReturnTypeW = return_type_w;
352
353 declaration_grow(declaration, header);
354
355 return dsv;
356 }
357
358
359 static struct tgsi_declaration_array
tgsi_default_declaration_array(void)360 tgsi_default_declaration_array( void )
361 {
362 struct tgsi_declaration_array a;
363
364 a.ArrayID = 0;
365 a.Padding = 0;
366
367 return a;
368 }
369
370 static struct tgsi_declaration_array
tgsi_build_declaration_array(unsigned arrayid,struct tgsi_declaration * declaration,struct tgsi_header * header)371 tgsi_build_declaration_array(unsigned arrayid,
372 struct tgsi_declaration *declaration,
373 struct tgsi_header *header)
374 {
375 struct tgsi_declaration_array da;
376
377 da = tgsi_default_declaration_array();
378 da.ArrayID = arrayid;
379
380 declaration_grow(declaration, header);
381
382 return da;
383 }
384
385 struct tgsi_full_declaration
tgsi_default_full_declaration(void)386 tgsi_default_full_declaration( void )
387 {
388 struct tgsi_full_declaration full_declaration;
389
390 full_declaration.Declaration = tgsi_default_declaration();
391 full_declaration.Range = tgsi_default_declaration_range();
392 full_declaration.Dim = tgsi_default_declaration_dimension();
393 full_declaration.Semantic = tgsi_default_declaration_semantic();
394 full_declaration.Interp = tgsi_default_declaration_interp();
395 full_declaration.Image = tgsi_default_declaration_image();
396 full_declaration.SamplerView = tgsi_default_declaration_sampler_view();
397 full_declaration.Array = tgsi_default_declaration_array();
398
399 return full_declaration;
400 }
401
402 unsigned
tgsi_build_full_declaration(const struct tgsi_full_declaration * full_decl,struct tgsi_token * tokens,struct tgsi_header * header,unsigned maxsize)403 tgsi_build_full_declaration(
404 const struct tgsi_full_declaration *full_decl,
405 struct tgsi_token *tokens,
406 struct tgsi_header *header,
407 unsigned maxsize )
408 {
409 unsigned size = 0;
410 struct tgsi_declaration *declaration;
411 struct tgsi_declaration_range *dr;
412
413 if( maxsize <= size )
414 return 0;
415 declaration = (struct tgsi_declaration *) &tokens[size];
416 size++;
417
418 *declaration = tgsi_build_declaration(
419 full_decl->Declaration.File,
420 full_decl->Declaration.UsageMask,
421 full_decl->Declaration.Interpolate,
422 full_decl->Declaration.Dimension,
423 full_decl->Declaration.Semantic,
424 full_decl->Declaration.Invariant,
425 full_decl->Declaration.Local,
426 full_decl->Declaration.Array,
427 full_decl->Declaration.Atomic,
428 full_decl->Declaration.MemType,
429 header );
430
431 if (maxsize <= size)
432 return 0;
433 dr = (struct tgsi_declaration_range *) &tokens[size];
434 size++;
435
436 *dr = tgsi_build_declaration_range(
437 full_decl->Range.First,
438 full_decl->Range.Last,
439 declaration,
440 header );
441
442 if (full_decl->Declaration.Dimension) {
443 struct tgsi_declaration_dimension *dd;
444
445 if (maxsize <= size) {
446 return 0;
447 }
448 dd = (struct tgsi_declaration_dimension *)&tokens[size];
449 size++;
450
451 *dd = tgsi_build_declaration_dimension(full_decl->Dim.Index2D,
452 declaration,
453 header);
454 }
455
456 if (full_decl->Declaration.Interpolate) {
457 struct tgsi_declaration_interp *di;
458
459 if (maxsize <= size) {
460 return 0;
461 }
462 di = (struct tgsi_declaration_interp *)&tokens[size];
463 size++;
464
465 *di = tgsi_build_declaration_interp(full_decl->Interp.Interpolate,
466 full_decl->Interp.Location,
467 declaration,
468 header);
469 }
470
471 if( full_decl->Declaration.Semantic ) {
472 struct tgsi_declaration_semantic *ds;
473
474 if( maxsize <= size )
475 return 0;
476 ds = (struct tgsi_declaration_semantic *) &tokens[size];
477 size++;
478
479 *ds = tgsi_build_declaration_semantic(
480 full_decl->Semantic.Name,
481 full_decl->Semantic.Index,
482 full_decl->Semantic.StreamX,
483 full_decl->Semantic.StreamY,
484 full_decl->Semantic.StreamZ,
485 full_decl->Semantic.StreamW,
486 declaration,
487 header );
488 }
489
490 if (full_decl->Declaration.File == TGSI_FILE_IMAGE) {
491 struct tgsi_declaration_image *di;
492
493 if (maxsize <= size) {
494 return 0;
495 }
496 di = (struct tgsi_declaration_image *)&tokens[size];
497 size++;
498
499 *di = tgsi_build_declaration_image(full_decl->Image.Resource,
500 full_decl->Image.Format,
501 full_decl->Image.Raw,
502 full_decl->Image.Writable,
503 declaration,
504 header);
505 }
506
507 if (full_decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
508 struct tgsi_declaration_sampler_view *dsv;
509
510 if (maxsize <= size) {
511 return 0;
512 }
513 dsv = (struct tgsi_declaration_sampler_view *)&tokens[size];
514 size++;
515
516 *dsv = tgsi_build_declaration_sampler_view(
517 full_decl->SamplerView.Resource,
518 full_decl->SamplerView.ReturnTypeX,
519 full_decl->SamplerView.ReturnTypeY,
520 full_decl->SamplerView.ReturnTypeZ,
521 full_decl->SamplerView.ReturnTypeW,
522 declaration,
523 header);
524 }
525
526 if (full_decl->Declaration.Array) {
527 struct tgsi_declaration_array *da;
528
529 if (maxsize <= size) {
530 return 0;
531 }
532 da = (struct tgsi_declaration_array *)&tokens[size];
533 size++;
534 *da = tgsi_build_declaration_array(
535 full_decl->Array.ArrayID,
536 declaration,
537 header);
538 }
539 return size;
540 }
541
542 /*
543 * immediate
544 */
545
546 static struct tgsi_immediate
tgsi_default_immediate(void)547 tgsi_default_immediate( void )
548 {
549 struct tgsi_immediate immediate;
550
551 immediate.Type = TGSI_TOKEN_TYPE_IMMEDIATE;
552 immediate.NrTokens = 1;
553 immediate.DataType = TGSI_IMM_FLOAT32;
554 immediate.Padding = 0;
555
556 return immediate;
557 }
558
559 static struct tgsi_immediate
tgsi_build_immediate(struct tgsi_header * header,unsigned type)560 tgsi_build_immediate(
561 struct tgsi_header *header,
562 unsigned type )
563 {
564 struct tgsi_immediate immediate;
565
566 immediate = tgsi_default_immediate();
567 immediate.DataType = type;
568
569 header_bodysize_grow( header );
570
571 return immediate;
572 }
573
574 struct tgsi_full_immediate
tgsi_default_full_immediate(void)575 tgsi_default_full_immediate( void )
576 {
577 struct tgsi_full_immediate fullimm;
578
579 fullimm.Immediate = tgsi_default_immediate();
580 fullimm.u[0].Float = 0.0f;
581 fullimm.u[1].Float = 0.0f;
582 fullimm.u[2].Float = 0.0f;
583 fullimm.u[3].Float = 0.0f;
584
585 return fullimm;
586 }
587
588 static void
immediate_grow(struct tgsi_immediate * immediate,struct tgsi_header * header)589 immediate_grow(
590 struct tgsi_immediate *immediate,
591 struct tgsi_header *header )
592 {
593 assert( immediate->NrTokens < 0xFF );
594
595 immediate->NrTokens++;
596
597 header_bodysize_grow( header );
598 }
599
600 unsigned
tgsi_build_full_immediate(const struct tgsi_full_immediate * full_imm,struct tgsi_token * tokens,struct tgsi_header * header,unsigned maxsize)601 tgsi_build_full_immediate(
602 const struct tgsi_full_immediate *full_imm,
603 struct tgsi_token *tokens,
604 struct tgsi_header *header,
605 unsigned maxsize )
606 {
607 unsigned size = 0;
608 int i;
609 struct tgsi_immediate *immediate;
610
611 if( maxsize <= size )
612 return 0;
613 immediate = (struct tgsi_immediate *) &tokens[size];
614 size++;
615
616 *immediate = tgsi_build_immediate( header, full_imm->Immediate.DataType );
617
618 assert( full_imm->Immediate.NrTokens <= 4 + 1 );
619
620 for( i = 0; i < full_imm->Immediate.NrTokens - 1; i++ ) {
621 union tgsi_immediate_data *data;
622
623 if( maxsize <= size )
624 return 0;
625
626 data = (union tgsi_immediate_data *) &tokens[size];
627 *data = full_imm->u[i];
628
629 immediate_grow( immediate, header );
630 size++;
631 }
632
633 return size;
634 }
635
636 /*
637 * instruction
638 */
639
640 struct tgsi_instruction
tgsi_default_instruction(void)641 tgsi_default_instruction( void )
642 {
643 struct tgsi_instruction instruction;
644
645 instruction.Type = TGSI_TOKEN_TYPE_INSTRUCTION;
646 instruction.NrTokens = 0;
647 instruction.Opcode = TGSI_OPCODE_MOV;
648 instruction.Saturate = 0;
649 instruction.NumDstRegs = 1;
650 instruction.NumSrcRegs = 1;
651 instruction.Label = 0;
652 instruction.Texture = 0;
653 instruction.Memory = 0;
654 instruction.Precise = 0;
655 instruction.Padding = 0;
656
657 return instruction;
658 }
659
660 static struct tgsi_instruction
tgsi_build_instruction(enum tgsi_opcode opcode,unsigned saturate,unsigned precise,unsigned num_dst_regs,unsigned num_src_regs,struct tgsi_header * header)661 tgsi_build_instruction(enum tgsi_opcode opcode,
662 unsigned saturate,
663 unsigned precise,
664 unsigned num_dst_regs,
665 unsigned num_src_regs,
666 struct tgsi_header *header)
667 {
668 struct tgsi_instruction instruction;
669
670 assert (opcode <= TGSI_OPCODE_LAST);
671 assert (saturate <= 1);
672 assert (num_dst_regs <= 3);
673 assert (num_src_regs <= 15);
674
675 instruction = tgsi_default_instruction();
676 instruction.Opcode = opcode;
677 instruction.Saturate = saturate;
678 instruction.Precise = precise;
679 instruction.NumDstRegs = num_dst_regs;
680 instruction.NumSrcRegs = num_src_regs;
681
682 header_bodysize_grow( header );
683
684 return instruction;
685 }
686
687 static void
instruction_grow(struct tgsi_instruction * instruction,struct tgsi_header * header)688 instruction_grow(
689 struct tgsi_instruction *instruction,
690 struct tgsi_header *header )
691 {
692 assert (instruction->NrTokens < 0xFF);
693
694 instruction->NrTokens++;
695
696 header_bodysize_grow( header );
697 }
698
699 static struct tgsi_instruction_label
tgsi_default_instruction_label(void)700 tgsi_default_instruction_label( void )
701 {
702 struct tgsi_instruction_label instruction_label;
703
704 instruction_label.Label = 0;
705 instruction_label.Padding = 0;
706
707 return instruction_label;
708 }
709
710 static struct tgsi_instruction_label
tgsi_build_instruction_label(unsigned label,struct tgsi_instruction * instruction,struct tgsi_header * header)711 tgsi_build_instruction_label(
712 unsigned label,
713 struct tgsi_instruction *instruction,
714 struct tgsi_header *header )
715 {
716 struct tgsi_instruction_label instruction_label;
717
718 instruction_label.Label = label;
719 instruction_label.Padding = 0;
720 instruction->Label = 1;
721
722 instruction_grow( instruction, header );
723
724 return instruction_label;
725 }
726
727 static struct tgsi_instruction_texture
tgsi_default_instruction_texture(void)728 tgsi_default_instruction_texture( void )
729 {
730 struct tgsi_instruction_texture instruction_texture;
731
732 instruction_texture.Texture = TGSI_TEXTURE_UNKNOWN;
733 instruction_texture.NumOffsets = 0;
734 instruction_texture.ReturnType = TGSI_RETURN_TYPE_UNKNOWN;
735 instruction_texture.Padding = 0;
736
737 return instruction_texture;
738 }
739
740 static struct tgsi_instruction_texture
tgsi_build_instruction_texture(unsigned texture,unsigned num_offsets,unsigned return_type,struct tgsi_instruction * instruction,struct tgsi_header * header)741 tgsi_build_instruction_texture(
742 unsigned texture,
743 unsigned num_offsets,
744 unsigned return_type,
745 struct tgsi_instruction *instruction,
746 struct tgsi_header *header )
747 {
748 struct tgsi_instruction_texture instruction_texture;
749
750 instruction_texture.Texture = texture;
751 instruction_texture.NumOffsets = num_offsets;
752 instruction_texture.ReturnType = return_type;
753 instruction_texture.Padding = 0;
754 instruction->Texture = 1;
755
756 instruction_grow( instruction, header );
757
758 return instruction_texture;
759 }
760
761 static struct tgsi_instruction_memory
tgsi_default_instruction_memory(void)762 tgsi_default_instruction_memory( void )
763 {
764 struct tgsi_instruction_memory instruction_memory;
765
766 instruction_memory.Qualifier = 0;
767 instruction_memory.Texture = 0;
768 instruction_memory.Format = 0;
769 instruction_memory.Padding = 0;
770
771 return instruction_memory;
772 }
773
774 static struct tgsi_instruction_memory
tgsi_build_instruction_memory(unsigned qualifier,unsigned texture,unsigned format,struct tgsi_instruction * instruction,struct tgsi_header * header)775 tgsi_build_instruction_memory(
776 unsigned qualifier,
777 unsigned texture,
778 unsigned format,
779 struct tgsi_instruction *instruction,
780 struct tgsi_header *header )
781 {
782 struct tgsi_instruction_memory instruction_memory;
783
784 instruction_memory.Qualifier = qualifier;
785 instruction_memory.Texture = texture;
786 instruction_memory.Format = format;
787 instruction_memory.Padding = 0;
788 instruction->Memory = 1;
789
790 instruction_grow( instruction, header );
791
792 return instruction_memory;
793 }
794
795 static struct tgsi_texture_offset
tgsi_default_texture_offset(void)796 tgsi_default_texture_offset( void )
797 {
798 struct tgsi_texture_offset texture_offset;
799
800 texture_offset.Index = 0;
801 texture_offset.File = 0;
802 texture_offset.SwizzleX = 0;
803 texture_offset.SwizzleY = 0;
804 texture_offset.SwizzleZ = 0;
805 texture_offset.Padding = 0;
806
807 return texture_offset;
808 }
809
810 static struct tgsi_texture_offset
tgsi_build_texture_offset(int index,enum tgsi_file_type file,int swizzle_x,int swizzle_y,int swizzle_z,struct tgsi_instruction * instruction,struct tgsi_header * header)811 tgsi_build_texture_offset(
812 int index,
813 enum tgsi_file_type file,
814 int swizzle_x, int swizzle_y, int swizzle_z,
815 struct tgsi_instruction *instruction,
816 struct tgsi_header *header )
817 {
818 struct tgsi_texture_offset texture_offset;
819
820 texture_offset.Index = index;
821 texture_offset.File = file;
822 texture_offset.SwizzleX = swizzle_x;
823 texture_offset.SwizzleY = swizzle_y;
824 texture_offset.SwizzleZ = swizzle_z;
825 texture_offset.Padding = 0;
826
827 instruction_grow( instruction, header );
828
829 return texture_offset;
830 }
831
832 static struct tgsi_src_register
tgsi_default_src_register(void)833 tgsi_default_src_register( void )
834 {
835 struct tgsi_src_register src_register;
836
837 src_register.File = TGSI_FILE_NULL;
838 src_register.SwizzleX = TGSI_SWIZZLE_X;
839 src_register.SwizzleY = TGSI_SWIZZLE_Y;
840 src_register.SwizzleZ = TGSI_SWIZZLE_Z;
841 src_register.SwizzleW = TGSI_SWIZZLE_W;
842 src_register.Negate = 0;
843 src_register.Absolute = 0;
844 src_register.Indirect = 0;
845 src_register.Dimension = 0;
846 src_register.Index = 0;
847
848 return src_register;
849 }
850
851 static struct tgsi_src_register
tgsi_build_src_register(enum tgsi_file_type file,unsigned swizzle_x,unsigned swizzle_y,unsigned swizzle_z,unsigned swizzle_w,unsigned negate,unsigned absolute,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header)852 tgsi_build_src_register(
853 enum tgsi_file_type file,
854 unsigned swizzle_x,
855 unsigned swizzle_y,
856 unsigned swizzle_z,
857 unsigned swizzle_w,
858 unsigned negate,
859 unsigned absolute,
860 unsigned indirect,
861 unsigned dimension,
862 int index,
863 struct tgsi_instruction *instruction,
864 struct tgsi_header *header )
865 {
866 struct tgsi_src_register src_register;
867
868 assert( file < TGSI_FILE_COUNT );
869 assert( swizzle_x <= TGSI_SWIZZLE_W );
870 assert( swizzle_y <= TGSI_SWIZZLE_W );
871 assert( swizzle_z <= TGSI_SWIZZLE_W );
872 assert( swizzle_w <= TGSI_SWIZZLE_W );
873 assert( negate <= 1 );
874 assert( index >= -0x8000 && index <= 0x7FFF );
875
876 src_register.File = file;
877 src_register.SwizzleX = swizzle_x;
878 src_register.SwizzleY = swizzle_y;
879 src_register.SwizzleZ = swizzle_z;
880 src_register.SwizzleW = swizzle_w;
881 src_register.Negate = negate;
882 src_register.Absolute = absolute;
883 src_register.Indirect = indirect;
884 src_register.Dimension = dimension;
885 src_register.Index = index;
886
887 instruction_grow( instruction, header );
888
889 return src_register;
890 }
891
892 static struct tgsi_ind_register
tgsi_default_ind_register(void)893 tgsi_default_ind_register( void )
894 {
895 struct tgsi_ind_register ind_register;
896
897 ind_register.File = TGSI_FILE_NULL;
898 ind_register.Index = 0;
899 ind_register.Swizzle = TGSI_SWIZZLE_X;
900 ind_register.ArrayID = 0;
901
902 return ind_register;
903 }
904
905 static struct tgsi_ind_register
tgsi_build_ind_register(enum tgsi_file_type file,unsigned swizzle,int index,unsigned arrayid,struct tgsi_instruction * instruction,struct tgsi_header * header)906 tgsi_build_ind_register(
907 enum tgsi_file_type file,
908 unsigned swizzle,
909 int index,
910 unsigned arrayid,
911 struct tgsi_instruction *instruction,
912 struct tgsi_header *header )
913 {
914 struct tgsi_ind_register ind_register;
915
916 assert( file < TGSI_FILE_COUNT );
917 assert( swizzle <= TGSI_SWIZZLE_W );
918 assert( index >= -0x8000 && index <= 0x7FFF );
919
920 ind_register.File = file;
921 ind_register.Swizzle = swizzle;
922 ind_register.Index = index;
923 ind_register.ArrayID = arrayid;
924
925 instruction_grow( instruction, header );
926
927 return ind_register;
928 }
929
930 static struct tgsi_dimension
tgsi_default_dimension(void)931 tgsi_default_dimension( void )
932 {
933 struct tgsi_dimension dimension;
934
935 dimension.Indirect = 0;
936 dimension.Dimension = 0;
937 dimension.Padding = 0;
938 dimension.Index = 0;
939
940 return dimension;
941 }
942
943 static struct tgsi_full_src_register
tgsi_default_full_src_register(void)944 tgsi_default_full_src_register( void )
945 {
946 struct tgsi_full_src_register full_src_register;
947
948 full_src_register.Register = tgsi_default_src_register();
949 full_src_register.Indirect = tgsi_default_ind_register();
950 full_src_register.Dimension = tgsi_default_dimension();
951 full_src_register.DimIndirect = tgsi_default_ind_register();
952
953 return full_src_register;
954 }
955
956 static struct tgsi_dimension
tgsi_build_dimension(unsigned indirect,unsigned index,struct tgsi_instruction * instruction,struct tgsi_header * header)957 tgsi_build_dimension(
958 unsigned indirect,
959 unsigned index,
960 struct tgsi_instruction *instruction,
961 struct tgsi_header *header )
962 {
963 struct tgsi_dimension dimension;
964
965 dimension.Indirect = indirect;
966 dimension.Dimension = 0;
967 dimension.Padding = 0;
968 dimension.Index = index;
969
970 instruction_grow( instruction, header );
971
972 return dimension;
973 }
974
975 static struct tgsi_dst_register
tgsi_default_dst_register(void)976 tgsi_default_dst_register( void )
977 {
978 struct tgsi_dst_register dst_register;
979
980 dst_register.File = TGSI_FILE_NULL;
981 dst_register.WriteMask = TGSI_WRITEMASK_XYZW;
982 dst_register.Indirect = 0;
983 dst_register.Dimension = 0;
984 dst_register.Index = 0;
985 dst_register.Padding = 0;
986
987 return dst_register;
988 }
989
990 static struct tgsi_dst_register
tgsi_build_dst_register(enum tgsi_file_type file,unsigned mask,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header)991 tgsi_build_dst_register(
992 enum tgsi_file_type file,
993 unsigned mask,
994 unsigned indirect,
995 unsigned dimension,
996 int index,
997 struct tgsi_instruction *instruction,
998 struct tgsi_header *header )
999 {
1000 struct tgsi_dst_register dst_register;
1001
1002 assert( file < TGSI_FILE_COUNT );
1003 assert( mask <= TGSI_WRITEMASK_XYZW );
1004 assert( index >= -32768 && index <= 32767 );
1005
1006 dst_register.File = file;
1007 dst_register.WriteMask = mask;
1008 dst_register.Indirect = indirect;
1009 dst_register.Dimension = dimension;
1010 dst_register.Index = index;
1011 dst_register.Padding = 0;
1012
1013 instruction_grow( instruction, header );
1014
1015 return dst_register;
1016 }
1017
1018 static struct tgsi_full_dst_register
tgsi_default_full_dst_register(void)1019 tgsi_default_full_dst_register( void )
1020 {
1021 struct tgsi_full_dst_register full_dst_register;
1022
1023 full_dst_register.Register = tgsi_default_dst_register();
1024 full_dst_register.Indirect = tgsi_default_ind_register();
1025 full_dst_register.Dimension = tgsi_default_dimension();
1026 full_dst_register.DimIndirect = tgsi_default_ind_register();
1027
1028 return full_dst_register;
1029 }
1030
1031 struct tgsi_full_instruction
tgsi_default_full_instruction(void)1032 tgsi_default_full_instruction( void )
1033 {
1034 struct tgsi_full_instruction full_instruction;
1035 unsigned i;
1036
1037 full_instruction.Instruction = tgsi_default_instruction();
1038 full_instruction.Label = tgsi_default_instruction_label();
1039 full_instruction.Texture = tgsi_default_instruction_texture();
1040 full_instruction.Memory = tgsi_default_instruction_memory();
1041 for( i = 0; i < TGSI_FULL_MAX_TEX_OFFSETS; i++ ) {
1042 full_instruction.TexOffsets[i] = tgsi_default_texture_offset();
1043 }
1044 for( i = 0; i < TGSI_FULL_MAX_DST_REGISTERS; i++ ) {
1045 full_instruction.Dst[i] = tgsi_default_full_dst_register();
1046 }
1047 for( i = 0; i < TGSI_FULL_MAX_SRC_REGISTERS; i++ ) {
1048 full_instruction.Src[i] = tgsi_default_full_src_register();
1049 }
1050
1051 return full_instruction;
1052 }
1053
1054 unsigned
tgsi_build_full_instruction(const struct tgsi_full_instruction * full_inst,struct tgsi_token * tokens,struct tgsi_header * header,unsigned maxsize)1055 tgsi_build_full_instruction(
1056 const struct tgsi_full_instruction *full_inst,
1057 struct tgsi_token *tokens,
1058 struct tgsi_header *header,
1059 unsigned maxsize )
1060 {
1061 unsigned size = 0;
1062 unsigned i;
1063 struct tgsi_instruction *instruction;
1064
1065 if( maxsize <= size )
1066 return 0;
1067 instruction = (struct tgsi_instruction *) &tokens[size];
1068 size++;
1069
1070 *instruction = tgsi_build_instruction(full_inst->Instruction.Opcode,
1071 full_inst->Instruction.Saturate,
1072 full_inst->Instruction.Precise,
1073 full_inst->Instruction.NumDstRegs,
1074 full_inst->Instruction.NumSrcRegs,
1075 header);
1076
1077 if (full_inst->Instruction.Label) {
1078 struct tgsi_instruction_label *instruction_label;
1079
1080 if( maxsize <= size )
1081 return 0;
1082 instruction_label =
1083 (struct tgsi_instruction_label *) &tokens[size];
1084 size++;
1085
1086 *instruction_label = tgsi_build_instruction_label(
1087 full_inst->Label.Label,
1088 instruction,
1089 header );
1090 }
1091
1092 if (full_inst->Instruction.Texture) {
1093 struct tgsi_instruction_texture *instruction_texture;
1094
1095 if( maxsize <= size )
1096 return 0;
1097 instruction_texture =
1098 (struct tgsi_instruction_texture *) &tokens[size];
1099 size++;
1100
1101 *instruction_texture = tgsi_build_instruction_texture(
1102 full_inst->Texture.Texture,
1103 full_inst->Texture.NumOffsets,
1104 full_inst->Texture.ReturnType,
1105 instruction,
1106 header );
1107
1108 for (i = 0; i < full_inst->Texture.NumOffsets; i++) {
1109 struct tgsi_texture_offset *texture_offset;
1110
1111 if ( maxsize <= size )
1112 return 0;
1113 texture_offset = (struct tgsi_texture_offset *)&tokens[size];
1114 size++;
1115 *texture_offset = tgsi_build_texture_offset(
1116 full_inst->TexOffsets[i].Index,
1117 full_inst->TexOffsets[i].File,
1118 full_inst->TexOffsets[i].SwizzleX,
1119 full_inst->TexOffsets[i].SwizzleY,
1120 full_inst->TexOffsets[i].SwizzleZ,
1121 instruction,
1122 header);
1123 }
1124 }
1125
1126 if (full_inst->Instruction.Memory) {
1127 struct tgsi_instruction_memory *instruction_memory;
1128
1129 if( maxsize <= size )
1130 return 0;
1131 instruction_memory =
1132 (struct tgsi_instruction_memory *) &tokens[size];
1133 size++;
1134
1135 *instruction_memory = tgsi_build_instruction_memory(
1136 full_inst->Memory.Qualifier,
1137 full_inst->Memory.Texture,
1138 full_inst->Memory.Format,
1139 instruction,
1140 header );
1141 }
1142
1143 for( i = 0; i < full_inst->Instruction.NumDstRegs; i++ ) {
1144 const struct tgsi_full_dst_register *reg = &full_inst->Dst[i];
1145 struct tgsi_dst_register *dst_register;
1146
1147 if( maxsize <= size )
1148 return 0;
1149 dst_register = (struct tgsi_dst_register *) &tokens[size];
1150 size++;
1151
1152 *dst_register = tgsi_build_dst_register(
1153 reg->Register.File,
1154 reg->Register.WriteMask,
1155 reg->Register.Indirect,
1156 reg->Register.Dimension,
1157 reg->Register.Index,
1158 instruction,
1159 header );
1160
1161 if( reg->Register.Indirect ) {
1162 struct tgsi_ind_register *ind;
1163
1164 if( maxsize <= size )
1165 return 0;
1166 ind = (struct tgsi_ind_register *) &tokens[size];
1167 size++;
1168
1169 *ind = tgsi_build_ind_register(
1170 reg->Indirect.File,
1171 reg->Indirect.Swizzle,
1172 reg->Indirect.Index,
1173 reg->Indirect.ArrayID,
1174 instruction,
1175 header );
1176 }
1177
1178 if( reg->Register.Dimension ) {
1179 struct tgsi_dimension *dim;
1180
1181 assert( !reg->Dimension.Dimension );
1182
1183 if( maxsize <= size )
1184 return 0;
1185 dim = (struct tgsi_dimension *) &tokens[size];
1186 size++;
1187
1188 *dim = tgsi_build_dimension(
1189 reg->Dimension.Indirect,
1190 reg->Dimension.Index,
1191 instruction,
1192 header );
1193
1194 if( reg->Dimension.Indirect ) {
1195 struct tgsi_ind_register *ind;
1196
1197 if( maxsize <= size )
1198 return 0;
1199 ind = (struct tgsi_ind_register *) &tokens[size];
1200 size++;
1201
1202 *ind = tgsi_build_ind_register(
1203 reg->DimIndirect.File,
1204 reg->DimIndirect.Swizzle,
1205 reg->DimIndirect.Index,
1206 reg->DimIndirect.ArrayID,
1207 instruction,
1208 header );
1209 }
1210 }
1211 }
1212
1213 for( i = 0; i < full_inst->Instruction.NumSrcRegs; i++ ) {
1214 const struct tgsi_full_src_register *reg = &full_inst->Src[i];
1215 struct tgsi_src_register *src_register;
1216
1217 if( maxsize <= size )
1218 return 0;
1219 src_register = (struct tgsi_src_register *) &tokens[size];
1220 size++;
1221
1222 *src_register = tgsi_build_src_register(
1223 reg->Register.File,
1224 reg->Register.SwizzleX,
1225 reg->Register.SwizzleY,
1226 reg->Register.SwizzleZ,
1227 reg->Register.SwizzleW,
1228 reg->Register.Negate,
1229 reg->Register.Absolute,
1230 reg->Register.Indirect,
1231 reg->Register.Dimension,
1232 reg->Register.Index,
1233 instruction,
1234 header );
1235
1236 if( reg->Register.Indirect ) {
1237 struct tgsi_ind_register *ind;
1238
1239 if( maxsize <= size )
1240 return 0;
1241 ind = (struct tgsi_ind_register *) &tokens[size];
1242 size++;
1243
1244 *ind = tgsi_build_ind_register(
1245 reg->Indirect.File,
1246 reg->Indirect.Swizzle,
1247 reg->Indirect.Index,
1248 reg->Indirect.ArrayID,
1249 instruction,
1250 header );
1251 }
1252
1253 if( reg->Register.Dimension ) {
1254 struct tgsi_dimension *dim;
1255
1256 assert( !reg->Dimension.Dimension );
1257
1258 if( maxsize <= size )
1259 return 0;
1260 dim = (struct tgsi_dimension *) &tokens[size];
1261 size++;
1262
1263 *dim = tgsi_build_dimension(
1264 reg->Dimension.Indirect,
1265 reg->Dimension.Index,
1266 instruction,
1267 header );
1268
1269 if( reg->Dimension.Indirect ) {
1270 struct tgsi_ind_register *ind;
1271
1272 if( maxsize <= size )
1273 return 0;
1274 ind = (struct tgsi_ind_register *) &tokens[size];
1275 size++;
1276
1277 *ind = tgsi_build_ind_register(
1278 reg->DimIndirect.File,
1279 reg->DimIndirect.Swizzle,
1280 reg->DimIndirect.Index,
1281 reg->DimIndirect.ArrayID,
1282 instruction,
1283 header );
1284 }
1285 }
1286 }
1287
1288 return size;
1289 }
1290
1291 static struct tgsi_property
tgsi_default_property(void)1292 tgsi_default_property( void )
1293 {
1294 struct tgsi_property property;
1295
1296 property.Type = TGSI_TOKEN_TYPE_PROPERTY;
1297 property.NrTokens = 1;
1298 property.PropertyName = TGSI_PROPERTY_GS_INPUT_PRIM;
1299 property.Padding = 0;
1300
1301 return property;
1302 }
1303
1304 static struct tgsi_property
tgsi_build_property(unsigned property_name,struct tgsi_header * header)1305 tgsi_build_property(unsigned property_name,
1306 struct tgsi_header *header)
1307 {
1308 struct tgsi_property property;
1309
1310 property = tgsi_default_property();
1311 property.PropertyName = property_name;
1312
1313 header_bodysize_grow( header );
1314
1315 return property;
1316 }
1317
1318
1319 struct tgsi_full_property
tgsi_default_full_property(void)1320 tgsi_default_full_property( void )
1321 {
1322 struct tgsi_full_property full_property;
1323
1324 full_property.Property = tgsi_default_property();
1325 memset(full_property.u, 0,
1326 sizeof(struct tgsi_property_data) * 8);
1327
1328 return full_property;
1329 }
1330
1331 static void
property_grow(struct tgsi_property * property,struct tgsi_header * header)1332 property_grow(
1333 struct tgsi_property *property,
1334 struct tgsi_header *header )
1335 {
1336 assert( property->NrTokens < 0xFF );
1337
1338 property->NrTokens++;
1339
1340 header_bodysize_grow( header );
1341 }
1342
1343 static struct tgsi_property_data
tgsi_build_property_data(unsigned value,struct tgsi_property * property,struct tgsi_header * header)1344 tgsi_build_property_data(
1345 unsigned value,
1346 struct tgsi_property *property,
1347 struct tgsi_header *header )
1348 {
1349 struct tgsi_property_data property_data;
1350
1351 property_data.Data = value;
1352
1353 property_grow( property, header );
1354
1355 return property_data;
1356 }
1357
1358 unsigned
tgsi_build_full_property(const struct tgsi_full_property * full_prop,struct tgsi_token * tokens,struct tgsi_header * header,unsigned maxsize)1359 tgsi_build_full_property(
1360 const struct tgsi_full_property *full_prop,
1361 struct tgsi_token *tokens,
1362 struct tgsi_header *header,
1363 unsigned maxsize )
1364 {
1365 unsigned size = 0;
1366 int i;
1367 struct tgsi_property *property;
1368
1369 if( maxsize <= size )
1370 return 0;
1371 property = (struct tgsi_property *) &tokens[size];
1372 size++;
1373
1374 *property = tgsi_build_property(
1375 full_prop->Property.PropertyName,
1376 header );
1377
1378 assert( full_prop->Property.NrTokens <= 8 + 1 );
1379
1380 for( i = 0; i < full_prop->Property.NrTokens - 1; i++ ) {
1381 struct tgsi_property_data *data;
1382
1383 if( maxsize <= size )
1384 return 0;
1385 data = (struct tgsi_property_data *) &tokens[size];
1386 size++;
1387
1388 *data = tgsi_build_property_data(
1389 full_prop->u[i].Data,
1390 property,
1391 header );
1392 }
1393
1394 return size;
1395 }
1396