blob: 10a6b5f21a8464207e94f2ec1080ed6664c2c9fb [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
3 * Copyright 2003 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
Keith Whitwell15e75e02005-04-29 15:11:39 +000028#include "glheader.h"
29#include "macros.h"
30#include "enums.h"
31#include "texenvprogram.h"
32
33#include "shader/program.h"
Brian Paul7e807512005-11-05 17:10:45 +000034#include "shader/program_instruction.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000035
Brian Paul5d7b49f2005-11-19 23:12:20 +000036#define MAX_INSTRUCTIONS 100
Keith Whitwell15e75e02005-04-29 15:11:39 +000037
Keith Whitwell269e3892005-05-12 10:28:43 +000038#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000039
Keith Whitwellce721142005-07-11 10:10:38 +000040struct mode_opt {
Brian Paul5d7b49f2005-11-19 23:12:20 +000041 GLuint Source:4;
42 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000043};
44
45struct state_key {
Brian Paul5d7b49f2005-11-19 23:12:20 +000046 GLbitfield enabled_units;
47 GLuint separate_specular:1;
48 GLuint fog_enabled:1;
49 GLuint fog_mode:2;
Keith Whitwellce721142005-07-11 10:10:38 +000050
51 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000052 GLuint enabled:1;
53 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
54 GLuint ScaleShiftRGB:2;
55 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000056
Brian Paul5d7b49f2005-11-19 23:12:20 +000057 GLuint NumArgsRGB:2;
58 GLuint ModeRGB:4;
Keith Whitwellce721142005-07-11 10:10:38 +000059 struct mode_opt OptRGB[3];
60
Brian Paul5d7b49f2005-11-19 23:12:20 +000061 GLuint NumArgsA:2;
62 GLuint ModeA:4;
Keith Whitwellce721142005-07-11 10:10:38 +000063 struct mode_opt OptA[3];
64 } unit[8];
65};
66
67#define FOG_LINEAR 0
68#define FOG_EXP 1
69#define FOG_EXP2 2
70#define FOG_UNKNOWN 3
71
72static GLuint translate_fog_mode( GLenum mode )
73{
74 switch (mode) {
75 case GL_LINEAR: return FOG_LINEAR;
76 case GL_EXP: return FOG_EXP;
77 case GL_EXP2: return FOG_EXP2;
78 default: return FOG_UNKNOWN;
79 }
80}
81
82#define OPR_SRC_COLOR 0
83#define OPR_ONE_MINUS_SRC_COLOR 1
84#define OPR_SRC_ALPHA 2
85#define OPR_ONE_MINUS_SRC_ALPHA 3
86#define OPR_ZERO 4
87#define OPR_ONE 5
88#define OPR_UNKNOWN 7
89
90static GLuint translate_operand( GLenum operand )
91{
92 switch (operand) {
93 case GL_SRC_COLOR: return OPR_SRC_COLOR;
94 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
95 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
96 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
97 case GL_ZERO: return OPR_ZERO;
98 case GL_ONE: return OPR_ONE;
99 default: return OPR_UNKNOWN;
100 }
101}
102
103#define SRC_TEXTURE 0
104#define SRC_TEXTURE0 1
105#define SRC_TEXTURE1 2
106#define SRC_TEXTURE2 3
107#define SRC_TEXTURE3 4
108#define SRC_TEXTURE4 5
109#define SRC_TEXTURE5 6
110#define SRC_TEXTURE6 7
111#define SRC_TEXTURE7 8
112#define SRC_CONSTANT 9
113#define SRC_PRIMARY_COLOR 10
114#define SRC_PREVIOUS 11
115#define SRC_UNKNOWN 15
116
117static GLuint translate_source( GLenum src )
118{
119 switch (src) {
120 case GL_TEXTURE: return SRC_TEXTURE;
121 case GL_TEXTURE0:
122 case GL_TEXTURE1:
123 case GL_TEXTURE2:
124 case GL_TEXTURE3:
125 case GL_TEXTURE4:
126 case GL_TEXTURE5:
127 case GL_TEXTURE6:
128 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
129 case GL_CONSTANT: return SRC_CONSTANT;
130 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
131 case GL_PREVIOUS: return SRC_PREVIOUS;
132 default: return SRC_UNKNOWN;
133 }
134}
135
136#define MODE_REPLACE 0
137#define MODE_MODULATE 1
138#define MODE_ADD 2
139#define MODE_ADD_SIGNED 3
140#define MODE_INTERPOLATE 4
141#define MODE_SUBTRACT 5
142#define MODE_DOT3_RGB 6
143#define MODE_DOT3_RGB_EXT 7
144#define MODE_DOT3_RGBA 8
145#define MODE_DOT3_RGBA_EXT 9
146#define MODE_MODULATE_ADD_ATI 10
147#define MODE_MODULATE_SIGNED_ADD_ATI 11
148#define MODE_MODULATE_SUBTRACT_ATI 12
149#define MODE_UNKNOWN 15
150
151static GLuint translate_mode( GLenum mode )
152{
153 switch (mode) {
154 case GL_REPLACE: return MODE_REPLACE;
155 case GL_MODULATE: return MODE_MODULATE;
156 case GL_ADD: return MODE_ADD;
157 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
158 case GL_INTERPOLATE: return MODE_INTERPOLATE;
159 case GL_SUBTRACT: return MODE_SUBTRACT;
160 case GL_DOT3_RGB: return MODE_DOT3_RGB;
161 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
162 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
163 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
164 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
165 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
166 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
167 default: return MODE_UNKNOWN;
168 }
169}
170
171#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000172static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000173{
174 switch (bit) {
175 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
176 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
177 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
178 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
179 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
180 default: return TEXTURE_UNKNOWN_INDEX;
181 }
182}
183
184static struct state_key *make_state_key( GLcontext *ctx )
185{
186 struct state_key *key = CALLOC_STRUCT(state_key);
187 GLuint i, j;
188
189 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
190 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
191
192 if (!texUnit->_ReallyEnabled)
193 continue;
194
195 key->unit[i].enabled = 1;
196 key->enabled_units |= (1<<i);
197
198 key->unit[i].source_index =
199 translate_tex_src_bit(texUnit->_ReallyEnabled);
200
201 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
202 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
203
204 key->unit[i].ModeRGB =
205 translate_mode(texUnit->_CurrentCombine->ModeRGB);
206 key->unit[i].ModeA =
207 translate_mode(texUnit->_CurrentCombine->ModeA);
208
209 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
210 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftRGB;
211
212 for (j=0;j<3;j++) {
213 key->unit[i].OptRGB[j].Operand =
214 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
215 key->unit[i].OptA[j].Operand =
216 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
217 key->unit[i].OptRGB[j].Source =
218 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
219 key->unit[i].OptA[j].Source =
220 translate_source(texUnit->_CurrentCombine->SourceA[j]);
221 }
222 }
223
224 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
225 key->separate_specular = 1;
226
227 if (ctx->Fog.Enabled) {
228 key->fog_enabled = 1;
229 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
230 }
231
232 return key;
233}
234
Keith Whitwell15e75e02005-04-29 15:11:39 +0000235/* Use uregs to represent registers internally, translate to Mesa's
236 * expected formats on emit.
237 *
238 * NOTE: These are passed by value extensively in this file rather
239 * than as usual by pointer reference. If this disturbs you, try
240 * remembering they are just 32bits in size.
241 *
242 * GCC is smart enough to deal with these dword-sized structures in
243 * much the same way as if I had defined them as dwords and was using
244 * macros to access and set the fields. This is much nicer and easier
245 * to evolve.
246 */
247struct ureg {
248 GLuint file:4;
249 GLuint idx:8;
250 GLuint negatebase:1;
251 GLuint abs:1;
252 GLuint negateabs:1;
253 GLuint swz:12;
254 GLuint pad:5;
255};
256
257const static struct ureg undef = {
258 ~0,
259 ~0,
260 0,
261 0,
262 0,
263 0,
264 0
265};
266
267#define X 0
268#define Y 1
269#define Z 2
270#define W 3
271
Keith Whitwell15e75e02005-04-29 15:11:39 +0000272/* State used to build the fragment program:
273 */
274struct texenv_fragment_program {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000275 struct fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000276 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000277 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000278
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000279 GLuint alu_temps; /* Track texture indirections, see spec. */
280 GLuint temps_output; /* Track texture indirections, see spec. */
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000281
Keith Whitwell93cd9232005-05-11 08:30:23 +0000282 GLuint temp_in_use; /* Tracks temporary regs which are in
Keith Whitwell15e75e02005-04-29 15:11:39 +0000283 * use.
284 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000285 GLboolean error;
286
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000287 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000288 /* Reg containing each texture unit's sampled texture color,
289 * else undef.
290 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000291
292 struct ureg src_previous; /* Reg containing color from previous
293 * stage. May need to be decl'd.
294 */
295
296 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000297
298 struct ureg half;
299 struct ureg one;
300 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000301};
302
303
304
305static struct ureg make_ureg(GLuint file, GLuint idx)
306{
307 struct ureg reg;
308 reg.file = file;
309 reg.idx = idx;
310 reg.negatebase = 0;
311 reg.abs = 0;
312 reg.negateabs = 0;
313 reg.swz = SWIZZLE_NOOP;
314 reg.pad = 0;
315 return reg;
316}
317
318static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
319{
320 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
321 GET_SWZ(reg.swz, y),
322 GET_SWZ(reg.swz, z),
323 GET_SWZ(reg.swz, w));
324
325 return reg;
326}
327
328static struct ureg swizzle1( struct ureg reg, int x )
329{
330 return swizzle(reg, x, x, x, x);
331}
332
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000333static struct ureg negate( struct ureg reg )
334{
335 reg.negatebase ^= 1;
336 return reg;
337}
338
Keith Whitwell15e75e02005-04-29 15:11:39 +0000339static GLboolean is_undef( struct ureg reg )
340{
341 return reg.file == 0xf;
342}
343
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000344
Keith Whitwell15e75e02005-04-29 15:11:39 +0000345static struct ureg get_temp( struct texenv_fragment_program *p )
346{
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000347 int bit;
348
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000349 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000350 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000351 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000352
353 /* Then any unused temporary:
354 */
355 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000356 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000357
Keith Whitwell15e75e02005-04-29 15:11:39 +0000358 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000359 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000360 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000361 }
362
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000363 if (bit > p->program->Base.NumTemporaries)
364 p->program->Base.NumTemporaries = bit;
365
Keith Whitwell93cd9232005-05-11 08:30:23 +0000366 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000367 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
368}
369
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000370static struct ureg get_tex_temp( struct texenv_fragment_program *p )
371{
372 int bit;
373
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000374 /* First try to find availble temp not previously used (to avoid
375 * starting a new texture indirection). According to the spec, the
376 * ~p->temps_output isn't necessary, but will keep it there for
377 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000378 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000379 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000380
381 /* Then any unused temporary:
382 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000383 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000384 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000385
386 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000387 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000388 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000389 }
390
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000391 if (bit > p->program->Base.NumTemporaries)
392 p->program->Base.NumTemporaries = bit;
393
Keith Whitwell93cd9232005-05-11 08:30:23 +0000394 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000395 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
396}
397
Keith Whitwell15e75e02005-04-29 15:11:39 +0000398
399static void release_temps( struct texenv_fragment_program *p )
400{
Brian Paul05051032005-11-01 04:36:33 +0000401 GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000402
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000403 /* KW: To support tex_env_crossbar, don't release the registers in
404 * temps_output.
405 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000406 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000407 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000408 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000409 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000410}
411
412
Keith Whitwell47b29f52005-05-04 11:44:44 +0000413static struct ureg register_param6( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000414 GLint s0,
415 GLint s1,
416 GLint s2,
417 GLint s3,
418 GLint s4,
419 GLint s5)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000420{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000421 GLint tokens[6];
422 GLuint idx;
423 tokens[0] = s0;
424 tokens[1] = s1;
425 tokens[2] = s2;
426 tokens[3] = s3;
427 tokens[4] = s4;
428 tokens[5] = s5;
Brian Paulde997602005-11-12 17:53:14 +0000429 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000430 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000431}
432
Keith Whitwell47b29f52005-05-04 11:44:44 +0000433
434#define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0)
435#define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0)
436#define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0)
437#define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0)
438
439
440static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
441{
Brian Paulde997602005-11-12 17:53:14 +0000442 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000443 return make_ureg(PROGRAM_INPUT, input);
444}
445
446
Brian Paul7e807512005-11-05 17:10:45 +0000447static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000448 struct ureg ureg )
449{
450 reg->File = ureg.file;
451 reg->Index = ureg.idx;
452 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000453 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000454 reg->Abs = ureg.abs;
455 reg->NegateAbs = ureg.negateabs;
456}
457
Brian Paul7e807512005-11-05 17:10:45 +0000458static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000459 struct ureg ureg, GLuint mask )
460{
461 dst->File = ureg.file;
462 dst->Index = ureg.idx;
463 dst->WriteMask = mask;
464 dst->CondMask = 0;
465 dst->CondSwizzle = 0;
466}
467
Brian Paul7e807512005-11-05 17:10:45 +0000468static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000469emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000470 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000471 struct ureg dest,
472 GLuint mask,
473 GLuint saturate,
474 struct ureg src0,
475 struct ureg src1,
476 struct ureg src2 )
477{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000478 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000479 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000480
Brian Paul5d7b49f2005-11-19 23:12:20 +0000481 _mesa_init_instruction(inst);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000482 inst->Opcode = op;
483
Keith Whitwell47b29f52005-05-04 11:44:44 +0000484 emit_arg( &inst->SrcReg[0], src0 );
485 emit_arg( &inst->SrcReg[1], src1 );
486 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000487
488 inst->Saturate = saturate;
489
490 emit_dst( &inst->DstReg, dest, mask );
491
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000492 /* Accounting for indirection tracking:
493 */
494 if (dest.file == PROGRAM_TEMPORARY)
495 p->temps_output |= 1 << dest.idx;
496
Keith Whitwell15e75e02005-04-29 15:11:39 +0000497 return inst;
498}
499
500
501static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000502 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000503 struct ureg dest,
504 GLuint mask,
505 GLuint saturate,
506 struct ureg src0,
507 struct ureg src1,
508 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000509{
510 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
511
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000512 /* Accounting for indirection tracking:
513 */
514 if (src0.file == PROGRAM_TEMPORARY)
515 p->alu_temps |= 1 << src0.idx;
516
517 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
518 p->alu_temps |= 1 << src1.idx;
519
520 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
521 p->alu_temps |= 1 << src2.idx;
522
523 if (dest.file == PROGRAM_TEMPORARY)
524 p->alu_temps |= 1 << dest.idx;
525
Keith Whitwell47b29f52005-05-04 11:44:44 +0000526 p->program->NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000527 return dest;
528}
529
530static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000531 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000532 struct ureg dest,
533 GLuint destmask,
534 GLuint tex_unit,
535 GLuint tex_idx,
536 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000537{
Brian Paul7e807512005-11-05 17:10:45 +0000538 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000539 dest, destmask,
540 0, /* don't saturate? */
541 coord, /* arg 0? */
542 undef,
543 undef);
544
Brian Paul7e807512005-11-05 17:10:45 +0000545 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000546 inst->TexSrcUnit = tex_unit;
547
Keith Whitwell47b29f52005-05-04 11:44:44 +0000548 p->program->NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000549
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000550 /* Is this a texture indirection?
551 */
552 if ((coord.file == PROGRAM_TEMPORARY &&
553 (p->temps_output & (1<<coord.idx))) ||
554 (dest.file == PROGRAM_TEMPORARY &&
555 (p->alu_temps & (1<<dest.idx)))) {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000556 p->program->NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000557 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000558 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000559 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000560 }
561
562 return dest;
563}
564
565
Keith Whitwell47b29f52005-05-04 11:44:44 +0000566static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000567 GLfloat s0,
568 GLfloat s1,
569 GLfloat s2,
570 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000571{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000572 GLfloat values[4];
573 GLuint idx;
574 values[0] = s0;
575 values[1] = s1;
576 values[2] = s2;
577 values[3] = s3;
Brian Paulde997602005-11-12 17:53:14 +0000578 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000579 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000580}
581
Keith Whitwelle4902422005-05-11 15:16:35 +0000582#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000583#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
584#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
585#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000586
587
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000588static struct ureg get_one( struct texenv_fragment_program *p )
589{
590 if (is_undef(p->one))
591 p->one = register_scalar_const(p, 1.0);
592 return p->one;
593}
594
595static struct ureg get_half( struct texenv_fragment_program *p )
596{
597 if (is_undef(p->half))
598 p->one = register_scalar_const(p, 0.5);
599 return p->half;
600}
601
602static struct ureg get_zero( struct texenv_fragment_program *p )
603{
604 if (is_undef(p->zero))
605 p->one = register_scalar_const(p, 0.0);
606 return p->zero;
607}
608
Keith Whitwell15e75e02005-04-29 15:11:39 +0000609
610
Keith Whitwell15e75e02005-04-29 15:11:39 +0000611static void program_error( struct texenv_fragment_program *p, const char *msg )
612{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000613 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000614 p->error = 1;
615}
616
Keith Whitwell15e75e02005-04-29 15:11:39 +0000617static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000618 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000619{
620 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000621 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000622 assert(!is_undef(p->src_texture[unit]));
623 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000624
Keith Whitwellce721142005-07-11 10:10:38 +0000625 case SRC_TEXTURE0:
626 case SRC_TEXTURE1:
627 case SRC_TEXTURE2:
628 case SRC_TEXTURE3:
629 case SRC_TEXTURE4:
630 case SRC_TEXTURE5:
631 case SRC_TEXTURE6:
632 case SRC_TEXTURE7:
633 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
634 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000635
Keith Whitwellce721142005-07-11 10:10:38 +0000636 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000637 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000638
Keith Whitwellce721142005-07-11 10:10:38 +0000639 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000640 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000641
Keith Whitwellce721142005-07-11 10:10:38 +0000642 case SRC_PREVIOUS:
643 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000644 if (is_undef(p->src_previous))
645 return register_input(p, FRAG_ATTRIB_COL0);
646 else
647 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000648 }
649}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000650
Keith Whitwell15e75e02005-04-29 15:11:39 +0000651static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000652 GLuint mask,
653 GLuint unit,
654 GLuint source,
655 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000656{
657 struct ureg arg, src, one;
658
659 src = get_source(p, source, unit);
660
661 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000662 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000663 /* Get unused tmp,
664 * Emit tmp = 1.0 - arg.xyzw
665 */
666 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000667 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000668 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000669
Keith Whitwellce721142005-07-11 10:10:38 +0000670 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000671 if (mask == WRITEMASK_W)
672 return src;
673 else
674 return swizzle1( src, W );
Keith Whitwellce721142005-07-11 10:10:38 +0000675 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000676 /* Get unused tmp,
677 * Emit tmp = 1.0 - arg.wwww
678 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000679 arg = get_temp(p);
680 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000681 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000682 one, swizzle1(src, W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000683 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000684 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000685 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000686 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000687 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000688 default:
689 return src;
690 }
691}
692
Keith Whitwellce721142005-07-11 10:10:38 +0000693static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000694{
Keith Whitwellce721142005-07-11 10:10:38 +0000695 int i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000696
697 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000698 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000699 return GL_FALSE;
700
Keith Whitwellce721142005-07-11 10:10:38 +0000701 switch(key->unit[unit].OptA[i].Operand) {
702 case OPR_SRC_ALPHA:
703 switch(key->unit[unit].OptRGB[i].Operand) {
704 case OPR_SRC_COLOR:
705 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000706 break;
707 default:
708 return GL_FALSE;
709 }
710 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000711 case OPR_ONE_MINUS_SRC_ALPHA:
712 switch(key->unit[unit].OptRGB[i].Operand) {
713 case OPR_ONE_MINUS_SRC_COLOR:
714 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000715 break;
716 default:
717 return GL_FALSE;
718 }
719 break;
720 default:
721 return GL_FALSE; /* impossible */
722 }
723 }
724
725 return GL_TRUE;
726}
727
Keith Whitwell15e75e02005-04-29 15:11:39 +0000728static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000729 struct ureg dest,
730 GLuint mask,
731 GLuint saturate,
732 GLuint unit,
733 GLuint nr,
734 GLuint mode,
735 struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000736{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000737 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000738 struct ureg tmp, half;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000739 int i;
740
741 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000742 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000743
744 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000745 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000746 if (mask == WRITEMASK_XYZW && !saturate)
747 return src[0];
748 else
Brian Paul7e807512005-11-05 17:10:45 +0000749 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000750 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000751 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000752 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000753 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000754 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000755 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000756 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000757 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000758 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000759 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000760 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000761 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
762 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000763 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000764 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000765 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
766 */
Brian Paul7e807512005-11-05 17:10:45 +0000767 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000768
Keith Whitwellce721142005-07-11 10:10:38 +0000769 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000770 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000771
Keith Whitwellce721142005-07-11 10:10:38 +0000772 case MODE_DOT3_RGBA:
773 case MODE_DOT3_RGBA_EXT:
774 case MODE_DOT3_RGB_EXT:
775 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000776 struct ureg tmp0 = get_temp( p );
777 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000778 struct ureg neg1 = register_scalar_const(p, -1);
779 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000780
781 /* tmp0 = 2*src0 - 1
782 * tmp1 = 2*src1 - 1
783 *
784 * dst = tmp0 dot3 tmp1
785 */
Brian Paul7e807512005-11-05 17:10:45 +0000786 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000787 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000788
Brian Paulaa206952005-09-16 18:14:24 +0000789 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000790 tmp1 = tmp0;
791 else
Brian Paul7e807512005-11-05 17:10:45 +0000792 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000793 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000794 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000795 return dest;
796 }
Keith Whitwellce721142005-07-11 10:10:38 +0000797 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000798 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000799 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000800 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000801 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000802 /* Arg0 * Arg2 + Arg1 - 0.5 */
803 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000804 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000805 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
806 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000807 return dest;
808 }
Keith Whitwellce721142005-07-11 10:10:38 +0000809 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000810 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000811 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000812 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000813 default:
814 return src[0];
815 }
816}
817
Keith Whitwell15e75e02005-04-29 15:11:39 +0000818
Keith Whitwell15e75e02005-04-29 15:11:39 +0000819static struct ureg emit_texenv( struct texenv_fragment_program *p, int unit )
820{
Keith Whitwellce721142005-07-11 10:10:38 +0000821 struct state_key *key = p->state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000822 GLuint saturate = (unit < p->last_tex_stage);
823 GLuint rgb_shift, alpha_shift;
824 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000825 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000826
Keith Whitwellce721142005-07-11 10:10:38 +0000827 if (!key->unit[unit].enabled) {
828 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000829 }
Keith Whitwellce721142005-07-11 10:10:38 +0000830
831 switch (key->unit[unit].ModeRGB) {
832 case MODE_DOT3_RGB_EXT:
833 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000834 rgb_shift = 0;
835 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000836 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000837 alpha_shift = 0;
838 rgb_shift = 0;
839 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000840 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000841 rgb_shift = key->unit[unit].ScaleShiftRGB;
842 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000843 break;
844 }
Keith Whitwellce721142005-07-11 10:10:38 +0000845
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000846 /* If this is the very last calculation, emit direct to output reg:
847 */
Keith Whitwellce721142005-07-11 10:10:38 +0000848 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000849 unit != p->last_tex_stage ||
850 alpha_shift ||
851 rgb_shift)
852 dest = get_temp( p );
853 else
Brian Paul90ebb582005-11-02 18:06:12 +0000854 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000855
856 /* Emit the RGB and A combine ops
857 */
Keith Whitwellce721142005-07-11 10:10:38 +0000858 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
859 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000860 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
861 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000862 key->unit[unit].NumArgsRGB,
863 key->unit[unit].ModeRGB,
864 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000865 }
Keith Whitwellce721142005-07-11 10:10:38 +0000866 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
867 key->unit[unit].ModeA == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000868
869 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
870 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000871 key->unit[unit].NumArgsRGB,
872 key->unit[unit].ModeRGB,
873 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000874 }
875 else {
876 /* Need to do something to stop from re-emitting identical
877 * argument calculations here:
878 */
879 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
880 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000881 key->unit[unit].NumArgsRGB,
882 key->unit[unit].ModeRGB,
883 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000884 out = emit_combine( p, dest, WRITEMASK_W, saturate,
885 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000886 key->unit[unit].NumArgsA,
887 key->unit[unit].ModeA,
888 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000889 }
890
891 /* Deal with the final shift:
892 */
893 if (alpha_shift || rgb_shift) {
894 if (rgb_shift == alpha_shift) {
Keith Whitwelle4902422005-05-11 15:16:35 +0000895 shift = register_scalar_const(p, 1<<rgb_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000896 }
897 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000898 shift = register_const4f(p,
899 1<<rgb_shift,
900 1<<rgb_shift,
901 1<<rgb_shift,
902 1<<alpha_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000903 }
Brian Paul7e807512005-11-05 17:10:45 +0000904 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000905 saturate, out, shift, undef );
906 }
907 else
908 return out;
909}
910
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000911
912
913static void load_texture( struct texenv_fragment_program *p, GLuint unit )
914{
915 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000916 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000917 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
918 struct ureg tmp = get_tex_temp( p );
919
Brian Paulbfb5ea32005-07-19 18:20:04 +0000920 if (dim == TEXTURE_UNKNOWN_INDEX)
921 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000922
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000923 /* TODO: Use D0_MASK_XY where possible.
924 */
Brian Paul7e807512005-11-05 17:10:45 +0000925 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000926 tmp, WRITEMASK_XYZW,
927 unit, dim, texcoord );
928 }
929}
930
Keith Whitwell241b6b72005-05-23 09:50:34 +0000931static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000932 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000933{
934 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000935 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000936 load_texture(p, unit);
937 break;
938
Keith Whitwellce721142005-07-11 10:10:38 +0000939 case SRC_TEXTURE0:
940 case SRC_TEXTURE1:
941 case SRC_TEXTURE2:
942 case SRC_TEXTURE3:
943 case SRC_TEXTURE4:
944 case SRC_TEXTURE5:
945 case SRC_TEXTURE6:
946 case SRC_TEXTURE7:
947 if (!p->state->unit[src - SRC_TEXTURE0].enabled)
Keith Whitwell241b6b72005-05-23 09:50:34 +0000948 return GL_FALSE;
Keith Whitwellce721142005-07-11 10:10:38 +0000949 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000950 break;
951
952 default:
953 break;
954 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000955
956 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000957}
958
Keith Whitwell241b6b72005-05-23 09:50:34 +0000959static GLboolean load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000960{
Keith Whitwellce721142005-07-11 10:10:38 +0000961 struct state_key *key = p->state;
962 int i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000963 for (i = 0; i < nr; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000964 if (!load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit) ||
965 !load_texenv_source( p, key->unit[unit].OptA[i].Source, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +0000966 return GL_FALSE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000967 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000968 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000969}
970
Keith Whitwellce721142005-07-11 10:10:38 +0000971static void create_new_program(struct state_key *key, GLcontext *ctx,
972 struct fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000973{
974 struct texenv_fragment_program p;
975 GLuint unit;
976 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +0000977
Keith Whitwelle4902422005-05-11 15:16:35 +0000978 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +0000979 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000980 p.state = key;
981 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000982
Brian Paul5d7b49f2005-11-19 23:12:20 +0000983 p.program->Base.Instructions =
984 _mesa_malloc(sizeof(struct prog_instruction) * MAX_INSTRUCTIONS);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000985 p.program->Base.NumInstructions = 0;
Keith Whitwell276330b2005-05-09 17:58:13 +0000986 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000987 p.program->NumTexIndirections = 1; /* correct? */
988 p.program->NumTexInstructions = 0;
989 p.program->NumAluInstructions = 0;
Keith Whitwell9ca88152005-05-10 09:56:02 +0000990 p.program->Base.String = 0;
991 p.program->Base.NumInstructions =
Keith Whitwellce721142005-07-11 10:10:38 +0000992 p.program->Base.NumTemporaries =
993 p.program->Base.NumParameters =
994 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +0000995 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +0000996
Brian Paulde997602005-11-12 17:53:14 +0000997 p.program->Base.InputsRead = 0;
998 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000999
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001000 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1001 p.src_texture[unit] = undef;
1002
Keith Whitwell47b29f52005-05-04 11:44:44 +00001003 p.src_previous = undef;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001004 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001005 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001006
Keith Whitwellce721142005-07-11 10:10:38 +00001007 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001008 /* First pass - to support texture_env_crossbar, first identify
1009 * all referenced texture sources and emit texld instructions
1010 * for each:
1011 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001012 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001013 if (key->unit[unit].enabled) {
1014 if (load_texunit_sources( &p, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +00001015 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001016 }
1017
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001018 /* Second pass - emit combine instructions to build final color:
1019 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001020 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001021 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001022 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001023 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001024 }
1025 }
1026
Keith Whitwellce721142005-07-11 10:10:38 +00001027 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001028 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001029
Keith Whitwellce721142005-07-11 10:10:38 +00001030 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001031 /* Emit specular add.
1032 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001033 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001034 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1035 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001036 }
Brian Paulaa206952005-09-16 18:14:24 +00001037 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001038 /* Will wind up in here if no texture enabled or a couple of
1039 * other scenarios (GL_REPLACE for instance).
1040 */
Brian Paul7e807512005-11-05 17:10:45 +00001041 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001042 }
1043
Keith Whitwell47b29f52005-05-04 11:44:44 +00001044 /* Finish up:
1045 */
Brian Paul7e807512005-11-05 17:10:45 +00001046 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001047
Keith Whitwellce721142005-07-11 10:10:38 +00001048 if (key->fog_enabled) {
1049 /* Pull fog mode from GLcontext, the value in the state key is
1050 * a reduced value and not what is expected in FogOption
1051 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001052 p.program->FogOption = ctx->Fog.Mode;
Keith Whitwellce721142005-07-11 10:10:38 +00001053 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001054 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001055
Brian Paul05051032005-11-01 04:36:33 +00001056 if (p.program->NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001057 program_error(&p, "Exceeded max nr indirect texture lookups");
1058
Brian Paul05051032005-11-01 04:36:33 +00001059 if (p.program->NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001060 program_error(&p, "Exceeded max TEX instructions");
1061
Brian Paul05051032005-11-01 04:36:33 +00001062 if (p.program->NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001063 program_error(&p, "Exceeded max ALU instructions");
1064
Brian Paul5d7b49f2005-11-19 23:12:20 +00001065 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001066
Keith Whitwelldbeea252005-05-10 13:57:50 +00001067 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001068 */
Keith Whitwelle4902422005-05-11 15:16:35 +00001069 if (ctx->Driver.ProgramStringNotify || DISASSEM) {
Keith Whitwellce721142005-07-11 10:10:38 +00001070 if (ctx->Driver.ProgramStringNotify)
1071 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1072 &p.program->Base );
Keith Whitwelldbeea252005-05-10 13:57:50 +00001073
Keith Whitwellce721142005-07-11 10:10:38 +00001074 if (DISASSEM) {
Brian Paulde997602005-11-12 17:53:14 +00001075 _mesa_print_program(&p.program->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001076 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001077 }
Keith Whitwelle4902422005-05-11 15:16:35 +00001078 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001079}
1080
Brian Paul5d7b49f2005-11-19 23:12:20 +00001081
Keith Whitwellce721142005-07-11 10:10:38 +00001082static void *search_cache( struct texenvprog_cache *cache,
1083 GLuint hash,
1084 const void *key,
1085 GLuint keysize)
1086{
1087 struct texenvprog_cache *c;
1088
1089 for (c = cache; c; c = c->next) {
Brian Paulaa206952005-09-16 18:14:24 +00001090 if (c->hash == hash && _mesa_memcmp(c->key, key, keysize) == 0)
Keith Whitwellce721142005-07-11 10:10:38 +00001091 return c->data;
1092 }
1093
1094 return NULL;
1095}
1096
1097static void cache_item( struct texenvprog_cache **cache,
1098 GLuint hash,
1099 void *key,
1100 void *data )
1101{
1102 struct texenvprog_cache *c = MALLOC(sizeof(*c));
1103 c->hash = hash;
1104 c->key = key;
1105 c->data = data;
1106 c->next = *cache;
1107 *cache = c;
1108}
1109
1110static GLuint hash_key( struct state_key *key )
1111{
1112 GLuint *ikey = (GLuint *)key;
1113 GLuint hash = 0, i;
1114
1115 /* I'm sure this can be improved on, but speed is important:
1116 */
1117 for (i = 0; i < sizeof(*key)/sizeof(GLuint); i++)
1118 hash ^= ikey[i];
1119
1120 return hash;
1121}
1122
1123void _mesa_UpdateTexEnvProgram( GLcontext *ctx )
1124{
1125 struct state_key *key;
1126 GLuint hash;
Keith Whitwellc3626a92005-11-01 17:25:49 +00001127 struct fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001128
Keith Whitwellc3626a92005-11-01 17:25:49 +00001129 if (!ctx->FragmentProgram._Enabled) {
1130 key = make_state_key(ctx);
1131 hash = hash_key(key);
1132
1133 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1134 (struct fragment_program *)
1135 search_cache(ctx->Texture.env_fp_cache, hash, key, sizeof(*key));
Keith Whitwellce721142005-07-11 10:10:38 +00001136
Keith Whitwellc3626a92005-11-01 17:25:49 +00001137 if (!ctx->_TexEnvProgram) {
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001138 if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash);
Keith Whitwellce721142005-07-11 10:10:38 +00001139
Keith Whitwellc3626a92005-11-01 17:25:49 +00001140 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1141 (struct fragment_program *)
1142 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Keith Whitwellce721142005-07-11 10:10:38 +00001143
Keith Whitwellc3626a92005-11-01 17:25:49 +00001144 create_new_program(key, ctx, ctx->_TexEnvProgram);
Keith Whitwellce721142005-07-11 10:10:38 +00001145
Keith Whitwellc3626a92005-11-01 17:25:49 +00001146 cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram);
1147 } else {
Brian Paul5d7b49f2005-11-19 23:12:20 +00001148 _mesa_free(key);
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001149 if (0) _mesa_printf("Found existing texenv program for key %x\n", hash);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001150 }
1151 }
1152 else {
1153 ctx->FragmentProgram._Current = ctx->FragmentProgram.Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001154 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001155
1156 /* Tell the driver about the change. Could define a new target for
1157 * this?
1158 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001159 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1160 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
1161 (struct program *) ctx->FragmentProgram._Current);
1162 }
Keith Whitwellce721142005-07-11 10:10:38 +00001163}
1164
1165void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx )
1166{
1167 struct texenvprog_cache *a, *tmp;
1168
1169 for (a = ctx->Texture.env_fp_cache; a; a = tmp) {
1170 tmp = a->next;
Brian Paul5d7b49f2005-11-19 23:12:20 +00001171 _mesa_free(a->key);
1172 ctx->Driver.DeleteProgram(ctx, (struct program *) a->data);
1173 _mesa_free(a);
Keith Whitwellce721142005-07-11 10:10:38 +00001174 }
1175}