blob: bd33cb4e0552ae7009d99ea808a02e911f2f2557 [file] [log] [blame]
Keith Whitwell15e75e02005-04-29 15:11:39 +00001/**************************************************************************
2 *
Brianf4a5ea22007-10-31 12:45:32 -06003 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
Keith Whitwell15e75e02005-04-29 15:11:39 +00004 * 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"
Brianf4a5ea22007-10-31 12:45:32 -060033#include "shader/prog_cache.h"
Brianc223c6b2007-07-04 13:15:20 -060034#include "shader/prog_instruction.h"
35#include "shader/prog_print.h"
36#include "shader/prog_statevars.h"
Brian83fad682007-09-25 15:20:04 -060037#include "shader/programopt.h"
Keith Whitwell15e75e02005-04-29 15:11:39 +000038#include "texenvprogram.h"
39
Brian Paul5b5c9312008-05-07 18:51:44 -060040
41struct texenvprog_cache_item
42{
43 GLuint hash;
44 void *key;
45 struct gl_fragment_program *data;
46 struct texenvprog_cache_item *next;
47};
48
49
Brian Paule998c342006-10-29 21:17:18 +000050/**
Brian Paulb5e1a932008-09-25 18:40:16 -060051 * Up to nine instructions per tex unit, plus fog, specular color.
Brian Paule998c342006-10-29 21:17:18 +000052 */
Brian Paulb5e1a932008-09-25 18:40:16 -060053#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 9) + 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 {
José Fonseca9972d712008-12-30 17:21:25 +000058 GLuint Source:4;
59 GLuint Operand:3;
Keith Whitwellce721142005-07-11 10:10:38 +000060};
61
62struct state_key {
Keith Whitwell6280e332008-10-03 13:51:56 +010063 GLuint nr_enabled_units:8;
64 GLuint enabled_units:8;
Brian Paul5d7b49f2005-11-19 23:12:20 +000065 GLuint separate_specular:1;
66 GLuint fog_enabled:1;
67 GLuint fog_mode:2;
Keith Whitwell6280e332008-10-03 13:51:56 +010068 GLuint inputs_available:12;
Keith Whitwellce721142005-07-11 10:10:38 +000069
70 struct {
Brian Paul5d7b49f2005-11-19 23:12:20 +000071 GLuint enabled:1;
72 GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +020073 GLuint shadow:1;
Brian Paul5d7b49f2005-11-19 23:12:20 +000074 GLuint ScaleShiftRGB:2;
75 GLuint ScaleShiftA:2;
Keith Whitwellce721142005-07-11 10:10:38 +000076
Brian Paul5d7b49f2005-11-19 23:12:20 +000077 GLuint NumArgsRGB:2;
78 GLuint ModeRGB:4;
Brian Paul5d7b49f2005-11-19 23:12:20 +000079 GLuint NumArgsA:2;
80 GLuint ModeA:4;
Keith Whitwell6280e332008-10-03 13:51:56 +010081
82 struct mode_opt OptRGB[3];
Keith Whitwellce721142005-07-11 10:10:38 +000083 struct mode_opt OptA[3];
84 } unit[8];
85};
86
87#define FOG_LINEAR 0
88#define FOG_EXP 1
89#define FOG_EXP2 2
90#define FOG_UNKNOWN 3
91
92static GLuint translate_fog_mode( GLenum mode )
93{
94 switch (mode) {
95 case GL_LINEAR: return FOG_LINEAR;
96 case GL_EXP: return FOG_EXP;
97 case GL_EXP2: return FOG_EXP2;
98 default: return FOG_UNKNOWN;
99 }
100}
101
102#define OPR_SRC_COLOR 0
103#define OPR_ONE_MINUS_SRC_COLOR 1
104#define OPR_SRC_ALPHA 2
105#define OPR_ONE_MINUS_SRC_ALPHA 3
106#define OPR_ZERO 4
107#define OPR_ONE 5
108#define OPR_UNKNOWN 7
109
110static GLuint translate_operand( GLenum operand )
111{
112 switch (operand) {
113 case GL_SRC_COLOR: return OPR_SRC_COLOR;
114 case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR;
115 case GL_SRC_ALPHA: return OPR_SRC_ALPHA;
116 case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA;
117 case GL_ZERO: return OPR_ZERO;
118 case GL_ONE: return OPR_ONE;
119 default: return OPR_UNKNOWN;
120 }
121}
122
123#define SRC_TEXTURE 0
124#define SRC_TEXTURE0 1
125#define SRC_TEXTURE1 2
126#define SRC_TEXTURE2 3
127#define SRC_TEXTURE3 4
128#define SRC_TEXTURE4 5
129#define SRC_TEXTURE5 6
130#define SRC_TEXTURE6 7
131#define SRC_TEXTURE7 8
132#define SRC_CONSTANT 9
133#define SRC_PRIMARY_COLOR 10
134#define SRC_PREVIOUS 11
135#define SRC_UNKNOWN 15
136
137static GLuint translate_source( GLenum src )
138{
139 switch (src) {
140 case GL_TEXTURE: return SRC_TEXTURE;
141 case GL_TEXTURE0:
142 case GL_TEXTURE1:
143 case GL_TEXTURE2:
144 case GL_TEXTURE3:
145 case GL_TEXTURE4:
146 case GL_TEXTURE5:
147 case GL_TEXTURE6:
148 case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0);
149 case GL_CONSTANT: return SRC_CONSTANT;
150 case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR;
151 case GL_PREVIOUS: return SRC_PREVIOUS;
152 default: return SRC_UNKNOWN;
153 }
154}
155
156#define MODE_REPLACE 0
157#define MODE_MODULATE 1
158#define MODE_ADD 2
159#define MODE_ADD_SIGNED 3
160#define MODE_INTERPOLATE 4
161#define MODE_SUBTRACT 5
162#define MODE_DOT3_RGB 6
163#define MODE_DOT3_RGB_EXT 7
164#define MODE_DOT3_RGBA 8
165#define MODE_DOT3_RGBA_EXT 9
166#define MODE_MODULATE_ADD_ATI 10
167#define MODE_MODULATE_SIGNED_ADD_ATI 11
168#define MODE_MODULATE_SUBTRACT_ATI 12
169#define MODE_UNKNOWN 15
170
171static GLuint translate_mode( GLenum mode )
172{
173 switch (mode) {
174 case GL_REPLACE: return MODE_REPLACE;
175 case GL_MODULATE: return MODE_MODULATE;
176 case GL_ADD: return MODE_ADD;
177 case GL_ADD_SIGNED: return MODE_ADD_SIGNED;
178 case GL_INTERPOLATE: return MODE_INTERPOLATE;
179 case GL_SUBTRACT: return MODE_SUBTRACT;
180 case GL_DOT3_RGB: return MODE_DOT3_RGB;
181 case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT;
182 case GL_DOT3_RGBA: return MODE_DOT3_RGBA;
183 case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT;
184 case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI;
185 case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI;
186 case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI;
187 default: return MODE_UNKNOWN;
188 }
189}
190
191#define TEXTURE_UNKNOWN_INDEX 7
Brian Paule00ac112005-09-15 05:00:45 +0000192static GLuint translate_tex_src_bit( GLbitfield bit )
Keith Whitwellce721142005-07-11 10:10:38 +0000193{
Brian Paul1519b932008-12-17 13:17:15 -0700194 /* make sure number of switch cases is correct */
195 assert(NUM_TEXTURE_TARGETS == 7);
Keith Whitwellce721142005-07-11 10:10:38 +0000196 switch (bit) {
Brian Paul1519b932008-12-17 13:17:15 -0700197 case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX;
198 case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX;
199 case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX;
200 case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX;
201 case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX;
202 case TEXTURE_1D_ARRAY_BIT: return TEXTURE_1D_ARRAY_INDEX;
203 case TEXTURE_2D_ARRAY_BIT: return TEXTURE_2D_ARRAY_INDEX;
204 default: return TEXTURE_UNKNOWN_INDEX;
Keith Whitwellce721142005-07-11 10:10:38 +0000205 }
206}
207
Keith Whitwell1680ef82008-10-03 17:30:59 +0100208#define VERT_BIT_TEX_ANY (0xff << VERT_ATTRIB_TEX0)
209#define VERT_RESULT_TEX_ANY (0xff << VERT_RESULT_TEX0)
210
Brian Paul239617f2008-10-07 11:22:47 -0600211/**
212 * Identify all possible varying inputs. The fragment program will
Keith Whitwell1680ef82008-10-03 17:30:59 +0100213 * never reference non-varying inputs, but will track them via state
214 * constants instead.
215 *
216 * This function figures out all the inputs that the fragment program
217 * has access to. The bitmask is later reduced to just those which
218 * are actually referenced.
219 */
Brian Paul239617f2008-10-07 11:22:47 -0600220static GLbitfield get_fp_input_mask( GLcontext *ctx )
Keith Whitwell1680ef82008-10-03 17:30:59 +0100221{
Brian Paulf0b07942008-12-17 14:04:03 -0700222 const GLboolean vertexShader = (ctx->Shader.CurrentProgram &&
223 ctx->Shader.CurrentProgram->VertexProgram);
224 const GLboolean vertexProgram = ctx->VertexProgram._Enabled;
Brian Paul239617f2008-10-07 11:22:47 -0600225 GLbitfield fp_inputs = 0x0;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100226
Brian Paul6d4d51d2008-10-10 13:39:14 -0600227 if (ctx->VertexProgram._Overriden) {
228 /* Somebody's messing with the vertex program and we don't have
229 * a clue what's happening. Assume that it could be producing
230 * all possible outputs.
231 */
232 fp_inputs = ~0;
233 }
234 else if (ctx->RenderMode == GL_FEEDBACK) {
235 fp_inputs = (FRAG_BIT_COL0 | FRAG_BIT_TEX0);
236 }
Brian Paulf0b07942008-12-17 14:04:03 -0700237 else if (!(vertexProgram || vertexShader) ||
Brian Pauld7296a12008-12-17 11:29:06 -0700238 !ctx->VertexProgram._Current) {
Brian Paulf0b07942008-12-17 14:04:03 -0700239 /* Fixed function vertex logic */
Brian Paul239617f2008-10-07 11:22:47 -0600240 GLbitfield varying_inputs = ctx->varying_vp_inputs;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100241
Keith Whitwell97e63432008-10-20 13:03:45 +0100242 /* These get generated in the setup routine regardless of the
243 * vertex program:
244 */
245 if (ctx->Point.PointSprite)
246 varying_inputs |= FRAG_BITS_TEX_ANY;
247
Keith Whitwell1680ef82008-10-03 17:30:59 +0100248 /* First look at what values may be computed by the generated
249 * vertex program:
250 */
251 if (ctx->Light.Enabled) {
252 fp_inputs |= FRAG_BIT_COL0;
253
254 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR)
255 fp_inputs |= FRAG_BIT_COL1;
256 }
257
258 fp_inputs |= (ctx->Texture._TexGenEnabled |
259 ctx->Texture._TexMatEnabled) << FRAG_ATTRIB_TEX0;
260
261 /* Then look at what might be varying as a result of enabled
262 * arrays, etc:
263 */
264 if (varying_inputs & VERT_BIT_COLOR0) fp_inputs |= FRAG_BIT_COL0;
265 if (varying_inputs & VERT_BIT_COLOR1) fp_inputs |= FRAG_BIT_COL1;
266
267 fp_inputs |= (((varying_inputs & VERT_BIT_TEX_ANY) >> VERT_ATTRIB_TEX0)
268 << FRAG_ATTRIB_TEX0);
269
270 }
271 else {
272 /* calculate from vp->outputs */
Brian Paul2389c052008-12-17 19:01:34 -0700273 struct gl_vertex_program *vprog;
274 GLbitfield vp_outputs;
275
276 /* Choose GLSL vertex shader over ARB vertex program. Need this
277 * since vertex shader state validation comes after fragment state
278 * validation (see additional comments in state.c).
279 */
280 if (vertexShader)
281 vprog = ctx->Shader.CurrentProgram->VertexProgram;
282 else
283 vprog = ctx->VertexProgram._Current;
284
285 vp_outputs = vprog->Base.OutputsWritten;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100286
Keith Whitwell97e63432008-10-20 13:03:45 +0100287 /* These get generated in the setup routine regardless of the
288 * vertex program:
289 */
290 if (ctx->Point.PointSprite)
291 vp_outputs |= FRAG_BITS_TEX_ANY;
292
Keith Whitwell1680ef82008-10-03 17:30:59 +0100293 if (vp_outputs & (1 << VERT_RESULT_COL0)) fp_inputs |= FRAG_BIT_COL0;
294 if (vp_outputs & (1 << VERT_RESULT_COL1)) fp_inputs |= FRAG_BIT_COL1;
295
Keith Whitwell0370d6b2008-10-04 12:41:56 +0100296 fp_inputs |= (((vp_outputs & VERT_RESULT_TEX_ANY) >> VERT_RESULT_TEX0)
297 << FRAG_ATTRIB_TEX0);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100298 }
299
300 return fp_inputs;
301}
302
303
Brian Paul22db5352005-11-19 23:45:10 +0000304/**
305 * Examine current texture environment state and generate a unique
306 * key to identify it.
307 */
Keith Whitwell8065c122006-05-22 16:09:27 +0000308static void make_state_key( GLcontext *ctx, struct state_key *key )
Keith Whitwellce721142005-07-11 10:10:38 +0000309{
Keith Whitwellce721142005-07-11 10:10:38 +0000310 GLuint i, j;
Brian Paul239617f2008-10-07 11:22:47 -0600311 GLbitfield inputs_referenced = FRAG_BIT_COL0;
312 GLbitfield inputs_available = get_fp_input_mask( ctx );
Keith Whitwell1680ef82008-10-03 17:30:59 +0100313
Keith Whitwell8065c122006-05-22 16:09:27 +0000314 memset(key, 0, sizeof(*key));
315
Keith Whitwellce721142005-07-11 10:10:38 +0000316 for (i=0;i<MAX_TEXTURE_UNITS;i++) {
Brian Pauld9736db2006-05-23 02:44:46 +0000317 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
Xiang, Haihaob6bb5e02008-11-20 16:54:16 +0800318 GLenum format;
Roland Scheideggerbf4a0fa2008-02-15 17:26:06 +0100319
320 if (!texUnit->_ReallyEnabled || !texUnit->Enabled)
Keith Whitwellce721142005-07-11 10:10:38 +0000321 continue;
322
Xiang, Haihaob6bb5e02008-11-20 16:54:16 +0800323 format = texUnit->_Current->Image[0][texUnit->_Current->BaseLevel]->_BaseFormat;
324
Keith Whitwellce721142005-07-11 10:10:38 +0000325 key->unit[i].enabled = 1;
326 key->enabled_units |= (1<<i);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100327 key->nr_enabled_units = i+1;
328 inputs_referenced |= FRAG_BIT_TEX(i);
Keith Whitwellce721142005-07-11 10:10:38 +0000329
330 key->unit[i].source_index =
331 translate_tex_src_bit(texUnit->_ReallyEnabled);
Xiang, Haihaob6bb5e02008-11-20 16:54:16 +0800332 key->unit[i].shadow = ((texUnit->_Current->CompareMode == GL_COMPARE_R_TO_TEXTURE) &&
333 ((format == GL_DEPTH_COMPONENT) ||
334 (format == GL_DEPTH_STENCIL_EXT)));
Keith Whitwellce721142005-07-11 10:10:38 +0000335
336 key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB;
337 key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA;
338
339 key->unit[i].ModeRGB =
340 translate_mode(texUnit->_CurrentCombine->ModeRGB);
341 key->unit[i].ModeA =
342 translate_mode(texUnit->_CurrentCombine->ModeA);
343
344 key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB;
Keith Whitwell64da1612006-05-22 14:30:58 +0000345 key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA;
Keith Whitwellce721142005-07-11 10:10:38 +0000346
347 for (j=0;j<3;j++) {
348 key->unit[i].OptRGB[j].Operand =
349 translate_operand(texUnit->_CurrentCombine->OperandRGB[j]);
350 key->unit[i].OptA[j].Operand =
351 translate_operand(texUnit->_CurrentCombine->OperandA[j]);
352 key->unit[i].OptRGB[j].Source =
353 translate_source(texUnit->_CurrentCombine->SourceRGB[j]);
354 key->unit[i].OptA[j].Source =
355 translate_source(texUnit->_CurrentCombine->SourceA[j]);
356 }
357 }
358
Keith Whitwell1680ef82008-10-03 17:30:59 +0100359 if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) {
Keith Whitwellce721142005-07-11 10:10:38 +0000360 key->separate_specular = 1;
Keith Whitwell1680ef82008-10-03 17:30:59 +0100361 inputs_referenced |= FRAG_BIT_COL1;
362 }
Keith Whitwellce721142005-07-11 10:10:38 +0000363
364 if (ctx->Fog.Enabled) {
365 key->fog_enabled = 1;
366 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
Keith Whitwell1680ef82008-10-03 17:30:59 +0100367 inputs_referenced |= FRAG_BIT_FOGC; /* maybe */
Keith Whitwellce721142005-07-11 10:10:38 +0000368 }
Keith Whitwell1680ef82008-10-03 17:30:59 +0100369
370 key->inputs_available = (inputs_available & inputs_referenced);
Keith Whitwellce721142005-07-11 10:10:38 +0000371}
372
Brian Paul239617f2008-10-07 11:22:47 -0600373/**
374 * Use uregs to represent registers internally, translate to Mesa's
Keith Whitwell15e75e02005-04-29 15:11:39 +0000375 * expected formats on emit.
376 *
377 * NOTE: These are passed by value extensively in this file rather
378 * than as usual by pointer reference. If this disturbs you, try
379 * remembering they are just 32bits in size.
380 *
381 * GCC is smart enough to deal with these dword-sized structures in
382 * much the same way as if I had defined them as dwords and was using
383 * macros to access and set the fields. This is much nicer and easier
384 * to evolve.
385 */
386struct ureg {
387 GLuint file:4;
388 GLuint idx:8;
389 GLuint negatebase:1;
390 GLuint abs:1;
391 GLuint negateabs:1;
392 GLuint swz:12;
393 GLuint pad:5;
394};
395
Brian Paul13abf912006-04-13 19:17:13 +0000396static const struct ureg undef = {
Alan Hourihane8d972652006-08-10 13:12:00 +0000397 PROGRAM_UNDEFINED,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000398 ~0,
399 0,
400 0,
401 0,
402 0,
403 0
404};
405
Keith Whitwell15e75e02005-04-29 15:11:39 +0000406
Brian Paul239617f2008-10-07 11:22:47 -0600407/** State used to build the fragment program:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000408 */
409struct texenv_fragment_program {
Brian Paul122629f2006-07-20 16:49:57 +0000410 struct gl_fragment_program *program;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000411 GLcontext *ctx;
Keith Whitwellce721142005-07-11 10:10:38 +0000412 struct state_key *state;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000413
Brian Paul239617f2008-10-07 11:22:47 -0600414 GLbitfield alu_temps; /**< Track texture indirections, see spec. */
415 GLbitfield temps_output; /**< Track texture indirections, see spec. */
416 GLbitfield temp_in_use; /**< Tracks temporary regs which are in use. */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000417 GLboolean error;
418
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000419 struct ureg src_texture[MAX_TEXTURE_UNITS];
Keith Whitwellce721142005-07-11 10:10:38 +0000420 /* Reg containing each texture unit's sampled texture color,
421 * else undef.
422 */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000423
Brian Paul239617f2008-10-07 11:22:47 -0600424 struct ureg src_previous; /**< Reg containing color from previous
Keith Whitwell15e75e02005-04-29 15:11:39 +0000425 * stage. May need to be decl'd.
426 */
427
Brian Paul239617f2008-10-07 11:22:47 -0600428 GLuint last_tex_stage; /**< Number of last enabled texture unit */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000429
430 struct ureg half;
431 struct ureg one;
432 struct ureg zero;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000433};
434
435
436
437static struct ureg make_ureg(GLuint file, GLuint idx)
438{
439 struct ureg reg;
440 reg.file = file;
441 reg.idx = idx;
442 reg.negatebase = 0;
443 reg.abs = 0;
444 reg.negateabs = 0;
445 reg.swz = SWIZZLE_NOOP;
446 reg.pad = 0;
447 return reg;
448}
449
450static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w )
451{
452 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
453 GET_SWZ(reg.swz, y),
454 GET_SWZ(reg.swz, z),
455 GET_SWZ(reg.swz, w));
456
457 return reg;
458}
459
460static struct ureg swizzle1( struct ureg reg, int x )
461{
462 return swizzle(reg, x, x, x, x);
463}
464
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000465static struct ureg negate( struct ureg reg )
466{
467 reg.negatebase ^= 1;
468 return reg;
469}
470
Keith Whitwell15e75e02005-04-29 15:11:39 +0000471static GLboolean is_undef( struct ureg reg )
472{
Alan Hourihane8d972652006-08-10 13:12:00 +0000473 return reg.file == PROGRAM_UNDEFINED;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000474}
475
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000476
Keith Whitwell15e75e02005-04-29 15:11:39 +0000477static struct ureg get_temp( struct texenv_fragment_program *p )
478{
Brian Paul13abf912006-04-13 19:17:13 +0000479 GLint bit;
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000480
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000481 /* First try and reuse temps which have been used already:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000482 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000483 bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000484
485 /* Then any unused temporary:
486 */
487 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000488 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000489
Keith Whitwell15e75e02005-04-29 15:11:39 +0000490 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000491 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000492 _mesa_exit(1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000493 }
494
Brian Paul13abf912006-04-13 19:17:13 +0000495 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000496 p->program->Base.NumTemporaries = bit;
497
Keith Whitwell93cd9232005-05-11 08:30:23 +0000498 p->temp_in_use |= 1<<(bit-1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000499 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
500}
501
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000502static struct ureg get_tex_temp( struct texenv_fragment_program *p )
503{
504 int bit;
505
Brian Pauld01269a2008-09-25 18:27:22 -0600506 /* First try to find available temp not previously used (to avoid
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000507 * starting a new texture indirection). According to the spec, the
508 * ~p->temps_output isn't necessary, but will keep it there for
509 * now:
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000510 */
Brian Paulb3aefd12005-09-19 20:12:32 +0000511 bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000512
513 /* Then any unused temporary:
514 */
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000515 if (!bit)
Brian Paulb3aefd12005-09-19 20:12:32 +0000516 bit = _mesa_ffs( ~p->temp_in_use );
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000517
518 if (!bit) {
Brian Paulbfb5ea32005-07-19 18:20:04 +0000519 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
Brian Paulb3aefd12005-09-19 20:12:32 +0000520 _mesa_exit(1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000521 }
522
Brian Paul13abf912006-04-13 19:17:13 +0000523 if ((GLuint) bit > p->program->Base.NumTemporaries)
Keith Whitwellb5cbaf92005-09-08 18:45:03 +0000524 p->program->Base.NumTemporaries = bit;
525
Keith Whitwell93cd9232005-05-11 08:30:23 +0000526 p->temp_in_use |= 1<<(bit-1);
Keith Whitwellecb6bfc2005-05-10 08:58:44 +0000527 return make_ureg(PROGRAM_TEMPORARY, (bit-1));
528}
529
Keith Whitwell15e75e02005-04-29 15:11:39 +0000530
Brian Paul5620c202008-09-26 11:18:06 -0600531/** Mark a temp reg as being no longer allocatable. */
532static void reserve_temp( struct texenv_fragment_program *p, struct ureg r )
533{
534 if (r.file == PROGRAM_TEMPORARY)
535 p->temps_output |= (1 << r.idx);
536}
537
538
Brianf18d4e02007-10-29 12:25:46 -0600539static void release_temps(GLcontext *ctx, struct texenv_fragment_program *p )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000540{
Brianf18d4e02007-10-29 12:25:46 -0600541 GLuint max_temp = ctx->Const.FragmentProgram.MaxTemps;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000542
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000543 /* KW: To support tex_env_crossbar, don't release the registers in
544 * temps_output.
545 */
Keith Whitwell93cd9232005-05-11 08:30:23 +0000546 if (max_temp >= sizeof(int) * 8)
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000547 p->temp_in_use = p->temps_output;
Keith Whitwell93cd9232005-05-11 08:30:23 +0000548 else
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000549 p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000550}
551
552
Brian9fe3e2e2007-02-23 11:44:14 -0700553static struct ureg register_param5( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000554 GLint s0,
555 GLint s1,
556 GLint s2,
557 GLint s3,
Brian9fe3e2e2007-02-23 11:44:14 -0700558 GLint s4)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000559{
Brian9fe3e2e2007-02-23 11:44:14 -0700560 gl_state_index tokens[STATE_LENGTH];
Keith Whitwell47b29f52005-05-04 11:44:44 +0000561 GLuint idx;
562 tokens[0] = s0;
563 tokens[1] = s1;
564 tokens[2] = s2;
565 tokens[3] = s3;
566 tokens[4] = s4;
Brian Paulde997602005-11-12 17:53:14 +0000567 idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens );
Keith Whitwell47b29f52005-05-04 11:44:44 +0000568 return make_ureg(PROGRAM_STATE_VAR, idx);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000569}
570
Keith Whitwell47b29f52005-05-04 11:44:44 +0000571
Brian9fe3e2e2007-02-23 11:44:14 -0700572#define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
573#define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
574#define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
575#define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s1,s2,s3,0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000576
Keith Whitwell1680ef82008-10-03 17:30:59 +0100577static GLuint frag_to_vert_attrib( GLuint attrib )
578{
579 switch (attrib) {
580 case FRAG_ATTRIB_COL0: return VERT_ATTRIB_COLOR0;
581 case FRAG_ATTRIB_COL1: return VERT_ATTRIB_COLOR1;
582 default:
583 assert(attrib >= FRAG_ATTRIB_TEX0);
584 assert(attrib <= FRAG_ATTRIB_TEX7);
585 return attrib - FRAG_ATTRIB_TEX0 + VERT_ATTRIB_TEX0;
586 }
587}
588
Keith Whitwell47b29f52005-05-04 11:44:44 +0000589
590static struct ureg register_input( struct texenv_fragment_program *p, GLuint input )
591{
Keith Whitwell1680ef82008-10-03 17:30:59 +0100592 if (p->state->inputs_available & (1<<input)) {
593 p->program->Base.InputsRead |= (1 << input);
594 return make_ureg(PROGRAM_INPUT, input);
595 }
596 else {
597 GLuint idx = frag_to_vert_attrib( input );
598 return register_param3( p, STATE_INTERNAL, STATE_CURRENT_ATTRIB, idx );
599 }
Keith Whitwell47b29f52005-05-04 11:44:44 +0000600}
601
602
Brian Paul7e807512005-11-05 17:10:45 +0000603static void emit_arg( struct prog_src_register *reg,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000604 struct ureg ureg )
605{
606 reg->File = ureg.file;
607 reg->Index = ureg.idx;
608 reg->Swizzle = ureg.swz;
Keith Whitwellf2802c42005-10-07 09:55:26 +0000609 reg->NegateBase = ureg.negatebase ? 0xf : 0x0;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000610 reg->Abs = ureg.abs;
611 reg->NegateAbs = ureg.negateabs;
612}
613
Brian Paul7e807512005-11-05 17:10:45 +0000614static void emit_dst( struct prog_dst_register *dst,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000615 struct ureg ureg, GLuint mask )
616{
617 dst->File = ureg.file;
618 dst->Index = ureg.idx;
619 dst->WriteMask = mask;
Brianc9d495c2007-10-23 10:55:24 -0600620 dst->CondMask = COND_TR; /* always pass cond test */
621 dst->CondSwizzle = SWIZZLE_NOOP;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000622}
623
Brian Paul7e807512005-11-05 17:10:45 +0000624static struct prog_instruction *
Keith Whitwell15e75e02005-04-29 15:11:39 +0000625emit_op(struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000626 enum prog_opcode op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000627 struct ureg dest,
628 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000629 GLboolean saturate,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000630 struct ureg src0,
631 struct ureg src1,
632 struct ureg src2 )
633{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000634 GLuint nr = p->program->Base.NumInstructions++;
Brian Paulde997602005-11-12 17:53:14 +0000635 struct prog_instruction *inst = &p->program->Base.Instructions[nr];
Brian2a8e9bb2007-10-23 10:24:53 -0600636
637 assert(nr < MAX_INSTRUCTIONS);
638
Brian Pauld6272e02006-10-29 18:03:16 +0000639 _mesa_init_instructions(inst, 1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000640 inst->Opcode = op;
641
Keith Whitwell47b29f52005-05-04 11:44:44 +0000642 emit_arg( &inst->SrcReg[0], src0 );
643 emit_arg( &inst->SrcReg[1], src1 );
644 emit_arg( &inst->SrcReg[2], src2 );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000645
Brian Paule31ac052005-11-20 17:52:40 +0000646 inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000647
648 emit_dst( &inst->DstReg, dest, mask );
649
Brian Paul5620c202008-09-26 11:18:06 -0600650#if 0
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000651 /* Accounting for indirection tracking:
652 */
653 if (dest.file == PROGRAM_TEMPORARY)
654 p->temps_output |= 1 << dest.idx;
Brian Paul5620c202008-09-26 11:18:06 -0600655#endif
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000656
Keith Whitwell15e75e02005-04-29 15:11:39 +0000657 return inst;
658}
659
660
661static struct ureg emit_arith( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000662 enum prog_opcode op,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000663 struct ureg dest,
664 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000665 GLboolean saturate,
Keith Whitwell47b29f52005-05-04 11:44:44 +0000666 struct ureg src0,
667 struct ureg src1,
668 struct ureg src2 )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000669{
670 emit_op(p, op, dest, mask, saturate, src0, src1, src2);
671
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000672 /* Accounting for indirection tracking:
673 */
674 if (src0.file == PROGRAM_TEMPORARY)
675 p->alu_temps |= 1 << src0.idx;
676
677 if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY)
678 p->alu_temps |= 1 << src1.idx;
679
680 if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY)
681 p->alu_temps |= 1 << src2.idx;
682
683 if (dest.file == PROGRAM_TEMPORARY)
684 p->alu_temps |= 1 << dest.idx;
685
Brian21f99792007-01-09 11:00:21 -0700686 p->program->Base.NumAluInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000687 return dest;
688}
689
690static struct ureg emit_texld( struct texenv_fragment_program *p,
Brian Paul5d7b49f2005-11-19 23:12:20 +0000691 enum prog_opcode op,
Keith Whitwellce721142005-07-11 10:10:38 +0000692 struct ureg dest,
693 GLuint destmask,
694 GLuint tex_unit,
695 GLuint tex_idx,
696 struct ureg coord )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000697{
Brian Paul7e807512005-11-05 17:10:45 +0000698 struct prog_instruction *inst = emit_op( p, op,
Keith Whitwell15e75e02005-04-29 15:11:39 +0000699 dest, destmask,
Brian Paul22db5352005-11-19 23:45:10 +0000700 GL_FALSE, /* don't saturate? */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000701 coord, /* arg 0? */
702 undef,
703 undef);
704
Brian Paul7e807512005-11-05 17:10:45 +0000705 inst->TexSrcTarget = tex_idx;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000706 inst->TexSrcUnit = tex_unit;
707
Brian21f99792007-01-09 11:00:21 -0700708 p->program->Base.NumTexInstructions++;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000709
Brian Paul5620c202008-09-26 11:18:06 -0600710 /* Accounting for indirection tracking:
711 */
712 reserve_temp(p, dest);
713
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000714 /* Is this a texture indirection?
715 */
716 if ((coord.file == PROGRAM_TEMPORARY &&
717 (p->temps_output & (1<<coord.idx))) ||
718 (dest.file == PROGRAM_TEMPORARY &&
719 (p->alu_temps & (1<<dest.idx)))) {
Brian21f99792007-01-09 11:00:21 -0700720 p->program->Base.NumTexIndirections++;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000721 p->temps_output = 1<<coord.idx;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000722 p->alu_temps = 0;
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000723 assert(0); /* KW: texture env crossbar */
Keith Whitwell15e75e02005-04-29 15:11:39 +0000724 }
725
726 return dest;
727}
728
729
Keith Whitwell47b29f52005-05-04 11:44:44 +0000730static struct ureg register_const4f( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000731 GLfloat s0,
732 GLfloat s1,
733 GLfloat s2,
734 GLfloat s3)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000735{
Keith Whitwell47b29f52005-05-04 11:44:44 +0000736 GLfloat values[4];
Briana90046f2006-12-15 10:07:26 -0700737 GLuint idx, swizzle;
Brian Pauld01269a2008-09-25 18:27:22 -0600738 struct ureg r;
Keith Whitwell47b29f52005-05-04 11:44:44 +0000739 values[0] = s0;
740 values[1] = s1;
741 values[2] = s2;
742 values[3] = s3;
Briana90046f2006-12-15 10:07:26 -0700743 idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4,
744 &swizzle );
Brian Pauld01269a2008-09-25 18:27:22 -0600745 r = make_ureg(PROGRAM_CONSTANT, idx);
746 r.swz = swizzle;
747 return r;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000748}
749
Keith Whitwelle4902422005-05-11 15:16:35 +0000750#define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0)
Keith Whitwell47b29f52005-05-04 11:44:44 +0000751#define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1)
752#define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1)
753#define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000754
755
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000756static struct ureg get_one( struct texenv_fragment_program *p )
757{
758 if (is_undef(p->one))
759 p->one = register_scalar_const(p, 1.0);
760 return p->one;
761}
762
763static struct ureg get_half( struct texenv_fragment_program *p )
764{
765 if (is_undef(p->half))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000766 p->half = register_scalar_const(p, 0.5);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000767 return p->half;
768}
769
770static struct ureg get_zero( struct texenv_fragment_program *p )
771{
772 if (is_undef(p->zero))
Aapo Tahkola4dd8a892006-01-24 20:24:06 +0000773 p->zero = register_scalar_const(p, 0.0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000774 return p->zero;
775}
776
Keith Whitwell15e75e02005-04-29 15:11:39 +0000777
Keith Whitwell15e75e02005-04-29 15:11:39 +0000778static void program_error( struct texenv_fragment_program *p, const char *msg )
779{
Brian Paulbfb5ea32005-07-19 18:20:04 +0000780 _mesa_problem(NULL, msg);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000781 p->error = 1;
782}
783
Keith Whitwell15e75e02005-04-29 15:11:39 +0000784static struct ureg get_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000785 GLuint src, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000786{
787 switch (src) {
Keith Whitwellce721142005-07-11 10:10:38 +0000788 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000789 assert(!is_undef(p->src_texture[unit]));
790 return p->src_texture[unit];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000791
Keith Whitwellce721142005-07-11 10:10:38 +0000792 case SRC_TEXTURE0:
793 case SRC_TEXTURE1:
794 case SRC_TEXTURE2:
795 case SRC_TEXTURE3:
796 case SRC_TEXTURE4:
797 case SRC_TEXTURE5:
798 case SRC_TEXTURE6:
799 case SRC_TEXTURE7:
800 assert(!is_undef(p->src_texture[src - SRC_TEXTURE0]));
801 return p->src_texture[src - SRC_TEXTURE0];
Keith Whitwell15e75e02005-04-29 15:11:39 +0000802
Keith Whitwellce721142005-07-11 10:10:38 +0000803 case SRC_CONSTANT:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000804 return register_param2(p, STATE_TEXENV_COLOR, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000805
Keith Whitwellce721142005-07-11 10:10:38 +0000806 case SRC_PRIMARY_COLOR:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000807 return register_input(p, FRAG_ATTRIB_COL0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000808
Keith Whitwellce721142005-07-11 10:10:38 +0000809 case SRC_PREVIOUS:
810 default:
Keith Whitwell47b29f52005-05-04 11:44:44 +0000811 if (is_undef(p->src_previous))
812 return register_input(p, FRAG_ATTRIB_COL0);
813 else
814 return p->src_previous;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000815 }
816}
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000817
Keith Whitwell15e75e02005-04-29 15:11:39 +0000818static struct ureg emit_combine_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000819 GLuint mask,
820 GLuint unit,
821 GLuint source,
822 GLuint operand )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000823{
824 struct ureg arg, src, one;
825
826 src = get_source(p, source, unit);
827
828 switch (operand) {
Keith Whitwellce721142005-07-11 10:10:38 +0000829 case OPR_ONE_MINUS_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000830 /* Get unused tmp,
831 * Emit tmp = 1.0 - arg.xyzw
832 */
833 arg = get_temp( p );
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000834 one = get_one( p );
Brian Paul7e807512005-11-05 17:10:45 +0000835 return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000836
Keith Whitwellce721142005-07-11 10:10:38 +0000837 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000838 if (mask == WRITEMASK_W)
839 return src;
840 else
Brian Paul22db5352005-11-19 23:45:10 +0000841 return swizzle1( src, SWIZZLE_W );
Keith Whitwellce721142005-07-11 10:10:38 +0000842 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000843 /* Get unused tmp,
844 * Emit tmp = 1.0 - arg.wwww
845 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000846 arg = get_temp(p);
847 one = get_one(p);
Brian Paul7e807512005-11-05 17:10:45 +0000848 return emit_arith(p, OPCODE_SUB, arg, mask, 0,
Brian Paul22db5352005-11-19 23:45:10 +0000849 one, swizzle1(src, SWIZZLE_W), undef);
Keith Whitwellce721142005-07-11 10:10:38 +0000850 case OPR_ZERO:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000851 return get_zero(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000852 case OPR_ONE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000853 return get_one(p);
Keith Whitwellce721142005-07-11 10:10:38 +0000854 case OPR_SRC_COLOR:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000855 default:
856 return src;
857 }
858}
859
Keith Whitwellce721142005-07-11 10:10:38 +0000860static GLboolean args_match( struct state_key *key, GLuint unit )
Keith Whitwell15e75e02005-04-29 15:11:39 +0000861{
Brian Paul22db5352005-11-19 23:45:10 +0000862 GLuint i, nr = key->unit[unit].NumArgsRGB;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000863
864 for (i = 0 ; i < nr ; i++) {
Keith Whitwellce721142005-07-11 10:10:38 +0000865 if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000866 return GL_FALSE;
867
Keith Whitwellce721142005-07-11 10:10:38 +0000868 switch(key->unit[unit].OptA[i].Operand) {
869 case OPR_SRC_ALPHA:
870 switch(key->unit[unit].OptRGB[i].Operand) {
871 case OPR_SRC_COLOR:
872 case OPR_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000873 break;
874 default:
875 return GL_FALSE;
876 }
877 break;
Keith Whitwellce721142005-07-11 10:10:38 +0000878 case OPR_ONE_MINUS_SRC_ALPHA:
879 switch(key->unit[unit].OptRGB[i].Operand) {
880 case OPR_ONE_MINUS_SRC_COLOR:
881 case OPR_ONE_MINUS_SRC_ALPHA:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000882 break;
883 default:
884 return GL_FALSE;
885 }
886 break;
887 default:
888 return GL_FALSE; /* impossible */
889 }
890 }
891
892 return GL_TRUE;
893}
894
Keith Whitwell15e75e02005-04-29 15:11:39 +0000895static struct ureg emit_combine( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +0000896 struct ureg dest,
897 GLuint mask,
Brian Paul22db5352005-11-19 23:45:10 +0000898 GLboolean saturate,
Keith Whitwellce721142005-07-11 10:10:38 +0000899 GLuint unit,
900 GLuint nr,
901 GLuint mode,
Brian Pauld9736db2006-05-23 02:44:46 +0000902 const struct mode_opt *opt)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000903{
Keith Whitwell15e75e02005-04-29 15:11:39 +0000904 struct ureg src[3];
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000905 struct ureg tmp, half;
Brian Paul22db5352005-11-19 23:45:10 +0000906 GLuint i;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000907
Brian Paul00630842005-12-12 15:27:55 +0000908 tmp = undef; /* silence warning (bug 5318) */
909
Keith Whitwell15e75e02005-04-29 15:11:39 +0000910 for (i = 0; i < nr; i++)
Keith Whitwellce721142005-07-11 10:10:38 +0000911 src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000912
913 switch (mode) {
Keith Whitwellce721142005-07-11 10:10:38 +0000914 case MODE_REPLACE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000915 if (mask == WRITEMASK_XYZW && !saturate)
916 return src[0];
917 else
Brian Paul7e807512005-11-05 17:10:45 +0000918 return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000919 case MODE_MODULATE:
Brian Paul7e807512005-11-05 17:10:45 +0000920 return emit_arith( p, OPCODE_MUL, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000921 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000922 case MODE_ADD:
Brian Paul7e807512005-11-05 17:10:45 +0000923 return emit_arith( p, OPCODE_ADD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000924 src[0], src[1], undef );
Keith Whitwellce721142005-07-11 10:10:38 +0000925 case MODE_ADD_SIGNED:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000926 /* tmp = arg0 + arg1
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000927 * result = tmp - .5
Keith Whitwell15e75e02005-04-29 15:11:39 +0000928 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000929 half = get_half(p);
Jerome Glisse99da2d32006-01-24 23:04:51 +0000930 tmp = get_temp( p );
Brian Paul7e807512005-11-05 17:10:45 +0000931 emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef );
932 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000933 return dest;
Keith Whitwellce721142005-07-11 10:10:38 +0000934 case MODE_INTERPOLATE:
Keith Whitwell15e75e02005-04-29 15:11:39 +0000935 /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered:
936 */
Brian Paul7e807512005-11-05 17:10:45 +0000937 return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000938
Keith Whitwellce721142005-07-11 10:10:38 +0000939 case MODE_SUBTRACT:
Brian Paul7e807512005-11-05 17:10:45 +0000940 return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +0000941
Keith Whitwellce721142005-07-11 10:10:38 +0000942 case MODE_DOT3_RGBA:
943 case MODE_DOT3_RGBA_EXT:
944 case MODE_DOT3_RGB_EXT:
945 case MODE_DOT3_RGB: {
Keith Whitwell15e75e02005-04-29 15:11:39 +0000946 struct ureg tmp0 = get_temp( p );
947 struct ureg tmp1 = get_temp( p );
Keith Whitwelle4902422005-05-11 15:16:35 +0000948 struct ureg neg1 = register_scalar_const(p, -1);
949 struct ureg two = register_scalar_const(p, 2);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000950
951 /* tmp0 = 2*src0 - 1
952 * tmp1 = 2*src1 - 1
953 *
954 * dst = tmp0 dot3 tmp1
955 */
Brian Paul7e807512005-11-05 17:10:45 +0000956 emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000957 two, src[0], neg1);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000958
Brian Paulaa206952005-09-16 18:14:24 +0000959 if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000960 tmp1 = tmp0;
961 else
Brian Paul7e807512005-11-05 17:10:45 +0000962 emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000963 two, src[1], neg1);
Brian Paul7e807512005-11-05 17:10:45 +0000964 emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000965 return dest;
966 }
Keith Whitwellce721142005-07-11 10:10:38 +0000967 case MODE_MODULATE_ADD_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000968 /* Arg0 * Arg2 + Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000969 return emit_arith( p, OPCODE_MAD, dest, mask, saturate,
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000970 src[0], src[2], src[1] );
Keith Whitwellce721142005-07-11 10:10:38 +0000971 case MODE_MODULATE_SIGNED_ADD_ATI: {
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000972 /* Arg0 * Arg2 + Arg1 - 0.5 */
973 struct ureg tmp0 = get_temp(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +0000974 half = get_half(p);
Brian Paul7e807512005-11-05 17:10:45 +0000975 emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] );
976 emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000977 return dest;
978 }
Keith Whitwellce721142005-07-11 10:10:38 +0000979 case MODE_MODULATE_SUBTRACT_ATI:
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000980 /* Arg0 * Arg2 - Arg1 */
Brian Paul7e807512005-11-05 17:10:45 +0000981 emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) );
Keith Whitwell6fe176a2005-05-23 08:08:43 +0000982 return dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +0000983 default:
984 return src[0];
985 }
986}
987
Keith Whitwell15e75e02005-04-29 15:11:39 +0000988
Brian Paul22db5352005-11-19 23:45:10 +0000989/**
990 * Generate instructions for one texture unit's env/combiner mode.
991 */
992static struct ureg
993emit_texenv(struct texenv_fragment_program *p, GLuint unit)
Keith Whitwell15e75e02005-04-29 15:11:39 +0000994{
Keith Whitwellce721142005-07-11 10:10:38 +0000995 struct state_key *key = p->state;
Brian Paul22db5352005-11-19 23:45:10 +0000996 GLboolean saturate = (unit < p->last_tex_stage);
Keith Whitwell15e75e02005-04-29 15:11:39 +0000997 GLuint rgb_shift, alpha_shift;
998 struct ureg out, shift;
Keith Whitwellcf4f3c52005-05-16 12:15:01 +0000999 struct ureg dest;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001000
Keith Whitwellce721142005-07-11 10:10:38 +00001001 if (!key->unit[unit].enabled) {
1002 return get_source(p, SRC_PREVIOUS, 0);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001003 }
Keith Whitwellce721142005-07-11 10:10:38 +00001004
1005 switch (key->unit[unit].ModeRGB) {
1006 case MODE_DOT3_RGB_EXT:
1007 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001008 rgb_shift = 0;
1009 break;
Keith Whitwellce721142005-07-11 10:10:38 +00001010 case MODE_DOT3_RGBA_EXT:
Keith Whitwell15e75e02005-04-29 15:11:39 +00001011 alpha_shift = 0;
1012 rgb_shift = 0;
1013 break;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001014 default:
Keith Whitwellce721142005-07-11 10:10:38 +00001015 rgb_shift = key->unit[unit].ScaleShiftRGB;
1016 alpha_shift = key->unit[unit].ScaleShiftA;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001017 break;
1018 }
Keith Whitwellce721142005-07-11 10:10:38 +00001019
Keith Whitwellcf4f3c52005-05-16 12:15:01 +00001020 /* If this is the very last calculation, emit direct to output reg:
1021 */
Keith Whitwellce721142005-07-11 10:10:38 +00001022 if (key->separate_specular ||
Keith Whitwellcf4f3c52005-05-16 12:15:01 +00001023 unit != p->last_tex_stage ||
1024 alpha_shift ||
1025 rgb_shift)
1026 dest = get_temp( p );
1027 else
Brian Paul90ebb582005-11-02 18:06:12 +00001028 dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001029
1030 /* Emit the RGB and A combine ops
1031 */
Keith Whitwellce721142005-07-11 10:10:38 +00001032 if (key->unit[unit].ModeRGB == key->unit[unit].ModeA &&
1033 args_match(key, unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001034 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
1035 unit,
Keith Whitwellce721142005-07-11 10:10:38 +00001036 key->unit[unit].NumArgsRGB,
1037 key->unit[unit].ModeRGB,
1038 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001039 }
Keith Whitwellce721142005-07-11 10:10:38 +00001040 else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT ||
Roland Scheidegger9a451762007-07-03 14:27:41 +02001041 key->unit[unit].ModeRGB == MODE_DOT3_RGBA) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001042
1043 out = emit_combine( p, dest, WRITEMASK_XYZW, saturate,
1044 unit,
Keith Whitwellce721142005-07-11 10:10:38 +00001045 key->unit[unit].NumArgsRGB,
1046 key->unit[unit].ModeRGB,
1047 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001048 }
1049 else {
1050 /* Need to do something to stop from re-emitting identical
1051 * argument calculations here:
1052 */
1053 out = emit_combine( p, dest, WRITEMASK_XYZ, saturate,
1054 unit,
Keith Whitwellce721142005-07-11 10:10:38 +00001055 key->unit[unit].NumArgsRGB,
1056 key->unit[unit].ModeRGB,
1057 key->unit[unit].OptRGB);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001058 out = emit_combine( p, dest, WRITEMASK_W, saturate,
1059 unit,
Keith Whitwellce721142005-07-11 10:10:38 +00001060 key->unit[unit].NumArgsA,
1061 key->unit[unit].ModeA,
1062 key->unit[unit].OptA);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001063 }
1064
1065 /* Deal with the final shift:
1066 */
1067 if (alpha_shift || rgb_shift) {
1068 if (rgb_shift == alpha_shift) {
José Fonseca53174af2008-05-31 18:14:09 +09001069 shift = register_scalar_const(p, (GLfloat)(1<<rgb_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +00001070 }
1071 else {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001072 shift = register_const4f(p,
José Fonseca53174af2008-05-31 18:14:09 +09001073 (GLfloat)(1<<rgb_shift),
1074 (GLfloat)(1<<rgb_shift),
1075 (GLfloat)(1<<rgb_shift),
1076 (GLfloat)(1<<alpha_shift));
Keith Whitwell15e75e02005-04-29 15:11:39 +00001077 }
Brian Paul7e807512005-11-05 17:10:45 +00001078 return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW,
Keith Whitwell15e75e02005-04-29 15:11:39 +00001079 saturate, out, shift, undef );
1080 }
1081 else
1082 return out;
1083}
1084
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001085
Brian Paul22db5352005-11-19 23:45:10 +00001086/**
1087 * Generate instruction for getting a texture source term.
1088 */
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001089static void load_texture( struct texenv_fragment_program *p, GLuint unit )
1090{
1091 if (is_undef(p->src_texture[unit])) {
Keith Whitwellce721142005-07-11 10:10:38 +00001092 GLuint dim = p->state->unit[unit].source_index;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001093 struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit);
1094 struct ureg tmp = get_tex_temp( p );
1095
Brian Paulbfb5ea32005-07-19 18:20:04 +00001096 if (dim == TEXTURE_UNKNOWN_INDEX)
1097 program_error(p, "TexSrcBit");
Keith Whitwellce721142005-07-11 10:10:38 +00001098
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001099 /* TODO: Use D0_MASK_XY where possible.
1100 */
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +02001101 if (p->state->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001102 p->src_texture[unit] = emit_texld( p, OPCODE_TXP,
1103 tmp, WRITEMASK_XYZW,
1104 unit, dim, texcoord );
Keith Whitwell0397b2b2008-09-11 16:05:15 +01001105
Nicolai Haehnle83ad2a72008-06-14 02:28:58 +02001106 if (p->state->unit[unit].shadow)
1107 p->program->Base.ShadowSamplers |= 1 << unit;
Keith Whitwell0397b2b2008-09-11 16:05:15 +01001108
Brian1e3b07f2007-12-14 11:16:49 -07001109 p->program->Base.SamplersUsed |= (1 << unit);
Brianfce46122007-12-14 11:42:28 -07001110 /* This identity mapping should already be in place
1111 * (see _mesa_init_program_struct()) but let's be safe.
1112 */
1113 p->program->Base.SamplerUnits[unit] = unit;
Brian1e3b07f2007-12-14 11:16:49 -07001114 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001115 else
1116 p->src_texture[unit] = get_zero(p);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001117 }
1118}
1119
Keith Whitwell241b6b72005-05-23 09:50:34 +00001120static GLboolean load_texenv_source( struct texenv_fragment_program *p,
Keith Whitwellce721142005-07-11 10:10:38 +00001121 GLuint src, GLuint unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001122{
1123 switch (src) {
Aapo Tahkola4dd8a892006-01-24 20:24:06 +00001124 case SRC_TEXTURE:
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001125 load_texture(p, unit);
1126 break;
1127
Keith Whitwellce721142005-07-11 10:10:38 +00001128 case SRC_TEXTURE0:
1129 case SRC_TEXTURE1:
1130 case SRC_TEXTURE2:
1131 case SRC_TEXTURE3:
1132 case SRC_TEXTURE4:
1133 case SRC_TEXTURE5:
1134 case SRC_TEXTURE6:
1135 case SRC_TEXTURE7:
Keith Whitwellce721142005-07-11 10:10:38 +00001136 load_texture(p, src - SRC_TEXTURE0);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001137 break;
1138
1139 default:
1140 break;
1141 }
Keith Whitwell241b6b72005-05-23 09:50:34 +00001142
1143 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001144}
1145
Brian Paul22db5352005-11-19 23:45:10 +00001146
1147/**
1148 * Generate instructions for loading all texture source terms.
1149 */
1150static GLboolean
1151load_texunit_sources( struct texenv_fragment_program *p, int unit )
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001152{
Keith Whitwellce721142005-07-11 10:10:38 +00001153 struct state_key *key = p->state;
Aapo Tahkolab8915342006-03-28 10:26:34 +00001154 GLuint i;
1155
1156 for (i = 0; i < key->unit[unit].NumArgsRGB; i++) {
1157 load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit);
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001158 }
Aapo Tahkolab8915342006-03-28 10:26:34 +00001159
1160 for (i = 0; i < key->unit[unit].NumArgsA; i++) {
1161 load_texenv_source( p, key->unit[unit].OptA[i].Source, unit );
1162 }
1163
Keith Whitwell241b6b72005-05-23 09:50:34 +00001164 return GL_TRUE;
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001165}
1166
Brian Paul22db5352005-11-19 23:45:10 +00001167
1168/**
1169 * Generate a new fragment program which implements the context's
1170 * current texture env/combine mode.
1171 */
1172static void
Brian Paule998c342006-10-29 21:17:18 +00001173create_new_program(GLcontext *ctx, struct state_key *key,
Brian Paul122629f2006-07-20 16:49:57 +00001174 struct gl_fragment_program *program)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001175{
Brian Paule998c342006-10-29 21:17:18 +00001176 struct prog_instruction instBuffer[MAX_INSTRUCTIONS];
Keith Whitwell15e75e02005-04-29 15:11:39 +00001177 struct texenv_fragment_program p;
1178 GLuint unit;
1179 struct ureg cf, out;
Keith Whitwell276330b2005-05-09 17:58:13 +00001180
Keith Whitwelle4902422005-05-11 15:16:35 +00001181 _mesa_memset(&p, 0, sizeof(p));
Keith Whitwell47b29f52005-05-04 11:44:44 +00001182 p.ctx = ctx;
Keith Whitwellce721142005-07-11 10:10:38 +00001183 p.state = key;
1184 p.program = program;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001185
Brian Paule998c342006-10-29 21:17:18 +00001186 /* During code generation, use locally-allocated instruction buffer,
1187 * then alloc dynamic storage below.
1188 */
1189 p.program->Base.Instructions = instBuffer;
Keith Whitwell276330b2005-05-09 17:58:13 +00001190 p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB;
Brian21f99792007-01-09 11:00:21 -07001191 p.program->Base.NumTexIndirections = 1; /* correct? */
1192 p.program->Base.NumTexInstructions = 0;
1193 p.program->Base.NumAluInstructions = 0;
Brian1240eb22007-03-22 08:50:20 -06001194 p.program->Base.String = NULL;
Keith Whitwell9ca88152005-05-10 09:56:02 +00001195 p.program->Base.NumInstructions =
Brian Paule998c342006-10-29 21:17:18 +00001196 p.program->Base.NumTemporaries =
1197 p.program->Base.NumParameters =
1198 p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00001199 p.program->Base.Parameters = _mesa_new_parameter_list();
Keith Whitwelldbeea252005-05-10 13:57:50 +00001200
Brian Paulde997602005-11-12 17:53:14 +00001201 p.program->Base.InputsRead = 0;
1202 p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001203
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001204 for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++)
1205 p.src_texture[unit] = undef;
1206
Keith Whitwell47b29f52005-05-04 11:44:44 +00001207 p.src_previous = undef;
Keith Whitwell5ddc53f2006-05-22 14:17:32 +00001208 p.half = undef;
1209 p.zero = undef;
1210 p.one = undef;
1211
Keith Whitwell15e75e02005-04-29 15:11:39 +00001212 p.last_tex_stage = 0;
Brianf18d4e02007-10-29 12:25:46 -06001213 release_temps(ctx, &p);
Keith Whitwell15e75e02005-04-29 15:11:39 +00001214
Keith Whitwellce721142005-07-11 10:10:38 +00001215 if (key->enabled_units) {
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001216 /* First pass - to support texture_env_crossbar, first identify
1217 * all referenced texture sources and emit texld instructions
1218 * for each:
1219 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001220 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001221 if (key->unit[unit].enabled) {
Aapo Tahkolab8915342006-03-28 10:26:34 +00001222 load_texunit_sources( &p, unit );
1223 p.last_tex_stage = unit;
Keith Whitwell15e75e02005-04-29 15:11:39 +00001224 }
1225
Keith Whitwell2dea6df2005-05-23 09:37:32 +00001226 /* Second pass - emit combine instructions to build final color:
1227 */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001228 for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++)
Keith Whitwellce721142005-07-11 10:10:38 +00001229 if (key->enabled_units & (1<<unit)) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001230 p.src_previous = emit_texenv( &p, unit );
Brian Paul5620c202008-09-26 11:18:06 -06001231 reserve_temp(&p, p.src_previous); /* don't re-use this temp reg */
Brianf18d4e02007-10-29 12:25:46 -06001232 release_temps(ctx, &p); /* release all temps */
Keith Whitwell15e75e02005-04-29 15:11:39 +00001233 }
1234 }
1235
Keith Whitwellce721142005-07-11 10:10:38 +00001236 cf = get_source( &p, SRC_PREVIOUS, 0 );
Brian Paul90ebb582005-11-02 18:06:12 +00001237 out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001238
Keith Whitwellce721142005-07-11 10:10:38 +00001239 if (key->separate_specular) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001240 /* Emit specular add.
1241 */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001242 struct ureg s = register_input(&p, FRAG_ATTRIB_COL1);
Brian Paul7e807512005-11-05 17:10:45 +00001243 emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef );
1244 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001245 }
Brian Paulaa206952005-09-16 18:14:24 +00001246 else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) {
Keith Whitwell15e75e02005-04-29 15:11:39 +00001247 /* Will wind up in here if no texture enabled or a couple of
1248 * other scenarios (GL_REPLACE for instance).
1249 */
Brian Paul7e807512005-11-05 17:10:45 +00001250 emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef );
Keith Whitwell15e75e02005-04-29 15:11:39 +00001251 }
1252
Keith Whitwell47b29f52005-05-04 11:44:44 +00001253 /* Finish up:
1254 */
Brian Paul7e807512005-11-05 17:10:45 +00001255 emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001256
Keith Whitwellce721142005-07-11 10:10:38 +00001257 if (key->fog_enabled) {
1258 /* Pull fog mode from GLcontext, the value in the state key is
1259 * a reduced value and not what is expected in FogOption
1260 */
Keith Whitwell276330b2005-05-09 17:58:13 +00001261 p.program->FogOption = ctx->Fog.Mode;
Brian63be96b2007-09-18 19:29:26 -06001262 p.program->Base.InputsRead |= FRAG_BIT_FOGC; /* XXX new */
Keith Whitwellce721142005-07-11 10:10:38 +00001263 } else
Keith Whitwell276330b2005-05-09 17:58:13 +00001264 p.program->FogOption = GL_NONE;
Keith Whitwell47b29f52005-05-04 11:44:44 +00001265
Brian21f99792007-01-09 11:00:21 -07001266 if (p.program->Base.NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001267 program_error(&p, "Exceeded max nr indirect texture lookups");
1268
Brian21f99792007-01-09 11:00:21 -07001269 if (p.program->Base.NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001270 program_error(&p, "Exceeded max TEX instructions");
1271
Brian21f99792007-01-09 11:00:21 -07001272 if (p.program->Base.NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions)
Keith Whitwell15e75e02005-04-29 15:11:39 +00001273 program_error(&p, "Exceeded max ALU instructions");
1274
Brian Paul5d7b49f2005-11-19 23:12:20 +00001275 ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS);
Keith Whitwell8b88f622005-05-10 11:39:50 +00001276
Brian Paule998c342006-10-29 21:17:18 +00001277 /* Allocate final instruction array */
Brian3bf8d2a2007-09-25 15:18:51 -06001278 p.program->Base.Instructions
1279 = _mesa_alloc_instructions(p.program->Base.NumInstructions);
1280 if (!p.program->Base.Instructions) {
Brian Paule998c342006-10-29 21:17:18 +00001281 _mesa_error(ctx, GL_OUT_OF_MEMORY,
1282 "generating tex env program");
1283 return;
1284 }
Brian3bf8d2a2007-09-25 15:18:51 -06001285 _mesa_copy_instructions(p.program->Base.Instructions, instBuffer,
1286 p.program->Base.NumInstructions);
1287
1288 if (p.program->FogOption) {
1289 _mesa_append_fog_code(ctx, p.program);
1290 p.program->FogOption = GL_NONE;
1291 }
1292
Brian Paule998c342006-10-29 21:17:18 +00001293
Keith Whitwelldbeea252005-05-10 13:57:50 +00001294 /* Notify driver the fragment program has (actually) changed.
Keith Whitwell8b88f622005-05-10 11:39:50 +00001295 */
Brian Paule998c342006-10-29 21:17:18 +00001296 if (ctx->Driver.ProgramStringNotify) {
1297 ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB,
1298 &p.program->Base );
1299 }
Keith Whitwelldbeea252005-05-10 13:57:50 +00001300
Brian Paule998c342006-10-29 21:17:18 +00001301 if (DISASSEM) {
1302 _mesa_print_program(&p.program->Base);
1303 _mesa_printf("\n");
Keith Whitwelle4902422005-05-11 15:16:35 +00001304 }
Keith Whitwell15e75e02005-04-29 15:11:39 +00001305}
1306
Brian Paul5d7b49f2005-11-19 23:12:20 +00001307
Briana90046f2006-12-15 10:07:26 -07001308/**
Brian83ce6c52007-10-29 11:23:02 -06001309 * Return a fragment program which implements the current
1310 * fixed-function texture, fog and color-sum operations.
1311 */
1312struct gl_fragment_program *
1313_mesa_get_fixed_func_fragment_program(GLcontext *ctx)
Keith Whitwellce721142005-07-11 10:10:38 +00001314{
Brian83ce6c52007-10-29 11:23:02 -06001315 struct gl_fragment_program *prog;
1316 struct state_key key;
Brian83ce6c52007-10-29 11:23:02 -06001317
1318 make_state_key(ctx, &key);
Brian83ce6c52007-10-29 11:23:02 -06001319
Brianf4a5ea22007-10-31 12:45:32 -06001320 prog = (struct gl_fragment_program *)
1321 _mesa_search_program_cache(ctx->FragmentProgram.Cache,
1322 &key, sizeof(key));
Keith Whitwellce721142005-07-11 10:10:38 +00001323
Brian83ce6c52007-10-29 11:23:02 -06001324 if (!prog) {
Brian83ce6c52007-10-29 11:23:02 -06001325 prog = (struct gl_fragment_program *)
1326 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
1327
1328 create_new_program(ctx, &key, prog);
1329
Brianf4a5ea22007-10-31 12:45:32 -06001330 _mesa_program_cache_insert(ctx, ctx->FragmentProgram.Cache,
1331 &key, sizeof(key), &prog->Base);
Keith Whitwellce721142005-07-11 10:10:38 +00001332 }
1333
Brian83ce6c52007-10-29 11:23:02 -06001334 return prog;
Keith Whitwellce721142005-07-11 10:10:38 +00001335}
1336
Keith Whitwellce721142005-07-11 10:10:38 +00001337
Briana90046f2006-12-15 10:07:26 -07001338
1339/**
1340 * If _MaintainTexEnvProgram is set we'll generate a fragment program that
1341 * implements the current texture env/combine mode.
1342 * This function generates that program and puts it into effect.
Keith Whitwellaf74aba2008-09-12 10:04:56 +01001343 *
1344 * XXX: remove this function. currently only called by some drivers,
1345 * not by mesa core. We now handle this properly from inside mesa.
Briana90046f2006-12-15 10:07:26 -07001346 */
1347void
1348_mesa_UpdateTexEnvProgram( GLcontext *ctx )
Keith Whitwellce721142005-07-11 10:10:38 +00001349{
Brian Paul122629f2006-07-20 16:49:57 +00001350 const struct gl_fragment_program *prev = ctx->FragmentProgram._Current;
Keith Whitwellce721142005-07-11 10:10:38 +00001351
Briana90046f2006-12-15 10:07:26 -07001352 ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram);
1353
1354 /* If a conventional fragment program/shader isn't in effect... */
Brianefcfdbd2007-02-24 15:51:41 -07001355 if (!ctx->FragmentProgram._Enabled &&
Briand781cdc2007-10-02 16:55:21 -06001356 (!ctx->Shader.CurrentProgram ||
Keith Whitwell0397b2b2008-09-11 16:05:15 +01001357 !ctx->Shader.CurrentProgram->FragmentProgram) )
1358 {
Brian Paul5b5c9312008-05-07 18:51:44 -06001359 struct gl_fragment_program *newProg;
1360
Keith Whitwell0397b2b2008-09-11 16:05:15 +01001361 newProg = _mesa_get_fixed_func_fragment_program(ctx);
Brian Paul5b5c9312008-05-07 18:51:44 -06001362
1363 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, newProg);
1364 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, newProg);
Keith Whitwellc3626a92005-11-01 17:25:49 +00001365 }
Keith Whitwellc3626a92005-11-01 17:25:49 +00001366
1367 /* Tell the driver about the change. Could define a new target for
1368 * this?
1369 */
Brian Paul5d7b49f2005-11-19 23:12:20 +00001370 if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) {
1371 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
Briana90046f2006-12-15 10:07:26 -07001372 (struct gl_program *) ctx->FragmentProgram._Current);
Brian Paul5d7b49f2005-11-19 23:12:20 +00001373 }
Keith Whitwellce721142005-07-11 10:10:38 +00001374}