blob: 025665a06e59871bb710df4b53e4f136eba82ecd [file] [log] [blame]
Brian13e3b212007-02-22 16:09:40 -07001/*
2 * Mesa 3-D graphics library
Brian Paulf4361542008-11-11 10:47:10 -07003 * Version: 7.3
Brian13e3b212007-02-22 16:09:40 -07004 *
Brian Paulf4361542008-11-11 10:47:10 -07005 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
Brian13e3b212007-02-22 16:09:40 -07006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25/**
26 * \file prog_execute.c
27 * Software interpreter for vertex/fragment programs.
28 * \author Brian Paul
29 */
30
31/*
32 * NOTE: we do everything in single-precision floating point; we don't
33 * currently observe the single/half/fixed-precision qualifiers.
34 *
35 */
36
37
Brian Paulbbd28712008-09-18 12:26:54 -060038#include "main/glheader.h"
39#include "main/colormac.h"
40#include "main/context.h"
Brian13e3b212007-02-22 16:09:40 -070041#include "program.h"
42#include "prog_execute.h"
43#include "prog_instruction.h"
44#include "prog_parameter.h"
45#include "prog_print.h"
Brian Paul702b5b02008-12-15 18:37:39 -070046#include "prog_noise.h"
Brian13e3b212007-02-22 16:09:40 -070047
48
Brian13e3b212007-02-22 16:09:40 -070049/* debug predicate */
50#define DEBUG_PROG 0
51
52
Brianf183a2d2007-02-23 17:14:30 -070053/**
54 * Set x to positive or negative infinity.
55 */
56#if defined(USE_IEEE) || defined(_WIN32)
Roland Scheidegger72362a52009-12-07 21:47:49 +010057#define SET_POS_INFINITY(x) \
58 do { \
59 fi_type fi; \
60 fi.i = 0x7F800000; \
61 x = fi.f; \
62 } while (0)
63#define SET_NEG_INFINITY(x) \
64 do { \
65 fi_type fi; \
66 fi.i = 0xFF800000; \
67 x = fi.f; \
68 } while (0)
Brianf183a2d2007-02-23 17:14:30 -070069#elif defined(VMS)
70#define SET_POS_INFINITY(x) x = __MAXFLOAT
71#define SET_NEG_INFINITY(x) x = -__MAXFLOAT
72#else
73#define SET_POS_INFINITY(x) x = (GLfloat) HUGE_VAL
74#define SET_NEG_INFINITY(x) x = (GLfloat) -HUGE_VAL
75#endif
76
77#define SET_FLOAT_BITS(x, bits) ((fi_type *) (void *) &(x))->i = bits
78
79
80static const GLfloat ZeroVec[4] = { 0.0F, 0.0F, 0.0F, 0.0F };
81
82
83
Brian13e3b212007-02-22 16:09:40 -070084/**
85 * Return a pointer to the 4-element float vector specified by the given
86 * source register.
87 */
88static INLINE const GLfloat *
Brian Paulf4361542008-11-11 10:47:10 -070089get_src_register_pointer(const struct prog_src_register *source,
90 const struct gl_program_machine *machine)
Brian13e3b212007-02-22 16:09:40 -070091{
Brian Paulf4361542008-11-11 10:47:10 -070092 const struct gl_program *prog = machine->CurProgram;
93 GLint reg = source->Index;
94
Brianf183a2d2007-02-23 17:14:30 -070095 if (source->RelAddr) {
Brian Paulf4361542008-11-11 10:47:10 -070096 /* add address register value to src index/offset */
97 reg += machine->AddressReg[0][0];
98 if (reg < 0) {
99 return ZeroVec;
Brianf183a2d2007-02-23 17:14:30 -0700100 }
101 }
102
Brian13e3b212007-02-22 16:09:40 -0700103 switch (source->File) {
104 case PROGRAM_TEMPORARY:
Brian Paulf4361542008-11-11 10:47:10 -0700105 if (reg >= MAX_PROGRAM_TEMPS)
106 return ZeroVec;
107 return machine->Temporaries[reg];
Brian13e3b212007-02-22 16:09:40 -0700108
109 case PROGRAM_INPUT:
Brian Paulf4361542008-11-11 10:47:10 -0700110 if (prog->Target == GL_VERTEX_PROGRAM_ARB) {
111 if (reg >= VERT_ATTRIB_MAX)
112 return ZeroVec;
113 return machine->VertAttribs[reg];
Brian13e3b212007-02-22 16:09:40 -0700114 }
115 else {
Brian Paulf4361542008-11-11 10:47:10 -0700116 if (reg >= FRAG_ATTRIB_MAX)
117 return ZeroVec;
118 return machine->Attribs[reg][machine->CurElement];
Brian13e3b212007-02-22 16:09:40 -0700119 }
120
121 case PROGRAM_OUTPUT:
Brian Paulf4361542008-11-11 10:47:10 -0700122 if (reg >= MAX_PROGRAM_OUTPUTS)
123 return ZeroVec;
124 return machine->Outputs[reg];
Brian13e3b212007-02-22 16:09:40 -0700125
126 case PROGRAM_LOCAL_PARAM:
Brian Paulf4361542008-11-11 10:47:10 -0700127 if (reg >= MAX_PROGRAM_LOCAL_PARAMS)
128 return ZeroVec;
129 return machine->CurProgram->LocalParams[reg];
Brian13e3b212007-02-22 16:09:40 -0700130
131 case PROGRAM_ENV_PARAM:
Brian Paulf4361542008-11-11 10:47:10 -0700132 if (reg >= MAX_PROGRAM_ENV_PARAMS)
133 return ZeroVec;
134 return machine->EnvParams[reg];
Brian13e3b212007-02-22 16:09:40 -0700135
136 case PROGRAM_STATE_VAR:
137 /* Fallthrough */
138 case PROGRAM_CONSTANT:
139 /* Fallthrough */
140 case PROGRAM_UNIFORM:
141 /* Fallthrough */
142 case PROGRAM_NAMED_PARAM:
Brian Paulf4361542008-11-11 10:47:10 -0700143 if (reg >= (GLint) prog->Parameters->NumParameters)
144 return ZeroVec;
145 return prog->Parameters->ParameterValues[reg];
Brian13e3b212007-02-22 16:09:40 -0700146
147 default:
Brian33eac562007-02-25 18:52:41 -0700148 _mesa_problem(NULL,
Brian Paulf4361542008-11-11 10:47:10 -0700149 "Invalid src register file %d in get_src_register_pointer()",
150 source->File);
Brian13e3b212007-02-22 16:09:40 -0700151 return NULL;
152 }
153}
154
155
Brian Paulf4361542008-11-11 10:47:10 -0700156/**
157 * Return a pointer to the 4-element float vector specified by the given
158 * destination register.
159 */
160static INLINE GLfloat *
161get_dst_register_pointer(const struct prog_dst_register *dest,
162 struct gl_program_machine *machine)
163{
164 static GLfloat dummyReg[4];
165 GLint reg = dest->Index;
166
167 if (dest->RelAddr) {
168 /* add address register value to src index/offset */
169 reg += machine->AddressReg[0][0];
170 if (reg < 0) {
171 return dummyReg;
172 }
173 }
174
175 switch (dest->File) {
176 case PROGRAM_TEMPORARY:
177 if (reg >= MAX_PROGRAM_TEMPS)
178 return dummyReg;
179 return machine->Temporaries[reg];
180
181 case PROGRAM_OUTPUT:
182 if (reg >= MAX_PROGRAM_OUTPUTS)
183 return dummyReg;
184 return machine->Outputs[reg];
185
186 case PROGRAM_WRITE_ONLY:
187 return dummyReg;
188
189 default:
190 _mesa_problem(NULL,
191 "Invalid dest register file %d in get_dst_register_pointer()",
192 dest->File);
193 return NULL;
194 }
195}
196
197
198
Brian13e3b212007-02-22 16:09:40 -0700199/**
200 * Fetch a 4-element float vector from the given source register.
201 * Apply swizzling and negating as needed.
202 */
203static void
Brian33eac562007-02-25 18:52:41 -0700204fetch_vector4(const struct prog_src_register *source,
Briane80d9012007-02-23 16:53:24 -0700205 const struct gl_program_machine *machine, GLfloat result[4])
Brian13e3b212007-02-22 16:09:40 -0700206{
Brian Paulf4361542008-11-11 10:47:10 -0700207 const GLfloat *src = get_src_register_pointer(source, machine);
Brian13e3b212007-02-22 16:09:40 -0700208 ASSERT(src);
209
210 if (source->Swizzle == SWIZZLE_NOOP) {
211 /* no swizzling */
212 COPY_4V(result, src);
213 }
214 else {
215 ASSERT(GET_SWZ(source->Swizzle, 0) <= 3);
216 ASSERT(GET_SWZ(source->Swizzle, 1) <= 3);
217 ASSERT(GET_SWZ(source->Swizzle, 2) <= 3);
218 ASSERT(GET_SWZ(source->Swizzle, 3) <= 3);
219 result[0] = src[GET_SWZ(source->Swizzle, 0)];
220 result[1] = src[GET_SWZ(source->Swizzle, 1)];
221 result[2] = src[GET_SWZ(source->Swizzle, 2)];
222 result[3] = src[GET_SWZ(source->Swizzle, 3)];
223 }
224
Brian13e3b212007-02-22 16:09:40 -0700225 if (source->Abs) {
226 result[0] = FABSF(result[0]);
227 result[1] = FABSF(result[1]);
228 result[2] = FABSF(result[2]);
229 result[3] = FABSF(result[3]);
230 }
Brian Paul7db7ff82009-04-14 22:14:30 -0600231 if (source->Negate) {
232 ASSERT(source->Negate == NEGATE_XYZW);
Brian13e3b212007-02-22 16:09:40 -0700233 result[0] = -result[0];
234 result[1] = -result[1];
235 result[2] = -result[2];
236 result[3] = -result[3];
237 }
Brian Paul92009542009-06-03 15:43:53 -0600238
239#ifdef NAN_CHECK
240 assert(!IS_INF_OR_NAN(result[0]));
241 assert(!IS_INF_OR_NAN(result[0]));
242 assert(!IS_INF_OR_NAN(result[0]));
243 assert(!IS_INF_OR_NAN(result[0]));
244#endif
Brian13e3b212007-02-22 16:09:40 -0700245}
246
Brian62da6a12007-05-02 18:44:34 -0600247
Brian13e3b212007-02-22 16:09:40 -0700248/**
Brian Paul37eef7b2008-11-07 09:33:55 -0700249 * Fetch a 4-element uint vector from the given source register.
250 * Apply swizzling but not negation/abs.
251 */
252static void
253fetch_vector4ui(const struct prog_src_register *source,
254 const struct gl_program_machine *machine, GLuint result[4])
255{
Brian Paulf4361542008-11-11 10:47:10 -0700256 const GLuint *src = (GLuint *) get_src_register_pointer(source, machine);
Brian Paul37eef7b2008-11-07 09:33:55 -0700257 ASSERT(src);
258
259 if (source->Swizzle == SWIZZLE_NOOP) {
260 /* no swizzling */
261 COPY_4V(result, src);
262 }
263 else {
264 ASSERT(GET_SWZ(source->Swizzle, 0) <= 3);
265 ASSERT(GET_SWZ(source->Swizzle, 1) <= 3);
266 ASSERT(GET_SWZ(source->Swizzle, 2) <= 3);
267 ASSERT(GET_SWZ(source->Swizzle, 3) <= 3);
268 result[0] = src[GET_SWZ(source->Swizzle, 0)];
269 result[1] = src[GET_SWZ(source->Swizzle, 1)];
270 result[2] = src[GET_SWZ(source->Swizzle, 2)];
271 result[3] = src[GET_SWZ(source->Swizzle, 3)];
272 }
273
Brian Paul7db7ff82009-04-14 22:14:30 -0600274 /* Note: no Negate or Abs here */
Brian Paul37eef7b2008-11-07 09:33:55 -0700275}
276
277
278
279/**
Brian62da6a12007-05-02 18:44:34 -0600280 * Fetch the derivative with respect to X or Y for the given register.
281 * XXX this currently only works for fragment program input attribs.
Brian13e3b212007-02-22 16:09:40 -0700282 */
Brian62da6a12007-05-02 18:44:34 -0600283static void
Briane80d9012007-02-23 16:53:24 -0700284fetch_vector4_deriv(GLcontext * ctx,
285 const struct prog_src_register *source,
Brian62da6a12007-05-02 18:44:34 -0600286 const struct gl_program_machine *machine,
287 char xOrY, GLfloat result[4])
Brian13e3b212007-02-22 16:09:40 -0700288{
Brian Paul37eef7b2008-11-07 09:33:55 -0700289 if (source->File == PROGRAM_INPUT &&
290 source->Index < (GLint) machine->NumDeriv) {
Brian62da6a12007-05-02 18:44:34 -0600291 const GLint col = machine->CurElement;
292 const GLfloat w = machine->Attribs[FRAG_ATTRIB_WPOS][col][3];
293 const GLfloat invQ = 1.0f / w;
294 GLfloat deriv[4];
Brian13e3b212007-02-22 16:09:40 -0700295
Brian13e3b212007-02-22 16:09:40 -0700296 if (xOrY == 'X') {
Brian62da6a12007-05-02 18:44:34 -0600297 deriv[0] = machine->DerivX[source->Index][0] * invQ;
298 deriv[1] = machine->DerivX[source->Index][1] * invQ;
299 deriv[2] = machine->DerivX[source->Index][2] * invQ;
300 deriv[3] = machine->DerivX[source->Index][3] * invQ;
Brian13e3b212007-02-22 16:09:40 -0700301 }
302 else {
Brian62da6a12007-05-02 18:44:34 -0600303 deriv[0] = machine->DerivY[source->Index][0] * invQ;
304 deriv[1] = machine->DerivY[source->Index][1] * invQ;
305 deriv[2] = machine->DerivY[source->Index][2] * invQ;
306 deriv[3] = machine->DerivY[source->Index][3] * invQ;
Brian13e3b212007-02-22 16:09:40 -0700307 }
Brian13e3b212007-02-22 16:09:40 -0700308
Brian62da6a12007-05-02 18:44:34 -0600309 result[0] = deriv[GET_SWZ(source->Swizzle, 0)];
310 result[1] = deriv[GET_SWZ(source->Swizzle, 1)];
311 result[2] = deriv[GET_SWZ(source->Swizzle, 2)];
312 result[3] = deriv[GET_SWZ(source->Swizzle, 3)];
313
Brian62da6a12007-05-02 18:44:34 -0600314 if (source->Abs) {
315 result[0] = FABSF(result[0]);
316 result[1] = FABSF(result[1]);
317 result[2] = FABSF(result[2]);
318 result[3] = FABSF(result[3]);
319 }
Brian Paul7db7ff82009-04-14 22:14:30 -0600320 if (source->Negate) {
321 ASSERT(source->Negate == NEGATE_XYZW);
Brian62da6a12007-05-02 18:44:34 -0600322 result[0] = -result[0];
323 result[1] = -result[1];
324 result[2] = -result[2];
325 result[3] = -result[3];
326 }
Brian13e3b212007-02-22 16:09:40 -0700327 }
Brian62da6a12007-05-02 18:44:34 -0600328 else {
329 ASSIGN_4V(result, 0.0, 0.0, 0.0, 0.0);
Brian13e3b212007-02-22 16:09:40 -0700330 }
Brian13e3b212007-02-22 16:09:40 -0700331}
Brian13e3b212007-02-22 16:09:40 -0700332
333
334/**
335 * As above, but only return result[0] element.
336 */
337static void
Brian33eac562007-02-25 18:52:41 -0700338fetch_vector1(const struct prog_src_register *source,
Briane80d9012007-02-23 16:53:24 -0700339 const struct gl_program_machine *machine, GLfloat result[4])
Brian13e3b212007-02-22 16:09:40 -0700340{
Brian Paulf4361542008-11-11 10:47:10 -0700341 const GLfloat *src = get_src_register_pointer(source, machine);
Brian13e3b212007-02-22 16:09:40 -0700342 ASSERT(src);
343
344 result[0] = src[GET_SWZ(source->Swizzle, 0)];
345
Brian13e3b212007-02-22 16:09:40 -0700346 if (source->Abs) {
347 result[0] = FABSF(result[0]);
348 }
Brian Paul7db7ff82009-04-14 22:14:30 -0600349 if (source->Negate) {
Brian13e3b212007-02-22 16:09:40 -0700350 result[0] = -result[0];
351 }
352}
353
354
355/**
Brian999b5562007-11-23 12:01:57 -0700356 * Fetch texel from texture. Use partial derivatives when possible.
357 */
358static INLINE void
359fetch_texel(GLcontext *ctx,
360 const struct gl_program_machine *machine,
361 const struct prog_instruction *inst,
362 const GLfloat texcoord[4], GLfloat lodBias,
363 GLfloat color[4])
364{
Brian Paulade50832008-05-14 16:09:46 -0600365 const GLuint unit = machine->Samplers[inst->TexSrcUnit];
366
Brian999b5562007-11-23 12:01:57 -0700367 /* Note: we only have the right derivatives for fragment input attribs.
368 */
369 if (machine->NumDeriv > 0 &&
370 inst->SrcReg[0].File == PROGRAM_INPUT &&
371 inst->SrcReg[0].Index == FRAG_ATTRIB_TEX0 + inst->TexSrcUnit) {
372 /* simple texture fetch for which we should have derivatives */
373 GLuint attr = inst->SrcReg[0].Index;
374 machine->FetchTexelDeriv(ctx, texcoord,
375 machine->DerivX[attr],
376 machine->DerivY[attr],
Brian Paulade50832008-05-14 16:09:46 -0600377 lodBias, unit, color);
Brian999b5562007-11-23 12:01:57 -0700378 }
379 else {
Brian Paulade50832008-05-14 16:09:46 -0600380 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
Brian999b5562007-11-23 12:01:57 -0700381 }
382}
383
384
385/**
Brian13e3b212007-02-22 16:09:40 -0700386 * Test value against zero and return GT, LT, EQ or UN if NaN.
387 */
388static INLINE GLuint
Briane80d9012007-02-23 16:53:24 -0700389generate_cc(float value)
Brian13e3b212007-02-22 16:09:40 -0700390{
391 if (value != value)
Briane80d9012007-02-23 16:53:24 -0700392 return COND_UN; /* NaN */
Brian13e3b212007-02-22 16:09:40 -0700393 if (value > 0.0F)
394 return COND_GT;
395 if (value < 0.0F)
396 return COND_LT;
397 return COND_EQ;
398}
399
400
401/**
402 * Test if the ccMaskRule is satisfied by the given condition code.
403 * Used to mask destination writes according to the current condition code.
404 */
405static INLINE GLboolean
406test_cc(GLuint condCode, GLuint ccMaskRule)
407{
408 switch (ccMaskRule) {
409 case COND_EQ: return (condCode == COND_EQ);
410 case COND_NE: return (condCode != COND_EQ);
411 case COND_LT: return (condCode == COND_LT);
412 case COND_GE: return (condCode == COND_GT || condCode == COND_EQ);
413 case COND_LE: return (condCode == COND_LT || condCode == COND_EQ);
414 case COND_GT: return (condCode == COND_GT);
415 case COND_TR: return GL_TRUE;
416 case COND_FL: return GL_FALSE;
417 default: return GL_TRUE;
418 }
419}
420
421
422/**
423 * Evaluate the 4 condition codes against a predicate and return GL_TRUE
424 * or GL_FALSE to indicate result.
425 */
426static INLINE GLboolean
427eval_condition(const struct gl_program_machine *machine,
428 const struct prog_instruction *inst)
429{
430 const GLuint swizzle = inst->DstReg.CondSwizzle;
431 const GLuint condMask = inst->DstReg.CondMask;
432 if (test_cc(machine->CondCodes[GET_SWZ(swizzle, 0)], condMask) ||
433 test_cc(machine->CondCodes[GET_SWZ(swizzle, 1)], condMask) ||
434 test_cc(machine->CondCodes[GET_SWZ(swizzle, 2)], condMask) ||
435 test_cc(machine->CondCodes[GET_SWZ(swizzle, 3)], condMask)) {
436 return GL_TRUE;
437 }
438 else {
439 return GL_FALSE;
440 }
441}
442
443
444
445/**
446 * Store 4 floats into a register. Observe the instructions saturate and
447 * set-condition-code flags.
448 */
449static void
Briane80d9012007-02-23 16:53:24 -0700450store_vector4(const struct prog_instruction *inst,
451 struct gl_program_machine *machine, const GLfloat value[4])
Brian13e3b212007-02-22 16:09:40 -0700452{
Brian Paulf4361542008-11-11 10:47:10 -0700453 const struct prog_dst_register *dstReg = &(inst->DstReg);
Brian13e3b212007-02-22 16:09:40 -0700454 const GLboolean clamp = inst->SaturateMode == SATURATE_ZERO_ONE;
Brian Paulf4361542008-11-11 10:47:10 -0700455 GLuint writeMask = dstReg->WriteMask;
Brian13e3b212007-02-22 16:09:40 -0700456 GLfloat clampedValue[4];
Brian Paulf4361542008-11-11 10:47:10 -0700457 GLfloat *dst = get_dst_register_pointer(dstReg, machine);
Brian13e3b212007-02-22 16:09:40 -0700458
459#if 0
460 if (value[0] > 1.0e10 ||
461 IS_INF_OR_NAN(value[0]) ||
462 IS_INF_OR_NAN(value[1]) ||
Briane80d9012007-02-23 16:53:24 -0700463 IS_INF_OR_NAN(value[2]) || IS_INF_OR_NAN(value[3]))
Brian13e3b212007-02-22 16:09:40 -0700464 printf("store %g %g %g %g\n", value[0], value[1], value[2], value[3]);
465#endif
466
467 if (clamp) {
468 clampedValue[0] = CLAMP(value[0], 0.0F, 1.0F);
469 clampedValue[1] = CLAMP(value[1], 0.0F, 1.0F);
470 clampedValue[2] = CLAMP(value[2], 0.0F, 1.0F);
471 clampedValue[3] = CLAMP(value[3], 0.0F, 1.0F);
472 value = clampedValue;
473 }
474
Brian Paulf4361542008-11-11 10:47:10 -0700475 if (dstReg->CondMask != COND_TR) {
Brian13e3b212007-02-22 16:09:40 -0700476 /* condition codes may turn off some writes */
477 if (writeMask & WRITEMASK_X) {
Brian Paulf4361542008-11-11 10:47:10 -0700478 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 0)],
479 dstReg->CondMask))
Brian13e3b212007-02-22 16:09:40 -0700480 writeMask &= ~WRITEMASK_X;
481 }
482 if (writeMask & WRITEMASK_Y) {
Brian Paulf4361542008-11-11 10:47:10 -0700483 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 1)],
484 dstReg->CondMask))
Brian13e3b212007-02-22 16:09:40 -0700485 writeMask &= ~WRITEMASK_Y;
486 }
487 if (writeMask & WRITEMASK_Z) {
Brian Paulf4361542008-11-11 10:47:10 -0700488 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 2)],
489 dstReg->CondMask))
Brian13e3b212007-02-22 16:09:40 -0700490 writeMask &= ~WRITEMASK_Z;
491 }
492 if (writeMask & WRITEMASK_W) {
Brian Paulf4361542008-11-11 10:47:10 -0700493 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 3)],
494 dstReg->CondMask))
Brian13e3b212007-02-22 16:09:40 -0700495 writeMask &= ~WRITEMASK_W;
496 }
497 }
498
Brian Paul92009542009-06-03 15:43:53 -0600499#ifdef NAN_CHECK
500 assert(!IS_INF_OR_NAN(value[0]));
501 assert(!IS_INF_OR_NAN(value[0]));
502 assert(!IS_INF_OR_NAN(value[0]));
503 assert(!IS_INF_OR_NAN(value[0]));
504#endif
505
Brian13e3b212007-02-22 16:09:40 -0700506 if (writeMask & WRITEMASK_X)
Brian Paulf4361542008-11-11 10:47:10 -0700507 dst[0] = value[0];
Brian13e3b212007-02-22 16:09:40 -0700508 if (writeMask & WRITEMASK_Y)
Brian Paulf4361542008-11-11 10:47:10 -0700509 dst[1] = value[1];
Brian13e3b212007-02-22 16:09:40 -0700510 if (writeMask & WRITEMASK_Z)
Brian Paulf4361542008-11-11 10:47:10 -0700511 dst[2] = value[2];
Brian13e3b212007-02-22 16:09:40 -0700512 if (writeMask & WRITEMASK_W)
Brian Paulf4361542008-11-11 10:47:10 -0700513 dst[3] = value[3];
Brian13e3b212007-02-22 16:09:40 -0700514
515 if (inst->CondUpdate) {
516 if (writeMask & WRITEMASK_X)
517 machine->CondCodes[0] = generate_cc(value[0]);
518 if (writeMask & WRITEMASK_Y)
519 machine->CondCodes[1] = generate_cc(value[1]);
520 if (writeMask & WRITEMASK_Z)
521 machine->CondCodes[2] = generate_cc(value[2]);
522 if (writeMask & WRITEMASK_W)
523 machine->CondCodes[3] = generate_cc(value[3]);
Briana01616e2007-03-28 11:01:28 -0600524#if DEBUG_PROG
525 printf("CondCodes=(%s,%s,%s,%s) for:\n",
526 _mesa_condcode_string(machine->CondCodes[0]),
527 _mesa_condcode_string(machine->CondCodes[1]),
528 _mesa_condcode_string(machine->CondCodes[2]),
529 _mesa_condcode_string(machine->CondCodes[3]));
530#endif
Brian13e3b212007-02-22 16:09:40 -0700531 }
532}
533
534
Brian13e3b212007-02-22 16:09:40 -0700535/**
Brian Paul37eef7b2008-11-07 09:33:55 -0700536 * Store 4 uints into a register. Observe the set-condition-code flags.
537 */
538static void
539store_vector4ui(const struct prog_instruction *inst,
540 struct gl_program_machine *machine, const GLuint value[4])
541{
Brian Paulf4361542008-11-11 10:47:10 -0700542 const struct prog_dst_register *dstReg = &(inst->DstReg);
543 GLuint writeMask = dstReg->WriteMask;
544 GLuint *dst = (GLuint *) get_dst_register_pointer(dstReg, machine);
Brian Paul37eef7b2008-11-07 09:33:55 -0700545
Brian Paulf4361542008-11-11 10:47:10 -0700546 if (dstReg->CondMask != COND_TR) {
Brian Paul37eef7b2008-11-07 09:33:55 -0700547 /* condition codes may turn off some writes */
548 if (writeMask & WRITEMASK_X) {
Brian Paulf4361542008-11-11 10:47:10 -0700549 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 0)],
550 dstReg->CondMask))
Brian Paul37eef7b2008-11-07 09:33:55 -0700551 writeMask &= ~WRITEMASK_X;
552 }
553 if (writeMask & WRITEMASK_Y) {
Brian Paulf4361542008-11-11 10:47:10 -0700554 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 1)],
555 dstReg->CondMask))
Brian Paul37eef7b2008-11-07 09:33:55 -0700556 writeMask &= ~WRITEMASK_Y;
557 }
558 if (writeMask & WRITEMASK_Z) {
Brian Paulf4361542008-11-11 10:47:10 -0700559 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 2)],
560 dstReg->CondMask))
Brian Paul37eef7b2008-11-07 09:33:55 -0700561 writeMask &= ~WRITEMASK_Z;
562 }
563 if (writeMask & WRITEMASK_W) {
Brian Paulf4361542008-11-11 10:47:10 -0700564 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 3)],
565 dstReg->CondMask))
Brian Paul37eef7b2008-11-07 09:33:55 -0700566 writeMask &= ~WRITEMASK_W;
567 }
568 }
569
570 if (writeMask & WRITEMASK_X)
Brian Paulf4361542008-11-11 10:47:10 -0700571 dst[0] = value[0];
Brian Paul37eef7b2008-11-07 09:33:55 -0700572 if (writeMask & WRITEMASK_Y)
Brian Paulf4361542008-11-11 10:47:10 -0700573 dst[1] = value[1];
Brian Paul37eef7b2008-11-07 09:33:55 -0700574 if (writeMask & WRITEMASK_Z)
Brian Paulf4361542008-11-11 10:47:10 -0700575 dst[2] = value[2];
Brian Paul37eef7b2008-11-07 09:33:55 -0700576 if (writeMask & WRITEMASK_W)
Brian Paulf4361542008-11-11 10:47:10 -0700577 dst[3] = value[3];
Brian Paul37eef7b2008-11-07 09:33:55 -0700578
579 if (inst->CondUpdate) {
580 if (writeMask & WRITEMASK_X)
581 machine->CondCodes[0] = generate_cc(value[0]);
582 if (writeMask & WRITEMASK_Y)
583 machine->CondCodes[1] = generate_cc(value[1]);
584 if (writeMask & WRITEMASK_Z)
585 machine->CondCodes[2] = generate_cc(value[2]);
586 if (writeMask & WRITEMASK_W)
587 machine->CondCodes[3] = generate_cc(value[3]);
588#if DEBUG_PROG
589 printf("CondCodes=(%s,%s,%s,%s) for:\n",
590 _mesa_condcode_string(machine->CondCodes[0]),
591 _mesa_condcode_string(machine->CondCodes[1]),
592 _mesa_condcode_string(machine->CondCodes[2]),
593 _mesa_condcode_string(machine->CondCodes[3]));
594#endif
595 }
596}
597
598
599
600/**
Brian13e3b212007-02-22 16:09:40 -0700601 * Execute the given vertex/fragment program.
602 *
Brian3c1c9992007-02-25 19:11:44 -0700603 * \param ctx rendering context
604 * \param program the program to execute
605 * \param machine machine state (must be initialized)
Brian13e3b212007-02-22 16:09:40 -0700606 * \return GL_TRUE if program completed or GL_FALSE if program executed KIL.
607 */
608GLboolean
Briane80d9012007-02-23 16:53:24 -0700609_mesa_execute_program(GLcontext * ctx,
Brian8b34b7d2007-02-25 18:26:50 -0700610 const struct gl_program *program,
Brian085d7d52007-02-25 18:23:37 -0700611 struct gl_program_machine *machine)
Brian13e3b212007-02-22 16:09:40 -0700612{
Brian8b34b7d2007-02-25 18:26:50 -0700613 const GLuint numInst = program->NumInstructions;
Briancfd00112007-02-25 18:30:45 -0700614 const GLuint maxExec = 10000;
José Fonseca452a5922008-05-31 18:14:09 +0900615 GLuint pc, numExec = 0;
Brian13e3b212007-02-22 16:09:40 -0700616
617 machine->CurProgram = program;
618
619 if (DEBUG_PROG) {
620 printf("execute program %u --------------------\n", program->Id);
621 }
622
Brian33eac562007-02-25 18:52:41 -0700623 if (program->Target == GL_VERTEX_PROGRAM_ARB) {
624 machine->EnvParams = ctx->VertexProgram.Parameters;
625 }
626 else {
627 machine->EnvParams = ctx->FragmentProgram.Parameters;
628 }
629
Brian8b34b7d2007-02-25 18:26:50 -0700630 for (pc = 0; pc < numInst; pc++) {
Brian13e3b212007-02-22 16:09:40 -0700631 const struct prog_instruction *inst = program->Instructions + pc;
632
Brian13e3b212007-02-22 16:09:40 -0700633 if (DEBUG_PROG) {
634 _mesa_print_instruction(inst);
635 }
636
637 switch (inst->Opcode) {
Briane80d9012007-02-23 16:53:24 -0700638 case OPCODE_ABS:
639 {
640 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700641 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -0700642 result[0] = FABSF(a[0]);
643 result[1] = FABSF(a[1]);
644 result[2] = FABSF(a[2]);
645 result[3] = FABSF(a[3]);
646 store_vector4(inst, machine, result);
647 }
648 break;
649 case OPCODE_ADD:
650 {
651 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700652 fetch_vector4(&inst->SrcReg[0], machine, a);
653 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -0700654 result[0] = a[0] + b[0];
655 result[1] = a[1] + b[1];
656 result[2] = a[2] + b[2];
657 result[3] = a[3] + b[3];
658 store_vector4(inst, machine, result);
659 if (DEBUG_PROG) {
660 printf("ADD (%g %g %g %g) = (%g %g %g %g) + (%g %g %g %g)\n",
661 result[0], result[1], result[2], result[3],
662 a[0], a[1], a[2], a[3], b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -0700663 }
Briane80d9012007-02-23 16:53:24 -0700664 }
665 break;
Brian Paul37eef7b2008-11-07 09:33:55 -0700666 case OPCODE_AND: /* bitwise AND */
667 {
668 GLuint a[4], b[4], result[4];
669 fetch_vector4ui(&inst->SrcReg[0], machine, a);
670 fetch_vector4ui(&inst->SrcReg[1], machine, b);
671 result[0] = a[0] & b[0];
672 result[1] = a[1] & b[1];
673 result[2] = a[2] & b[2];
674 result[3] = a[3] & b[3];
675 store_vector4ui(inst, machine, result);
676 }
677 break;
Brianf183a2d2007-02-23 17:14:30 -0700678 case OPCODE_ARL:
679 {
680 GLfloat t[4];
Brian33eac562007-02-25 18:52:41 -0700681 fetch_vector4(&inst->SrcReg[0], machine, t);
Brian Paula9475cc2008-12-12 18:03:48 -0700682 machine->AddressReg[0][0] = IFLOOR(t[0]);
Brianf183a2d2007-02-23 17:14:30 -0700683 }
684 break;
Briane80d9012007-02-23 16:53:24 -0700685 case OPCODE_BGNLOOP:
686 /* no-op */
Brian Paule8ea2d22009-12-22 12:57:31 -0700687 ASSERT(program->Instructions[inst->BranchTarget].Opcode
688 == OPCODE_ENDLOOP);
Briane80d9012007-02-23 16:53:24 -0700689 break;
690 case OPCODE_ENDLOOP:
691 /* subtract 1 here since pc is incremented by for(pc) loop */
Brian Paule8ea2d22009-12-22 12:57:31 -0700692 ASSERT(program->Instructions[inst->BranchTarget].Opcode
693 == OPCODE_BGNLOOP);
Briane80d9012007-02-23 16:53:24 -0700694 pc = inst->BranchTarget - 1; /* go to matching BNGLOOP */
695 break;
696 case OPCODE_BGNSUB: /* begin subroutine */
697 break;
698 case OPCODE_ENDSUB: /* end subroutine */
699 break;
700 case OPCODE_BRA: /* branch (conditional) */
701 /* fall-through */
702 case OPCODE_BRK: /* break out of loop (conditional) */
703 /* fall-through */
704 case OPCODE_CONT: /* continue loop (conditional) */
705 if (eval_condition(machine, inst)) {
706 /* take branch */
707 /* Subtract 1 here since we'll do pc++ at end of for-loop */
708 pc = inst->BranchTarget - 1;
709 }
710 break;
711 case OPCODE_CAL: /* Call subroutine (conditional) */
712 if (eval_condition(machine, inst)) {
713 /* call the subroutine */
714 if (machine->StackDepth >= MAX_PROGRAM_CALL_DEPTH) {
715 return GL_TRUE; /* Per GL_NV_vertex_program2 spec */
Brian13e3b212007-02-22 16:09:40 -0700716 }
Briana0275b02007-03-27 11:02:20 -0600717 machine->CallStack[machine->StackDepth++] = pc + 1; /* next inst */
Brian31dc7a32007-03-27 15:21:35 -0600718 /* Subtract 1 here since we'll do pc++ at end of for-loop */
719 pc = inst->BranchTarget - 1;
Briane80d9012007-02-23 16:53:24 -0700720 }
721 break;
722 case OPCODE_CMP:
723 {
724 GLfloat a[4], b[4], c[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700725 fetch_vector4(&inst->SrcReg[0], machine, a);
726 fetch_vector4(&inst->SrcReg[1], machine, b);
727 fetch_vector4(&inst->SrcReg[2], machine, c);
Briane80d9012007-02-23 16:53:24 -0700728 result[0] = a[0] < 0.0F ? b[0] : c[0];
729 result[1] = a[1] < 0.0F ? b[1] : c[1];
730 result[2] = a[2] < 0.0F ? b[2] : c[2];
731 result[3] = a[3] < 0.0F ? b[3] : c[3];
732 store_vector4(inst, machine, result);
733 }
734 break;
735 case OPCODE_COS:
736 {
737 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700738 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -0700739 result[0] = result[1] = result[2] = result[3]
740 = (GLfloat) _mesa_cos(a[0]);
741 store_vector4(inst, machine, result);
742 }
743 break;
744 case OPCODE_DDX: /* Partial derivative with respect to X */
745 {
Brian62da6a12007-05-02 18:44:34 -0600746 GLfloat result[4];
747 fetch_vector4_deriv(ctx, &inst->SrcReg[0], machine,
748 'X', result);
Briane80d9012007-02-23 16:53:24 -0700749 store_vector4(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -0700750 }
751 break;
752 case OPCODE_DDY: /* Partial derivative with respect to Y */
753 {
Brian62da6a12007-05-02 18:44:34 -0600754 GLfloat result[4];
755 fetch_vector4_deriv(ctx, &inst->SrcReg[0], machine,
756 'Y', result);
Briane80d9012007-02-23 16:53:24 -0700757 store_vector4(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -0700758 }
759 break;
Brian Paul65cb74e2008-11-07 09:41:00 -0700760 case OPCODE_DP2:
761 {
762 GLfloat a[4], b[4], result[4];
763 fetch_vector4(&inst->SrcReg[0], machine, a);
764 fetch_vector4(&inst->SrcReg[1], machine, b);
765 result[0] = result[1] = result[2] = result[3] = DOT2(a, b);
766 store_vector4(inst, machine, result);
767 if (DEBUG_PROG) {
768 printf("DP2 %g = (%g %g) . (%g %g)\n",
769 result[0], a[0], a[1], b[0], b[1]);
770 }
771 }
772 break;
773 case OPCODE_DP2A:
774 {
775 GLfloat a[4], b[4], c, result[4];
776 fetch_vector4(&inst->SrcReg[0], machine, a);
777 fetch_vector4(&inst->SrcReg[1], machine, b);
778 fetch_vector1(&inst->SrcReg[1], machine, &c);
779 result[0] = result[1] = result[2] = result[3] = DOT2(a, b) + c;
780 store_vector4(inst, machine, result);
781 if (DEBUG_PROG) {
782 printf("DP2A %g = (%g %g) . (%g %g) + %g\n",
783 result[0], a[0], a[1], b[0], b[1], c);
784 }
785 }
786 break;
Briane80d9012007-02-23 16:53:24 -0700787 case OPCODE_DP3:
788 {
789 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700790 fetch_vector4(&inst->SrcReg[0], machine, a);
791 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -0700792 result[0] = result[1] = result[2] = result[3] = DOT3(a, b);
793 store_vector4(inst, machine, result);
794 if (DEBUG_PROG) {
795 printf("DP3 %g = (%g %g %g) . (%g %g %g)\n",
796 result[0], a[0], a[1], a[2], b[0], b[1], b[2]);
Brian13e3b212007-02-22 16:09:40 -0700797 }
Briane80d9012007-02-23 16:53:24 -0700798 }
799 break;
800 case OPCODE_DP4:
801 {
802 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700803 fetch_vector4(&inst->SrcReg[0], machine, a);
804 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -0700805 result[0] = result[1] = result[2] = result[3] = DOT4(a, b);
806 store_vector4(inst, machine, result);
807 if (DEBUG_PROG) {
808 printf("DP4 %g = (%g, %g %g %g) . (%g, %g %g %g)\n",
809 result[0], a[0], a[1], a[2], a[3],
810 b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -0700811 }
Briane80d9012007-02-23 16:53:24 -0700812 }
813 break;
814 case OPCODE_DPH:
815 {
816 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700817 fetch_vector4(&inst->SrcReg[0], machine, a);
818 fetch_vector4(&inst->SrcReg[1], machine, b);
Brian Paul65cb74e2008-11-07 09:41:00 -0700819 result[0] = result[1] = result[2] = result[3] = DOT3(a, b) + b[3];
Briane80d9012007-02-23 16:53:24 -0700820 store_vector4(inst, machine, result);
821 }
822 break;
823 case OPCODE_DST: /* Distance vector */
824 {
825 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700826 fetch_vector4(&inst->SrcReg[0], machine, a);
827 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -0700828 result[0] = 1.0F;
829 result[1] = a[1] * b[1];
830 result[2] = a[2];
831 result[3] = b[3];
832 store_vector4(inst, machine, result);
833 }
834 break;
Brianf183a2d2007-02-23 17:14:30 -0700835 case OPCODE_EXP:
Brianf183a2d2007-02-23 17:14:30 -0700836 {
837 GLfloat t[4], q[4], floor_t0;
Brian33eac562007-02-25 18:52:41 -0700838 fetch_vector1(&inst->SrcReg[0], machine, t);
Brianf183a2d2007-02-23 17:14:30 -0700839 floor_t0 = FLOORF(t[0]);
840 if (floor_t0 > FLT_MAX_EXP) {
841 SET_POS_INFINITY(q[0]);
842 SET_POS_INFINITY(q[2]);
843 }
844 else if (floor_t0 < FLT_MIN_EXP) {
845 q[0] = 0.0F;
846 q[2] = 0.0F;
847 }
848 else {
Brian761728a2007-02-24 11:14:57 -0700849 q[0] = LDEXPF(1.0, (int) floor_t0);
850 /* Note: GL_NV_vertex_program expects
851 * result.z = result.x * APPX(result.y)
852 * We do what the ARB extension says.
853 */
Brian Paulb8a200a2009-04-03 10:29:11 -0600854 q[2] = (GLfloat) _mesa_pow(2.0, t[0]);
Brianf183a2d2007-02-23 17:14:30 -0700855 }
856 q[1] = t[0] - floor_t0;
857 q[3] = 1.0F;
858 store_vector4( inst, machine, q );
859 }
860 break;
Briane80d9012007-02-23 16:53:24 -0700861 case OPCODE_EX2: /* Exponential base 2 */
862 {
Brian Paul035de6a2009-06-03 15:42:52 -0600863 GLfloat a[4], result[4], val;
Brian33eac562007-02-25 18:52:41 -0700864 fetch_vector1(&inst->SrcReg[0], machine, a);
Brian Paul035de6a2009-06-03 15:42:52 -0600865 val = (GLfloat) _mesa_pow(2.0, a[0]);
866 /*
867 if (IS_INF_OR_NAN(val))
868 val = 1.0e10;
869 */
870 result[0] = result[1] = result[2] = result[3] = val;
Briane80d9012007-02-23 16:53:24 -0700871 store_vector4(inst, machine, result);
872 }
873 break;
874 case OPCODE_FLR:
875 {
876 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700877 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -0700878 result[0] = FLOORF(a[0]);
879 result[1] = FLOORF(a[1]);
880 result[2] = FLOORF(a[2]);
881 result[3] = FLOORF(a[3]);
882 store_vector4(inst, machine, result);
883 }
884 break;
885 case OPCODE_FRC:
886 {
887 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700888 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -0700889 result[0] = a[0] - FLOORF(a[0]);
890 result[1] = a[1] - FLOORF(a[1]);
891 result[2] = a[2] - FLOORF(a[2]);
892 result[3] = a[3] - FLOORF(a[3]);
893 store_vector4(inst, machine, result);
894 }
895 break;
896 case OPCODE_IF:
Brian63556fa2007-03-23 14:47:46 -0600897 {
898 GLboolean cond;
899 /* eval condition */
900 if (inst->SrcReg[0].File != PROGRAM_UNDEFINED) {
901 GLfloat a[4];
902 fetch_vector1(&inst->SrcReg[0], machine, a);
903 cond = (a[0] != 0.0);
904 }
905 else {
906 cond = eval_condition(machine, inst);
907 }
Briana7f73662007-04-20 08:11:51 -0600908 if (DEBUG_PROG) {
909 printf("IF: %d\n", cond);
910 }
Brian63556fa2007-03-23 14:47:46 -0600911 /* do if/else */
912 if (cond) {
913 /* do if-clause (just continue execution) */
914 }
915 else {
916 /* go to the instruction after ELSE or ENDIF */
917 assert(inst->BranchTarget >= 0);
918 pc = inst->BranchTarget - 1;
919 }
Briane80d9012007-02-23 16:53:24 -0700920 }
921 break;
922 case OPCODE_ELSE:
923 /* goto ENDIF */
924 assert(inst->BranchTarget >= 0);
925 pc = inst->BranchTarget - 1;
926 break;
927 case OPCODE_ENDIF:
928 /* nothing */
929 break;
Briane80d9012007-02-23 16:53:24 -0700930 case OPCODE_KIL_NV: /* NV_f_p only (conditional) */
931 if (eval_condition(machine, inst)) {
932 return GL_FALSE;
933 }
934 break;
935 case OPCODE_KIL: /* ARB_f_p only */
936 {
937 GLfloat a[4];
Brian33eac562007-02-25 18:52:41 -0700938 fetch_vector4(&inst->SrcReg[0], machine, a);
Brian Paulc0633dd2009-08-31 14:57:59 -0600939 if (DEBUG_PROG) {
940 printf("KIL if (%g %g %g %g) <= 0.0\n",
941 a[0], a[1], a[2], a[3]);
942 }
943
Briane80d9012007-02-23 16:53:24 -0700944 if (a[0] < 0.0F || a[1] < 0.0F || a[2] < 0.0F || a[3] < 0.0F) {
Brian13e3b212007-02-22 16:09:40 -0700945 return GL_FALSE;
946 }
Briane80d9012007-02-23 16:53:24 -0700947 }
948 break;
949 case OPCODE_LG2: /* log base 2 */
950 {
Brian Paul035de6a2009-06-03 15:42:52 -0600951 GLfloat a[4], result[4], val;
Brian33eac562007-02-25 18:52:41 -0700952 fetch_vector1(&inst->SrcReg[0], machine, a);
Ian Romanick962fa6b2008-12-18 14:11:06 -0800953 /* The fast LOG2 macro doesn't meet the precision requirements.
954 */
Brian Paul035de6a2009-06-03 15:42:52 -0600955 if (a[0] == 0.0F) {
Vinson Lee18883cd2009-10-01 13:33:20 -0600956 val = -FLT_MAX;
Brian Paul035de6a2009-06-03 15:42:52 -0600957 }
958 else {
959 val = log(a[0]) * 1.442695F;
960 }
961 result[0] = result[1] = result[2] = result[3] = val;
Briane80d9012007-02-23 16:53:24 -0700962 store_vector4(inst, machine, result);
963 }
964 break;
965 case OPCODE_LIT:
966 {
967 const GLfloat epsilon = 1.0F / 256.0F; /* from NV VP spec */
968 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -0700969 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -0700970 a[0] = MAX2(a[0], 0.0F);
971 a[1] = MAX2(a[1], 0.0F);
972 /* XXX ARB version clamps a[3], NV version doesn't */
973 a[3] = CLAMP(a[3], -(128.0F - epsilon), (128.0F - epsilon));
974 result[0] = 1.0F;
975 result[1] = a[0];
976 /* XXX we could probably just use pow() here */
977 if (a[0] > 0.0F) {
978 if (a[1] == 0.0 && a[3] == 0.0)
979 result[2] = 1.0;
980 else
Brian Paulb8a200a2009-04-03 10:29:11 -0600981 result[2] = (GLfloat) _mesa_pow(a[1], a[3]);
Brian13e3b212007-02-22 16:09:40 -0700982 }
Briane80d9012007-02-23 16:53:24 -0700983 else {
984 result[2] = 0.0;
Brian13e3b212007-02-22 16:09:40 -0700985 }
Briane80d9012007-02-23 16:53:24 -0700986 result[3] = 1.0F;
987 store_vector4(inst, machine, result);
988 if (DEBUG_PROG) {
989 printf("LIT (%g %g %g %g) : (%g %g %g %g)\n",
990 result[0], result[1], result[2], result[3],
991 a[0], a[1], a[2], a[3]);
Brian13e3b212007-02-22 16:09:40 -0700992 }
Briane80d9012007-02-23 16:53:24 -0700993 }
994 break;
Brianf183a2d2007-02-23 17:14:30 -0700995 case OPCODE_LOG:
996 {
997 GLfloat t[4], q[4], abs_t0;
Brian33eac562007-02-25 18:52:41 -0700998 fetch_vector1(&inst->SrcReg[0], machine, t);
Brianf183a2d2007-02-23 17:14:30 -0700999 abs_t0 = FABSF(t[0]);
1000 if (abs_t0 != 0.0F) {
1001 /* Since we really can't handle infinite values on VMS
1002 * like other OSes we'll use __MAXFLOAT to represent
1003 * infinity. This may need some tweaking.
1004 */
1005#ifdef VMS
1006 if (abs_t0 == __MAXFLOAT)
1007#else
1008 if (IS_INF_OR_NAN(abs_t0))
1009#endif
1010 {
1011 SET_POS_INFINITY(q[0]);
1012 q[1] = 1.0F;
1013 SET_POS_INFINITY(q[2]);
1014 }
1015 else {
1016 int exponent;
1017 GLfloat mantissa = FREXPF(t[0], &exponent);
1018 q[0] = (GLfloat) (exponent - 1);
1019 q[1] = (GLfloat) (2.0 * mantissa); /* map [.5, 1) -> [1, 2) */
Ian Romanick962fa6b2008-12-18 14:11:06 -08001020
1021 /* The fast LOG2 macro doesn't meet the precision
1022 * requirements.
1023 */
1024 q[2] = (log(t[0]) * 1.442695F);
Brianf183a2d2007-02-23 17:14:30 -07001025 }
1026 }
1027 else {
1028 SET_NEG_INFINITY(q[0]);
1029 q[1] = 1.0F;
1030 SET_NEG_INFINITY(q[2]);
1031 }
1032 q[3] = 1.0;
1033 store_vector4(inst, machine, q);
1034 }
1035 break;
Briane80d9012007-02-23 16:53:24 -07001036 case OPCODE_LRP:
1037 {
1038 GLfloat a[4], b[4], c[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001039 fetch_vector4(&inst->SrcReg[0], machine, a);
1040 fetch_vector4(&inst->SrcReg[1], machine, b);
1041 fetch_vector4(&inst->SrcReg[2], machine, c);
Briane80d9012007-02-23 16:53:24 -07001042 result[0] = a[0] * b[0] + (1.0F - a[0]) * c[0];
1043 result[1] = a[1] * b[1] + (1.0F - a[1]) * c[1];
1044 result[2] = a[2] * b[2] + (1.0F - a[2]) * c[2];
1045 result[3] = a[3] * b[3] + (1.0F - a[3]) * c[3];
1046 store_vector4(inst, machine, result);
1047 if (DEBUG_PROG) {
1048 printf("LRP (%g %g %g %g) = (%g %g %g %g), "
1049 "(%g %g %g %g), (%g %g %g %g)\n",
1050 result[0], result[1], result[2], result[3],
1051 a[0], a[1], a[2], a[3],
1052 b[0], b[1], b[2], b[3], c[0], c[1], c[2], c[3]);
Brian13e3b212007-02-22 16:09:40 -07001053 }
Briane80d9012007-02-23 16:53:24 -07001054 }
1055 break;
1056 case OPCODE_MAD:
1057 {
1058 GLfloat a[4], b[4], c[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001059 fetch_vector4(&inst->SrcReg[0], machine, a);
1060 fetch_vector4(&inst->SrcReg[1], machine, b);
1061 fetch_vector4(&inst->SrcReg[2], machine, c);
Briane80d9012007-02-23 16:53:24 -07001062 result[0] = a[0] * b[0] + c[0];
1063 result[1] = a[1] * b[1] + c[1];
1064 result[2] = a[2] * b[2] + c[2];
1065 result[3] = a[3] * b[3] + c[3];
1066 store_vector4(inst, machine, result);
1067 if (DEBUG_PROG) {
1068 printf("MAD (%g %g %g %g) = (%g %g %g %g) * "
1069 "(%g %g %g %g) + (%g %g %g %g)\n",
1070 result[0], result[1], result[2], result[3],
1071 a[0], a[1], a[2], a[3],
1072 b[0], b[1], b[2], b[3], c[0], c[1], c[2], c[3]);
Brian13e3b212007-02-22 16:09:40 -07001073 }
Briane80d9012007-02-23 16:53:24 -07001074 }
1075 break;
1076 case OPCODE_MAX:
1077 {
1078 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001079 fetch_vector4(&inst->SrcReg[0], machine, a);
1080 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001081 result[0] = MAX2(a[0], b[0]);
1082 result[1] = MAX2(a[1], b[1]);
1083 result[2] = MAX2(a[2], b[2]);
1084 result[3] = MAX2(a[3], b[3]);
1085 store_vector4(inst, machine, result);
1086 if (DEBUG_PROG) {
1087 printf("MAX (%g %g %g %g) = (%g %g %g %g), (%g %g %g %g)\n",
1088 result[0], result[1], result[2], result[3],
1089 a[0], a[1], a[2], a[3], b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -07001090 }
Briane80d9012007-02-23 16:53:24 -07001091 }
1092 break;
1093 case OPCODE_MIN:
1094 {
1095 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001096 fetch_vector4(&inst->SrcReg[0], machine, a);
1097 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001098 result[0] = MIN2(a[0], b[0]);
1099 result[1] = MIN2(a[1], b[1]);
1100 result[2] = MIN2(a[2], b[2]);
1101 result[3] = MIN2(a[3], b[3]);
1102 store_vector4(inst, machine, result);
1103 }
1104 break;
1105 case OPCODE_MOV:
1106 {
1107 GLfloat result[4];
Brian33eac562007-02-25 18:52:41 -07001108 fetch_vector4(&inst->SrcReg[0], machine, result);
Briane80d9012007-02-23 16:53:24 -07001109 store_vector4(inst, machine, result);
1110 if (DEBUG_PROG) {
1111 printf("MOV (%g %g %g %g)\n",
1112 result[0], result[1], result[2], result[3]);
Brian13e3b212007-02-22 16:09:40 -07001113 }
Briane80d9012007-02-23 16:53:24 -07001114 }
1115 break;
1116 case OPCODE_MUL:
1117 {
1118 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001119 fetch_vector4(&inst->SrcReg[0], machine, a);
1120 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001121 result[0] = a[0] * b[0];
1122 result[1] = a[1] * b[1];
1123 result[2] = a[2] * b[2];
1124 result[3] = a[3] * b[3];
1125 store_vector4(inst, machine, result);
1126 if (DEBUG_PROG) {
1127 printf("MUL (%g %g %g %g) = (%g %g %g %g) * (%g %g %g %g)\n",
1128 result[0], result[1], result[2], result[3],
1129 a[0], a[1], a[2], a[3], b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -07001130 }
Briane80d9012007-02-23 16:53:24 -07001131 }
1132 break;
1133 case OPCODE_NOISE1:
1134 {
1135 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001136 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001137 result[0] =
Brian13e3b212007-02-22 16:09:40 -07001138 result[1] =
Brian Paul702b5b02008-12-15 18:37:39 -07001139 result[2] =
1140 result[3] = _mesa_noise1(a[0]);
Briane80d9012007-02-23 16:53:24 -07001141 store_vector4(inst, machine, result);
1142 }
1143 break;
1144 case OPCODE_NOISE2:
1145 {
1146 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001147 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001148 result[0] =
Brian13e3b212007-02-22 16:09:40 -07001149 result[1] =
Brian Paul702b5b02008-12-15 18:37:39 -07001150 result[2] = result[3] = _mesa_noise2(a[0], a[1]);
Briane80d9012007-02-23 16:53:24 -07001151 store_vector4(inst, machine, result);
1152 }
1153 break;
1154 case OPCODE_NOISE3:
1155 {
1156 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001157 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001158 result[0] =
Brian13e3b212007-02-22 16:09:40 -07001159 result[1] =
1160 result[2] =
Brian Paul702b5b02008-12-15 18:37:39 -07001161 result[3] = _mesa_noise3(a[0], a[1], a[2]);
Briane80d9012007-02-23 16:53:24 -07001162 store_vector4(inst, machine, result);
1163 }
1164 break;
1165 case OPCODE_NOISE4:
1166 {
1167 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001168 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001169 result[0] =
Brian13e3b212007-02-22 16:09:40 -07001170 result[1] =
1171 result[2] =
Brian Paul702b5b02008-12-15 18:37:39 -07001172 result[3] = _mesa_noise4(a[0], a[1], a[2], a[3]);
Briane80d9012007-02-23 16:53:24 -07001173 store_vector4(inst, machine, result);
1174 }
1175 break;
1176 case OPCODE_NOP:
1177 break;
Brian Paul37eef7b2008-11-07 09:33:55 -07001178 case OPCODE_NOT: /* bitwise NOT */
1179 {
1180 GLuint a[4], result[4];
1181 fetch_vector4ui(&inst->SrcReg[0], machine, a);
1182 result[0] = ~a[0];
1183 result[1] = ~a[1];
1184 result[2] = ~a[2];
1185 result[3] = ~a[3];
1186 store_vector4ui(inst, machine, result);
1187 }
1188 break;
Brian Paulf6ead502008-11-07 08:51:31 -07001189 case OPCODE_NRM3: /* 3-component normalization */
1190 {
1191 GLfloat a[4], result[4];
1192 GLfloat tmp;
1193 fetch_vector4(&inst->SrcReg[0], machine, a);
1194 tmp = a[0] * a[0] + a[1] * a[1] + a[2] * a[2];
1195 if (tmp != 0.0F)
Brian Paul22459e72008-11-07 12:59:36 -07001196 tmp = INV_SQRTF(tmp);
Brian Paulf6ead502008-11-07 08:51:31 -07001197 result[0] = tmp * a[0];
1198 result[1] = tmp * a[1];
1199 result[2] = tmp * a[2];
1200 result[3] = 0.0; /* undefined, but prevent valgrind warnings */
1201 store_vector4(inst, machine, result);
1202 }
1203 break;
1204 case OPCODE_NRM4: /* 4-component normalization */
1205 {
1206 GLfloat a[4], result[4];
1207 GLfloat tmp;
1208 fetch_vector4(&inst->SrcReg[0], machine, a);
1209 tmp = a[0] * a[0] + a[1] * a[1] + a[2] * a[2] + a[3] * a[3];
1210 if (tmp != 0.0F)
Brian Paul22459e72008-11-07 12:59:36 -07001211 tmp = INV_SQRTF(tmp);
Brian Paulf6ead502008-11-07 08:51:31 -07001212 result[0] = tmp * a[0];
1213 result[1] = tmp * a[1];
1214 result[2] = tmp * a[2];
1215 result[3] = tmp * a[3];
1216 store_vector4(inst, machine, result);
1217 }
1218 break;
Brian Paul37eef7b2008-11-07 09:33:55 -07001219 case OPCODE_OR: /* bitwise OR */
1220 {
1221 GLuint a[4], b[4], result[4];
1222 fetch_vector4ui(&inst->SrcReg[0], machine, a);
1223 fetch_vector4ui(&inst->SrcReg[1], machine, b);
1224 result[0] = a[0] | b[0];
1225 result[1] = a[1] | b[1];
1226 result[2] = a[2] | b[2];
1227 result[3] = a[3] | b[3];
1228 store_vector4ui(inst, machine, result);
1229 }
1230 break;
Briane80d9012007-02-23 16:53:24 -07001231 case OPCODE_PK2H: /* pack two 16-bit floats in one 32-bit float */
1232 {
Brian Paul37eef7b2008-11-07 09:33:55 -07001233 GLfloat a[4];
1234 GLuint result[4];
Briane80d9012007-02-23 16:53:24 -07001235 GLhalfNV hx, hy;
Brian33eac562007-02-25 18:52:41 -07001236 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001237 hx = _mesa_float_to_half(a[0]);
1238 hy = _mesa_float_to_half(a[1]);
Brian Paul37eef7b2008-11-07 09:33:55 -07001239 result[0] =
1240 result[1] =
1241 result[2] =
1242 result[3] = hx | (hy << 16);
1243 store_vector4ui(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -07001244 }
1245 break;
1246 case OPCODE_PK2US: /* pack two GLushorts into one 32-bit float */
1247 {
Brian Paul37eef7b2008-11-07 09:33:55 -07001248 GLfloat a[4];
1249 GLuint result[4], usx, usy;
Brian33eac562007-02-25 18:52:41 -07001250 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001251 a[0] = CLAMP(a[0], 0.0F, 1.0F);
1252 a[1] = CLAMP(a[1], 0.0F, 1.0F);
1253 usx = IROUND(a[0] * 65535.0F);
1254 usy = IROUND(a[1] * 65535.0F);
Brian Paul37eef7b2008-11-07 09:33:55 -07001255 result[0] =
1256 result[1] =
1257 result[2] =
1258 result[3] = usx | (usy << 16);
1259 store_vector4ui(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -07001260 }
1261 break;
1262 case OPCODE_PK4B: /* pack four GLbytes into one 32-bit float */
1263 {
Brian Paul37eef7b2008-11-07 09:33:55 -07001264 GLfloat a[4];
1265 GLuint result[4], ubx, uby, ubz, ubw;
Brian33eac562007-02-25 18:52:41 -07001266 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001267 a[0] = CLAMP(a[0], -128.0F / 127.0F, 1.0F);
1268 a[1] = CLAMP(a[1], -128.0F / 127.0F, 1.0F);
1269 a[2] = CLAMP(a[2], -128.0F / 127.0F, 1.0F);
1270 a[3] = CLAMP(a[3], -128.0F / 127.0F, 1.0F);
1271 ubx = IROUND(127.0F * a[0] + 128.0F);
1272 uby = IROUND(127.0F * a[1] + 128.0F);
1273 ubz = IROUND(127.0F * a[2] + 128.0F);
1274 ubw = IROUND(127.0F * a[3] + 128.0F);
Brian Paul37eef7b2008-11-07 09:33:55 -07001275 result[0] =
1276 result[1] =
1277 result[2] =
1278 result[3] = ubx | (uby << 8) | (ubz << 16) | (ubw << 24);
1279 store_vector4ui(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -07001280 }
1281 break;
1282 case OPCODE_PK4UB: /* pack four GLubytes into one 32-bit float */
1283 {
Brian Paul37eef7b2008-11-07 09:33:55 -07001284 GLfloat a[4];
1285 GLuint result[4], ubx, uby, ubz, ubw;
Brian33eac562007-02-25 18:52:41 -07001286 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001287 a[0] = CLAMP(a[0], 0.0F, 1.0F);
1288 a[1] = CLAMP(a[1], 0.0F, 1.0F);
1289 a[2] = CLAMP(a[2], 0.0F, 1.0F);
1290 a[3] = CLAMP(a[3], 0.0F, 1.0F);
1291 ubx = IROUND(255.0F * a[0]);
1292 uby = IROUND(255.0F * a[1]);
1293 ubz = IROUND(255.0F * a[2]);
1294 ubw = IROUND(255.0F * a[3]);
Brian Paul37eef7b2008-11-07 09:33:55 -07001295 result[0] =
1296 result[1] =
1297 result[2] =
1298 result[3] = ubx | (uby << 8) | (ubz << 16) | (ubw << 24);
1299 store_vector4ui(inst, machine, result);
Briane80d9012007-02-23 16:53:24 -07001300 }
1301 break;
1302 case OPCODE_POW:
1303 {
1304 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001305 fetch_vector1(&inst->SrcReg[0], machine, a);
1306 fetch_vector1(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001307 result[0] = result[1] = result[2] = result[3]
1308 = (GLfloat) _mesa_pow(a[0], b[0]);
1309 store_vector4(inst, machine, result);
1310 }
1311 break;
1312 case OPCODE_RCP:
1313 {
1314 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001315 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001316 if (DEBUG_PROG) {
1317 if (a[0] == 0)
1318 printf("RCP(0)\n");
1319 else if (IS_INF_OR_NAN(a[0]))
1320 printf("RCP(inf)\n");
Brian13e3b212007-02-22 16:09:40 -07001321 }
Briane80d9012007-02-23 16:53:24 -07001322 result[0] = result[1] = result[2] = result[3] = 1.0F / a[0];
1323 store_vector4(inst, machine, result);
1324 }
1325 break;
1326 case OPCODE_RET: /* return from subroutine (conditional) */
1327 if (eval_condition(machine, inst)) {
1328 if (machine->StackDepth == 0) {
1329 return GL_TRUE; /* Per GL_NV_vertex_program2 spec */
Brian13e3b212007-02-22 16:09:40 -07001330 }
Briana0275b02007-03-27 11:02:20 -06001331 /* subtract one because of pc++ in the for loop */
1332 pc = machine->CallStack[--machine->StackDepth] - 1;
Briane80d9012007-02-23 16:53:24 -07001333 }
1334 break;
1335 case OPCODE_RFL: /* reflection vector */
1336 {
1337 GLfloat axis[4], dir[4], result[4], tmpX, tmpW;
Brian33eac562007-02-25 18:52:41 -07001338 fetch_vector4(&inst->SrcReg[0], machine, axis);
1339 fetch_vector4(&inst->SrcReg[1], machine, dir);
Briane80d9012007-02-23 16:53:24 -07001340 tmpW = DOT3(axis, axis);
1341 tmpX = (2.0F * DOT3(axis, dir)) / tmpW;
1342 result[0] = tmpX * axis[0] - dir[0];
1343 result[1] = tmpX * axis[1] - dir[1];
1344 result[2] = tmpX * axis[2] - dir[2];
1345 /* result[3] is never written! XXX enforce in parser! */
1346 store_vector4(inst, machine, result);
1347 }
1348 break;
1349 case OPCODE_RSQ: /* 1 / sqrt() */
1350 {
1351 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001352 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001353 a[0] = FABSF(a[0]);
1354 result[0] = result[1] = result[2] = result[3] = INV_SQRTF(a[0]);
1355 store_vector4(inst, machine, result);
1356 if (DEBUG_PROG) {
1357 printf("RSQ %g = 1/sqrt(|%g|)\n", result[0], a[0]);
Brian13e3b212007-02-22 16:09:40 -07001358 }
Briane80d9012007-02-23 16:53:24 -07001359 }
1360 break;
1361 case OPCODE_SCS: /* sine and cos */
1362 {
1363 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001364 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001365 result[0] = (GLfloat) _mesa_cos(a[0]);
1366 result[1] = (GLfloat) _mesa_sin(a[0]);
1367 result[2] = 0.0; /* undefined! */
1368 result[3] = 0.0; /* undefined! */
1369 store_vector4(inst, machine, result);
1370 }
1371 break;
1372 case OPCODE_SEQ: /* set on equal */
1373 {
1374 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001375 fetch_vector4(&inst->SrcReg[0], machine, a);
1376 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001377 result[0] = (a[0] == b[0]) ? 1.0F : 0.0F;
1378 result[1] = (a[1] == b[1]) ? 1.0F : 0.0F;
1379 result[2] = (a[2] == b[2]) ? 1.0F : 0.0F;
1380 result[3] = (a[3] == b[3]) ? 1.0F : 0.0F;
1381 store_vector4(inst, machine, result);
Brian28ab1122007-03-06 12:15:30 -07001382 if (DEBUG_PROG) {
1383 printf("SEQ (%g %g %g %g) = (%g %g %g %g) == (%g %g %g %g)\n",
1384 result[0], result[1], result[2], result[3],
1385 a[0], a[1], a[2], a[3],
1386 b[0], b[1], b[2], b[3]);
1387 }
Briane80d9012007-02-23 16:53:24 -07001388 }
1389 break;
1390 case OPCODE_SFL: /* set false, operands ignored */
1391 {
1392 static const GLfloat result[4] = { 0.0F, 0.0F, 0.0F, 0.0F };
1393 store_vector4(inst, machine, result);
1394 }
1395 break;
1396 case OPCODE_SGE: /* set on greater or equal */
1397 {
1398 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001399 fetch_vector4(&inst->SrcReg[0], machine, a);
1400 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001401 result[0] = (a[0] >= b[0]) ? 1.0F : 0.0F;
1402 result[1] = (a[1] >= b[1]) ? 1.0F : 0.0F;
1403 result[2] = (a[2] >= b[2]) ? 1.0F : 0.0F;
1404 result[3] = (a[3] >= b[3]) ? 1.0F : 0.0F;
1405 store_vector4(inst, machine, result);
Brian28ab1122007-03-06 12:15:30 -07001406 if (DEBUG_PROG) {
1407 printf("SGE (%g %g %g %g) = (%g %g %g %g) >= (%g %g %g %g)\n",
1408 result[0], result[1], result[2], result[3],
1409 a[0], a[1], a[2], a[3],
1410 b[0], b[1], b[2], b[3]);
1411 }
Briane80d9012007-02-23 16:53:24 -07001412 }
1413 break;
1414 case OPCODE_SGT: /* set on greater */
1415 {
1416 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001417 fetch_vector4(&inst->SrcReg[0], machine, a);
1418 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001419 result[0] = (a[0] > b[0]) ? 1.0F : 0.0F;
1420 result[1] = (a[1] > b[1]) ? 1.0F : 0.0F;
1421 result[2] = (a[2] > b[2]) ? 1.0F : 0.0F;
1422 result[3] = (a[3] > b[3]) ? 1.0F : 0.0F;
1423 store_vector4(inst, machine, result);
1424 if (DEBUG_PROG) {
Brian28ab1122007-03-06 12:15:30 -07001425 printf("SGT (%g %g %g %g) = (%g %g %g %g) > (%g %g %g %g)\n",
1426 result[0], result[1], result[2], result[3],
1427 a[0], a[1], a[2], a[3],
1428 b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -07001429 }
Briane80d9012007-02-23 16:53:24 -07001430 }
1431 break;
1432 case OPCODE_SIN:
1433 {
1434 GLfloat a[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001435 fetch_vector1(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001436 result[0] = result[1] = result[2] = result[3]
1437 = (GLfloat) _mesa_sin(a[0]);
1438 store_vector4(inst, machine, result);
1439 }
1440 break;
1441 case OPCODE_SLE: /* set on less or equal */
1442 {
1443 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001444 fetch_vector4(&inst->SrcReg[0], machine, a);
1445 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001446 result[0] = (a[0] <= b[0]) ? 1.0F : 0.0F;
1447 result[1] = (a[1] <= b[1]) ? 1.0F : 0.0F;
1448 result[2] = (a[2] <= b[2]) ? 1.0F : 0.0F;
1449 result[3] = (a[3] <= b[3]) ? 1.0F : 0.0F;
1450 store_vector4(inst, machine, result);
Brian28ab1122007-03-06 12:15:30 -07001451 if (DEBUG_PROG) {
1452 printf("SLE (%g %g %g %g) = (%g %g %g %g) <= (%g %g %g %g)\n",
1453 result[0], result[1], result[2], result[3],
1454 a[0], a[1], a[2], a[3],
1455 b[0], b[1], b[2], b[3]);
1456 }
Briane80d9012007-02-23 16:53:24 -07001457 }
1458 break;
1459 case OPCODE_SLT: /* set on less */
1460 {
1461 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001462 fetch_vector4(&inst->SrcReg[0], machine, a);
1463 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001464 result[0] = (a[0] < b[0]) ? 1.0F : 0.0F;
1465 result[1] = (a[1] < b[1]) ? 1.0F : 0.0F;
1466 result[2] = (a[2] < b[2]) ? 1.0F : 0.0F;
1467 result[3] = (a[3] < b[3]) ? 1.0F : 0.0F;
1468 store_vector4(inst, machine, result);
Brian28ab1122007-03-06 12:15:30 -07001469 if (DEBUG_PROG) {
1470 printf("SLT (%g %g %g %g) = (%g %g %g %g) < (%g %g %g %g)\n",
1471 result[0], result[1], result[2], result[3],
1472 a[0], a[1], a[2], a[3],
1473 b[0], b[1], b[2], b[3]);
1474 }
Briane80d9012007-02-23 16:53:24 -07001475 }
1476 break;
1477 case OPCODE_SNE: /* set on not equal */
1478 {
1479 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001480 fetch_vector4(&inst->SrcReg[0], machine, a);
1481 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001482 result[0] = (a[0] != b[0]) ? 1.0F : 0.0F;
1483 result[1] = (a[1] != b[1]) ? 1.0F : 0.0F;
1484 result[2] = (a[2] != b[2]) ? 1.0F : 0.0F;
1485 result[3] = (a[3] != b[3]) ? 1.0F : 0.0F;
1486 store_vector4(inst, machine, result);
Brian28ab1122007-03-06 12:15:30 -07001487 if (DEBUG_PROG) {
1488 printf("SNE (%g %g %g %g) = (%g %g %g %g) != (%g %g %g %g)\n",
1489 result[0], result[1], result[2], result[3],
1490 a[0], a[1], a[2], a[3],
1491 b[0], b[1], b[2], b[3]);
1492 }
Briane80d9012007-02-23 16:53:24 -07001493 }
1494 break;
Brian Paulf6ead502008-11-07 08:51:31 -07001495 case OPCODE_SSG: /* set sign (-1, 0 or +1) */
1496 {
1497 GLfloat a[4], result[4];
1498 fetch_vector4(&inst->SrcReg[0], machine, a);
1499 result[0] = (GLfloat) ((a[0] > 0.0F) - (a[0] < 0.0F));
1500 result[1] = (GLfloat) ((a[1] > 0.0F) - (a[1] < 0.0F));
1501 result[2] = (GLfloat) ((a[2] > 0.0F) - (a[2] < 0.0F));
1502 result[3] = (GLfloat) ((a[3] > 0.0F) - (a[3] < 0.0F));
1503 store_vector4(inst, machine, result);
1504 }
1505 break;
Briane80d9012007-02-23 16:53:24 -07001506 case OPCODE_STR: /* set true, operands ignored */
1507 {
1508 static const GLfloat result[4] = { 1.0F, 1.0F, 1.0F, 1.0F };
1509 store_vector4(inst, machine, result);
1510 }
1511 break;
1512 case OPCODE_SUB:
1513 {
1514 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001515 fetch_vector4(&inst->SrcReg[0], machine, a);
1516 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001517 result[0] = a[0] - b[0];
1518 result[1] = a[1] - b[1];
1519 result[2] = a[2] - b[2];
1520 result[3] = a[3] - b[3];
1521 store_vector4(inst, machine, result);
1522 if (DEBUG_PROG) {
1523 printf("SUB (%g %g %g %g) = (%g %g %g %g) - (%g %g %g %g)\n",
1524 result[0], result[1], result[2], result[3],
1525 a[0], a[1], a[2], a[3], b[0], b[1], b[2], b[3]);
Brian13e3b212007-02-22 16:09:40 -07001526 }
Briane80d9012007-02-23 16:53:24 -07001527 }
1528 break;
1529 case OPCODE_SWZ: /* extended swizzle */
1530 {
1531 const struct prog_src_register *source = &inst->SrcReg[0];
Brian Paulf4361542008-11-11 10:47:10 -07001532 const GLfloat *src = get_src_register_pointer(source, machine);
Briane80d9012007-02-23 16:53:24 -07001533 GLfloat result[4];
1534 GLuint i;
1535 for (i = 0; i < 4; i++) {
1536 const GLuint swz = GET_SWZ(source->Swizzle, i);
1537 if (swz == SWIZZLE_ZERO)
1538 result[i] = 0.0;
1539 else if (swz == SWIZZLE_ONE)
1540 result[i] = 1.0;
Brian13e3b212007-02-22 16:09:40 -07001541 else {
Briane80d9012007-02-23 16:53:24 -07001542 ASSERT(swz >= 0);
1543 ASSERT(swz <= 3);
1544 result[i] = src[swz];
Brian13e3b212007-02-22 16:09:40 -07001545 }
Brian Paul7db7ff82009-04-14 22:14:30 -06001546 if (source->Negate & (1 << i))
Briane80d9012007-02-23 16:53:24 -07001547 result[i] = -result[i];
Brian13e3b212007-02-22 16:09:40 -07001548 }
Briane80d9012007-02-23 16:53:24 -07001549 store_vector4(inst, machine, result);
1550 }
1551 break;
1552 case OPCODE_TEX: /* Both ARB and NV frag prog */
Brian999b5562007-11-23 12:01:57 -07001553 /* Simple texel lookup */
Briane80d9012007-02-23 16:53:24 -07001554 {
Brian999b5562007-11-23 12:01:57 -07001555 GLfloat texcoord[4], color[4];
1556 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
1557
1558 fetch_texel(ctx, machine, inst, texcoord, 0.0, color);
1559
Briane80d9012007-02-23 16:53:24 -07001560 if (DEBUG_PROG) {
Brian999b5562007-11-23 12:01:57 -07001561 printf("TEX (%g, %g, %g, %g) = texture[%d][%g, %g, %g, %g]\n",
Briane80d9012007-02-23 16:53:24 -07001562 color[0], color[1], color[2], color[3],
1563 inst->TexSrcUnit,
Brian999b5562007-11-23 12:01:57 -07001564 texcoord[0], texcoord[1], texcoord[2], texcoord[3]);
Briane80d9012007-02-23 16:53:24 -07001565 }
1566 store_vector4(inst, machine, color);
1567 }
1568 break;
1569 case OPCODE_TXB: /* GL_ARB_fragment_program only */
1570 /* Texel lookup with LOD bias */
1571 {
Brian999b5562007-11-23 12:01:57 -07001572 GLfloat texcoord[4], color[4], lodBias;
1573
1574 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
1575
1576 /* texcoord[3] is the bias to add to lambda */
Brian Paul890f37d2009-09-23 13:34:30 -06001577 lodBias = texcoord[3];
Brian999b5562007-11-23 12:01:57 -07001578
1579 fetch_texel(ctx, machine, inst, texcoord, lodBias, color);
1580
Briane80d9012007-02-23 16:53:24 -07001581 store_vector4(inst, machine, color);
1582 }
1583 break;
1584 case OPCODE_TXD: /* GL_NV_fragment_program only */
1585 /* Texture lookup w/ partial derivatives for LOD */
1586 {
1587 GLfloat texcoord[4], dtdx[4], dtdy[4], color[4];
Brian33eac562007-02-25 18:52:41 -07001588 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
1589 fetch_vector4(&inst->SrcReg[1], machine, dtdx);
1590 fetch_vector4(&inst->SrcReg[2], machine, dtdy);
Briane80d9012007-02-23 16:53:24 -07001591 machine->FetchTexelDeriv(ctx, texcoord, dtdx, dtdy,
Brian999b5562007-11-23 12:01:57 -07001592 0.0, /* lodBias */
Briane80d9012007-02-23 16:53:24 -07001593 inst->TexSrcUnit, color);
1594 store_vector4(inst, machine, color);
1595 }
1596 break;
1597 case OPCODE_TXP: /* GL_ARB_fragment_program only */
1598 /* Texture lookup w/ projective divide */
1599 {
Brian999b5562007-11-23 12:01:57 -07001600 GLfloat texcoord[4], color[4];
1601
Brian33eac562007-02-25 18:52:41 -07001602 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
Briane80d9012007-02-23 16:53:24 -07001603 /* Not so sure about this test - if texcoord[3] is
1604 * zero, we'd probably be fine except for an ASSERT in
1605 * IROUND_POS() which gets triggered by the inf values created.
1606 */
1607 if (texcoord[3] != 0.0) {
1608 texcoord[0] /= texcoord[3];
1609 texcoord[1] /= texcoord[3];
1610 texcoord[2] /= texcoord[3];
1611 }
Brian999b5562007-11-23 12:01:57 -07001612
1613 fetch_texel(ctx, machine, inst, texcoord, 0.0, color);
1614
Briane80d9012007-02-23 16:53:24 -07001615 store_vector4(inst, machine, color);
1616 }
1617 break;
1618 case OPCODE_TXP_NV: /* GL_NV_fragment_program only */
Brian999b5562007-11-23 12:01:57 -07001619 /* Texture lookup w/ projective divide, as above, but do not
1620 * do the divide by w if sampling from a cube map.
1621 */
Briane80d9012007-02-23 16:53:24 -07001622 {
Brian999b5562007-11-23 12:01:57 -07001623 GLfloat texcoord[4], color[4];
1624
Brian33eac562007-02-25 18:52:41 -07001625 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
Briane80d9012007-02-23 16:53:24 -07001626 if (inst->TexSrcTarget != TEXTURE_CUBE_INDEX &&
1627 texcoord[3] != 0.0) {
1628 texcoord[0] /= texcoord[3];
1629 texcoord[1] /= texcoord[3];
1630 texcoord[2] /= texcoord[3];
1631 }
Brian999b5562007-11-23 12:01:57 -07001632
1633 fetch_texel(ctx, machine, inst, texcoord, 0.0, color);
1634
Briane80d9012007-02-23 16:53:24 -07001635 store_vector4(inst, machine, color);
1636 }
1637 break;
Brian Paul035c0cf2008-11-06 17:14:33 -07001638 case OPCODE_TRUNC: /* truncate toward zero */
1639 {
1640 GLfloat a[4], result[4];
1641 fetch_vector4(&inst->SrcReg[0], machine, a);
1642 result[0] = (GLfloat) (GLint) a[0];
1643 result[1] = (GLfloat) (GLint) a[1];
1644 result[2] = (GLfloat) (GLint) a[2];
1645 result[3] = (GLfloat) (GLint) a[3];
1646 store_vector4(inst, machine, result);
1647 }
1648 break;
Briane80d9012007-02-23 16:53:24 -07001649 case OPCODE_UP2H: /* unpack two 16-bit floats */
1650 {
1651 GLfloat a[4], result[4];
Roland Scheidegger72362a52009-12-07 21:47:49 +01001652 fi_type fi;
Briane80d9012007-02-23 16:53:24 -07001653 GLhalfNV hx, hy;
Brian33eac562007-02-25 18:52:41 -07001654 fetch_vector1(&inst->SrcReg[0], machine, a);
Roland Scheidegger72362a52009-12-07 21:47:49 +01001655 fi.f = a[0];
1656 hx = fi.i & 0xffff;
1657 hy = fi.i >> 16;
Briane80d9012007-02-23 16:53:24 -07001658 result[0] = result[2] = _mesa_half_to_float(hx);
1659 result[1] = result[3] = _mesa_half_to_float(hy);
1660 store_vector4(inst, machine, result);
1661 }
1662 break;
1663 case OPCODE_UP2US: /* unpack two GLushorts */
1664 {
1665 GLfloat a[4], result[4];
Roland Scheidegger72362a52009-12-07 21:47:49 +01001666 fi_type fi;
Briane80d9012007-02-23 16:53:24 -07001667 GLushort usx, usy;
Brian33eac562007-02-25 18:52:41 -07001668 fetch_vector1(&inst->SrcReg[0], machine, a);
Roland Scheidegger72362a52009-12-07 21:47:49 +01001669 fi.f = a[0];
1670 usx = fi.i & 0xffff;
1671 usy = fi.i >> 16;
Briane80d9012007-02-23 16:53:24 -07001672 result[0] = result[2] = usx * (1.0f / 65535.0f);
1673 result[1] = result[3] = usy * (1.0f / 65535.0f);
1674 store_vector4(inst, machine, result);
1675 }
1676 break;
1677 case OPCODE_UP4B: /* unpack four GLbytes */
1678 {
1679 GLfloat a[4], result[4];
Roland Scheidegger72362a52009-12-07 21:47:49 +01001680 fi_type fi;
Brian33eac562007-02-25 18:52:41 -07001681 fetch_vector1(&inst->SrcReg[0], machine, a);
Roland Scheidegger72362a52009-12-07 21:47:49 +01001682 fi.f = a[0];
1683 result[0] = (((fi.i >> 0) & 0xff) - 128) / 127.0F;
1684 result[1] = (((fi.i >> 8) & 0xff) - 128) / 127.0F;
1685 result[2] = (((fi.i >> 16) & 0xff) - 128) / 127.0F;
1686 result[3] = (((fi.i >> 24) & 0xff) - 128) / 127.0F;
Briane80d9012007-02-23 16:53:24 -07001687 store_vector4(inst, machine, result);
1688 }
1689 break;
1690 case OPCODE_UP4UB: /* unpack four GLubytes */
1691 {
1692 GLfloat a[4], result[4];
Roland Scheidegger72362a52009-12-07 21:47:49 +01001693 fi_type fi;
Brian33eac562007-02-25 18:52:41 -07001694 fetch_vector1(&inst->SrcReg[0], machine, a);
Roland Scheidegger72362a52009-12-07 21:47:49 +01001695 fi.f = a[0];
1696 result[0] = ((fi.i >> 0) & 0xff) / 255.0F;
1697 result[1] = ((fi.i >> 8) & 0xff) / 255.0F;
1698 result[2] = ((fi.i >> 16) & 0xff) / 255.0F;
1699 result[3] = ((fi.i >> 24) & 0xff) / 255.0F;
Briane80d9012007-02-23 16:53:24 -07001700 store_vector4(inst, machine, result);
1701 }
1702 break;
Brian Paul37eef7b2008-11-07 09:33:55 -07001703 case OPCODE_XOR: /* bitwise XOR */
1704 {
1705 GLuint a[4], b[4], result[4];
1706 fetch_vector4ui(&inst->SrcReg[0], machine, a);
1707 fetch_vector4ui(&inst->SrcReg[1], machine, b);
1708 result[0] = a[0] ^ b[0];
1709 result[1] = a[1] ^ b[1];
1710 result[2] = a[2] ^ b[2];
1711 result[3] = a[3] ^ b[3];
1712 store_vector4ui(inst, machine, result);
1713 }
1714 break;
Briane80d9012007-02-23 16:53:24 -07001715 case OPCODE_XPD: /* cross product */
1716 {
1717 GLfloat a[4], b[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001718 fetch_vector4(&inst->SrcReg[0], machine, a);
1719 fetch_vector4(&inst->SrcReg[1], machine, b);
Briane80d9012007-02-23 16:53:24 -07001720 result[0] = a[1] * b[2] - a[2] * b[1];
1721 result[1] = a[2] * b[0] - a[0] * b[2];
1722 result[2] = a[0] * b[1] - a[1] * b[0];
1723 result[3] = 1.0;
1724 store_vector4(inst, machine, result);
Brian9637c962007-03-07 17:40:57 -07001725 if (DEBUG_PROG) {
1726 printf("XPD (%g %g %g %g) = (%g %g %g) X (%g %g %g)\n",
1727 result[0], result[1], result[2], result[3],
1728 a[0], a[1], a[2], b[0], b[1], b[2]);
1729 }
Briane80d9012007-02-23 16:53:24 -07001730 }
1731 break;
1732 case OPCODE_X2D: /* 2-D matrix transform */
1733 {
1734 GLfloat a[4], b[4], c[4], result[4];
Brian33eac562007-02-25 18:52:41 -07001735 fetch_vector4(&inst->SrcReg[0], machine, a);
1736 fetch_vector4(&inst->SrcReg[1], machine, b);
1737 fetch_vector4(&inst->SrcReg[2], machine, c);
Briane80d9012007-02-23 16:53:24 -07001738 result[0] = a[0] + b[0] * c[0] + b[1] * c[1];
1739 result[1] = a[1] + b[0] * c[2] + b[1] * c[3];
1740 result[2] = a[2] + b[0] * c[0] + b[1] * c[1];
1741 result[3] = a[3] + b[0] * c[2] + b[1] * c[3];
1742 store_vector4(inst, machine, result);
1743 }
1744 break;
1745 case OPCODE_PRINT:
1746 {
1747 if (inst->SrcReg[0].File != -1) {
1748 GLfloat a[4];
Brian33eac562007-02-25 18:52:41 -07001749 fetch_vector4(&inst->SrcReg[0], machine, a);
Briane80d9012007-02-23 16:53:24 -07001750 _mesa_printf("%s%g, %g, %g, %g\n", (const char *) inst->Data,
1751 a[0], a[1], a[2], a[3]);
1752 }
1753 else {
1754 _mesa_printf("%s\n", (const char *) inst->Data);
1755 }
1756 }
1757 break;
1758 case OPCODE_END:
1759 return GL_TRUE;
1760 default:
Alan Hourihane936dba12008-04-22 20:28:35 +01001761 _mesa_problem(ctx, "Bad opcode %d in _mesa_execute_program",
Briane80d9012007-02-23 16:53:24 -07001762 inst->Opcode);
1763 return GL_TRUE; /* return value doesn't matter */
Brian13e3b212007-02-22 16:09:40 -07001764 }
Briane80d9012007-02-23 16:53:24 -07001765
Briancfd00112007-02-25 18:30:45 -07001766 numExec++;
1767 if (numExec > maxExec) {
Brian13e3b212007-02-22 16:09:40 -07001768 _mesa_problem(ctx, "Infinite loop detected in fragment program");
1769 return GL_TRUE;
Brian13e3b212007-02-22 16:09:40 -07001770 }
Briane80d9012007-02-23 16:53:24 -07001771
1772 } /* for pc */
Brian13e3b212007-02-22 16:09:40 -07001773
Brian13e3b212007-02-22 16:09:40 -07001774 return GL_TRUE;
1775}