blob: 04738b019b61c9e216743c51240d8bafd50d3ee6 [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
Brian Paul22db5352005-11-19 23:45:10 +0000184/**
185 * Examine current texture environment state and generate a unique
186 * key to identify it.
187 */
188static struct state_key *
189make_state_key(GLcontext *ctx)
Keith Whitwellce721142005-07-11 10:10:38 +0000190{
191 struct state_key *key = CALLOC_STRUCT(state_key);
192 GLuint i, j;
193
194 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
195 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
196
197 if (!texUnit->_ReallyEnabled)
198 continue;
199
200 key->unit[i].enabled = 1;
201 key->enabled_units |= (1<<i);
202
203 key->unit[i].source_index =
204 translate_tex_src_bit(texUnit->_ReallyEnabled);
205
206 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
207 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
208
209 key->unit[i].ModeRGB =
210 translate_mode(texUnit->_CurrentCombine->ModeRGB);
211 key->unit[i].ModeA =
212 translate_mode(texUnit->_CurrentCombine->ModeA);
213
214 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
215 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftRGB;
216
217 for (j=0;j<3;j++) {
218 key->unit[i].OptRGB[j].Operand =
219 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
220 key->unit[i].OptA[j].Operand =
221 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
222 key->unit[i].OptRGB[j].Source =
223 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
224 key->unit[i].OptA[j].Source =
225 translate_source(texUnit->_CurrentCombine->SourceA[j]);
226 }
227 }
228
229 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
230 key->separate_specular = 1;
231
232 if (ctx->Fog.Enabled) {
233 key->fog_enabled = 1;
234 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
235 }
236
237 return key;
238}
239
Keith Whitwell15e75e02005-04-29 15:11:39 +0000240/* Use uregs to represent registers internally, translate to Mesa's
241 * expected formats on emit.
242 *
243 * NOTE: These are passed by value extensively in this file rather
244 * than as usual by pointer reference. If this disturbs you, try
245 * remembering they are just 32bits in size.
246 *
247 * GCC is smart enough to deal with these dword-sized structures in
248 * much the same way as if I had defined them as dwords and was using
249 * macros to access and set the fields. This is much nicer and easier
250 * to evolve.
251 */
252struct ureg {
253 GLuint file:4;
254 GLuint idx:8;
255 GLuint negatebase:1;
256 GLuint abs:1;
257 GLuint negateabs:1;
258 GLuint swz:12;
259 GLuint pad:5;
260};
261
262const static struct ureg undef = {
263 ~0,
264 ~0,
265 0,
266 0,
267 0,
268 0,
269 0
270};
271
Keith Whitwell15e75e02005-04-29 15:11:39 +0000272
Keith Whitwell15e75e02005-04-29 15:11:39 +0000273/* State used to build the fragment program:
274 */
275struct texenv_fragment_program {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000276 struct fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000277 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000278 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000279
Brian Paulc8d17412005-12-14 03:06:16 +0000280 GLbitfield alu_temps; /* Track texture indirections, see spec. */
281 GLbitfield temps_output; /* Track texture indirections, see spec. */
282 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000283 GLboolean error;
284
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000285 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000286 /* Reg containing each texture unit's sampled texture color,
287 * else undef.
288 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000289
290 struct ureg src_previous; /* Reg containing color from previous
291 * stage. May need to be decl'd.
292 */
293
294 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000295
296 struct ureg half;
297 struct ureg one;
298 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000299};
300
301
302
303static struct ureg make_ureg(GLuint file, GLuint idx)
304{
305 struct ureg reg;
306 reg.file = file;
307 reg.idx = idx;
308 reg.negatebase = 0;
309 reg.abs = 0;
310 reg.negateabs = 0;
311 reg.swz = SWIZZLE_NOOP;
312 reg.pad = 0;
313 return reg;
314}
315
316static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
317{
318 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
319 GET_SWZ(reg.swz, y),
320 GET_SWZ(reg.swz, z),
321 GET_SWZ(reg.swz, w));
322
323 return reg;
324}
325
326static struct ureg swizzle1( struct ureg reg, int x )
327{
328 return swizzle(reg, x, x, x, x);
329}
330
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000331static struct ureg negate( struct ureg reg )
332{
333 reg.negatebase ^= 1;
334 return reg;
335}
336
Keith Whitwell15e75e02005-04-29 15:11:39 +0000337static GLboolean is_undef( struct ureg reg )
338{
339 return reg.file == 0xf;
340}
341
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000342
Keith Whitwell15e75e02005-04-29 15:11:39 +0000343static struct ureg get_temp( struct texenv_fragment_program *p )
344{
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000345 int bit;
346
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000347 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000348 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000349 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000350
351 /* Then any unused temporary:
352 */
353 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000354 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000355
Keith Whitwell15e75e02005-04-29 15:11:39 +0000356 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000357 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000358 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000359 }
360
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000361 if (bit > p->program->Base.NumTemporaries)
362 p->program->Base.NumTemporaries = bit;
363
Keith Whitwell93cd9232005-05-11 08:30:23 +0000364 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000365 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
366}
367
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000368static struct ureg get_tex_temp( struct texenv_fragment_program *p )
369{
370 int bit;
371
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000372 /* First try to find availble temp not previously used (to avoid
373 * starting a new texture indirection). According to the spec, the
374 * ~p->temps_output isn't necessary, but will keep it there for
375 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000376 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000377 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000378
379 /* Then any unused temporary:
380 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000381 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000382 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000383
384 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000385 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000386 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000387 }
388
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000389 if (bit > p->program->Base.NumTemporaries)
390 p->program->Base.NumTemporaries = bit;
391
Keith Whitwell93cd9232005-05-11 08:30:23 +0000392 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000393 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
394}
395
Keith Whitwell15e75e02005-04-29 15:11:39 +0000396
397static void release_temps( struct texenv_fragment_program *p )
398{
Brian Paul05051032005-11-01 04:36:33 +0000399 GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000400
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000401 /* KW: To support tex_env_crossbar, don't release the registers in
402 * temps_output.
403 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000404 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000405 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000406 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000407 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000408}
409
410
Keith Whitwell47b29f52005-05-04 11:44:44 +0000411static struct ureg register_param6( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000412 GLint s0,
413 GLint s1,
414 GLint s2,
415 GLint s3,
416 GLint s4,
417 GLint s5)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000418{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000419 GLint tokens[6];
420 GLuint idx;
421 tokens[0] = s0;
422 tokens[1] = s1;
423 tokens[2] = s2;
424 tokens[3] = s3;
425 tokens[4] = s4;
426 tokens[5] = s5;
Brian Paulde997602005-11-12 17:53:14 +0000427 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000428 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000429}
430
Keith Whitwell47b29f52005-05-04 11:44:44 +0000431
432#define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0)
433#define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0)
434#define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0)
435#define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0)
436
437
438static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
439{
Brian Paulde997602005-11-12 17:53:14 +0000440 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000441 return make_ureg(PROGRAM_INPUT, input);
442}
443
444
Brian Paul7e807512005-11-05 17:10:45 +0000445static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000446 struct ureg ureg )
447{
448 reg->File = ureg.file;
449 reg->Index = ureg.idx;
450 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000451 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000452 reg->Abs = ureg.abs;
453 reg->NegateAbs = ureg.negateabs;
454}
455
Brian Paul7e807512005-11-05 17:10:45 +0000456static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000457 struct ureg ureg, GLuint mask )
458{
459 dst->File = ureg.file;
460 dst->Index = ureg.idx;
461 dst->WriteMask = mask;
462 dst->CondMask = 0;
463 dst->CondSwizzle = 0;
464}
465
Brian Paul7e807512005-11-05 17:10:45 +0000466static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000467emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000468 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000469 struct ureg dest,
470 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000471 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000472 struct ureg src0,
473 struct ureg src1,
474 struct ureg src2 )
475{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000476 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000477 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000478
Brian Paul5d7b49f2005-11-19 23:12:20 +0000479 _mesa_init_instruction(inst);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000480 inst->Opcode = op;
481
Keith Whitwell47b29f52005-05-04 11:44:44 +0000482 emit_arg( &inst->SrcReg[0], src0 );
483 emit_arg( &inst->SrcReg[1], src1 );
484 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000485
Brian Paule31ac052005-11-20 17:52:40 +0000486 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000487
488 emit_dst( &inst->DstReg, dest, mask );
489
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000490 /* Accounting for indirection tracking:
491 */
492 if (dest.file == PROGRAM_TEMPORARY)
493 p->temps_output |= 1 << dest.idx;
494
Keith Whitwell15e75e02005-04-29 15:11:39 +0000495 return inst;
496}
497
498
499static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000500 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000501 struct ureg dest,
502 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000503 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000504 struct ureg src0,
505 struct ureg src1,
506 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000507{
508 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
509
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000510 /* Accounting for indirection tracking:
511 */
512 if (src0.file == PROGRAM_TEMPORARY)
513 p->alu_temps |= 1 << src0.idx;
514
515 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
516 p->alu_temps |= 1 << src1.idx;
517
518 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
519 p->alu_temps |= 1 << src2.idx;
520
521 if (dest.file == PROGRAM_TEMPORARY)
522 p->alu_temps |= 1 << dest.idx;
523
Keith Whitwell47b29f52005-05-04 11:44:44 +0000524 p->program->NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000525 return dest;
526}
527
528static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000529 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000530 struct ureg dest,
531 GLuint destmask,
532 GLuint tex_unit,
533 GLuint tex_idx,
534 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000535{
Brian Paul7e807512005-11-05 17:10:45 +0000536 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000537 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000538 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000539 coord, /* arg 0? */
540 undef,
541 undef);
542
Brian Paul7e807512005-11-05 17:10:45 +0000543 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000544 inst->TexSrcUnit = tex_unit;
545
Keith Whitwell47b29f52005-05-04 11:44:44 +0000546 p->program->NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000547
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000548 /* Is this a texture indirection?
549 */
550 if ((coord.file == PROGRAM_TEMPORARY &&
551 (p->temps_output & (1<<coord.idx))) ||
552 (dest.file == PROGRAM_TEMPORARY &&
553 (p->alu_temps & (1<<dest.idx)))) {
Keith Whitwell47b29f52005-05-04 11:44:44 +0000554 p->program->NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000555 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000556 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000557 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000558 }
559
560 return dest;
561}
562
563
Keith Whitwell47b29f52005-05-04 11:44:44 +0000564static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000565 GLfloat s0,
566 GLfloat s1,
567 GLfloat s2,
568 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000569{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000570 GLfloat values[4];
571 GLuint idx;
572 values[0] = s0;
573 values[1] = s1;
574 values[2] = s2;
575 values[3] = s3;
Brian Paulde997602005-11-12 17:53:14 +0000576 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000577 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000578}
579
Keith Whitwelle4902422005-05-11 15:16:35 +0000580#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000581#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
582#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
583#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000584
585
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000586static struct ureg get_one( struct texenv_fragment_program *p )
587{
588 if (is_undef(p->one))
589 p->one = register_scalar_const(p, 1.0);
590 return p->one;
591}
592
593static struct ureg get_half( struct texenv_fragment_program *p )
594{
595 if (is_undef(p->half))
596 p->one = register_scalar_const(p, 0.5);
597 return p->half;
598}
599
600static struct ureg get_zero( struct texenv_fragment_program *p )
601{
602 if (is_undef(p->zero))
603 p->one = register_scalar_const(p, 0.0);
604 return p->zero;
605}
606
Keith Whitwell15e75e02005-04-29 15:11:39 +0000607
Keith Whitwell15e75e02005-04-29 15:11:39 +0000608static void program_error( struct texenv_fragment_program *p, const char *msg )
609{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000610 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000611 p->error = 1;
612}
613
Keith Whitwell15e75e02005-04-29 15:11:39 +0000614static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000615 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000616{
617 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000618 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000619 assert(!is_undef(p->src_texture[unit]));
620 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000621
Keith Whitwellce721142005-07-11 10:10:38 +0000622 case SRC_TEXTURE0:
623 case SRC_TEXTURE1:
624 case SRC_TEXTURE2:
625 case SRC_TEXTURE3:
626 case SRC_TEXTURE4:
627 case SRC_TEXTURE5:
628 case SRC_TEXTURE6:
629 case SRC_TEXTURE7:
630 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
631 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000632
Keith Whitwellce721142005-07-11 10:10:38 +0000633 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000634 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000635
Keith Whitwellce721142005-07-11 10:10:38 +0000636 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000637 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000638
Keith Whitwellce721142005-07-11 10:10:38 +0000639 case SRC_PREVIOUS:
640 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000641 if (is_undef(p->src_previous))
642 return register_input(p, FRAG_ATTRIB_COL0);
643 else
644 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000645 }
646}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000647
Keith Whitwell15e75e02005-04-29 15:11:39 +0000648static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000649 GLuint mask,
650 GLuint unit,
651 GLuint source,
652 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000653{
654 struct ureg arg, src, one;
655
656 src = get_source(p, source, unit);
657
658 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000659 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000660 /* Get unused tmp,
661 * Emit tmp = 1.0 - arg.xyzw
662 */
663 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000664 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000665 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000666
Keith Whitwellce721142005-07-11 10:10:38 +0000667 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000668 if (mask == WRITEMASK_W)
669 return src;
670 else
Brian Paul22db5352005-11-19 23:45:10 +0000671 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000672 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000673 /* Get unused tmp,
674 * Emit tmp = 1.0 - arg.wwww
675 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000676 arg = get_temp(p);
677 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000678 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000679 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000680 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000681 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000682 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000683 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000684 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000685 default:
686 return src;
687 }
688}
689
Keith Whitwellce721142005-07-11 10:10:38 +0000690static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000691{
Brian Paul22db5352005-11-19 23:45:10 +0000692 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000693
694 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000695 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000696 return GL_FALSE;
697
Keith Whitwellce721142005-07-11 10:10:38 +0000698 switch(key->unit[unit].OptA[i].Operand) {
699 case OPR_SRC_ALPHA:
700 switch(key->unit[unit].OptRGB[i].Operand) {
701 case OPR_SRC_COLOR:
702 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000703 break;
704 default:
705 return GL_FALSE;
706 }
707 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000708 case OPR_ONE_MINUS_SRC_ALPHA:
709 switch(key->unit[unit].OptRGB[i].Operand) {
710 case OPR_ONE_MINUS_SRC_COLOR:
711 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000712 break;
713 default:
714 return GL_FALSE;
715 }
716 break;
717 default:
718 return GL_FALSE; /* impossible */
719 }
720 }
721
722 return GL_TRUE;
723}
724
Keith Whitwell15e75e02005-04-29 15:11:39 +0000725static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000726 struct ureg dest,
727 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000728 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000729 GLuint unit,
730 GLuint nr,
731 GLuint mode,
732 struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000733{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000734 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000735 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000736 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000737
Brian Paul00630842005-12-12 15:27:55 +0000738 tmp = undef; /* silence warning (bug 5318) */
739
Keith Whitwell15e75e02005-04-29 15:11:39 +0000740 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000741 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000742
743 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000744 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000745 if (mask == WRITEMASK_XYZW && !saturate)
746 return src[0];
747 else
Brian Paul7e807512005-11-05 17:10:45 +0000748 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000749 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000750 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000751 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000752 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000753 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000754 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000755 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000756 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000757 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000758 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000759 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000760 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
761 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000762 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000763 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000764 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
765 */
Brian Paul7e807512005-11-05 17:10:45 +0000766 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000767
Keith Whitwellce721142005-07-11 10:10:38 +0000768 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000769 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000770
Keith Whitwellce721142005-07-11 10:10:38 +0000771 case MODE_DOT3_RGBA:
772 case MODE_DOT3_RGBA_EXT:
773 case MODE_DOT3_RGB_EXT:
774 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000775 struct ureg tmp0 = get_temp( p );
776 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000777 struct ureg neg1 = register_scalar_const(p, -1);
778 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000779
780 /* tmp0 = 2*src0 - 1
781 * tmp1 = 2*src1 - 1
782 *
783 * dst = tmp0 dot3 tmp1
784 */
Brian Paul7e807512005-11-05 17:10:45 +0000785 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000786 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000787
Brian Paulaa206952005-09-16 18:14:24 +0000788 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000789 tmp1 = tmp0;
790 else
Brian Paul7e807512005-11-05 17:10:45 +0000791 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000792 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000793 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000794 return dest;
795 }
Keith Whitwellce721142005-07-11 10:10:38 +0000796 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000797 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000798 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000799 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000800 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000801 /* Arg0 * Arg2 + Arg1 - 0.5 */
802 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000803 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000804 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
805 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000806 return dest;
807 }
Keith Whitwellce721142005-07-11 10:10:38 +0000808 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000809 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000810 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000811 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000812 default:
813 return src[0];
814 }
815}
816
Keith Whitwell15e75e02005-04-29 15:11:39 +0000817
Brian Paul22db5352005-11-19 23:45:10 +0000818/**
819 * Generate instructions for one texture unit's env/combiner mode.
820 */
821static struct ureg
822emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000823{
Keith Whitwellce721142005-07-11 10:10:38 +0000824 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000825 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000826 GLuint rgb_shift, alpha_shift;
827 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000828 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000829
Keith Whitwellce721142005-07-11 10:10:38 +0000830 if (!key->unit[unit].enabled) {
831 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000832 }
Keith Whitwellce721142005-07-11 10:10:38 +0000833
834 switch (key->unit[unit].ModeRGB) {
835 case MODE_DOT3_RGB_EXT:
836 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000837 rgb_shift = 0;
838 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000839 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000840 alpha_shift = 0;
841 rgb_shift = 0;
842 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000843 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000844 rgb_shift = key->unit[unit].ScaleShiftRGB;
845 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000846 break;
847 }
Keith Whitwellce721142005-07-11 10:10:38 +0000848
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000849 /* If this is the very last calculation, emit direct to output reg:
850 */
Keith Whitwellce721142005-07-11 10:10:38 +0000851 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000852 unit != p->last_tex_stage ||
853 alpha_shift ||
854 rgb_shift)
855 dest = get_temp( p );
856 else
Brian Paul90ebb582005-11-02 18:06:12 +0000857 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000858
859 /* Emit the RGB and A combine ops
860 */
Keith Whitwellce721142005-07-11 10:10:38 +0000861 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
862 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000863 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
864 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000865 key->unit[unit].NumArgsRGB,
866 key->unit[unit].ModeRGB,
867 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000868 }
Keith Whitwellce721142005-07-11 10:10:38 +0000869 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
870 key->unit[unit].ModeA == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000871
872 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
873 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000874 key->unit[unit].NumArgsRGB,
875 key->unit[unit].ModeRGB,
876 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000877 }
878 else {
879 /* Need to do something to stop from re-emitting identical
880 * argument calculations here:
881 */
882 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
883 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000884 key->unit[unit].NumArgsRGB,
885 key->unit[unit].ModeRGB,
886 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000887 out = emit_combine( p, dest, WRITEMASK_W, saturate,
888 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000889 key->unit[unit].NumArgsA,
890 key->unit[unit].ModeA,
891 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000892 }
893
894 /* Deal with the final shift:
895 */
896 if (alpha_shift || rgb_shift) {
897 if (rgb_shift == alpha_shift) {
Keith Whitwelle4902422005-05-11 15:16:35 +0000898 shift = register_scalar_const(p, 1<<rgb_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000899 }
900 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000901 shift = register_const4f(p,
902 1<<rgb_shift,
903 1<<rgb_shift,
904 1<<rgb_shift,
905 1<<alpha_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000906 }
Brian Paul7e807512005-11-05 17:10:45 +0000907 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000908 saturate, out, shift, undef );
909 }
910 else
911 return out;
912}
913
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000914
Brian Paul22db5352005-11-19 23:45:10 +0000915/**
916 * Generate instruction for getting a texture source term.
917 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000918static void load_texture( struct texenv_fragment_program *p, GLuint unit )
919{
920 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000921 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000922 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
923 struct ureg tmp = get_tex_temp( p );
924
Brian Paulbfb5ea32005-07-19 18:20:04 +0000925 if (dim == TEXTURE_UNKNOWN_INDEX)
926 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000927
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000928 /* TODO: Use D0_MASK_XY where possible.
929 */
Brian Paul7e807512005-11-05 17:10:45 +0000930 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000931 tmp, WRITEMASK_XYZW,
932 unit, dim, texcoord );
933 }
934}
935
Keith Whitwell241b6b72005-05-23 09:50:34 +0000936static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000937 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000938{
939 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000940 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000941 load_texture(p, unit);
942 break;
943
Keith Whitwellce721142005-07-11 10:10:38 +0000944 case SRC_TEXTURE0:
945 case SRC_TEXTURE1:
946 case SRC_TEXTURE2:
947 case SRC_TEXTURE3:
948 case SRC_TEXTURE4:
949 case SRC_TEXTURE5:
950 case SRC_TEXTURE6:
951 case SRC_TEXTURE7:
952 if (!p->state->unit[src - SRC_TEXTURE0].enabled)
Keith Whitwell241b6b72005-05-23 09:50:34 +0000953 return GL_FALSE;
Keith Whitwellce721142005-07-11 10:10:38 +0000954 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000955 break;
956
957 default:
958 break;
959 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000960
961 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000962}
963
Brian Paul22db5352005-11-19 23:45:10 +0000964
965/**
966 * Generate instructions for loading all texture source terms.
967 */
968static GLboolean
969load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000970{
Keith Whitwellce721142005-07-11 10:10:38 +0000971 struct state_key *key = p->state;
972 int i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000973 for (i = 0; i < nr; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000974 if (!load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit) ||
975 !load_texenv_source( p, key->unit[unit].OptA[i].Source, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +0000976 return GL_FALSE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000977 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000978 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000979}
980
Brian Paul22db5352005-11-19 23:45:10 +0000981
982/**
983 * Generate a new fragment program which implements the context's
984 * current texture env/combine mode.
985 */
986static void
987create_new_program(struct state_key *key, GLcontext *ctx,
988 struct fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000989{
990 struct texenv_fragment_program p;
991 GLuint unit;
992 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +0000993
Keith Whitwelle4902422005-05-11 15:16:35 +0000994 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +0000995 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000996 p.state = key;
997 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000998
Brian Paul5d7b49f2005-11-19 23:12:20 +0000999 p.program->Base.Instructions =
Brian Paul95801792005-12-06 15:41:43 +00001000 (struct prog_instruction*) _mesa_malloc(sizeof(struct prog_instruction) * MAX_INSTRUCTIONS);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001001 p.program->Base.NumInstructions = 0;
Keith Whitwell276330b2005-05-09 17:58:13 +00001002 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001003 p.program->NumTexIndirections = 1; /* correct? */
1004 p.program->NumTexInstructions = 0;
1005 p.program->NumAluInstructions = 0;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001006 p.program->Base.String = 0;
1007 p.program->Base.NumInstructions =
Keith Whitwellce721142005-07-11 10:10:38 +00001008 p.program->Base.NumTemporaries =
1009 p.program->Base.NumParameters =
1010 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001011 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001012
Brian Paulde997602005-11-12 17:53:14 +00001013 p.program->Base.InputsRead = 0;
1014 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001015
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001016 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1017 p.src_texture[unit] = undef;
1018
Keith Whitwell47b29f52005-05-04 11:44:44 +00001019 p.src_previous = undef;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001020 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001021 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001022
Keith Whitwellce721142005-07-11 10:10:38 +00001023 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001024 /* First pass - to support texture_env_crossbar, first identify
1025 * all referenced texture sources and emit texld instructions
1026 * for each:
1027 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001028 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001029 if (key->unit[unit].enabled) {
1030 if (load_texunit_sources( &p, unit ))
Keith Whitwell241b6b72005-05-23 09:50:34 +00001031 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001032 }
1033
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001034 /* Second pass - emit combine instructions to build final color:
1035 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001036 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001037 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001038 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001039 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001040 }
1041 }
1042
Keith Whitwellce721142005-07-11 10:10:38 +00001043 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001044 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001045
Keith Whitwellce721142005-07-11 10:10:38 +00001046 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001047 /* Emit specular add.
1048 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001049 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001050 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1051 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001052 }
Brian Paulaa206952005-09-16 18:14:24 +00001053 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001054 /* Will wind up in here if no texture enabled or a couple of
1055 * other scenarios (GL_REPLACE for instance).
1056 */
Brian Paul7e807512005-11-05 17:10:45 +00001057 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001058 }
1059
Keith Whitwell47b29f52005-05-04 11:44:44 +00001060 /* Finish up:
1061 */
Brian Paul7e807512005-11-05 17:10:45 +00001062 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001063
Keith Whitwellce721142005-07-11 10:10:38 +00001064 if (key->fog_enabled) {
1065 /* Pull fog mode from GLcontext, the value in the state key is
1066 * a reduced value and not what is expected in FogOption
1067 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001068 p.program->FogOption = ctx->Fog.Mode;
Keith Whitwellce721142005-07-11 10:10:38 +00001069 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001070 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001071
Brian Paul05051032005-11-01 04:36:33 +00001072 if (p.program->NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001073 program_error(&p, "Exceeded max nr indirect texture lookups");
1074
Brian Paul05051032005-11-01 04:36:33 +00001075 if (p.program->NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001076 program_error(&p, "Exceeded max TEX instructions");
1077
Brian Paul05051032005-11-01 04:36:33 +00001078 if (p.program->NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001079 program_error(&p, "Exceeded max ALU instructions");
1080
Brian Paul5d7b49f2005-11-19 23:12:20 +00001081 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001082
Keith Whitwelldbeea252005-05-10 13:57:50 +00001083 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001084 */
Keith Whitwelle4902422005-05-11 15:16:35 +00001085 if (ctx->Driver.ProgramStringNotify || DISASSEM) {
Keith Whitwellce721142005-07-11 10:10:38 +00001086 if (ctx->Driver.ProgramStringNotify)
1087 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1088 &p.program->Base );
Keith Whitwelldbeea252005-05-10 13:57:50 +00001089
Keith Whitwellce721142005-07-11 10:10:38 +00001090 if (DISASSEM) {
Brian Paulde997602005-11-12 17:53:14 +00001091 _mesa_print_program(&p.program->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001092 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001093 }
Keith Whitwelle4902422005-05-11 15:16:35 +00001094 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001095}
1096
Brian Paul5d7b49f2005-11-19 23:12:20 +00001097
Keith Whitwellce721142005-07-11 10:10:38 +00001098static void *search_cache( struct texenvprog_cache *cache,
1099 GLuint hash,
1100 const void *key,
1101 GLuint keysize)
1102{
1103 struct texenvprog_cache *c;
1104
1105 for (c = cache; c; c = c->next) {
Brian Paulaa206952005-09-16 18:14:24 +00001106 if (c->hash == hash && _mesa_memcmp(c->key, key, keysize) == 0)
Keith Whitwellce721142005-07-11 10:10:38 +00001107 return c->data;
1108 }
1109
1110 return NULL;
1111}
1112
1113static void cache_item( struct texenvprog_cache **cache,
1114 GLuint hash,
1115 void *key,
1116 void *data )
1117{
Brian Paul22db5352005-11-19 23:45:10 +00001118 struct texenvprog_cache *c = CALLOC_STRUCT(texenvprog_cache);
Keith Whitwellce721142005-07-11 10:10:38 +00001119 c->hash = hash;
1120 c->key = key;
1121 c->data = data;
1122 c->next = *cache;
1123 *cache = c;
1124}
1125
1126static GLuint hash_key( struct state_key *key )
1127{
1128 GLuint *ikey = (GLuint *)key;
1129 GLuint hash = 0, i;
1130
1131 /* I'm sure this can be improved on, but speed is important:
1132 */
1133 for (i = 0; i < sizeof(*key)/sizeof(GLuint); i++)
1134 hash ^= ikey[i];
1135
1136 return hash;
1137}
1138
1139void _mesa_UpdateTexEnvProgram( GLcontext *ctx )
1140{
1141 struct state_key *key;
1142 GLuint hash;
Keith Whitwellc3626a92005-11-01 17:25:49 +00001143 struct fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001144
Keith Whitwellc3626a92005-11-01 17:25:49 +00001145 if (!ctx->FragmentProgram._Enabled) {
1146 key = make_state_key(ctx);
1147 hash = hash_key(key);
1148
1149 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1150 (struct fragment_program *)
1151 search_cache(ctx->Texture.env_fp_cache, hash, key, sizeof(*key));
Keith Whitwellce721142005-07-11 10:10:38 +00001152
Keith Whitwellc3626a92005-11-01 17:25:49 +00001153 if (!ctx->_TexEnvProgram) {
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001154 if (0) _mesa_printf("Building new texenv proggy for key %x\n", hash);
Keith Whitwellce721142005-07-11 10:10:38 +00001155
Keith Whitwellc3626a92005-11-01 17:25:49 +00001156 ctx->FragmentProgram._Current = ctx->_TexEnvProgram =
1157 (struct fragment_program *)
1158 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Keith Whitwellce721142005-07-11 10:10:38 +00001159
Keith Whitwellc3626a92005-11-01 17:25:49 +00001160 create_new_program(key, ctx, ctx->_TexEnvProgram);
Keith Whitwellce721142005-07-11 10:10:38 +00001161
Keith Whitwellc3626a92005-11-01 17:25:49 +00001162 cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram);
1163 } else {
Brian Paul5d7b49f2005-11-19 23:12:20 +00001164 _mesa_free(key);
Aapo Tahkola40ca5b42005-11-18 17:57:27 +00001165 if (0) _mesa_printf("Found existing texenv program for key %x\n", hash);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001166 }
1167 }
1168 else {
1169 ctx->FragmentProgram._Current = ctx->FragmentProgram.Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001170 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001171
1172 /* Tell the driver about the change. Could define a new target for
1173 * this?
1174 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001175 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1176 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
1177 (struct program *) ctx->FragmentProgram._Current);
1178 }
Keith Whitwellce721142005-07-11 10:10:38 +00001179}
1180
1181void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx )
1182{
1183 struct texenvprog_cache *a, *tmp;
1184
1185 for (a = ctx->Texture.env_fp_cache; a; a = tmp) {
1186 tmp = a->next;
Brian Paul5d7b49f2005-11-19 23:12:20 +00001187 _mesa_free(a->key);
1188 ctx->Driver.DeleteProgram(ctx, (struct program *) a->data);
1189 _mesa_free(a);
Keith Whitwellce721142005-07-11 10:10:38 +00001190 }
1191}