Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1 | /************************************************************************** |
| 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 Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 28 | #include "glheader.h" |
| 29 | #include "macros.h" |
| 30 | #include "enums.h" |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 31 | #include "prog_parameter.h" |
| 32 | #include "prog_instruction.h" |
| 33 | #include "prog_print.h" |
| 34 | #include "prog_statevars.h" |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 35 | #include "texenvprogram.h" |
| 36 | |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 37 | /** |
| 38 | * According to Glean's texCombine test, no more than 21 instructions |
| 39 | * are needed. Allow a few extra just in case. |
| 40 | */ |
| 41 | #define MAX_INSTRUCTIONS 24 |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 42 | |
Keith Whitwell | 269e389 | 2005-05-12 10:28:43 +0000 | [diff] [blame] | 43 | #define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 44 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 45 | struct mode_opt { |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 46 | GLuint Source:4; |
| 47 | GLuint Operand:3; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | struct state_key { |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 51 | GLbitfield enabled_units; |
| 52 | GLuint separate_specular:1; |
| 53 | GLuint fog_enabled:1; |
| 54 | GLuint fog_mode:2; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 55 | |
| 56 | struct { |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 57 | GLuint enabled:1; |
| 58 | GLuint source_index:3; /* one of TEXTURE_1D/2D/3D/CUBE/RECT_INDEX */ |
| 59 | GLuint ScaleShiftRGB:2; |
| 60 | GLuint ScaleShiftA:2; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 61 | |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 62 | GLuint NumArgsRGB:2; |
| 63 | GLuint ModeRGB:4; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 64 | struct mode_opt OptRGB[3]; |
| 65 | |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 66 | GLuint NumArgsA:2; |
| 67 | GLuint ModeA:4; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 68 | struct mode_opt OptA[3]; |
| 69 | } unit[8]; |
| 70 | }; |
| 71 | |
| 72 | #define FOG_LINEAR 0 |
| 73 | #define FOG_EXP 1 |
| 74 | #define FOG_EXP2 2 |
| 75 | #define FOG_UNKNOWN 3 |
| 76 | |
| 77 | static GLuint translate_fog_mode( GLenum mode ) |
| 78 | { |
| 79 | switch (mode) { |
| 80 | case GL_LINEAR: return FOG_LINEAR; |
| 81 | case GL_EXP: return FOG_EXP; |
| 82 | case GL_EXP2: return FOG_EXP2; |
| 83 | default: return FOG_UNKNOWN; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | #define OPR_SRC_COLOR 0 |
| 88 | #define OPR_ONE_MINUS_SRC_COLOR 1 |
| 89 | #define OPR_SRC_ALPHA 2 |
| 90 | #define OPR_ONE_MINUS_SRC_ALPHA 3 |
| 91 | #define OPR_ZERO 4 |
| 92 | #define OPR_ONE 5 |
| 93 | #define OPR_UNKNOWN 7 |
| 94 | |
| 95 | static GLuint translate_operand( GLenum operand ) |
| 96 | { |
| 97 | switch (operand) { |
| 98 | case GL_SRC_COLOR: return OPR_SRC_COLOR; |
| 99 | case GL_ONE_MINUS_SRC_COLOR: return OPR_ONE_MINUS_SRC_COLOR; |
| 100 | case GL_SRC_ALPHA: return OPR_SRC_ALPHA; |
| 101 | case GL_ONE_MINUS_SRC_ALPHA: return OPR_ONE_MINUS_SRC_ALPHA; |
| 102 | case GL_ZERO: return OPR_ZERO; |
| 103 | case GL_ONE: return OPR_ONE; |
| 104 | default: return OPR_UNKNOWN; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | #define SRC_TEXTURE 0 |
| 109 | #define SRC_TEXTURE0 1 |
| 110 | #define SRC_TEXTURE1 2 |
| 111 | #define SRC_TEXTURE2 3 |
| 112 | #define SRC_TEXTURE3 4 |
| 113 | #define SRC_TEXTURE4 5 |
| 114 | #define SRC_TEXTURE5 6 |
| 115 | #define SRC_TEXTURE6 7 |
| 116 | #define SRC_TEXTURE7 8 |
| 117 | #define SRC_CONSTANT 9 |
| 118 | #define SRC_PRIMARY_COLOR 10 |
| 119 | #define SRC_PREVIOUS 11 |
| 120 | #define SRC_UNKNOWN 15 |
| 121 | |
| 122 | static GLuint translate_source( GLenum src ) |
| 123 | { |
| 124 | switch (src) { |
| 125 | case GL_TEXTURE: return SRC_TEXTURE; |
| 126 | case GL_TEXTURE0: |
| 127 | case GL_TEXTURE1: |
| 128 | case GL_TEXTURE2: |
| 129 | case GL_TEXTURE3: |
| 130 | case GL_TEXTURE4: |
| 131 | case GL_TEXTURE5: |
| 132 | case GL_TEXTURE6: |
| 133 | case GL_TEXTURE7: return SRC_TEXTURE0 + (src - GL_TEXTURE0); |
| 134 | case GL_CONSTANT: return SRC_CONSTANT; |
| 135 | case GL_PRIMARY_COLOR: return SRC_PRIMARY_COLOR; |
| 136 | case GL_PREVIOUS: return SRC_PREVIOUS; |
| 137 | default: return SRC_UNKNOWN; |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | #define MODE_REPLACE 0 |
| 142 | #define MODE_MODULATE 1 |
| 143 | #define MODE_ADD 2 |
| 144 | #define MODE_ADD_SIGNED 3 |
| 145 | #define MODE_INTERPOLATE 4 |
| 146 | #define MODE_SUBTRACT 5 |
| 147 | #define MODE_DOT3_RGB 6 |
| 148 | #define MODE_DOT3_RGB_EXT 7 |
| 149 | #define MODE_DOT3_RGBA 8 |
| 150 | #define MODE_DOT3_RGBA_EXT 9 |
| 151 | #define MODE_MODULATE_ADD_ATI 10 |
| 152 | #define MODE_MODULATE_SIGNED_ADD_ATI 11 |
| 153 | #define MODE_MODULATE_SUBTRACT_ATI 12 |
| 154 | #define MODE_UNKNOWN 15 |
| 155 | |
| 156 | static GLuint translate_mode( GLenum mode ) |
| 157 | { |
| 158 | switch (mode) { |
| 159 | case GL_REPLACE: return MODE_REPLACE; |
| 160 | case GL_MODULATE: return MODE_MODULATE; |
| 161 | case GL_ADD: return MODE_ADD; |
| 162 | case GL_ADD_SIGNED: return MODE_ADD_SIGNED; |
| 163 | case GL_INTERPOLATE: return MODE_INTERPOLATE; |
| 164 | case GL_SUBTRACT: return MODE_SUBTRACT; |
| 165 | case GL_DOT3_RGB: return MODE_DOT3_RGB; |
| 166 | case GL_DOT3_RGB_EXT: return MODE_DOT3_RGB_EXT; |
| 167 | case GL_DOT3_RGBA: return MODE_DOT3_RGBA; |
| 168 | case GL_DOT3_RGBA_EXT: return MODE_DOT3_RGBA_EXT; |
| 169 | case GL_MODULATE_ADD_ATI: return MODE_MODULATE_ADD_ATI; |
| 170 | case GL_MODULATE_SIGNED_ADD_ATI: return MODE_MODULATE_SIGNED_ADD_ATI; |
| 171 | case GL_MODULATE_SUBTRACT_ATI: return MODE_MODULATE_SUBTRACT_ATI; |
| 172 | default: return MODE_UNKNOWN; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | #define TEXTURE_UNKNOWN_INDEX 7 |
Brian Paul | e00ac11 | 2005-09-15 05:00:45 +0000 | [diff] [blame] | 177 | static GLuint translate_tex_src_bit( GLbitfield bit ) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 178 | { |
| 179 | switch (bit) { |
| 180 | case TEXTURE_1D_BIT: return TEXTURE_1D_INDEX; |
| 181 | case TEXTURE_2D_BIT: return TEXTURE_2D_INDEX; |
| 182 | case TEXTURE_RECT_BIT: return TEXTURE_RECT_INDEX; |
| 183 | case TEXTURE_3D_BIT: return TEXTURE_3D_INDEX; |
| 184 | case TEXTURE_CUBE_BIT: return TEXTURE_CUBE_INDEX; |
| 185 | default: return TEXTURE_UNKNOWN_INDEX; |
| 186 | } |
| 187 | } |
| 188 | |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 189 | /** |
| 190 | * Examine current texture environment state and generate a unique |
| 191 | * key to identify it. |
| 192 | */ |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 193 | static void make_state_key( GLcontext *ctx, struct state_key *key ) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 194 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 195 | GLuint i, j; |
| 196 | |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 197 | memset(key, 0, sizeof(*key)); |
| 198 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 199 | for (i=0;i<MAX_TEXTURE_UNITS;i++) { |
Brian Paul | d9736db | 2006-05-23 02:44:46 +0000 | [diff] [blame] | 200 | const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i]; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 201 | |
| 202 | if (!texUnit->_ReallyEnabled) |
| 203 | continue; |
| 204 | |
| 205 | key->unit[i].enabled = 1; |
| 206 | key->enabled_units |= (1<<i); |
| 207 | |
| 208 | key->unit[i].source_index = |
| 209 | translate_tex_src_bit(texUnit->_ReallyEnabled); |
| 210 | |
| 211 | key->unit[i].NumArgsRGB = texUnit->_CurrentCombine->_NumArgsRGB; |
| 212 | key->unit[i].NumArgsA = texUnit->_CurrentCombine->_NumArgsA; |
| 213 | |
| 214 | key->unit[i].ModeRGB = |
| 215 | translate_mode(texUnit->_CurrentCombine->ModeRGB); |
| 216 | key->unit[i].ModeA = |
| 217 | translate_mode(texUnit->_CurrentCombine->ModeA); |
| 218 | |
| 219 | key->unit[i].ScaleShiftRGB = texUnit->_CurrentCombine->ScaleShiftRGB; |
Keith Whitwell | 64da161 | 2006-05-22 14:30:58 +0000 | [diff] [blame] | 220 | key->unit[i].ScaleShiftA = texUnit->_CurrentCombine->ScaleShiftA; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 221 | |
| 222 | for (j=0;j<3;j++) { |
| 223 | key->unit[i].OptRGB[j].Operand = |
| 224 | translate_operand(texUnit->_CurrentCombine->OperandRGB[j]); |
| 225 | key->unit[i].OptA[j].Operand = |
| 226 | translate_operand(texUnit->_CurrentCombine->OperandA[j]); |
| 227 | key->unit[i].OptRGB[j].Source = |
| 228 | translate_source(texUnit->_CurrentCombine->SourceRGB[j]); |
| 229 | key->unit[i].OptA[j].Source = |
| 230 | translate_source(texUnit->_CurrentCombine->SourceA[j]); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) |
| 235 | key->separate_specular = 1; |
| 236 | |
| 237 | if (ctx->Fog.Enabled) { |
| 238 | key->fog_enabled = 1; |
| 239 | key->fog_mode = translate_fog_mode(ctx->Fog.Mode); |
| 240 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 243 | /* Use uregs to represent registers internally, translate to Mesa's |
| 244 | * expected formats on emit. |
| 245 | * |
| 246 | * NOTE: These are passed by value extensively in this file rather |
| 247 | * than as usual by pointer reference. If this disturbs you, try |
| 248 | * remembering they are just 32bits in size. |
| 249 | * |
| 250 | * GCC is smart enough to deal with these dword-sized structures in |
| 251 | * much the same way as if I had defined them as dwords and was using |
| 252 | * macros to access and set the fields. This is much nicer and easier |
| 253 | * to evolve. |
| 254 | */ |
| 255 | struct ureg { |
| 256 | GLuint file:4; |
| 257 | GLuint idx:8; |
| 258 | GLuint negatebase:1; |
| 259 | GLuint abs:1; |
| 260 | GLuint negateabs:1; |
| 261 | GLuint swz:12; |
| 262 | GLuint pad:5; |
| 263 | }; |
| 264 | |
Brian Paul | 13abf91 | 2006-04-13 19:17:13 +0000 | [diff] [blame] | 265 | static const struct ureg undef = { |
Alan Hourihane | 8d97265 | 2006-08-10 13:12:00 +0000 | [diff] [blame] | 266 | PROGRAM_UNDEFINED, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 267 | ~0, |
| 268 | 0, |
| 269 | 0, |
| 270 | 0, |
| 271 | 0, |
| 272 | 0 |
| 273 | }; |
| 274 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 275 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 276 | /* State used to build the fragment program: |
| 277 | */ |
| 278 | struct texenv_fragment_program { |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 279 | struct gl_fragment_program *program; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 280 | GLcontext *ctx; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 281 | struct state_key *state; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 282 | |
Brian Paul | c8d1741 | 2005-12-14 03:06:16 +0000 | [diff] [blame] | 283 | GLbitfield alu_temps; /* Track texture indirections, see spec. */ |
| 284 | GLbitfield temps_output; /* Track texture indirections, see spec. */ |
| 285 | GLbitfield temp_in_use; /* Tracks temporary regs which are in use. */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 286 | GLboolean error; |
| 287 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 288 | struct ureg src_texture[MAX_TEXTURE_UNITS]; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 289 | /* Reg containing each texture unit's sampled texture color, |
| 290 | * else undef. |
| 291 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 292 | |
| 293 | struct ureg src_previous; /* Reg containing color from previous |
| 294 | * stage. May need to be decl'd. |
| 295 | */ |
| 296 | |
| 297 | GLuint last_tex_stage; /* Number of last enabled texture unit */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 298 | |
| 299 | struct ureg half; |
| 300 | struct ureg one; |
| 301 | struct ureg zero; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 302 | }; |
| 303 | |
| 304 | |
| 305 | |
| 306 | static struct ureg make_ureg(GLuint file, GLuint idx) |
| 307 | { |
| 308 | struct ureg reg; |
| 309 | reg.file = file; |
| 310 | reg.idx = idx; |
| 311 | reg.negatebase = 0; |
| 312 | reg.abs = 0; |
| 313 | reg.negateabs = 0; |
| 314 | reg.swz = SWIZZLE_NOOP; |
| 315 | reg.pad = 0; |
| 316 | return reg; |
| 317 | } |
| 318 | |
| 319 | static struct ureg swizzle( struct ureg reg, int x, int y, int z, int w ) |
| 320 | { |
| 321 | reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x), |
| 322 | GET_SWZ(reg.swz, y), |
| 323 | GET_SWZ(reg.swz, z), |
| 324 | GET_SWZ(reg.swz, w)); |
| 325 | |
| 326 | return reg; |
| 327 | } |
| 328 | |
| 329 | static struct ureg swizzle1( struct ureg reg, int x ) |
| 330 | { |
| 331 | return swizzle(reg, x, x, x, x); |
| 332 | } |
| 333 | |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 334 | static struct ureg negate( struct ureg reg ) |
| 335 | { |
| 336 | reg.negatebase ^= 1; |
| 337 | return reg; |
| 338 | } |
| 339 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 340 | static GLboolean is_undef( struct ureg reg ) |
| 341 | { |
Alan Hourihane | 8d97265 | 2006-08-10 13:12:00 +0000 | [diff] [blame] | 342 | return reg.file == PROGRAM_UNDEFINED; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 345 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 346 | static struct ureg get_temp( struct texenv_fragment_program *p ) |
| 347 | { |
Brian Paul | 13abf91 | 2006-04-13 19:17:13 +0000 | [diff] [blame] | 348 | GLint bit; |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 349 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 350 | /* First try and reuse temps which have been used already: |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 351 | */ |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 352 | bit = _mesa_ffs( ~p->temp_in_use & p->alu_temps ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 353 | |
| 354 | /* Then any unused temporary: |
| 355 | */ |
| 356 | if (!bit) |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 357 | bit = _mesa_ffs( ~p->temp_in_use ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 358 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 359 | if (!bit) { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 360 | _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__); |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 361 | _mesa_exit(1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 362 | } |
| 363 | |
Brian Paul | 13abf91 | 2006-04-13 19:17:13 +0000 | [diff] [blame] | 364 | if ((GLuint) bit > p->program->Base.NumTemporaries) |
Keith Whitwell | b5cbaf9 | 2005-09-08 18:45:03 +0000 | [diff] [blame] | 365 | p->program->Base.NumTemporaries = bit; |
| 366 | |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 367 | p->temp_in_use |= 1<<(bit-1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 368 | return make_ureg(PROGRAM_TEMPORARY, (bit-1)); |
| 369 | } |
| 370 | |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 371 | static struct ureg get_tex_temp( struct texenv_fragment_program *p ) |
| 372 | { |
| 373 | int bit; |
| 374 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 375 | /* First try to find availble temp not previously used (to avoid |
| 376 | * starting a new texture indirection). According to the spec, the |
| 377 | * ~p->temps_output isn't necessary, but will keep it there for |
| 378 | * now: |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 379 | */ |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 380 | bit = _mesa_ffs( ~p->temp_in_use & ~p->alu_temps & ~p->temps_output ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 381 | |
| 382 | /* Then any unused temporary: |
| 383 | */ |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 384 | if (!bit) |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 385 | bit = _mesa_ffs( ~p->temp_in_use ); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 386 | |
| 387 | if (!bit) { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 388 | _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__); |
Brian Paul | b3aefd1 | 2005-09-19 20:12:32 +0000 | [diff] [blame] | 389 | _mesa_exit(1); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Brian Paul | 13abf91 | 2006-04-13 19:17:13 +0000 | [diff] [blame] | 392 | if ((GLuint) bit > p->program->Base.NumTemporaries) |
Keith Whitwell | b5cbaf9 | 2005-09-08 18:45:03 +0000 | [diff] [blame] | 393 | p->program->Base.NumTemporaries = bit; |
| 394 | |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 395 | p->temp_in_use |= 1<<(bit-1); |
Keith Whitwell | ecb6bfc | 2005-05-10 08:58:44 +0000 | [diff] [blame] | 396 | return make_ureg(PROGRAM_TEMPORARY, (bit-1)); |
| 397 | } |
| 398 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 399 | |
| 400 | static void release_temps( struct texenv_fragment_program *p ) |
| 401 | { |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 402 | GLuint max_temp = p->ctx->Const.FragmentProgram.MaxTemps; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 403 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 404 | /* KW: To support tex_env_crossbar, don't release the registers in |
| 405 | * temps_output. |
| 406 | */ |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 407 | if (max_temp >= sizeof(int) * 8) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 408 | p->temp_in_use = p->temps_output; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 409 | else |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 410 | p->temp_in_use = ~((1<<max_temp)-1) | p->temps_output; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 414 | static struct ureg register_param6( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 415 | GLint s0, |
| 416 | GLint s1, |
| 417 | GLint s2, |
| 418 | GLint s3, |
| 419 | GLint s4, |
| 420 | GLint s5) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 421 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 422 | GLint tokens[6]; |
| 423 | GLuint idx; |
| 424 | tokens[0] = s0; |
| 425 | tokens[1] = s1; |
| 426 | tokens[2] = s2; |
| 427 | tokens[3] = s3; |
| 428 | tokens[4] = s4; |
| 429 | tokens[5] = s5; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 430 | idx = _mesa_add_state_reference( p->program->Base.Parameters, tokens ); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 431 | return make_ureg(PROGRAM_STATE_VAR, idx); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 434 | |
| 435 | #define register_param1(p,s0) register_param6(p,s0,0,0,0,0,0) |
| 436 | #define register_param2(p,s0,s1) register_param6(p,s0,s1,0,0,0,0) |
| 437 | #define register_param3(p,s0,s1,s2) register_param6(p,s0,s1,s2,0,0,0) |
| 438 | #define register_param4(p,s0,s1,s2,s3) register_param6(p,s0,s1,s2,s3,0,0) |
| 439 | |
| 440 | |
| 441 | static struct ureg register_input( struct texenv_fragment_program *p, GLuint input ) |
| 442 | { |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 443 | p->program->Base.InputsRead |= (1 << input); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 444 | return make_ureg(PROGRAM_INPUT, input); |
| 445 | } |
| 446 | |
| 447 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 448 | static void emit_arg( struct prog_src_register *reg, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 449 | struct ureg ureg ) |
| 450 | { |
| 451 | reg->File = ureg.file; |
| 452 | reg->Index = ureg.idx; |
| 453 | reg->Swizzle = ureg.swz; |
Keith Whitwell | f2802c4 | 2005-10-07 09:55:26 +0000 | [diff] [blame] | 454 | reg->NegateBase = ureg.negatebase ? 0xf : 0x0; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 455 | reg->Abs = ureg.abs; |
| 456 | reg->NegateAbs = ureg.negateabs; |
| 457 | } |
| 458 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 459 | static void emit_dst( struct prog_dst_register *dst, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 460 | struct ureg ureg, GLuint mask ) |
| 461 | { |
| 462 | dst->File = ureg.file; |
| 463 | dst->Index = ureg.idx; |
| 464 | dst->WriteMask = mask; |
| 465 | dst->CondMask = 0; |
| 466 | dst->CondSwizzle = 0; |
| 467 | } |
| 468 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 469 | static struct prog_instruction * |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 470 | emit_op(struct texenv_fragment_program *p, |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 471 | enum prog_opcode op, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 472 | struct ureg dest, |
| 473 | GLuint mask, |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 474 | GLboolean saturate, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 475 | struct ureg src0, |
| 476 | struct ureg src1, |
| 477 | struct ureg src2 ) |
| 478 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 479 | GLuint nr = p->program->Base.NumInstructions++; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 480 | struct prog_instruction *inst = &p->program->Base.Instructions[nr]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 481 | |
Brian Paul | d6272e0 | 2006-10-29 18:03:16 +0000 | [diff] [blame] | 482 | _mesa_init_instructions(inst, 1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 483 | inst->Opcode = op; |
| 484 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 485 | emit_arg( &inst->SrcReg[0], src0 ); |
| 486 | emit_arg( &inst->SrcReg[1], src1 ); |
| 487 | emit_arg( &inst->SrcReg[2], src2 ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 488 | |
Brian Paul | e31ac05 | 2005-11-20 17:52:40 +0000 | [diff] [blame] | 489 | inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 490 | |
| 491 | emit_dst( &inst->DstReg, dest, mask ); |
| 492 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 493 | /* Accounting for indirection tracking: |
| 494 | */ |
| 495 | if (dest.file == PROGRAM_TEMPORARY) |
| 496 | p->temps_output |= 1 << dest.idx; |
| 497 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 498 | return inst; |
| 499 | } |
| 500 | |
| 501 | |
| 502 | static struct ureg emit_arith( struct texenv_fragment_program *p, |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 503 | enum prog_opcode op, |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 504 | struct ureg dest, |
| 505 | GLuint mask, |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 506 | GLboolean saturate, |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 507 | struct ureg src0, |
| 508 | struct ureg src1, |
| 509 | struct ureg src2 ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 510 | { |
| 511 | emit_op(p, op, dest, mask, saturate, src0, src1, src2); |
| 512 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 513 | /* Accounting for indirection tracking: |
| 514 | */ |
| 515 | if (src0.file == PROGRAM_TEMPORARY) |
| 516 | p->alu_temps |= 1 << src0.idx; |
| 517 | |
| 518 | if (!is_undef(src1) && src1.file == PROGRAM_TEMPORARY) |
| 519 | p->alu_temps |= 1 << src1.idx; |
| 520 | |
| 521 | if (!is_undef(src2) && src2.file == PROGRAM_TEMPORARY) |
| 522 | p->alu_temps |= 1 << src2.idx; |
| 523 | |
| 524 | if (dest.file == PROGRAM_TEMPORARY) |
| 525 | p->alu_temps |= 1 << dest.idx; |
| 526 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 527 | p->program->NumAluInstructions++; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 528 | return dest; |
| 529 | } |
| 530 | |
| 531 | static struct ureg emit_texld( struct texenv_fragment_program *p, |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 532 | enum prog_opcode op, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 533 | struct ureg dest, |
| 534 | GLuint destmask, |
| 535 | GLuint tex_unit, |
| 536 | GLuint tex_idx, |
| 537 | struct ureg coord ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 538 | { |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 539 | struct prog_instruction *inst = emit_op( p, op, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 540 | dest, destmask, |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 541 | GL_FALSE, /* don't saturate? */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 542 | coord, /* arg 0? */ |
| 543 | undef, |
| 544 | undef); |
| 545 | |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 546 | inst->TexSrcTarget = tex_idx; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 547 | inst->TexSrcUnit = tex_unit; |
| 548 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 549 | p->program->NumTexInstructions++; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 550 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 551 | /* Is this a texture indirection? |
| 552 | */ |
| 553 | if ((coord.file == PROGRAM_TEMPORARY && |
| 554 | (p->temps_output & (1<<coord.idx))) || |
| 555 | (dest.file == PROGRAM_TEMPORARY && |
| 556 | (p->alu_temps & (1<<dest.idx)))) { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 557 | p->program->NumTexIndirections++; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 558 | p->temps_output = 1<<coord.idx; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 559 | p->alu_temps = 0; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 560 | assert(0); /* KW: texture env crossbar */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | return dest; |
| 564 | } |
| 565 | |
| 566 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 567 | static struct ureg register_const4f( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 568 | GLfloat s0, |
| 569 | GLfloat s1, |
| 570 | GLfloat s2, |
| 571 | GLfloat s3) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 572 | { |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 573 | GLfloat values[4]; |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 574 | GLuint idx, swizzle; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 575 | values[0] = s0; |
| 576 | values[1] = s1; |
| 577 | values[2] = s2; |
| 578 | values[3] = s3; |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 579 | idx = _mesa_add_unnamed_constant( p->program->Base.Parameters, values, 4, |
| 580 | &swizzle ); |
| 581 | ASSERT(swizzle == SWIZZLE_NOOP); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 582 | return make_ureg(PROGRAM_STATE_VAR, idx); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 585 | #define register_scalar_const(p, s0) register_const4f(p, s0, s0, s0, s0) |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 586 | #define register_const1f(p, s0) register_const4f(p, s0, 0, 0, 1) |
| 587 | #define register_const2f(p, s0, s1) register_const4f(p, s0, s1, 0, 1) |
| 588 | #define register_const3f(p, s0, s1, s2) register_const4f(p, s0, s1, s2, 1) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 589 | |
| 590 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 591 | static struct ureg get_one( struct texenv_fragment_program *p ) |
| 592 | { |
| 593 | if (is_undef(p->one)) |
| 594 | p->one = register_scalar_const(p, 1.0); |
| 595 | return p->one; |
| 596 | } |
| 597 | |
| 598 | static struct ureg get_half( struct texenv_fragment_program *p ) |
| 599 | { |
| 600 | if (is_undef(p->half)) |
Aapo Tahkola | 4dd8a89 | 2006-01-24 20:24:06 +0000 | [diff] [blame] | 601 | p->half = register_scalar_const(p, 0.5); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 602 | return p->half; |
| 603 | } |
| 604 | |
| 605 | static struct ureg get_zero( struct texenv_fragment_program *p ) |
| 606 | { |
| 607 | if (is_undef(p->zero)) |
Aapo Tahkola | 4dd8a89 | 2006-01-24 20:24:06 +0000 | [diff] [blame] | 608 | p->zero = register_scalar_const(p, 0.0); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 609 | return p->zero; |
| 610 | } |
| 611 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 612 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 613 | static void program_error( struct texenv_fragment_program *p, const char *msg ) |
| 614 | { |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 615 | _mesa_problem(NULL, msg); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 616 | p->error = 1; |
| 617 | } |
| 618 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 619 | static struct ureg get_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 620 | GLuint src, GLuint unit ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 621 | { |
| 622 | switch (src) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 623 | case SRC_TEXTURE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 624 | assert(!is_undef(p->src_texture[unit])); |
| 625 | return p->src_texture[unit]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 626 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 627 | case SRC_TEXTURE0: |
| 628 | case SRC_TEXTURE1: |
| 629 | case SRC_TEXTURE2: |
| 630 | case SRC_TEXTURE3: |
| 631 | case SRC_TEXTURE4: |
| 632 | case SRC_TEXTURE5: |
| 633 | case SRC_TEXTURE6: |
| 634 | case SRC_TEXTURE7: |
| 635 | assert(!is_undef(p->src_texture[src - SRC_TEXTURE0])); |
| 636 | return p->src_texture[src - SRC_TEXTURE0]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 637 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 638 | case SRC_CONSTANT: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 639 | return register_param2(p, STATE_TEXENV_COLOR, unit); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 640 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 641 | case SRC_PRIMARY_COLOR: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 642 | return register_input(p, FRAG_ATTRIB_COL0); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 643 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 644 | case SRC_PREVIOUS: |
| 645 | default: |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 646 | if (is_undef(p->src_previous)) |
| 647 | return register_input(p, FRAG_ATTRIB_COL0); |
| 648 | else |
| 649 | return p->src_previous; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 650 | } |
| 651 | } |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 652 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 653 | static struct ureg emit_combine_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 654 | GLuint mask, |
| 655 | GLuint unit, |
| 656 | GLuint source, |
| 657 | GLuint operand ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 658 | { |
| 659 | struct ureg arg, src, one; |
| 660 | |
| 661 | src = get_source(p, source, unit); |
| 662 | |
| 663 | switch (operand) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 664 | case OPR_ONE_MINUS_SRC_COLOR: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 665 | /* Get unused tmp, |
| 666 | * Emit tmp = 1.0 - arg.xyzw |
| 667 | */ |
| 668 | arg = get_temp( p ); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 669 | one = get_one( p ); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 670 | return emit_arith( p, OPCODE_SUB, arg, mask, 0, one, src, undef); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 671 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 672 | case OPR_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 673 | if (mask == WRITEMASK_W) |
| 674 | return src; |
| 675 | else |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 676 | return swizzle1( src, SWIZZLE_W ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 677 | case OPR_ONE_MINUS_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 678 | /* Get unused tmp, |
| 679 | * Emit tmp = 1.0 - arg.wwww |
| 680 | */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 681 | arg = get_temp(p); |
| 682 | one = get_one(p); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 683 | return emit_arith(p, OPCODE_SUB, arg, mask, 0, |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 684 | one, swizzle1(src, SWIZZLE_W), undef); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 685 | case OPR_ZERO: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 686 | return get_zero(p); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 687 | case OPR_ONE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 688 | return get_one(p); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 689 | case OPR_SRC_COLOR: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 690 | default: |
| 691 | return src; |
| 692 | } |
| 693 | } |
| 694 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 695 | static GLboolean args_match( struct state_key *key, GLuint unit ) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 696 | { |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 697 | GLuint i, nr = key->unit[unit].NumArgsRGB; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 698 | |
| 699 | for (i = 0 ; i < nr ; i++) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 700 | if (key->unit[unit].OptA[i].Source != key->unit[unit].OptRGB[i].Source) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 701 | return GL_FALSE; |
| 702 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 703 | switch(key->unit[unit].OptA[i].Operand) { |
| 704 | case OPR_SRC_ALPHA: |
| 705 | switch(key->unit[unit].OptRGB[i].Operand) { |
| 706 | case OPR_SRC_COLOR: |
| 707 | case OPR_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 708 | break; |
| 709 | default: |
| 710 | return GL_FALSE; |
| 711 | } |
| 712 | break; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 713 | case OPR_ONE_MINUS_SRC_ALPHA: |
| 714 | switch(key->unit[unit].OptRGB[i].Operand) { |
| 715 | case OPR_ONE_MINUS_SRC_COLOR: |
| 716 | case OPR_ONE_MINUS_SRC_ALPHA: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 717 | break; |
| 718 | default: |
| 719 | return GL_FALSE; |
| 720 | } |
| 721 | break; |
| 722 | default: |
| 723 | return GL_FALSE; /* impossible */ |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | return GL_TRUE; |
| 728 | } |
| 729 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 730 | static struct ureg emit_combine( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 731 | struct ureg dest, |
| 732 | GLuint mask, |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 733 | GLboolean saturate, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 734 | GLuint unit, |
| 735 | GLuint nr, |
| 736 | GLuint mode, |
Brian Paul | d9736db | 2006-05-23 02:44:46 +0000 | [diff] [blame] | 737 | const struct mode_opt *opt) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 738 | { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 739 | struct ureg src[3]; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 740 | struct ureg tmp, half; |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 741 | GLuint i; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 742 | |
Brian Paul | 0063084 | 2005-12-12 15:27:55 +0000 | [diff] [blame] | 743 | tmp = undef; /* silence warning (bug 5318) */ |
| 744 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 745 | for (i = 0; i < nr; i++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 746 | src[i] = emit_combine_source( p, mask, unit, opt[i].Source, opt[i].Operand ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 747 | |
| 748 | switch (mode) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 749 | case MODE_REPLACE: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 750 | if (mask == WRITEMASK_XYZW && !saturate) |
| 751 | return src[0]; |
| 752 | else |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 753 | return emit_arith( p, OPCODE_MOV, dest, mask, saturate, src[0], undef, undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 754 | case MODE_MODULATE: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 755 | return emit_arith( p, OPCODE_MUL, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 756 | src[0], src[1], undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 757 | case MODE_ADD: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 758 | return emit_arith( p, OPCODE_ADD, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 759 | src[0], src[1], undef ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 760 | case MODE_ADD_SIGNED: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 761 | /* tmp = arg0 + arg1 |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 762 | * result = tmp - .5 |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 763 | */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 764 | half = get_half(p); |
Jerome Glisse | 99da2d3 | 2006-01-24 23:04:51 +0000 | [diff] [blame] | 765 | tmp = get_temp( p ); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 766 | emit_arith( p, OPCODE_ADD, tmp, mask, 0, src[0], src[1], undef ); |
| 767 | emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp, half, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 768 | return dest; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 769 | case MODE_INTERPOLATE: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 770 | /* Arg0 * (Arg2) + Arg1 * (1-Arg2) -- note arguments are reordered: |
| 771 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 772 | return emit_arith( p, OPCODE_LRP, dest, mask, saturate, src[2], src[0], src[1] ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 773 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 774 | case MODE_SUBTRACT: |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 775 | return emit_arith( p, OPCODE_SUB, dest, mask, saturate, src[0], src[1], undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 776 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 777 | case MODE_DOT3_RGBA: |
| 778 | case MODE_DOT3_RGBA_EXT: |
| 779 | case MODE_DOT3_RGB_EXT: |
| 780 | case MODE_DOT3_RGB: { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 781 | struct ureg tmp0 = get_temp( p ); |
| 782 | struct ureg tmp1 = get_temp( p ); |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 783 | struct ureg neg1 = register_scalar_const(p, -1); |
| 784 | struct ureg two = register_scalar_const(p, 2); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 785 | |
| 786 | /* tmp0 = 2*src0 - 1 |
| 787 | * tmp1 = 2*src1 - 1 |
| 788 | * |
| 789 | * dst = tmp0 dot3 tmp1 |
| 790 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 791 | emit_arith( p, OPCODE_MAD, tmp0, WRITEMASK_XYZW, 0, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 792 | two, src[0], neg1); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 793 | |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 794 | if (_mesa_memcmp(&src[0], &src[1], sizeof(struct ureg)) == 0) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 795 | tmp1 = tmp0; |
| 796 | else |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 797 | emit_arith( p, OPCODE_MAD, tmp1, WRITEMASK_XYZW, 0, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 798 | two, src[1], neg1); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 799 | emit_arith( p, OPCODE_DP3, dest, mask, saturate, tmp0, tmp1, undef); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 800 | return dest; |
| 801 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 802 | case MODE_MODULATE_ADD_ATI: |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 803 | /* Arg0 * Arg2 + Arg1 */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 804 | return emit_arith( p, OPCODE_MAD, dest, mask, saturate, |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 805 | src[0], src[2], src[1] ); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 806 | case MODE_MODULATE_SIGNED_ADD_ATI: { |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 807 | /* Arg0 * Arg2 + Arg1 - 0.5 */ |
| 808 | struct ureg tmp0 = get_temp(p); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 809 | half = get_half(p); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 810 | emit_arith( p, OPCODE_MAD, tmp0, mask, 0, src[0], src[2], src[1] ); |
| 811 | emit_arith( p, OPCODE_SUB, dest, mask, saturate, tmp0, half, undef ); |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 812 | return dest; |
| 813 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 814 | case MODE_MODULATE_SUBTRACT_ATI: |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 815 | /* Arg0 * Arg2 - Arg1 */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 816 | emit_arith( p, OPCODE_MAD, dest, mask, 0, src[0], src[2], negate(src[1]) ); |
Keith Whitwell | 6fe176a | 2005-05-23 08:08:43 +0000 | [diff] [blame] | 817 | return dest; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 818 | default: |
| 819 | return src[0]; |
| 820 | } |
| 821 | } |
| 822 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 823 | |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 824 | /** |
| 825 | * Generate instructions for one texture unit's env/combiner mode. |
| 826 | */ |
| 827 | static struct ureg |
| 828 | emit_texenv(struct texenv_fragment_program *p, GLuint unit) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 829 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 830 | struct state_key *key = p->state; |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 831 | GLboolean saturate = (unit < p->last_tex_stage); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 832 | GLuint rgb_shift, alpha_shift; |
| 833 | struct ureg out, shift; |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 834 | struct ureg dest; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 835 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 836 | if (!key->unit[unit].enabled) { |
| 837 | return get_source(p, SRC_PREVIOUS, 0); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 838 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 839 | |
| 840 | switch (key->unit[unit].ModeRGB) { |
| 841 | case MODE_DOT3_RGB_EXT: |
| 842 | alpha_shift = key->unit[unit].ScaleShiftA; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 843 | rgb_shift = 0; |
| 844 | break; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 845 | case MODE_DOT3_RGBA_EXT: |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 846 | alpha_shift = 0; |
| 847 | rgb_shift = 0; |
| 848 | break; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 849 | default: |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 850 | rgb_shift = key->unit[unit].ScaleShiftRGB; |
| 851 | alpha_shift = key->unit[unit].ScaleShiftA; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 852 | break; |
| 853 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 854 | |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 855 | /* If this is the very last calculation, emit direct to output reg: |
| 856 | */ |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 857 | if (key->separate_specular || |
Keith Whitwell | cf4f3c5 | 2005-05-16 12:15:01 +0000 | [diff] [blame] | 858 | unit != p->last_tex_stage || |
| 859 | alpha_shift || |
| 860 | rgb_shift) |
| 861 | dest = get_temp( p ); |
| 862 | else |
Brian Paul | 90ebb58 | 2005-11-02 18:06:12 +0000 | [diff] [blame] | 863 | dest = make_ureg(PROGRAM_OUTPUT, FRAG_RESULT_COLR); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 864 | |
| 865 | /* Emit the RGB and A combine ops |
| 866 | */ |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 867 | if (key->unit[unit].ModeRGB == key->unit[unit].ModeA && |
| 868 | args_match(key, unit)) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 869 | out = emit_combine( p, dest, WRITEMASK_XYZW, saturate, |
| 870 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 871 | key->unit[unit].NumArgsRGB, |
| 872 | key->unit[unit].ModeRGB, |
| 873 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 874 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 875 | else if (key->unit[unit].ModeRGB == MODE_DOT3_RGBA_EXT || |
| 876 | key->unit[unit].ModeA == MODE_DOT3_RGBA) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 877 | |
| 878 | out = emit_combine( p, dest, WRITEMASK_XYZW, saturate, |
| 879 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 880 | key->unit[unit].NumArgsRGB, |
| 881 | key->unit[unit].ModeRGB, |
| 882 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 883 | } |
| 884 | else { |
| 885 | /* Need to do something to stop from re-emitting identical |
| 886 | * argument calculations here: |
| 887 | */ |
| 888 | out = emit_combine( p, dest, WRITEMASK_XYZ, saturate, |
| 889 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 890 | key->unit[unit].NumArgsRGB, |
| 891 | key->unit[unit].ModeRGB, |
| 892 | key->unit[unit].OptRGB); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 893 | out = emit_combine( p, dest, WRITEMASK_W, saturate, |
| 894 | unit, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 895 | key->unit[unit].NumArgsA, |
| 896 | key->unit[unit].ModeA, |
| 897 | key->unit[unit].OptA); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | /* Deal with the final shift: |
| 901 | */ |
| 902 | if (alpha_shift || rgb_shift) { |
| 903 | if (rgb_shift == alpha_shift) { |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 904 | shift = register_scalar_const(p, 1<<rgb_shift); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 905 | } |
| 906 | else { |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 907 | shift = register_const4f(p, |
| 908 | 1<<rgb_shift, |
| 909 | 1<<rgb_shift, |
| 910 | 1<<rgb_shift, |
| 911 | 1<<alpha_shift); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 912 | } |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 913 | return emit_arith( p, OPCODE_MUL, dest, WRITEMASK_XYZW, |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 914 | saturate, out, shift, undef ); |
| 915 | } |
| 916 | else |
| 917 | return out; |
| 918 | } |
| 919 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 920 | |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 921 | /** |
| 922 | * Generate instruction for getting a texture source term. |
| 923 | */ |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 924 | static void load_texture( struct texenv_fragment_program *p, GLuint unit ) |
| 925 | { |
| 926 | if (is_undef(p->src_texture[unit])) { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 927 | GLuint dim = p->state->unit[unit].source_index; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 928 | struct ureg texcoord = register_input(p, FRAG_ATTRIB_TEX0+unit); |
| 929 | struct ureg tmp = get_tex_temp( p ); |
| 930 | |
Brian Paul | bfb5ea3 | 2005-07-19 18:20:04 +0000 | [diff] [blame] | 931 | if (dim == TEXTURE_UNKNOWN_INDEX) |
| 932 | program_error(p, "TexSrcBit"); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 933 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 934 | /* TODO: Use D0_MASK_XY where possible. |
| 935 | */ |
Aapo Tahkola | b891534 | 2006-03-28 10:26:34 +0000 | [diff] [blame] | 936 | if (p->state->unit[unit].enabled) |
| 937 | p->src_texture[unit] = emit_texld( p, OPCODE_TXP, |
| 938 | tmp, WRITEMASK_XYZW, |
| 939 | unit, dim, texcoord ); |
| 940 | else |
| 941 | p->src_texture[unit] = get_zero(p); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 942 | } |
| 943 | } |
| 944 | |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 945 | static GLboolean load_texenv_source( struct texenv_fragment_program *p, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 946 | GLuint src, GLuint unit ) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 947 | { |
| 948 | switch (src) { |
Aapo Tahkola | 4dd8a89 | 2006-01-24 20:24:06 +0000 | [diff] [blame] | 949 | case SRC_TEXTURE: |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 950 | load_texture(p, unit); |
| 951 | break; |
| 952 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 953 | case SRC_TEXTURE0: |
| 954 | case SRC_TEXTURE1: |
| 955 | case SRC_TEXTURE2: |
| 956 | case SRC_TEXTURE3: |
| 957 | case SRC_TEXTURE4: |
| 958 | case SRC_TEXTURE5: |
| 959 | case SRC_TEXTURE6: |
| 960 | case SRC_TEXTURE7: |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 961 | load_texture(p, src - SRC_TEXTURE0); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 962 | break; |
| 963 | |
| 964 | default: |
| 965 | break; |
| 966 | } |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 967 | |
| 968 | return GL_TRUE; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 971 | |
| 972 | /** |
| 973 | * Generate instructions for loading all texture source terms. |
| 974 | */ |
| 975 | static GLboolean |
| 976 | load_texunit_sources( struct texenv_fragment_program *p, int unit ) |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 977 | { |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 978 | struct state_key *key = p->state; |
Aapo Tahkola | b891534 | 2006-03-28 10:26:34 +0000 | [diff] [blame] | 979 | GLuint i; |
| 980 | |
| 981 | for (i = 0; i < key->unit[unit].NumArgsRGB; i++) { |
| 982 | load_texenv_source( p, key->unit[unit].OptRGB[i].Source, unit); |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 983 | } |
Aapo Tahkola | b891534 | 2006-03-28 10:26:34 +0000 | [diff] [blame] | 984 | |
| 985 | for (i = 0; i < key->unit[unit].NumArgsA; i++) { |
| 986 | load_texenv_source( p, key->unit[unit].OptA[i].Source, unit ); |
| 987 | } |
| 988 | |
Keith Whitwell | 241b6b7 | 2005-05-23 09:50:34 +0000 | [diff] [blame] | 989 | return GL_TRUE; |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 990 | } |
| 991 | |
Brian Paul | 22db535 | 2005-11-19 23:45:10 +0000 | [diff] [blame] | 992 | |
| 993 | /** |
| 994 | * Generate a new fragment program which implements the context's |
| 995 | * current texture env/combine mode. |
| 996 | */ |
| 997 | static void |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 998 | create_new_program(GLcontext *ctx, struct state_key *key, |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 999 | struct gl_fragment_program *program) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1000 | { |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1001 | struct prog_instruction instBuffer[MAX_INSTRUCTIONS]; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1002 | struct texenv_fragment_program p; |
| 1003 | GLuint unit; |
| 1004 | struct ureg cf, out; |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1005 | |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 1006 | _mesa_memset(&p, 0, sizeof(p)); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1007 | p.ctx = ctx; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1008 | p.state = key; |
| 1009 | p.program = program; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1010 | |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1011 | /* During code generation, use locally-allocated instruction buffer, |
| 1012 | * then alloc dynamic storage below. |
| 1013 | */ |
| 1014 | p.program->Base.Instructions = instBuffer; |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1015 | p.program->Base.Target = GL_FRAGMENT_PROGRAM_ARB; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1016 | p.program->NumTexIndirections = 1; /* correct? */ |
| 1017 | p.program->NumTexInstructions = 0; |
| 1018 | p.program->NumAluInstructions = 0; |
Keith Whitwell | 9ca8815 | 2005-05-10 09:56:02 +0000 | [diff] [blame] | 1019 | p.program->Base.String = 0; |
| 1020 | p.program->Base.NumInstructions = |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1021 | p.program->Base.NumTemporaries = |
| 1022 | p.program->Base.NumParameters = |
| 1023 | p.program->Base.NumAttributes = p.program->Base.NumAddressRegs = 0; |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 1024 | p.program->Base.Parameters = _mesa_new_parameter_list(); |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1025 | |
Brian Paul | de99760 | 2005-11-12 17:53:14 +0000 | [diff] [blame] | 1026 | p.program->Base.InputsRead = 0; |
| 1027 | p.program->Base.OutputsWritten = 1 << FRAG_RESULT_COLR; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1028 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1029 | for (unit = 0; unit < MAX_TEXTURE_UNITS; unit++) |
| 1030 | p.src_texture[unit] = undef; |
| 1031 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1032 | p.src_previous = undef; |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1033 | p.half = undef; |
| 1034 | p.zero = undef; |
| 1035 | p.one = undef; |
| 1036 | |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1037 | p.last_tex_stage = 0; |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 1038 | release_temps(&p); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1039 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1040 | if (key->enabled_units) { |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1041 | /* First pass - to support texture_env_crossbar, first identify |
| 1042 | * all referenced texture sources and emit texld instructions |
| 1043 | * for each: |
| 1044 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1045 | for (unit = 0 ; unit < ctx->Const.MaxTextureUnits ; unit++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1046 | if (key->unit[unit].enabled) { |
Aapo Tahkola | b891534 | 2006-03-28 10:26:34 +0000 | [diff] [blame] | 1047 | load_texunit_sources( &p, unit ); |
| 1048 | p.last_tex_stage = unit; |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1049 | } |
| 1050 | |
Keith Whitwell | 2dea6df | 2005-05-23 09:37:32 +0000 | [diff] [blame] | 1051 | /* Second pass - emit combine instructions to build final color: |
| 1052 | */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1053 | for (unit = 0 ; unit < ctx->Const.MaxTextureUnits; unit++) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1054 | if (key->enabled_units & (1<<unit)) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1055 | p.src_previous = emit_texenv( &p, unit ); |
Keith Whitwell | 93cd923 | 2005-05-11 08:30:23 +0000 | [diff] [blame] | 1056 | release_temps(&p); /* release all temps */ |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1057 | } |
| 1058 | } |
| 1059 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1060 | cf = get_source( &p, SRC_PREVIOUS, 0 ); |
Brian Paul | 90ebb58 | 2005-11-02 18:06:12 +0000 | [diff] [blame] | 1061 | out = make_ureg( PROGRAM_OUTPUT, FRAG_RESULT_COLR ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1062 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1063 | if (key->separate_specular) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1064 | /* Emit specular add. |
| 1065 | */ |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1066 | struct ureg s = register_input(&p, FRAG_ATTRIB_COL1); |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1067 | emit_arith( &p, OPCODE_ADD, out, WRITEMASK_XYZ, 0, cf, s, undef ); |
| 1068 | emit_arith( &p, OPCODE_MOV, out, WRITEMASK_W, 0, cf, undef, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1069 | } |
Brian Paul | aa20695 | 2005-09-16 18:14:24 +0000 | [diff] [blame] | 1070 | else if (_mesa_memcmp(&cf, &out, sizeof(cf)) != 0) { |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1071 | /* Will wind up in here if no texture enabled or a couple of |
| 1072 | * other scenarios (GL_REPLACE for instance). |
| 1073 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1074 | emit_arith( &p, OPCODE_MOV, out, WRITEMASK_XYZW, 0, cf, undef, undef ); |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1075 | } |
| 1076 | |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1077 | /* Finish up: |
| 1078 | */ |
Brian Paul | 7e80751 | 2005-11-05 17:10:45 +0000 | [diff] [blame] | 1079 | emit_arith( &p, OPCODE_END, undef, WRITEMASK_XYZW, 0, undef, undef, undef); |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1080 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1081 | if (key->fog_enabled) { |
| 1082 | /* Pull fog mode from GLcontext, the value in the state key is |
| 1083 | * a reduced value and not what is expected in FogOption |
| 1084 | */ |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1085 | p.program->FogOption = ctx->Fog.Mode; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1086 | } else |
Keith Whitwell | 276330b | 2005-05-09 17:58:13 +0000 | [diff] [blame] | 1087 | p.program->FogOption = GL_NONE; |
Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1088 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1089 | if (p.program->NumTexIndirections > ctx->Const.FragmentProgram.MaxTexIndirections) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1090 | program_error(&p, "Exceeded max nr indirect texture lookups"); |
| 1091 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1092 | if (p.program->NumTexInstructions > ctx->Const.FragmentProgram.MaxTexInstructions) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1093 | program_error(&p, "Exceeded max TEX instructions"); |
| 1094 | |
Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1095 | if (p.program->NumAluInstructions > ctx->Const.FragmentProgram.MaxAluInstructions) |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1096 | program_error(&p, "Exceeded max ALU instructions"); |
| 1097 | |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 1098 | ASSERT(p.program->Base.NumInstructions <= MAX_INSTRUCTIONS); |
Keith Whitwell | 8b88f62 | 2005-05-10 11:39:50 +0000 | [diff] [blame] | 1099 | |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1100 | /* Allocate final instruction array */ |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1101 | program->Base.Instructions |
| 1102 | = _mesa_alloc_instructions(program->Base.NumInstructions); |
| 1103 | if (!program->Base.Instructions) { |
| 1104 | _mesa_error(ctx, GL_OUT_OF_MEMORY, |
| 1105 | "generating tex env program"); |
| 1106 | return; |
| 1107 | } |
| 1108 | _mesa_memcpy(program->Base.Instructions, instBuffer, |
| 1109 | sizeof(struct prog_instruction) |
| 1110 | * program->Base.NumInstructions); |
| 1111 | |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1112 | /* Notify driver the fragment program has (actually) changed. |
Keith Whitwell | 8b88f62 | 2005-05-10 11:39:50 +0000 | [diff] [blame] | 1113 | */ |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1114 | if (ctx->Driver.ProgramStringNotify) { |
| 1115 | ctx->Driver.ProgramStringNotify( ctx, GL_FRAGMENT_PROGRAM_ARB, |
| 1116 | &p.program->Base ); |
| 1117 | } |
Keith Whitwell | dbeea25 | 2005-05-10 13:57:50 +0000 | [diff] [blame] | 1118 | |
Brian Paul | e998c34 | 2006-10-29 21:17:18 +0000 | [diff] [blame] | 1119 | if (DISASSEM) { |
| 1120 | _mesa_print_program(&p.program->Base); |
| 1121 | _mesa_printf("\n"); |
Keith Whitwell | e490242 | 2005-05-11 15:16:35 +0000 | [diff] [blame] | 1122 | } |
Keith Whitwell | 15e75e0 | 2005-04-29 15:11:39 +0000 | [diff] [blame] | 1123 | } |
| 1124 | |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 1125 | |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 1126 | static struct gl_fragment_program * |
Brian Paul | d9736db | 2006-05-23 02:44:46 +0000 | [diff] [blame] | 1127 | search_cache(const struct texenvprog_cache *cache, |
| 1128 | GLuint hash, |
Brian Paul | e4cb9cd | 2006-05-30 22:15:24 +0000 | [diff] [blame] | 1129 | const void *key, |
Brian Paul | d9736db | 2006-05-23 02:44:46 +0000 | [diff] [blame] | 1130 | GLuint keysize) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1131 | { |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1132 | struct texenvprog_cache_item *c; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1133 | |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1134 | for (c = cache->items[hash % cache->size]; c; c = c->next) { |
| 1135 | if (c->hash == hash && memcmp(c->key, key, keysize) == 0) |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 1136 | return (struct gl_fragment_program *) c->data; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
| 1139 | return NULL; |
| 1140 | } |
| 1141 | |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1142 | static void rehash( struct texenvprog_cache *cache ) |
| 1143 | { |
| 1144 | struct texenvprog_cache_item **items; |
| 1145 | struct texenvprog_cache_item *c, *next; |
| 1146 | GLuint size, i; |
| 1147 | |
| 1148 | size = cache->size * 3; |
| 1149 | items = (struct texenvprog_cache_item**) _mesa_malloc(size * sizeof(*items)); |
| 1150 | _mesa_memset(items, 0, size * sizeof(*items)); |
| 1151 | |
| 1152 | for (i = 0; i < cache->size; i++) |
| 1153 | for (c = cache->items[i]; c; c = next) { |
| 1154 | next = c->next; |
| 1155 | c->next = items[c->hash % size]; |
| 1156 | items[c->hash % size] = c; |
| 1157 | } |
| 1158 | |
| 1159 | _mesa_free(cache->items); |
| 1160 | cache->items = items; |
| 1161 | cache->size = size; |
| 1162 | } |
| 1163 | |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1164 | static void clear_cache( struct texenvprog_cache *cache ) |
| 1165 | { |
| 1166 | struct texenvprog_cache_item *c, *next; |
| 1167 | GLuint i; |
| 1168 | |
| 1169 | for (i = 0; i < cache->size; i++) { |
| 1170 | for (c = cache->items[i]; c; c = next) { |
| 1171 | next = c->next; |
| 1172 | _mesa_free(c->key); |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 1173 | cache->ctx->Driver.DeleteProgram(cache->ctx, |
| 1174 | (struct gl_program *) c->data); |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1175 | _mesa_free(c); |
| 1176 | } |
| 1177 | cache->items[i] = NULL; |
| 1178 | } |
| 1179 | |
| 1180 | |
| 1181 | cache->n_items = 0; |
| 1182 | } |
| 1183 | |
| 1184 | |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1185 | static void cache_item( struct texenvprog_cache *cache, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1186 | GLuint hash, |
Brian Paul | b8f2f6f | 2006-05-23 01:55:31 +0000 | [diff] [blame] | 1187 | const struct state_key *key, |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1188 | void *data ) |
| 1189 | { |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1190 | struct texenvprog_cache_item *c = MALLOC(sizeof(*c)); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1191 | c->hash = hash; |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1192 | |
| 1193 | c->key = _mesa_malloc(sizeof(*key)); |
| 1194 | memcpy(c->key, key, sizeof(*key)); |
| 1195 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1196 | c->data = data; |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1197 | |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1198 | if (cache->n_items > cache->size * 1.5) { |
| 1199 | if (cache->size < 1000) |
| 1200 | rehash(cache); |
| 1201 | else |
| 1202 | clear_cache(cache); |
| 1203 | } |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1204 | |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1205 | cache->n_items++; |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1206 | c->next = cache->items[hash % cache->size]; |
| 1207 | cache->items[hash % cache->size] = c; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
Brian Paul | d9736db | 2006-05-23 02:44:46 +0000 | [diff] [blame] | 1210 | static GLuint hash_key( const struct state_key *key ) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1211 | { |
| 1212 | GLuint *ikey = (GLuint *)key; |
| 1213 | GLuint hash = 0, i; |
| 1214 | |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1215 | /* Make a slightly better attempt at a hash function: |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1216 | */ |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1217 | for (i = 0; i < sizeof(*key)/sizeof(*ikey); i++) |
| 1218 | { |
| 1219 | hash += ikey[i]; |
| 1220 | hash += (hash << 10); |
| 1221 | hash ^= (hash >> 6); |
| 1222 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1223 | |
| 1224 | return hash; |
| 1225 | } |
| 1226 | |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1227 | |
| 1228 | /** |
| 1229 | * If _MaintainTexEnvProgram is set we'll generate a fragment program that |
| 1230 | * implements the current texture env/combine mode. |
| 1231 | * This function generates that program and puts it into effect. |
| 1232 | */ |
| 1233 | void |
| 1234 | _mesa_UpdateTexEnvProgram( GLcontext *ctx ) |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1235 | { |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1236 | struct state_key key; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1237 | GLuint hash; |
Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 1238 | const struct gl_fragment_program *prev = ctx->FragmentProgram._Current; |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1239 | |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1240 | ASSERT(ctx->FragmentProgram._MaintainTexEnvProgram); |
| 1241 | |
| 1242 | /* If a conventional fragment program/shader isn't in effect... */ |
| 1243 | if (!ctx->FragmentProgram._Current) { |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1244 | make_state_key(ctx, &key); |
| 1245 | hash = hash_key(&key); |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1246 | |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1247 | ctx->FragmentProgram._TexEnvProgram = |
| 1248 | search_cache(&ctx->Texture.env_fp_cache, hash, &key, sizeof(key)); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1249 | |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1250 | if (!ctx->FragmentProgram._TexEnvProgram) { |
| 1251 | if (0) |
| 1252 | _mesa_printf("Building new texenv proggy for key %x\n", hash); |
| 1253 | |
| 1254 | /* create new tex env program */ |
| 1255 | ctx->FragmentProgram._TexEnvProgram = (struct gl_fragment_program *) |
| 1256 | ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0); |
| 1257 | |
| 1258 | create_new_program(ctx, &key, ctx->FragmentProgram._TexEnvProgram); |
| 1259 | |
| 1260 | cache_item(&ctx->Texture.env_fp_cache, hash, &key, |
| 1261 | ctx->FragmentProgram._TexEnvProgram); |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1262 | } |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1263 | else { |
| 1264 | if (0) |
| 1265 | _mesa_printf("Found existing texenv program for key %x\n", hash); |
| 1266 | } |
| 1267 | ctx->FragmentProgram._Current = ctx->FragmentProgram._TexEnvProgram; |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1268 | } |
Keith Whitwell | c3626a9 | 2005-11-01 17:25:49 +0000 | [diff] [blame] | 1269 | |
| 1270 | /* Tell the driver about the change. Could define a new target for |
| 1271 | * this? |
| 1272 | */ |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 1273 | if (ctx->FragmentProgram._Current != prev && ctx->Driver.BindProgram) { |
| 1274 | ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, |
Brian | a90046f | 2006-12-15 10:07:26 -0700 | [diff] [blame] | 1275 | (struct gl_program *) ctx->FragmentProgram._Current); |
Brian Paul | 5d7b49f | 2005-11-19 23:12:20 +0000 | [diff] [blame] | 1276 | } |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1279 | |
| 1280 | void _mesa_TexEnvProgramCacheInit( GLcontext *ctx ) |
| 1281 | { |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1282 | ctx->Texture.env_fp_cache.ctx = ctx; |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1283 | ctx->Texture.env_fp_cache.size = 17; |
| 1284 | ctx->Texture.env_fp_cache.n_items = 0; |
| 1285 | ctx->Texture.env_fp_cache.items = (struct texenvprog_cache_item **) |
| 1286 | _mesa_calloc(ctx->Texture.env_fp_cache.size * |
| 1287 | sizeof(struct texenvprog_cache_item)); |
| 1288 | } |
| 1289 | |
| 1290 | |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1291 | void _mesa_TexEnvProgramCacheDestroy( GLcontext *ctx ) |
| 1292 | { |
Keith Whitwell | 8065c12 | 2006-05-22 16:09:27 +0000 | [diff] [blame] | 1293 | clear_cache(&ctx->Texture.env_fp_cache); |
Keith Whitwell | 5ddc53f | 2006-05-22 14:17:32 +0000 | [diff] [blame] | 1294 | _mesa_free(ctx->Texture.env_fp_cache.items); |
Keith Whitwell | ce72114 | 2005-07-11 10:10:38 +0000 | [diff] [blame] | 1295 | } |