blob: 898be0f20060a0aba817e2b08d3891cf867a3281 [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 Paula088f162006-09-05 23:08:51 +00001494 program_error(ctx, Program->Position,
1495 "ARB_vertex_blend not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001496 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001497 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001498
1499 case VERTEX_ATTRIB_NORMAL:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001500 *inputReg = VERT_ATTRIB_NORMAL;
Jouk Jansen40322e12004-04-05 08:50:36 +00001501 break;
1502
1503 case VERTEX_ATTRIB_COLOR:
1504 {
1505 GLint color;
Jouk Jansen40322e12004-04-05 08:50:36 +00001506 err = parse_color_type (ctx, inst, Program, &color);
1507 if (color) {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001508 *inputReg = VERT_ATTRIB_COLOR1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001509 }
1510 else {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001511 *inputReg = VERT_ATTRIB_COLOR0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001512 }
1513 }
1514 break;
1515
1516 case VERTEX_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001517 *inputReg = VERT_ATTRIB_FOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00001518 break;
1519
1520 case VERTEX_ATTRIB_TEXCOORD:
1521 {
1522 GLuint unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001523 err = parse_texcoord_num (ctx, inst, Program, &unit);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001524 *inputReg = VERT_ATTRIB_TEX0 + unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001525 }
1526 break;
1527
Jouk Jansen40322e12004-04-05 08:50:36 +00001528 case VERTEX_ATTRIB_MATRIXINDEX:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001529 /* Not supported at this time */
1530 {
1531 const char *msg = "ARB_palette_matrix not supported";
1532 parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001533 program_error(ctx, Program->Position, msg);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001534 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001535 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001536
1537 case VERTEX_ATTRIB_GENERIC:
1538 {
1539 GLuint attrib;
Tilman Sauerbeck6c334752006-06-28 16:26:20 +00001540 err = parse_generic_attrib_num(ctx, inst, Program, &attrib);
Brian Paula088f162006-09-05 23:08:51 +00001541 if (!err) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001542 *is_generic = 1;
Brian Paul095c6692006-04-25 00:21:32 +00001543 /* Add VERT_ATTRIB_GENERIC0 here because ARB_vertex_program's
1544 * attributes do not alias the conventional vertex
1545 * attributes.
1546 */
1547 if (attrib > 0)
1548 *inputReg = attrib + VERT_ATTRIB_GENERIC0;
Brian Paul919f6a02006-05-29 14:37:56 +00001549 else
1550 *inputReg = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001551 }
1552 }
1553 break;
1554
1555 default:
1556 err = 1;
1557 break;
1558 }
1559 }
1560
Jouk Jansen40322e12004-04-05 08:50:36 +00001561 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00001562 program_error(ctx, Program->Position, "Bad attribute binding");
Jouk Jansen40322e12004-04-05 08:50:36 +00001563 }
1564
Brian Paulde997602005-11-12 17:53:14 +00001565 Program->Base.InputsRead |= (1 << *inputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001566
1567 return err;
1568}
1569
Brian Paul7aebaf32005-10-30 21:23:23 +00001570
Jouk Jansen40322e12004-04-05 08:50:36 +00001571/**
1572 * This translates between a binary token for an output variable type
1573 * and the mesa token for the same thing.
1574 *
Brian Paul7aebaf32005-10-30 21:23:23 +00001575 * \param inst The parsed tokens
1576 * \param outputReg Returned index/number of the output register,
Brian Paul90ebb582005-11-02 18:06:12 +00001577 * one of the VERT_RESULT_* or FRAG_RESULT_* values.
Jouk Jansen40322e12004-04-05 08:50:36 +00001578 */
1579static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001580parse_result_binding(GLcontext *ctx, const GLubyte **inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00001581 GLuint *outputReg, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00001582{
Brian Paul7aebaf32005-10-30 21:23:23 +00001583 const GLubyte token = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001584
Brian Paul7aebaf32005-10-30 21:23:23 +00001585 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001586 case FRAGMENT_RESULT_COLOR:
Jouk Jansen40322e12004-04-05 08:50:36 +00001587 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001588 GLuint out_color;
1589
Brian Paulbe76b7f2004-10-04 14:40:05 +00001590 /* This gets result of the color buffer we're supposed to
Brian Paul7aebaf32005-10-30 21:23:23 +00001591 * draw into. This pertains to GL_ARB_draw_buffers.
Brian Paulbe76b7f2004-10-04 14:40:05 +00001592 */
1593 parse_output_color_num(ctx, inst, Program, &out_color);
Brian Paul7aebaf32005-10-30 21:23:23 +00001594 ASSERT(out_color < MAX_DRAW_BUFFERS);
Brian Paul90ebb582005-11-02 18:06:12 +00001595 *outputReg = FRAG_RESULT_COLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001596 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001597 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001598 /* for vtx programs, this is VERTEX_RESULT_POSITION */
1599 *outputReg = VERT_RESULT_HPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001600 }
1601 break;
1602
1603 case FRAGMENT_RESULT_DEPTH:
Jouk Jansen40322e12004-04-05 08:50:36 +00001604 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001605 /* for frag programs, this is FRAGMENT_RESULT_DEPTH */
Brian Paul90ebb582005-11-02 18:06:12 +00001606 *outputReg = FRAG_RESULT_DEPR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001607 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001608 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001609 /* for vtx programs, this is VERTEX_RESULT_COLOR */
Jouk Jansen40322e12004-04-05 08:50:36 +00001610 GLint color_type;
1611 GLuint face_type = parse_face_type(inst);
Brian Paul7aebaf32005-10-30 21:23:23 +00001612 GLint err = parse_color_type(ctx, inst, Program, &color_type);
1613 if (err)
1614 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001615
Jouk Jansen40322e12004-04-05 08:50:36 +00001616 if (face_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001617 /* back face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001618 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001619 *outputReg = VERT_RESULT_BFC1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001620 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001621 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001622 *outputReg = VERT_RESULT_BFC0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001623 }
1624 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001625 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001626 /* front face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001627 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001628 *outputReg = VERT_RESULT_COL1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001629 }
1630 /* primary color */
1631 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001632 *outputReg = VERT_RESULT_COL0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001633 }
1634 }
1635 }
1636 break;
1637
1638 case VERTEX_RESULT_FOGCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001639 *outputReg = VERT_RESULT_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001640 break;
1641
1642 case VERTEX_RESULT_POINTSIZE:
Brian Paul7aebaf32005-10-30 21:23:23 +00001643 *outputReg = VERT_RESULT_PSIZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00001644 break;
1645
1646 case VERTEX_RESULT_TEXCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001647 {
1648 GLuint unit;
1649 if (parse_texcoord_num (ctx, inst, Program, &unit))
1650 return 1;
1651 *outputReg = VERT_RESULT_TEX0 + unit;
1652 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001653 break;
1654 }
1655
Brian Paulde997602005-11-12 17:53:14 +00001656 Program->Base.OutputsWritten |= (1 << *outputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001657
1658 return 0;
1659}
1660
Brian Paul7aebaf32005-10-30 21:23:23 +00001661
Jouk Jansen40322e12004-04-05 08:50:36 +00001662/**
1663 * This handles the declaration of ATTRIB variables
1664 *
1665 * XXX: Still needs
1666 * parse_vert_attrib_binding(), or something like that
1667 *
1668 * \return 0 on sucess, 1 on error
1669 */
1670static GLint
Brian Paula088f162006-09-05 23:08:51 +00001671parse_attrib (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001672 struct arb_program *Program)
1673{
1674 GLuint found;
1675 char *error_msg;
1676 struct var_cache *attrib_var;
1677
1678 attrib_var = parse_string (inst, vc_head, Program, &found);
1679 Program->Position = parse_position (inst);
1680 if (found) {
1681 error_msg = (char *)
1682 _mesa_malloc (_mesa_strlen ((char *) attrib_var->name) + 40);
1683 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1684 attrib_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001685 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001686 _mesa_free (error_msg);
1687 return 1;
1688 }
1689
1690 attrib_var->type = vt_attrib;
1691
Brian Paul7aebaf32005-10-30 21:23:23 +00001692 if (parse_attrib_binding(ctx, inst, Program, &attrib_var->attrib_binding,
Brian Paul7aebaf32005-10-30 21:23:23 +00001693 &attrib_var->attrib_is_generic))
1694 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001695
Brian Paul7aebaf32005-10-30 21:23:23 +00001696 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00001697 program_error(ctx, Program->Position,
1698 "Cannot use both a generic vertex attribute "
1699 "and a specific attribute of the same type");
Brian Paul7aebaf32005-10-30 21:23:23 +00001700 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001701 }
1702
1703 Program->Base.NumAttributes++;
1704 return 0;
1705}
1706
1707/**
1708 * \param use -- TRUE if we're called when declaring implicit parameters,
1709 * FALSE if we're declaraing variables. This has to do with
1710 * if we get a signed or unsigned float for scalar constants
1711 */
1712static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001713parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001714 struct var_cache *param_var,
1715 struct arb_program *Program, GLboolean use)
1716{
1717 GLint idx;
Brian Paul7aebaf32005-10-30 21:23:23 +00001718 GLuint err = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001719 GLint state_tokens[6];
1720 GLfloat const_values[4];
1721
Jouk Jansen40322e12004-04-05 08:50:36 +00001722 switch (*(*inst)++) {
1723 case PARAM_STATE_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001724 if (parse_state_single_item (ctx, inst, Program, state_tokens))
1725 return 1;
1726
1727 /* If we adding STATE_MATRIX that has multiple rows, we need to
1728 * unroll it and call _mesa_add_state_reference() for each row
1729 */
1730 if ((state_tokens[0] == STATE_MATRIX)
1731 && (state_tokens[3] != state_tokens[4])) {
1732 GLint row;
1733 GLint first_row = state_tokens[3];
1734 GLint last_row = state_tokens[4];
1735
1736 for (row = first_row; row <= last_row; row++) {
1737 state_tokens[3] = state_tokens[4] = row;
1738
Brian Paulde997602005-11-12 17:53:14 +00001739 idx = _mesa_add_state_reference(Program->Base.Parameters,
1740 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001741 if (param_var->param_binding_begin == ~0U)
1742 param_var->param_binding_begin = idx;
1743 param_var->param_binding_length++;
1744 Program->Base.NumParameters++;
1745 }
1746 }
1747 else {
Brian Paulde997602005-11-12 17:53:14 +00001748 idx = _mesa_add_state_reference(Program->Base.Parameters,
1749 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001750 if (param_var->param_binding_begin == ~0U)
1751 param_var->param_binding_begin = idx;
1752 param_var->param_binding_length++;
1753 Program->Base.NumParameters++;
1754 }
1755 break;
1756
1757 case PARAM_PROGRAM_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001758 if (parse_program_single_item (ctx, inst, Program, state_tokens))
1759 return 1;
Brian Paulde997602005-11-12 17:53:14 +00001760 idx = _mesa_add_state_reference (Program->Base.Parameters, state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001761 if (param_var->param_binding_begin == ~0U)
1762 param_var->param_binding_begin = idx;
1763 param_var->param_binding_length++;
1764 Program->Base.NumParameters++;
1765
1766 /* Check if there is more: 0 -> we're done, else its an integer */
1767 if (**inst) {
1768 GLuint out_of_range, new_idx;
1769 GLuint start_idx = state_tokens[2] + 1;
1770 GLuint end_idx = parse_integer (inst, Program);
1771
1772 out_of_range = 0;
1773 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1774 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001775 && (end_idx >= ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001776 || ((state_tokens[1] == STATE_LOCAL)
1777 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001778 ctx->Const.FragmentProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001779 out_of_range = 1;
1780 }
1781 else {
1782 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001783 && (end_idx >= ctx->Const.VertexProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001784 || ((state_tokens[1] == STATE_LOCAL)
1785 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001786 ctx->Const.VertexProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001787 out_of_range = 1;
1788 }
1789 if (out_of_range) {
Brian Paula088f162006-09-05 23:08:51 +00001790 program_error(ctx, Program->Position,
1791 "Invalid Program Parameter"); /*end_idx*/
Jouk Jansen40322e12004-04-05 08:50:36 +00001792 return 1;
1793 }
1794
1795 for (new_idx = start_idx; new_idx <= end_idx; new_idx++) {
1796 state_tokens[2] = new_idx;
Brian Paulde997602005-11-12 17:53:14 +00001797 idx = _mesa_add_state_reference(Program->Base.Parameters,
1798 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001799 param_var->param_binding_length++;
1800 Program->Base.NumParameters++;
1801 }
1802 }
Brian Paul7aebaf32005-10-30 21:23:23 +00001803 else {
1804 (*inst)++;
1805 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001806 break;
1807
1808 case PARAM_CONSTANT:
1809 parse_constant (inst, const_values, Program, use);
Brian Paulde997602005-11-12 17:53:14 +00001810 idx = _mesa_add_named_constant(Program->Base.Parameters,
1811 (char *) param_var->name,
1812 const_values);
Jouk Jansen40322e12004-04-05 08:50:36 +00001813 if (param_var->param_binding_begin == ~0U)
1814 param_var->param_binding_begin = idx;
1815 param_var->param_binding_length++;
1816 Program->Base.NumParameters++;
1817 break;
1818
1819 default:
Brian Paula088f162006-09-05 23:08:51 +00001820 program_error(ctx, Program->Position,
1821 "Unexpected token (in parse_param_elements())");
Jouk Jansen40322e12004-04-05 08:50:36 +00001822 return 1;
1823 }
1824
1825 /* Make sure we haven't blown past our parameter limits */
1826 if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
1827 (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001828 ctx->Const.VertexProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001829 || ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1830 && (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001831 ctx->Const.FragmentProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001832 program_error(ctx, Program->Position, "Too many parameter variables");
Jouk Jansen40322e12004-04-05 08:50:36 +00001833 return 1;
1834 }
1835
1836 return err;
1837}
1838
Brian Paul7aebaf32005-10-30 21:23:23 +00001839
Jouk Jansen40322e12004-04-05 08:50:36 +00001840/**
1841 * This picks out PARAM program parameter bindings.
1842 *
1843 * XXX: This needs to be stressed & tested
1844 *
1845 * \return 0 on sucess, 1 on error
1846 */
1847static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001848parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001849 struct arb_program *Program)
1850{
Brian Paulbd997cd2004-07-20 21:12:56 +00001851 GLuint found, err;
1852 GLint specified_length;
Jouk Jansen40322e12004-04-05 08:50:36 +00001853 struct var_cache *param_var;
1854
1855 err = 0;
1856 param_var = parse_string (inst, vc_head, Program, &found);
1857 Program->Position = parse_position (inst);
1858
1859 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001860 char *error_msg = (char *)
1861 _mesa_malloc (_mesa_strlen ((char *) param_var->name) + 40);
Jouk Jansen40322e12004-04-05 08:50:36 +00001862 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1863 param_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001864 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001865 _mesa_free (error_msg);
1866 return 1;
1867 }
1868
1869 specified_length = parse_integer (inst, Program);
1870
1871 if (specified_length < 0) {
Brian Paula088f162006-09-05 23:08:51 +00001872 program_error(ctx, Program->Position, "Negative parameter array length");
Jouk Jansen40322e12004-04-05 08:50:36 +00001873 return 1;
1874 }
1875
1876 param_var->type = vt_param;
1877 param_var->param_binding_length = 0;
1878
1879 /* Right now, everything is shoved into the main state register file.
1880 *
1881 * In the future, it would be nice to leave things ENV/LOCAL params
1882 * in their respective register files, if possible
1883 */
1884 param_var->param_binding_type = PROGRAM_STATE_VAR;
1885
1886 /* Remember to:
1887 * * - add each guy to the parameter list
1888 * * - increment the param_var->param_binding_len
1889 * * - store the param_var->param_binding_begin for the first one
1890 * * - compare the actual len to the specified len at the end
1891 */
1892 while (**inst != PARAM_NULL) {
1893 if (parse_param_elements (ctx, inst, param_var, Program, GL_FALSE))
1894 return 1;
1895 }
1896
1897 /* Test array length here! */
1898 if (specified_length) {
Brian Paula6c423d2004-08-25 15:59:48 +00001899 if (specified_length != (int)param_var->param_binding_length) {
Brian Paula088f162006-09-05 23:08:51 +00001900 program_error(ctx, Program->Position,
1901 "Declared parameter array length does not match parameter list");
Jouk Jansen40322e12004-04-05 08:50:36 +00001902 }
1903 }
1904
1905 (*inst)++;
1906
1907 return 0;
1908}
1909
1910/**
1911 *
1912 */
1913static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001914parse_param_use (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001915 struct arb_program *Program, struct var_cache **new_var)
1916{
1917 struct var_cache *param_var;
1918
1919 /* First, insert a dummy entry into the var_cache */
1920 var_cache_create (&param_var);
Brian Paul6a769d92006-04-28 15:42:15 +00001921 param_var->name = (const GLubyte *) " ";
Jouk Jansen40322e12004-04-05 08:50:36 +00001922 param_var->type = vt_param;
1923
1924 param_var->param_binding_length = 0;
1925 /* Don't fill in binding_begin; We use the default value of -1
1926 * to tell if its already initialized, elsewhere.
1927 *
1928 * param_var->param_binding_begin = 0;
1929 */
1930 param_var->param_binding_type = PROGRAM_STATE_VAR;
1931
1932 var_cache_append (vc_head, param_var);
1933
1934 /* Then fill it with juicy parameter goodness */
1935 if (parse_param_elements (ctx, inst, param_var, Program, GL_TRUE))
1936 return 1;
1937
1938 *new_var = param_var;
1939
1940 return 0;
1941}
1942
1943
1944/**
1945 * This handles the declaration of TEMP variables
1946 *
1947 * \return 0 on sucess, 1 on error
1948 */
1949static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001950parse_temp (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001951 struct arb_program *Program)
1952{
1953 GLuint found;
1954 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00001955
1956 while (**inst != 0) {
1957 temp_var = parse_string (inst, vc_head, Program, &found);
1958 Program->Position = parse_position (inst);
1959 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001960 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00001961 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
1962 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1963 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001964 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001965 _mesa_free (error_msg);
1966 return 1;
1967 }
1968
1969 temp_var->type = vt_temp;
1970
1971 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
1972 (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001973 ctx->Const.FragmentProgram.MaxTemps))
Jouk Jansen40322e12004-04-05 08:50:36 +00001974 || ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
1975 && (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001976 ctx->Const.VertexProgram.MaxTemps))) {
Brian Paula088f162006-09-05 23:08:51 +00001977 program_error(ctx, Program->Position,
1978 "Too many TEMP variables declared");
Jouk Jansen40322e12004-04-05 08:50:36 +00001979 return 1;
1980 }
1981
1982 temp_var->temp_binding = Program->Base.NumTemporaries;
1983 Program->Base.NumTemporaries++;
1984 }
1985 (*inst)++;
1986
1987 return 0;
1988}
1989
1990/**
1991 * This handles variables of the OUTPUT variety
1992 *
1993 * \return 0 on sucess, 1 on error
1994 */
1995static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001996parse_output (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001997 struct arb_program *Program)
1998{
1999 GLuint found;
2000 struct var_cache *output_var;
Brian Paul7aebaf32005-10-30 21:23:23 +00002001 GLuint err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002002
2003 output_var = parse_string (inst, vc_head, Program, &found);
2004 Program->Position = parse_position (inst);
2005 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002006 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002007 _mesa_malloc (_mesa_strlen ((char *) output_var->name) + 40);
2008 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2009 output_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002010 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002011 _mesa_free (error_msg);
2012 return 1;
2013 }
2014
2015 output_var->type = vt_output;
Brian Paul7aebaf32005-10-30 21:23:23 +00002016
2017 err = parse_result_binding(ctx, inst, &output_var->output_binding, Program);
2018 return err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002019}
2020
2021/**
2022 * This handles variables of the ALIAS kind
2023 *
2024 * \return 0 on sucess, 1 on error
2025 */
2026static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002027parse_alias (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002028 struct arb_program *Program)
2029{
2030 GLuint found;
2031 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002032
2033 temp_var = parse_string (inst, vc_head, Program, &found);
2034 Program->Position = parse_position (inst);
2035
2036 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002037 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002038 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2039 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2040 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002041 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002042 _mesa_free (error_msg);
2043 return 1;
2044 }
2045
2046 temp_var->type = vt_alias;
2047 temp_var->alias_binding = parse_string (inst, vc_head, Program, &found);
2048 Program->Position = parse_position (inst);
2049
2050 if (!found)
2051 {
Brian Paul7aebaf32005-10-30 21:23:23 +00002052 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002053 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2054 _mesa_sprintf (error_msg, "Alias value %s is not defined",
2055 temp_var->alias_binding->name);
Brian Paula088f162006-09-05 23:08:51 +00002056 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002057 _mesa_free (error_msg);
2058 return 1;
2059 }
2060
2061 return 0;
2062}
2063
2064/**
2065 * This handles variables of the ADDRESS kind
2066 *
2067 * \return 0 on sucess, 1 on error
2068 */
2069static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002070parse_address (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002071 struct arb_program *Program)
2072{
2073 GLuint found;
2074 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002075
2076 while (**inst != 0) {
2077 temp_var = parse_string (inst, vc_head, Program, &found);
2078 Program->Position = parse_position (inst);
2079 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002080 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002081 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2082 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2083 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002084 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002085 _mesa_free (error_msg);
2086 return 1;
2087 }
2088
2089 temp_var->type = vt_address;
2090
2091 if (Program->Base.NumAddressRegs >=
Brian Paul05051032005-11-01 04:36:33 +00002092 ctx->Const.VertexProgram.MaxAddressRegs) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002093 const char *msg = "Too many ADDRESS variables declared";
Brian Paula088f162006-09-05 23:08:51 +00002094 program_error(ctx, Program->Position, msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002095 return 1;
2096 }
2097
2098 temp_var->address_binding = Program->Base.NumAddressRegs;
2099 Program->Base.NumAddressRegs++;
2100 }
2101 (*inst)++;
2102
2103 return 0;
2104}
2105
2106/**
2107 * Parse a program declaration
2108 *
2109 * \return 0 on sucess, 1 on error
2110 */
2111static GLint
Brian Paula088f162006-09-05 23:08:51 +00002112parse_declaration (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002113 struct arb_program *Program)
2114{
2115 GLint err = 0;
2116
2117 switch (*(*inst)++) {
2118 case ADDRESS:
2119 err = parse_address (ctx, inst, vc_head, Program);
2120 break;
2121
2122 case ALIAS:
2123 err = parse_alias (ctx, inst, vc_head, Program);
2124 break;
2125
2126 case ATTRIB:
2127 err = parse_attrib (ctx, inst, vc_head, Program);
2128 break;
2129
2130 case OUTPUT:
2131 err = parse_output (ctx, inst, vc_head, Program);
2132 break;
2133
2134 case PARAM:
2135 err = parse_param (ctx, inst, vc_head, Program);
2136 break;
2137
2138 case TEMP:
2139 err = parse_temp (ctx, inst, vc_head, Program);
2140 break;
2141 }
2142
2143 return err;
2144}
2145
2146/**
Brian Paul7aebaf32005-10-30 21:23:23 +00002147 * Handle the parsing out of a masked destination register, either for a
2148 * vertex or fragment program.
Jouk Jansen40322e12004-04-05 08:50:36 +00002149 *
2150 * If we are a vertex program, make sure we don't write to
Brian Paul7aebaf32005-10-30 21:23:23 +00002151 * result.position if we have specified that the program is
Jouk Jansen40322e12004-04-05 08:50:36 +00002152 * position invariant
2153 *
2154 * \param File - The register file we write to
2155 * \param Index - The register index we write to
2156 * \param WriteMask - The mask controlling which components we write (1->write)
2157 *
2158 * \return 0 on sucess, 1 on error
2159 */
2160static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002161parse_masked_dst_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002162 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7aebaf32005-10-30 21:23:23 +00002163 enum register_file *File, GLuint *Index, GLint *WriteMask)
Jouk Jansen40322e12004-04-05 08:50:36 +00002164{
Brian Paul7aebaf32005-10-30 21:23:23 +00002165 GLuint tmp, result;
Jouk Jansen40322e12004-04-05 08:50:36 +00002166 struct var_cache *dst;
2167
2168 /* We either have a result register specified, or a
2169 * variable that may or may not be writable
2170 */
2171 switch (*(*inst)++) {
2172 case REGISTER_RESULT:
Brian Paul7aebaf32005-10-30 21:23:23 +00002173 if (parse_result_binding(ctx, inst, Index, Program))
Jouk Jansen40322e12004-04-05 08:50:36 +00002174 return 1;
2175 *File = PROGRAM_OUTPUT;
2176 break;
2177
2178 case REGISTER_ESTABLISHED_NAME:
2179 dst = parse_string (inst, vc_head, Program, &result);
2180 Program->Position = parse_position (inst);
2181
2182 /* If the name has never been added to our symbol table, we're hosed */
2183 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002184 program_error(ctx, Program->Position, "0: Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002185 return 1;
2186 }
2187
2188 switch (dst->type) {
2189 case vt_output:
2190 *File = PROGRAM_OUTPUT;
Brian Paul7aebaf32005-10-30 21:23:23 +00002191 *Index = dst->output_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002192 break;
2193
2194 case vt_temp:
2195 *File = PROGRAM_TEMPORARY;
2196 *Index = dst->temp_binding;
2197 break;
2198
2199 /* If the var type is not vt_output or vt_temp, no go */
2200 default:
Brian Paula088f162006-09-05 23:08:51 +00002201 program_error(ctx, Program->Position,
2202 "Destination register is read only");
Jouk Jansen40322e12004-04-05 08:50:36 +00002203 return 1;
2204 }
2205 break;
2206
2207 default:
Brian Paula088f162006-09-05 23:08:51 +00002208 program_error(ctx, Program->Position,
2209 "Unexpected opcode in parse_masked_dst_reg()");
Jouk Jansen40322e12004-04-05 08:50:36 +00002210 return 1;
2211 }
2212
2213
2214 /* Position invariance test */
2215 /* This test is done now in syntax portion - when position invariance OPTION
2216 is specified, "result.position" rule is disabled so there is no way
2217 to write the position
2218 */
2219 /*if ((Program->HintPositionInvariant) && (*File == PROGRAM_OUTPUT) &&
2220 (*Index == 0)) {
Brian Paula088f162006-09-05 23:08:51 +00002221 program_error(ctx, Program->Position,
Jouk Jansen40322e12004-04-05 08:50:36 +00002222 "Vertex program specified position invariance and wrote vertex position");
2223 }*/
2224
2225 /* And then the mask.
2226 * w,a -> bit 0
2227 * z,b -> bit 1
2228 * y,g -> bit 2
2229 * x,r -> bit 3
Keith Whitwell7c26b612005-04-21 14:46:57 +00002230 *
2231 * ==> Need to reverse the order of bits for this!
Jouk Jansen40322e12004-04-05 08:50:36 +00002232 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002233 tmp = (GLint) *(*inst)++;
2234 *WriteMask = (((tmp>>3) & 0x1) |
2235 ((tmp>>1) & 0x2) |
2236 ((tmp<<1) & 0x4) |
2237 ((tmp<<3) & 0x8));
Jouk Jansen40322e12004-04-05 08:50:36 +00002238
2239 return 0;
2240}
2241
2242
2243/**
2244 * Handle the parsing of a address register
2245 *
2246 * \param Index - The register index we write to
2247 *
2248 * \return 0 on sucess, 1 on error
2249 */
2250static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002251parse_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002252 struct var_cache **vc_head,
2253 struct arb_program *Program, GLint * Index)
2254{
2255 struct var_cache *dst;
2256 GLuint result;
Aapo Tahkola6fc864b2006-03-22 21:29:15 +00002257
2258 *Index = 0; /* XXX */
Jouk Jansen40322e12004-04-05 08:50:36 +00002259
2260 dst = parse_string (inst, vc_head, Program, &result);
2261 Program->Position = parse_position (inst);
2262
2263 /* If the name has never been added to our symbol table, we're hosed */
2264 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002265 program_error(ctx, Program->Position, "Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002266 return 1;
2267 }
2268
2269 if (dst->type != vt_address) {
Brian Paula088f162006-09-05 23:08:51 +00002270 program_error(ctx, Program->Position, "Variable is not of type ADDRESS");
Jouk Jansen40322e12004-04-05 08:50:36 +00002271 return 1;
2272 }
2273
2274 return 0;
2275}
2276
Brian Paul8e8fa632005-07-01 02:03:33 +00002277#if 0 /* unused */
Jouk Jansen40322e12004-04-05 08:50:36 +00002278/**
2279 * Handle the parsing out of a masked address register
2280 *
2281 * \param Index - The register index we write to
2282 * \param WriteMask - The mask controlling which components we write (1->write)
2283 *
2284 * \return 0 on sucess, 1 on error
2285 */
2286static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002287parse_masked_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002288 struct var_cache **vc_head,
2289 struct arb_program *Program, GLint * Index,
2290 GLboolean * WriteMask)
2291{
2292 if (parse_address_reg (ctx, inst, vc_head, Program, Index))
2293 return 1;
2294
2295 /* This should be 0x8 */
2296 (*inst)++;
2297
2298 /* Writemask of .x is implied */
2299 WriteMask[0] = 1;
2300 WriteMask[1] = WriteMask[2] = WriteMask[3] = 0;
2301
2302 return 0;
2303}
Brian Paul8e8fa632005-07-01 02:03:33 +00002304#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00002305
2306/**
2307 * Parse out a swizzle mask.
2308 *
Brian Paul32df89e2005-10-29 18:26:43 +00002309 * Basically convert COMPONENT_X/Y/Z/W to SWIZZLE_X/Y/Z/W
Jouk Jansen40322e12004-04-05 08:50:36 +00002310 *
2311 * The len parameter allows us to grab 4 components for a vector
2312 * swizzle, or just 1 component for a scalar src register selection
2313 */
Brian Paul32df89e2005-10-29 18:26:43 +00002314static void
Brian Paula088f162006-09-05 23:08:51 +00002315parse_swizzle_mask(const GLubyte ** inst, GLubyte *swizzle, GLint len)
Jouk Jansen40322e12004-04-05 08:50:36 +00002316{
Brian Paul32df89e2005-10-29 18:26:43 +00002317 GLint i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002318
Brian Paul32df89e2005-10-29 18:26:43 +00002319 for (i = 0; i < 4; i++)
2320 swizzle[i] = i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002321
Brian Paul32df89e2005-10-29 18:26:43 +00002322 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00002323 switch (*(*inst)++) {
2324 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002325 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002326 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002327 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002328 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002329 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002330 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002331 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002332 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002333 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002334 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002335 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002336 default:
2337 _mesa_problem(NULL, "bad component in parse_swizzle_mask()");
2338 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002339 }
2340 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002341}
2342
Jouk Jansen40322e12004-04-05 08:50:36 +00002343
Brian Paul32df89e2005-10-29 18:26:43 +00002344/**
2345 * Parse an extended swizzle mask which is a sequence of
2346 * four x/y/z/w/0/1 tokens.
2347 * \return swizzle four swizzle values
2348 * \return negateMask four element bitfield
2349 */
2350static void
Brian Paula088f162006-09-05 23:08:51 +00002351parse_extended_swizzle_mask(const GLubyte **inst, GLubyte swizzle[4],
Brian Paul32df89e2005-10-29 18:26:43 +00002352 GLubyte *negateMask)
2353{
2354 GLint i;
2355
2356 *negateMask = 0x0;
2357 for (i = 0; i < 4; i++) {
2358 GLubyte swz;
2359 if (parse_sign(inst) == -1)
2360 *negateMask |= (1 << i);
Jouk Jansen40322e12004-04-05 08:50:36 +00002361
2362 swz = *(*inst)++;
2363
2364 switch (swz) {
2365 case COMPONENT_0:
Brian Paul32df89e2005-10-29 18:26:43 +00002366 swizzle[i] = SWIZZLE_ZERO;
Jouk Jansen40322e12004-04-05 08:50:36 +00002367 break;
2368 case COMPONENT_1:
Brian Paul32df89e2005-10-29 18:26:43 +00002369 swizzle[i] = SWIZZLE_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002370 break;
2371 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002372 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002373 break;
2374 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002375 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002376 break;
2377 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002378 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002379 break;
2380 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002381 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002382 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002383 default:
2384 _mesa_problem(NULL, "bad case in parse_extended_swizzle_mask()");
2385 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002386 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002387 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002388}
2389
2390
2391static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002392parse_src_reg (GLcontext * ctx, const GLubyte ** inst,
2393 struct var_cache **vc_head,
Brian Paul7aebaf32005-10-30 21:23:23 +00002394 struct arb_program *Program,
2395 enum register_file * File, GLint * Index,
Jouk Jansen40322e12004-04-05 08:50:36 +00002396 GLboolean *IsRelOffset )
2397{
2398 struct var_cache *src;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002399 GLuint binding, is_generic, found;
Brian Paulbd997cd2004-07-20 21:12:56 +00002400 GLint offset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002401
Keith Whitwell7c26b612005-04-21 14:46:57 +00002402 *IsRelOffset = 0;
2403
Jouk Jansen40322e12004-04-05 08:50:36 +00002404 /* And the binding for the src */
2405 switch (*(*inst)++) {
2406 case REGISTER_ATTRIB:
2407 if (parse_attrib_binding
Brian Paul18e7c5c2005-10-30 21:46:00 +00002408 (ctx, inst, Program, &binding, &is_generic))
Jouk Jansen40322e12004-04-05 08:50:36 +00002409 return 1;
2410 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002411 *Index = binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002412
2413 /* We need to insert a dummy variable into the var_cache so we can
2414 * catch generic vertex attrib aliasing errors
2415 */
2416 var_cache_create(&src);
2417 src->type = vt_attrib;
Brian Paul6a769d92006-04-28 15:42:15 +00002418 src->name = (const GLubyte *) "Dummy Attrib Variable";
Brian Paul18e7c5c2005-10-30 21:46:00 +00002419 src->attrib_binding = binding;
2420 src->attrib_is_generic = is_generic;
Jouk Jansen40322e12004-04-05 08:50:36 +00002421 var_cache_append(vc_head, src);
2422 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00002423 program_error(ctx, Program->Position,
2424 "Cannot use both a generic vertex attribute "
2425 "and a specific attribute of the same type");
Jouk Jansen40322e12004-04-05 08:50:36 +00002426 return 1;
2427 }
2428 break;
2429
2430 case REGISTER_PARAM:
2431 switch (**inst) {
2432 case PARAM_ARRAY_ELEMENT:
2433 (*inst)++;
2434 src = parse_string (inst, vc_head, Program, &found);
2435 Program->Position = parse_position (inst);
2436
2437 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002438 program_error(ctx, Program->Position,
2439 "2: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002440 return 1;
2441 }
2442
Brian Paul95801792005-12-06 15:41:43 +00002443 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002444
2445 switch (*(*inst)++) {
2446 case ARRAY_INDEX_ABSOLUTE:
2447 offset = parse_integer (inst, Program);
2448
2449 if ((offset < 0)
Brian Paula6c423d2004-08-25 15:59:48 +00002450 || (offset >= (int)src->param_binding_length)) {
Brian Paula088f162006-09-05 23:08:51 +00002451 program_error(ctx, Program->Position,
2452 "Index out of range");
2453 /* offset, src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002454 return 1;
2455 }
2456
2457 *Index = src->param_binding_begin + offset;
2458 break;
2459
2460 case ARRAY_INDEX_RELATIVE:
2461 {
2462 GLint addr_reg_idx, rel_off;
2463
2464 /* First, grab the address regiseter */
2465 if (parse_address_reg (ctx, inst, vc_head, Program, &addr_reg_idx))
2466 return 1;
2467
2468 /* And the .x */
2469 ((*inst)++);
2470 ((*inst)++);
2471 ((*inst)++);
2472 ((*inst)++);
2473
2474 /* Then the relative offset */
2475 if (parse_relative_offset(ctx, inst, Program, &rel_off)) return 1;
2476
2477 /* And store it properly */
2478 *Index = src->param_binding_begin + rel_off;
2479 *IsRelOffset = 1;
2480 }
2481 break;
2482 }
2483 break;
2484
2485 default:
Jouk Jansen40322e12004-04-05 08:50:36 +00002486 if (parse_param_use (ctx, inst, vc_head, Program, &src))
2487 return 1;
2488
Brian Paul95801792005-12-06 15:41:43 +00002489 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002490 *Index = src->param_binding_begin;
2491 break;
2492 }
2493 break;
2494
2495 case REGISTER_ESTABLISHED_NAME:
Jouk Jansen40322e12004-04-05 08:50:36 +00002496 src = parse_string (inst, vc_head, Program, &found);
2497 Program->Position = parse_position (inst);
2498
2499 /* If the name has never been added to our symbol table, we're hosed */
2500 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002501 program_error(ctx, Program->Position,
2502 "3: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002503 return 1;
2504 }
2505
2506 switch (src->type) {
2507 case vt_attrib:
2508 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002509 *Index = src->attrib_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002510 break;
2511
2512 /* XXX: We have to handle offsets someplace in here! -- or are those above? */
2513 case vt_param:
Brian Paul95801792005-12-06 15:41:43 +00002514 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002515 *Index = src->param_binding_begin;
2516 break;
2517
2518 case vt_temp:
2519 *File = PROGRAM_TEMPORARY;
2520 *Index = src->temp_binding;
2521 break;
2522
2523 /* If the var type is vt_output no go */
2524 default:
Brian Paula088f162006-09-05 23:08:51 +00002525 program_error(ctx, Program->Position,
2526 "destination register is read only");
2527 /* bad src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002528 return 1;
2529 }
2530 break;
2531
2532 default:
Brian Paula088f162006-09-05 23:08:51 +00002533 program_error(ctx, Program->Position,
2534 "Unknown token in parse_src_reg");
Jouk Jansen40322e12004-04-05 08:50:36 +00002535 return 1;
2536 }
2537
2538 return 0;
2539}
2540
2541/**
Brian Paul18e7c5c2005-10-30 21:46:00 +00002542 * Parse fragment program vector source register.
Jouk Jansen40322e12004-04-05 08:50:36 +00002543 */
2544static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002545parse_fp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00002546 struct var_cache **vc_head,
2547 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00002548 struct prog_src_register *reg)
Jouk Jansen40322e12004-04-05 08:50:36 +00002549{
Brian Paul7aebaf32005-10-30 21:23:23 +00002550 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00002551 GLint index;
2552 GLboolean negate;
2553 GLubyte swizzle[4];
2554 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002555
Jouk Jansen40322e12004-04-05 08:50:36 +00002556 /* Grab the sign */
Brian Paul32df89e2005-10-29 18:26:43 +00002557 negate = (parse_sign (inst) == -1) ? 0xf : 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00002558
2559 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00002560 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Jouk Jansen40322e12004-04-05 08:50:36 +00002561 return 1;
2562
2563 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002564 parse_swizzle_mask(inst, swizzle, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00002565
Brian Paul32df89e2005-10-29 18:26:43 +00002566 reg->File = file;
2567 reg->Index = index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002568 reg->Abs = 0; /* NV only */
2569 reg->NegateAbs = 0; /* NV only */
Brian Paul32df89e2005-10-29 18:26:43 +00002570 reg->NegateBase = negate;
2571 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00002572 return 0;
2573}
2574
Jouk Jansen40322e12004-04-05 08:50:36 +00002575
Brian Paulb7fc1c32006-08-30 23:38:03 +00002576/**
2577 * Parse fragment program destination register.
2578 * \return 1 if error, 0 if no error.
2579 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002580static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002581parse_fp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00002582 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002583 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002584{
Brian Paul7aebaf32005-10-30 21:23:23 +00002585 GLint mask;
2586 GLuint idx;
2587 enum register_file file;
2588
Keith Whitwell7c26b612005-04-21 14:46:57 +00002589 if (parse_masked_dst_reg (ctx, inst, vc_head, Program, &file, &idx, &mask))
Jouk Jansen40322e12004-04-05 08:50:36 +00002590 return 1;
2591
Keith Whitwell7c26b612005-04-21 14:46:57 +00002592 reg->CondMask = 0; /* NV only */
2593 reg->CondSwizzle = 0; /* NV only */
2594 reg->File = file;
2595 reg->Index = idx;
2596 reg->WriteMask = mask;
2597 return 0;
2598}
2599
2600
Brian Paul7aebaf32005-10-30 21:23:23 +00002601/**
2602 * Parse fragment program scalar src register.
Brian Paulb7fc1c32006-08-30 23:38:03 +00002603 * \return 1 if error, 0 if no error.
Brian Paul7aebaf32005-10-30 21:23:23 +00002604 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002605static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002606parse_fp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00002607 struct var_cache **vc_head,
2608 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002609 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002610{
Brian Paul7aebaf32005-10-30 21:23:23 +00002611 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002612 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00002613 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002614 GLubyte Swizzle[4];
2615 GLboolean IsRelOffset;
2616
2617 /* Grab the sign */
2618 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
2619
2620 /* And the src reg */
2621 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
2622 return 1;
2623
2624 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002625 parse_swizzle_mask(inst, Swizzle, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002626
Keith Whitwell7c26b612005-04-21 14:46:57 +00002627 reg->File = File;
2628 reg->Index = Index;
2629 reg->Abs = 0; /* NV only */
2630 reg->NegateAbs = 0; /* NV only */
2631 reg->NegateBase = Negate;
2632 reg->Swizzle = (Swizzle[0] << 0);
2633
Jouk Jansen40322e12004-04-05 08:50:36 +00002634 return 0;
2635}
2636
Keith Whitwell7c26b612005-04-21 14:46:57 +00002637
Jouk Jansen40322e12004-04-05 08:50:36 +00002638/**
2639 * This is a big mother that handles getting opcodes into the instruction
2640 * and handling the src & dst registers for fragment program instructions
Brian Paulb7fc1c32006-08-30 23:38:03 +00002641 * \return 1 if error, 0 if no error
Jouk Jansen40322e12004-04-05 08:50:36 +00002642 */
2643static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002644parse_fp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002645 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002646 struct prog_instruction *fp)
Jouk Jansen40322e12004-04-05 08:50:36 +00002647{
Keith Whitwell7c26b612005-04-21 14:46:57 +00002648 GLint a;
Jouk Jansen40322e12004-04-05 08:50:36 +00002649 GLuint texcoord;
2650 GLubyte instClass, type, code;
2651 GLboolean rel;
2652
Brian Paul7e807512005-11-05 17:10:45 +00002653 _mesa_init_instruction(fp);
Jouk Jansen40322e12004-04-05 08:50:36 +00002654
2655 /* Record the position in the program string for debugging */
2656 fp->StringPos = Program->Position;
2657
2658 /* OP_ALU_INST or OP_TEX_INST */
2659 instClass = *(*inst)++;
2660
2661 /* OP_ALU_{VECTOR, SCALAR, BINSC, BIN, TRI, SWZ},
2662 * OP_TEX_{SAMPLE, KIL}
2663 */
2664 type = *(*inst)++;
2665
2666 /* The actual opcode name */
2667 code = *(*inst)++;
2668
2669 /* Increment the correct count */
2670 switch (instClass) {
2671 case OP_ALU_INST:
2672 Program->NumAluInstructions++;
2673 break;
2674 case OP_TEX_INST:
2675 Program->NumTexInstructions++;
2676 break;
2677 }
2678
Jouk Jansen40322e12004-04-05 08:50:36 +00002679 switch (type) {
2680 case OP_ALU_VECTOR:
2681 switch (code) {
2682 case OP_ABS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002683 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002684 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00002685 fp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002686 break;
2687
2688 case OP_FLR_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002689 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002690 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00002691 fp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00002692 break;
2693
2694 case OP_FRC_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002695 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002696 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00002697 fp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00002698 break;
2699
2700 case OP_LIT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002701 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002702 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00002703 fp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002704 break;
2705
2706 case OP_MOV_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002707 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002708 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00002709 fp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00002710 break;
2711 }
2712
Keith Whitwell7c26b612005-04-21 14:46:57 +00002713 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002714 return 1;
2715
Keith Whitwell7c26b612005-04-21 14:46:57 +00002716 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002717 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002718 break;
2719
2720 case OP_ALU_SCALAR:
2721 switch (code) {
2722 case OP_COS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002723 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002724 case OP_COS:
Brian Paul7e807512005-11-05 17:10:45 +00002725 fp->Opcode = OPCODE_COS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002726 break;
2727
2728 case OP_EX2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002729 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002730 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00002731 fp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002732 break;
2733
2734 case OP_LG2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002735 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002736 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00002737 fp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002738 break;
2739
2740 case OP_RCP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002741 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002742 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00002743 fp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002744 break;
2745
2746 case OP_RSQ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002747 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002748 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00002749 fp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002750 break;
2751
2752 case OP_SIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002753 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002754 case OP_SIN:
Brian Paul7e807512005-11-05 17:10:45 +00002755 fp->Opcode = OPCODE_SIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002756 break;
2757
2758 case OP_SCS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002759 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002760 case OP_SCS:
2761
Brian Paul7e807512005-11-05 17:10:45 +00002762 fp->Opcode = OPCODE_SCS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002763 break;
2764 }
2765
Keith Whitwell7c26b612005-04-21 14:46:57 +00002766 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002767 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002768
2769 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002770 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002771 break;
2772
2773 case OP_ALU_BINSC:
2774 switch (code) {
2775 case OP_POW_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002776 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002777 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00002778 fp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00002779 break;
2780 }
2781
Keith Whitwell7c26b612005-04-21 14:46:57 +00002782 if (parse_fp_dst_reg(ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002783 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002784
Jouk Jansen40322e12004-04-05 08:50:36 +00002785 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002786 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002787 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002788 }
2789 break;
2790
2791
2792 case OP_ALU_BIN:
2793 switch (code) {
2794 case OP_ADD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002795 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002796 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00002797 fp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002798 break;
2799
2800 case OP_DP3_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002801 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002802 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00002803 fp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00002804 break;
2805
2806 case OP_DP4_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002807 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002808 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00002809 fp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00002810 break;
2811
2812 case OP_DPH_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002813 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002814 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00002815 fp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00002816 break;
2817
2818 case OP_DST_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002819 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002820 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00002821 fp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00002822 break;
2823
2824 case OP_MAX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002825 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002826 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00002827 fp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002828 break;
2829
2830 case OP_MIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002831 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002832 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00002833 fp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002834 break;
2835
2836 case OP_MUL_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002837 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002838 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00002839 fp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00002840 break;
2841
2842 case OP_SGE_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002843 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002844 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00002845 fp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002846 break;
2847
2848 case OP_SLT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002849 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002850 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00002851 fp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002852 break;
2853
2854 case OP_SUB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002855 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002856 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00002857 fp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002858 break;
2859
2860 case OP_XPD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002861 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002862 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00002863 fp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002864 break;
2865 }
2866
Keith Whitwell7c26b612005-04-21 14:46:57 +00002867 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002868 return 1;
2869 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002870 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2871 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002872 }
2873 break;
2874
2875 case OP_ALU_TRI:
2876 switch (code) {
2877 case OP_CMP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002878 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002879 case OP_CMP:
Brian Paul7e807512005-11-05 17:10:45 +00002880 fp->Opcode = OPCODE_CMP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002881 break;
2882
2883 case OP_LRP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002884 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002885 case OP_LRP:
Brian Paul7e807512005-11-05 17:10:45 +00002886 fp->Opcode = OPCODE_LRP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002887 break;
2888
2889 case OP_MAD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002890 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002891 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00002892 fp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002893 break;
2894 }
2895
Keith Whitwell7c26b612005-04-21 14:46:57 +00002896 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002897 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002898
Jouk Jansen40322e12004-04-05 08:50:36 +00002899 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002900 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2901 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002902 }
2903 break;
2904
2905 case OP_ALU_SWZ:
2906 switch (code) {
2907 case OP_SWZ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002908 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002909 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00002910 fp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002911 break;
2912 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00002913 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002914 return 1;
2915
Keith Whitwell7c26b612005-04-21 14:46:57 +00002916 {
Brian Paul32df89e2005-10-29 18:26:43 +00002917 GLubyte swizzle[4];
Brian Paul54cfe692005-10-21 15:22:36 +00002918 GLubyte negateMask;
Brian Paul7aebaf32005-10-30 21:23:23 +00002919 enum register_file file;
2920 GLint index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002921
Brian Paul32df89e2005-10-29 18:26:43 +00002922 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &rel))
Keith Whitwell7c26b612005-04-21 14:46:57 +00002923 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00002924 parse_extended_swizzle_mask(inst, swizzle, &negateMask);
2925 fp->SrcReg[0].File = file;
2926 fp->SrcReg[0].Index = index;
Brian Paul54cfe692005-10-21 15:22:36 +00002927 fp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00002928 fp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
2929 swizzle[1],
2930 swizzle[2],
2931 swizzle[3]);
Keith Whitwell7c26b612005-04-21 14:46:57 +00002932 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002933 break;
2934
2935 case OP_TEX_SAMPLE:
2936 switch (code) {
2937 case OP_TEX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002938 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002939 case OP_TEX:
Brian Paul7e807512005-11-05 17:10:45 +00002940 fp->Opcode = OPCODE_TEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002941 break;
2942
2943 case OP_TXP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002944 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002945 case OP_TXP:
Brian Paul7e807512005-11-05 17:10:45 +00002946 fp->Opcode = OPCODE_TXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002947 break;
2948
2949 case OP_TXB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002950 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002951 case OP_TXB:
Brian Paul7e807512005-11-05 17:10:45 +00002952 fp->Opcode = OPCODE_TXB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002953 break;
2954 }
2955
Keith Whitwell7c26b612005-04-21 14:46:57 +00002956 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002957 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002958
2959 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002960 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002961
2962 /* texImageUnit */
2963 if (parse_texcoord_num (ctx, inst, Program, &texcoord))
2964 return 1;
2965 fp->TexSrcUnit = texcoord;
2966
2967 /* texTarget */
2968 switch (*(*inst)++) {
2969 case TEXTARGET_1D:
Brian Paul7e807512005-11-05 17:10:45 +00002970 fp->TexSrcTarget = TEXTURE_1D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002971 break;
2972 case TEXTARGET_2D:
Brian Paul7e807512005-11-05 17:10:45 +00002973 fp->TexSrcTarget = TEXTURE_2D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002974 break;
2975 case TEXTARGET_3D:
Brian Paul7e807512005-11-05 17:10:45 +00002976 fp->TexSrcTarget = TEXTURE_3D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002977 break;
2978 case TEXTARGET_RECT:
Brian Paul7e807512005-11-05 17:10:45 +00002979 fp->TexSrcTarget = TEXTURE_RECT_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002980 break;
2981 case TEXTARGET_CUBE:
Brian Paul7e807512005-11-05 17:10:45 +00002982 fp->TexSrcTarget = TEXTURE_CUBE_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002983 break;
2984 case TEXTARGET_SHADOW1D:
2985 case TEXTARGET_SHADOW2D:
2986 case TEXTARGET_SHADOWRECT:
2987 /* TODO ARB_fragment_program_shadow code */
2988 break;
2989 }
Brian Paulb7fc1c32006-08-30 23:38:03 +00002990 Program->TexturesUsed[texcoord] |= (1 << fp->TexSrcTarget);
2991 /* Check that both "2D" and "CUBE" (for example) aren't both used */
2992 if (_mesa_bitcount(Program->TexturesUsed[texcoord]) > 1) {
Brian Paula088f162006-09-05 23:08:51 +00002993 program_error(ctx, Program->Position,
2994 "multiple targets used on one texture image unit");
Brian Paulb7fc1c32006-08-30 23:38:03 +00002995 return 1;
2996 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002997 break;
2998
2999 case OP_TEX_KIL:
Keith Whitwellc3626a92005-11-01 17:25:49 +00003000 Program->UsesKill = 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003001 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003002 return 1;
Brian Paul7e807512005-11-05 17:10:45 +00003003 fp->Opcode = OPCODE_KIL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003004 break;
Brian Paulb7fc1c32006-08-30 23:38:03 +00003005 default:
3006 _mesa_problem(ctx, "bad type 0x%x in parse_fp_instruction()", type);
3007 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003008 }
3009
3010 return 0;
3011}
3012
Keith Whitwell7c26b612005-04-21 14:46:57 +00003013static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003014parse_vp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003015 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003016 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003017{
Brian Paul7aebaf32005-10-30 21:23:23 +00003018 GLint mask;
3019 GLuint idx;
3020 enum register_file file;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003021
3022 if (parse_masked_dst_reg(ctx, inst, vc_head, Program, &file, &idx, &mask))
3023 return 1;
3024
3025 reg->File = file;
3026 reg->Index = idx;
3027 reg->WriteMask = mask;
3028 return 0;
3029}
3030
3031/**
3032 * Handle the parsing out of a masked address register
3033 *
3034 * \param Index - The register index we write to
3035 * \param WriteMask - The mask controlling which components we write (1->write)
3036 *
3037 * \return 0 on sucess, 1 on error
3038 */
3039static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003040parse_vp_address_reg (GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003041 struct var_cache **vc_head,
3042 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003043 struct prog_dst_register *reg)
Keith Whitwell7c26b612005-04-21 14:46:57 +00003044{
3045 GLint idx;
3046
3047 if (parse_address_reg (ctx, inst, vc_head, Program, &idx))
3048 return 1;
3049
3050 /* This should be 0x8 */
3051 (*inst)++;
3052
3053 reg->File = PROGRAM_ADDRESS;
3054 reg->Index = idx;
3055
3056 /* Writemask of .x is implied */
3057 reg->WriteMask = 0x1;
3058 return 0;
3059}
3060
3061/**
Brian Paul7aebaf32005-10-30 21:23:23 +00003062 * Parse vertex program vector source register.
Keith Whitwell7c26b612005-04-21 14:46:57 +00003063 */
3064static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003065parse_vp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00003066 struct var_cache **vc_head,
3067 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00003068 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003069{
Brian Paul7aebaf32005-10-30 21:23:23 +00003070 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00003071 GLint index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003072 GLubyte negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003073 GLubyte swizzle[4];
3074 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003075
3076 /* Grab the sign */
Brian Paul7aebaf32005-10-30 21:23:23 +00003077 negateMask = (parse_sign (inst) == -1) ? 0xf : 0x0;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003078
3079 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00003080 if (parse_src_reg (ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003081 return 1;
3082
3083 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003084 parse_swizzle_mask(inst, swizzle, 4);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003085
Brian Paul32df89e2005-10-29 18:26:43 +00003086 reg->File = file;
3087 reg->Index = index;
3088 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1],
3089 swizzle[2], swizzle[3]);
Brian Paul7e807512005-11-05 17:10:45 +00003090 reg->NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003091 reg->RelAddr = isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003092 return 0;
3093}
3094
3095
3096static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003097parse_vp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00003098 struct var_cache **vc_head,
3099 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003100 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003101{
Brian Paul7aebaf32005-10-30 21:23:23 +00003102 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003103 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003104 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003105 GLubyte Swizzle[4];
3106 GLboolean IsRelOffset;
3107
3108 /* Grab the sign */
3109 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
3110
3111 /* And the src reg */
3112 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
3113 return 1;
3114
3115 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003116 parse_swizzle_mask(inst, Swizzle, 1);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003117
3118 reg->File = File;
3119 reg->Index = Index;
3120 reg->Swizzle = (Swizzle[0] << 0);
Brian Paul7e807512005-11-05 17:10:45 +00003121 reg->NegateBase = Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003122 reg->RelAddr = IsRelOffset;
3123 return 0;
3124}
3125
3126
Jouk Jansen40322e12004-04-05 08:50:36 +00003127/**
3128 * This is a big mother that handles getting opcodes into the instruction
3129 * and handling the src & dst registers for vertex program instructions
3130 */
3131static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003132parse_vp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00003133 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003134 struct prog_instruction *vp)
Jouk Jansen40322e12004-04-05 08:50:36 +00003135{
3136 GLint a;
3137 GLubyte type, code;
3138
3139 /* OP_ALU_{ARL, VECTOR, SCALAR, BINSC, BIN, TRI, SWZ} */
3140 type = *(*inst)++;
3141
3142 /* The actual opcode name */
3143 code = *(*inst)++;
3144
Brian Paul7e807512005-11-05 17:10:45 +00003145 _mesa_init_instruction(vp);
Jouk Jansen40322e12004-04-05 08:50:36 +00003146 /* Record the position in the program string for debugging */
3147 vp->StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003148
3149 switch (type) {
3150 /* XXX: */
3151 case OP_ALU_ARL:
Brian Paul7e807512005-11-05 17:10:45 +00003152 vp->Opcode = OPCODE_ARL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003153
3154 /* Remember to set SrcReg.RelAddr; */
3155
3156 /* Get the masked address register [dst] */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003157 if (parse_vp_address_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003158 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003159
Jouk Jansen40322e12004-04-05 08:50:36 +00003160 vp->DstReg.File = PROGRAM_ADDRESS;
3161
3162 /* Get a scalar src register */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003163 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003164 return 1;
3165
3166 break;
3167
3168 case OP_ALU_VECTOR:
3169 switch (code) {
3170 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00003171 vp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00003172 break;
3173 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00003174 vp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00003175 break;
3176 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00003177 vp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00003178 break;
3179 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00003180 vp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003181 break;
3182 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00003183 vp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00003184 break;
3185 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003186
3187 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003188 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003189
3190 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003191 return 1;
3192 break;
3193
3194 case OP_ALU_SCALAR:
3195 switch (code) {
3196 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00003197 vp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003198 break;
3199 case OP_EXP:
Brian Paul7e807512005-11-05 17:10:45 +00003200 vp->Opcode = OPCODE_EXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003201 break;
3202 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00003203 vp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003204 break;
3205 case OP_LOG:
Brian Paul7e807512005-11-05 17:10:45 +00003206 vp->Opcode = OPCODE_LOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00003207 break;
3208 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00003209 vp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003210 break;
3211 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00003212 vp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003213 break;
3214 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003215 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003216 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003217
3218 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003219 return 1;
3220 break;
3221
3222 case OP_ALU_BINSC:
3223 switch (code) {
3224 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00003225 vp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00003226 break;
3227 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003228 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003229 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003230
Jouk Jansen40322e12004-04-05 08:50:36 +00003231 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003232 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003233 return 1;
3234 }
3235 break;
3236
3237 case OP_ALU_BIN:
3238 switch (code) {
3239 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00003240 vp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003241 break;
3242 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00003243 vp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00003244 break;
3245 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00003246 vp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00003247 break;
3248 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00003249 vp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00003250 break;
3251 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00003252 vp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00003253 break;
3254 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00003255 vp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003256 break;
3257 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00003258 vp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00003259 break;
3260 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00003261 vp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003262 break;
3263 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00003264 vp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003265 break;
3266 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00003267 vp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003268 break;
3269 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00003270 vp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00003271 break;
3272 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00003273 vp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003274 break;
3275 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003276 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003277 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003278
Jouk Jansen40322e12004-04-05 08:50:36 +00003279 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003280 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003281 return 1;
3282 }
3283 break;
3284
3285 case OP_ALU_TRI:
3286 switch (code) {
3287 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00003288 vp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003289 break;
3290 }
3291
Keith Whitwell7c26b612005-04-21 14:46:57 +00003292 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003293 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003294
Jouk Jansen40322e12004-04-05 08:50:36 +00003295 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003296 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003297 return 1;
3298 }
3299 break;
3300
3301 case OP_ALU_SWZ:
3302 switch (code) {
3303 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00003304 vp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003305 break;
3306 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003307 {
Brian Paul32df89e2005-10-29 18:26:43 +00003308 GLubyte swizzle[4];
3309 GLubyte negateMask;
3310 GLboolean relAddr;
Brian Paul7aebaf32005-10-30 21:23:23 +00003311 enum register_file file;
3312 GLint index;
Jouk Jansen40322e12004-04-05 08:50:36 +00003313
Keith Whitwell7c26b612005-04-21 14:46:57 +00003314 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
3315 return 1;
3316
Brian Paul32df89e2005-10-29 18:26:43 +00003317 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &relAddr))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003318 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00003319 parse_extended_swizzle_mask (inst, swizzle, &negateMask);
3320 vp->SrcReg[0].File = file;
3321 vp->SrcReg[0].Index = index;
Brian Paul7e807512005-11-05 17:10:45 +00003322 vp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003323 vp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
3324 swizzle[1],
3325 swizzle[2],
3326 swizzle[3]);
3327 vp->SrcReg[0].RelAddr = relAddr;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003328 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003329 break;
3330 }
3331 return 0;
3332}
3333
3334#if DEBUG_PARSING
3335
3336static GLvoid
3337print_state_token (GLint token)
3338{
3339 switch (token) {
3340 case STATE_MATERIAL:
3341 fprintf (stderr, "STATE_MATERIAL ");
3342 break;
3343 case STATE_LIGHT:
3344 fprintf (stderr, "STATE_LIGHT ");
3345 break;
3346
3347 case STATE_LIGHTMODEL_AMBIENT:
3348 fprintf (stderr, "STATE_AMBIENT ");
3349 break;
3350
3351 case STATE_LIGHTMODEL_SCENECOLOR:
3352 fprintf (stderr, "STATE_SCENECOLOR ");
3353 break;
3354
3355 case STATE_LIGHTPROD:
3356 fprintf (stderr, "STATE_LIGHTPROD ");
3357 break;
3358
3359 case STATE_TEXGEN:
3360 fprintf (stderr, "STATE_TEXGEN ");
3361 break;
3362
3363 case STATE_FOG_COLOR:
3364 fprintf (stderr, "STATE_FOG_COLOR ");
3365 break;
3366
3367 case STATE_FOG_PARAMS:
3368 fprintf (stderr, "STATE_FOG_PARAMS ");
3369 break;
3370
3371 case STATE_CLIPPLANE:
3372 fprintf (stderr, "STATE_CLIPPLANE ");
3373 break;
3374
3375 case STATE_POINT_SIZE:
3376 fprintf (stderr, "STATE_POINT_SIZE ");
3377 break;
3378
3379 case STATE_POINT_ATTENUATION:
3380 fprintf (stderr, "STATE_ATTENUATION ");
3381 break;
3382
3383 case STATE_MATRIX:
3384 fprintf (stderr, "STATE_MATRIX ");
3385 break;
3386
3387 case STATE_MODELVIEW:
3388 fprintf (stderr, "STATE_MODELVIEW ");
3389 break;
3390
3391 case STATE_PROJECTION:
3392 fprintf (stderr, "STATE_PROJECTION ");
3393 break;
3394
3395 case STATE_MVP:
3396 fprintf (stderr, "STATE_MVP ");
3397 break;
3398
3399 case STATE_TEXTURE:
3400 fprintf (stderr, "STATE_TEXTURE ");
3401 break;
3402
3403 case STATE_PROGRAM:
3404 fprintf (stderr, "STATE_PROGRAM ");
3405 break;
3406
3407 case STATE_MATRIX_INVERSE:
3408 fprintf (stderr, "STATE_INVERSE ");
3409 break;
3410
3411 case STATE_MATRIX_TRANSPOSE:
3412 fprintf (stderr, "STATE_TRANSPOSE ");
3413 break;
3414
3415 case STATE_MATRIX_INVTRANS:
3416 fprintf (stderr, "STATE_INVTRANS ");
3417 break;
3418
3419 case STATE_AMBIENT:
3420 fprintf (stderr, "STATE_AMBIENT ");
3421 break;
3422
3423 case STATE_DIFFUSE:
3424 fprintf (stderr, "STATE_DIFFUSE ");
3425 break;
3426
3427 case STATE_SPECULAR:
3428 fprintf (stderr, "STATE_SPECULAR ");
3429 break;
3430
3431 case STATE_EMISSION:
3432 fprintf (stderr, "STATE_EMISSION ");
3433 break;
3434
3435 case STATE_SHININESS:
3436 fprintf (stderr, "STATE_SHININESS ");
3437 break;
3438
3439 case STATE_HALF:
3440 fprintf (stderr, "STATE_HALF ");
3441 break;
3442
3443 case STATE_POSITION:
3444 fprintf (stderr, "STATE_POSITION ");
3445 break;
3446
3447 case STATE_ATTENUATION:
3448 fprintf (stderr, "STATE_ATTENUATION ");
3449 break;
3450
3451 case STATE_SPOT_DIRECTION:
3452 fprintf (stderr, "STATE_DIRECTION ");
3453 break;
3454
3455 case STATE_TEXGEN_EYE_S:
3456 fprintf (stderr, "STATE_TEXGEN_EYE_S ");
3457 break;
3458
3459 case STATE_TEXGEN_EYE_T:
3460 fprintf (stderr, "STATE_TEXGEN_EYE_T ");
3461 break;
3462
3463 case STATE_TEXGEN_EYE_R:
3464 fprintf (stderr, "STATE_TEXGEN_EYE_R ");
3465 break;
3466
3467 case STATE_TEXGEN_EYE_Q:
3468 fprintf (stderr, "STATE_TEXGEN_EYE_Q ");
3469 break;
3470
3471 case STATE_TEXGEN_OBJECT_S:
3472 fprintf (stderr, "STATE_TEXGEN_EYE_S ");
3473 break;
3474
3475 case STATE_TEXGEN_OBJECT_T:
3476 fprintf (stderr, "STATE_TEXGEN_OBJECT_T ");
3477 break;
3478
3479 case STATE_TEXGEN_OBJECT_R:
3480 fprintf (stderr, "STATE_TEXGEN_OBJECT_R ");
3481 break;
3482
3483 case STATE_TEXGEN_OBJECT_Q:
3484 fprintf (stderr, "STATE_TEXGEN_OBJECT_Q ");
3485 break;
3486
3487 case STATE_TEXENV_COLOR:
3488 fprintf (stderr, "STATE_TEXENV_COLOR ");
3489 break;
3490
3491 case STATE_DEPTH_RANGE:
3492 fprintf (stderr, "STATE_DEPTH_RANGE ");
3493 break;
3494
3495 case STATE_VERTEX_PROGRAM:
3496 fprintf (stderr, "STATE_VERTEX_PROGRAM ");
3497 break;
3498
3499 case STATE_FRAGMENT_PROGRAM:
3500 fprintf (stderr, "STATE_FRAGMENT_PROGRAM ");
3501 break;
3502
3503 case STATE_ENV:
3504 fprintf (stderr, "STATE_ENV ");
3505 break;
3506
3507 case STATE_LOCAL:
3508 fprintf (stderr, "STATE_LOCAL ");
3509 break;
3510
3511 }
3512 fprintf (stderr, "[%d] ", token);
3513}
3514
3515
3516static GLvoid
3517debug_variables (GLcontext * ctx, struct var_cache *vc_head,
3518 struct arb_program *Program)
3519{
3520 struct var_cache *vc;
3521 GLint a, b;
3522
3523 fprintf (stderr, "debug_variables, vc_head: %x\n", vc_head);
3524
3525 /* First of all, print out the contents of the var_cache */
3526 vc = vc_head;
3527 while (vc) {
3528 fprintf (stderr, "[%x]\n", vc);
3529 switch (vc->type) {
3530 case vt_none:
3531 fprintf (stderr, "UNDEFINED %s\n", vc->name);
3532 break;
3533 case vt_attrib:
3534 fprintf (stderr, "ATTRIB %s\n", vc->name);
3535 fprintf (stderr, " binding: 0x%x\n", vc->attrib_binding);
3536 break;
3537 case vt_param:
3538 fprintf (stderr, "PARAM %s begin: %d len: %d\n", vc->name,
3539 vc->param_binding_begin, vc->param_binding_length);
3540 b = vc->param_binding_begin;
3541 for (a = 0; a < vc->param_binding_length; a++) {
3542 fprintf (stderr, "%s\n",
3543 Program->Parameters->Parameters[a + b].Name);
3544 if (Program->Parameters->Parameters[a + b].Type == STATE) {
3545 print_state_token (Program->Parameters->Parameters[a + b].
3546 StateIndexes[0]);
3547 print_state_token (Program->Parameters->Parameters[a + b].
3548 StateIndexes[1]);
3549 print_state_token (Program->Parameters->Parameters[a + b].
3550 StateIndexes[2]);
3551 print_state_token (Program->Parameters->Parameters[a + b].
3552 StateIndexes[3]);
3553 print_state_token (Program->Parameters->Parameters[a + b].
3554 StateIndexes[4]);
3555 print_state_token (Program->Parameters->Parameters[a + b].
3556 StateIndexes[5]);
3557 }
3558 else
3559 fprintf (stderr, "%f %f %f %f\n",
3560 Program->Parameters->Parameters[a + b].Values[0],
3561 Program->Parameters->Parameters[a + b].Values[1],
3562 Program->Parameters->Parameters[a + b].Values[2],
3563 Program->Parameters->Parameters[a + b].Values[3]);
3564 }
3565 break;
3566 case vt_temp:
3567 fprintf (stderr, "TEMP %s\n", vc->name);
3568 fprintf (stderr, " binding: 0x%x\n", vc->temp_binding);
3569 break;
3570 case vt_output:
3571 fprintf (stderr, "OUTPUT %s\n", vc->name);
3572 fprintf (stderr, " binding: 0x%x\n", vc->output_binding);
3573 break;
3574 case vt_alias:
3575 fprintf (stderr, "ALIAS %s\n", vc->name);
3576 fprintf (stderr, " binding: 0x%x (%s)\n",
3577 vc->alias_binding, vc->alias_binding->name);
3578 break;
3579 }
3580 vc = vc->next;
3581 }
3582}
3583
Brian Paul72030e02005-11-03 03:30:34 +00003584#endif /* DEBUG_PARSING */
Brian Paul7aebaf32005-10-30 21:23:23 +00003585
3586
3587/**
Jouk Jansen40322e12004-04-05 08:50:36 +00003588 * The main loop for parsing a fragment or vertex program
3589 *
Brian Paul72030e02005-11-03 03:30:34 +00003590 * \return 1 on error, 0 on success
Jouk Jansen40322e12004-04-05 08:50:36 +00003591 */
Brian Paul72030e02005-11-03 03:30:34 +00003592static GLint
Brian Paula088f162006-09-05 23:08:51 +00003593parse_instructions(GLcontext * ctx, const GLubyte * inst,
3594 struct var_cache **vc_head, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003595{
Brian Paul72030e02005-11-03 03:30:34 +00003596 const GLuint maxInst = (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
3597 ? ctx->Const.FragmentProgram.MaxInstructions
3598 : ctx->Const.VertexProgram.MaxInstructions;
Jouk Jansen40322e12004-04-05 08:50:36 +00003599 GLint err = 0;
3600
Brian Paul72030e02005-11-03 03:30:34 +00003601 ASSERT(MAX_INSTRUCTIONS >= maxInst);
3602
Jouk Jansen40322e12004-04-05 08:50:36 +00003603 Program->MajorVersion = (GLuint) * inst++;
3604 Program->MinorVersion = (GLuint) * inst++;
3605
3606 while (*inst != END) {
3607 switch (*inst++) {
3608
3609 case OPTION:
3610 switch (*inst++) {
3611 case ARB_PRECISION_HINT_FASTEST:
3612 Program->PrecisionOption = GL_FASTEST;
3613 break;
3614
3615 case ARB_PRECISION_HINT_NICEST:
3616 Program->PrecisionOption = GL_NICEST;
3617 break;
3618
3619 case ARB_FOG_EXP:
3620 Program->FogOption = GL_EXP;
3621 break;
3622
3623 case ARB_FOG_EXP2:
3624 Program->FogOption = GL_EXP2;
3625 break;
3626
3627 case ARB_FOG_LINEAR:
3628 Program->FogOption = GL_LINEAR;
3629 break;
3630
3631 case ARB_POSITION_INVARIANT:
3632 if (Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
Brian Paul45cd2f92005-11-03 02:25:10 +00003633 Program->HintPositionInvariant = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003634 break;
3635
3636 case ARB_FRAGMENT_PROGRAM_SHADOW:
3637 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3638 /* TODO ARB_fragment_program_shadow code */
3639 }
3640 break;
Michal Krolad22ce82004-10-11 08:13:25 +00003641
3642 case ARB_DRAW_BUFFERS:
3643 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3644 /* do nothing for now */
3645 }
3646 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00003647 }
3648 break;
3649
3650 case INSTRUCTION:
Brian Paul72030e02005-11-03 03:30:34 +00003651 /* check length */
3652 if (Program->Base.NumInstructions + 1 >= maxInst) {
Brian Paula088f162006-09-05 23:08:51 +00003653 program_error(ctx, Program->Position,
3654 "Max instruction count exceeded");
Brian Paul72030e02005-11-03 03:30:34 +00003655 return 1;
3656 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003657 Program->Position = parse_position (&inst);
Brian Paul72030e02005-11-03 03:30:34 +00003658 /* parse the current instruction */
Jouk Jansen40322e12004-04-05 08:50:36 +00003659 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003660 err = parse_fp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003661 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003662 }
3663 else {
Jouk Jansen40322e12004-04-05 08:50:36 +00003664 err = parse_vp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003665 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003666 }
3667
Brian Paul72030e02005-11-03 03:30:34 +00003668 /* increment instuction count */
Jouk Jansen40322e12004-04-05 08:50:36 +00003669 Program->Base.NumInstructions++;
3670 break;
3671
3672 case DECLARATION:
3673 err = parse_declaration (ctx, &inst, vc_head, Program);
3674 break;
3675
3676 default:
3677 break;
3678 }
3679
3680 if (err)
3681 break;
3682 }
3683
3684 /* Finally, tag on an OPCODE_END instruction */
Brian Paul8c41a142005-11-19 15:36:28 +00003685 {
Brian Paul7aebaf32005-10-30 21:23:23 +00003686 const GLuint numInst = Program->Base.NumInstructions;
Brian Paul8c41a142005-11-19 15:36:28 +00003687 _mesa_init_instruction(Program->Base.Instructions + numInst);
3688 Program->Base.Instructions[numInst].Opcode = OPCODE_END;
Jouk Jansen40322e12004-04-05 08:50:36 +00003689 /* YYY Wrong Position in program, whatever, at least not random -> crash
3690 Program->Position = parse_position (&inst);
3691 */
Brian Paul8c41a142005-11-19 15:36:28 +00003692 Program->Base.Instructions[numInst].StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003693 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003694 Program->Base.NumInstructions++;
3695
Brian Paul05051032005-11-01 04:36:33 +00003696 /*
3697 * Initialize native counts to logical counts. The device driver may
3698 * change them if program is translated into a hardware program.
3699 */
3700 Program->Base.NumNativeInstructions = Program->Base.NumInstructions;
3701 Program->Base.NumNativeTemporaries = Program->Base.NumTemporaries;
3702 Program->Base.NumNativeParameters = Program->Base.NumParameters;
3703 Program->Base.NumNativeAttributes = Program->Base.NumAttributes;
3704 Program->Base.NumNativeAddressRegs = Program->Base.NumAddressRegs;
Brian Paul05051032005-11-01 04:36:33 +00003705
Jouk Jansen40322e12004-04-05 08:50:36 +00003706 return err;
3707}
3708
Brian Paul7aebaf32005-10-30 21:23:23 +00003709
Jouk Jansen40322e12004-04-05 08:50:36 +00003710/* XXX temporary */
Brian Paula6c423d2004-08-25 15:59:48 +00003711__extension__ static char core_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +00003712#include "grammar_syn.h"
3713;
3714
Brian Paul7aebaf32005-10-30 21:23:23 +00003715
Brian Paul8c41a142005-11-19 15:36:28 +00003716/**
3717 * Set a grammar parameter.
3718 * \param name the grammar parameter
3719 * \param value the new parameter value
3720 * \return 0 if OK, 1 if error
3721 */
3722static int
3723set_reg8 (GLcontext *ctx, grammar id, const char *name, GLubyte value)
Jouk Jansen40322e12004-04-05 08:50:36 +00003724{
3725 char error_msg[300];
3726 GLint error_pos;
3727
Brian Paul8c41a142005-11-19 15:36:28 +00003728 if (grammar_set_reg8 (id, (const byte *) name, value))
Jouk Jansen40322e12004-04-05 08:50:36 +00003729 return 0;
3730
3731 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3732 _mesa_set_program_error (ctx, error_pos, error_msg);
3733 _mesa_error (ctx, GL_INVALID_OPERATION, "Grammar Register Error");
3734 return 1;
3735}
3736
Brian Paul8c41a142005-11-19 15:36:28 +00003737
3738/**
3739 * Enable support for the given language option in the parser.
3740 * \return 1 if OK, 0 if error
3741 */
3742static int
3743enable_ext(GLcontext *ctx, grammar id, const char *name)
Jouk Jansen40322e12004-04-05 08:50:36 +00003744{
Brian Paul8c41a142005-11-19 15:36:28 +00003745 return !set_reg8(ctx, id, name, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003746}
3747
Brian Paul8c41a142005-11-19 15:36:28 +00003748
3749/**
3750 * Enable parser extensions based on which OpenGL extensions are supported
3751 * by this rendering context.
3752 *
3753 * \return GL_TRUE if OK, GL_FALSE if error.
3754 */
3755static GLboolean
3756enable_parser_extensions(GLcontext *ctx, grammar id)
Jouk Jansen40322e12004-04-05 08:50:36 +00003757{
Brian Paul8c41a142005-11-19 15:36:28 +00003758#if 0
3759 /* These are not supported at this time */
3760 if ((ctx->Extensions.ARB_vertex_blend ||
3761 ctx->Extensions.EXT_vertex_weighting)
Brian Paul43cc1dc2006-09-05 23:11:09 +00003762 && !enable_ext(ctx, id, "vertex_blend"))
Brian Paul8c41a142005-11-19 15:36:28 +00003763 return GL_FALSE;
3764 if (ctx->Extensions.ARB_matrix_palette
3765 && !enable_ext(ctx, id, "matrix_palette"))
3766 return GL_FALSE;
3767 if (ctx->Extensions.ARB_fragment_program_shadow
3768 && !enable_ext(ctx, id, "fragment_program_shadow"))
3769 return GL_FALSE;
3770#endif
3771 if (ctx->Extensions.EXT_point_parameters
3772 && !enable_ext(ctx, id, "point_parameters"))
3773 return GL_FALSE;
3774 if (ctx->Extensions.EXT_secondary_color
3775 && !enable_ext(ctx, id, "secondary_color"))
3776 return GL_FALSE;
3777 if (ctx->Extensions.EXT_fog_coord
3778 && !enable_ext(ctx, id, "fog_coord"))
3779 return GL_FALSE;
3780 if (ctx->Extensions.NV_texture_rectangle
3781 && !enable_ext(ctx, id, "texture_rectangle"))
3782 return GL_FALSE;
3783 if (ctx->Extensions.ARB_draw_buffers
3784 && !enable_ext(ctx, id, "draw_buffers"))
3785 return GL_FALSE;
3786
3787 return GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003788}
3789
Brian Paul8c41a142005-11-19 15:36:28 +00003790
Jouk Jansen40322e12004-04-05 08:50:36 +00003791/**
3792 * This kicks everything off.
3793 *
3794 * \param ctx - The GL Context
3795 * \param str - The program string
3796 * \param len - The program string length
Brian Paul45703642005-10-29 15:52:31 +00003797 * \param program - The arb_program struct to return all the parsed info in
3798 * \return GL_TRUE on sucess, GL_FALSE on error
Jouk Jansen40322e12004-04-05 08:50:36 +00003799 */
Brian Paul8c41a142005-11-19 15:36:28 +00003800static GLboolean
3801_mesa_parse_arb_program(GLcontext *ctx, GLenum target,
3802 const GLubyte *str, GLsizei len,
3803 struct arb_program *program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003804{
3805 GLint a, err, error_pos;
3806 char error_msg[300];
3807 GLuint parsed_len;
3808 struct var_cache *vc_head;
3809 grammar arbprogram_syn_id;
3810 GLubyte *parsed, *inst;
3811 GLubyte *strz = NULL;
3812 static int arbprogram_syn_is_ok = 0; /* XXX temporary */
3813
Brian Paul8c41a142005-11-19 15:36:28 +00003814 /* set the program target before parsing */
3815 program->Base.Target = target;
3816
Brian Paul7f76b8f2004-09-10 01:05:39 +00003817 /* Reset error state */
3818 _mesa_set_program_error(ctx, -1, NULL);
3819
Brian Paul8c41a142005-11-19 15:36:28 +00003820 /* check if arb_grammar_text (arbprogram.syn) is syntactically correct */
Jouk Jansen40322e12004-04-05 08:50:36 +00003821 if (!arbprogram_syn_is_ok) {
Brian Paul8c41a142005-11-19 15:36:28 +00003822 /* One-time initialization of parsing system */
Jouk Jansen40322e12004-04-05 08:50:36 +00003823 grammar grammar_syn_id;
Jouk Jansen40322e12004-04-05 08:50:36 +00003824 GLuint parsed_len;
Jouk Jansen40322e12004-04-05 08:50:36 +00003825
3826 grammar_syn_id = grammar_load_from_text ((byte *) core_grammar_text);
3827 if (grammar_syn_id == 0) {
3828 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
Brian Paul8c41a142005-11-19 15:36:28 +00003829 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003830 _mesa_set_program_error (ctx, error_pos, error_msg);
3831 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003832 "glProgramStringARB(Error loading grammar rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003833 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003834 }
3835
Brian Paul8c41a142005-11-19 15:36:28 +00003836 err = !grammar_check(grammar_syn_id, (byte *) arb_grammar_text,
3837 &parsed, &parsed_len);
Jouk Jansen40322e12004-04-05 08:50:36 +00003838
Brian Paul49a80ca2006-04-28 15:40:11 +00003839 /* 'parsed' is unused here */
3840 _mesa_free (parsed);
3841 parsed = NULL;
3842
Brian Paul45703642005-10-29 15:52:31 +00003843 /* NOTE: we can't destroy grammar_syn_id right here because
3844 * grammar_destroy() can reset the last error
3845 */
Brian Paul8c41a142005-11-19 15:36:28 +00003846 if (err) {
3847 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003848 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3849 _mesa_set_program_error (ctx, error_pos, error_msg);
Brian Paul8c41a142005-11-19 15:36:28 +00003850 _mesa_error (ctx, GL_INVALID_OPERATION,
3851 "glProgramString(Error loading grammar rule set");
Jouk Jansen40322e12004-04-05 08:50:36 +00003852 grammar_destroy (grammar_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003853 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003854 }
3855
3856 grammar_destroy (grammar_syn_id);
3857
3858 arbprogram_syn_is_ok = 1;
3859 }
3860
3861 /* create the grammar object */
3862 arbprogram_syn_id = grammar_load_from_text ((byte *) arb_grammar_text);
3863 if (arbprogram_syn_id == 0) {
Brian Paul8c41a142005-11-19 15:36:28 +00003864 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003865 grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
3866 _mesa_set_program_error (ctx, error_pos, error_msg);
3867 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003868 "glProgramString(Error loading grammer rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003869 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003870 }
3871
3872 /* Set program_target register value */
Brian Paul55194df2005-11-19 23:29:18 +00003873 if (set_reg8 (ctx, arbprogram_syn_id, "program_target",
Jouk Jansen40322e12004-04-05 08:50:36 +00003874 program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) {
3875 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003876 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003877 }
3878
Brian Paul8c41a142005-11-19 15:36:28 +00003879 if (!enable_parser_extensions(ctx, arbprogram_syn_id)) {
3880 grammar_destroy(arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003881 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003882 }
3883
3884 /* check for NULL character occurences */
3885 {
Brian Paul8c41a142005-11-19 15:36:28 +00003886 GLint i;
3887 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003888 if (str[i] == '\0') {
Brian Paula088f162006-09-05 23:08:51 +00003889 program_error(ctx, i, "illegal character");
Jouk Jansen40322e12004-04-05 08:50:36 +00003890 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003891 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003892 }
Brian Paul8c41a142005-11-19 15:36:28 +00003893 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003894 }
3895
3896 /* copy the program string to a null-terminated string */
Brian Paulbdd15b52004-05-04 15:11:06 +00003897 strz = (GLubyte *) _mesa_malloc (len + 1);
Brian Paul45703642005-10-29 15:52:31 +00003898 if (!strz) {
Brian Paul8c41a142005-11-19 15:36:28 +00003899 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glProgramStringARB");
3900 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003901 return GL_FALSE;
3902 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003903 _mesa_memcpy (strz, str, len);
3904 strz[len] = '\0';
3905
Michal Krolb80bc052004-10-21 14:09:54 +00003906 /* do a fast check on program string - initial production buffer is 4K */
Brian Paul8c41a142005-11-19 15:36:28 +00003907 err = !grammar_fast_check(arbprogram_syn_id, strz,
3908 &parsed, &parsed_len, 0x1000);
Jouk Jansen40322e12004-04-05 08:50:36 +00003909
3910 /* Syntax parse error */
Brian Paul8c41a142005-11-19 15:36:28 +00003911 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00003912 grammar_get_last_error((GLubyte *) error_msg, 300, &error_pos);
3913 program_error(ctx, error_pos, error_msg);
Brian Paul5fe90292004-07-20 21:15:13 +00003914
Brian Paulb3aefd12005-09-19 20:12:32 +00003915#if DEBUG_PARSING
Brian Paula088f162006-09-05 23:08:51 +00003916 /* useful for debugging */
Brian Paulb3aefd12005-09-19 20:12:32 +00003917 do {
Brian Paul5fe90292004-07-20 21:15:13 +00003918 int line, col;
3919 char *s;
Brian Paul45703642005-10-29 15:52:31 +00003920 fprintf(stderr, "program: %s\n", (char *) strz);
3921 fprintf(stderr, "Error Pos: %d\n", ctx->program.ErrorPos);
Brian Paula088f162006-09-05 23:08:51 +00003922 s = (char *) _mesa_find_line_column(strz, strz+ctx->program.ErrorPos,
3923 &line, &col);
Brian Paulb3aefd12005-09-19 20:12:32 +00003924 fprintf(stderr, "line %d col %d: %s\n", line, col, s);
3925 } while (0)
3926#endif
Brian Paul5fe90292004-07-20 21:15:13 +00003927
Brian Paula088f162006-09-05 23:08:51 +00003928 _mesa_free(strz);
3929 _mesa_free(parsed);
3930
Jouk Jansen40322e12004-04-05 08:50:36 +00003931 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003932 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003933 }
3934
Jouk Jansen40322e12004-04-05 08:50:36 +00003935 grammar_destroy (arbprogram_syn_id);
3936
Brian Paul8c41a142005-11-19 15:36:28 +00003937 /*
3938 * Program string is syntactically correct at this point
3939 * Parse the tokenized version of the program now, generating
3940 * vertex/fragment program instructions.
3941 */
3942
Jouk Jansen40322e12004-04-05 08:50:36 +00003943 /* Initialize the arb_program struct */
3944 program->Base.String = strz;
Brian Paul383c39e2006-08-25 15:14:25 +00003945 program->Base.Instructions = _mesa_alloc_instructions(MAX_INSTRUCTIONS);
Jouk Jansen40322e12004-04-05 08:50:36 +00003946 program->Base.NumInstructions =
3947 program->Base.NumTemporaries =
3948 program->Base.NumParameters =
3949 program->Base.NumAttributes = program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00003950 program->Base.Parameters = _mesa_new_parameter_list ();
3951 program->Base.InputsRead = 0x0;
3952 program->Base.OutputsWritten = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003953 program->Position = 0;
3954 program->MajorVersion = program->MinorVersion = 0;
3955 program->PrecisionOption = GL_DONT_CARE;
3956 program->FogOption = GL_NONE;
3957 program->HintPositionInvariant = GL_FALSE;
3958 for (a = 0; a < MAX_TEXTURE_IMAGE_UNITS; a++)
Brian Paul45cd2f92005-11-03 02:25:10 +00003959 program->TexturesUsed[a] = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003960 program->NumAluInstructions =
3961 program->NumTexInstructions =
3962 program->NumTexIndirections = 0;
Keith Whitwellc3626a92005-11-01 17:25:49 +00003963 program->UsesKill = 0;
3964
Jouk Jansen40322e12004-04-05 08:50:36 +00003965 vc_head = NULL;
Brian Paul45703642005-10-29 15:52:31 +00003966 err = GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003967
3968 /* Start examining the tokens in the array */
3969 inst = parsed;
3970
3971 /* Check the grammer rev */
3972 if (*inst++ != REVISION) {
Brian Paula088f162006-09-05 23:08:51 +00003973 program_error (ctx, 0, "Grammar version mismatch");
Brian Paul45703642005-10-29 15:52:31 +00003974 err = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003975 }
3976 else {
Michal Krolb80bc052004-10-21 14:09:54 +00003977 /* ignore program target */
3978 inst++;
Brian Paul8c41a142005-11-19 15:36:28 +00003979 err = parse_instructions(ctx, inst, &vc_head, program);
Jouk Jansen40322e12004-04-05 08:50:36 +00003980 }
3981
3982 /*debug_variables(ctx, vc_head, program); */
3983
3984 /* We're done with the parsed binary array */
3985 var_cache_destroy (&vc_head);
3986
3987 _mesa_free (parsed);
Brian Paul45703642005-10-29 15:52:31 +00003988
Brian Paul8c41a142005-11-19 15:36:28 +00003989 /* Reallocate the instruction array from size [MAX_INSTRUCTIONS]
3990 * to size [ap.Base.NumInstructions].
3991 */
Brian Paula7543902006-08-24 21:58:32 +00003992 program->Base.Instructions
3993 = _mesa_realloc_instructions(program->Base.Instructions,
3994 MAX_INSTRUCTIONS,
3995 program->Base.NumInstructions);
3996
Brian Paul45703642005-10-29 15:52:31 +00003997 return !err;
Jouk Jansen40322e12004-04-05 08:50:36 +00003998}
Brian Paul8c41a142005-11-19 15:36:28 +00003999
4000
4001
4002void
4003_mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target,
4004 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004005 struct gl_fragment_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004006{
4007 struct arb_program ap;
4008 GLuint i;
4009
4010 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
Brian Paul95801792005-12-06 15:41:43 +00004011 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004012 /* Error in the program. Just return. */
4013 return;
4014 }
4015
4016 /* Copy the relevant contents of the arb_program struct into the
4017 * fragment_program struct.
4018 */
4019 program->Base.String = ap.Base.String;
4020 program->Base.NumInstructions = ap.Base.NumInstructions;
4021 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4022 program->Base.NumParameters = ap.Base.NumParameters;
4023 program->Base.NumAttributes = ap.Base.NumAttributes;
4024 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004025 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4026 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4027 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4028 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4029 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004030 program->NumAluInstructions = ap.NumAluInstructions;
4031 program->NumTexInstructions = ap.NumTexInstructions;
4032 program->NumTexIndirections = ap.NumTexIndirections;
Brian Paul006e1832006-03-29 15:15:37 +00004033 program->NumNativeAluInstructions = ap.NumAluInstructions;
4034 program->NumNativeTexInstructions = ap.NumTexInstructions;
4035 program->NumNativeTexIndirections = ap.NumTexIndirections;
Brian Paul8c41a142005-11-19 15:36:28 +00004036 program->Base.InputsRead = ap.Base.InputsRead;
4037 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4038 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++)
4039 program->TexturesUsed[i] = ap.TexturesUsed[i];
4040 program->FogOption = ap.FogOption;
4041
4042 if (program->Base.Instructions)
4043 _mesa_free(program->Base.Instructions);
4044 program->Base.Instructions = ap.Base.Instructions;
4045
4046 if (program->Base.Parameters)
4047 _mesa_free_parameter_list(program->Base.Parameters);
4048 program->Base.Parameters = ap.Base.Parameters;
4049
4050#if DEBUG_FP
4051 _mesa_print_program(&program.Base);
4052#endif
4053}
4054
4055
4056
4057/**
4058 * Parse the vertex program string. If success, update the given
4059 * vertex_program object with the new program. Else, leave the vertex_program
4060 * object unchanged.
4061 */
4062void
4063_mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
4064 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004065 struct gl_vertex_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004066{
4067 struct arb_program ap;
4068
4069 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
4070
Brian Paul95801792005-12-06 15:41:43 +00004071 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004072 /* Error in the program. Just return. */
4073 return;
4074 }
4075
4076 /* Copy the relevant contents of the arb_program struct into the
4077 * vertex_program struct.
4078 */
4079 program->Base.String = ap.Base.String;
4080 program->Base.NumInstructions = ap.Base.NumInstructions;
4081 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4082 program->Base.NumParameters = ap.Base.NumParameters;
4083 program->Base.NumAttributes = ap.Base.NumAttributes;
4084 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004085 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4086 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4087 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4088 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4089 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004090 program->Base.InputsRead = ap.Base.InputsRead;
4091 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4092 program->IsPositionInvariant = ap.HintPositionInvariant;
4093
4094 if (program->Base.Instructions)
4095 _mesa_free(program->Base.Instructions);
4096 program->Base.Instructions = ap.Base.Instructions;
4097
4098 if (program->Base.Parameters)
4099 _mesa_free_parameter_list(program->Base.Parameters);
4100 program->Base.Parameters = ap.Base.Parameters;
4101
4102#if DEBUG_VP
4103 _mesa_print_program(&program->Base);
4104#endif
4105}