a82ad146dfd16f87b03e5b590177777612b568d4
[mesa.git] / src / gallium / drivers / i915 / i915_fpc_translate.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 <stdarg.h>
30
31 #include "i915_reg.h"
32 #include "i915_context.h"
33 #include "i915_fpc.h"
34
35 #include "pipe/p_shader_tokens.h"
36 #include "util/u_math.h"
37 #include "util/u_memory.h"
38 #include "util/u_string.h"
39 #include "tgsi/tgsi_parse.h"
40 #include "tgsi/tgsi_dump.h"
41
42 #include "draw/draw_vertex.h"
43
44 #ifndef M_PI
45 #define M_PI 3.14159265358979323846
46 #endif
47
48 /**
49 * Simple pass-through fragment shader to use when we don't have
50 * a real shader (or it fails to compile for some reason).
51 */
52 static unsigned passthrough[] =
53 {
54 _3DSTATE_PIXEL_SHADER_PROGRAM | ((2*3)-1),
55
56 /* declare input color:
57 */
58 (D0_DCL |
59 (REG_TYPE_T << D0_TYPE_SHIFT) |
60 (T_DIFFUSE << D0_NR_SHIFT) |
61 D0_CHANNEL_ALL),
62 0,
63 0,
64
65 /* move to output color:
66 */
67 (A0_MOV |
68 (REG_TYPE_OC << A0_DEST_TYPE_SHIFT) |
69 A0_DEST_CHANNEL_ALL |
70 (REG_TYPE_T << A0_SRC0_TYPE_SHIFT) |
71 (T_DIFFUSE << A0_SRC0_NR_SHIFT)),
72 0x01230000, /* .xyzw */
73 0
74 };
75
76
77 /* 1, -1/3!, 1/5!, -1/7! */
78 static const float scs_sin_constants[4] = { 1.0,
79 -1.0f / (3 * 2 * 1),
80 1.0f / (5 * 4 * 3 * 2 * 1),
81 -1.0f / (7 * 6 * 5 * 4 * 3 * 2 * 1)
82 };
83
84 /* 1, -1/2!, 1/4!, -1/6! */
85 static const float scs_cos_constants[4] = { 1.0,
86 -1.0f / (2 * 1),
87 1.0f / (4 * 3 * 2 * 1),
88 -1.0f / (6 * 5 * 4 * 3 * 2 * 1)
89 };
90
91 /* 2*pi, -(2*pi)^3/3!, (2*pi)^5/5!, -(2*pi)^7/7! */
92 static const float sin_constants[4] = { 2.0 * M_PI,
93 -8.0f * M_PI * M_PI * M_PI / (3 * 2 * 1),
94 32.0f * M_PI * M_PI * M_PI * M_PI * M_PI / (5 * 4 * 3 * 2 * 1),
95 -128.0f * M_PI * M_PI * M_PI * M_PI * M_PI * M_PI * M_PI / (7 * 6 * 5 * 4 * 3 * 2 * 1)
96 };
97
98 /* 1, -(2*pi)^2/2!, (2*pi)^4/4!, -(2*pi)^6/6! */
99 static const float cos_constants[4] = { 1.0,
100 -4.0f * M_PI * M_PI / (2 * 1),
101 16.0f * M_PI * M_PI * M_PI * M_PI / (4 * 3 * 2 * 1),
102 -64.0f * M_PI * M_PI * M_PI * M_PI * M_PI * M_PI / (6 * 5 * 4 * 3 * 2 * 1)
103 };
104
105
106
107 /**
108 * component-wise negation of ureg
109 */
110 static INLINE int
111 negate(int reg, int x, int y, int z, int w)
112 {
113 /* Another neat thing about the UREG representation */
114 return reg ^ (((x & 1) << UREG_CHANNEL_X_NEGATE_SHIFT) |
115 ((y & 1) << UREG_CHANNEL_Y_NEGATE_SHIFT) |
116 ((z & 1) << UREG_CHANNEL_Z_NEGATE_SHIFT) |
117 ((w & 1) << UREG_CHANNEL_W_NEGATE_SHIFT));
118 }
119
120
121 /**
122 * In the event of a translation failure, we'll generate a simple color
123 * pass-through program.
124 */
125 static void
126 i915_use_passthrough_shader(struct i915_fragment_shader *fs)
127 {
128 fs->program = (uint *) MALLOC(sizeof(passthrough));
129 if (fs->program) {
130 memcpy(fs->program, passthrough, sizeof(passthrough));
131 fs->program_len = Elements(passthrough);
132 }
133 fs->num_constants = 0;
134 }
135
136
137 void
138 i915_program_error(struct i915_fp_compile *p, const char *msg, ...)
139 {
140 va_list args;
141 char buffer[1024];
142
143 debug_printf("i915_program_error: ");
144 va_start( args, msg );
145 util_vsnprintf( buffer, sizeof(buffer), msg, args );
146 va_end( args );
147 debug_printf("%s", buffer);
148 debug_printf("\n");
149
150 p->error = 1;
151 }
152
153 static uint get_mapping(struct i915_fragment_shader* fs, int unit)
154 {
155 int i;
156 for (i = 0; i < I915_TEX_UNITS; i++)
157 {
158 if (fs->generic_mapping[i] == -1) {
159 fs->generic_mapping[i] = unit;
160 return i;
161 }
162 if (fs->generic_mapping[i] == unit)
163 return i;
164 }
165 debug_printf("Exceeded max generics\n");
166 return 0;
167 }
168
169 /**
170 * Construct a ureg for the given source register. Will emit
171 * constants, apply swizzling and negation as needed.
172 */
173 static uint
174 src_vector(struct i915_fp_compile *p,
175 const struct i915_full_src_register *source,
176 struct i915_fragment_shader* fs)
177 {
178 uint index = source->Register.Index;
179 uint src = 0, sem_name, sem_ind;
180
181 switch (source->Register.File) {
182 case TGSI_FILE_TEMPORARY:
183 if (source->Register.Index >= I915_MAX_TEMPORARY) {
184 i915_program_error(p, "Exceeded max temporary reg");
185 return 0;
186 }
187 src = UREG(REG_TYPE_R, index);
188 break;
189 case TGSI_FILE_INPUT:
190 /* XXX: Packing COL1, FOGC into a single attribute works for
191 * texenv programs, but will fail for real fragment programs
192 * that use these attributes and expect them to be a full 4
193 * components wide. Could use a texcoord to pass these
194 * attributes if necessary, but that won't work in the general
195 * case.
196 *
197 * We also use a texture coordinate to pass wpos when possible.
198 */
199
200 sem_name = p->shader->info.input_semantic_name[index];
201 sem_ind = p->shader->info.input_semantic_index[index];
202
203 switch (sem_name) {
204 case TGSI_SEMANTIC_POSITION:
205 {
206 /* for fragcoord */
207 int real_tex_unit = get_mapping(fs, I915_SEMANTIC_POS);
208 src = i915_emit_decl(p, REG_TYPE_T, T_TEX0 + real_tex_unit, D0_CHANNEL_ALL);
209 break;
210 }
211 case TGSI_SEMANTIC_COLOR:
212 if (sem_ind == 0) {
213 src = i915_emit_decl(p, REG_TYPE_T, T_DIFFUSE, D0_CHANNEL_ALL);
214 }
215 else {
216 /* secondary color */
217 assert(sem_ind == 1);
218 src = i915_emit_decl(p, REG_TYPE_T, T_SPECULAR, D0_CHANNEL_XYZ);
219 src = swizzle(src, X, Y, Z, ONE);
220 }
221 break;
222 case TGSI_SEMANTIC_FOG:
223 src = i915_emit_decl(p, REG_TYPE_T, T_FOG_W, D0_CHANNEL_W);
224 src = swizzle(src, W, W, W, W);
225 break;
226 case TGSI_SEMANTIC_GENERIC:
227 {
228 int real_tex_unit = get_mapping(fs, sem_ind);
229 src = i915_emit_decl(p, REG_TYPE_T, T_TEX0 + real_tex_unit, D0_CHANNEL_ALL);
230 break;
231 }
232 case TGSI_SEMANTIC_FACE:
233 {
234 /* for back/front faces */
235 int real_tex_unit = get_mapping(fs, I915_SEMANTIC_FACE);
236 src = i915_emit_decl(p, REG_TYPE_T, T_TEX0 + real_tex_unit, D0_CHANNEL_X);
237 break;
238 }
239 default:
240 i915_program_error(p, "Bad source->Index");
241 return 0;
242 }
243 break;
244
245 case TGSI_FILE_IMMEDIATE:
246 assert(index < p->num_immediates);
247 index = p->immediates_map[index];
248 /* fall-through */
249 case TGSI_FILE_CONSTANT:
250 src = UREG(REG_TYPE_CONST, index);
251 break;
252
253 default:
254 i915_program_error(p, "Bad source->File");
255 return 0;
256 }
257
258 src = swizzle(src,
259 source->Register.SwizzleX,
260 source->Register.SwizzleY,
261 source->Register.SwizzleZ,
262 source->Register.SwizzleW);
263
264 /* There's both negate-all-components and per-component negation.
265 * Try to handle both here.
266 */
267 {
268 int n = source->Register.Negate;
269 src = negate(src, n, n, n, n);
270 }
271
272 /* no abs() */
273 #if 0
274 /* XXX assertions disabled to allow arbfplight.c to run */
275 /* XXX enable these assertions, or fix things */
276 assert(!source->Register.Absolute);
277 #endif
278 if (source->Register.Absolute)
279 debug_printf("Unhandled absolute value\n");
280
281 return src;
282 }
283
284
285 /**
286 * Construct a ureg for a destination register.
287 */
288 static uint
289 get_result_vector(struct i915_fp_compile *p,
290 const struct i915_full_dst_register *dest)
291 {
292 switch (dest->Register.File) {
293 case TGSI_FILE_OUTPUT:
294 {
295 uint sem_name = p->shader->info.output_semantic_name[dest->Register.Index];
296 switch (sem_name) {
297 case TGSI_SEMANTIC_POSITION:
298 return UREG(REG_TYPE_OD, 0);
299 case TGSI_SEMANTIC_COLOR:
300 return UREG(REG_TYPE_OC, 0);
301 default:
302 i915_program_error(p, "Bad inst->DstReg.Index/semantics");
303 return 0;
304 }
305 }
306 case TGSI_FILE_TEMPORARY:
307 return UREG(REG_TYPE_R, dest->Register.Index);
308 default:
309 i915_program_error(p, "Bad inst->DstReg.File");
310 return 0;
311 }
312 }
313
314
315 /**
316 * Compute flags for saturation and writemask.
317 */
318 static uint
319 get_result_flags(const struct i915_full_instruction *inst)
320 {
321 const uint writeMask
322 = inst->Dst[0].Register.WriteMask;
323 uint flags = 0x0;
324
325 if (inst->Instruction.Saturate == TGSI_SAT_ZERO_ONE)
326 flags |= A0_DEST_SATURATE;
327
328 if (writeMask & TGSI_WRITEMASK_X)
329 flags |= A0_DEST_CHANNEL_X;
330 if (writeMask & TGSI_WRITEMASK_Y)
331 flags |= A0_DEST_CHANNEL_Y;
332 if (writeMask & TGSI_WRITEMASK_Z)
333 flags |= A0_DEST_CHANNEL_Z;
334 if (writeMask & TGSI_WRITEMASK_W)
335 flags |= A0_DEST_CHANNEL_W;
336
337 return flags;
338 }
339
340
341 /**
342 * Convert TGSI_TEXTURE_x token to DO_SAMPLE_TYPE_x token
343 */
344 static uint
345 translate_tex_src_target(struct i915_fp_compile *p, uint tex)
346 {
347 switch (tex) {
348 case TGSI_TEXTURE_SHADOW1D:
349 /* fall-through */
350 case TGSI_TEXTURE_1D:
351 return D0_SAMPLE_TYPE_2D;
352
353 case TGSI_TEXTURE_SHADOW2D:
354 /* fall-through */
355 case TGSI_TEXTURE_2D:
356 return D0_SAMPLE_TYPE_2D;
357
358 case TGSI_TEXTURE_SHADOWRECT:
359 /* fall-through */
360 case TGSI_TEXTURE_RECT:
361 return D0_SAMPLE_TYPE_2D;
362
363 case TGSI_TEXTURE_3D:
364 return D0_SAMPLE_TYPE_VOLUME;
365
366 case TGSI_TEXTURE_CUBE:
367 return D0_SAMPLE_TYPE_CUBE;
368
369 default:
370 i915_program_error(p, "TexSrc type");
371 return 0;
372 }
373 }
374
375 /**
376 * Return the number of coords needed to access a given TGSI_TEXTURE_*
377 */
378 static uint
379 texture_num_coords(struct i915_fp_compile *p, uint tex)
380 {
381 switch (tex) {
382 case TGSI_TEXTURE_SHADOW1D:
383 case TGSI_TEXTURE_1D:
384 return 1;
385
386 case TGSI_TEXTURE_SHADOW2D:
387 case TGSI_TEXTURE_2D:
388 case TGSI_TEXTURE_SHADOWRECT:
389 case TGSI_TEXTURE_RECT:
390 return 2;
391
392 case TGSI_TEXTURE_3D:
393 case TGSI_TEXTURE_CUBE:
394 return 3;
395
396 default:
397 i915_program_error(p, "Num coords");
398 return 2;
399 }
400 }
401
402
403 /**
404 * Generate texel lookup instruction.
405 */
406 static void
407 emit_tex(struct i915_fp_compile *p,
408 const struct i915_full_instruction *inst,
409 uint opcode,
410 struct i915_fragment_shader* fs)
411 {
412 uint texture = inst->Texture.Texture;
413 uint unit = inst->Src[1].Register.Index;
414 uint tex = translate_tex_src_target( p, texture );
415 uint sampler = i915_emit_decl(p, REG_TYPE_S, unit, tex);
416 uint coord = src_vector( p, &inst->Src[0], fs);
417
418 i915_emit_texld( p,
419 get_result_vector( p, &inst->Dst[0] ),
420 get_result_flags( inst ),
421 sampler,
422 coord,
423 opcode,
424 texture_num_coords(p, texture) );
425 }
426
427
428 /**
429 * Generate a simple arithmetic instruction
430 * \param opcode the i915 opcode
431 * \param numArgs the number of input/src arguments
432 */
433 static void
434 emit_simple_arith(struct i915_fp_compile *p,
435 const struct i915_full_instruction *inst,
436 uint opcode, uint numArgs,
437 struct i915_fragment_shader* fs)
438 {
439 uint arg1, arg2, arg3;
440
441 assert(numArgs <= 3);
442
443 arg1 = (numArgs < 1) ? 0 : src_vector( p, &inst->Src[0], fs );
444 arg2 = (numArgs < 2) ? 0 : src_vector( p, &inst->Src[1], fs );
445 arg3 = (numArgs < 3) ? 0 : src_vector( p, &inst->Src[2], fs );
446
447 i915_emit_arith( p,
448 opcode,
449 get_result_vector( p, &inst->Dst[0]),
450 get_result_flags( inst ), 0,
451 arg1,
452 arg2,
453 arg3 );
454 }
455
456
457 /** As above, but swap the first two src regs */
458 static void
459 emit_simple_arith_swap2(struct i915_fp_compile *p,
460 const struct i915_full_instruction *inst,
461 uint opcode, uint numArgs,
462 struct i915_fragment_shader* fs)
463 {
464 struct i915_full_instruction inst2;
465
466 assert(numArgs == 2);
467
468 /* transpose first two registers */
469 inst2 = *inst;
470 inst2.Src[0] = inst->Src[1];
471 inst2.Src[1] = inst->Src[0];
472
473 emit_simple_arith(p, &inst2, opcode, numArgs, fs);
474 }
475
476 /*
477 * Translate TGSI instruction to i915 instruction.
478 *
479 * Possible concerns:
480 *
481 * DDX, DDY -- return 0
482 * SIN, COS -- could use another taylor step?
483 * LIT -- results seem a little different to sw mesa
484 * LOG -- different to mesa on negative numbers, but this is conformant.
485 */
486 static void
487 i915_translate_instruction(struct i915_fp_compile *p,
488 const struct i915_full_instruction *inst,
489 struct i915_fragment_shader *fs)
490 {
491 uint writemask;
492 uint src0, src1, src2, flags;
493 uint tmp = 0;
494
495 switch (inst->Instruction.Opcode) {
496 case TGSI_OPCODE_ABS:
497 src0 = src_vector(p, &inst->Src[0], fs);
498 i915_emit_arith(p,
499 A0_MAX,
500 get_result_vector(p, &inst->Dst[0]),
501 get_result_flags(inst), 0,
502 src0, negate(src0, 1, 1, 1, 1), 0);
503 break;
504
505 case TGSI_OPCODE_ADD:
506 emit_simple_arith(p, inst, A0_ADD, 2, fs);
507 break;
508
509 case TGSI_OPCODE_CMP:
510 src0 = src_vector(p, &inst->Src[0], fs);
511 src1 = src_vector(p, &inst->Src[1], fs);
512 src2 = src_vector(p, &inst->Src[2], fs);
513 i915_emit_arith(p, A0_CMP,
514 get_result_vector(p, &inst->Dst[0]),
515 get_result_flags(inst),
516 0, src0, src2, src1); /* NOTE: order of src2, src1 */
517 break;
518
519 case TGSI_OPCODE_COS:
520 src0 = src_vector(p, &inst->Src[0], fs);
521 tmp = i915_get_utemp(p);
522
523 i915_emit_arith(p,
524 A0_MUL,
525 tmp, A0_DEST_CHANNEL_X, 0,
526 src0, i915_emit_const1f(p, 1.0f / (float) (M_PI * 2.0)), 0);
527
528 i915_emit_arith(p, A0_MOD, tmp, A0_DEST_CHANNEL_X, 0, tmp, 0, 0);
529
530 /*
531 * t0.xy = MUL x.xx11, x.x1111 ; x^2, x, 1, 1
532 * t0 = MUL t0.xyxy t0.xx11 ; x^4, x^3, x^2, 1
533 * t0 = MUL t0.xxz1 t0.z111 ; x^6 x^4 x^2 1
534 * result = DP4 t0, cos_constants
535 */
536 i915_emit_arith(p,
537 A0_MUL,
538 tmp, A0_DEST_CHANNEL_XY, 0,
539 swizzle(tmp, X, X, ONE, ONE),
540 swizzle(tmp, X, ONE, ONE, ONE), 0);
541
542 i915_emit_arith(p,
543 A0_MUL,
544 tmp, A0_DEST_CHANNEL_XYZ, 0,
545 swizzle(tmp, X, Y, X, ONE),
546 swizzle(tmp, X, X, ONE, ONE), 0);
547
548 i915_emit_arith(p,
549 A0_MUL,
550 tmp, A0_DEST_CHANNEL_XYZ, 0,
551 swizzle(tmp, X, X, Z, ONE),
552 swizzle(tmp, Z, ONE, ONE, ONE), 0);
553
554 i915_emit_arith(p,
555 A0_DP4,
556 get_result_vector(p, &inst->Dst[0]),
557 get_result_flags(inst), 0,
558 swizzle(tmp, ONE, Z, Y, X),
559 i915_emit_const4fv(p, cos_constants), 0);
560 break;
561
562 case TGSI_OPCODE_DDX:
563 case TGSI_OPCODE_DDY:
564 /* XXX We just output 0 here */
565 debug_printf("Punting DDX/DDX\n");
566 src0 = get_result_vector(p, &inst->Dst[0]);
567 i915_emit_arith(p,
568 A0_MOV,
569 get_result_vector(p, &inst->Dst[0]),
570 get_result_flags(inst), 0,
571 swizzle(src0, ZERO, ZERO, ZERO, ZERO), 0, 0);
572 break;
573
574 case TGSI_OPCODE_DP2:
575 src0 = src_vector(p, &inst->Src[0], fs);
576 src1 = src_vector(p, &inst->Src[1], fs);
577
578 i915_emit_arith(p,
579 A0_DP3,
580 get_result_vector(p, &inst->Dst[0]),
581 get_result_flags(inst), 0,
582 swizzle(src0, X, Y, ZERO, ZERO), src1, 0);
583 break;
584
585 case TGSI_OPCODE_DP3:
586 emit_simple_arith(p, inst, A0_DP3, 2, fs);
587 break;
588
589 case TGSI_OPCODE_DP4:
590 emit_simple_arith(p, inst, A0_DP4, 2, fs);
591 break;
592
593 case TGSI_OPCODE_DPH:
594 src0 = src_vector(p, &inst->Src[0], fs);
595 src1 = src_vector(p, &inst->Src[1], fs);
596
597 i915_emit_arith(p,
598 A0_DP4,
599 get_result_vector(p, &inst->Dst[0]),
600 get_result_flags(inst), 0,
601 swizzle(src0, X, Y, Z, ONE), src1, 0);
602 break;
603
604 case TGSI_OPCODE_DST:
605 src0 = src_vector(p, &inst->Src[0], fs);
606 src1 = src_vector(p, &inst->Src[1], fs);
607
608 /* result[0] = 1 * 1;
609 * result[1] = a[1] * b[1];
610 * result[2] = a[2] * 1;
611 * result[3] = 1 * b[3];
612 */
613 i915_emit_arith(p,
614 A0_MUL,
615 get_result_vector(p, &inst->Dst[0]),
616 get_result_flags(inst), 0,
617 swizzle(src0, ONE, Y, Z, ONE),
618 swizzle(src1, ONE, Y, ONE, W), 0);
619 break;
620
621 case TGSI_OPCODE_END:
622 /* no-op */
623 break;
624
625 case TGSI_OPCODE_EX2:
626 src0 = src_vector(p, &inst->Src[0], fs);
627
628 i915_emit_arith(p,
629 A0_EXP,
630 get_result_vector(p, &inst->Dst[0]),
631 get_result_flags(inst), 0,
632 swizzle(src0, X, X, X, X), 0, 0);
633 break;
634
635 case TGSI_OPCODE_FLR:
636 emit_simple_arith(p, inst, A0_FLR, 1, fs);
637 break;
638
639 case TGSI_OPCODE_FRC:
640 emit_simple_arith(p, inst, A0_FRC, 1, fs);
641 break;
642
643 case TGSI_OPCODE_KIL:
644 /* kill if src[0].x < 0 || src[0].y < 0 ... */
645 src0 = src_vector(p, &inst->Src[0], fs);
646 tmp = i915_get_utemp(p);
647
648 i915_emit_texld(p,
649 tmp, /* dest reg: a dummy reg */
650 A0_DEST_CHANNEL_ALL, /* dest writemask */
651 0, /* sampler */
652 src0, /* coord*/
653 T0_TEXKILL, /* opcode */
654 1); /* num_coord */
655 break;
656
657 case TGSI_OPCODE_KILP:
658 /* We emit an unconditional kill; we may want to revisit
659 * if we ever implement conditionals.
660 */
661 tmp = i915_get_utemp(p);
662
663 i915_emit_texld(p,
664 tmp, /* dest reg: a dummy reg */
665 A0_DEST_CHANNEL_ALL, /* dest writemask */
666 0, /* sampler */
667 negate(swizzle(0, ONE, ONE, ONE, ONE), 1, 1, 1, 1), /* coord */
668 T0_TEXKILL, /* opcode */
669 1); /* num_coord */
670 break;
671
672 case TGSI_OPCODE_LG2:
673 src0 = src_vector(p, &inst->Src[0], fs);
674
675 i915_emit_arith(p,
676 A0_LOG,
677 get_result_vector(p, &inst->Dst[0]),
678 get_result_flags(inst), 0,
679 swizzle(src0, X, X, X, X), 0, 0);
680 break;
681
682 case TGSI_OPCODE_LIT:
683 src0 = src_vector(p, &inst->Src[0], fs);
684 tmp = i915_get_utemp(p);
685
686 /* tmp = max( a.xyzw, a.00zw )
687 * XXX: Clamp tmp.w to -128..128
688 * tmp.y = log(tmp.y)
689 * tmp.y = tmp.w * tmp.y
690 * tmp.y = exp(tmp.y)
691 * result = cmp (a.11-x1, a.1x01, a.1xy1 )
692 */
693 i915_emit_arith(p, A0_MAX, tmp, A0_DEST_CHANNEL_ALL, 0,
694 src0, swizzle(src0, ZERO, ZERO, Z, W), 0);
695
696 i915_emit_arith(p, A0_LOG, tmp, A0_DEST_CHANNEL_Y, 0,
697 swizzle(tmp, Y, Y, Y, Y), 0, 0);
698
699 i915_emit_arith(p, A0_MUL, tmp, A0_DEST_CHANNEL_Y, 0,
700 swizzle(tmp, ZERO, Y, ZERO, ZERO),
701 swizzle(tmp, ZERO, W, ZERO, ZERO), 0);
702
703 i915_emit_arith(p, A0_EXP, tmp, A0_DEST_CHANNEL_Y, 0,
704 swizzle(tmp, Y, Y, Y, Y), 0, 0);
705
706 i915_emit_arith(p, A0_CMP,
707 get_result_vector(p, &inst->Dst[0]),
708 get_result_flags(inst), 0,
709 negate(swizzle(tmp, ONE, ONE, X, ONE), 0, 0, 1, 0),
710 swizzle(tmp, ONE, X, ZERO, ONE),
711 swizzle(tmp, ONE, X, Y, ONE));
712
713 break;
714
715 case TGSI_OPCODE_LRP:
716 src0 = src_vector(p, &inst->Src[0], fs);
717 src1 = src_vector(p, &inst->Src[1], fs);
718 src2 = src_vector(p, &inst->Src[2], fs);
719 flags = get_result_flags(inst);
720 tmp = i915_get_utemp(p);
721
722 /* b*a + c*(1-a)
723 *
724 * b*a + c - ca
725 *
726 * tmp = b*a + c,
727 * result = (-c)*a + tmp
728 */
729 i915_emit_arith(p, A0_MAD, tmp,
730 flags & A0_DEST_CHANNEL_ALL, 0, src1, src0, src2);
731
732 i915_emit_arith(p, A0_MAD,
733 get_result_vector(p, &inst->Dst[0]),
734 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp);
735 break;
736
737 case TGSI_OPCODE_MAD:
738 emit_simple_arith(p, inst, A0_MAD, 3, fs);
739 break;
740
741 case TGSI_OPCODE_MAX:
742 emit_simple_arith(p, inst, A0_MAX, 2, fs);
743 break;
744
745 case TGSI_OPCODE_MIN:
746 src0 = src_vector(p, &inst->Src[0], fs);
747 src1 = src_vector(p, &inst->Src[1], fs);
748 tmp = i915_get_utemp(p);
749 flags = get_result_flags(inst);
750
751 i915_emit_arith(p,
752 A0_MAX,
753 tmp, flags & A0_DEST_CHANNEL_ALL, 0,
754 negate(src0, 1, 1, 1, 1),
755 negate(src1, 1, 1, 1, 1), 0);
756
757 i915_emit_arith(p,
758 A0_MOV,
759 get_result_vector(p, &inst->Dst[0]),
760 flags, 0, negate(tmp, 1, 1, 1, 1), 0, 0);
761 break;
762
763 case TGSI_OPCODE_MOV:
764 emit_simple_arith(p, inst, A0_MOV, 1, fs);
765 break;
766
767 case TGSI_OPCODE_MUL:
768 emit_simple_arith(p, inst, A0_MUL, 2, fs);
769 break;
770
771 case TGSI_OPCODE_NOP:
772 break;
773
774 case TGSI_OPCODE_POW:
775 src0 = src_vector(p, &inst->Src[0], fs);
776 src1 = src_vector(p, &inst->Src[1], fs);
777 tmp = i915_get_utemp(p);
778 flags = get_result_flags(inst);
779
780 /* XXX: masking on intermediate values, here and elsewhere.
781 */
782 i915_emit_arith(p,
783 A0_LOG,
784 tmp, A0_DEST_CHANNEL_X, 0,
785 swizzle(src0, X, X, X, X), 0, 0);
786
787 i915_emit_arith(p, A0_MUL, tmp, A0_DEST_CHANNEL_X, 0, tmp, src1, 0);
788
789 i915_emit_arith(p,
790 A0_EXP,
791 get_result_vector(p, &inst->Dst[0]),
792 flags, 0, swizzle(tmp, X, X, X, X), 0, 0);
793 break;
794
795 case TGSI_OPCODE_RET:
796 /* XXX: no-op? */
797 break;
798
799 case TGSI_OPCODE_RCP:
800 src0 = src_vector(p, &inst->Src[0], fs);
801
802 i915_emit_arith(p,
803 A0_RCP,
804 get_result_vector(p, &inst->Dst[0]),
805 get_result_flags(inst), 0,
806 swizzle(src0, X, X, X, X), 0, 0);
807 break;
808
809 case TGSI_OPCODE_RSQ:
810 src0 = src_vector(p, &inst->Src[0], fs);
811
812 i915_emit_arith(p,
813 A0_RSQ,
814 get_result_vector(p, &inst->Dst[0]),
815 get_result_flags(inst), 0,
816 swizzle(src0, X, X, X, X), 0, 0);
817 break;
818
819 case TGSI_OPCODE_SCS:
820 src0 = src_vector(p, &inst->Src[0], fs);
821 tmp = i915_get_utemp(p);
822
823 /*
824 * t0.xy = MUL x.xx11, x.x1111 ; x^2, x, 1, 1
825 * t0 = MUL t0.xyxy t0.xx11 ; x^4, x^3, x^2, x
826 * t1 = MUL t0.xyyw t0.yz11 ; x^7 x^5 x^3 x
827 * scs.x = DP4 t1, scs_sin_constants
828 * t1 = MUL t0.xxz1 t0.z111 ; x^6 x^4 x^2 1
829 * scs.y = DP4 t1, scs_cos_constants
830 */
831 i915_emit_arith(p,
832 A0_MUL,
833 tmp, A0_DEST_CHANNEL_XY, 0,
834 swizzle(src0, X, X, ONE, ONE),
835 swizzle(src0, X, ONE, ONE, ONE), 0);
836
837 i915_emit_arith(p,
838 A0_MUL,
839 tmp, A0_DEST_CHANNEL_ALL, 0,
840 swizzle(tmp, X, Y, X, Y),
841 swizzle(tmp, X, X, ONE, ONE), 0);
842
843 writemask = inst->Dst[0].Register.WriteMask;
844
845 if (writemask & TGSI_WRITEMASK_Y) {
846 uint tmp1;
847
848 if (writemask & TGSI_WRITEMASK_X)
849 tmp1 = i915_get_utemp(p);
850 else
851 tmp1 = tmp;
852
853 i915_emit_arith(p,
854 A0_MUL,
855 tmp1, A0_DEST_CHANNEL_ALL, 0,
856 swizzle(tmp, X, Y, Y, W),
857 swizzle(tmp, X, Z, ONE, ONE), 0);
858
859 i915_emit_arith(p,
860 A0_DP4,
861 get_result_vector(p, &inst->Dst[0]),
862 A0_DEST_CHANNEL_Y, 0,
863 swizzle(tmp1, W, Z, Y, X),
864 i915_emit_const4fv(p, scs_sin_constants), 0);
865 }
866
867 if (writemask & TGSI_WRITEMASK_X) {
868 i915_emit_arith(p,
869 A0_MUL,
870 tmp, A0_DEST_CHANNEL_XYZ, 0,
871 swizzle(tmp, X, X, Z, ONE),
872 swizzle(tmp, Z, ONE, ONE, ONE), 0);
873
874 i915_emit_arith(p,
875 A0_DP4,
876 get_result_vector(p, &inst->Dst[0]),
877 A0_DEST_CHANNEL_X, 0,
878 swizzle(tmp, ONE, Z, Y, X),
879 i915_emit_const4fv(p, scs_cos_constants), 0);
880 }
881 break;
882
883 case TGSI_OPCODE_SEQ:
884 /* if we're both >= and <= then we're == */
885 src0 = src_vector(p, &inst->Src[0], fs);
886 src1 = src_vector(p, &inst->Src[1], fs);
887 tmp = i915_get_utemp(p);
888
889 i915_emit_arith(p,
890 A0_SGE,
891 tmp, A0_DEST_CHANNEL_ALL, 0,
892 src0,
893 src1, 0);
894
895 i915_emit_arith(p,
896 A0_SGE,
897 get_result_vector(p, &inst->Dst[0]),
898 A0_DEST_CHANNEL_ALL, 0,
899 src1,
900 src0, 0);
901
902 i915_emit_arith(p,
903 A0_MUL,
904 get_result_vector(p, &inst->Dst[0]),
905 A0_DEST_CHANNEL_ALL, 0,
906 get_result_vector(p, &inst->Dst[0]),
907 tmp, 0);
908
909 break;
910
911 case TGSI_OPCODE_SGE:
912 emit_simple_arith(p, inst, A0_SGE, 2, fs);
913 break;
914
915 case TGSI_OPCODE_SIN:
916 src0 = src_vector(p, &inst->Src[0], fs);
917 tmp = i915_get_utemp(p);
918
919 i915_emit_arith(p,
920 A0_MUL,
921 tmp, A0_DEST_CHANNEL_X, 0,
922 src0, i915_emit_const1f(p, 1.0f / (float) (M_PI * 2.0)), 0);
923
924 i915_emit_arith(p, A0_MOD, tmp, A0_DEST_CHANNEL_X, 0, tmp, 0, 0);
925
926 /*
927 * t0.xy = MUL x.xx11, x.x1111 ; x^2, x, 1, 1
928 * t0 = MUL t0.xyxy t0.xx11 ; x^4, x^3, x^2, x
929 * t1 = MUL t0.xyyw t0.yz11 ; x^7 x^5 x^3 x
930 * result = DP4 t1.wzyx, sin_constants
931 */
932 i915_emit_arith(p,
933 A0_MUL,
934 tmp, A0_DEST_CHANNEL_XY, 0,
935 swizzle(tmp, X, X, ONE, ONE),
936 swizzle(tmp, X, ONE, ONE, ONE), 0);
937
938 i915_emit_arith(p,
939 A0_MUL,
940 tmp, A0_DEST_CHANNEL_ALL, 0,
941 swizzle(tmp, X, Y, X, Y),
942 swizzle(tmp, X, X, ONE, ONE), 0);
943
944 i915_emit_arith(p,
945 A0_MUL,
946 tmp, A0_DEST_CHANNEL_ALL, 0,
947 swizzle(tmp, X, Y, Y, W),
948 swizzle(tmp, X, Z, ONE, ONE), 0);
949
950 i915_emit_arith(p,
951 A0_DP4,
952 get_result_vector(p, &inst->Dst[0]),
953 get_result_flags(inst), 0,
954 swizzle(tmp, W, Z, Y, X),
955 i915_emit_const4fv(p, sin_constants), 0);
956 break;
957
958 case TGSI_OPCODE_SLE:
959 /* like SGE, but swap reg0, reg1 */
960 emit_simple_arith_swap2(p, inst, A0_SGE, 2, fs);
961 break;
962
963 case TGSI_OPCODE_SLT:
964 emit_simple_arith(p, inst, A0_SLT, 2, fs);
965 break;
966
967 case TGSI_OPCODE_SGT:
968 /* like SLT, but swap reg0, reg1 */
969 emit_simple_arith_swap2(p, inst, A0_SLT, 2, fs);
970 break;
971
972 case TGSI_OPCODE_SNE:
973 /* if we're < or > then we're != */
974 src0 = src_vector(p, &inst->Src[0], fs);
975 src1 = src_vector(p, &inst->Src[1], fs);
976 tmp = i915_get_utemp(p);
977
978 i915_emit_arith(p,
979 A0_SLT,
980 tmp,
981 A0_DEST_CHANNEL_ALL, 0,
982 src0,
983 src1, 0);
984
985 i915_emit_arith(p,
986 A0_SLT,
987 get_result_vector(p, &inst->Dst[0]),
988 A0_DEST_CHANNEL_ALL, 0,
989 src1,
990 src0, 0);
991
992 i915_emit_arith(p,
993 A0_ADD,
994 get_result_vector(p, &inst->Dst[0]),
995 A0_DEST_CHANNEL_ALL, 0,
996 get_result_vector(p, &inst->Dst[0]),
997 tmp, 0);
998 break;
999
1000 case TGSI_OPCODE_SSG:
1001 /* compute (src>0) - (src<0) */
1002 src0 = src_vector(p, &inst->Src[0], fs);
1003 tmp = i915_get_utemp(p);
1004
1005 i915_emit_arith(p,
1006 A0_SLT,
1007 tmp,
1008 A0_DEST_CHANNEL_ALL, 0,
1009 src0,
1010 swizzle(src0, ZERO, ZERO, ZERO, ZERO), 0);
1011
1012 i915_emit_arith(p,
1013 A0_SLT,
1014 get_result_vector(p, &inst->Dst[0]),
1015 A0_DEST_CHANNEL_ALL, 0,
1016 swizzle(src0, ZERO, ZERO, ZERO, ZERO),
1017 src0, 0);
1018
1019 i915_emit_arith(p,
1020 A0_ADD,
1021 get_result_vector(p, &inst->Dst[0]),
1022 A0_DEST_CHANNEL_ALL, 0,
1023 get_result_vector(p, &inst->Dst[0]),
1024 negate(tmp, 1, 1, 1, 1), 0);
1025 break;
1026
1027 case TGSI_OPCODE_SUB:
1028 src0 = src_vector(p, &inst->Src[0], fs);
1029 src1 = src_vector(p, &inst->Src[1], fs);
1030
1031 i915_emit_arith(p,
1032 A0_ADD,
1033 get_result_vector(p, &inst->Dst[0]),
1034 get_result_flags(inst), 0,
1035 src0, negate(src1, 1, 1, 1, 1), 0);
1036 break;
1037
1038 case TGSI_OPCODE_TEX:
1039 emit_tex(p, inst, T0_TEXLD, fs);
1040 break;
1041
1042 case TGSI_OPCODE_TRUNC:
1043 emit_simple_arith(p, inst, A0_TRC, 1, fs);
1044 break;
1045
1046 case TGSI_OPCODE_TXB:
1047 emit_tex(p, inst, T0_TEXLDB, fs);
1048 break;
1049
1050 case TGSI_OPCODE_TXP:
1051 emit_tex(p, inst, T0_TEXLDP, fs);
1052 break;
1053
1054 case TGSI_OPCODE_XPD:
1055 /* Cross product:
1056 * result.x = src0.y * src1.z - src0.z * src1.y;
1057 * result.y = src0.z * src1.x - src0.x * src1.z;
1058 * result.z = src0.x * src1.y - src0.y * src1.x;
1059 * result.w = undef;
1060 */
1061 src0 = src_vector(p, &inst->Src[0], fs);
1062 src1 = src_vector(p, &inst->Src[1], fs);
1063 tmp = i915_get_utemp(p);
1064
1065 i915_emit_arith(p,
1066 A0_MUL,
1067 tmp, A0_DEST_CHANNEL_ALL, 0,
1068 swizzle(src0, Z, X, Y, ONE),
1069 swizzle(src1, Y, Z, X, ONE), 0);
1070
1071 i915_emit_arith(p,
1072 A0_MAD,
1073 get_result_vector(p, &inst->Dst[0]),
1074 get_result_flags(inst), 0,
1075 swizzle(src0, Y, Z, X, ONE),
1076 swizzle(src1, Z, X, Y, ONE),
1077 negate(tmp, 1, 1, 1, 0));
1078 break;
1079
1080 default:
1081 i915_program_error(p, "bad opcode %d", inst->Instruction.Opcode);
1082 p->error = 1;
1083 return;
1084 }
1085
1086 i915_release_utemps(p);
1087 }
1088
1089
1090 static void i915_translate_token(struct i915_fp_compile *p,
1091 const union i915_full_token* token,
1092 struct i915_fragment_shader *fs)
1093 {
1094 struct i915_fragment_shader *ifs = p->shader;
1095 switch( token->Token.Type ) {
1096 case TGSI_TOKEN_TYPE_PROPERTY:
1097 /*
1098 * We only support one cbuf, but we still need to ignore the property
1099 * correctly so we don't hit the assert at the end of the switch case.
1100 */
1101 assert(token->FullProperty.Property.PropertyName ==
1102 TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS);
1103 break;
1104
1105 case TGSI_TOKEN_TYPE_DECLARATION:
1106 if (token->FullDeclaration.Declaration.File
1107 == TGSI_FILE_CONSTANT) {
1108 uint i;
1109 for (i = token->FullDeclaration.Range.First;
1110 i <= token->FullDeclaration.Range.Last;
1111 i++) {
1112 assert(ifs->constant_flags[i] == 0x0);
1113 ifs->constant_flags[i] = I915_CONSTFLAG_USER;
1114 ifs->num_constants = MAX2(ifs->num_constants, i + 1);
1115 }
1116 }
1117 else if (token->FullDeclaration.Declaration.File
1118 == TGSI_FILE_TEMPORARY) {
1119 uint i;
1120 for (i = token->FullDeclaration.Range.First;
1121 i <= token->FullDeclaration.Range.Last;
1122 i++) {
1123 if (i >= I915_MAX_TEMPORARY)
1124 debug_printf("Too many temps (%d)\n",i);
1125 else
1126 /* XXX just use shader->info->file_mask[TGSI_FILE_TEMPORARY] */
1127 p->temp_flag |= (1 << i); /* mark temp as used */
1128 }
1129 }
1130 break;
1131
1132 case TGSI_TOKEN_TYPE_IMMEDIATE:
1133 {
1134 const struct tgsi_full_immediate *imm
1135 = &token->FullImmediate;
1136 const uint pos = p->num_immediates++;
1137 uint j;
1138 assert( imm->Immediate.NrTokens <= 4 + 1 );
1139 for (j = 0; j < imm->Immediate.NrTokens - 1; j++) {
1140 p->immediates[pos][j] = imm->u[j].Float;
1141 }
1142 }
1143 break;
1144
1145 case TGSI_TOKEN_TYPE_INSTRUCTION:
1146 if (p->first_instruction) {
1147 /* resolve location of immediates */
1148 uint i, j;
1149 for (i = 0; i < p->num_immediates; i++) {
1150 /* find constant slot for this immediate */
1151 for (j = 0; j < I915_MAX_CONSTANT; j++) {
1152 if (ifs->constant_flags[j] == 0x0) {
1153 memcpy(ifs->constants[j],
1154 p->immediates[i],
1155 4 * sizeof(float));
1156 /*printf("immediate %d maps to const %d\n", i, j);*/
1157 ifs->constant_flags[j] = 0xf; /* all four comps used */
1158 p->immediates_map[i] = j;
1159 ifs->num_constants = MAX2(ifs->num_constants, j + 1);
1160 break;
1161 }
1162 }
1163 }
1164
1165 p->first_instruction = FALSE;
1166 }
1167
1168 i915_translate_instruction(p, &token->FullInstruction, fs);
1169 break;
1170
1171 default:
1172 assert( 0 );
1173 }
1174
1175 }
1176
1177 /**
1178 * Translate TGSI fragment shader into i915 hardware instructions.
1179 * \param p the translation state
1180 * \param tokens the TGSI token array
1181 */
1182 static void
1183 i915_translate_instructions(struct i915_fp_compile *p,
1184 const struct i915_token_list *tokens,
1185 struct i915_fragment_shader *fs)
1186 {
1187 int i;
1188 for(i = 0; i<tokens->NumTokens; i++) {
1189 i915_translate_token(p, &tokens->Tokens[i], fs);
1190 }
1191 }
1192
1193
1194 static struct i915_fp_compile *
1195 i915_init_compile(struct i915_context *i915,
1196 struct i915_fragment_shader *ifs)
1197 {
1198 struct i915_fp_compile *p = CALLOC_STRUCT(i915_fp_compile);
1199 int i;
1200
1201 p->shader = ifs;
1202
1203 /* Put new constants at end of const buffer, growing downward.
1204 * The problem is we don't know how many user-defined constants might
1205 * be specified with pipe->set_constant_buffer().
1206 * Should pre-scan the user's program to determine the highest-numbered
1207 * constant referenced.
1208 */
1209 ifs->num_constants = 0;
1210 memset(ifs->constant_flags, 0, sizeof(ifs->constant_flags));
1211
1212 memset(&p->register_phases, 0, sizeof(p->register_phases));
1213
1214 for (i = 0; i < I915_TEX_UNITS; i++)
1215 ifs->generic_mapping[i] = -1;
1216
1217 p->first_instruction = TRUE;
1218
1219 p->nr_tex_indirect = 1; /* correct? */
1220 p->nr_tex_insn = 0;
1221 p->nr_alu_insn = 0;
1222 p->nr_decl_insn = 0;
1223
1224 p->csr = p->program;
1225 p->decl = p->declarations;
1226 p->decl_s = 0;
1227 p->decl_t = 0;
1228 p->temp_flag = ~0x0 << I915_MAX_TEMPORARY;
1229 p->utemp_flag = ~0x7;
1230
1231 /* initialize the first program word */
1232 *(p->decl++) = _3DSTATE_PIXEL_SHADER_PROGRAM;
1233
1234 return p;
1235 }
1236
1237
1238 /* Copy compile results to the fragment program struct and destroy the
1239 * compilation context.
1240 */
1241 static void
1242 i915_fini_compile(struct i915_context *i915, struct i915_fp_compile *p)
1243 {
1244 struct i915_fragment_shader *ifs = p->shader;
1245 unsigned long program_size = (unsigned long) (p->csr - p->program);
1246 unsigned long decl_size = (unsigned long) (p->decl - p->declarations);
1247
1248 if (p->nr_tex_indirect > I915_MAX_TEX_INDIRECT)
1249 debug_printf("Exceeded max nr indirect texture lookups\n");
1250
1251 if (p->nr_tex_insn > I915_MAX_TEX_INSN)
1252 i915_program_error(p, "Exceeded max TEX instructions");
1253
1254 if (p->nr_alu_insn > I915_MAX_ALU_INSN)
1255 i915_program_error(p, "Exceeded max ALU instructions");
1256
1257 if (p->nr_decl_insn > I915_MAX_DECL_INSN)
1258 i915_program_error(p, "Exceeded max DECL instructions");
1259
1260 if (p->error) {
1261 p->NumNativeInstructions = 0;
1262 p->NumNativeAluInstructions = 0;
1263 p->NumNativeTexInstructions = 0;
1264 p->NumNativeTexIndirections = 0;
1265
1266 i915_use_passthrough_shader(ifs);
1267 }
1268 else {
1269 p->NumNativeInstructions
1270 = p->nr_alu_insn + p->nr_tex_insn + p->nr_decl_insn;
1271 p->NumNativeAluInstructions = p->nr_alu_insn;
1272 p->NumNativeTexInstructions = p->nr_tex_insn;
1273 p->NumNativeTexIndirections = p->nr_tex_indirect;
1274
1275 /* patch in the program length */
1276 p->declarations[0] |= program_size + decl_size - 2;
1277
1278 /* Copy compilation results to fragment program struct:
1279 */
1280 assert(!ifs->decl);
1281 assert(!ifs->program);
1282
1283 ifs->decl
1284 = (uint *) MALLOC(decl_size * sizeof(uint));
1285 ifs->program
1286 = (uint *) MALLOC(program_size * sizeof(uint));
1287
1288 if (ifs->decl) {
1289 ifs->decl_len = decl_size;
1290
1291 memcpy(ifs->decl,
1292 p->declarations,
1293 decl_size * sizeof(uint));
1294 }
1295
1296 if (ifs->program) {
1297 ifs->program_len = program_size;
1298
1299 memcpy(ifs->program,
1300 p->program,
1301 program_size * sizeof(uint));
1302 }
1303 }
1304
1305 /* Release the compilation struct:
1306 */
1307 FREE(p);
1308 }
1309
1310
1311
1312
1313
1314 /**
1315 * Rather than trying to intercept and jiggle depth writes during
1316 * emit, just move the value into its correct position at the end of
1317 * the program:
1318 */
1319 static void
1320 i915_fixup_depth_write(struct i915_fp_compile *p)
1321 {
1322 /* XXX assuming pos/depth is always in output[0] */
1323 if (p->shader->info.output_semantic_name[0] == TGSI_SEMANTIC_POSITION) {
1324 const uint depth = UREG(REG_TYPE_OD, 0);
1325
1326 i915_emit_arith(p,
1327 A0_MOV, /* opcode */
1328 depth, /* dest reg */
1329 A0_DEST_CHANNEL_W, /* write mask */
1330 0, /* saturate? */
1331 swizzle(depth, X, Y, Z, Z), /* src0 */
1332 0, 0 /* src1, src2 */);
1333 }
1334 }
1335
1336
1337 void
1338 i915_translate_fragment_program( struct i915_context *i915,
1339 struct i915_fragment_shader *fs)
1340 {
1341 struct i915_fp_compile *p;
1342 const struct tgsi_token *tokens = fs->state.tokens;
1343 struct i915_token_list* i_tokens;
1344
1345 #if 0
1346 tgsi_dump(tokens, 0);
1347 #endif
1348
1349 /* hw doesn't seem to like empty frag programs, even when the depth write
1350 * fixup gets emitted below - may that one is fishy, too? */
1351 if (fs->info.num_instructions == 1) {
1352 i915_use_passthrough_shader(fs);
1353
1354 return;
1355 }
1356
1357 p = i915_init_compile(i915, fs);
1358
1359 i_tokens = i915_optimize(tokens);
1360 i915_translate_instructions(p, i_tokens, fs);
1361 i915_fixup_depth_write(p);
1362
1363 i915_fini_compile(i915, p);
1364 i915_optimize_free(i_tokens);
1365
1366 #if 0
1367 i915_disassemble_program(NULL, fs->program, fs->program_len);
1368 #endif
1369 }