blob: b8e5e4bd8aef67d56b6dfeb34c329fc04d9bb6a8 [file] [log] [blame]
Jouk Jansen40322e12004-04-05 08:50:36 +00001/*
2 * Mesa 3-D graphics library
Brian Paula7543902006-08-24 21:58:32 +00003 * Version: 6.5.1
Jouk Jansen40322e12004-04-05 08:50:36 +00004 *
Michal Krolbb38cad2006-04-11 11:41:11 +00005 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
Jouk Jansen40322e12004-04-05 08:50:36 +00006 *
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#define DEBUG_PARSING 0
26
27/**
28 * \file arbprogparse.c
29 * ARB_*_program parser core
30 * \author Karl Rasche
31 */
32
Jouk Jansen40322e12004-04-05 08:50:36 +000033#include "glheader.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000034#include "imports.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000035#include "arbprogparse.h"
36#include "grammar_mesa.h"
Brian Paul32df89e2005-10-29 18:26:43 +000037#include "program.h"
Brian Paul8c41a142005-11-19 15:36:28 +000038#include "context.h"
Brian Paul6211a142006-08-24 23:37:13 +000039#include "macros.h"
Brian Paul8c41a142005-11-19 15:36:28 +000040#include "mtypes.h"
41#include "program_instruction.h"
42
43
Brian Paul6211a142006-08-24 23:37:13 +000044/* For ARB programs, use the NV instruction limits */
45#define MAX_INSTRUCTIONS MAX2(MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS, \
46 MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS)
Brian Paul8c41a142005-11-19 15:36:28 +000047
48
49/**
50 * This is basically a union of the vertex_program and fragment_program
51 * structs that we can use to parse the program into
52 *
53 * XXX we can probably get rid of this entirely someday.
54 */
55struct arb_program
56{
Brian Paul122629f2006-07-20 16:49:57 +000057 struct gl_program Base;
Brian Paul8c41a142005-11-19 15:36:28 +000058
59 GLuint Position; /* Just used for error reporting while parsing */
60 GLuint MajorVersion;
61 GLuint MinorVersion;
62
63 /* ARB_vertex_progmra options */
64 GLboolean HintPositionInvariant;
65
66 /* ARB_fragment_progmra options */
67 GLenum PrecisionOption; /* GL_DONT_CARE, GL_NICEST or GL_FASTEST */
68 GLenum FogOption; /* GL_NONE, GL_LINEAR, GL_EXP or GL_EXP2 */
69
70 /* ARB_fragment_program specifics */
71 GLbitfield TexturesUsed[MAX_TEXTURE_IMAGE_UNITS];
72 GLuint NumAluInstructions;
73 GLuint NumTexInstructions;
74 GLuint NumTexIndirections;
75
76 GLboolean UsesKill;
77};
78
Ian Romanick9bdfee32005-07-18 12:31:24 +000079
Alan Hourihane38b317d2004-12-14 09:11:52 +000080#ifndef __extension__
81#if !defined(__GNUC__) || (__GNUC__ < 2) || \
82 ((__GNUC__ == 2) && (__GNUC_MINOR__ <= 7))
Brian Paula6c423d2004-08-25 15:59:48 +000083# define __extension__
84#endif
Alan Hourihane38b317d2004-12-14 09:11:52 +000085#endif
Brian Paula6c423d2004-08-25 15:59:48 +000086
Jouk Jansen40322e12004-04-05 08:50:36 +000087/* TODO:
88 * Fragment Program Stuff:
89 * -----------------------------------------------------
90 *
91 * - things from Michal's email
92 * + overflow on atoi
93 * + not-overflowing floats (don't use parse_integer..)
94 * + can remove range checking in arbparse.c
95 *
96 * - check all limits of number of various variables
97 * + parameters
98 *
99 * - test! test! test!
100 *
101 * Vertex Program Stuff:
102 * -----------------------------------------------------
103 * - Optimize param array usage and count limits correctly, see spec,
104 * section 2.14.3.7
105 * + Record if an array is reference absolutly or relatively (or both)
106 * + For absolute arrays, store a bitmap of accesses
107 * + For single parameters, store an access flag
108 * + After parsing, make a parameter cleanup and merging pass, where
109 * relative arrays are layed out first, followed by abs arrays, and
110 * finally single state.
111 * + Remap offsets for param src and dst registers
112 * + Now we can properly count parameter usage
113 *
114 * - Multiple state binding errors in param arrays (see spec, just before
115 * section 2.14.3.3)
116 * - grep for XXX
117 *
118 * Mesa Stuff
119 * -----------------------------------------------------
120 * - User clipping planes vs. PositionInvariant
121 * - Is it sufficient to just multiply by the mvp to transform in the
122 * PositionInvariant case? Or do we need something more involved?
123 *
124 * - vp_src swizzle is GLubyte, fp_src swizzle is GLuint
125 * - fetch state listed in program_parameters list
126 * + WTF should this go???
127 * + currently in nvvertexec.c and s_nvfragprog.c
128 *
129 * - allow for multiple address registers (and fetch address regs properly)
130 *
131 * Cosmetic Stuff
132 * -----------------------------------------------------
133 * - remove any leftover unused grammer.c stuff (dict_ ?)
134 * - fix grammer.c error handling so its not static
135 * - #ifdef around stuff pertaining to extentions
136 *
137 * Outstanding Questions:
138 * -----------------------------------------------------
139 * - ARB_matrix_palette / ARB_vertex_blend -- not supported
140 * what gets hacked off because of this:
141 * + VERTEX_ATTRIB_MATRIXINDEX
142 * + VERTEX_ATTRIB_WEIGHT
143 * + MATRIX_MODELVIEW
144 * + MATRIX_PALETTE
145 *
146 * - When can we fetch env/local params from their own register files, and
147 * when to we have to fetch them into the main state register file?
148 * (think arrays)
149 *
150 * Grammar Changes:
151 * -----------------------------------------------------
152 */
153
154/* Changes since moving the file to shader directory
155
1562004-III-4 ------------------------------------------------------------
157- added #include "grammar_mesa.h"
158- removed grammar specific code part (it resides now in grammar.c)
159- added GL_ARB_fragment_program_shadow tokens
160- modified #include "arbparse_syn.h"
161- major changes inside _mesa_parse_arb_program()
162- check the program string for '\0' characters
163- copy the program string to a one-byte-longer location to have
164 it null-terminated
165- position invariance test (not writing to result.position) moved
166 to syntax part
167*/
168
169typedef GLubyte *production;
170
171/**
172 * This is the text describing the rules to parse the grammar
173 */
Brian Paula6c423d2004-08-25 15:59:48 +0000174__extension__ static char arb_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +0000175#include "arbprogram_syn.h"
176;
177
178/**
179 * These should match up with the values defined in arbprogram.syn
180 */
181
182/*
183 Changes:
184 - changed and merged V_* and F_* opcode values to OP_*.
185 - added GL_ARB_fragment_program_shadow specific tokens (michal)
186*/
Michal Krolb80bc052004-10-21 14:09:54 +0000187#define REVISION 0x09
Jouk Jansen40322e12004-04-05 08:50:36 +0000188
189/* program type */
190#define FRAGMENT_PROGRAM 0x01
191#define VERTEX_PROGRAM 0x02
192
193/* program section */
194#define OPTION 0x01
195#define INSTRUCTION 0x02
196#define DECLARATION 0x03
197#define END 0x04
198
Michal Krolb80bc052004-10-21 14:09:54 +0000199/* GL_ARB_fragment_program option */
200#define ARB_PRECISION_HINT_FASTEST 0x00
201#define ARB_PRECISION_HINT_NICEST 0x01
202#define ARB_FOG_EXP 0x02
203#define ARB_FOG_EXP2 0x03
204#define ARB_FOG_LINEAR 0x04
Jouk Jansen40322e12004-04-05 08:50:36 +0000205
Michal Krolb80bc052004-10-21 14:09:54 +0000206/* GL_ARB_vertex_program option */
207#define ARB_POSITION_INVARIANT 0x05
Jouk Jansen40322e12004-04-05 08:50:36 +0000208
Michal Krolb80bc052004-10-21 14:09:54 +0000209/* GL_ARB_fragment_program_shadow option */
210#define ARB_FRAGMENT_PROGRAM_SHADOW 0x06
Jouk Jansen40322e12004-04-05 08:50:36 +0000211
Michal Krolb80bc052004-10-21 14:09:54 +0000212/* GL_ARB_draw_buffers option */
213#define ARB_DRAW_BUFFERS 0x07
Michal Krolad22ce82004-10-11 08:13:25 +0000214
Jouk Jansen40322e12004-04-05 08:50:36 +0000215/* GL_ARB_fragment_program instruction class */
216#define OP_ALU_INST 0x00
217#define OP_TEX_INST 0x01
218
219/* GL_ARB_vertex_program instruction class */
220/* OP_ALU_INST */
221
222/* GL_ARB_fragment_program instruction type */
223#define OP_ALU_VECTOR 0x00
224#define OP_ALU_SCALAR 0x01
225#define OP_ALU_BINSC 0x02
226#define OP_ALU_BIN 0x03
227#define OP_ALU_TRI 0x04
228#define OP_ALU_SWZ 0x05
229#define OP_TEX_SAMPLE 0x06
230#define OP_TEX_KIL 0x07
231
232/* GL_ARB_vertex_program instruction type */
233#define OP_ALU_ARL 0x08
234/* OP_ALU_VECTOR */
235/* OP_ALU_SCALAR */
236/* OP_ALU_BINSC */
237/* OP_ALU_BIN */
238/* OP_ALU_TRI */
239/* OP_ALU_SWZ */
240
241/* GL_ARB_fragment_program instruction code */
242#define OP_ABS 0x00
243#define OP_ABS_SAT 0x1B
244#define OP_FLR 0x09
245#define OP_FLR_SAT 0x26
246#define OP_FRC 0x0A
247#define OP_FRC_SAT 0x27
248#define OP_LIT 0x0C
249#define OP_LIT_SAT 0x2A
250#define OP_MOV 0x11
251#define OP_MOV_SAT 0x30
252#define OP_COS 0x1F
253#define OP_COS_SAT 0x20
254#define OP_EX2 0x07
255#define OP_EX2_SAT 0x25
256#define OP_LG2 0x0B
257#define OP_LG2_SAT 0x29
258#define OP_RCP 0x14
259#define OP_RCP_SAT 0x33
260#define OP_RSQ 0x15
261#define OP_RSQ_SAT 0x34
262#define OP_SIN 0x38
263#define OP_SIN_SAT 0x39
264#define OP_SCS 0x35
265#define OP_SCS_SAT 0x36
266#define OP_POW 0x13
267#define OP_POW_SAT 0x32
268#define OP_ADD 0x01
269#define OP_ADD_SAT 0x1C
270#define OP_DP3 0x03
271#define OP_DP3_SAT 0x21
272#define OP_DP4 0x04
273#define OP_DP4_SAT 0x22
274#define OP_DPH 0x05
275#define OP_DPH_SAT 0x23
276#define OP_DST 0x06
277#define OP_DST_SAT 0x24
278#define OP_MAX 0x0F
279#define OP_MAX_SAT 0x2E
280#define OP_MIN 0x10
281#define OP_MIN_SAT 0x2F
282#define OP_MUL 0x12
283#define OP_MUL_SAT 0x31
284#define OP_SGE 0x16
285#define OP_SGE_SAT 0x37
286#define OP_SLT 0x17
287#define OP_SLT_SAT 0x3A
288#define OP_SUB 0x18
289#define OP_SUB_SAT 0x3B
290#define OP_XPD 0x1A
291#define OP_XPD_SAT 0x43
292#define OP_CMP 0x1D
293#define OP_CMP_SAT 0x1E
294#define OP_LRP 0x2B
295#define OP_LRP_SAT 0x2C
296#define OP_MAD 0x0E
297#define OP_MAD_SAT 0x2D
298#define OP_SWZ 0x19
299#define OP_SWZ_SAT 0x3C
300#define OP_TEX 0x3D
301#define OP_TEX_SAT 0x3E
302#define OP_TXB 0x3F
303#define OP_TXB_SAT 0x40
304#define OP_TXP 0x41
305#define OP_TXP_SAT 0x42
306#define OP_KIL 0x28
307
308/* GL_ARB_vertex_program instruction code */
309#define OP_ARL 0x02
310/* OP_ABS */
311/* OP_FLR */
312/* OP_FRC */
313/* OP_LIT */
314/* OP_MOV */
315/* OP_EX2 */
316#define OP_EXP 0x08
317/* OP_LG2 */
318#define OP_LOG 0x0D
319/* OP_RCP */
320/* OP_RSQ */
321/* OP_POW */
322/* OP_ADD */
323/* OP_DP3 */
324/* OP_DP4 */
325/* OP_DPH */
326/* OP_DST */
327/* OP_MAX */
328/* OP_MIN */
329/* OP_MUL */
330/* OP_SGE */
331/* OP_SLT */
332/* OP_SUB */
333/* OP_XPD */
334/* OP_MAD */
335/* OP_SWZ */
336
337/* fragment attribute binding */
338#define FRAGMENT_ATTRIB_COLOR 0x01
339#define FRAGMENT_ATTRIB_TEXCOORD 0x02
340#define FRAGMENT_ATTRIB_FOGCOORD 0x03
341#define FRAGMENT_ATTRIB_POSITION 0x04
342
343/* vertex attribute binding */
344#define VERTEX_ATTRIB_POSITION 0x01
345#define VERTEX_ATTRIB_WEIGHT 0x02
346#define VERTEX_ATTRIB_NORMAL 0x03
347#define VERTEX_ATTRIB_COLOR 0x04
348#define VERTEX_ATTRIB_FOGCOORD 0x05
349#define VERTEX_ATTRIB_TEXCOORD 0x06
350#define VERTEX_ATTRIB_MATRIXINDEX 0x07
351#define VERTEX_ATTRIB_GENERIC 0x08
352
353/* fragment result binding */
354#define FRAGMENT_RESULT_COLOR 0x01
355#define FRAGMENT_RESULT_DEPTH 0x02
356
357/* vertex result binding */
358#define VERTEX_RESULT_POSITION 0x01
359#define VERTEX_RESULT_COLOR 0x02
360#define VERTEX_RESULT_FOGCOORD 0x03
361#define VERTEX_RESULT_POINTSIZE 0x04
362#define VERTEX_RESULT_TEXCOORD 0x05
363
364/* texture target */
365#define TEXTARGET_1D 0x01
366#define TEXTARGET_2D 0x02
367#define TEXTARGET_3D 0x03
368#define TEXTARGET_RECT 0x04
369#define TEXTARGET_CUBE 0x05
370/* GL_ARB_fragment_program_shadow */
371#define TEXTARGET_SHADOW1D 0x06
372#define TEXTARGET_SHADOW2D 0x07
373#define TEXTARGET_SHADOWRECT 0x08
374
375/* face type */
376#define FACE_FRONT 0x00
377#define FACE_BACK 0x01
378
379/* color type */
380#define COLOR_PRIMARY 0x00
381#define COLOR_SECONDARY 0x01
382
383/* component */
384#define COMPONENT_X 0x00
385#define COMPONENT_Y 0x01
386#define COMPONENT_Z 0x02
387#define COMPONENT_W 0x03
388#define COMPONENT_0 0x04
389#define COMPONENT_1 0x05
390
391/* array index type */
392#define ARRAY_INDEX_ABSOLUTE 0x00
393#define ARRAY_INDEX_RELATIVE 0x01
394
395/* matrix name */
396#define MATRIX_MODELVIEW 0x01
397#define MATRIX_PROJECTION 0x02
398#define MATRIX_MVP 0x03
399#define MATRIX_TEXTURE 0x04
400#define MATRIX_PALETTE 0x05
401#define MATRIX_PROGRAM 0x06
402
403/* matrix modifier */
404#define MATRIX_MODIFIER_IDENTITY 0x00
405#define MATRIX_MODIFIER_INVERSE 0x01
406#define MATRIX_MODIFIER_TRANSPOSE 0x02
407#define MATRIX_MODIFIER_INVTRANS 0x03
408
409/* constant type */
410#define CONSTANT_SCALAR 0x01
411#define CONSTANT_VECTOR 0x02
412
413/* program param type */
414#define PROGRAM_PARAM_ENV 0x01
415#define PROGRAM_PARAM_LOCAL 0x02
416
417/* register type */
418#define REGISTER_ATTRIB 0x01
419#define REGISTER_PARAM 0x02
420#define REGISTER_RESULT 0x03
421#define REGISTER_ESTABLISHED_NAME 0x04
422
423/* param binding */
424#define PARAM_NULL 0x00
425#define PARAM_ARRAY_ELEMENT 0x01
426#define PARAM_STATE_ELEMENT 0x02
427#define PARAM_PROGRAM_ELEMENT 0x03
428#define PARAM_PROGRAM_ELEMENTS 0x04
429#define PARAM_CONSTANT 0x05
430
431/* param state property */
432#define STATE_MATERIAL_PARSER 0x01
433#define STATE_LIGHT_PARSER 0x02
434#define STATE_LIGHT_MODEL 0x03
435#define STATE_LIGHT_PROD 0x04
436#define STATE_FOG 0x05
437#define STATE_MATRIX_ROWS 0x06
438/* GL_ARB_fragment_program */
439#define STATE_TEX_ENV 0x07
440#define STATE_DEPTH 0x08
441/* GL_ARB_vertex_program */
442#define STATE_TEX_GEN 0x09
443#define STATE_CLIP_PLANE 0x0A
444#define STATE_POINT 0x0B
445
446/* state material property */
447#define MATERIAL_AMBIENT 0x01
448#define MATERIAL_DIFFUSE 0x02
449#define MATERIAL_SPECULAR 0x03
450#define MATERIAL_EMISSION 0x04
451#define MATERIAL_SHININESS 0x05
452
453/* state light property */
454#define LIGHT_AMBIENT 0x01
455#define LIGHT_DIFFUSE 0x02
456#define LIGHT_SPECULAR 0x03
457#define LIGHT_POSITION 0x04
458#define LIGHT_ATTENUATION 0x05
459#define LIGHT_HALF 0x06
460#define LIGHT_SPOT_DIRECTION 0x07
461
462/* state light model property */
463#define LIGHT_MODEL_AMBIENT 0x01
464#define LIGHT_MODEL_SCENECOLOR 0x02
465
466/* state light product property */
467#define LIGHT_PROD_AMBIENT 0x01
468#define LIGHT_PROD_DIFFUSE 0x02
469#define LIGHT_PROD_SPECULAR 0x03
470
471/* state texture environment property */
472#define TEX_ENV_COLOR 0x01
473
474/* state texture generation coord property */
475#define TEX_GEN_EYE 0x01
476#define TEX_GEN_OBJECT 0x02
477
478/* state fog property */
479#define FOG_COLOR 0x01
480#define FOG_PARAMS 0x02
481
482/* state depth property */
483#define DEPTH_RANGE 0x01
484
485/* state point parameters property */
486#define POINT_SIZE 0x01
487#define POINT_ATTENUATION 0x02
488
489/* declaration */
490#define ATTRIB 0x01
491#define PARAM 0x02
492#define TEMP 0x03
493#define OUTPUT 0x04
494#define ALIAS 0x05
495/* GL_ARB_vertex_program */
496#define ADDRESS 0x06
497
498/*-----------------------------------------------------------------------
499 * From here on down is the semantic checking portion
500 *
501 */
502
503/**
504 * Variable Table Handling functions
505 */
506typedef enum
507{
508 vt_none,
509 vt_address,
510 vt_attrib,
511 vt_param,
512 vt_temp,
513 vt_output,
514 vt_alias
515} var_type;
516
517
Brian Paul7aebaf32005-10-30 21:23:23 +0000518/**
519 * Setting an explicit field for each of the binding properties is a bit
520 * wasteful of space, but it should be much more clear when reading later on..
Jouk Jansen40322e12004-04-05 08:50:36 +0000521 */
522struct var_cache
523{
Brian Paul6a769d92006-04-28 15:42:15 +0000524 const GLubyte *name; /* don't free() - no need */
Jouk Jansen40322e12004-04-05 08:50:36 +0000525 var_type type;
526 GLuint address_binding; /* The index of the address register we should
527 * be using */
528 GLuint attrib_binding; /* For type vt_attrib, see nvfragprog.h for values */
Jouk Jansen40322e12004-04-05 08:50:36 +0000529 GLuint attrib_is_generic; /* If the attrib was specified through a generic
530 * vertex attrib */
531 GLuint temp_binding; /* The index of the temp register we are to use */
Brian Paul7aebaf32005-10-30 21:23:23 +0000532 GLuint output_binding; /* Output/result register number */
Jouk Jansen40322e12004-04-05 08:50:36 +0000533 struct var_cache *alias_binding; /* For type vt_alias, points to the var_cache entry
534 * that this is aliased to */
535 GLuint param_binding_type; /* {PROGRAM_STATE_VAR, PROGRAM_LOCAL_PARAM,
536 * PROGRAM_ENV_PARAM} */
537 GLuint param_binding_begin; /* This is the offset into the program_parameter_list where
538 * the tokens representing our bound state (or constants)
539 * start */
540 GLuint param_binding_length; /* This is how many entries in the the program_parameter_list
541 * we take up with our state tokens or constants. Note that
542 * this is _not_ the same as the number of param registers
543 * we eventually use */
544 struct var_cache *next;
545};
546
547static GLvoid
548var_cache_create (struct var_cache **va)
549{
550 *va = (struct var_cache *) _mesa_malloc (sizeof (struct var_cache));
551 if (*va) {
552 (**va).name = NULL;
553 (**va).type = vt_none;
554 (**va).attrib_binding = ~0;
555 (**va).attrib_is_generic = 0;
556 (**va).temp_binding = ~0;
557 (**va).output_binding = ~0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000558 (**va).param_binding_type = ~0;
559 (**va).param_binding_begin = ~0;
560 (**va).param_binding_length = ~0;
561 (**va).alias_binding = NULL;
562 (**va).next = NULL;
563 }
564}
565
566static GLvoid
567var_cache_destroy (struct var_cache **va)
568{
569 if (*va) {
570 var_cache_destroy (&(**va).next);
571 _mesa_free (*va);
572 *va = NULL;
573 }
574}
575
576static GLvoid
577var_cache_append (struct var_cache **va, struct var_cache *nv)
578{
579 if (*va)
580 var_cache_append (&(**va).next, nv);
581 else
582 *va = nv;
583}
584
585static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000586var_cache_find (struct var_cache *va, const GLubyte * name)
Jouk Jansen40322e12004-04-05 08:50:36 +0000587{
Brian Paul0a360cf2005-01-17 01:21:03 +0000588 /*struct var_cache *first = va;*/
Jouk Jansen40322e12004-04-05 08:50:36 +0000589
590 while (va) {
Brian Paulaa206952005-09-16 18:14:24 +0000591 if (!_mesa_strcmp ( (const char*) name, (const char*) va->name)) {
Jouk Jansen40322e12004-04-05 08:50:36 +0000592 if (va->type == vt_alias)
Michal Krol43343912005-01-11 15:47:16 +0000593 return va->alias_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +0000594 return va;
595 }
596
597 va = va->next;
598 }
599
600 return NULL;
601}
602
Brian Paula088f162006-09-05 23:08:51 +0000603
604
605/**
606 * Called when an error is detected while parsing/compiling a program.
607 * Sets the ctx->Program.ErrorString field to descript and records a
608 * GL_INVALID_OPERATION error.
609 * \param position position of error in program string
610 * \param descrip verbose error description
611 */
612static void
613program_error(GLcontext *ctx, GLint position, const char *descrip)
614{
615 if (descrip) {
616 const char *prefix = "glProgramString(", *suffix = ")";
617 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
618 _mesa_strlen(prefix) +
619 _mesa_strlen(suffix) + 1);
620 if (str) {
621 _mesa_sprintf(str, "%s%s%s", prefix, descrip, suffix);
622 _mesa_error(ctx, GL_INVALID_OPERATION, str);
623 _mesa_free(str);
624 }
625 }
626 _mesa_set_program_error(ctx, position, descrip);
627}
628
629
630
Jouk Jansen40322e12004-04-05 08:50:36 +0000631/**
632 * constructs an integer from 4 GLubytes in LE format
633 */
634static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000635parse_position (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000636{
637 GLuint value;
638
639 value = (GLuint) (*(*inst)++);
640 value += (GLuint) (*(*inst)++) * 0x100;
641 value += (GLuint) (*(*inst)++) * 0x10000;
642 value += (GLuint) (*(*inst)++) * 0x1000000;
643
644 return value;
645}
646
647/**
648 * This will, given a string, lookup the string as a variable name in the
649 * var cache. If the name is found, the var cache node corresponding to the
650 * var name is returned. If it is not found, a new entry is allocated
651 *
652 * \param I Points into the binary array where the string identifier begins
653 * \param found 1 if the string was found in the var_cache, 0 if it was allocated
654 * \return The location on the var_cache corresponding the the string starting at I
655 */
656static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000657parse_string (const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +0000658 struct arb_program *Program, GLuint * found)
659{
Brian Paula088f162006-09-05 23:08:51 +0000660 const GLubyte *i = *inst;
Jouk Jansen40322e12004-04-05 08:50:36 +0000661 struct var_cache *va = NULL;
Brian Paula6c423d2004-08-25 15:59:48 +0000662 (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000663
664 *inst += _mesa_strlen ((char *) i) + 1;
665
666 va = var_cache_find (*vc_head, i);
667
668 if (va) {
669 *found = 1;
670 return va;
671 }
672
673 *found = 0;
674 var_cache_create (&va);
Brian Paul6a769d92006-04-28 15:42:15 +0000675 va->name = (const GLubyte *) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000676
677 var_cache_append (vc_head, va);
678
679 return va;
680}
681
682static char *
Brian Paula088f162006-09-05 23:08:51 +0000683parse_string_without_adding (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000684{
Brian Paula088f162006-09-05 23:08:51 +0000685 const GLubyte *i = *inst;
Brian Paula6c423d2004-08-25 15:59:48 +0000686 (void) Program;
687
Jouk Jansen40322e12004-04-05 08:50:36 +0000688 *inst += _mesa_strlen ((char *) i) + 1;
689
690 return (char *) i;
691}
692
693/**
Brian Paul05908952004-06-08 15:20:23 +0000694 * \return -1 if we parse '-', return 1 otherwise
Jouk Jansen40322e12004-04-05 08:50:36 +0000695 */
Brian Paul05908952004-06-08 15:20:23 +0000696static GLint
Brian Paula088f162006-09-05 23:08:51 +0000697parse_sign (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000698{
699 /*return *(*inst)++ != '+'; */
700
701 if (**inst == '-') {
702 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000703 return -1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000704 }
705 else if (**inst == '+') {
706 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000707 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000708 }
709
Brian Paul05908952004-06-08 15:20:23 +0000710 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000711}
712
713/**
714 * parses and returns signed integer
715 */
716static GLint
Brian Paula088f162006-09-05 23:08:51 +0000717parse_integer (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000718{
719 GLint sign;
720 GLint value;
721
722 /* check if *inst points to '+' or '-'
723 * if yes, grab the sign and increment *inst
724 */
725 sign = parse_sign (inst);
726
727 /* now check if *inst points to 0
728 * if yes, increment the *inst and return the default value
729 */
730 if (**inst == 0) {
731 (*inst)++;
732 return 0;
733 }
734
735 /* parse the integer as you normally would do it */
736 value = _mesa_atoi (parse_string_without_adding (inst, Program));
737
738 /* now, after terminating 0 there is a position
739 * to parse it - parse_position()
740 */
741 Program->Position = parse_position (inst);
742
Brian Paul05908952004-06-08 15:20:23 +0000743 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000744}
745
746/**
Brian Paul1ff8f502005-02-16 15:08:29 +0000747 Accumulate this string of digits, and return them as
748 a large integer represented in floating point (for range).
749 If scale is not NULL, also accumulates a power-of-ten
750 integer scale factor that represents the number of digits
751 in the string.
752*/
753static GLdouble
Brian Paula088f162006-09-05 23:08:51 +0000754parse_float_string(const GLubyte ** inst, struct arb_program *Program, GLdouble *scale)
Brian Paul1ff8f502005-02-16 15:08:29 +0000755{
756 GLdouble value = 0.0;
757 GLdouble oscale = 1.0;
758
759 if (**inst == 0) { /* this string of digits is empty-- do nothing */
760 (*inst)++;
761 }
762 else { /* nonempty string-- parse out the digits */
Michal Krol98e35022005-04-14 10:19:19 +0000763 while (**inst >= '0' && **inst <= '9') {
Brian Paul1ff8f502005-02-16 15:08:29 +0000764 GLubyte digit = *((*inst)++);
765 value = value * 10.0 + (GLint) (digit - '0');
766 oscale *= 10.0;
767 }
768 assert(**inst == 0); /* integer string should end with 0 */
769 (*inst)++; /* skip over terminating 0 */
770 Program->Position = parse_position(inst); /* skip position (from integer) */
771 }
772 if (scale)
773 *scale = oscale;
774 return value;
775}
776
777/**
778 Parse an unsigned floating-point number from this stream of tokenized
779 characters. Example floating-point formats supported:
780 12.34
781 12
782 0.34
783 .34
784 12.34e-4
Jouk Jansen40322e12004-04-05 08:50:36 +0000785 */
786static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000787parse_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000788{
Brian Paul1ff8f502005-02-16 15:08:29 +0000789 GLint exponent;
790 GLdouble whole, fraction, fracScale = 1.0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000791
Brian Paul1ff8f502005-02-16 15:08:29 +0000792 whole = parse_float_string(inst, Program, 0);
793 fraction = parse_float_string(inst, Program, &fracScale);
794
795 /* Parse signed exponent */
796 exponent = parse_integer(inst, Program); /* This is the exponent */
Jouk Jansen40322e12004-04-05 08:50:36 +0000797
Brian Paul1ff8f502005-02-16 15:08:29 +0000798 /* Assemble parts of floating-point number: */
799 return (GLfloat) ((whole + fraction / fracScale) *
800 _mesa_pow(10.0, (GLfloat) exponent));
Jouk Jansen40322e12004-04-05 08:50:36 +0000801}
802
803
804/**
805 */
806static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000807parse_signed_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000808{
Brian Paul05908952004-06-08 15:20:23 +0000809 GLint sign = parse_sign (inst);
810 GLfloat value = parse_float (inst, Program);
811 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000812}
813
814/**
815 * This picks out a constant value from the parsed array. The constant vector is r
816 * returned in the *values array, which should be of length 4.
817 *
818 * \param values - The 4 component vector with the constant value in it
819 */
820static GLvoid
Brian Paula088f162006-09-05 23:08:51 +0000821parse_constant (const GLubyte ** inst, GLfloat *values, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000822 GLboolean use)
823{
824 GLuint components, i;
825
826
827 switch (*(*inst)++) {
828 case CONSTANT_SCALAR:
829 if (use == GL_TRUE) {
830 values[0] =
831 values[1] =
832 values[2] = values[3] = parse_float (inst, Program);
833 }
834 else {
835 values[0] =
836 values[1] =
837 values[2] = values[3] = parse_signed_float (inst, Program);
838 }
839
840 break;
841 case CONSTANT_VECTOR:
842 values[0] = values[1] = values[2] = 0;
843 values[3] = 1;
844 components = *(*inst)++;
845 for (i = 0; i < components; i++) {
846 values[i] = parse_signed_float (inst, Program);
847 }
848 break;
849 }
850}
851
852/**
853 * \param offset The offset from the address register that we should
854 * address
855 *
856 * \return 0 on sucess, 1 on error
857 */
858static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000859parse_relative_offset(GLcontext *ctx, const GLubyte **inst,
860 struct arb_program *Program, GLint *offset)
Jouk Jansen40322e12004-04-05 08:50:36 +0000861{
Brian Paul6a769d92006-04-28 15:42:15 +0000862 (void) ctx;
Jouk Jansen40322e12004-04-05 08:50:36 +0000863 *offset = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000864 return 0;
865}
866
867/**
868 * \param color 0 if color type is primary, 1 if color type is secondary
869 * \return 0 on sucess, 1 on error
870 */
871static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000872parse_color_type (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000873 GLint * color)
874{
Brian Paula6c423d2004-08-25 15:59:48 +0000875 (void) ctx; (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000876 *color = *(*inst)++ != COLOR_PRIMARY;
877 return 0;
878}
879
880/**
881 * Get an integer corresponding to a generic vertex attribute.
882 *
883 * \return 0 on sucess, 1 on error
884 */
885static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000886parse_generic_attrib_num(GLcontext *ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000887 struct arb_program *Program, GLuint *attrib)
888{
Brian Paulbd997cd2004-07-20 21:12:56 +0000889 GLint i = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000890
Michal Krolbb38cad2006-04-11 11:41:11 +0000891 if ((i < 0) || (i >= MAX_VERTEX_PROGRAM_ATTRIBS))
Jouk Jansen40322e12004-04-05 08:50:36 +0000892 {
Brian Paula088f162006-09-05 23:08:51 +0000893 program_error(ctx, Program->Position,
894 "Invalid generic vertex attribute index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000895 return 1;
896 }
897
Brian Paulbd997cd2004-07-20 21:12:56 +0000898 *attrib = (GLuint) i;
899
Jouk Jansen40322e12004-04-05 08:50:36 +0000900 return 0;
901}
902
903
904/**
Brian Paulbe76b7f2004-10-04 14:40:05 +0000905 * \param color The index of the color buffer to write into
906 * \return 0 on sucess, 1 on error
907 */
908static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000909parse_output_color_num (GLcontext * ctx, const GLubyte ** inst,
Brian Paulbe76b7f2004-10-04 14:40:05 +0000910 struct arb_program *Program, GLuint * color)
911{
912 GLint i = parse_integer (inst, Program);
913
914 if ((i < 0) || (i >= (int)ctx->Const.MaxDrawBuffers)) {
Brian Paula088f162006-09-05 23:08:51 +0000915 program_error(ctx, Program->Position, "Invalid draw buffer index");
Brian Paulbe76b7f2004-10-04 14:40:05 +0000916 return 1;
917 }
918
919 *color = (GLuint) i;
920 return 0;
921}
922
923
924/**
Jouk Jansen40322e12004-04-05 08:50:36 +0000925 * \param coord The texture unit index
926 * \return 0 on sucess, 1 on error
927 */
928static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000929parse_texcoord_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000930 struct arb_program *Program, GLuint * coord)
931{
Brian Paulbd997cd2004-07-20 21:12:56 +0000932 GLint i = parse_integer (inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000933
Brian Paula6c423d2004-08-25 15:59:48 +0000934 if ((i < 0) || (i >= (int)ctx->Const.MaxTextureUnits)) {
Brian Paula088f162006-09-05 23:08:51 +0000935 program_error(ctx, Program->Position, "Invalid texture unit index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000936 return 1;
937 }
938
Brian Paulbd997cd2004-07-20 21:12:56 +0000939 *coord = (GLuint) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000940 return 0;
941}
942
943/**
944 * \param coord The weight index
945 * \return 0 on sucess, 1 on error
946 */
947static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000948parse_weight_num (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000949 GLint * coord)
950{
951 *coord = parse_integer (inst, Program);
952
953 if ((*coord < 0) || (*coord >= 1)) {
Brian Paula088f162006-09-05 23:08:51 +0000954 program_error(ctx, Program->Position, "Invalid weight index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000955 return 1;
956 }
957
958 return 0;
959}
960
961/**
962 * \param coord The clip plane index
963 * \return 0 on sucess, 1 on error
964 */
965static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000966parse_clipplane_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000967 struct arb_program *Program, GLint * coord)
968{
969 *coord = parse_integer (inst, Program);
970
971 if ((*coord < 0) || (*coord >= (GLint) ctx->Const.MaxClipPlanes)) {
Brian Paula088f162006-09-05 23:08:51 +0000972 program_error(ctx, Program->Position, "Invalid clip plane index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000973 return 1;
974 }
975
976 return 0;
977}
978
979
980/**
981 * \return 0 on front face, 1 on back face
982 */
983static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000984parse_face_type (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000985{
986 switch (*(*inst)++) {
987 case FACE_FRONT:
988 return 0;
989
990 case FACE_BACK:
991 return 1;
992 }
993 return 0;
994}
995
996
997/**
998 * Given a matrix and a modifier token on the binary array, return tokens
999 * that _mesa_fetch_state() [program.c] can understand.
1000 *
1001 * \param matrix - the matrix we are talking about
1002 * \param matrix_idx - the index of the matrix we have (for texture & program matricies)
1003 * \param matrix_modifier - the matrix modifier (trans, inv, etc)
1004 * \return 0 on sucess, 1 on failure
1005 */
1006static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001007parse_matrix (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +00001008 GLint * matrix, GLint * matrix_idx, GLint * matrix_modifier)
1009{
1010 GLubyte mat = *(*inst)++;
1011
1012 *matrix_idx = 0;
1013
1014 switch (mat) {
1015 case MATRIX_MODELVIEW:
1016 *matrix = STATE_MODELVIEW;
1017 *matrix_idx = parse_integer (inst, Program);
1018 if (*matrix_idx > 0) {
Brian Paula088f162006-09-05 23:08:51 +00001019 program_error(ctx, Program->Position,
1020 "ARB_vertex_blend not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001021 return 1;
1022 }
1023 break;
1024
1025 case MATRIX_PROJECTION:
1026 *matrix = STATE_PROJECTION;
1027 break;
1028
1029 case MATRIX_MVP:
1030 *matrix = STATE_MVP;
1031 break;
1032
1033 case MATRIX_TEXTURE:
1034 *matrix = STATE_TEXTURE;
1035 *matrix_idx = parse_integer (inst, Program);
1036 if (*matrix_idx >= (GLint) ctx->Const.MaxTextureUnits) {
Brian Paula088f162006-09-05 23:08:51 +00001037 program_error(ctx, Program->Position, "Invalid Texture Unit");
1038 /* bad *matrix_id */
Jouk Jansen40322e12004-04-05 08:50:36 +00001039 return 1;
1040 }
1041 break;
1042
1043 /* This is not currently supported (ARB_matrix_palette) */
1044 case MATRIX_PALETTE:
1045 *matrix_idx = parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001046 program_error(ctx, Program->Position,
1047 "ARB_matrix_palette not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001048 return 1;
1049 break;
1050
1051 case MATRIX_PROGRAM:
1052 *matrix = STATE_PROGRAM;
1053 *matrix_idx = parse_integer (inst, Program);
1054 if (*matrix_idx >= (GLint) ctx->Const.MaxProgramMatrices) {
Brian Paula088f162006-09-05 23:08:51 +00001055 program_error(ctx, Program->Position, "Invalid Program Matrix");
1056 /* bad *matrix_idx */
Jouk Jansen40322e12004-04-05 08:50:36 +00001057 return 1;
1058 }
1059 break;
1060 }
1061
1062 switch (*(*inst)++) {
1063 case MATRIX_MODIFIER_IDENTITY:
1064 *matrix_modifier = 0;
1065 break;
1066 case MATRIX_MODIFIER_INVERSE:
1067 *matrix_modifier = STATE_MATRIX_INVERSE;
1068 break;
1069 case MATRIX_MODIFIER_TRANSPOSE:
1070 *matrix_modifier = STATE_MATRIX_TRANSPOSE;
1071 break;
1072 case MATRIX_MODIFIER_INVTRANS:
1073 *matrix_modifier = STATE_MATRIX_INVTRANS;
1074 break;
1075 }
1076
1077 return 0;
1078}
1079
1080
1081/**
1082 * This parses a state string (rather, the binary version of it) into
1083 * a 6-token sequence as described in _mesa_fetch_state() [program.c]
1084 *
1085 * \param inst - the start in the binary arry to start working from
1086 * \param state_tokens - the storage for the 6-token state description
1087 * \return - 0 on sucess, 1 on error
1088 */
1089static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001090parse_state_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001091 struct arb_program *Program, GLint * state_tokens)
1092{
1093 switch (*(*inst)++) {
1094 case STATE_MATERIAL_PARSER:
1095 state_tokens[0] = STATE_MATERIAL;
1096 state_tokens[1] = parse_face_type (inst);
1097 switch (*(*inst)++) {
1098 case MATERIAL_AMBIENT:
1099 state_tokens[2] = STATE_AMBIENT;
1100 break;
1101 case MATERIAL_DIFFUSE:
1102 state_tokens[2] = STATE_DIFFUSE;
1103 break;
1104 case MATERIAL_SPECULAR:
1105 state_tokens[2] = STATE_SPECULAR;
1106 break;
1107 case MATERIAL_EMISSION:
1108 state_tokens[2] = STATE_EMISSION;
1109 break;
1110 case MATERIAL_SHININESS:
1111 state_tokens[2] = STATE_SHININESS;
1112 break;
1113 }
1114 break;
1115
1116 case STATE_LIGHT_PARSER:
1117 state_tokens[0] = STATE_LIGHT;
1118 state_tokens[1] = parse_integer (inst, Program);
1119
1120 /* Check the value of state_tokens[1] against the # of lights */
1121 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001122 program_error(ctx, Program->Position, "Invalid Light Number");
1123 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001124 return 1;
1125 }
1126
1127 switch (*(*inst)++) {
1128 case LIGHT_AMBIENT:
1129 state_tokens[2] = STATE_AMBIENT;
1130 break;
1131 case LIGHT_DIFFUSE:
1132 state_tokens[2] = STATE_DIFFUSE;
1133 break;
1134 case LIGHT_SPECULAR:
1135 state_tokens[2] = STATE_SPECULAR;
1136 break;
1137 case LIGHT_POSITION:
1138 state_tokens[2] = STATE_POSITION;
1139 break;
1140 case LIGHT_ATTENUATION:
1141 state_tokens[2] = STATE_ATTENUATION;
1142 break;
1143 case LIGHT_HALF:
1144 state_tokens[2] = STATE_HALF;
1145 break;
1146 case LIGHT_SPOT_DIRECTION:
1147 state_tokens[2] = STATE_SPOT_DIRECTION;
1148 break;
1149 }
1150 break;
1151
1152 case STATE_LIGHT_MODEL:
1153 switch (*(*inst)++) {
1154 case LIGHT_MODEL_AMBIENT:
1155 state_tokens[0] = STATE_LIGHTMODEL_AMBIENT;
1156 break;
1157 case LIGHT_MODEL_SCENECOLOR:
1158 state_tokens[0] = STATE_LIGHTMODEL_SCENECOLOR;
1159 state_tokens[1] = parse_face_type (inst);
1160 break;
1161 }
1162 break;
1163
1164 case STATE_LIGHT_PROD:
1165 state_tokens[0] = STATE_LIGHTPROD;
1166 state_tokens[1] = parse_integer (inst, Program);
1167
1168 /* Check the value of state_tokens[1] against the # of lights */
1169 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001170 program_error(ctx, Program->Position, "Invalid Light Number");
1171 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001172 return 1;
1173 }
1174
1175 state_tokens[2] = parse_face_type (inst);
1176 switch (*(*inst)++) {
1177 case LIGHT_PROD_AMBIENT:
1178 state_tokens[3] = STATE_AMBIENT;
1179 break;
1180 case LIGHT_PROD_DIFFUSE:
1181 state_tokens[3] = STATE_DIFFUSE;
1182 break;
1183 case LIGHT_PROD_SPECULAR:
1184 state_tokens[3] = STATE_SPECULAR;
1185 break;
1186 }
1187 break;
1188
1189
1190 case STATE_FOG:
1191 switch (*(*inst)++) {
1192 case FOG_COLOR:
1193 state_tokens[0] = STATE_FOG_COLOR;
1194 break;
1195 case FOG_PARAMS:
1196 state_tokens[0] = STATE_FOG_PARAMS;
1197 break;
1198 }
1199 break;
1200
1201 case STATE_TEX_ENV:
1202 state_tokens[1] = parse_integer (inst, Program);
1203 switch (*(*inst)++) {
1204 case TEX_ENV_COLOR:
1205 state_tokens[0] = STATE_TEXENV_COLOR;
1206 break;
1207 }
1208 break;
1209
1210 case STATE_TEX_GEN:
1211 {
1212 GLuint type, coord;
1213
1214 state_tokens[0] = STATE_TEXGEN;
1215 /*state_tokens[1] = parse_integer (inst, Program);*/ /* Texture Unit */
1216
1217 if (parse_texcoord_num (ctx, inst, Program, &coord))
1218 return 1;
1219 state_tokens[1] = coord;
1220
1221 /* EYE or OBJECT */
1222 type = *(*inst++);
1223
1224 /* 0 - s, 1 - t, 2 - r, 3 - q */
1225 coord = *(*inst++);
1226
1227 if (type == TEX_GEN_EYE) {
1228 switch (coord) {
1229 case COMPONENT_X:
1230 state_tokens[2] = STATE_TEXGEN_EYE_S;
1231 break;
1232 case COMPONENT_Y:
1233 state_tokens[2] = STATE_TEXGEN_EYE_T;
1234 break;
1235 case COMPONENT_Z:
1236 state_tokens[2] = STATE_TEXGEN_EYE_R;
1237 break;
1238 case COMPONENT_W:
1239 state_tokens[2] = STATE_TEXGEN_EYE_Q;
1240 break;
1241 }
1242 }
1243 else {
1244 switch (coord) {
1245 case COMPONENT_X:
1246 state_tokens[2] = STATE_TEXGEN_OBJECT_S;
1247 break;
1248 case COMPONENT_Y:
1249 state_tokens[2] = STATE_TEXGEN_OBJECT_T;
1250 break;
1251 case COMPONENT_Z:
1252 state_tokens[2] = STATE_TEXGEN_OBJECT_R;
1253 break;
1254 case COMPONENT_W:
1255 state_tokens[2] = STATE_TEXGEN_OBJECT_Q;
1256 break;
1257 }
1258 }
1259 }
1260 break;
1261
1262 case STATE_DEPTH:
1263 switch (*(*inst)++) {
1264 case DEPTH_RANGE:
1265 state_tokens[0] = STATE_DEPTH_RANGE;
1266 break;
1267 }
1268 break;
1269
1270 case STATE_CLIP_PLANE:
1271 state_tokens[0] = STATE_CLIPPLANE;
1272 state_tokens[1] = parse_integer (inst, Program);
1273 if (parse_clipplane_num (ctx, inst, Program, &state_tokens[1]))
1274 return 1;
1275 break;
1276
1277 case STATE_POINT:
1278 switch (*(*inst++)) {
1279 case POINT_SIZE:
1280 state_tokens[0] = STATE_POINT_SIZE;
1281 break;
1282
1283 case POINT_ATTENUATION:
1284 state_tokens[0] = STATE_POINT_ATTENUATION;
1285 break;
1286 }
1287 break;
1288
1289 /* XXX: I think this is the correct format for a matrix row */
1290 case STATE_MATRIX_ROWS:
1291 state_tokens[0] = STATE_MATRIX;
1292 if (parse_matrix
1293 (ctx, inst, Program, &state_tokens[1], &state_tokens[2],
1294 &state_tokens[5]))
1295 return 1;
1296
1297 state_tokens[3] = parse_integer (inst, Program); /* The first row to grab */
1298
1299 if ((**inst) != 0) { /* Either the last row, 0 */
1300 state_tokens[4] = parse_integer (inst, Program);
1301 if (state_tokens[4] < state_tokens[3]) {
Brian Paula088f162006-09-05 23:08:51 +00001302 program_error(ctx, Program->Position,
1303 "Second matrix index less than the first");
1304 /* state_tokens[4] vs. state_tokens[3] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001305 return 1;
1306 }
1307 }
1308 else {
1309 state_tokens[4] = state_tokens[3];
1310 (*inst)++;
1311 }
1312 break;
1313 }
1314
1315 return 0;
1316}
1317
1318/**
1319 * This parses a state string (rather, the binary version of it) into
1320 * a 6-token similar for the state fetching code in program.c
1321 *
1322 * One might ask, why fetch these parameters into just like you fetch
1323 * state when they are already stored in other places?
1324 *
1325 * Because of array offsets -> We can stick env/local parameters in the
1326 * middle of a parameter array and then index someplace into the array
1327 * when we execute.
1328 *
1329 * One optimization might be to only do this for the cases where the
1330 * env/local parameters end up inside of an array, and leave the
1331 * single parameters (or arrays of pure env/local pareameters) in their
1332 * respective register files.
1333 *
1334 * For ENV parameters, the format is:
1335 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1336 * state_tokens[1] = STATE_ENV
1337 * state_tokens[2] = the parameter index
1338 *
1339 * for LOCAL parameters, the format is:
1340 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1341 * state_tokens[1] = STATE_LOCAL
1342 * state_tokens[2] = the parameter index
1343 *
1344 * \param inst - the start in the binary arry to start working from
1345 * \param state_tokens - the storage for the 6-token state description
1346 * \return - 0 on sucess, 1 on failure
1347 */
1348static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001349parse_program_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001350 struct arb_program *Program, GLint * state_tokens)
1351{
1352 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1353 state_tokens[0] = STATE_FRAGMENT_PROGRAM;
1354 else
1355 state_tokens[0] = STATE_VERTEX_PROGRAM;
1356
1357
1358 switch (*(*inst)++) {
1359 case PROGRAM_PARAM_ENV:
1360 state_tokens[1] = STATE_ENV;
1361 state_tokens[2] = parse_integer (inst, Program);
1362
1363 /* Check state_tokens[2] against the number of ENV parameters available */
1364 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001365 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001366 ||
1367 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001368 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxEnvParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001369 program_error(ctx, Program->Position,
1370 "Invalid Program Env Parameter");
1371 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001372 return 1;
1373 }
1374
1375 break;
1376
1377 case PROGRAM_PARAM_LOCAL:
1378 state_tokens[1] = STATE_LOCAL;
1379 state_tokens[2] = parse_integer (inst, Program);
1380
1381 /* Check state_tokens[2] against the number of LOCAL parameters available */
1382 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001383 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001384 ||
1385 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001386 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001387 program_error(ctx, Program->Position,
1388 "Invalid Program Local Parameter");
1389 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001390 return 1;
1391 }
1392 break;
1393 }
1394
1395 return 0;
1396}
1397
1398/**
1399 * For ARB_vertex_program, programs are not allowed to use both an explicit
1400 * vertex attribute and a generic vertex attribute corresponding to the same
1401 * state. See section 2.14.3.1 of the GL_ARB_vertex_program spec.
1402 *
1403 * This will walk our var_cache and make sure that nobody does anything fishy.
1404 *
1405 * \return 0 on sucess, 1 on error
1406 */
1407static GLuint
1408generic_attrib_check(struct var_cache *vc_head)
1409{
1410 int a;
1411 struct var_cache *curr;
1412 GLboolean explicitAttrib[MAX_VERTEX_PROGRAM_ATTRIBS],
1413 genericAttrib[MAX_VERTEX_PROGRAM_ATTRIBS];
1414
1415 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1416 explicitAttrib[a] = GL_FALSE;
1417 genericAttrib[a] = GL_FALSE;
1418 }
1419
1420 curr = vc_head;
1421 while (curr) {
1422 if (curr->type == vt_attrib) {
1423 if (curr->attrib_is_generic)
Brian Paul18e7c5c2005-10-30 21:46:00 +00001424 genericAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001425 else
Brian Paul18e7c5c2005-10-30 21:46:00 +00001426 explicitAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001427 }
1428
1429 curr = curr->next;
1430 }
1431
1432 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1433 if ((explicitAttrib[a]) && (genericAttrib[a]))
1434 return 1;
1435 }
1436
1437 return 0;
1438}
1439
1440/**
1441 * This will handle the binding side of an ATTRIB var declaration
1442 *
Brian Paul18e7c5c2005-10-30 21:46:00 +00001443 * \param inputReg returns the input register index, one of the
1444 * VERT_ATTRIB_* or FRAG_ATTRIB_* values.
Brian Paula088f162006-09-05 23:08:51 +00001445 * \return returns 0 on success, 1 on error
Jouk Jansen40322e12004-04-05 08:50:36 +00001446 */
1447static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001448parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst,
Brian Paul18e7c5c2005-10-30 21:46:00 +00001449 struct arb_program *Program,
1450 GLuint *inputReg, GLuint *is_generic)
Jouk Jansen40322e12004-04-05 08:50:36 +00001451{
Jouk Jansen40322e12004-04-05 08:50:36 +00001452 GLint err = 0;
1453
1454 *is_generic = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001455
Jouk Jansen40322e12004-04-05 08:50:36 +00001456 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1457 switch (*(*inst)++) {
1458 case FRAGMENT_ATTRIB_COLOR:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001459 {
1460 GLint coord;
1461 err = parse_color_type (ctx, inst, Program, &coord);
1462 *inputReg = FRAG_ATTRIB_COL0 + coord;
1463 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001464 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001465 case FRAGMENT_ATTRIB_TEXCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001466 {
1467 GLuint texcoord;
1468 err = parse_texcoord_num (ctx, inst, Program, &texcoord);
1469 *inputReg = FRAG_ATTRIB_TEX0 + texcoord;
1470 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001471 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001472 case FRAGMENT_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001473 *inputReg = FRAG_ATTRIB_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001474 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001475 case FRAGMENT_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001476 *inputReg = FRAG_ATTRIB_WPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001477 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001478 default:
1479 err = 1;
1480 break;
1481 }
1482 }
1483 else {
1484 switch (*(*inst)++) {
1485 case VERTEX_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001486 *inputReg = VERT_ATTRIB_POS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001487 break;
1488
1489 case VERTEX_ATTRIB_WEIGHT:
1490 {
1491 GLint weight;
Jouk Jansen40322e12004-04-05 08:50:36 +00001492 err = parse_weight_num (ctx, inst, Program, &weight);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001493 *inputReg = VERT_ATTRIB_WEIGHT;
Brian Paul3a557502006-09-05 23:15:29 +00001494#if 1
1495 /* hack for Warcraft (see bug 8060) */
1496 _mesa_warning(ctx, "Application error: vertex program uses 'vertex.weight' but GL_ARB_vertex_blend not supported.");
Brian Pauld9aebd82006-09-06 05:03:47 +00001497 break;
Brian Paul3a557502006-09-05 23:15:29 +00001498#else
Brian Paula088f162006-09-05 23:08:51 +00001499 program_error(ctx, Program->Position,
1500 "ARB_vertex_blend not supported");
Brian Pauld9aebd82006-09-06 05:03:47 +00001501 return 1;
Brian Paul3a557502006-09-05 23:15:29 +00001502#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00001503 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001504
1505 case VERTEX_ATTRIB_NORMAL:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001506 *inputReg = VERT_ATTRIB_NORMAL;
Jouk Jansen40322e12004-04-05 08:50:36 +00001507 break;
1508
1509 case VERTEX_ATTRIB_COLOR:
1510 {
1511 GLint color;
Jouk Jansen40322e12004-04-05 08:50:36 +00001512 err = parse_color_type (ctx, inst, Program, &color);
1513 if (color) {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001514 *inputReg = VERT_ATTRIB_COLOR1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001515 }
1516 else {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001517 *inputReg = VERT_ATTRIB_COLOR0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001518 }
1519 }
1520 break;
1521
1522 case VERTEX_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001523 *inputReg = VERT_ATTRIB_FOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00001524 break;
1525
1526 case VERTEX_ATTRIB_TEXCOORD:
1527 {
1528 GLuint unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001529 err = parse_texcoord_num (ctx, inst, Program, &unit);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001530 *inputReg = VERT_ATTRIB_TEX0 + unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001531 }
1532 break;
1533
Jouk Jansen40322e12004-04-05 08:50:36 +00001534 case VERTEX_ATTRIB_MATRIXINDEX:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001535 /* Not supported at this time */
1536 {
1537 const char *msg = "ARB_palette_matrix not supported";
1538 parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001539 program_error(ctx, Program->Position, msg);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001540 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001541 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001542
1543 case VERTEX_ATTRIB_GENERIC:
1544 {
1545 GLuint attrib;
Tilman Sauerbeck6c334752006-06-28 16:26:20 +00001546 err = parse_generic_attrib_num(ctx, inst, Program, &attrib);
Brian Paula088f162006-09-05 23:08:51 +00001547 if (!err) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001548 *is_generic = 1;
Brian Paul095c6692006-04-25 00:21:32 +00001549 /* Add VERT_ATTRIB_GENERIC0 here because ARB_vertex_program's
1550 * attributes do not alias the conventional vertex
1551 * attributes.
1552 */
1553 if (attrib > 0)
1554 *inputReg = attrib + VERT_ATTRIB_GENERIC0;
Brian Paul919f6a02006-05-29 14:37:56 +00001555 else
1556 *inputReg = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001557 }
1558 }
1559 break;
1560
1561 default:
1562 err = 1;
1563 break;
1564 }
1565 }
1566
Jouk Jansen40322e12004-04-05 08:50:36 +00001567 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00001568 program_error(ctx, Program->Position, "Bad attribute binding");
Jouk Jansen40322e12004-04-05 08:50:36 +00001569 }
1570
Brian Paulde997602005-11-12 17:53:14 +00001571 Program->Base.InputsRead |= (1 << *inputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001572
1573 return err;
1574}
1575
Brian Paul7aebaf32005-10-30 21:23:23 +00001576
Jouk Jansen40322e12004-04-05 08:50:36 +00001577/**
1578 * This translates between a binary token for an output variable type
1579 * and the mesa token for the same thing.
1580 *
Brian Paul7aebaf32005-10-30 21:23:23 +00001581 * \param inst The parsed tokens
1582 * \param outputReg Returned index/number of the output register,
Brian Paul90ebb582005-11-02 18:06:12 +00001583 * one of the VERT_RESULT_* or FRAG_RESULT_* values.
Jouk Jansen40322e12004-04-05 08:50:36 +00001584 */
1585static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001586parse_result_binding(GLcontext *ctx, const GLubyte **inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00001587 GLuint *outputReg, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00001588{
Brian Paul7aebaf32005-10-30 21:23:23 +00001589 const GLubyte token = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001590
Brian Paul7aebaf32005-10-30 21:23:23 +00001591 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001592 case FRAGMENT_RESULT_COLOR:
Jouk Jansen40322e12004-04-05 08:50:36 +00001593 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001594 GLuint out_color;
1595
Brian Paulbe76b7f2004-10-04 14:40:05 +00001596 /* This gets result of the color buffer we're supposed to
Brian Paul7aebaf32005-10-30 21:23:23 +00001597 * draw into. This pertains to GL_ARB_draw_buffers.
Brian Paulbe76b7f2004-10-04 14:40:05 +00001598 */
1599 parse_output_color_num(ctx, inst, Program, &out_color);
Brian Paul7aebaf32005-10-30 21:23:23 +00001600 ASSERT(out_color < MAX_DRAW_BUFFERS);
Brian Paul90ebb582005-11-02 18:06:12 +00001601 *outputReg = FRAG_RESULT_COLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001602 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001603 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001604 /* for vtx programs, this is VERTEX_RESULT_POSITION */
1605 *outputReg = VERT_RESULT_HPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001606 }
1607 break;
1608
1609 case FRAGMENT_RESULT_DEPTH:
Jouk Jansen40322e12004-04-05 08:50:36 +00001610 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001611 /* for frag programs, this is FRAGMENT_RESULT_DEPTH */
Brian Paul90ebb582005-11-02 18:06:12 +00001612 *outputReg = FRAG_RESULT_DEPR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001613 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001614 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001615 /* for vtx programs, this is VERTEX_RESULT_COLOR */
Jouk Jansen40322e12004-04-05 08:50:36 +00001616 GLint color_type;
1617 GLuint face_type = parse_face_type(inst);
Brian Paul7aebaf32005-10-30 21:23:23 +00001618 GLint err = parse_color_type(ctx, inst, Program, &color_type);
1619 if (err)
1620 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001621
Jouk Jansen40322e12004-04-05 08:50:36 +00001622 if (face_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001623 /* back face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001624 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001625 *outputReg = VERT_RESULT_BFC1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001626 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001627 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001628 *outputReg = VERT_RESULT_BFC0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001629 }
1630 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001631 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001632 /* front face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001633 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001634 *outputReg = VERT_RESULT_COL1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001635 }
1636 /* primary color */
1637 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001638 *outputReg = VERT_RESULT_COL0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001639 }
1640 }
1641 }
1642 break;
1643
1644 case VERTEX_RESULT_FOGCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001645 *outputReg = VERT_RESULT_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001646 break;
1647
1648 case VERTEX_RESULT_POINTSIZE:
Brian Paul7aebaf32005-10-30 21:23:23 +00001649 *outputReg = VERT_RESULT_PSIZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00001650 break;
1651
1652 case VERTEX_RESULT_TEXCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001653 {
1654 GLuint unit;
1655 if (parse_texcoord_num (ctx, inst, Program, &unit))
1656 return 1;
1657 *outputReg = VERT_RESULT_TEX0 + unit;
1658 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001659 break;
1660 }
1661
Brian Paulde997602005-11-12 17:53:14 +00001662 Program->Base.OutputsWritten |= (1 << *outputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001663
1664 return 0;
1665}
1666
Brian Paul7aebaf32005-10-30 21:23:23 +00001667
Jouk Jansen40322e12004-04-05 08:50:36 +00001668/**
1669 * This handles the declaration of ATTRIB variables
1670 *
1671 * XXX: Still needs
1672 * parse_vert_attrib_binding(), or something like that
1673 *
1674 * \return 0 on sucess, 1 on error
1675 */
1676static GLint
Brian Paula088f162006-09-05 23:08:51 +00001677parse_attrib (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001678 struct arb_program *Program)
1679{
1680 GLuint found;
1681 char *error_msg;
1682 struct var_cache *attrib_var;
1683
1684 attrib_var = parse_string (inst, vc_head, Program, &found);
1685 Program->Position = parse_position (inst);
1686 if (found) {
1687 error_msg = (char *)
1688 _mesa_malloc (_mesa_strlen ((char *) attrib_var->name) + 40);
1689 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1690 attrib_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001691 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001692 _mesa_free (error_msg);
1693 return 1;
1694 }
1695
1696 attrib_var->type = vt_attrib;
1697
Brian Paul7aebaf32005-10-30 21:23:23 +00001698 if (parse_attrib_binding(ctx, inst, Program, &attrib_var->attrib_binding,
Brian Paul7aebaf32005-10-30 21:23:23 +00001699 &attrib_var->attrib_is_generic))
1700 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001701
Brian Paul7aebaf32005-10-30 21:23:23 +00001702 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00001703 program_error(ctx, Program->Position,
1704 "Cannot use both a generic vertex attribute "
1705 "and a specific attribute of the same type");
Brian Paul7aebaf32005-10-30 21:23:23 +00001706 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001707 }
1708
1709 Program->Base.NumAttributes++;
1710 return 0;
1711}
1712
1713/**
1714 * \param use -- TRUE if we're called when declaring implicit parameters,
1715 * FALSE if we're declaraing variables. This has to do with
1716 * if we get a signed or unsigned float for scalar constants
1717 */
1718static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001719parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001720 struct var_cache *param_var,
1721 struct arb_program *Program, GLboolean use)
1722{
1723 GLint idx;
Brian Paul7aebaf32005-10-30 21:23:23 +00001724 GLuint err = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001725 GLint state_tokens[6];
1726 GLfloat const_values[4];
1727
Jouk Jansen40322e12004-04-05 08:50:36 +00001728 switch (*(*inst)++) {
1729 case PARAM_STATE_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001730 if (parse_state_single_item (ctx, inst, Program, state_tokens))
1731 return 1;
1732
1733 /* If we adding STATE_MATRIX that has multiple rows, we need to
1734 * unroll it and call _mesa_add_state_reference() for each row
1735 */
1736 if ((state_tokens[0] == STATE_MATRIX)
1737 && (state_tokens[3] != state_tokens[4])) {
1738 GLint row;
1739 GLint first_row = state_tokens[3];
1740 GLint last_row = state_tokens[4];
1741
1742 for (row = first_row; row <= last_row; row++) {
1743 state_tokens[3] = state_tokens[4] = row;
1744
Brian Paulde997602005-11-12 17:53:14 +00001745 idx = _mesa_add_state_reference(Program->Base.Parameters,
1746 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001747 if (param_var->param_binding_begin == ~0U)
1748 param_var->param_binding_begin = idx;
1749 param_var->param_binding_length++;
1750 Program->Base.NumParameters++;
1751 }
1752 }
1753 else {
Brian Paulde997602005-11-12 17:53:14 +00001754 idx = _mesa_add_state_reference(Program->Base.Parameters,
1755 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001756 if (param_var->param_binding_begin == ~0U)
1757 param_var->param_binding_begin = idx;
1758 param_var->param_binding_length++;
1759 Program->Base.NumParameters++;
1760 }
1761 break;
1762
1763 case PARAM_PROGRAM_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001764 if (parse_program_single_item (ctx, inst, Program, state_tokens))
1765 return 1;
Brian Paulde997602005-11-12 17:53:14 +00001766 idx = _mesa_add_state_reference (Program->Base.Parameters, state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001767 if (param_var->param_binding_begin == ~0U)
1768 param_var->param_binding_begin = idx;
1769 param_var->param_binding_length++;
1770 Program->Base.NumParameters++;
1771
1772 /* Check if there is more: 0 -> we're done, else its an integer */
1773 if (**inst) {
1774 GLuint out_of_range, new_idx;
1775 GLuint start_idx = state_tokens[2] + 1;
1776 GLuint end_idx = parse_integer (inst, Program);
1777
1778 out_of_range = 0;
1779 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1780 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001781 && (end_idx >= ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001782 || ((state_tokens[1] == STATE_LOCAL)
1783 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001784 ctx->Const.FragmentProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001785 out_of_range = 1;
1786 }
1787 else {
1788 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001789 && (end_idx >= ctx->Const.VertexProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001790 || ((state_tokens[1] == STATE_LOCAL)
1791 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001792 ctx->Const.VertexProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001793 out_of_range = 1;
1794 }
1795 if (out_of_range) {
Brian Paula088f162006-09-05 23:08:51 +00001796 program_error(ctx, Program->Position,
1797 "Invalid Program Parameter"); /*end_idx*/
Jouk Jansen40322e12004-04-05 08:50:36 +00001798 return 1;
1799 }
1800
1801 for (new_idx = start_idx; new_idx <= end_idx; new_idx++) {
1802 state_tokens[2] = new_idx;
Brian Paulde997602005-11-12 17:53:14 +00001803 idx = _mesa_add_state_reference(Program->Base.Parameters,
1804 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001805 param_var->param_binding_length++;
1806 Program->Base.NumParameters++;
1807 }
1808 }
Brian Paul7aebaf32005-10-30 21:23:23 +00001809 else {
1810 (*inst)++;
1811 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001812 break;
1813
1814 case PARAM_CONSTANT:
1815 parse_constant (inst, const_values, Program, use);
Brian Paulde997602005-11-12 17:53:14 +00001816 idx = _mesa_add_named_constant(Program->Base.Parameters,
1817 (char *) param_var->name,
1818 const_values);
Jouk Jansen40322e12004-04-05 08:50:36 +00001819 if (param_var->param_binding_begin == ~0U)
1820 param_var->param_binding_begin = idx;
1821 param_var->param_binding_length++;
1822 Program->Base.NumParameters++;
1823 break;
1824
1825 default:
Brian Paula088f162006-09-05 23:08:51 +00001826 program_error(ctx, Program->Position,
1827 "Unexpected token (in parse_param_elements())");
Jouk Jansen40322e12004-04-05 08:50:36 +00001828 return 1;
1829 }
1830
1831 /* Make sure we haven't blown past our parameter limits */
1832 if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
1833 (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001834 ctx->Const.VertexProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001835 || ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1836 && (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001837 ctx->Const.FragmentProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001838 program_error(ctx, Program->Position, "Too many parameter variables");
Jouk Jansen40322e12004-04-05 08:50:36 +00001839 return 1;
1840 }
1841
1842 return err;
1843}
1844
Brian Paul7aebaf32005-10-30 21:23:23 +00001845
Jouk Jansen40322e12004-04-05 08:50:36 +00001846/**
1847 * This picks out PARAM program parameter bindings.
1848 *
1849 * XXX: This needs to be stressed & tested
1850 *
1851 * \return 0 on sucess, 1 on error
1852 */
1853static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001854parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001855 struct arb_program *Program)
1856{
Brian Paulbd997cd2004-07-20 21:12:56 +00001857 GLuint found, err;
1858 GLint specified_length;
Jouk Jansen40322e12004-04-05 08:50:36 +00001859 struct var_cache *param_var;
1860
1861 err = 0;
1862 param_var = parse_string (inst, vc_head, Program, &found);
1863 Program->Position = parse_position (inst);
1864
1865 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001866 char *error_msg = (char *)
1867 _mesa_malloc (_mesa_strlen ((char *) param_var->name) + 40);
Jouk Jansen40322e12004-04-05 08:50:36 +00001868 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1869 param_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001870 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001871 _mesa_free (error_msg);
1872 return 1;
1873 }
1874
1875 specified_length = parse_integer (inst, Program);
1876
1877 if (specified_length < 0) {
Brian Paula088f162006-09-05 23:08:51 +00001878 program_error(ctx, Program->Position, "Negative parameter array length");
Jouk Jansen40322e12004-04-05 08:50:36 +00001879 return 1;
1880 }
1881
1882 param_var->type = vt_param;
1883 param_var->param_binding_length = 0;
1884
1885 /* Right now, everything is shoved into the main state register file.
1886 *
1887 * In the future, it would be nice to leave things ENV/LOCAL params
1888 * in their respective register files, if possible
1889 */
1890 param_var->param_binding_type = PROGRAM_STATE_VAR;
1891
1892 /* Remember to:
1893 * * - add each guy to the parameter list
1894 * * - increment the param_var->param_binding_len
1895 * * - store the param_var->param_binding_begin for the first one
1896 * * - compare the actual len to the specified len at the end
1897 */
1898 while (**inst != PARAM_NULL) {
1899 if (parse_param_elements (ctx, inst, param_var, Program, GL_FALSE))
1900 return 1;
1901 }
1902
1903 /* Test array length here! */
1904 if (specified_length) {
Brian Paula6c423d2004-08-25 15:59:48 +00001905 if (specified_length != (int)param_var->param_binding_length) {
Brian Paula088f162006-09-05 23:08:51 +00001906 program_error(ctx, Program->Position,
1907 "Declared parameter array length does not match parameter list");
Jouk Jansen40322e12004-04-05 08:50:36 +00001908 }
1909 }
1910
1911 (*inst)++;
1912
1913 return 0;
1914}
1915
1916/**
1917 *
1918 */
1919static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001920parse_param_use (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001921 struct arb_program *Program, struct var_cache **new_var)
1922{
1923 struct var_cache *param_var;
1924
1925 /* First, insert a dummy entry into the var_cache */
1926 var_cache_create (&param_var);
Brian Paul6a769d92006-04-28 15:42:15 +00001927 param_var->name = (const GLubyte *) " ";
Jouk Jansen40322e12004-04-05 08:50:36 +00001928 param_var->type = vt_param;
1929
1930 param_var->param_binding_length = 0;
1931 /* Don't fill in binding_begin; We use the default value of -1
1932 * to tell if its already initialized, elsewhere.
1933 *
1934 * param_var->param_binding_begin = 0;
1935 */
1936 param_var->param_binding_type = PROGRAM_STATE_VAR;
1937
1938 var_cache_append (vc_head, param_var);
1939
1940 /* Then fill it with juicy parameter goodness */
1941 if (parse_param_elements (ctx, inst, param_var, Program, GL_TRUE))
1942 return 1;
1943
1944 *new_var = param_var;
1945
1946 return 0;
1947}
1948
1949
1950/**
1951 * This handles the declaration of TEMP variables
1952 *
1953 * \return 0 on sucess, 1 on error
1954 */
1955static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001956parse_temp (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001957 struct arb_program *Program)
1958{
1959 GLuint found;
1960 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00001961
1962 while (**inst != 0) {
1963 temp_var = parse_string (inst, vc_head, Program, &found);
1964 Program->Position = parse_position (inst);
1965 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001966 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00001967 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
1968 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1969 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001970 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001971 _mesa_free (error_msg);
1972 return 1;
1973 }
1974
1975 temp_var->type = vt_temp;
1976
1977 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
1978 (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001979 ctx->Const.FragmentProgram.MaxTemps))
Jouk Jansen40322e12004-04-05 08:50:36 +00001980 || ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
1981 && (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001982 ctx->Const.VertexProgram.MaxTemps))) {
Brian Paula088f162006-09-05 23:08:51 +00001983 program_error(ctx, Program->Position,
1984 "Too many TEMP variables declared");
Jouk Jansen40322e12004-04-05 08:50:36 +00001985 return 1;
1986 }
1987
1988 temp_var->temp_binding = Program->Base.NumTemporaries;
1989 Program->Base.NumTemporaries++;
1990 }
1991 (*inst)++;
1992
1993 return 0;
1994}
1995
1996/**
1997 * This handles variables of the OUTPUT variety
1998 *
1999 * \return 0 on sucess, 1 on error
2000 */
2001static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002002parse_output (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002003 struct arb_program *Program)
2004{
2005 GLuint found;
2006 struct var_cache *output_var;
Brian Paul7aebaf32005-10-30 21:23:23 +00002007 GLuint err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002008
2009 output_var = parse_string (inst, vc_head, Program, &found);
2010 Program->Position = parse_position (inst);
2011 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002012 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002013 _mesa_malloc (_mesa_strlen ((char *) output_var->name) + 40);
2014 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2015 output_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002016 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002017 _mesa_free (error_msg);
2018 return 1;
2019 }
2020
2021 output_var->type = vt_output;
Brian Paul7aebaf32005-10-30 21:23:23 +00002022
2023 err = parse_result_binding(ctx, inst, &output_var->output_binding, Program);
2024 return err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002025}
2026
2027/**
2028 * This handles variables of the ALIAS kind
2029 *
2030 * \return 0 on sucess, 1 on error
2031 */
2032static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002033parse_alias (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002034 struct arb_program *Program)
2035{
2036 GLuint found;
2037 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002038
2039 temp_var = parse_string (inst, vc_head, Program, &found);
2040 Program->Position = parse_position (inst);
2041
2042 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002043 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002044 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2045 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2046 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002047 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002048 _mesa_free (error_msg);
2049 return 1;
2050 }
2051
2052 temp_var->type = vt_alias;
2053 temp_var->alias_binding = parse_string (inst, vc_head, Program, &found);
2054 Program->Position = parse_position (inst);
2055
2056 if (!found)
2057 {
Brian Paul7aebaf32005-10-30 21:23:23 +00002058 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002059 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2060 _mesa_sprintf (error_msg, "Alias value %s is not defined",
2061 temp_var->alias_binding->name);
Brian Paula088f162006-09-05 23:08:51 +00002062 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002063 _mesa_free (error_msg);
2064 return 1;
2065 }
2066
2067 return 0;
2068}
2069
2070/**
2071 * This handles variables of the ADDRESS kind
2072 *
2073 * \return 0 on sucess, 1 on error
2074 */
2075static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002076parse_address (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002077 struct arb_program *Program)
2078{
2079 GLuint found;
2080 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002081
2082 while (**inst != 0) {
2083 temp_var = parse_string (inst, vc_head, Program, &found);
2084 Program->Position = parse_position (inst);
2085 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002086 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002087 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2088 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2089 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002090 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002091 _mesa_free (error_msg);
2092 return 1;
2093 }
2094
2095 temp_var->type = vt_address;
2096
2097 if (Program->Base.NumAddressRegs >=
Brian Paul05051032005-11-01 04:36:33 +00002098 ctx->Const.VertexProgram.MaxAddressRegs) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002099 const char *msg = "Too many ADDRESS variables declared";
Brian Paula088f162006-09-05 23:08:51 +00002100 program_error(ctx, Program->Position, msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002101 return 1;
2102 }
2103
2104 temp_var->address_binding = Program->Base.NumAddressRegs;
2105 Program->Base.NumAddressRegs++;
2106 }
2107 (*inst)++;
2108
2109 return 0;
2110}
2111
2112/**
2113 * Parse a program declaration
2114 *
2115 * \return 0 on sucess, 1 on error
2116 */
2117static GLint
Brian Paula088f162006-09-05 23:08:51 +00002118parse_declaration (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002119 struct arb_program *Program)
2120{
2121 GLint err = 0;
2122
2123 switch (*(*inst)++) {
2124 case ADDRESS:
2125 err = parse_address (ctx, inst, vc_head, Program);
2126 break;
2127
2128 case ALIAS:
2129 err = parse_alias (ctx, inst, vc_head, Program);
2130 break;
2131
2132 case ATTRIB:
2133 err = parse_attrib (ctx, inst, vc_head, Program);
2134 break;
2135
2136 case OUTPUT:
2137 err = parse_output (ctx, inst, vc_head, Program);
2138 break;
2139
2140 case PARAM:
2141 err = parse_param (ctx, inst, vc_head, Program);
2142 break;
2143
2144 case TEMP:
2145 err = parse_temp (ctx, inst, vc_head, Program);
2146 break;
2147 }
2148
2149 return err;
2150}
2151
2152/**
Brian Paul7aebaf32005-10-30 21:23:23 +00002153 * Handle the parsing out of a masked destination register, either for a
2154 * vertex or fragment program.
Jouk Jansen40322e12004-04-05 08:50:36 +00002155 *
2156 * If we are a vertex program, make sure we don't write to
Brian Paul7aebaf32005-10-30 21:23:23 +00002157 * result.position if we have specified that the program is
Jouk Jansen40322e12004-04-05 08:50:36 +00002158 * position invariant
2159 *
2160 * \param File - The register file we write to
2161 * \param Index - The register index we write to
2162 * \param WriteMask - The mask controlling which components we write (1->write)
2163 *
2164 * \return 0 on sucess, 1 on error
2165 */
2166static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002167parse_masked_dst_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002168 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7aebaf32005-10-30 21:23:23 +00002169 enum register_file *File, GLuint *Index, GLint *WriteMask)
Jouk Jansen40322e12004-04-05 08:50:36 +00002170{
Brian Paul7aebaf32005-10-30 21:23:23 +00002171 GLuint tmp, result;
Jouk Jansen40322e12004-04-05 08:50:36 +00002172 struct var_cache *dst;
2173
2174 /* We either have a result register specified, or a
2175 * variable that may or may not be writable
2176 */
2177 switch (*(*inst)++) {
2178 case REGISTER_RESULT:
Brian Paul7aebaf32005-10-30 21:23:23 +00002179 if (parse_result_binding(ctx, inst, Index, Program))
Jouk Jansen40322e12004-04-05 08:50:36 +00002180 return 1;
2181 *File = PROGRAM_OUTPUT;
2182 break;
2183
2184 case REGISTER_ESTABLISHED_NAME:
2185 dst = parse_string (inst, vc_head, Program, &result);
2186 Program->Position = parse_position (inst);
2187
2188 /* If the name has never been added to our symbol table, we're hosed */
2189 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002190 program_error(ctx, Program->Position, "0: Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002191 return 1;
2192 }
2193
2194 switch (dst->type) {
2195 case vt_output:
2196 *File = PROGRAM_OUTPUT;
Brian Paul7aebaf32005-10-30 21:23:23 +00002197 *Index = dst->output_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002198 break;
2199
2200 case vt_temp:
2201 *File = PROGRAM_TEMPORARY;
2202 *Index = dst->temp_binding;
2203 break;
2204
2205 /* If the var type is not vt_output or vt_temp, no go */
2206 default:
Brian Paula088f162006-09-05 23:08:51 +00002207 program_error(ctx, Program->Position,
2208 "Destination register is read only");
Jouk Jansen40322e12004-04-05 08:50:36 +00002209 return 1;
2210 }
2211 break;
2212
2213 default:
Brian Paula088f162006-09-05 23:08:51 +00002214 program_error(ctx, Program->Position,
2215 "Unexpected opcode in parse_masked_dst_reg()");
Jouk Jansen40322e12004-04-05 08:50:36 +00002216 return 1;
2217 }
2218
2219
2220 /* Position invariance test */
2221 /* This test is done now in syntax portion - when position invariance OPTION
2222 is specified, "result.position" rule is disabled so there is no way
2223 to write the position
2224 */
2225 /*if ((Program->HintPositionInvariant) && (*File == PROGRAM_OUTPUT) &&
2226 (*Index == 0)) {
Brian Paula088f162006-09-05 23:08:51 +00002227 program_error(ctx, Program->Position,
Jouk Jansen40322e12004-04-05 08:50:36 +00002228 "Vertex program specified position invariance and wrote vertex position");
2229 }*/
2230
2231 /* And then the mask.
2232 * w,a -> bit 0
2233 * z,b -> bit 1
2234 * y,g -> bit 2
2235 * x,r -> bit 3
Keith Whitwell7c26b612005-04-21 14:46:57 +00002236 *
2237 * ==> Need to reverse the order of bits for this!
Jouk Jansen40322e12004-04-05 08:50:36 +00002238 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002239 tmp = (GLint) *(*inst)++;
2240 *WriteMask = (((tmp>>3) & 0x1) |
2241 ((tmp>>1) & 0x2) |
2242 ((tmp<<1) & 0x4) |
2243 ((tmp<<3) & 0x8));
Jouk Jansen40322e12004-04-05 08:50:36 +00002244
2245 return 0;
2246}
2247
2248
2249/**
2250 * Handle the parsing of a address register
2251 *
2252 * \param Index - The register index we write to
2253 *
2254 * \return 0 on sucess, 1 on error
2255 */
2256static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002257parse_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002258 struct var_cache **vc_head,
2259 struct arb_program *Program, GLint * Index)
2260{
2261 struct var_cache *dst;
2262 GLuint result;
Aapo Tahkola6fc864b2006-03-22 21:29:15 +00002263
2264 *Index = 0; /* XXX */
Jouk Jansen40322e12004-04-05 08:50:36 +00002265
2266 dst = parse_string (inst, vc_head, Program, &result);
2267 Program->Position = parse_position (inst);
2268
2269 /* If the name has never been added to our symbol table, we're hosed */
2270 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002271 program_error(ctx, Program->Position, "Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002272 return 1;
2273 }
2274
2275 if (dst->type != vt_address) {
Brian Paula088f162006-09-05 23:08:51 +00002276 program_error(ctx, Program->Position, "Variable is not of type ADDRESS");
Jouk Jansen40322e12004-04-05 08:50:36 +00002277 return 1;
2278 }
2279
2280 return 0;
2281}
2282
Brian Paul8e8fa632005-07-01 02:03:33 +00002283#if 0 /* unused */
Jouk Jansen40322e12004-04-05 08:50:36 +00002284/**
2285 * Handle the parsing out of a masked address register
2286 *
2287 * \param Index - The register index we write to
2288 * \param WriteMask - The mask controlling which components we write (1->write)
2289 *
2290 * \return 0 on sucess, 1 on error
2291 */
2292static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002293parse_masked_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002294 struct var_cache **vc_head,
2295 struct arb_program *Program, GLint * Index,
2296 GLboolean * WriteMask)
2297{
2298 if (parse_address_reg (ctx, inst, vc_head, Program, Index))
2299 return 1;
2300
2301 /* This should be 0x8 */
2302 (*inst)++;
2303
2304 /* Writemask of .x is implied */
2305 WriteMask[0] = 1;
2306 WriteMask[1] = WriteMask[2] = WriteMask[3] = 0;
2307
2308 return 0;
2309}
Brian Paul8e8fa632005-07-01 02:03:33 +00002310#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00002311
2312/**
2313 * Parse out a swizzle mask.
2314 *
Brian Paul32df89e2005-10-29 18:26:43 +00002315 * Basically convert COMPONENT_X/Y/Z/W to SWIZZLE_X/Y/Z/W
Jouk Jansen40322e12004-04-05 08:50:36 +00002316 *
2317 * The len parameter allows us to grab 4 components for a vector
2318 * swizzle, or just 1 component for a scalar src register selection
2319 */
Brian Paul32df89e2005-10-29 18:26:43 +00002320static void
Brian Paula088f162006-09-05 23:08:51 +00002321parse_swizzle_mask(const GLubyte ** inst, GLubyte *swizzle, GLint len)
Jouk Jansen40322e12004-04-05 08:50:36 +00002322{
Brian Paul32df89e2005-10-29 18:26:43 +00002323 GLint i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002324
Brian Paul32df89e2005-10-29 18:26:43 +00002325 for (i = 0; i < 4; i++)
2326 swizzle[i] = i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002327
Brian Paul32df89e2005-10-29 18:26:43 +00002328 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00002329 switch (*(*inst)++) {
2330 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002331 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002332 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002333 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002334 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002335 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002336 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002337 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002338 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002339 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002340 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002341 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002342 default:
2343 _mesa_problem(NULL, "bad component in parse_swizzle_mask()");
2344 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002345 }
2346 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002347}
2348
Jouk Jansen40322e12004-04-05 08:50:36 +00002349
Brian Paul32df89e2005-10-29 18:26:43 +00002350/**
2351 * Parse an extended swizzle mask which is a sequence of
2352 * four x/y/z/w/0/1 tokens.
2353 * \return swizzle four swizzle values
2354 * \return negateMask four element bitfield
2355 */
2356static void
Brian Paula088f162006-09-05 23:08:51 +00002357parse_extended_swizzle_mask(const GLubyte **inst, GLubyte swizzle[4],
Brian Paul32df89e2005-10-29 18:26:43 +00002358 GLubyte *negateMask)
2359{
2360 GLint i;
2361
2362 *negateMask = 0x0;
2363 for (i = 0; i < 4; i++) {
2364 GLubyte swz;
2365 if (parse_sign(inst) == -1)
2366 *negateMask |= (1 << i);
Jouk Jansen40322e12004-04-05 08:50:36 +00002367
2368 swz = *(*inst)++;
2369
2370 switch (swz) {
2371 case COMPONENT_0:
Brian Paul32df89e2005-10-29 18:26:43 +00002372 swizzle[i] = SWIZZLE_ZERO;
Jouk Jansen40322e12004-04-05 08:50:36 +00002373 break;
2374 case COMPONENT_1:
Brian Paul32df89e2005-10-29 18:26:43 +00002375 swizzle[i] = SWIZZLE_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002376 break;
2377 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002378 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002379 break;
2380 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002381 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002382 break;
2383 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002384 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002385 break;
2386 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002387 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002388 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002389 default:
2390 _mesa_problem(NULL, "bad case in parse_extended_swizzle_mask()");
2391 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002392 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002393 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002394}
2395
2396
2397static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002398parse_src_reg (GLcontext * ctx, const GLubyte ** inst,
2399 struct var_cache **vc_head,
Brian Paul7aebaf32005-10-30 21:23:23 +00002400 struct arb_program *Program,
2401 enum register_file * File, GLint * Index,
Jouk Jansen40322e12004-04-05 08:50:36 +00002402 GLboolean *IsRelOffset )
2403{
2404 struct var_cache *src;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002405 GLuint binding, is_generic, found;
Brian Paulbd997cd2004-07-20 21:12:56 +00002406 GLint offset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002407
Keith Whitwell7c26b612005-04-21 14:46:57 +00002408 *IsRelOffset = 0;
2409
Jouk Jansen40322e12004-04-05 08:50:36 +00002410 /* And the binding for the src */
2411 switch (*(*inst)++) {
2412 case REGISTER_ATTRIB:
2413 if (parse_attrib_binding
Brian Paul18e7c5c2005-10-30 21:46:00 +00002414 (ctx, inst, Program, &binding, &is_generic))
Jouk Jansen40322e12004-04-05 08:50:36 +00002415 return 1;
2416 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002417 *Index = binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002418
2419 /* We need to insert a dummy variable into the var_cache so we can
2420 * catch generic vertex attrib aliasing errors
2421 */
2422 var_cache_create(&src);
2423 src->type = vt_attrib;
Brian Paul6a769d92006-04-28 15:42:15 +00002424 src->name = (const GLubyte *) "Dummy Attrib Variable";
Brian Paul18e7c5c2005-10-30 21:46:00 +00002425 src->attrib_binding = binding;
2426 src->attrib_is_generic = is_generic;
Jouk Jansen40322e12004-04-05 08:50:36 +00002427 var_cache_append(vc_head, src);
2428 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00002429 program_error(ctx, Program->Position,
2430 "Cannot use both a generic vertex attribute "
2431 "and a specific attribute of the same type");
Jouk Jansen40322e12004-04-05 08:50:36 +00002432 return 1;
2433 }
2434 break;
2435
2436 case REGISTER_PARAM:
2437 switch (**inst) {
2438 case PARAM_ARRAY_ELEMENT:
2439 (*inst)++;
2440 src = parse_string (inst, vc_head, Program, &found);
2441 Program->Position = parse_position (inst);
2442
2443 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002444 program_error(ctx, Program->Position,
2445 "2: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002446 return 1;
2447 }
2448
Brian Paul95801792005-12-06 15:41:43 +00002449 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002450
2451 switch (*(*inst)++) {
2452 case ARRAY_INDEX_ABSOLUTE:
2453 offset = parse_integer (inst, Program);
2454
2455 if ((offset < 0)
Brian Paula6c423d2004-08-25 15:59:48 +00002456 || (offset >= (int)src->param_binding_length)) {
Brian Paula088f162006-09-05 23:08:51 +00002457 program_error(ctx, Program->Position,
2458 "Index out of range");
2459 /* offset, src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002460 return 1;
2461 }
2462
2463 *Index = src->param_binding_begin + offset;
2464 break;
2465
2466 case ARRAY_INDEX_RELATIVE:
2467 {
2468 GLint addr_reg_idx, rel_off;
2469
2470 /* First, grab the address regiseter */
2471 if (parse_address_reg (ctx, inst, vc_head, Program, &addr_reg_idx))
2472 return 1;
2473
2474 /* And the .x */
2475 ((*inst)++);
2476 ((*inst)++);
2477 ((*inst)++);
2478 ((*inst)++);
2479
2480 /* Then the relative offset */
2481 if (parse_relative_offset(ctx, inst, Program, &rel_off)) return 1;
2482
2483 /* And store it properly */
2484 *Index = src->param_binding_begin + rel_off;
2485 *IsRelOffset = 1;
2486 }
2487 break;
2488 }
2489 break;
2490
2491 default:
Jouk Jansen40322e12004-04-05 08:50:36 +00002492 if (parse_param_use (ctx, inst, vc_head, Program, &src))
2493 return 1;
2494
Brian Paul95801792005-12-06 15:41:43 +00002495 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002496 *Index = src->param_binding_begin;
2497 break;
2498 }
2499 break;
2500
2501 case REGISTER_ESTABLISHED_NAME:
Jouk Jansen40322e12004-04-05 08:50:36 +00002502 src = parse_string (inst, vc_head, Program, &found);
2503 Program->Position = parse_position (inst);
2504
2505 /* If the name has never been added to our symbol table, we're hosed */
2506 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002507 program_error(ctx, Program->Position,
2508 "3: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002509 return 1;
2510 }
2511
2512 switch (src->type) {
2513 case vt_attrib:
2514 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002515 *Index = src->attrib_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002516 break;
2517
2518 /* XXX: We have to handle offsets someplace in here! -- or are those above? */
2519 case vt_param:
Brian Paul95801792005-12-06 15:41:43 +00002520 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002521 *Index = src->param_binding_begin;
2522 break;
2523
2524 case vt_temp:
2525 *File = PROGRAM_TEMPORARY;
2526 *Index = src->temp_binding;
2527 break;
2528
2529 /* If the var type is vt_output no go */
2530 default:
Brian Paula088f162006-09-05 23:08:51 +00002531 program_error(ctx, Program->Position,
2532 "destination register is read only");
2533 /* bad src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002534 return 1;
2535 }
2536 break;
2537
2538 default:
Brian Paula088f162006-09-05 23:08:51 +00002539 program_error(ctx, Program->Position,
2540 "Unknown token in parse_src_reg");
Jouk Jansen40322e12004-04-05 08:50:36 +00002541 return 1;
2542 }
2543
2544 return 0;
2545}
2546
2547/**
Brian Paul18e7c5c2005-10-30 21:46:00 +00002548 * Parse fragment program vector source register.
Jouk Jansen40322e12004-04-05 08:50:36 +00002549 */
2550static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002551parse_fp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00002552 struct var_cache **vc_head,
2553 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00002554 struct prog_src_register *reg)
Jouk Jansen40322e12004-04-05 08:50:36 +00002555{
Brian Paul7aebaf32005-10-30 21:23:23 +00002556 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00002557 GLint index;
2558 GLboolean negate;
2559 GLubyte swizzle[4];
2560 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002561
Jouk Jansen40322e12004-04-05 08:50:36 +00002562 /* Grab the sign */
Brian Paul32df89e2005-10-29 18:26:43 +00002563 negate = (parse_sign (inst) == -1) ? 0xf : 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00002564
2565 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00002566 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Jouk Jansen40322e12004-04-05 08:50:36 +00002567 return 1;
2568
2569 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002570 parse_swizzle_mask(inst, swizzle, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00002571
Brian Paul32df89e2005-10-29 18:26:43 +00002572 reg->File = file;
2573 reg->Index = index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002574 reg->Abs = 0; /* NV only */
2575 reg->NegateAbs = 0; /* NV only */
Brian Paul32df89e2005-10-29 18:26:43 +00002576 reg->NegateBase = negate;
2577 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00002578 return 0;
2579}
2580
Jouk Jansen40322e12004-04-05 08:50:36 +00002581
Brian Paulb7fc1c32006-08-30 23:38:03 +00002582/**
2583 * Parse fragment program destination register.
2584 * \return 1 if error, 0 if no error.
2585 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002586static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002587parse_fp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00002588 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002589 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002590{
Brian Paul7aebaf32005-10-30 21:23:23 +00002591 GLint mask;
2592 GLuint idx;
2593 enum register_file file;
2594
Keith Whitwell7c26b612005-04-21 14:46:57 +00002595 if (parse_masked_dst_reg (ctx, inst, vc_head, Program, &file, &idx, &mask))
Jouk Jansen40322e12004-04-05 08:50:36 +00002596 return 1;
2597
Keith Whitwell7c26b612005-04-21 14:46:57 +00002598 reg->CondMask = 0; /* NV only */
2599 reg->CondSwizzle = 0; /* NV only */
2600 reg->File = file;
2601 reg->Index = idx;
2602 reg->WriteMask = mask;
2603 return 0;
2604}
2605
2606
Brian Paul7aebaf32005-10-30 21:23:23 +00002607/**
2608 * Parse fragment program scalar src register.
Brian Paulb7fc1c32006-08-30 23:38:03 +00002609 * \return 1 if error, 0 if no error.
Brian Paul7aebaf32005-10-30 21:23:23 +00002610 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002611static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002612parse_fp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00002613 struct var_cache **vc_head,
2614 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002615 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002616{
Brian Paul7aebaf32005-10-30 21:23:23 +00002617 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002618 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00002619 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002620 GLubyte Swizzle[4];
2621 GLboolean IsRelOffset;
2622
2623 /* Grab the sign */
2624 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
2625
2626 /* And the src reg */
2627 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
2628 return 1;
2629
2630 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002631 parse_swizzle_mask(inst, Swizzle, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002632
Keith Whitwell7c26b612005-04-21 14:46:57 +00002633 reg->File = File;
2634 reg->Index = Index;
2635 reg->Abs = 0; /* NV only */
2636 reg->NegateAbs = 0; /* NV only */
2637 reg->NegateBase = Negate;
2638 reg->Swizzle = (Swizzle[0] << 0);
2639
Jouk Jansen40322e12004-04-05 08:50:36 +00002640 return 0;
2641}
2642
Keith Whitwell7c26b612005-04-21 14:46:57 +00002643
Jouk Jansen40322e12004-04-05 08:50:36 +00002644/**
2645 * This is a big mother that handles getting opcodes into the instruction
2646 * and handling the src & dst registers for fragment program instructions
Brian Paulb7fc1c32006-08-30 23:38:03 +00002647 * \return 1 if error, 0 if no error
Jouk Jansen40322e12004-04-05 08:50:36 +00002648 */
2649static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002650parse_fp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002651 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002652 struct prog_instruction *fp)
Jouk Jansen40322e12004-04-05 08:50:36 +00002653{
Keith Whitwell7c26b612005-04-21 14:46:57 +00002654 GLint a;
Jouk Jansen40322e12004-04-05 08:50:36 +00002655 GLuint texcoord;
2656 GLubyte instClass, type, code;
2657 GLboolean rel;
2658
Brian Paul7e807512005-11-05 17:10:45 +00002659 _mesa_init_instruction(fp);
Jouk Jansen40322e12004-04-05 08:50:36 +00002660
2661 /* Record the position in the program string for debugging */
2662 fp->StringPos = Program->Position;
2663
2664 /* OP_ALU_INST or OP_TEX_INST */
2665 instClass = *(*inst)++;
2666
2667 /* OP_ALU_{VECTOR, SCALAR, BINSC, BIN, TRI, SWZ},
2668 * OP_TEX_{SAMPLE, KIL}
2669 */
2670 type = *(*inst)++;
2671
2672 /* The actual opcode name */
2673 code = *(*inst)++;
2674
2675 /* Increment the correct count */
2676 switch (instClass) {
2677 case OP_ALU_INST:
2678 Program->NumAluInstructions++;
2679 break;
2680 case OP_TEX_INST:
2681 Program->NumTexInstructions++;
2682 break;
2683 }
2684
Jouk Jansen40322e12004-04-05 08:50:36 +00002685 switch (type) {
2686 case OP_ALU_VECTOR:
2687 switch (code) {
2688 case OP_ABS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002689 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002690 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00002691 fp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002692 break;
2693
2694 case OP_FLR_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002695 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002696 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00002697 fp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00002698 break;
2699
2700 case OP_FRC_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002701 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002702 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00002703 fp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00002704 break;
2705
2706 case OP_LIT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002707 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002708 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00002709 fp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002710 break;
2711
2712 case OP_MOV_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002713 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002714 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00002715 fp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00002716 break;
2717 }
2718
Keith Whitwell7c26b612005-04-21 14:46:57 +00002719 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002720 return 1;
2721
Keith Whitwell7c26b612005-04-21 14:46:57 +00002722 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002723 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002724 break;
2725
2726 case OP_ALU_SCALAR:
2727 switch (code) {
2728 case OP_COS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002729 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002730 case OP_COS:
Brian Paul7e807512005-11-05 17:10:45 +00002731 fp->Opcode = OPCODE_COS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002732 break;
2733
2734 case OP_EX2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002735 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002736 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00002737 fp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002738 break;
2739
2740 case OP_LG2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002741 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002742 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00002743 fp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002744 break;
2745
2746 case OP_RCP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002747 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002748 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00002749 fp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002750 break;
2751
2752 case OP_RSQ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002753 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002754 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00002755 fp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002756 break;
2757
2758 case OP_SIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002759 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002760 case OP_SIN:
Brian Paul7e807512005-11-05 17:10:45 +00002761 fp->Opcode = OPCODE_SIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002762 break;
2763
2764 case OP_SCS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002765 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002766 case OP_SCS:
2767
Brian Paul7e807512005-11-05 17:10:45 +00002768 fp->Opcode = OPCODE_SCS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002769 break;
2770 }
2771
Keith Whitwell7c26b612005-04-21 14:46:57 +00002772 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002773 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002774
2775 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002776 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002777 break;
2778
2779 case OP_ALU_BINSC:
2780 switch (code) {
2781 case OP_POW_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002782 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002783 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00002784 fp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00002785 break;
2786 }
2787
Keith Whitwell7c26b612005-04-21 14:46:57 +00002788 if (parse_fp_dst_reg(ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002789 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002790
Jouk Jansen40322e12004-04-05 08:50:36 +00002791 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002792 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002793 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002794 }
2795 break;
2796
2797
2798 case OP_ALU_BIN:
2799 switch (code) {
2800 case OP_ADD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002801 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002802 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00002803 fp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002804 break;
2805
2806 case OP_DP3_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002807 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002808 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00002809 fp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00002810 break;
2811
2812 case OP_DP4_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002813 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002814 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00002815 fp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00002816 break;
2817
2818 case OP_DPH_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002819 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002820 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00002821 fp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00002822 break;
2823
2824 case OP_DST_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002825 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002826 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00002827 fp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00002828 break;
2829
2830 case OP_MAX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002831 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002832 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00002833 fp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002834 break;
2835
2836 case OP_MIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002837 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002838 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00002839 fp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002840 break;
2841
2842 case OP_MUL_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002843 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002844 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00002845 fp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00002846 break;
2847
2848 case OP_SGE_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002849 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002850 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00002851 fp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002852 break;
2853
2854 case OP_SLT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002855 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002856 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00002857 fp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002858 break;
2859
2860 case OP_SUB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002861 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002862 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00002863 fp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002864 break;
2865
2866 case OP_XPD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002867 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002868 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00002869 fp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002870 break;
2871 }
2872
Keith Whitwell7c26b612005-04-21 14:46:57 +00002873 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002874 return 1;
2875 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002876 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2877 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002878 }
2879 break;
2880
2881 case OP_ALU_TRI:
2882 switch (code) {
2883 case OP_CMP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002884 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002885 case OP_CMP:
Brian Paul7e807512005-11-05 17:10:45 +00002886 fp->Opcode = OPCODE_CMP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002887 break;
2888
2889 case OP_LRP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002890 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002891 case OP_LRP:
Brian Paul7e807512005-11-05 17:10:45 +00002892 fp->Opcode = OPCODE_LRP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002893 break;
2894
2895 case OP_MAD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002896 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002897 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00002898 fp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002899 break;
2900 }
2901
Keith Whitwell7c26b612005-04-21 14:46:57 +00002902 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002903 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002904
Jouk Jansen40322e12004-04-05 08:50:36 +00002905 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002906 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2907 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002908 }
2909 break;
2910
2911 case OP_ALU_SWZ:
2912 switch (code) {
2913 case OP_SWZ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002914 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002915 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00002916 fp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002917 break;
2918 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00002919 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002920 return 1;
2921
Keith Whitwell7c26b612005-04-21 14:46:57 +00002922 {
Brian Paul32df89e2005-10-29 18:26:43 +00002923 GLubyte swizzle[4];
Brian Paul54cfe692005-10-21 15:22:36 +00002924 GLubyte negateMask;
Brian Paul7aebaf32005-10-30 21:23:23 +00002925 enum register_file file;
2926 GLint index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002927
Brian Paul32df89e2005-10-29 18:26:43 +00002928 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &rel))
Keith Whitwell7c26b612005-04-21 14:46:57 +00002929 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00002930 parse_extended_swizzle_mask(inst, swizzle, &negateMask);
2931 fp->SrcReg[0].File = file;
2932 fp->SrcReg[0].Index = index;
Brian Paul54cfe692005-10-21 15:22:36 +00002933 fp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00002934 fp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
2935 swizzle[1],
2936 swizzle[2],
2937 swizzle[3]);
Keith Whitwell7c26b612005-04-21 14:46:57 +00002938 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002939 break;
2940
2941 case OP_TEX_SAMPLE:
2942 switch (code) {
2943 case OP_TEX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002944 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002945 case OP_TEX:
Brian Paul7e807512005-11-05 17:10:45 +00002946 fp->Opcode = OPCODE_TEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002947 break;
2948
2949 case OP_TXP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002950 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002951 case OP_TXP:
Brian Paul7e807512005-11-05 17:10:45 +00002952 fp->Opcode = OPCODE_TXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002953 break;
2954
2955 case OP_TXB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002956 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002957 case OP_TXB:
Brian Paul7e807512005-11-05 17:10:45 +00002958 fp->Opcode = OPCODE_TXB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002959 break;
2960 }
2961
Keith Whitwell7c26b612005-04-21 14:46:57 +00002962 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002963 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002964
2965 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002966 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002967
2968 /* texImageUnit */
2969 if (parse_texcoord_num (ctx, inst, Program, &texcoord))
2970 return 1;
2971 fp->TexSrcUnit = texcoord;
2972
2973 /* texTarget */
2974 switch (*(*inst)++) {
2975 case TEXTARGET_1D:
Brian Paul7e807512005-11-05 17:10:45 +00002976 fp->TexSrcTarget = TEXTURE_1D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002977 break;
2978 case TEXTARGET_2D:
Brian Paul7e807512005-11-05 17:10:45 +00002979 fp->TexSrcTarget = TEXTURE_2D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002980 break;
2981 case TEXTARGET_3D:
Brian Paul7e807512005-11-05 17:10:45 +00002982 fp->TexSrcTarget = TEXTURE_3D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002983 break;
2984 case TEXTARGET_RECT:
Brian Paul7e807512005-11-05 17:10:45 +00002985 fp->TexSrcTarget = TEXTURE_RECT_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002986 break;
2987 case TEXTARGET_CUBE:
Brian Paul7e807512005-11-05 17:10:45 +00002988 fp->TexSrcTarget = TEXTURE_CUBE_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002989 break;
2990 case TEXTARGET_SHADOW1D:
2991 case TEXTARGET_SHADOW2D:
2992 case TEXTARGET_SHADOWRECT:
2993 /* TODO ARB_fragment_program_shadow code */
2994 break;
2995 }
Brian Paulb7fc1c32006-08-30 23:38:03 +00002996 Program->TexturesUsed[texcoord] |= (1 << fp->TexSrcTarget);
2997 /* Check that both "2D" and "CUBE" (for example) aren't both used */
2998 if (_mesa_bitcount(Program->TexturesUsed[texcoord]) > 1) {
Brian Paula088f162006-09-05 23:08:51 +00002999 program_error(ctx, Program->Position,
3000 "multiple targets used on one texture image unit");
Brian Paulb7fc1c32006-08-30 23:38:03 +00003001 return 1;
3002 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003003 break;
3004
3005 case OP_TEX_KIL:
Keith Whitwellc3626a92005-11-01 17:25:49 +00003006 Program->UsesKill = 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003007 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003008 return 1;
Brian Paul7e807512005-11-05 17:10:45 +00003009 fp->Opcode = OPCODE_KIL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003010 break;
Brian Paulb7fc1c32006-08-30 23:38:03 +00003011 default:
3012 _mesa_problem(ctx, "bad type 0x%x in parse_fp_instruction()", type);
3013 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003014 }
3015
3016 return 0;
3017}
3018
Keith Whitwell7c26b612005-04-21 14:46:57 +00003019static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003020parse_vp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003021 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003022 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003023{
Brian Paul7aebaf32005-10-30 21:23:23 +00003024 GLint mask;
3025 GLuint idx;
3026 enum register_file file;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003027
3028 if (parse_masked_dst_reg(ctx, inst, vc_head, Program, &file, &idx, &mask))
3029 return 1;
3030
3031 reg->File = file;
3032 reg->Index = idx;
3033 reg->WriteMask = mask;
3034 return 0;
3035}
3036
3037/**
3038 * Handle the parsing out of a masked address register
3039 *
3040 * \param Index - The register index we write to
3041 * \param WriteMask - The mask controlling which components we write (1->write)
3042 *
3043 * \return 0 on sucess, 1 on error
3044 */
3045static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003046parse_vp_address_reg (GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003047 struct var_cache **vc_head,
3048 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003049 struct prog_dst_register *reg)
Keith Whitwell7c26b612005-04-21 14:46:57 +00003050{
3051 GLint idx;
3052
3053 if (parse_address_reg (ctx, inst, vc_head, Program, &idx))
3054 return 1;
3055
3056 /* This should be 0x8 */
3057 (*inst)++;
3058
3059 reg->File = PROGRAM_ADDRESS;
3060 reg->Index = idx;
3061
3062 /* Writemask of .x is implied */
3063 reg->WriteMask = 0x1;
3064 return 0;
3065}
3066
3067/**
Brian Paul7aebaf32005-10-30 21:23:23 +00003068 * Parse vertex program vector source register.
Keith Whitwell7c26b612005-04-21 14:46:57 +00003069 */
3070static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003071parse_vp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00003072 struct var_cache **vc_head,
3073 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00003074 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003075{
Brian Paul7aebaf32005-10-30 21:23:23 +00003076 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00003077 GLint index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003078 GLubyte negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003079 GLubyte swizzle[4];
3080 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003081
3082 /* Grab the sign */
Brian Paul7aebaf32005-10-30 21:23:23 +00003083 negateMask = (parse_sign (inst) == -1) ? 0xf : 0x0;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003084
3085 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00003086 if (parse_src_reg (ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003087 return 1;
3088
3089 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003090 parse_swizzle_mask(inst, swizzle, 4);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003091
Brian Paul32df89e2005-10-29 18:26:43 +00003092 reg->File = file;
3093 reg->Index = index;
3094 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1],
3095 swizzle[2], swizzle[3]);
Brian Paul7e807512005-11-05 17:10:45 +00003096 reg->NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003097 reg->RelAddr = isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003098 return 0;
3099}
3100
3101
3102static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003103parse_vp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00003104 struct var_cache **vc_head,
3105 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003106 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003107{
Brian Paul7aebaf32005-10-30 21:23:23 +00003108 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003109 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003110 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003111 GLubyte Swizzle[4];
3112 GLboolean IsRelOffset;
3113
3114 /* Grab the sign */
3115 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
3116
3117 /* And the src reg */
3118 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
3119 return 1;
3120
3121 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003122 parse_swizzle_mask(inst, Swizzle, 1);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003123
3124 reg->File = File;
3125 reg->Index = Index;
3126 reg->Swizzle = (Swizzle[0] << 0);
Brian Paul7e807512005-11-05 17:10:45 +00003127 reg->NegateBase = Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003128 reg->RelAddr = IsRelOffset;
3129 return 0;
3130}
3131
3132
Jouk Jansen40322e12004-04-05 08:50:36 +00003133/**
3134 * This is a big mother that handles getting opcodes into the instruction
3135 * and handling the src & dst registers for vertex program instructions
3136 */
3137static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003138parse_vp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00003139 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003140 struct prog_instruction *vp)
Jouk Jansen40322e12004-04-05 08:50:36 +00003141{
3142 GLint a;
3143 GLubyte type, code;
3144
3145 /* OP_ALU_{ARL, VECTOR, SCALAR, BINSC, BIN, TRI, SWZ} */
3146 type = *(*inst)++;
3147
3148 /* The actual opcode name */
3149 code = *(*inst)++;
3150
Brian Paul7e807512005-11-05 17:10:45 +00003151 _mesa_init_instruction(vp);
Jouk Jansen40322e12004-04-05 08:50:36 +00003152 /* Record the position in the program string for debugging */
3153 vp->StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003154
3155 switch (type) {
3156 /* XXX: */
3157 case OP_ALU_ARL:
Brian Paul7e807512005-11-05 17:10:45 +00003158 vp->Opcode = OPCODE_ARL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003159
3160 /* Remember to set SrcReg.RelAddr; */
3161
3162 /* Get the masked address register [dst] */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003163 if (parse_vp_address_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003164 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003165
Jouk Jansen40322e12004-04-05 08:50:36 +00003166 vp->DstReg.File = PROGRAM_ADDRESS;
3167
3168 /* Get a scalar src register */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003169 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003170 return 1;
3171
3172 break;
3173
3174 case OP_ALU_VECTOR:
3175 switch (code) {
3176 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00003177 vp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00003178 break;
3179 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00003180 vp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00003181 break;
3182 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00003183 vp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00003184 break;
3185 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00003186 vp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003187 break;
3188 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00003189 vp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00003190 break;
3191 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003192
3193 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003194 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003195
3196 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003197 return 1;
3198 break;
3199
3200 case OP_ALU_SCALAR:
3201 switch (code) {
3202 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00003203 vp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003204 break;
3205 case OP_EXP:
Brian Paul7e807512005-11-05 17:10:45 +00003206 vp->Opcode = OPCODE_EXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003207 break;
3208 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00003209 vp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003210 break;
3211 case OP_LOG:
Brian Paul7e807512005-11-05 17:10:45 +00003212 vp->Opcode = OPCODE_LOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00003213 break;
3214 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00003215 vp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003216 break;
3217 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00003218 vp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003219 break;
3220 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003221 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003222 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003223
3224 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003225 return 1;
3226 break;
3227
3228 case OP_ALU_BINSC:
3229 switch (code) {
3230 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00003231 vp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00003232 break;
3233 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003234 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003235 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003236
Jouk Jansen40322e12004-04-05 08:50:36 +00003237 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003238 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003239 return 1;
3240 }
3241 break;
3242
3243 case OP_ALU_BIN:
3244 switch (code) {
3245 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00003246 vp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003247 break;
3248 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00003249 vp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00003250 break;
3251 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00003252 vp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00003253 break;
3254 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00003255 vp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00003256 break;
3257 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00003258 vp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00003259 break;
3260 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00003261 vp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003262 break;
3263 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00003264 vp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00003265 break;
3266 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00003267 vp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003268 break;
3269 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00003270 vp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003271 break;
3272 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00003273 vp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003274 break;
3275 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00003276 vp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00003277 break;
3278 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00003279 vp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003280 break;
3281 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003282 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003283 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003284
Jouk Jansen40322e12004-04-05 08:50:36 +00003285 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003286 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003287 return 1;
3288 }
3289 break;
3290
3291 case OP_ALU_TRI:
3292 switch (code) {
3293 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00003294 vp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003295 break;
3296 }
3297
Keith Whitwell7c26b612005-04-21 14:46:57 +00003298 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003299 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003300
Jouk Jansen40322e12004-04-05 08:50:36 +00003301 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003302 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003303 return 1;
3304 }
3305 break;
3306
3307 case OP_ALU_SWZ:
3308 switch (code) {
3309 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00003310 vp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003311 break;
3312 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003313 {
Brian Paul32df89e2005-10-29 18:26:43 +00003314 GLubyte swizzle[4];
3315 GLubyte negateMask;
3316 GLboolean relAddr;
Brian Paul7aebaf32005-10-30 21:23:23 +00003317 enum register_file file;
3318 GLint index;
Jouk Jansen40322e12004-04-05 08:50:36 +00003319
Keith Whitwell7c26b612005-04-21 14:46:57 +00003320 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
3321 return 1;
3322
Brian Paul32df89e2005-10-29 18:26:43 +00003323 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &relAddr))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003324 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00003325 parse_extended_swizzle_mask (inst, swizzle, &negateMask);
3326 vp->SrcReg[0].File = file;
3327 vp->SrcReg[0].Index = index;
Brian Paul7e807512005-11-05 17:10:45 +00003328 vp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003329 vp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
3330 swizzle[1],
3331 swizzle[2],
3332 swizzle[3]);
3333 vp->SrcReg[0].RelAddr = relAddr;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003334 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003335 break;
3336 }
3337 return 0;
3338}
3339
3340#if DEBUG_PARSING
3341
3342static GLvoid
3343print_state_token (GLint token)
3344{
3345 switch (token) {
3346 case STATE_MATERIAL:
3347 fprintf (stderr, "STATE_MATERIAL ");
3348 break;
3349 case STATE_LIGHT:
3350 fprintf (stderr, "STATE_LIGHT ");
3351 break;
3352
3353 case STATE_LIGHTMODEL_AMBIENT:
3354 fprintf (stderr, "STATE_AMBIENT ");
3355 break;
3356
3357 case STATE_LIGHTMODEL_SCENECOLOR:
3358 fprintf (stderr, "STATE_SCENECOLOR ");
3359 break;
3360
3361 case STATE_LIGHTPROD:
3362 fprintf (stderr, "STATE_LIGHTPROD ");
3363 break;
3364
3365 case STATE_TEXGEN:
3366 fprintf (stderr, "STATE_TEXGEN ");
3367 break;
3368
3369 case STATE_FOG_COLOR:
3370 fprintf (stderr, "STATE_FOG_COLOR ");
3371 break;
3372
3373 case STATE_FOG_PARAMS:
3374 fprintf (stderr, "STATE_FOG_PARAMS ");
3375 break;
3376
3377 case STATE_CLIPPLANE:
3378 fprintf (stderr, "STATE_CLIPPLANE ");
3379 break;
3380
3381 case STATE_POINT_SIZE:
3382 fprintf (stderr, "STATE_POINT_SIZE ");
3383 break;
3384
3385 case STATE_POINT_ATTENUATION:
3386 fprintf (stderr, "STATE_ATTENUATION ");
3387 break;
3388
3389 case STATE_MATRIX:
3390 fprintf (stderr, "STATE_MATRIX ");
3391 break;
3392
3393 case STATE_MODELVIEW:
3394 fprintf (stderr, "STATE_MODELVIEW ");
3395 break;
3396
3397 case STATE_PROJECTION:
3398 fprintf (stderr, "STATE_PROJECTION ");
3399 break;
3400
3401 case STATE_MVP:
3402 fprintf (stderr, "STATE_MVP ");
3403 break;
3404
3405 case STATE_TEXTURE:
3406 fprintf (stderr, "STATE_TEXTURE ");
3407 break;
3408
3409 case STATE_PROGRAM:
3410 fprintf (stderr, "STATE_PROGRAM ");
3411 break;
3412
3413 case STATE_MATRIX_INVERSE:
3414 fprintf (stderr, "STATE_INVERSE ");
3415 break;
3416
3417 case STATE_MATRIX_TRANSPOSE:
3418 fprintf (stderr, "STATE_TRANSPOSE ");
3419 break;
3420
3421 case STATE_MATRIX_INVTRANS:
3422 fprintf (stderr, "STATE_INVTRANS ");
3423 break;
3424
3425 case STATE_AMBIENT:
3426 fprintf (stderr, "STATE_AMBIENT ");
3427 break;
3428
3429 case STATE_DIFFUSE:
3430 fprintf (stderr, "STATE_DIFFUSE ");
3431 break;
3432
3433 case STATE_SPECULAR:
3434 fprintf (stderr, "STATE_SPECULAR ");
3435 break;
3436
3437 case STATE_EMISSION:
3438 fprintf (stderr, "STATE_EMISSION ");
3439 break;
3440
3441 case STATE_SHININESS:
3442 fprintf (stderr, "STATE_SHININESS ");
3443 break;
3444
3445 case STATE_HALF:
3446 fprintf (stderr, "STATE_HALF ");
3447 break;
3448
3449 case STATE_POSITION:
3450 fprintf (stderr, "STATE_POSITION ");
3451 break;
3452
3453 case STATE_ATTENUATION:
3454 fprintf (stderr, "STATE_ATTENUATION ");
3455 break;
3456
3457 case STATE_SPOT_DIRECTION:
3458 fprintf (stderr, "STATE_DIRECTION ");
3459 break;
3460
3461 case STATE_TEXGEN_EYE_S:
3462 fprintf (stderr, "STATE_TEXGEN_EYE_S ");
3463 break;
3464
3465 case STATE_TEXGEN_EYE_T:
3466 fprintf (stderr, "STATE_TEXGEN_EYE_T ");
3467 break;
3468
3469 case STATE_TEXGEN_EYE_R:
3470 fprintf (stderr, "STATE_TEXGEN_EYE_R ");
3471 break;
3472
3473 case STATE_TEXGEN_EYE_Q:
3474 fprintf (stderr, "STATE_TEXGEN_EYE_Q ");
3475 break;
3476
3477 case STATE_TEXGEN_OBJECT_S:
3478 fprintf (stderr, "STATE_TEXGEN_EYE_S ");
3479 break;
3480
3481 case STATE_TEXGEN_OBJECT_T:
3482 fprintf (stderr, "STATE_TEXGEN_OBJECT_T ");
3483 break;
3484
3485 case STATE_TEXGEN_OBJECT_R:
3486 fprintf (stderr, "STATE_TEXGEN_OBJECT_R ");
3487 break;
3488
3489 case STATE_TEXGEN_OBJECT_Q:
3490 fprintf (stderr, "STATE_TEXGEN_OBJECT_Q ");
3491 break;
3492
3493 case STATE_TEXENV_COLOR:
3494 fprintf (stderr, "STATE_TEXENV_COLOR ");
3495 break;
3496
3497 case STATE_DEPTH_RANGE:
3498 fprintf (stderr, "STATE_DEPTH_RANGE ");
3499 break;
3500
3501 case STATE_VERTEX_PROGRAM:
3502 fprintf (stderr, "STATE_VERTEX_PROGRAM ");
3503 break;
3504
3505 case STATE_FRAGMENT_PROGRAM:
3506 fprintf (stderr, "STATE_FRAGMENT_PROGRAM ");
3507 break;
3508
3509 case STATE_ENV:
3510 fprintf (stderr, "STATE_ENV ");
3511 break;
3512
3513 case STATE_LOCAL:
3514 fprintf (stderr, "STATE_LOCAL ");
3515 break;
3516
3517 }
3518 fprintf (stderr, "[%d] ", token);
3519}
3520
3521
3522static GLvoid
3523debug_variables (GLcontext * ctx, struct var_cache *vc_head,
3524 struct arb_program *Program)
3525{
3526 struct var_cache *vc;
3527 GLint a, b;
3528
3529 fprintf (stderr, "debug_variables, vc_head: %x\n", vc_head);
3530
3531 /* First of all, print out the contents of the var_cache */
3532 vc = vc_head;
3533 while (vc) {
3534 fprintf (stderr, "[%x]\n", vc);
3535 switch (vc->type) {
3536 case vt_none:
3537 fprintf (stderr, "UNDEFINED %s\n", vc->name);
3538 break;
3539 case vt_attrib:
3540 fprintf (stderr, "ATTRIB %s\n", vc->name);
3541 fprintf (stderr, " binding: 0x%x\n", vc->attrib_binding);
3542 break;
3543 case vt_param:
3544 fprintf (stderr, "PARAM %s begin: %d len: %d\n", vc->name,
3545 vc->param_binding_begin, vc->param_binding_length);
3546 b = vc->param_binding_begin;
3547 for (a = 0; a < vc->param_binding_length; a++) {
3548 fprintf (stderr, "%s\n",
3549 Program->Parameters->Parameters[a + b].Name);
3550 if (Program->Parameters->Parameters[a + b].Type == STATE) {
3551 print_state_token (Program->Parameters->Parameters[a + b].
3552 StateIndexes[0]);
3553 print_state_token (Program->Parameters->Parameters[a + b].
3554 StateIndexes[1]);
3555 print_state_token (Program->Parameters->Parameters[a + b].
3556 StateIndexes[2]);
3557 print_state_token (Program->Parameters->Parameters[a + b].
3558 StateIndexes[3]);
3559 print_state_token (Program->Parameters->Parameters[a + b].
3560 StateIndexes[4]);
3561 print_state_token (Program->Parameters->Parameters[a + b].
3562 StateIndexes[5]);
3563 }
3564 else
3565 fprintf (stderr, "%f %f %f %f\n",
3566 Program->Parameters->Parameters[a + b].Values[0],
3567 Program->Parameters->Parameters[a + b].Values[1],
3568 Program->Parameters->Parameters[a + b].Values[2],
3569 Program->Parameters->Parameters[a + b].Values[3]);
3570 }
3571 break;
3572 case vt_temp:
3573 fprintf (stderr, "TEMP %s\n", vc->name);
3574 fprintf (stderr, " binding: 0x%x\n", vc->temp_binding);
3575 break;
3576 case vt_output:
3577 fprintf (stderr, "OUTPUT %s\n", vc->name);
3578 fprintf (stderr, " binding: 0x%x\n", vc->output_binding);
3579 break;
3580 case vt_alias:
3581 fprintf (stderr, "ALIAS %s\n", vc->name);
3582 fprintf (stderr, " binding: 0x%x (%s)\n",
3583 vc->alias_binding, vc->alias_binding->name);
3584 break;
3585 }
3586 vc = vc->next;
3587 }
3588}
3589
Brian Paul72030e02005-11-03 03:30:34 +00003590#endif /* DEBUG_PARSING */
Brian Paul7aebaf32005-10-30 21:23:23 +00003591
3592
3593/**
Jouk Jansen40322e12004-04-05 08:50:36 +00003594 * The main loop for parsing a fragment or vertex program
3595 *
Brian Paul72030e02005-11-03 03:30:34 +00003596 * \return 1 on error, 0 on success
Jouk Jansen40322e12004-04-05 08:50:36 +00003597 */
Brian Paul72030e02005-11-03 03:30:34 +00003598static GLint
Brian Paula088f162006-09-05 23:08:51 +00003599parse_instructions(GLcontext * ctx, const GLubyte * inst,
3600 struct var_cache **vc_head, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003601{
Brian Paul72030e02005-11-03 03:30:34 +00003602 const GLuint maxInst = (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
3603 ? ctx->Const.FragmentProgram.MaxInstructions
3604 : ctx->Const.VertexProgram.MaxInstructions;
Jouk Jansen40322e12004-04-05 08:50:36 +00003605 GLint err = 0;
3606
Brian Paul72030e02005-11-03 03:30:34 +00003607 ASSERT(MAX_INSTRUCTIONS >= maxInst);
3608
Jouk Jansen40322e12004-04-05 08:50:36 +00003609 Program->MajorVersion = (GLuint) * inst++;
3610 Program->MinorVersion = (GLuint) * inst++;
3611
3612 while (*inst != END) {
3613 switch (*inst++) {
3614
3615 case OPTION:
3616 switch (*inst++) {
3617 case ARB_PRECISION_HINT_FASTEST:
3618 Program->PrecisionOption = GL_FASTEST;
3619 break;
3620
3621 case ARB_PRECISION_HINT_NICEST:
3622 Program->PrecisionOption = GL_NICEST;
3623 break;
3624
3625 case ARB_FOG_EXP:
3626 Program->FogOption = GL_EXP;
3627 break;
3628
3629 case ARB_FOG_EXP2:
3630 Program->FogOption = GL_EXP2;
3631 break;
3632
3633 case ARB_FOG_LINEAR:
3634 Program->FogOption = GL_LINEAR;
3635 break;
3636
3637 case ARB_POSITION_INVARIANT:
3638 if (Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
Brian Paul45cd2f92005-11-03 02:25:10 +00003639 Program->HintPositionInvariant = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003640 break;
3641
3642 case ARB_FRAGMENT_PROGRAM_SHADOW:
3643 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3644 /* TODO ARB_fragment_program_shadow code */
3645 }
3646 break;
Michal Krolad22ce82004-10-11 08:13:25 +00003647
3648 case ARB_DRAW_BUFFERS:
3649 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3650 /* do nothing for now */
3651 }
3652 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00003653 }
3654 break;
3655
3656 case INSTRUCTION:
Brian Paul72030e02005-11-03 03:30:34 +00003657 /* check length */
3658 if (Program->Base.NumInstructions + 1 >= maxInst) {
Brian Paula088f162006-09-05 23:08:51 +00003659 program_error(ctx, Program->Position,
3660 "Max instruction count exceeded");
Brian Paul72030e02005-11-03 03:30:34 +00003661 return 1;
3662 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003663 Program->Position = parse_position (&inst);
Brian Paul72030e02005-11-03 03:30:34 +00003664 /* parse the current instruction */
Jouk Jansen40322e12004-04-05 08:50:36 +00003665 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003666 err = parse_fp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003667 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003668 }
3669 else {
Jouk Jansen40322e12004-04-05 08:50:36 +00003670 err = parse_vp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003671 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003672 }
3673
Brian Paul72030e02005-11-03 03:30:34 +00003674 /* increment instuction count */
Jouk Jansen40322e12004-04-05 08:50:36 +00003675 Program->Base.NumInstructions++;
3676 break;
3677
3678 case DECLARATION:
3679 err = parse_declaration (ctx, &inst, vc_head, Program);
3680 break;
3681
3682 default:
3683 break;
3684 }
3685
3686 if (err)
3687 break;
3688 }
3689
3690 /* Finally, tag on an OPCODE_END instruction */
Brian Paul8c41a142005-11-19 15:36:28 +00003691 {
Brian Paul7aebaf32005-10-30 21:23:23 +00003692 const GLuint numInst = Program->Base.NumInstructions;
Brian Paul8c41a142005-11-19 15:36:28 +00003693 _mesa_init_instruction(Program->Base.Instructions + numInst);
3694 Program->Base.Instructions[numInst].Opcode = OPCODE_END;
Jouk Jansen40322e12004-04-05 08:50:36 +00003695 /* YYY Wrong Position in program, whatever, at least not random -> crash
3696 Program->Position = parse_position (&inst);
3697 */
Brian Paul8c41a142005-11-19 15:36:28 +00003698 Program->Base.Instructions[numInst].StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003699 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003700 Program->Base.NumInstructions++;
3701
Brian Paul05051032005-11-01 04:36:33 +00003702 /*
3703 * Initialize native counts to logical counts. The device driver may
3704 * change them if program is translated into a hardware program.
3705 */
3706 Program->Base.NumNativeInstructions = Program->Base.NumInstructions;
3707 Program->Base.NumNativeTemporaries = Program->Base.NumTemporaries;
3708 Program->Base.NumNativeParameters = Program->Base.NumParameters;
3709 Program->Base.NumNativeAttributes = Program->Base.NumAttributes;
3710 Program->Base.NumNativeAddressRegs = Program->Base.NumAddressRegs;
Brian Paul05051032005-11-01 04:36:33 +00003711
Jouk Jansen40322e12004-04-05 08:50:36 +00003712 return err;
3713}
3714
Brian Paul7aebaf32005-10-30 21:23:23 +00003715
Jouk Jansen40322e12004-04-05 08:50:36 +00003716/* XXX temporary */
Brian Paula6c423d2004-08-25 15:59:48 +00003717__extension__ static char core_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +00003718#include "grammar_syn.h"
3719;
3720
Brian Paul7aebaf32005-10-30 21:23:23 +00003721
Brian Paul8c41a142005-11-19 15:36:28 +00003722/**
3723 * Set a grammar parameter.
3724 * \param name the grammar parameter
3725 * \param value the new parameter value
3726 * \return 0 if OK, 1 if error
3727 */
3728static int
3729set_reg8 (GLcontext *ctx, grammar id, const char *name, GLubyte value)
Jouk Jansen40322e12004-04-05 08:50:36 +00003730{
3731 char error_msg[300];
3732 GLint error_pos;
3733
Brian Paul8c41a142005-11-19 15:36:28 +00003734 if (grammar_set_reg8 (id, (const byte *) name, value))
Jouk Jansen40322e12004-04-05 08:50:36 +00003735 return 0;
3736
3737 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3738 _mesa_set_program_error (ctx, error_pos, error_msg);
3739 _mesa_error (ctx, GL_INVALID_OPERATION, "Grammar Register Error");
3740 return 1;
3741}
3742
Brian Paul8c41a142005-11-19 15:36:28 +00003743
3744/**
3745 * Enable support for the given language option in the parser.
3746 * \return 1 if OK, 0 if error
3747 */
3748static int
3749enable_ext(GLcontext *ctx, grammar id, const char *name)
Jouk Jansen40322e12004-04-05 08:50:36 +00003750{
Brian Paul8c41a142005-11-19 15:36:28 +00003751 return !set_reg8(ctx, id, name, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003752}
3753
Brian Paul8c41a142005-11-19 15:36:28 +00003754
3755/**
3756 * Enable parser extensions based on which OpenGL extensions are supported
3757 * by this rendering context.
3758 *
3759 * \return GL_TRUE if OK, GL_FALSE if error.
3760 */
3761static GLboolean
3762enable_parser_extensions(GLcontext *ctx, grammar id)
Jouk Jansen40322e12004-04-05 08:50:36 +00003763{
Brian Paul8c41a142005-11-19 15:36:28 +00003764#if 0
3765 /* These are not supported at this time */
3766 if ((ctx->Extensions.ARB_vertex_blend ||
3767 ctx->Extensions.EXT_vertex_weighting)
Brian Paul43cc1dc2006-09-05 23:11:09 +00003768 && !enable_ext(ctx, id, "vertex_blend"))
Brian Paul8c41a142005-11-19 15:36:28 +00003769 return GL_FALSE;
3770 if (ctx->Extensions.ARB_matrix_palette
3771 && !enable_ext(ctx, id, "matrix_palette"))
3772 return GL_FALSE;
3773 if (ctx->Extensions.ARB_fragment_program_shadow
3774 && !enable_ext(ctx, id, "fragment_program_shadow"))
3775 return GL_FALSE;
3776#endif
3777 if (ctx->Extensions.EXT_point_parameters
3778 && !enable_ext(ctx, id, "point_parameters"))
3779 return GL_FALSE;
3780 if (ctx->Extensions.EXT_secondary_color
3781 && !enable_ext(ctx, id, "secondary_color"))
3782 return GL_FALSE;
3783 if (ctx->Extensions.EXT_fog_coord
3784 && !enable_ext(ctx, id, "fog_coord"))
3785 return GL_FALSE;
3786 if (ctx->Extensions.NV_texture_rectangle
3787 && !enable_ext(ctx, id, "texture_rectangle"))
3788 return GL_FALSE;
3789 if (ctx->Extensions.ARB_draw_buffers
3790 && !enable_ext(ctx, id, "draw_buffers"))
3791 return GL_FALSE;
3792
Brian Paul3a557502006-09-05 23:15:29 +00003793#if 1
3794 /* hack for Warcraft (see bug 8060) */
3795 enable_ext(ctx, id, "vertex_blend");
3796#endif
3797
Brian Paul8c41a142005-11-19 15:36:28 +00003798 return GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003799}
3800
Brian Paul8c41a142005-11-19 15:36:28 +00003801
Jouk Jansen40322e12004-04-05 08:50:36 +00003802/**
3803 * This kicks everything off.
3804 *
3805 * \param ctx - The GL Context
3806 * \param str - The program string
3807 * \param len - The program string length
Brian Paul45703642005-10-29 15:52:31 +00003808 * \param program - The arb_program struct to return all the parsed info in
3809 * \return GL_TRUE on sucess, GL_FALSE on error
Jouk Jansen40322e12004-04-05 08:50:36 +00003810 */
Brian Paul8c41a142005-11-19 15:36:28 +00003811static GLboolean
3812_mesa_parse_arb_program(GLcontext *ctx, GLenum target,
3813 const GLubyte *str, GLsizei len,
3814 struct arb_program *program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003815{
3816 GLint a, err, error_pos;
3817 char error_msg[300];
3818 GLuint parsed_len;
3819 struct var_cache *vc_head;
3820 grammar arbprogram_syn_id;
3821 GLubyte *parsed, *inst;
3822 GLubyte *strz = NULL;
3823 static int arbprogram_syn_is_ok = 0; /* XXX temporary */
3824
Brian Paul8c41a142005-11-19 15:36:28 +00003825 /* set the program target before parsing */
3826 program->Base.Target = target;
3827
Brian Paul7f76b8f2004-09-10 01:05:39 +00003828 /* Reset error state */
3829 _mesa_set_program_error(ctx, -1, NULL);
3830
Brian Paul8c41a142005-11-19 15:36:28 +00003831 /* check if arb_grammar_text (arbprogram.syn) is syntactically correct */
Jouk Jansen40322e12004-04-05 08:50:36 +00003832 if (!arbprogram_syn_is_ok) {
Brian Paul8c41a142005-11-19 15:36:28 +00003833 /* One-time initialization of parsing system */
Jouk Jansen40322e12004-04-05 08:50:36 +00003834 grammar grammar_syn_id;
Jouk Jansen40322e12004-04-05 08:50:36 +00003835 GLuint parsed_len;
Jouk Jansen40322e12004-04-05 08:50:36 +00003836
3837 grammar_syn_id = grammar_load_from_text ((byte *) core_grammar_text);
3838 if (grammar_syn_id == 0) {
3839 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
Brian Paul8c41a142005-11-19 15:36:28 +00003840 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003841 _mesa_set_program_error (ctx, error_pos, error_msg);
3842 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003843 "glProgramStringARB(Error loading grammar rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003844 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003845 }
3846
Brian Paul8c41a142005-11-19 15:36:28 +00003847 err = !grammar_check(grammar_syn_id, (byte *) arb_grammar_text,
3848 &parsed, &parsed_len);
Jouk Jansen40322e12004-04-05 08:50:36 +00003849
Brian Paul49a80ca2006-04-28 15:40:11 +00003850 /* 'parsed' is unused here */
3851 _mesa_free (parsed);
3852 parsed = NULL;
3853
Brian Paul45703642005-10-29 15:52:31 +00003854 /* NOTE: we can't destroy grammar_syn_id right here because
3855 * grammar_destroy() can reset the last error
3856 */
Brian Paul8c41a142005-11-19 15:36:28 +00003857 if (err) {
3858 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003859 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3860 _mesa_set_program_error (ctx, error_pos, error_msg);
Brian Paul8c41a142005-11-19 15:36:28 +00003861 _mesa_error (ctx, GL_INVALID_OPERATION,
3862 "glProgramString(Error loading grammar rule set");
Jouk Jansen40322e12004-04-05 08:50:36 +00003863 grammar_destroy (grammar_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003864 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003865 }
3866
3867 grammar_destroy (grammar_syn_id);
3868
3869 arbprogram_syn_is_ok = 1;
3870 }
3871
3872 /* create the grammar object */
3873 arbprogram_syn_id = grammar_load_from_text ((byte *) arb_grammar_text);
3874 if (arbprogram_syn_id == 0) {
Brian Paul8c41a142005-11-19 15:36:28 +00003875 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003876 grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
3877 _mesa_set_program_error (ctx, error_pos, error_msg);
3878 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003879 "glProgramString(Error loading grammer rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003880 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003881 }
3882
3883 /* Set program_target register value */
Brian Paul55194df2005-11-19 23:29:18 +00003884 if (set_reg8 (ctx, arbprogram_syn_id, "program_target",
Jouk Jansen40322e12004-04-05 08:50:36 +00003885 program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) {
3886 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003887 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003888 }
3889
Brian Paul8c41a142005-11-19 15:36:28 +00003890 if (!enable_parser_extensions(ctx, arbprogram_syn_id)) {
3891 grammar_destroy(arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003892 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003893 }
3894
3895 /* check for NULL character occurences */
3896 {
Brian Paul8c41a142005-11-19 15:36:28 +00003897 GLint i;
3898 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003899 if (str[i] == '\0') {
Brian Paula088f162006-09-05 23:08:51 +00003900 program_error(ctx, i, "illegal character");
Jouk Jansen40322e12004-04-05 08:50:36 +00003901 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003902 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003903 }
Brian Paul8c41a142005-11-19 15:36:28 +00003904 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003905 }
3906
3907 /* copy the program string to a null-terminated string */
Brian Paulbdd15b52004-05-04 15:11:06 +00003908 strz = (GLubyte *) _mesa_malloc (len + 1);
Brian Paul45703642005-10-29 15:52:31 +00003909 if (!strz) {
Brian Paul8c41a142005-11-19 15:36:28 +00003910 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glProgramStringARB");
3911 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003912 return GL_FALSE;
3913 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003914 _mesa_memcpy (strz, str, len);
3915 strz[len] = '\0';
3916
Michal Krolb80bc052004-10-21 14:09:54 +00003917 /* do a fast check on program string - initial production buffer is 4K */
Brian Paul8c41a142005-11-19 15:36:28 +00003918 err = !grammar_fast_check(arbprogram_syn_id, strz,
3919 &parsed, &parsed_len, 0x1000);
Jouk Jansen40322e12004-04-05 08:50:36 +00003920
3921 /* Syntax parse error */
Brian Paul8c41a142005-11-19 15:36:28 +00003922 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00003923 grammar_get_last_error((GLubyte *) error_msg, 300, &error_pos);
3924 program_error(ctx, error_pos, error_msg);
Brian Paul5fe90292004-07-20 21:15:13 +00003925
Brian Paulb3aefd12005-09-19 20:12:32 +00003926#if DEBUG_PARSING
Brian Paula088f162006-09-05 23:08:51 +00003927 /* useful for debugging */
Brian Paulb3aefd12005-09-19 20:12:32 +00003928 do {
Brian Paul5fe90292004-07-20 21:15:13 +00003929 int line, col;
3930 char *s;
Brian Paul45703642005-10-29 15:52:31 +00003931 fprintf(stderr, "program: %s\n", (char *) strz);
3932 fprintf(stderr, "Error Pos: %d\n", ctx->program.ErrorPos);
Brian Paula088f162006-09-05 23:08:51 +00003933 s = (char *) _mesa_find_line_column(strz, strz+ctx->program.ErrorPos,
3934 &line, &col);
Brian Paulb3aefd12005-09-19 20:12:32 +00003935 fprintf(stderr, "line %d col %d: %s\n", line, col, s);
3936 } while (0)
3937#endif
Brian Paul5fe90292004-07-20 21:15:13 +00003938
Brian Paula088f162006-09-05 23:08:51 +00003939 _mesa_free(strz);
3940 _mesa_free(parsed);
3941
Jouk Jansen40322e12004-04-05 08:50:36 +00003942 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003943 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003944 }
3945
Jouk Jansen40322e12004-04-05 08:50:36 +00003946 grammar_destroy (arbprogram_syn_id);
3947
Brian Paul8c41a142005-11-19 15:36:28 +00003948 /*
3949 * Program string is syntactically correct at this point
3950 * Parse the tokenized version of the program now, generating
3951 * vertex/fragment program instructions.
3952 */
3953
Jouk Jansen40322e12004-04-05 08:50:36 +00003954 /* Initialize the arb_program struct */
3955 program->Base.String = strz;
Brian Paul383c39e2006-08-25 15:14:25 +00003956 program->Base.Instructions = _mesa_alloc_instructions(MAX_INSTRUCTIONS);
Jouk Jansen40322e12004-04-05 08:50:36 +00003957 program->Base.NumInstructions =
3958 program->Base.NumTemporaries =
3959 program->Base.NumParameters =
3960 program->Base.NumAttributes = program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00003961 program->Base.Parameters = _mesa_new_parameter_list ();
3962 program->Base.InputsRead = 0x0;
3963 program->Base.OutputsWritten = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003964 program->Position = 0;
3965 program->MajorVersion = program->MinorVersion = 0;
3966 program->PrecisionOption = GL_DONT_CARE;
3967 program->FogOption = GL_NONE;
3968 program->HintPositionInvariant = GL_FALSE;
3969 for (a = 0; a < MAX_TEXTURE_IMAGE_UNITS; a++)
Brian Paul45cd2f92005-11-03 02:25:10 +00003970 program->TexturesUsed[a] = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003971 program->NumAluInstructions =
3972 program->NumTexInstructions =
3973 program->NumTexIndirections = 0;
Keith Whitwellc3626a92005-11-01 17:25:49 +00003974 program->UsesKill = 0;
3975
Jouk Jansen40322e12004-04-05 08:50:36 +00003976 vc_head = NULL;
Brian Paul45703642005-10-29 15:52:31 +00003977 err = GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003978
3979 /* Start examining the tokens in the array */
3980 inst = parsed;
3981
3982 /* Check the grammer rev */
3983 if (*inst++ != REVISION) {
Brian Paula088f162006-09-05 23:08:51 +00003984 program_error (ctx, 0, "Grammar version mismatch");
Brian Paul45703642005-10-29 15:52:31 +00003985 err = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003986 }
3987 else {
Michal Krolb80bc052004-10-21 14:09:54 +00003988 /* ignore program target */
3989 inst++;
Brian Paul8c41a142005-11-19 15:36:28 +00003990 err = parse_instructions(ctx, inst, &vc_head, program);
Jouk Jansen40322e12004-04-05 08:50:36 +00003991 }
3992
3993 /*debug_variables(ctx, vc_head, program); */
3994
3995 /* We're done with the parsed binary array */
3996 var_cache_destroy (&vc_head);
3997
3998 _mesa_free (parsed);
Brian Paul45703642005-10-29 15:52:31 +00003999
Brian Paul8c41a142005-11-19 15:36:28 +00004000 /* Reallocate the instruction array from size [MAX_INSTRUCTIONS]
4001 * to size [ap.Base.NumInstructions].
4002 */
Brian Paula7543902006-08-24 21:58:32 +00004003 program->Base.Instructions
4004 = _mesa_realloc_instructions(program->Base.Instructions,
4005 MAX_INSTRUCTIONS,
4006 program->Base.NumInstructions);
4007
Brian Paul45703642005-10-29 15:52:31 +00004008 return !err;
Jouk Jansen40322e12004-04-05 08:50:36 +00004009}
Brian Paul8c41a142005-11-19 15:36:28 +00004010
4011
4012
4013void
4014_mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target,
4015 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004016 struct gl_fragment_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004017{
4018 struct arb_program ap;
4019 GLuint i;
4020
4021 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
Brian Paul95801792005-12-06 15:41:43 +00004022 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004023 /* Error in the program. Just return. */
4024 return;
4025 }
4026
4027 /* Copy the relevant contents of the arb_program struct into the
4028 * fragment_program struct.
4029 */
4030 program->Base.String = ap.Base.String;
4031 program->Base.NumInstructions = ap.Base.NumInstructions;
4032 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4033 program->Base.NumParameters = ap.Base.NumParameters;
4034 program->Base.NumAttributes = ap.Base.NumAttributes;
4035 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004036 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4037 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4038 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4039 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4040 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004041 program->NumAluInstructions = ap.NumAluInstructions;
4042 program->NumTexInstructions = ap.NumTexInstructions;
4043 program->NumTexIndirections = ap.NumTexIndirections;
Brian Paul006e1832006-03-29 15:15:37 +00004044 program->NumNativeAluInstructions = ap.NumAluInstructions;
4045 program->NumNativeTexInstructions = ap.NumTexInstructions;
4046 program->NumNativeTexIndirections = ap.NumTexIndirections;
Brian Paul8c41a142005-11-19 15:36:28 +00004047 program->Base.InputsRead = ap.Base.InputsRead;
4048 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4049 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++)
4050 program->TexturesUsed[i] = ap.TexturesUsed[i];
4051 program->FogOption = ap.FogOption;
4052
4053 if (program->Base.Instructions)
4054 _mesa_free(program->Base.Instructions);
4055 program->Base.Instructions = ap.Base.Instructions;
4056
4057 if (program->Base.Parameters)
4058 _mesa_free_parameter_list(program->Base.Parameters);
4059 program->Base.Parameters = ap.Base.Parameters;
4060
4061#if DEBUG_FP
4062 _mesa_print_program(&program.Base);
4063#endif
4064}
4065
4066
4067
4068/**
4069 * Parse the vertex program string. If success, update the given
4070 * vertex_program object with the new program. Else, leave the vertex_program
4071 * object unchanged.
4072 */
4073void
4074_mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
4075 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004076 struct gl_vertex_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004077{
4078 struct arb_program ap;
4079
4080 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
4081
Brian Paul95801792005-12-06 15:41:43 +00004082 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004083 /* Error in the program. Just return. */
4084 return;
4085 }
4086
4087 /* Copy the relevant contents of the arb_program struct into the
4088 * vertex_program struct.
4089 */
4090 program->Base.String = ap.Base.String;
4091 program->Base.NumInstructions = ap.Base.NumInstructions;
4092 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4093 program->Base.NumParameters = ap.Base.NumParameters;
4094 program->Base.NumAttributes = ap.Base.NumAttributes;
4095 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004096 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4097 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4098 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4099 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4100 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004101 program->Base.InputsRead = ap.Base.InputsRead;
4102 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4103 program->IsPositionInvariant = ap.HintPositionInvariant;
4104
4105 if (program->Base.Instructions)
4106 _mesa_free(program->Base.Instructions);
4107 program->Base.Instructions = ap.Base.Instructions;
4108
4109 if (program->Base.Parameters)
4110 _mesa_free_parameter_list(program->Base.Parameters);
4111 program->Base.Parameters = ap.Base.Parameters;
4112
4113#if DEBUG_VP
4114 _mesa_print_program(&program->Base);
4115#endif
4116}