blob: 512d52704d822c5659598d5ac7bd3248e9c1e15e [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"
Brian Paul5b5c9312008-05-07 18:51:44 -060031#include "shader/program.h"
Brianc223c6b2007-07-04 13:15:20 -060032#include "shader/prog_parameter.h"
33#include "shader/prog_instruction.h"
34#include "shader/prog_print.h"
35#include "shader/prog_statevars.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000036#include "texenvprogram.h"
37
Brian Paul5b5c9312008-05-07 18:51:44 -060038
39struct texenvprog_cache_item
40{
41 GLuint hash;
42 void *key;
43 struct gl_fragment_program *data;
44 struct texenvprog_cache_item *next;
45};
46
47
Brian Paule998c342006-10-29 21:17:18 +000048/**
Brian2a8e9bb2007-10-23 10:24:53 -060049 * This MAX is probably a bit generous, but that's OK. There can be
50 * up to four instructions per texture unit (TEX + 3 for combine),
51 * then there's fog and specular add.
Brian Paule998c342006-10-29 21:17:18 +000052 */
Brian2a8e9bb2007-10-23 10:24:53 -060053#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 4) + 12)
Keith Whitwell15e75e02005-04-29 15:11:39 +000054
Keith Whitwell269e3892005-05-12 10:28:43 +000055#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)
Keith Whitwell15e75e02005-04-29 15:11:39 +000056
Keith Whitwellce721142005-07-11 10:10:38 +000057struct mode_opt {
Brian Paul5d7b49f2005-11-19 23:12:20 +000058 GLuint Source:4;
59 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000060};
61
62struct state_key {
Brian Paul5d7b49f2005-11-19 23:12:20 +000063 GLbitfield enabled_units;
64 GLuint separate_specular:1;
65 GLuint fog_enabled:1;
66 GLuint fog_mode:2;
Keith Whitwellce721142005-07-11 10:10:38 +000067
68 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000069 GLuint enabled:1;
70 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +020071 GLuint shadow:1;
Brian Paul5d7b49f2005-11-19 23:12:20 +000072 GLuint ScaleShiftRGB:2;
73 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000074
Brian Paul5d7b49f2005-11-19 23:12:20 +000075 GLuint NumArgsRGB:2;
76 GLuint ModeRGB:4;
Keith Whitwellce721142005-07-11 10:10:38 +000077 struct mode_opt OptRGB[3];
78
Brian Paul5d7b49f2005-11-19 23:12:20 +000079 GLuint NumArgsA:2;
80 GLuint ModeA:4;
Keith Whitwellce721142005-07-11 10:10:38 +000081 struct mode_opt OptA[3];
82 } unit[8];
83};
84
85#define FOG_LINEAR 0
86#define FOG_EXP 1
87#define FOG_EXP2 2
88#define FOG_UNKNOWN 3
89
90static GLuint translate_fog_mode( GLenum mode )
91{
92 switch (mode) {
93 case GL_LINEAR: return FOG_LINEAR;
94 case GL_EXP: return FOG_EXP;
95 case GL_EXP2: return FOG_EXP2;
96 default: return FOG_UNKNOWN;
97 }
98}
99
100#define OPR_SRC_COLOR 0
101#define OPR_ONE_MINUS_SRC_COLOR 1
102#define OPR_SRC_ALPHA 2
103#define OPR_ONE_MINUS_SRC_ALPHA 3
104#define OPR_ZERO 4
105#define OPR_ONE 5
106#define OPR_UNKNOWN 7
107
108static GLuint translate_operand( GLenum operand )
109{
110 switch (operand) {
111 case GL_SRC_COLOR: return OPR_SRC_COLOR;
112 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
113 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
114 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
115 case GL_ZERO: return OPR_ZERO;
116 case GL_ONE: return OPR_ONE;
117 default: return OPR_UNKNOWN;
118 }
119}
120
121#define SRC_TEXTURE 0
122#define SRC_TEXTURE0 1
123#define SRC_TEXTURE1 2
124#define SRC_TEXTURE2 3
125#define SRC_TEXTURE3 4
126#define SRC_TEXTURE4 5
127#define SRC_TEXTURE5 6
128#define SRC_TEXTURE6 7
129#define SRC_TEXTURE7 8
130#define SRC_CONSTANT 9
131#define SRC_PRIMARY_COLOR 10
132#define SRC_PREVIOUS 11
133#define SRC_UNKNOWN 15
134
135static GLuint translate_source( GLenum src )
136{
137 switch (src) {
138 case GL_TEXTURE: return SRC_TEXTURE;
139 case GL_TEXTURE0:
140 case GL_TEXTURE1:
141 case GL_TEXTURE2:
142 case GL_TEXTURE3:
143 case GL_TEXTURE4:
144 case GL_TEXTURE5:
145 case GL_TEXTURE6:
146 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
147 case GL_CONSTANT: return SRC_CONSTANT;
148 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
149 case GL_PREVIOUS: return SRC_PREVIOUS;
150 default: return SRC_UNKNOWN;
151 }
152}
153
154#define MODE_REPLACE 0
155#define MODE_MODULATE 1
156#define MODE_ADD 2
157#define MODE_ADD_SIGNED 3
158#define MODE_INTERPOLATE 4
159#define MODE_SUBTRACT 5
160#define MODE_DOT3_RGB 6
161#define MODE_DOT3_RGB_EXT 7
162#define MODE_DOT3_RGBA 8
163#define MODE_DOT3_RGBA_EXT 9
164#define MODE_MODULATE_ADD_ATI 10
165#define MODE_MODULATE_SIGNED_ADD_ATI 11
166#define MODE_MODULATE_SUBTRACT_ATI 12
167#define MODE_UNKNOWN 15
168
169static GLuint translate_mode( GLenum mode )
170{
171 switch (mode) {
172 case GL_REPLACE: return MODE_REPLACE;
173 case GL_MODULATE: return MODE_MODULATE;
174 case GL_ADD: return MODE_ADD;
175 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
176 case GL_INTERPOLATE: return MODE_INTERPOLATE;
177 case GL_SUBTRACT: return MODE_SUBTRACT;
178 case GL_DOT3_RGB: return MODE_DOT3_RGB;
179 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
180 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
181 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
182 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
183 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
184 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
185 default: return MODE_UNKNOWN;
186 }
187}
188
189#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000190static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000191{
192 switch (bit) {
193 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
194 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
195 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
196 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
197 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
198 default: return TEXTURE_UNKNOWN_INDEX;
199 }
200}
201
Brian Paul22db5352005-11-19 23:45:10 +0000202/**
203 * Examine current texture environment state and generate a unique
204 * key to identify it.
205 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000206static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000207{
Keith Whitwellce721142005-07-11 10:10:38 +0000208 GLuint i, j;
209
Keith Whitwell8065c122006-05-22 16:09:27 +0000210 memset(key, 0, sizeof(*key));
211
Keith Whitwellce721142005-07-11 10:10:38 +0000212 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000213 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Roland Scheideggerbf4a0fa2008-02-15 17:26:06 +0100214
215 if (!texUnit->_ReallyEnabled || !texUnit->Enabled)
Keith Whitwellce721142005-07-11 10:10:38 +0000216 continue;
217
218 key->unit[i].enabled = 1;
219 key->enabled_units |= (1<<i);
220
221 key->unit[i].source_index =
222 translate_tex_src_bit(texUnit->_ReallyEnabled);
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200223 key->unit[i].shadow = texUnit->_Current->CompareMode == GL_COMPARE_R_TO_TEXTURE;
Keith Whitwellce721142005-07-11 10:10:38 +0000224
225 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
226 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
227
228 key->unit[i].ModeRGB =
229 translate_mode(texUnit->_CurrentCombine->ModeRGB);
230 key->unit[i].ModeA =
231 translate_mode(texUnit->_CurrentCombine->ModeA);
232
233 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000234 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000235
236 for (j=0;j<3;j++) {
237 key->unit[i].OptRGB[j].Operand =
238 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
239 key->unit[i].OptA[j].Operand =
240 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
241 key->unit[i].OptRGB[j].Source =
242 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
243 key->unit[i].OptA[j].Source =
244 translate_source(texUnit->_CurrentCombine->SourceA[j]);
245 }
246 }
247
248 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
249 key->separate_specular = 1;
250
251 if (ctx->Fog.Enabled) {
252 key->fog_enabled = 1;
253 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
254 }
Keith Whitwellce721142005-07-11 10:10:38 +0000255}
256
Keith Whitwell15e75e02005-04-29 15:11:39 +0000257/* Use uregs to represent registers internally, translate to Mesa's
258 * expected formats on emit.
259 *
260 * NOTE: These are passed by value extensively in this file rather
261 * than as usual by pointer reference. If this disturbs you, try
262 * remembering they are just 32bits in size.
263 *
264 * GCC is smart enough to deal with these dword-sized structures in
265 * much the same way as if I had defined them as dwords and was using
266 * macros to access and set the fields. This is much nicer and easier
267 * to evolve.
268 */
269struct ureg {
270 GLuint file:4;
271 GLuint idx:8;
272 GLuint negatebase:1;
273 GLuint abs:1;
274 GLuint negateabs:1;
275 GLuint swz:12;
276 GLuint pad:5;
277};
278
Brian Paul13abf912006-04-13 19:17:13 +0000279static const struct ureg undef = {
Alan Hourihane8d972652006-08-10 13:12:00 +0000280 PROGRAM_UNDEFINED,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000281 ~0,
282 0,
283 0,
284 0,
285 0,
286 0
287};
288
Keith Whitwell15e75e02005-04-29 15:11:39 +0000289
Keith Whitwell15e75e02005-04-29 15:11:39 +0000290/* State used to build the fragment program:
291 */
292struct texenv_fragment_program {
Brian Paul122629f2006-07-20 16:49:57 +0000293 struct gl_fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000294 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000295 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000296
Brian Paulc8d17412005-12-14 03:06:16 +0000297 GLbitfield alu_temps; /* Track texture indirections, see spec. */
298 GLbitfield temps_output; /* Track texture indirections, see spec. */
299 GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000300 GLboolean error;
301
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000302 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000303 /* Reg containing each texture unit's sampled texture color,
304 * else undef.
305 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000306
307 struct ureg src_previous; /* Reg containing color from previous
308 * stage. May need to be decl'd.
309 */
310
311 GLuint last_tex_stage; /* Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000312
313 struct ureg half;
314 struct ureg one;
315 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000316};
317
318
319
320static struct ureg make_ureg(GLuint file, GLuint idx)
321{
322 struct ureg reg;
323 reg.file = file;
324 reg.idx = idx;
325 reg.negatebase = 0;
326 reg.abs = 0;
327 reg.negateabs = 0;
328 reg.swz = SWIZZLE_NOOP;
329 reg.pad = 0;
330 return reg;
331}
332
333static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
334{
335 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
336 GET_SWZ(reg.swz, y),
337 GET_SWZ(reg.swz, z),
338 GET_SWZ(reg.swz, w));
339
340 return reg;
341}
342
343static struct ureg swizzle1( struct ureg reg, int x )
344{
345 return swizzle(reg, x, x, x, x);
346}
347
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000348static struct ureg negate( struct ureg reg )
349{
350 reg.negatebase ^= 1;
351 return reg;
352}
353
Keith Whitwell15e75e02005-04-29 15:11:39 +0000354static GLboolean is_undef( struct ureg reg )
355{
Alan Hourihane8d972652006-08-10 13:12:00 +0000356 return reg.file == PROGRAM_UNDEFINED;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000357}
358
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000359
Keith Whitwell15e75e02005-04-29 15:11:39 +0000360static struct ureg get_temp( struct texenv_fragment_program *p )
361{
Brian Paul13abf912006-04-13 19:17:13 +0000362 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000363
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000364 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000365 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000366 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000367
368 /* Then any unused temporary:
369 */
370 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000371 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000372
Keith Whitwell15e75e02005-04-29 15:11:39 +0000373 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000374 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000375 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000376 }
377
Brian Paul13abf912006-04-13 19:17:13 +0000378 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000379 p->program->Base.NumTemporaries = bit;
380
Keith Whitwell93cd9232005-05-11 08:30:23 +0000381 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000382 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
383}
384
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000385static struct ureg get_tex_temp( struct texenv_fragment_program *p )
386{
387 int bit;
388
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000389 /* First try to find availble temp not previously used (to avoid
390 * starting a new texture indirection). According to the spec, the
391 * ~p->temps_output isn't necessary, but will keep it there for
392 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000393 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000394 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000395
396 /* Then any unused temporary:
397 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000398 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000399 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000400
401 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000402 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000403 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000404 }
405
Brian Paul13abf912006-04-13 19:17:13 +0000406 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000407 p->program->Base.NumTemporaries = bit;
408
Keith Whitwell93cd9232005-05-11 08:30:23 +0000409 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000410 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
411}
412
Keith Whitwell15e75e02005-04-29 15:11:39 +0000413
414static void release_temps( struct texenv_fragment_program *p )
415{
Brian Paul05051032005-11-01 04:36:33 +0000416 GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000417
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000418 /* KW: To support tex_env_crossbar, don't release the registers in
419 * temps_output.
420 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000421 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000422 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000423 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000424 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000425}
426
427
Brian9fe3e2e2007-02-23 11:44:14 -0700428static struct ureg register_param5( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000429 GLint s0,
430 GLint s1,
431 GLint s2,
432 GLint s3,
Brian9fe3e2e2007-02-23 11:44:14 -0700433 GLint s4)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000434{
Brian9fe3e2e2007-02-23 11:44:14 -0700435 gl_state_index tokens[STATE_LENGTH];
Keith Whitwell47b29f52005-05-04 11:44:44 +0000436 GLuint idx;
437 tokens[0] = s0;
438 tokens[1] = s1;
439 tokens[2] = s2;
440 tokens[3] = s3;
441 tokens[4] = s4;
Brian Paulde997602005-11-12 17:53:14 +0000442 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000443 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000444}
445
Keith Whitwell47b29f52005-05-04 11:44:44 +0000446
Brian9fe3e2e2007-02-23 11:44:14 -0700447#define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
448#define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
449#define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
450#define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000451
452
453static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
454{
Brian Paulde997602005-11-12 17:53:14 +0000455 p->program->Base.InputsRead |= (1 << input);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000456 return make_ureg(PROGRAM_INPUT, input);
457}
458
459
Brian Paul7e807512005-11-05 17:10:45 +0000460static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000461 struct ureg ureg )
462{
463 reg->File = ureg.file;
464 reg->Index = ureg.idx;
465 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000466 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000467 reg->Abs = ureg.abs;
468 reg->NegateAbs = ureg.negateabs;
469}
470
Brian Paul7e807512005-11-05 17:10:45 +0000471static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000472 struct ureg ureg, GLuint mask )
473{
474 dst->File = ureg.file;
475 dst->Index = ureg.idx;
476 dst->WriteMask = mask;
Brianc9d495c2007-10-23 10:55:24 -0600477 dst->CondMask = COND_TR; /* always pass cond test */
478 dst->CondSwizzle = SWIZZLE_NOOP;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000479}
480
Brian Paul7e807512005-11-05 17:10:45 +0000481static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000482emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000483 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000484 struct ureg dest,
485 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000486 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000487 struct ureg src0,
488 struct ureg src1,
489 struct ureg src2 )
490{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000491 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000492 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Brian2a8e9bb2007-10-23 10:24:53 -0600493
494 assert(nr < MAX_INSTRUCTIONS);
495
Brian Pauld6272e02006-10-29 18:03:16 +0000496 _mesa_init_instructions(inst, 1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000497 inst->Opcode = op;
498
Keith Whitwell47b29f52005-05-04 11:44:44 +0000499 emit_arg( &inst->SrcReg[0], src0 );
500 emit_arg( &inst->SrcReg[1], src1 );
501 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000502
Brian Paule31ac052005-11-20 17:52:40 +0000503 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000504
505 emit_dst( &inst->DstReg, dest, mask );
506
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000507 /* Accounting for indirection tracking:
508 */
509 if (dest.file == PROGRAM_TEMPORARY)
510 p->temps_output |= 1 << dest.idx;
511
Keith Whitwell15e75e02005-04-29 15:11:39 +0000512 return inst;
513}
514
515
516static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000517 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000518 struct ureg dest,
519 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000520 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000521 struct ureg src0,
522 struct ureg src1,
523 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000524{
525 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
526
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000527 /* Accounting for indirection tracking:
528 */
529 if (src0.file == PROGRAM_TEMPORARY)
530 p->alu_temps |= 1 << src0.idx;
531
532 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
533 p->alu_temps |= 1 << src1.idx;
534
535 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
536 p->alu_temps |= 1 << src2.idx;
537
538 if (dest.file == PROGRAM_TEMPORARY)
539 p->alu_temps |= 1 << dest.idx;
540
Brian21f99792007-01-09 11:00:21 -0700541 p->program->Base.NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000542 return dest;
543}
544
545static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000546 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000547 struct ureg dest,
548 GLuint destmask,
549 GLuint tex_unit,
550 GLuint tex_idx,
551 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000552{
Brian Paul7e807512005-11-05 17:10:45 +0000553 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000554 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000555 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000556 coord, /* arg 0? */
557 undef,
558 undef);
559
Brian Paul7e807512005-11-05 17:10:45 +0000560 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000561 inst->TexSrcUnit = tex_unit;
562
Brian21f99792007-01-09 11:00:21 -0700563 p->program->Base.NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000564
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000565 /* Is this a texture indirection?
566 */
567 if ((coord.file == PROGRAM_TEMPORARY &&
568 (p->temps_output & (1<<coord.idx))) ||
569 (dest.file == PROGRAM_TEMPORARY &&
570 (p->alu_temps & (1<<dest.idx)))) {
Brian21f99792007-01-09 11:00:21 -0700571 p->program->Base.NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000572 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000573 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000574 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000575 }
576
577 return dest;
578}
579
580
Keith Whitwell47b29f52005-05-04 11:44:44 +0000581static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000582 GLfloat s0,
583 GLfloat s1,
584 GLfloat s2,
585 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000586{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000587 GLfloat values[4];
Briana90046f2006-12-15 10:07:26 -0700588 GLuint idx, swizzle;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000589 values[0] = s0;
590 values[1] = s1;
591 values[2] = s2;
592 values[3] = s3;
Briana90046f2006-12-15 10:07:26 -0700593 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
594 &swizzle );
595 ASSERT(swizzle == SWIZZLE_NOOP);
Keith Whitwell47b29f52005-05-04 11:44:44 +0000596 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000597}
598
Keith Whitwelle4902422005-05-11 15:16:35 +0000599#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000600#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
601#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
602#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000603
604
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000605static struct ureg get_one( struct texenv_fragment_program *p )
606{
607 if (is_undef(p->one))
608 p->one = register_scalar_const(p, 1.0);
609 return p->one;
610}
611
612static struct ureg get_half( struct texenv_fragment_program *p )
613{
614 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000615 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000616 return p->half;
617}
618
619static struct ureg get_zero( struct texenv_fragment_program *p )
620{
621 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000622 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000623 return p->zero;
624}
625
Keith Whitwell15e75e02005-04-29 15:11:39 +0000626
Keith Whitwell15e75e02005-04-29 15:11:39 +0000627static void program_error( struct texenv_fragment_program *p, const char *msg )
628{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000629 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000630 p->error = 1;
631}
632
Keith Whitwell15e75e02005-04-29 15:11:39 +0000633static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000634 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000635{
636 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000637 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000638 assert(!is_undef(p->src_texture[unit]));
639 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000640
Keith Whitwellce721142005-07-11 10:10:38 +0000641 case SRC_TEXTURE0:
642 case SRC_TEXTURE1:
643 case SRC_TEXTURE2:
644 case SRC_TEXTURE3:
645 case SRC_TEXTURE4:
646 case SRC_TEXTURE5:
647 case SRC_TEXTURE6:
648 case SRC_TEXTURE7:
649 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
650 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000651
Keith Whitwellce721142005-07-11 10:10:38 +0000652 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000653 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000654
Keith Whitwellce721142005-07-11 10:10:38 +0000655 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000656 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000657
Keith Whitwellce721142005-07-11 10:10:38 +0000658 case SRC_PREVIOUS:
659 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000660 if (is_undef(p->src_previous))
661 return register_input(p, FRAG_ATTRIB_COL0);
662 else
663 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000664 }
665}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000666
Keith Whitwell15e75e02005-04-29 15:11:39 +0000667static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000668 GLuint mask,
669 GLuint unit,
670 GLuint source,
671 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000672{
673 struct ureg arg, src, one;
674
675 src = get_source(p, source, unit);
676
677 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000678 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000679 /* Get unused tmp,
680 * Emit tmp = 1.0 - arg.xyzw
681 */
682 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000683 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000684 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000685
Keith Whitwellce721142005-07-11 10:10:38 +0000686 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000687 if (mask == WRITEMASK_W)
688 return src;
689 else
Brian Paul22db5352005-11-19 23:45:10 +0000690 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000691 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000692 /* Get unused tmp,
693 * Emit tmp = 1.0 - arg.wwww
694 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000695 arg = get_temp(p);
696 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000697 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000698 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000699 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000700 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000701 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000702 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000703 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000704 default:
705 return src;
706 }
707}
708
Keith Whitwellce721142005-07-11 10:10:38 +0000709static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000710{
Brian Paul22db5352005-11-19 23:45:10 +0000711 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000712
713 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000714 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000715 return GL_FALSE;
716
Keith Whitwellce721142005-07-11 10:10:38 +0000717 switch(key->unit[unit].OptA[i].Operand) {
718 case OPR_SRC_ALPHA:
719 switch(key->unit[unit].OptRGB[i].Operand) {
720 case OPR_SRC_COLOR:
721 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000722 break;
723 default:
724 return GL_FALSE;
725 }
726 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000727 case OPR_ONE_MINUS_SRC_ALPHA:
728 switch(key->unit[unit].OptRGB[i].Operand) {
729 case OPR_ONE_MINUS_SRC_COLOR:
730 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000731 break;
732 default:
733 return GL_FALSE;
734 }
735 break;
736 default:
737 return GL_FALSE; /* impossible */
738 }
739 }
740
741 return GL_TRUE;
742}
743
Keith Whitwell15e75e02005-04-29 15:11:39 +0000744static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000745 struct ureg dest,
746 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000747 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000748 GLuint unit,
749 GLuint nr,
750 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000751 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000752{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000753 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000754 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000755 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000756
Brian Paul00630842005-12-12 15:27:55 +0000757 tmp = undef; /* silence warning (bug 5318) */
758
Keith Whitwell15e75e02005-04-29 15:11:39 +0000759 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000760 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000761
762 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000763 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000764 if (mask == WRITEMASK_XYZW && !saturate)
765 return src[0];
766 else
Brian Paul7e807512005-11-05 17:10:45 +0000767 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000768 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000769 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000770 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000771 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000772 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000773 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000774 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000775 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000776 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000777 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000778 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000779 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000780 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
781 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000782 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000783 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000784 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
785 */
Brian Paul7e807512005-11-05 17:10:45 +0000786 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000787
Keith Whitwellce721142005-07-11 10:10:38 +0000788 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000789 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000790
Keith Whitwellce721142005-07-11 10:10:38 +0000791 case MODE_DOT3_RGBA:
792 case MODE_DOT3_RGBA_EXT:
793 case MODE_DOT3_RGB_EXT:
794 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000795 struct ureg tmp0 = get_temp( p );
796 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000797 struct ureg neg1 = register_scalar_const(p, -1);
798 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000799
800 /* tmp0 = 2*src0 - 1
801 * tmp1 = 2*src1 - 1
802 *
803 * dst = tmp0 dot3 tmp1
804 */
Brian Paul7e807512005-11-05 17:10:45 +0000805 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000806 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000807
Brian Paulaa206952005-09-16 18:14:24 +0000808 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000809 tmp1 = tmp0;
810 else
Brian Paul7e807512005-11-05 17:10:45 +0000811 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000812 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000813 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000814 return dest;
815 }
Keith Whitwellce721142005-07-11 10:10:38 +0000816 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000817 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000818 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000819 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000820 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000821 /* Arg0 * Arg2 + Arg1 - 0.5 */
822 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000823 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000824 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
825 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000826 return dest;
827 }
Keith Whitwellce721142005-07-11 10:10:38 +0000828 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000829 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000830 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000831 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000832 default:
833 return src[0];
834 }
835}
836
Keith Whitwell15e75e02005-04-29 15:11:39 +0000837
Brian Paul22db5352005-11-19 23:45:10 +0000838/**
839 * Generate instructions for one texture unit's env/combiner mode.
840 */
841static struct ureg
842emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000843{
Keith Whitwellce721142005-07-11 10:10:38 +0000844 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000845 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000846 GLuint rgb_shift, alpha_shift;
847 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000848 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000849
Keith Whitwellce721142005-07-11 10:10:38 +0000850 if (!key->unit[unit].enabled) {
851 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000852 }
Keith Whitwellce721142005-07-11 10:10:38 +0000853
854 switch (key->unit[unit].ModeRGB) {
855 case MODE_DOT3_RGB_EXT:
856 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000857 rgb_shift = 0;
858 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000859 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000860 alpha_shift = 0;
861 rgb_shift = 0;
862 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000863 default:
Keith Whitwellce721142005-07-11 10:10:38 +0000864 rgb_shift = key->unit[unit].ScaleShiftRGB;
865 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000866 break;
867 }
Keith Whitwellce721142005-07-11 10:10:38 +0000868
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000869 /* If this is the very last calculation, emit direct to output reg:
870 */
Keith Whitwellce721142005-07-11 10:10:38 +0000871 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000872 unit != p->last_tex_stage ||
873 alpha_shift ||
874 rgb_shift)
875 dest = get_temp( p );
876 else
Brian Paul90ebb582005-11-02 18:06:12 +0000877 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000878
879 /* Emit the RGB and A combine ops
880 */
Keith Whitwellce721142005-07-11 10:10:38 +0000881 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
882 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000883 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
884 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000885 key->unit[unit].NumArgsRGB,
886 key->unit[unit].ModeRGB,
887 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000888 }
Keith Whitwellce721142005-07-11 10:10:38 +0000889 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
Roland Scheidegger9a451762007-07-03 14:27:41 +0200890 key->unit[unit].ModeRGB == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000891
892 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
893 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000894 key->unit[unit].NumArgsRGB,
895 key->unit[unit].ModeRGB,
896 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000897 }
898 else {
899 /* Need to do something to stop from re-emitting identical
900 * argument calculations here:
901 */
902 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
903 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000904 key->unit[unit].NumArgsRGB,
905 key->unit[unit].ModeRGB,
906 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000907 out = emit_combine( p, dest, WRITEMASK_W, saturate,
908 unit,
Keith Whitwellce721142005-07-11 10:10:38 +0000909 key->unit[unit].NumArgsA,
910 key->unit[unit].ModeA,
911 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000912 }
913
914 /* Deal with the final shift:
915 */
916 if (alpha_shift || rgb_shift) {
917 if (rgb_shift == alpha_shift) {
Keith Whitwelle4902422005-05-11 15:16:35 +0000918 shift = register_scalar_const(p, 1<<rgb_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000919 }
920 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000921 shift = register_const4f(p,
922 1<<rgb_shift,
923 1<<rgb_shift,
924 1<<rgb_shift,
925 1<<alpha_shift);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000926 }
Brian Paul7e807512005-11-05 17:10:45 +0000927 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000928 saturate, out, shift, undef );
929 }
930 else
931 return out;
932}
933
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000934
Brian Paul22db5352005-11-19 23:45:10 +0000935/**
936 * Generate instruction for getting a texture source term.
937 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000938static void load_texture( struct texenv_fragment_program *p, GLuint unit )
939{
940 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +0000941 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000942 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
943 struct ureg tmp = get_tex_temp( p );
944
Brian Paulbfb5ea32005-07-19 18:20:04 +0000945 if (dim == TEXTURE_UNKNOWN_INDEX)
946 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +0000947
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000948 /* TODO: Use D0_MASK_XY where possible.
949 */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200950 if (p->state->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +0000951 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
952 tmp, WRITEMASK_XYZW,
953 unit, dim, texcoord );
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +0200954 if (p->state->unit[unit].shadow)
955 p->program->Base.ShadowSamplers |= 1 << unit;
956 } else
Aapo Tahkolab8915342006-03-28 10:26:34 +0000957 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000958 }
959}
960
Keith Whitwell241b6b72005-05-23 09:50:34 +0000961static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000962 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000963{
964 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000965 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000966 load_texture(p, unit);
967 break;
968
Keith Whitwellce721142005-07-11 10:10:38 +0000969 case SRC_TEXTURE0:
970 case SRC_TEXTURE1:
971 case SRC_TEXTURE2:
972 case SRC_TEXTURE3:
973 case SRC_TEXTURE4:
974 case SRC_TEXTURE5:
975 case SRC_TEXTURE6:
976 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +0000977 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000978 break;
979
980 default:
981 break;
982 }
Keith Whitwell241b6b72005-05-23 09:50:34 +0000983
984 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000985}
986
Brian Paul22db5352005-11-19 23:45:10 +0000987
988/**
989 * Generate instructions for loading all texture source terms.
990 */
991static GLboolean
992load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000993{
Keith Whitwellce721142005-07-11 10:10:38 +0000994 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +0000995 GLuint i;
996
997 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
998 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000999 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001000
1001 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
1002 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
1003 }
1004
Keith Whitwell241b6b72005-05-23 09:50:34 +00001005 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001006}
1007
Brian Paul22db5352005-11-19 23:45:10 +00001008
1009/**
1010 * Generate a new fragment program which implements the context's
1011 * current texture env/combine mode.
1012 */
1013static void
Brian Paule998c342006-10-29 21:17:18 +00001014create_new_program(GLcontext *ctx, struct state_key *key,
Brian Paul122629f2006-07-20 16:49:57 +00001015 struct gl_fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001016{
Brian Paule998c342006-10-29 21:17:18 +00001017 struct prog_instruction instBuffer[MAX_INSTRUCTIONS];
Keith Whitwell15e75e02005-04-29 15:11:39 +00001018 struct texenv_fragment_program p;
1019 GLuint unit;
1020 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +00001021
Keith Whitwelle4902422005-05-11 15:16:35 +00001022 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +00001023 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001024 p.state = key;
1025 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001026
Brian Paule998c342006-10-29 21:17:18 +00001027 /* During code generation, use locally-allocated instruction buffer,
1028 * then alloc dynamic storage below.
1029 */
1030 p.program->Base.Instructions = instBuffer;
Keith Whitwell276330b2005-05-09 17:58:13 +00001031 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Brian21f99792007-01-09 11:00:21 -07001032 p.program->Base.NumTexIndirections = 1; /* correct? */
1033 p.program->Base.NumTexInstructions = 0;
1034 p.program->Base.NumAluInstructions = 0;
Brian1240eb22007-03-22 08:50:20 -06001035 p.program->Base.String = NULL;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001036 p.program->Base.NumInstructions =
Brian Paule998c342006-10-29 21:17:18 +00001037 p.program->Base.NumTemporaries =
1038 p.program->Base.NumParameters =
1039 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001040 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001041
Brian Paulde997602005-11-12 17:53:14 +00001042 p.program->Base.InputsRead = 0;
1043 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001044
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001045 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1046 p.src_texture[unit] = undef;
1047
Keith Whitwell47b29f52005-05-04 11:44:44 +00001048 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001049 p.half = undef;
1050 p.zero = undef;
1051 p.one = undef;
1052
Keith Whitwell15e75e02005-04-29 15:11:39 +00001053 p.last_tex_stage = 0;
Keith Whitwell93cd9232005-05-11 08:30:23 +00001054 release_temps(&p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001055
Keith Whitwellce721142005-07-11 10:10:38 +00001056 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001057 /* First pass - to support texture_env_crossbar, first identify
1058 * all referenced texture sources and emit texld instructions
1059 * for each:
1060 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001061 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001062 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001063 load_texunit_sources( &p, unit );
1064 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001065 }
1066
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001067 /* Second pass - emit combine instructions to build final color:
1068 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001069 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001070 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001071 p.src_previous = emit_texenv( &p, unit );
Keith Whitwell93cd9232005-05-11 08:30:23 +00001072 release_temps(&p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001073 }
1074 }
1075
Keith Whitwellce721142005-07-11 10:10:38 +00001076 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001077 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001078
Keith Whitwellce721142005-07-11 10:10:38 +00001079 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001080 /* Emit specular add.
1081 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001082 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001083 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1084 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001085 }
Brian Paulaa206952005-09-16 18:14:24 +00001086 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001087 /* Will wind up in here if no texture enabled or a couple of
1088 * other scenarios (GL_REPLACE for instance).
1089 */
Brian Paul7e807512005-11-05 17:10:45 +00001090 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001091 }
1092
Keith Whitwell47b29f52005-05-04 11:44:44 +00001093 /* Finish up:
1094 */
Brian Paul7e807512005-11-05 17:10:45 +00001095 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001096
Keith Whitwellce721142005-07-11 10:10:38 +00001097 if (key->fog_enabled) {
1098 /* Pull fog mode from GLcontext, the value in the state key is
1099 * a reduced value and not what is expected in FogOption
1100 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001101 p.program->FogOption = ctx->Fog.Mode;
Keith Whitwellce721142005-07-11 10:10:38 +00001102 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001103 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001104
Brian21f99792007-01-09 11:00:21 -07001105 if (p.program->Base.NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001106 program_error(&p, "Exceeded max nr indirect texture lookups");
1107
Brian21f99792007-01-09 11:00:21 -07001108 if (p.program->Base.NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001109 program_error(&p, "Exceeded max TEX instructions");
1110
Brian21f99792007-01-09 11:00:21 -07001111 if (p.program->Base.NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001112 program_error(&p, "Exceeded max ALU instructions");
1113
Brian Paul5d7b49f2005-11-19 23:12:20 +00001114 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001115
Brian Paule998c342006-10-29 21:17:18 +00001116 /* Allocate final instruction array */
Brian Paule998c342006-10-29 21:17:18 +00001117 program->Base.Instructions
1118 = _mesa_alloc_instructions(program->Base.NumInstructions);
1119 if (!program->Base.Instructions) {
1120 _mesa_error(ctx, GL_OUT_OF_MEMORY,
1121 "generating tex env program");
1122 return;
1123 }
Brian1240eb22007-03-22 08:50:20 -06001124 _mesa_copy_instructions(program->Base.Instructions, instBuffer,
1125 program->Base.NumInstructions);
Brian Paule998c342006-10-29 21:17:18 +00001126
Keith Whitwelldbeea252005-05-10 13:57:50 +00001127 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001128 */
Brian Paule998c342006-10-29 21:17:18 +00001129 if (ctx->Driver.ProgramStringNotify) {
1130 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1131 &p.program->Base );
1132 }
Keith Whitwelldbeea252005-05-10 13:57:50 +00001133
Brian Paule998c342006-10-29 21:17:18 +00001134 if (DISASSEM) {
1135 _mesa_print_program(&p.program->Base);
1136 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001137 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001138}
1139
Brian Paul5d7b49f2005-11-19 23:12:20 +00001140
Brian Paul122629f2006-07-20 16:49:57 +00001141static struct gl_fragment_program *
Brian Pauld9736db2006-05-23 02:44:46 +00001142search_cache(const struct texenvprog_cache *cache,
1143 GLuint hash,
Brian Paule4cb9cd2006-05-30 22:15:24 +00001144 const void *key,
Brian Pauld9736db2006-05-23 02:44:46 +00001145 GLuint keysize)
Keith Whitwellce721142005-07-11 10:10:38 +00001146{
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001147 struct texenvprog_cache_item *c;
Keith Whitwellce721142005-07-11 10:10:38 +00001148
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001149 for (c = cache->items[hash % cache->size]; c; c = c->next) {
1150 if (c->hash == hash && memcmp(c->key, key, keysize) == 0)
Brian Paul5b5c9312008-05-07 18:51:44 -06001151 return c->data;
Keith Whitwellce721142005-07-11 10:10:38 +00001152 }
1153
1154 return NULL;
1155}
1156
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001157static void rehash( struct texenvprog_cache *cache )
1158{
1159 struct texenvprog_cache_item **items;
1160 struct texenvprog_cache_item *c, *next;
1161 GLuint size, i;
1162
1163 size = cache->size * 3;
1164 items = (struct texenvprog_cache_item**) _mesa_malloc(size * sizeof(*items));
1165 _mesa_memset(items, 0, size * sizeof(*items));
1166
1167 for (i = 0; i < cache->size; i++)
1168 for (c = cache->items[i]; c; c = next) {
1169 next = c->next;
1170 c->next = items[c->hash % size];
1171 items[c->hash % size] = c;
1172 }
1173
1174 _mesa_free(cache->items);
1175 cache->items = items;
1176 cache->size = size;
1177}
1178
Brian Paul5b5c9312008-05-07 18:51:44 -06001179static void clear_cache(GLcontext *ctx, struct texenvprog_cache *cache)
Keith Whitwell8065c122006-05-22 16:09:27 +00001180{
1181 struct texenvprog_cache_item *c, *next;
1182 GLuint i;
1183
1184 for (i = 0; i < cache->size; i++) {
1185 for (c = cache->items[i]; c; c = next) {
1186 next = c->next;
1187 _mesa_free(c->key);
Brian Paul5b5c9312008-05-07 18:51:44 -06001188 _mesa_reference_fragprog(ctx, &c->data, NULL);
Keith Whitwell8065c122006-05-22 16:09:27 +00001189 _mesa_free(c);
1190 }
1191 cache->items[i] = NULL;
1192 }
1193
1194
1195 cache->n_items = 0;
1196}
1197
1198
Brian Paul5b5c9312008-05-07 18:51:44 -06001199static void cache_item( GLcontext *ctx,
1200 struct texenvprog_cache *cache,
Keith Whitwellce721142005-07-11 10:10:38 +00001201 GLuint hash,
Brian Paulb8f2f6f2006-05-23 01:55:31 +00001202 const struct state_key *key,
Brian Paul5b5c9312008-05-07 18:51:44 -06001203 struct gl_fragment_program *prog)
Keith Whitwellce721142005-07-11 10:10:38 +00001204{
Brian Paul5b5c9312008-05-07 18:51:44 -06001205 struct texenvprog_cache_item *c = CALLOC_STRUCT(texenvprog_cache_item);
Keith Whitwellce721142005-07-11 10:10:38 +00001206 c->hash = hash;
Keith Whitwell8065c122006-05-22 16:09:27 +00001207
1208 c->key = _mesa_malloc(sizeof(*key));
1209 memcpy(c->key, key, sizeof(*key));
1210
Nicolai Haehnle934a53e2008-06-01 00:01:46 +02001211 c->data = prog;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001212
Keith Whitwell8065c122006-05-22 16:09:27 +00001213 if (cache->n_items > cache->size * 1.5) {
1214 if (cache->size < 1000)
1215 rehash(cache);
1216 else
Brian Paul5b5c9312008-05-07 18:51:44 -06001217 clear_cache(ctx, cache);
Keith Whitwell8065c122006-05-22 16:09:27 +00001218 }
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001219
Keith Whitwell8065c122006-05-22 16:09:27 +00001220 cache->n_items++;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001221 c->next = cache->items[hash % cache->size];
1222 cache->items[hash % cache->size] = c;
Keith Whitwellce721142005-07-11 10:10:38 +00001223}
1224
Brian Pauld9736db2006-05-23 02:44:46 +00001225static GLuint hash_key( const struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +00001226{
1227 GLuint *ikey = (GLuint *)key;
1228 GLuint hash = 0, i;
1229
Keith Whitwell8065c122006-05-22 16:09:27 +00001230 /* Make a slightly better attempt at a hash function:
Keith Whitwellce721142005-07-11 10:10:38 +00001231 */
Keith Whitwell8065c122006-05-22 16:09:27 +00001232 for (i = 0; i < sizeof(*key)/sizeof(*ikey); i++)
1233 {
1234 hash += ikey[i];
1235 hash += (hash << 10);
1236 hash ^= (hash >> 6);
1237 }
Keith Whitwellce721142005-07-11 10:10:38 +00001238
1239 return hash;
1240}
1241
Briana90046f2006-12-15 10:07:26 -07001242
1243/**
1244 * If _MaintainTexEnvProgram is set we'll generate a fragment program that
1245 * implements the current texture env/combine mode.
1246 * This function generates that program and puts it into effect.
1247 */
1248void
1249_mesa_UpdateTexEnvProgram( GLcontext *ctx )
Keith Whitwellce721142005-07-11 10:10:38 +00001250{
Keith Whitwell8065c122006-05-22 16:09:27 +00001251 struct state_key key;
Keith Whitwellce721142005-07-11 10:10:38 +00001252 GLuint hash;
Brian Paul122629f2006-07-20 16:49:57 +00001253 const struct gl_fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001254
Briana90046f2006-12-15 10:07:26 -07001255 ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram);
1256
1257 /* If a conventional fragment program/shader isn't in effect... */
Brianefcfdbd2007-02-24 15:51:41 -07001258 if (!ctx->FragmentProgram._Enabled &&
Zou Nan haiac985702007-10-08 15:34:03 +08001259 (!ctx->Shader.CurrentProgram || !ctx->Shader.CurrentProgram->FragmentProgram)) {
Brian Paul5b5c9312008-05-07 18:51:44 -06001260 struct gl_fragment_program *newProg;
1261
Keith Whitwell8065c122006-05-22 16:09:27 +00001262 make_state_key(ctx, &key);
1263 hash = hash_key(&key);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001264
Brian Paul5b5c9312008-05-07 18:51:44 -06001265 newProg = search_cache(&ctx->Texture.env_fp_cache, hash, &key, sizeof(key));
Keith Whitwellce721142005-07-11 10:10:38 +00001266
Brian Paul5b5c9312008-05-07 18:51:44 -06001267 if (!newProg) {
1268 /* create new tex env program */
1269
Briana90046f2006-12-15 10:07:26 -07001270 if (0)
1271 _mesa_printf("Building new texenv proggy for key %x\n", hash);
1272
Brian Paul5b5c9312008-05-07 18:51:44 -06001273 newProg = (struct gl_fragment_program *)
Briana90046f2006-12-15 10:07:26 -07001274 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1275
Brian Paul5b5c9312008-05-07 18:51:44 -06001276 create_new_program(ctx, &key, newProg);
Briana90046f2006-12-15 10:07:26 -07001277
Nicolai Haehnle934a53e2008-06-01 00:01:46 +02001278 /* Our ownership of newProg is transferred to the cache */
Brian Paul5b5c9312008-05-07 18:51:44 -06001279 cache_item(ctx, &ctx->Texture.env_fp_cache, hash, &key, newProg);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001280 }
Brian Paul5b5c9312008-05-07 18:51:44 -06001281
1282 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, newProg);
1283 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, newProg);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001284 }
1285 else {
Xiang, Haihaode1e9882008-02-29 11:15:02 +08001286 /* _Current pointer has been updated in update_program */
Brianeecb3ab2008-03-09 10:41:50 -06001287 /* ctx->FragmentProgram._Current = ctx->FragmentProgram.Current; */
Keith Whitwellce721142005-07-11 10:10:38 +00001288 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001289
1290 /* Tell the driver about the change. Could define a new target for
1291 * this?
1292 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001293 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1294 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
Briana90046f2006-12-15 10:07:26 -07001295 (struct gl_program *) ctx->FragmentProgram._Current);
Brian Paul5d7b49f2005-11-19 23:12:20 +00001296 }
Keith Whitwellce721142005-07-11 10:10:38 +00001297}
1298
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001299
1300void _mesa_TexEnvProgramCacheInit( GLcontext *ctx )
1301{
Keith Whitwell8065c122006-05-22 16:09:27 +00001302 ctx->Texture.env_fp_cache.ctx = ctx;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001303 ctx->Texture.env_fp_cache.size = 17;
1304 ctx->Texture.env_fp_cache.n_items = 0;
1305 ctx->Texture.env_fp_cache.items = (struct texenvprog_cache_item **)
1306 _mesa_calloc(ctx->Texture.env_fp_cache.size *
1307 sizeof(struct texenvprog_cache_item));
1308}
1309
1310
Keith Whitwellce721142005-07-11 10:10:38 +00001311void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx )
1312{
Brian Paul5b5c9312008-05-07 18:51:44 -06001313 clear_cache(ctx, &ctx->Texture.env_fp_cache);
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001314 _mesa_free(ctx->Texture.env_fp_cache.items);
Keith Whitwellce721142005-07-11 10:10:38 +00001315}