blob: 43e3bc183d4d2a7d407f08ba2295184c3e891c4c [file] [log] [blame]
Jouk Jansen40322e12004-04-05 08:50:36 +00001/*
2 * Mesa 3-D graphics library
Brian Paulefd95c12006-10-29 17:55:16 +00003 * Version: 6.5.2
Jouk Jansen40322e12004-04-05 08:50:36 +00004 *
Michal Krolbb38cad2006-04-11 11:41:11 +00005 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
Jouk Jansen40322e12004-04-05 08:50:36 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#define DEBUG_PARSING 0
26
27/**
28 * \file arbprogparse.c
29 * ARB_*_program parser core
30 * \author Karl Rasche
31 */
32
Jouk Jansen40322e12004-04-05 08:50:36 +000033#include "glheader.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000034#include "imports.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000035#include "arbprogparse.h"
36#include "grammar_mesa.h"
Brian Paul32df89e2005-10-29 18:26:43 +000037#include "program.h"
Brian Paul8c41a142005-11-19 15:36:28 +000038#include "context.h"
Brian Paul6211a142006-08-24 23:37:13 +000039#include "macros.h"
Brian Paul8c41a142005-11-19 15:36:28 +000040#include "mtypes.h"
41#include "program_instruction.h"
42
43
Brian Paul6211a142006-08-24 23:37:13 +000044/* For ARB programs, use the NV instruction limits */
45#define MAX_INSTRUCTIONS MAX2(MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS, \
46 MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS)
Brian Paul8c41a142005-11-19 15:36:28 +000047
48
49/**
50 * This is basically a union of the vertex_program and fragment_program
51 * structs that we can use to parse the program into
52 *
53 * XXX we can probably get rid of this entirely someday.
54 */
55struct arb_program
56{
Brian Paul122629f2006-07-20 16:49:57 +000057 struct gl_program Base;
Brian Paul8c41a142005-11-19 15:36:28 +000058
59 GLuint Position; /* Just used for error reporting while parsing */
60 GLuint MajorVersion;
61 GLuint MinorVersion;
62
63 /* ARB_vertex_progmra options */
64 GLboolean HintPositionInvariant;
65
66 /* ARB_fragment_progmra options */
67 GLenum PrecisionOption; /* GL_DONT_CARE, GL_NICEST or GL_FASTEST */
68 GLenum FogOption; /* GL_NONE, GL_LINEAR, GL_EXP or GL_EXP2 */
69
70 /* ARB_fragment_program specifics */
71 GLbitfield TexturesUsed[MAX_TEXTURE_IMAGE_UNITS];
72 GLuint NumAluInstructions;
73 GLuint NumTexInstructions;
74 GLuint NumTexIndirections;
75
76 GLboolean UsesKill;
77};
78
Ian Romanick9bdfee32005-07-18 12:31:24 +000079
Alan Hourihane38b317d2004-12-14 09:11:52 +000080#ifndef __extension__
81#if !defined(__GNUC__) || (__GNUC__ < 2) || \
82 ((__GNUC__ == 2) && (__GNUC_MINOR__ <= 7))
Brian Paula6c423d2004-08-25 15:59:48 +000083# define __extension__
84#endif
Alan Hourihane38b317d2004-12-14 09:11:52 +000085#endif
Brian Paula6c423d2004-08-25 15:59:48 +000086
Jouk Jansen40322e12004-04-05 08:50:36 +000087/* TODO:
88 * Fragment Program Stuff:
89 * -----------------------------------------------------
90 *
91 * - things from Michal's email
92 * + overflow on atoi
93 * + not-overflowing floats (don't use parse_integer..)
94 * + can remove range checking in arbparse.c
95 *
96 * - check all limits of number of various variables
97 * + parameters
98 *
99 * - test! test! test!
100 *
101 * Vertex Program Stuff:
102 * -----------------------------------------------------
103 * - Optimize param array usage and count limits correctly, see spec,
104 * section 2.14.3.7
105 * + Record if an array is reference absolutly or relatively (or both)
106 * + For absolute arrays, store a bitmap of accesses
107 * + For single parameters, store an access flag
108 * + After parsing, make a parameter cleanup and merging pass, where
109 * relative arrays are layed out first, followed by abs arrays, and
110 * finally single state.
111 * + Remap offsets for param src and dst registers
112 * + Now we can properly count parameter usage
113 *
114 * - Multiple state binding errors in param arrays (see spec, just before
115 * section 2.14.3.3)
116 * - grep for XXX
117 *
118 * Mesa Stuff
119 * -----------------------------------------------------
120 * - User clipping planes vs. PositionInvariant
121 * - Is it sufficient to just multiply by the mvp to transform in the
122 * PositionInvariant case? Or do we need something more involved?
123 *
124 * - vp_src swizzle is GLubyte, fp_src swizzle is GLuint
125 * - fetch state listed in program_parameters list
126 * + WTF should this go???
127 * + currently in nvvertexec.c and s_nvfragprog.c
128 *
129 * - allow for multiple address registers (and fetch address regs properly)
130 *
131 * Cosmetic Stuff
132 * -----------------------------------------------------
133 * - remove any leftover unused grammer.c stuff (dict_ ?)
134 * - fix grammer.c error handling so its not static
135 * - #ifdef around stuff pertaining to extentions
136 *
137 * Outstanding Questions:
138 * -----------------------------------------------------
139 * - ARB_matrix_palette / ARB_vertex_blend -- not supported
140 * what gets hacked off because of this:
141 * + VERTEX_ATTRIB_MATRIXINDEX
142 * + VERTEX_ATTRIB_WEIGHT
143 * + MATRIX_MODELVIEW
144 * + MATRIX_PALETTE
145 *
146 * - When can we fetch env/local params from their own register files, and
147 * when to we have to fetch them into the main state register file?
148 * (think arrays)
149 *
150 * Grammar Changes:
151 * -----------------------------------------------------
152 */
153
154/* Changes since moving the file to shader directory
155
1562004-III-4 ------------------------------------------------------------
157- added #include "grammar_mesa.h"
158- removed grammar specific code part (it resides now in grammar.c)
159- added GL_ARB_fragment_program_shadow tokens
160- modified #include "arbparse_syn.h"
161- major changes inside _mesa_parse_arb_program()
162- check the program string for '\0' characters
163- copy the program string to a one-byte-longer location to have
164 it null-terminated
165- position invariance test (not writing to result.position) moved
166 to syntax part
167*/
168
169typedef GLubyte *production;
170
171/**
172 * This is the text describing the rules to parse the grammar
173 */
Brian Paula6c423d2004-08-25 15:59:48 +0000174__extension__ static char arb_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +0000175#include "arbprogram_syn.h"
176;
177
178/**
179 * These should match up with the values defined in arbprogram.syn
180 */
181
182/*
183 Changes:
184 - changed and merged V_* and F_* opcode values to OP_*.
185 - added GL_ARB_fragment_program_shadow specific tokens (michal)
186*/
Michal Krolb80bc052004-10-21 14:09:54 +0000187#define REVISION 0x09
Jouk Jansen40322e12004-04-05 08:50:36 +0000188
189/* program type */
190#define FRAGMENT_PROGRAM 0x01
191#define VERTEX_PROGRAM 0x02
192
193/* program section */
194#define OPTION 0x01
195#define INSTRUCTION 0x02
196#define DECLARATION 0x03
197#define END 0x04
198
Michal Krolb80bc052004-10-21 14:09:54 +0000199/* GL_ARB_fragment_program option */
200#define ARB_PRECISION_HINT_FASTEST 0x00
201#define ARB_PRECISION_HINT_NICEST 0x01
202#define ARB_FOG_EXP 0x02
203#define ARB_FOG_EXP2 0x03
204#define ARB_FOG_LINEAR 0x04
Jouk Jansen40322e12004-04-05 08:50:36 +0000205
Michal Krolb80bc052004-10-21 14:09:54 +0000206/* GL_ARB_vertex_program option */
207#define ARB_POSITION_INVARIANT 0x05
Jouk Jansen40322e12004-04-05 08:50:36 +0000208
Michal Krolb80bc052004-10-21 14:09:54 +0000209/* GL_ARB_fragment_program_shadow option */
210#define ARB_FRAGMENT_PROGRAM_SHADOW 0x06
Jouk Jansen40322e12004-04-05 08:50:36 +0000211
Michal Krolb80bc052004-10-21 14:09:54 +0000212/* GL_ARB_draw_buffers option */
213#define ARB_DRAW_BUFFERS 0x07
Michal Krolad22ce82004-10-11 08:13:25 +0000214
Jouk Jansen40322e12004-04-05 08:50:36 +0000215/* GL_ARB_fragment_program instruction class */
216#define OP_ALU_INST 0x00
217#define OP_TEX_INST 0x01
218
219/* GL_ARB_vertex_program instruction class */
220/* OP_ALU_INST */
221
222/* GL_ARB_fragment_program instruction type */
223#define OP_ALU_VECTOR 0x00
224#define OP_ALU_SCALAR 0x01
225#define OP_ALU_BINSC 0x02
226#define OP_ALU_BIN 0x03
227#define OP_ALU_TRI 0x04
228#define OP_ALU_SWZ 0x05
229#define OP_TEX_SAMPLE 0x06
230#define OP_TEX_KIL 0x07
231
232/* GL_ARB_vertex_program instruction type */
233#define OP_ALU_ARL 0x08
234/* OP_ALU_VECTOR */
235/* OP_ALU_SCALAR */
236/* OP_ALU_BINSC */
237/* OP_ALU_BIN */
238/* OP_ALU_TRI */
239/* OP_ALU_SWZ */
240
241/* GL_ARB_fragment_program instruction code */
242#define OP_ABS 0x00
243#define OP_ABS_SAT 0x1B
244#define OP_FLR 0x09
245#define OP_FLR_SAT 0x26
246#define OP_FRC 0x0A
247#define OP_FRC_SAT 0x27
248#define OP_LIT 0x0C
249#define OP_LIT_SAT 0x2A
250#define OP_MOV 0x11
251#define OP_MOV_SAT 0x30
252#define OP_COS 0x1F
253#define OP_COS_SAT 0x20
254#define OP_EX2 0x07
255#define OP_EX2_SAT 0x25
256#define OP_LG2 0x0B
257#define OP_LG2_SAT 0x29
258#define OP_RCP 0x14
259#define OP_RCP_SAT 0x33
260#define OP_RSQ 0x15
261#define OP_RSQ_SAT 0x34
262#define OP_SIN 0x38
263#define OP_SIN_SAT 0x39
264#define OP_SCS 0x35
265#define OP_SCS_SAT 0x36
266#define OP_POW 0x13
267#define OP_POW_SAT 0x32
268#define OP_ADD 0x01
269#define OP_ADD_SAT 0x1C
270#define OP_DP3 0x03
271#define OP_DP3_SAT 0x21
272#define OP_DP4 0x04
273#define OP_DP4_SAT 0x22
274#define OP_DPH 0x05
275#define OP_DPH_SAT 0x23
276#define OP_DST 0x06
277#define OP_DST_SAT 0x24
278#define OP_MAX 0x0F
279#define OP_MAX_SAT 0x2E
280#define OP_MIN 0x10
281#define OP_MIN_SAT 0x2F
282#define OP_MUL 0x12
283#define OP_MUL_SAT 0x31
284#define OP_SGE 0x16
285#define OP_SGE_SAT 0x37
286#define OP_SLT 0x17
287#define OP_SLT_SAT 0x3A
288#define OP_SUB 0x18
289#define OP_SUB_SAT 0x3B
290#define OP_XPD 0x1A
291#define OP_XPD_SAT 0x43
292#define OP_CMP 0x1D
293#define OP_CMP_SAT 0x1E
294#define OP_LRP 0x2B
295#define OP_LRP_SAT 0x2C
296#define OP_MAD 0x0E
297#define OP_MAD_SAT 0x2D
298#define OP_SWZ 0x19
299#define OP_SWZ_SAT 0x3C
300#define OP_TEX 0x3D
301#define OP_TEX_SAT 0x3E
302#define OP_TXB 0x3F
303#define OP_TXB_SAT 0x40
304#define OP_TXP 0x41
305#define OP_TXP_SAT 0x42
306#define OP_KIL 0x28
307
308/* GL_ARB_vertex_program instruction code */
309#define OP_ARL 0x02
310/* OP_ABS */
311/* OP_FLR */
312/* OP_FRC */
313/* OP_LIT */
314/* OP_MOV */
315/* OP_EX2 */
316#define OP_EXP 0x08
317/* OP_LG2 */
318#define OP_LOG 0x0D
319/* OP_RCP */
320/* OP_RSQ */
321/* OP_POW */
322/* OP_ADD */
323/* OP_DP3 */
324/* OP_DP4 */
325/* OP_DPH */
326/* OP_DST */
327/* OP_MAX */
328/* OP_MIN */
329/* OP_MUL */
330/* OP_SGE */
331/* OP_SLT */
332/* OP_SUB */
333/* OP_XPD */
334/* OP_MAD */
335/* OP_SWZ */
336
337/* fragment attribute binding */
338#define FRAGMENT_ATTRIB_COLOR 0x01
339#define FRAGMENT_ATTRIB_TEXCOORD 0x02
340#define FRAGMENT_ATTRIB_FOGCOORD 0x03
341#define FRAGMENT_ATTRIB_POSITION 0x04
342
343/* vertex attribute binding */
344#define VERTEX_ATTRIB_POSITION 0x01
345#define VERTEX_ATTRIB_WEIGHT 0x02
346#define VERTEX_ATTRIB_NORMAL 0x03
347#define VERTEX_ATTRIB_COLOR 0x04
348#define VERTEX_ATTRIB_FOGCOORD 0x05
349#define VERTEX_ATTRIB_TEXCOORD 0x06
350#define VERTEX_ATTRIB_MATRIXINDEX 0x07
351#define VERTEX_ATTRIB_GENERIC 0x08
352
353/* fragment result binding */
354#define FRAGMENT_RESULT_COLOR 0x01
355#define FRAGMENT_RESULT_DEPTH 0x02
356
357/* vertex result binding */
358#define VERTEX_RESULT_POSITION 0x01
359#define VERTEX_RESULT_COLOR 0x02
360#define VERTEX_RESULT_FOGCOORD 0x03
361#define VERTEX_RESULT_POINTSIZE 0x04
362#define VERTEX_RESULT_TEXCOORD 0x05
363
364/* texture target */
365#define TEXTARGET_1D 0x01
366#define TEXTARGET_2D 0x02
367#define TEXTARGET_3D 0x03
368#define TEXTARGET_RECT 0x04
369#define TEXTARGET_CUBE 0x05
370/* GL_ARB_fragment_program_shadow */
371#define TEXTARGET_SHADOW1D 0x06
372#define TEXTARGET_SHADOW2D 0x07
373#define TEXTARGET_SHADOWRECT 0x08
374
375/* face type */
376#define FACE_FRONT 0x00
377#define FACE_BACK 0x01
378
379/* color type */
380#define COLOR_PRIMARY 0x00
381#define COLOR_SECONDARY 0x01
382
383/* component */
384#define COMPONENT_X 0x00
385#define COMPONENT_Y 0x01
386#define COMPONENT_Z 0x02
387#define COMPONENT_W 0x03
388#define COMPONENT_0 0x04
389#define COMPONENT_1 0x05
390
391/* array index type */
392#define ARRAY_INDEX_ABSOLUTE 0x00
393#define ARRAY_INDEX_RELATIVE 0x01
394
395/* matrix name */
396#define MATRIX_MODELVIEW 0x01
397#define MATRIX_PROJECTION 0x02
398#define MATRIX_MVP 0x03
399#define MATRIX_TEXTURE 0x04
400#define MATRIX_PALETTE 0x05
401#define MATRIX_PROGRAM 0x06
402
403/* matrix modifier */
404#define MATRIX_MODIFIER_IDENTITY 0x00
405#define MATRIX_MODIFIER_INVERSE 0x01
406#define MATRIX_MODIFIER_TRANSPOSE 0x02
407#define MATRIX_MODIFIER_INVTRANS 0x03
408
409/* constant type */
410#define CONSTANT_SCALAR 0x01
411#define CONSTANT_VECTOR 0x02
412
413/* program param type */
414#define PROGRAM_PARAM_ENV 0x01
415#define PROGRAM_PARAM_LOCAL 0x02
416
417/* register type */
418#define REGISTER_ATTRIB 0x01
419#define REGISTER_PARAM 0x02
420#define REGISTER_RESULT 0x03
421#define REGISTER_ESTABLISHED_NAME 0x04
422
423/* param binding */
424#define PARAM_NULL 0x00
425#define PARAM_ARRAY_ELEMENT 0x01
426#define PARAM_STATE_ELEMENT 0x02
427#define PARAM_PROGRAM_ELEMENT 0x03
428#define PARAM_PROGRAM_ELEMENTS 0x04
429#define PARAM_CONSTANT 0x05
430
431/* param state property */
432#define STATE_MATERIAL_PARSER 0x01
433#define STATE_LIGHT_PARSER 0x02
434#define STATE_LIGHT_MODEL 0x03
435#define STATE_LIGHT_PROD 0x04
436#define STATE_FOG 0x05
437#define STATE_MATRIX_ROWS 0x06
438/* GL_ARB_fragment_program */
439#define STATE_TEX_ENV 0x07
440#define STATE_DEPTH 0x08
441/* GL_ARB_vertex_program */
442#define STATE_TEX_GEN 0x09
443#define STATE_CLIP_PLANE 0x0A
444#define STATE_POINT 0x0B
445
446/* state material property */
447#define MATERIAL_AMBIENT 0x01
448#define MATERIAL_DIFFUSE 0x02
449#define MATERIAL_SPECULAR 0x03
450#define MATERIAL_EMISSION 0x04
451#define MATERIAL_SHININESS 0x05
452
453/* state light property */
454#define LIGHT_AMBIENT 0x01
455#define LIGHT_DIFFUSE 0x02
456#define LIGHT_SPECULAR 0x03
457#define LIGHT_POSITION 0x04
458#define LIGHT_ATTENUATION 0x05
459#define LIGHT_HALF 0x06
460#define LIGHT_SPOT_DIRECTION 0x07
461
462/* state light model property */
463#define LIGHT_MODEL_AMBIENT 0x01
464#define LIGHT_MODEL_SCENECOLOR 0x02
465
466/* state light product property */
467#define LIGHT_PROD_AMBIENT 0x01
468#define LIGHT_PROD_DIFFUSE 0x02
469#define LIGHT_PROD_SPECULAR 0x03
470
471/* state texture environment property */
472#define TEX_ENV_COLOR 0x01
473
474/* state texture generation coord property */
475#define TEX_GEN_EYE 0x01
476#define TEX_GEN_OBJECT 0x02
477
478/* state fog property */
479#define FOG_COLOR 0x01
480#define FOG_PARAMS 0x02
481
482/* state depth property */
483#define DEPTH_RANGE 0x01
484
485/* state point parameters property */
486#define POINT_SIZE 0x01
487#define POINT_ATTENUATION 0x02
488
489/* declaration */
490#define ATTRIB 0x01
491#define PARAM 0x02
492#define TEMP 0x03
493#define OUTPUT 0x04
494#define ALIAS 0x05
495/* GL_ARB_vertex_program */
496#define ADDRESS 0x06
497
498/*-----------------------------------------------------------------------
499 * From here on down is the semantic checking portion
500 *
501 */
502
503/**
504 * Variable Table Handling functions
505 */
506typedef enum
507{
508 vt_none,
509 vt_address,
510 vt_attrib,
511 vt_param,
512 vt_temp,
513 vt_output,
514 vt_alias
515} var_type;
516
517
Brian Paul7aebaf32005-10-30 21:23:23 +0000518/**
519 * Setting an explicit field for each of the binding properties is a bit
520 * wasteful of space, but it should be much more clear when reading later on..
Jouk Jansen40322e12004-04-05 08:50:36 +0000521 */
522struct var_cache
523{
Brian Paul6a769d92006-04-28 15:42:15 +0000524 const GLubyte *name; /* don't free() - no need */
Jouk Jansen40322e12004-04-05 08:50:36 +0000525 var_type type;
526 GLuint address_binding; /* The index of the address register we should
527 * be using */
528 GLuint attrib_binding; /* For type vt_attrib, see nvfragprog.h for values */
Jouk Jansen40322e12004-04-05 08:50:36 +0000529 GLuint attrib_is_generic; /* If the attrib was specified through a generic
530 * vertex attrib */
531 GLuint temp_binding; /* The index of the temp register we are to use */
Brian Paul7aebaf32005-10-30 21:23:23 +0000532 GLuint output_binding; /* Output/result register number */
Jouk Jansen40322e12004-04-05 08:50:36 +0000533 struct var_cache *alias_binding; /* For type vt_alias, points to the var_cache entry
534 * that this is aliased to */
535 GLuint param_binding_type; /* {PROGRAM_STATE_VAR, PROGRAM_LOCAL_PARAM,
536 * PROGRAM_ENV_PARAM} */
537 GLuint param_binding_begin; /* This is the offset into the program_parameter_list where
538 * the tokens representing our bound state (or constants)
539 * start */
540 GLuint param_binding_length; /* This is how many entries in the the program_parameter_list
541 * we take up with our state tokens or constants. Note that
542 * this is _not_ the same as the number of param registers
543 * we eventually use */
544 struct var_cache *next;
545};
546
547static GLvoid
548var_cache_create (struct var_cache **va)
549{
550 *va = (struct var_cache *) _mesa_malloc (sizeof (struct var_cache));
551 if (*va) {
552 (**va).name = NULL;
553 (**va).type = vt_none;
554 (**va).attrib_binding = ~0;
555 (**va).attrib_is_generic = 0;
556 (**va).temp_binding = ~0;
557 (**va).output_binding = ~0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000558 (**va).param_binding_type = ~0;
559 (**va).param_binding_begin = ~0;
560 (**va).param_binding_length = ~0;
561 (**va).alias_binding = NULL;
562 (**va).next = NULL;
563 }
564}
565
566static GLvoid
567var_cache_destroy (struct var_cache **va)
568{
569 if (*va) {
570 var_cache_destroy (&(**va).next);
571 _mesa_free (*va);
572 *va = NULL;
573 }
574}
575
576static GLvoid
577var_cache_append (struct var_cache **va, struct var_cache *nv)
578{
579 if (*va)
580 var_cache_append (&(**va).next, nv);
581 else
582 *va = nv;
583}
584
585static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000586var_cache_find (struct var_cache *va, const GLubyte * name)
Jouk Jansen40322e12004-04-05 08:50:36 +0000587{
Brian Paul0a360cf2005-01-17 01:21:03 +0000588 /*struct var_cache *first = va;*/
Jouk Jansen40322e12004-04-05 08:50:36 +0000589
590 while (va) {
Brian Paulaa206952005-09-16 18:14:24 +0000591 if (!_mesa_strcmp ( (const char*) name, (const char*) va->name)) {
Jouk Jansen40322e12004-04-05 08:50:36 +0000592 if (va->type == vt_alias)
Michal Krol43343912005-01-11 15:47:16 +0000593 return va->alias_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +0000594 return va;
595 }
596
597 va = va->next;
598 }
599
600 return NULL;
601}
602
Brian Paula088f162006-09-05 23:08:51 +0000603
604
605/**
606 * Called when an error is detected while parsing/compiling a program.
607 * Sets the ctx->Program.ErrorString field to descript and records a
608 * GL_INVALID_OPERATION error.
609 * \param position position of error in program string
610 * \param descrip verbose error description
611 */
612static void
613program_error(GLcontext *ctx, GLint position, const char *descrip)
614{
615 if (descrip) {
616 const char *prefix = "glProgramString(", *suffix = ")";
617 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
618 _mesa_strlen(prefix) +
619 _mesa_strlen(suffix) + 1);
620 if (str) {
621 _mesa_sprintf(str, "%s%s%s", prefix, descrip, suffix);
622 _mesa_error(ctx, GL_INVALID_OPERATION, str);
623 _mesa_free(str);
624 }
625 }
626 _mesa_set_program_error(ctx, position, descrip);
627}
628
629
630
Jouk Jansen40322e12004-04-05 08:50:36 +0000631/**
632 * constructs an integer from 4 GLubytes in LE format
633 */
634static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000635parse_position (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000636{
637 GLuint value;
638
639 value = (GLuint) (*(*inst)++);
640 value += (GLuint) (*(*inst)++) * 0x100;
641 value += (GLuint) (*(*inst)++) * 0x10000;
642 value += (GLuint) (*(*inst)++) * 0x1000000;
643
644 return value;
645}
646
647/**
648 * This will, given a string, lookup the string as a variable name in the
649 * var cache. If the name is found, the var cache node corresponding to the
650 * var name is returned. If it is not found, a new entry is allocated
651 *
652 * \param I Points into the binary array where the string identifier begins
653 * \param found 1 if the string was found in the var_cache, 0 if it was allocated
654 * \return The location on the var_cache corresponding the the string starting at I
655 */
656static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000657parse_string (const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +0000658 struct arb_program *Program, GLuint * found)
659{
Brian Paula088f162006-09-05 23:08:51 +0000660 const GLubyte *i = *inst;
Jouk Jansen40322e12004-04-05 08:50:36 +0000661 struct var_cache *va = NULL;
Brian Paula6c423d2004-08-25 15:59:48 +0000662 (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000663
664 *inst += _mesa_strlen ((char *) i) + 1;
665
666 va = var_cache_find (*vc_head, i);
667
668 if (va) {
669 *found = 1;
670 return va;
671 }
672
673 *found = 0;
674 var_cache_create (&va);
Brian Paul6a769d92006-04-28 15:42:15 +0000675 va->name = (const GLubyte *) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000676
677 var_cache_append (vc_head, va);
678
679 return va;
680}
681
682static char *
Brian Paula088f162006-09-05 23:08:51 +0000683parse_string_without_adding (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000684{
Brian Paula088f162006-09-05 23:08:51 +0000685 const GLubyte *i = *inst;
Brian Paula6c423d2004-08-25 15:59:48 +0000686 (void) Program;
687
Jouk Jansen40322e12004-04-05 08:50:36 +0000688 *inst += _mesa_strlen ((char *) i) + 1;
689
690 return (char *) i;
691}
692
693/**
Brian Paul05908952004-06-08 15:20:23 +0000694 * \return -1 if we parse '-', return 1 otherwise
Jouk Jansen40322e12004-04-05 08:50:36 +0000695 */
Brian Paul05908952004-06-08 15:20:23 +0000696static GLint
Brian Paula088f162006-09-05 23:08:51 +0000697parse_sign (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000698{
699 /*return *(*inst)++ != '+'; */
700
701 if (**inst == '-') {
702 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000703 return -1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000704 }
705 else if (**inst == '+') {
706 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000707 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000708 }
709
Brian Paul05908952004-06-08 15:20:23 +0000710 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000711}
712
713/**
714 * parses and returns signed integer
715 */
716static GLint
Brian Paula088f162006-09-05 23:08:51 +0000717parse_integer (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000718{
719 GLint sign;
720 GLint value;
721
722 /* check if *inst points to '+' or '-'
723 * if yes, grab the sign and increment *inst
724 */
725 sign = parse_sign (inst);
726
727 /* now check if *inst points to 0
728 * if yes, increment the *inst and return the default value
729 */
730 if (**inst == 0) {
731 (*inst)++;
732 return 0;
733 }
734
735 /* parse the integer as you normally would do it */
736 value = _mesa_atoi (parse_string_without_adding (inst, Program));
737
738 /* now, after terminating 0 there is a position
739 * to parse it - parse_position()
740 */
741 Program->Position = parse_position (inst);
742
Brian Paul05908952004-06-08 15:20:23 +0000743 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000744}
745
746/**
Brian Paul1ff8f502005-02-16 15:08:29 +0000747 Accumulate this string of digits, and return them as
748 a large integer represented in floating point (for range).
749 If scale is not NULL, also accumulates a power-of-ten
750 integer scale factor that represents the number of digits
751 in the string.
752*/
753static GLdouble
Brian Paula088f162006-09-05 23:08:51 +0000754parse_float_string(const GLubyte ** inst, struct arb_program *Program, GLdouble *scale)
Brian Paul1ff8f502005-02-16 15:08:29 +0000755{
756 GLdouble value = 0.0;
757 GLdouble oscale = 1.0;
758
759 if (**inst == 0) { /* this string of digits is empty-- do nothing */
760 (*inst)++;
761 }
762 else { /* nonempty string-- parse out the digits */
Michal Krol98e35022005-04-14 10:19:19 +0000763 while (**inst >= '0' && **inst <= '9') {
Brian Paul1ff8f502005-02-16 15:08:29 +0000764 GLubyte digit = *((*inst)++);
765 value = value * 10.0 + (GLint) (digit - '0');
766 oscale *= 10.0;
767 }
768 assert(**inst == 0); /* integer string should end with 0 */
769 (*inst)++; /* skip over terminating 0 */
770 Program->Position = parse_position(inst); /* skip position (from integer) */
771 }
772 if (scale)
773 *scale = oscale;
774 return value;
775}
776
777/**
778 Parse an unsigned floating-point number from this stream of tokenized
779 characters. Example floating-point formats supported:
780 12.34
781 12
782 0.34
783 .34
784 12.34e-4
Jouk Jansen40322e12004-04-05 08:50:36 +0000785 */
786static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000787parse_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000788{
Brian Paul1ff8f502005-02-16 15:08:29 +0000789 GLint exponent;
790 GLdouble whole, fraction, fracScale = 1.0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000791
Brian Paul1ff8f502005-02-16 15:08:29 +0000792 whole = parse_float_string(inst, Program, 0);
793 fraction = parse_float_string(inst, Program, &fracScale);
794
795 /* Parse signed exponent */
796 exponent = parse_integer(inst, Program); /* This is the exponent */
Jouk Jansen40322e12004-04-05 08:50:36 +0000797
Brian Paul1ff8f502005-02-16 15:08:29 +0000798 /* Assemble parts of floating-point number: */
799 return (GLfloat) ((whole + fraction / fracScale) *
800 _mesa_pow(10.0, (GLfloat) exponent));
Jouk Jansen40322e12004-04-05 08:50:36 +0000801}
802
803
804/**
805 */
806static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000807parse_signed_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000808{
Brian Paul05908952004-06-08 15:20:23 +0000809 GLint sign = parse_sign (inst);
810 GLfloat value = parse_float (inst, Program);
811 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000812}
813
814/**
815 * This picks out a constant value from the parsed array. The constant vector is r
816 * returned in the *values array, which should be of length 4.
817 *
818 * \param values - The 4 component vector with the constant value in it
819 */
820static GLvoid
Brian Paula088f162006-09-05 23:08:51 +0000821parse_constant (const GLubyte ** inst, GLfloat *values, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000822 GLboolean use)
823{
824 GLuint components, i;
825
826
827 switch (*(*inst)++) {
828 case CONSTANT_SCALAR:
829 if (use == GL_TRUE) {
830 values[0] =
831 values[1] =
832 values[2] = values[3] = parse_float (inst, Program);
833 }
834 else {
835 values[0] =
836 values[1] =
837 values[2] = values[3] = parse_signed_float (inst, Program);
838 }
839
840 break;
841 case CONSTANT_VECTOR:
842 values[0] = values[1] = values[2] = 0;
843 values[3] = 1;
844 components = *(*inst)++;
845 for (i = 0; i < components; i++) {
846 values[i] = parse_signed_float (inst, Program);
847 }
848 break;
849 }
850}
851
852/**
853 * \param offset The offset from the address register that we should
854 * address
855 *
856 * \return 0 on sucess, 1 on error
857 */
858static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000859parse_relative_offset(GLcontext *ctx, const GLubyte **inst,
860 struct arb_program *Program, GLint *offset)
Jouk Jansen40322e12004-04-05 08:50:36 +0000861{
Brian Paul6a769d92006-04-28 15:42:15 +0000862 (void) ctx;
Jouk Jansen40322e12004-04-05 08:50:36 +0000863 *offset = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000864 return 0;
865}
866
867/**
868 * \param color 0 if color type is primary, 1 if color type is secondary
869 * \return 0 on sucess, 1 on error
870 */
871static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000872parse_color_type (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000873 GLint * color)
874{
Brian Paula6c423d2004-08-25 15:59:48 +0000875 (void) ctx; (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000876 *color = *(*inst)++ != COLOR_PRIMARY;
877 return 0;
878}
879
880/**
881 * Get an integer corresponding to a generic vertex attribute.
882 *
883 * \return 0 on sucess, 1 on error
884 */
885static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000886parse_generic_attrib_num(GLcontext *ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000887 struct arb_program *Program, GLuint *attrib)
888{
Brian Paulbd997cd2004-07-20 21:12:56 +0000889 GLint i = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000890
Michal Krolbb38cad2006-04-11 11:41:11 +0000891 if ((i < 0) || (i >= MAX_VERTEX_PROGRAM_ATTRIBS))
Jouk Jansen40322e12004-04-05 08:50:36 +0000892 {
Brian Paula088f162006-09-05 23:08:51 +0000893 program_error(ctx, Program->Position,
894 "Invalid generic vertex attribute index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000895 return 1;
896 }
897
Brian Paulbd997cd2004-07-20 21:12:56 +0000898 *attrib = (GLuint) i;
899
Jouk Jansen40322e12004-04-05 08:50:36 +0000900 return 0;
901}
902
903
904/**
Brian Paulbe76b7f2004-10-04 14:40:05 +0000905 * \param color The index of the color buffer to write into
906 * \return 0 on sucess, 1 on error
907 */
908static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000909parse_output_color_num (GLcontext * ctx, const GLubyte ** inst,
Brian Paulbe76b7f2004-10-04 14:40:05 +0000910 struct arb_program *Program, GLuint * color)
911{
912 GLint i = parse_integer (inst, Program);
913
914 if ((i < 0) || (i >= (int)ctx->Const.MaxDrawBuffers)) {
Brian Paula088f162006-09-05 23:08:51 +0000915 program_error(ctx, Program->Position, "Invalid draw buffer index");
Brian Paulbe76b7f2004-10-04 14:40:05 +0000916 return 1;
917 }
918
919 *color = (GLuint) i;
920 return 0;
921}
922
923
924/**
Jouk Jansen40322e12004-04-05 08:50:36 +0000925 * \param coord The texture unit index
926 * \return 0 on sucess, 1 on error
927 */
928static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000929parse_texcoord_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000930 struct arb_program *Program, GLuint * coord)
931{
Brian Paulbd997cd2004-07-20 21:12:56 +0000932 GLint i = parse_integer (inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000933
Brian Paula6c423d2004-08-25 15:59:48 +0000934 if ((i < 0) || (i >= (int)ctx->Const.MaxTextureUnits)) {
Brian Paula088f162006-09-05 23:08:51 +0000935 program_error(ctx, Program->Position, "Invalid texture unit index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000936 return 1;
937 }
938
Brian Paulbd997cd2004-07-20 21:12:56 +0000939 *coord = (GLuint) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000940 return 0;
941}
942
943/**
944 * \param coord The weight index
945 * \return 0 on sucess, 1 on error
946 */
947static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000948parse_weight_num (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000949 GLint * coord)
950{
951 *coord = parse_integer (inst, Program);
952
953 if ((*coord < 0) || (*coord >= 1)) {
Brian Paula088f162006-09-05 23:08:51 +0000954 program_error(ctx, Program->Position, "Invalid weight index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000955 return 1;
956 }
957
958 return 0;
959}
960
961/**
962 * \param coord The clip plane index
963 * \return 0 on sucess, 1 on error
964 */
965static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000966parse_clipplane_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000967 struct arb_program *Program, GLint * coord)
968{
969 *coord = parse_integer (inst, Program);
970
971 if ((*coord < 0) || (*coord >= (GLint) ctx->Const.MaxClipPlanes)) {
Brian Paula088f162006-09-05 23:08:51 +0000972 program_error(ctx, Program->Position, "Invalid clip plane index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000973 return 1;
974 }
975
976 return 0;
977}
978
979
980/**
981 * \return 0 on front face, 1 on back face
982 */
983static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000984parse_face_type (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000985{
986 switch (*(*inst)++) {
987 case FACE_FRONT:
988 return 0;
989
990 case FACE_BACK:
991 return 1;
992 }
993 return 0;
994}
995
996
997/**
998 * Given a matrix and a modifier token on the binary array, return tokens
999 * that _mesa_fetch_state() [program.c] can understand.
1000 *
1001 * \param matrix - the matrix we are talking about
1002 * \param matrix_idx - the index of the matrix we have (for texture & program matricies)
1003 * \param matrix_modifier - the matrix modifier (trans, inv, etc)
1004 * \return 0 on sucess, 1 on failure
1005 */
1006static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001007parse_matrix (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +00001008 GLint * matrix, GLint * matrix_idx, GLint * matrix_modifier)
1009{
1010 GLubyte mat = *(*inst)++;
1011
1012 *matrix_idx = 0;
1013
1014 switch (mat) {
1015 case MATRIX_MODELVIEW:
1016 *matrix = STATE_MODELVIEW;
1017 *matrix_idx = parse_integer (inst, Program);
1018 if (*matrix_idx > 0) {
Brian Paula088f162006-09-05 23:08:51 +00001019 program_error(ctx, Program->Position,
1020 "ARB_vertex_blend not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001021 return 1;
1022 }
1023 break;
1024
1025 case MATRIX_PROJECTION:
1026 *matrix = STATE_PROJECTION;
1027 break;
1028
1029 case MATRIX_MVP:
1030 *matrix = STATE_MVP;
1031 break;
1032
1033 case MATRIX_TEXTURE:
1034 *matrix = STATE_TEXTURE;
1035 *matrix_idx = parse_integer (inst, Program);
1036 if (*matrix_idx >= (GLint) ctx->Const.MaxTextureUnits) {
Brian Paula088f162006-09-05 23:08:51 +00001037 program_error(ctx, Program->Position, "Invalid Texture Unit");
1038 /* bad *matrix_id */
Jouk Jansen40322e12004-04-05 08:50:36 +00001039 return 1;
1040 }
1041 break;
1042
1043 /* This is not currently supported (ARB_matrix_palette) */
1044 case MATRIX_PALETTE:
1045 *matrix_idx = parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001046 program_error(ctx, Program->Position,
1047 "ARB_matrix_palette not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001048 return 1;
1049 break;
1050
1051 case MATRIX_PROGRAM:
1052 *matrix = STATE_PROGRAM;
1053 *matrix_idx = parse_integer (inst, Program);
1054 if (*matrix_idx >= (GLint) ctx->Const.MaxProgramMatrices) {
Brian Paula088f162006-09-05 23:08:51 +00001055 program_error(ctx, Program->Position, "Invalid Program Matrix");
1056 /* bad *matrix_idx */
Jouk Jansen40322e12004-04-05 08:50:36 +00001057 return 1;
1058 }
1059 break;
1060 }
1061
1062 switch (*(*inst)++) {
1063 case MATRIX_MODIFIER_IDENTITY:
1064 *matrix_modifier = 0;
1065 break;
1066 case MATRIX_MODIFIER_INVERSE:
1067 *matrix_modifier = STATE_MATRIX_INVERSE;
1068 break;
1069 case MATRIX_MODIFIER_TRANSPOSE:
1070 *matrix_modifier = STATE_MATRIX_TRANSPOSE;
1071 break;
1072 case MATRIX_MODIFIER_INVTRANS:
1073 *matrix_modifier = STATE_MATRIX_INVTRANS;
1074 break;
1075 }
1076
1077 return 0;
1078}
1079
1080
1081/**
1082 * This parses a state string (rather, the binary version of it) into
1083 * a 6-token sequence as described in _mesa_fetch_state() [program.c]
1084 *
1085 * \param inst - the start in the binary arry to start working from
1086 * \param state_tokens - the storage for the 6-token state description
1087 * \return - 0 on sucess, 1 on error
1088 */
1089static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001090parse_state_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001091 struct arb_program *Program, GLint * state_tokens)
1092{
1093 switch (*(*inst)++) {
1094 case STATE_MATERIAL_PARSER:
1095 state_tokens[0] = STATE_MATERIAL;
1096 state_tokens[1] = parse_face_type (inst);
1097 switch (*(*inst)++) {
1098 case MATERIAL_AMBIENT:
1099 state_tokens[2] = STATE_AMBIENT;
1100 break;
1101 case MATERIAL_DIFFUSE:
1102 state_tokens[2] = STATE_DIFFUSE;
1103 break;
1104 case MATERIAL_SPECULAR:
1105 state_tokens[2] = STATE_SPECULAR;
1106 break;
1107 case MATERIAL_EMISSION:
1108 state_tokens[2] = STATE_EMISSION;
1109 break;
1110 case MATERIAL_SHININESS:
1111 state_tokens[2] = STATE_SHININESS;
1112 break;
1113 }
1114 break;
1115
1116 case STATE_LIGHT_PARSER:
1117 state_tokens[0] = STATE_LIGHT;
1118 state_tokens[1] = parse_integer (inst, Program);
1119
1120 /* Check the value of state_tokens[1] against the # of lights */
1121 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001122 program_error(ctx, Program->Position, "Invalid Light Number");
1123 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001124 return 1;
1125 }
1126
1127 switch (*(*inst)++) {
1128 case LIGHT_AMBIENT:
1129 state_tokens[2] = STATE_AMBIENT;
1130 break;
1131 case LIGHT_DIFFUSE:
1132 state_tokens[2] = STATE_DIFFUSE;
1133 break;
1134 case LIGHT_SPECULAR:
1135 state_tokens[2] = STATE_SPECULAR;
1136 break;
1137 case LIGHT_POSITION:
1138 state_tokens[2] = STATE_POSITION;
1139 break;
1140 case LIGHT_ATTENUATION:
1141 state_tokens[2] = STATE_ATTENUATION;
1142 break;
1143 case LIGHT_HALF:
1144 state_tokens[2] = STATE_HALF;
1145 break;
1146 case LIGHT_SPOT_DIRECTION:
1147 state_tokens[2] = STATE_SPOT_DIRECTION;
1148 break;
1149 }
1150 break;
1151
1152 case STATE_LIGHT_MODEL:
1153 switch (*(*inst)++) {
1154 case LIGHT_MODEL_AMBIENT:
1155 state_tokens[0] = STATE_LIGHTMODEL_AMBIENT;
1156 break;
1157 case LIGHT_MODEL_SCENECOLOR:
1158 state_tokens[0] = STATE_LIGHTMODEL_SCENECOLOR;
1159 state_tokens[1] = parse_face_type (inst);
1160 break;
1161 }
1162 break;
1163
1164 case STATE_LIGHT_PROD:
1165 state_tokens[0] = STATE_LIGHTPROD;
1166 state_tokens[1] = parse_integer (inst, Program);
1167
1168 /* Check the value of state_tokens[1] against the # of lights */
1169 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001170 program_error(ctx, Program->Position, "Invalid Light Number");
1171 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001172 return 1;
1173 }
1174
1175 state_tokens[2] = parse_face_type (inst);
1176 switch (*(*inst)++) {
1177 case LIGHT_PROD_AMBIENT:
1178 state_tokens[3] = STATE_AMBIENT;
1179 break;
1180 case LIGHT_PROD_DIFFUSE:
1181 state_tokens[3] = STATE_DIFFUSE;
1182 break;
1183 case LIGHT_PROD_SPECULAR:
1184 state_tokens[3] = STATE_SPECULAR;
1185 break;
1186 }
1187 break;
1188
1189
1190 case STATE_FOG:
1191 switch (*(*inst)++) {
1192 case FOG_COLOR:
1193 state_tokens[0] = STATE_FOG_COLOR;
1194 break;
1195 case FOG_PARAMS:
1196 state_tokens[0] = STATE_FOG_PARAMS;
1197 break;
1198 }
1199 break;
1200
1201 case STATE_TEX_ENV:
1202 state_tokens[1] = parse_integer (inst, Program);
1203 switch (*(*inst)++) {
1204 case TEX_ENV_COLOR:
1205 state_tokens[0] = STATE_TEXENV_COLOR;
1206 break;
1207 }
1208 break;
1209
1210 case STATE_TEX_GEN:
1211 {
1212 GLuint type, coord;
1213
1214 state_tokens[0] = STATE_TEXGEN;
1215 /*state_tokens[1] = parse_integer (inst, Program);*/ /* Texture Unit */
1216
1217 if (parse_texcoord_num (ctx, inst, Program, &coord))
1218 return 1;
1219 state_tokens[1] = coord;
1220
1221 /* EYE or OBJECT */
1222 type = *(*inst++);
1223
1224 /* 0 - s, 1 - t, 2 - r, 3 - q */
1225 coord = *(*inst++);
1226
1227 if (type == TEX_GEN_EYE) {
1228 switch (coord) {
1229 case COMPONENT_X:
1230 state_tokens[2] = STATE_TEXGEN_EYE_S;
1231 break;
1232 case COMPONENT_Y:
1233 state_tokens[2] = STATE_TEXGEN_EYE_T;
1234 break;
1235 case COMPONENT_Z:
1236 state_tokens[2] = STATE_TEXGEN_EYE_R;
1237 break;
1238 case COMPONENT_W:
1239 state_tokens[2] = STATE_TEXGEN_EYE_Q;
1240 break;
1241 }
1242 }
1243 else {
1244 switch (coord) {
1245 case COMPONENT_X:
1246 state_tokens[2] = STATE_TEXGEN_OBJECT_S;
1247 break;
1248 case COMPONENT_Y:
1249 state_tokens[2] = STATE_TEXGEN_OBJECT_T;
1250 break;
1251 case COMPONENT_Z:
1252 state_tokens[2] = STATE_TEXGEN_OBJECT_R;
1253 break;
1254 case COMPONENT_W:
1255 state_tokens[2] = STATE_TEXGEN_OBJECT_Q;
1256 break;
1257 }
1258 }
1259 }
1260 break;
1261
1262 case STATE_DEPTH:
1263 switch (*(*inst)++) {
1264 case DEPTH_RANGE:
1265 state_tokens[0] = STATE_DEPTH_RANGE;
1266 break;
1267 }
1268 break;
1269
1270 case STATE_CLIP_PLANE:
1271 state_tokens[0] = STATE_CLIPPLANE;
1272 state_tokens[1] = parse_integer (inst, Program);
1273 if (parse_clipplane_num (ctx, inst, Program, &state_tokens[1]))
1274 return 1;
1275 break;
1276
1277 case STATE_POINT:
1278 switch (*(*inst++)) {
1279 case POINT_SIZE:
1280 state_tokens[0] = STATE_POINT_SIZE;
1281 break;
1282
1283 case POINT_ATTENUATION:
1284 state_tokens[0] = STATE_POINT_ATTENUATION;
1285 break;
1286 }
1287 break;
1288
1289 /* XXX: I think this is the correct format for a matrix row */
1290 case STATE_MATRIX_ROWS:
1291 state_tokens[0] = STATE_MATRIX;
1292 if (parse_matrix
1293 (ctx, inst, Program, &state_tokens[1], &state_tokens[2],
1294 &state_tokens[5]))
1295 return 1;
1296
1297 state_tokens[3] = parse_integer (inst, Program); /* The first row to grab */
1298
1299 if ((**inst) != 0) { /* Either the last row, 0 */
1300 state_tokens[4] = parse_integer (inst, Program);
1301 if (state_tokens[4] < state_tokens[3]) {
Brian Paula088f162006-09-05 23:08:51 +00001302 program_error(ctx, Program->Position,
1303 "Second matrix index less than the first");
1304 /* state_tokens[4] vs. state_tokens[3] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001305 return 1;
1306 }
1307 }
1308 else {
1309 state_tokens[4] = state_tokens[3];
1310 (*inst)++;
1311 }
1312 break;
1313 }
1314
1315 return 0;
1316}
1317
1318/**
1319 * This parses a state string (rather, the binary version of it) into
1320 * a 6-token similar for the state fetching code in program.c
1321 *
1322 * One might ask, why fetch these parameters into just like you fetch
1323 * state when they are already stored in other places?
1324 *
1325 * Because of array offsets -> We can stick env/local parameters in the
1326 * middle of a parameter array and then index someplace into the array
1327 * when we execute.
1328 *
1329 * One optimization might be to only do this for the cases where the
1330 * env/local parameters end up inside of an array, and leave the
1331 * single parameters (or arrays of pure env/local pareameters) in their
1332 * respective register files.
1333 *
1334 * For ENV parameters, the format is:
1335 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1336 * state_tokens[1] = STATE_ENV
1337 * state_tokens[2] = the parameter index
1338 *
1339 * for LOCAL parameters, the format is:
1340 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1341 * state_tokens[1] = STATE_LOCAL
1342 * state_tokens[2] = the parameter index
1343 *
1344 * \param inst - the start in the binary arry to start working from
1345 * \param state_tokens - the storage for the 6-token state description
1346 * \return - 0 on sucess, 1 on failure
1347 */
1348static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001349parse_program_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001350 struct arb_program *Program, GLint * state_tokens)
1351{
1352 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1353 state_tokens[0] = STATE_FRAGMENT_PROGRAM;
1354 else
1355 state_tokens[0] = STATE_VERTEX_PROGRAM;
1356
1357
1358 switch (*(*inst)++) {
1359 case PROGRAM_PARAM_ENV:
1360 state_tokens[1] = STATE_ENV;
1361 state_tokens[2] = parse_integer (inst, Program);
1362
1363 /* Check state_tokens[2] against the number of ENV parameters available */
1364 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001365 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001366 ||
1367 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001368 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxEnvParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001369 program_error(ctx, Program->Position,
1370 "Invalid Program Env Parameter");
1371 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001372 return 1;
1373 }
1374
1375 break;
1376
1377 case PROGRAM_PARAM_LOCAL:
1378 state_tokens[1] = STATE_LOCAL;
1379 state_tokens[2] = parse_integer (inst, Program);
1380
1381 /* Check state_tokens[2] against the number of LOCAL parameters available */
1382 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001383 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001384 ||
1385 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001386 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001387 program_error(ctx, Program->Position,
1388 "Invalid Program Local Parameter");
1389 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001390 return 1;
1391 }
1392 break;
1393 }
1394
1395 return 0;
1396}
1397
1398/**
1399 * For ARB_vertex_program, programs are not allowed to use both an explicit
1400 * vertex attribute and a generic vertex attribute corresponding to the same
1401 * state. See section 2.14.3.1 of the GL_ARB_vertex_program spec.
1402 *
1403 * This will walk our var_cache and make sure that nobody does anything fishy.
1404 *
1405 * \return 0 on sucess, 1 on error
1406 */
1407static GLuint
1408generic_attrib_check(struct var_cache *vc_head)
1409{
1410 int a;
1411 struct var_cache *curr;
1412 GLboolean explicitAttrib[MAX_VERTEX_PROGRAM_ATTRIBS],
1413 genericAttrib[MAX_VERTEX_PROGRAM_ATTRIBS];
1414
1415 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1416 explicitAttrib[a] = GL_FALSE;
1417 genericAttrib[a] = GL_FALSE;
1418 }
1419
1420 curr = vc_head;
1421 while (curr) {
1422 if (curr->type == vt_attrib) {
1423 if (curr->attrib_is_generic)
Brian Paul18e7c5c2005-10-30 21:46:00 +00001424 genericAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001425 else
Brian Paul18e7c5c2005-10-30 21:46:00 +00001426 explicitAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001427 }
1428
1429 curr = curr->next;
1430 }
1431
1432 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1433 if ((explicitAttrib[a]) && (genericAttrib[a]))
1434 return 1;
1435 }
1436
1437 return 0;
1438}
1439
1440/**
1441 * This will handle the binding side of an ATTRIB var declaration
1442 *
Brian Paul18e7c5c2005-10-30 21:46:00 +00001443 * \param inputReg returns the input register index, one of the
1444 * VERT_ATTRIB_* or FRAG_ATTRIB_* values.
Brian Paula088f162006-09-05 23:08:51 +00001445 * \return returns 0 on success, 1 on error
Jouk Jansen40322e12004-04-05 08:50:36 +00001446 */
1447static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001448parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst,
Brian Paul18e7c5c2005-10-30 21:46:00 +00001449 struct arb_program *Program,
1450 GLuint *inputReg, GLuint *is_generic)
Jouk Jansen40322e12004-04-05 08:50:36 +00001451{
Jouk Jansen40322e12004-04-05 08:50:36 +00001452 GLint err = 0;
1453
1454 *is_generic = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001455
Jouk Jansen40322e12004-04-05 08:50:36 +00001456 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1457 switch (*(*inst)++) {
1458 case FRAGMENT_ATTRIB_COLOR:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001459 {
1460 GLint coord;
1461 err = parse_color_type (ctx, inst, Program, &coord);
1462 *inputReg = FRAG_ATTRIB_COL0 + coord;
1463 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001464 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001465 case FRAGMENT_ATTRIB_TEXCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001466 {
1467 GLuint texcoord;
1468 err = parse_texcoord_num (ctx, inst, Program, &texcoord);
1469 *inputReg = FRAG_ATTRIB_TEX0 + texcoord;
1470 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001471 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001472 case FRAGMENT_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001473 *inputReg = FRAG_ATTRIB_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001474 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001475 case FRAGMENT_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001476 *inputReg = FRAG_ATTRIB_WPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001477 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001478 default:
1479 err = 1;
1480 break;
1481 }
1482 }
1483 else {
1484 switch (*(*inst)++) {
1485 case VERTEX_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001486 *inputReg = VERT_ATTRIB_POS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001487 break;
1488
1489 case VERTEX_ATTRIB_WEIGHT:
1490 {
1491 GLint weight;
Jouk Jansen40322e12004-04-05 08:50:36 +00001492 err = parse_weight_num (ctx, inst, Program, &weight);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001493 *inputReg = VERT_ATTRIB_WEIGHT;
Brian Paul3a557502006-09-05 23:15:29 +00001494#if 1
1495 /* hack for Warcraft (see bug 8060) */
1496 _mesa_warning(ctx, "Application error: vertex program uses 'vertex.weight' but GL_ARB_vertex_blend not supported.");
Brian Pauld9aebd82006-09-06 05:03:47 +00001497 break;
Brian Paul3a557502006-09-05 23:15:29 +00001498#else
Brian Paula088f162006-09-05 23:08:51 +00001499 program_error(ctx, Program->Position,
1500 "ARB_vertex_blend not supported");
Brian Pauld9aebd82006-09-06 05:03:47 +00001501 return 1;
Brian Paul3a557502006-09-05 23:15:29 +00001502#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00001503 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001504
1505 case VERTEX_ATTRIB_NORMAL:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001506 *inputReg = VERT_ATTRIB_NORMAL;
Jouk Jansen40322e12004-04-05 08:50:36 +00001507 break;
1508
1509 case VERTEX_ATTRIB_COLOR:
1510 {
1511 GLint color;
Jouk Jansen40322e12004-04-05 08:50:36 +00001512 err = parse_color_type (ctx, inst, Program, &color);
1513 if (color) {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001514 *inputReg = VERT_ATTRIB_COLOR1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001515 }
1516 else {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001517 *inputReg = VERT_ATTRIB_COLOR0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001518 }
1519 }
1520 break;
1521
1522 case VERTEX_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001523 *inputReg = VERT_ATTRIB_FOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00001524 break;
1525
1526 case VERTEX_ATTRIB_TEXCOORD:
1527 {
1528 GLuint unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001529 err = parse_texcoord_num (ctx, inst, Program, &unit);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001530 *inputReg = VERT_ATTRIB_TEX0 + unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001531 }
1532 break;
1533
Jouk Jansen40322e12004-04-05 08:50:36 +00001534 case VERTEX_ATTRIB_MATRIXINDEX:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001535 /* Not supported at this time */
1536 {
1537 const char *msg = "ARB_palette_matrix not supported";
1538 parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001539 program_error(ctx, Program->Position, msg);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001540 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001541 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001542
1543 case VERTEX_ATTRIB_GENERIC:
1544 {
1545 GLuint attrib;
Tilman Sauerbeck6c334752006-06-28 16:26:20 +00001546 err = parse_generic_attrib_num(ctx, inst, Program, &attrib);
Brian Paula088f162006-09-05 23:08:51 +00001547 if (!err) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001548 *is_generic = 1;
Brian Paul095c6692006-04-25 00:21:32 +00001549 /* Add VERT_ATTRIB_GENERIC0 here because ARB_vertex_program's
1550 * attributes do not alias the conventional vertex
1551 * attributes.
1552 */
1553 if (attrib > 0)
1554 *inputReg = attrib + VERT_ATTRIB_GENERIC0;
Brian Paul919f6a02006-05-29 14:37:56 +00001555 else
1556 *inputReg = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001557 }
1558 }
1559 break;
1560
1561 default:
1562 err = 1;
1563 break;
1564 }
1565 }
1566
Jouk Jansen40322e12004-04-05 08:50:36 +00001567 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00001568 program_error(ctx, Program->Position, "Bad attribute binding");
Jouk Jansen40322e12004-04-05 08:50:36 +00001569 }
1570
Brian Paulde997602005-11-12 17:53:14 +00001571 Program->Base.InputsRead |= (1 << *inputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001572
1573 return err;
1574}
1575
Brian Paul7aebaf32005-10-30 21:23:23 +00001576
Jouk Jansen40322e12004-04-05 08:50:36 +00001577/**
1578 * This translates between a binary token for an output variable type
1579 * and the mesa token for the same thing.
1580 *
Brian Paul7aebaf32005-10-30 21:23:23 +00001581 * \param inst The parsed tokens
1582 * \param outputReg Returned index/number of the output register,
Brian Paul90ebb582005-11-02 18:06:12 +00001583 * one of the VERT_RESULT_* or FRAG_RESULT_* values.
Jouk Jansen40322e12004-04-05 08:50:36 +00001584 */
1585static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001586parse_result_binding(GLcontext *ctx, const GLubyte **inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00001587 GLuint *outputReg, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00001588{
Brian Paul7aebaf32005-10-30 21:23:23 +00001589 const GLubyte token = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001590
Brian Paul7aebaf32005-10-30 21:23:23 +00001591 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001592 case FRAGMENT_RESULT_COLOR:
Jouk Jansen40322e12004-04-05 08:50:36 +00001593 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001594 GLuint out_color;
1595
Brian Paulbe76b7f2004-10-04 14:40:05 +00001596 /* This gets result of the color buffer we're supposed to
Brian Paul7aebaf32005-10-30 21:23:23 +00001597 * draw into. This pertains to GL_ARB_draw_buffers.
Brian Paulbe76b7f2004-10-04 14:40:05 +00001598 */
1599 parse_output_color_num(ctx, inst, Program, &out_color);
Brian Paul7aebaf32005-10-30 21:23:23 +00001600 ASSERT(out_color < MAX_DRAW_BUFFERS);
Brian Paul90ebb582005-11-02 18:06:12 +00001601 *outputReg = FRAG_RESULT_COLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001602 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001603 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001604 /* for vtx programs, this is VERTEX_RESULT_POSITION */
1605 *outputReg = VERT_RESULT_HPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001606 }
1607 break;
1608
1609 case FRAGMENT_RESULT_DEPTH:
Jouk Jansen40322e12004-04-05 08:50:36 +00001610 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001611 /* for frag programs, this is FRAGMENT_RESULT_DEPTH */
Brian Paul90ebb582005-11-02 18:06:12 +00001612 *outputReg = FRAG_RESULT_DEPR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001613 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001614 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001615 /* for vtx programs, this is VERTEX_RESULT_COLOR */
Jouk Jansen40322e12004-04-05 08:50:36 +00001616 GLint color_type;
1617 GLuint face_type = parse_face_type(inst);
Brian Paul7aebaf32005-10-30 21:23:23 +00001618 GLint err = parse_color_type(ctx, inst, Program, &color_type);
1619 if (err)
1620 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001621
Jouk Jansen40322e12004-04-05 08:50:36 +00001622 if (face_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001623 /* back face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001624 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001625 *outputReg = VERT_RESULT_BFC1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001626 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001627 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001628 *outputReg = VERT_RESULT_BFC0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001629 }
1630 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001631 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001632 /* front face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001633 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001634 *outputReg = VERT_RESULT_COL1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001635 }
1636 /* primary color */
1637 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001638 *outputReg = VERT_RESULT_COL0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001639 }
1640 }
1641 }
1642 break;
1643
1644 case VERTEX_RESULT_FOGCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001645 *outputReg = VERT_RESULT_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001646 break;
1647
1648 case VERTEX_RESULT_POINTSIZE:
Brian Paul7aebaf32005-10-30 21:23:23 +00001649 *outputReg = VERT_RESULT_PSIZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00001650 break;
1651
1652 case VERTEX_RESULT_TEXCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001653 {
1654 GLuint unit;
1655 if (parse_texcoord_num (ctx, inst, Program, &unit))
1656 return 1;
1657 *outputReg = VERT_RESULT_TEX0 + unit;
1658 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001659 break;
1660 }
1661
Brian Paulde997602005-11-12 17:53:14 +00001662 Program->Base.OutputsWritten |= (1 << *outputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001663
1664 return 0;
1665}
1666
Brian Paul7aebaf32005-10-30 21:23:23 +00001667
Jouk Jansen40322e12004-04-05 08:50:36 +00001668/**
1669 * This handles the declaration of ATTRIB variables
1670 *
1671 * XXX: Still needs
1672 * parse_vert_attrib_binding(), or something like that
1673 *
1674 * \return 0 on sucess, 1 on error
1675 */
1676static GLint
Brian Paula088f162006-09-05 23:08:51 +00001677parse_attrib (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001678 struct arb_program *Program)
1679{
1680 GLuint found;
1681 char *error_msg;
1682 struct var_cache *attrib_var;
1683
1684 attrib_var = parse_string (inst, vc_head, Program, &found);
1685 Program->Position = parse_position (inst);
1686 if (found) {
1687 error_msg = (char *)
1688 _mesa_malloc (_mesa_strlen ((char *) attrib_var->name) + 40);
1689 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1690 attrib_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001691 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001692 _mesa_free (error_msg);
1693 return 1;
1694 }
1695
1696 attrib_var->type = vt_attrib;
1697
Brian Paul7aebaf32005-10-30 21:23:23 +00001698 if (parse_attrib_binding(ctx, inst, Program, &attrib_var->attrib_binding,
Brian Paul7aebaf32005-10-30 21:23:23 +00001699 &attrib_var->attrib_is_generic))
1700 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001701
Brian Paul7aebaf32005-10-30 21:23:23 +00001702 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00001703 program_error(ctx, Program->Position,
1704 "Cannot use both a generic vertex attribute "
1705 "and a specific attribute of the same type");
Brian Paul7aebaf32005-10-30 21:23:23 +00001706 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001707 }
1708
1709 Program->Base.NumAttributes++;
1710 return 0;
1711}
1712
1713/**
1714 * \param use -- TRUE if we're called when declaring implicit parameters,
1715 * FALSE if we're declaraing variables. This has to do with
1716 * if we get a signed or unsigned float for scalar constants
1717 */
1718static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001719parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001720 struct var_cache *param_var,
1721 struct arb_program *Program, GLboolean use)
1722{
1723 GLint idx;
Brian Paul7aebaf32005-10-30 21:23:23 +00001724 GLuint err = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001725 GLint state_tokens[6];
1726 GLfloat const_values[4];
1727
Jouk Jansen40322e12004-04-05 08:50:36 +00001728 switch (*(*inst)++) {
1729 case PARAM_STATE_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001730 if (parse_state_single_item (ctx, inst, Program, state_tokens))
1731 return 1;
1732
1733 /* If we adding STATE_MATRIX that has multiple rows, we need to
1734 * unroll it and call _mesa_add_state_reference() for each row
1735 */
1736 if ((state_tokens[0] == STATE_MATRIX)
1737 && (state_tokens[3] != state_tokens[4])) {
1738 GLint row;
1739 GLint first_row = state_tokens[3];
1740 GLint last_row = state_tokens[4];
1741
1742 for (row = first_row; row <= last_row; row++) {
1743 state_tokens[3] = state_tokens[4] = row;
1744
Brian Paulde997602005-11-12 17:53:14 +00001745 idx = _mesa_add_state_reference(Program->Base.Parameters,
1746 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001747 if (param_var->param_binding_begin == ~0U)
1748 param_var->param_binding_begin = idx;
1749 param_var->param_binding_length++;
1750 Program->Base.NumParameters++;
1751 }
1752 }
1753 else {
Brian Paulde997602005-11-12 17:53:14 +00001754 idx = _mesa_add_state_reference(Program->Base.Parameters,
1755 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001756 if (param_var->param_binding_begin == ~0U)
1757 param_var->param_binding_begin = idx;
1758 param_var->param_binding_length++;
1759 Program->Base.NumParameters++;
1760 }
1761 break;
1762
1763 case PARAM_PROGRAM_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001764 if (parse_program_single_item (ctx, inst, Program, state_tokens))
1765 return 1;
Brian Paulde997602005-11-12 17:53:14 +00001766 idx = _mesa_add_state_reference (Program->Base.Parameters, state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001767 if (param_var->param_binding_begin == ~0U)
1768 param_var->param_binding_begin = idx;
1769 param_var->param_binding_length++;
1770 Program->Base.NumParameters++;
1771
1772 /* Check if there is more: 0 -> we're done, else its an integer */
1773 if (**inst) {
1774 GLuint out_of_range, new_idx;
1775 GLuint start_idx = state_tokens[2] + 1;
1776 GLuint end_idx = parse_integer (inst, Program);
1777
1778 out_of_range = 0;
1779 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1780 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001781 && (end_idx >= ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001782 || ((state_tokens[1] == STATE_LOCAL)
1783 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001784 ctx->Const.FragmentProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001785 out_of_range = 1;
1786 }
1787 else {
1788 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001789 && (end_idx >= ctx->Const.VertexProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001790 || ((state_tokens[1] == STATE_LOCAL)
1791 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001792 ctx->Const.VertexProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001793 out_of_range = 1;
1794 }
1795 if (out_of_range) {
Brian Paula088f162006-09-05 23:08:51 +00001796 program_error(ctx, Program->Position,
1797 "Invalid Program Parameter"); /*end_idx*/
Jouk Jansen40322e12004-04-05 08:50:36 +00001798 return 1;
1799 }
1800
1801 for (new_idx = start_idx; new_idx <= end_idx; new_idx++) {
1802 state_tokens[2] = new_idx;
Brian Paulde997602005-11-12 17:53:14 +00001803 idx = _mesa_add_state_reference(Program->Base.Parameters,
1804 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001805 param_var->param_binding_length++;
1806 Program->Base.NumParameters++;
1807 }
1808 }
Brian Paul7aebaf32005-10-30 21:23:23 +00001809 else {
1810 (*inst)++;
1811 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001812 break;
1813
1814 case PARAM_CONSTANT:
1815 parse_constant (inst, const_values, Program, use);
Brian Paulde997602005-11-12 17:53:14 +00001816 idx = _mesa_add_named_constant(Program->Base.Parameters,
1817 (char *) param_var->name,
1818 const_values);
Jouk Jansen40322e12004-04-05 08:50:36 +00001819 if (param_var->param_binding_begin == ~0U)
1820 param_var->param_binding_begin = idx;
1821 param_var->param_binding_length++;
1822 Program->Base.NumParameters++;
1823 break;
1824
1825 default:
Brian Paula088f162006-09-05 23:08:51 +00001826 program_error(ctx, Program->Position,
1827 "Unexpected token (in parse_param_elements())");
Jouk Jansen40322e12004-04-05 08:50:36 +00001828 return 1;
1829 }
1830
1831 /* Make sure we haven't blown past our parameter limits */
1832 if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
1833 (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001834 ctx->Const.VertexProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001835 || ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1836 && (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001837 ctx->Const.FragmentProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001838 program_error(ctx, Program->Position, "Too many parameter variables");
Jouk Jansen40322e12004-04-05 08:50:36 +00001839 return 1;
1840 }
1841
1842 return err;
1843}
1844
Brian Paul7aebaf32005-10-30 21:23:23 +00001845
Jouk Jansen40322e12004-04-05 08:50:36 +00001846/**
1847 * This picks out PARAM program parameter bindings.
1848 *
1849 * XXX: This needs to be stressed & tested
1850 *
1851 * \return 0 on sucess, 1 on error
1852 */
1853static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001854parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001855 struct arb_program *Program)
1856{
Brian Paulbd997cd2004-07-20 21:12:56 +00001857 GLuint found, err;
1858 GLint specified_length;
Jouk Jansen40322e12004-04-05 08:50:36 +00001859 struct var_cache *param_var;
1860
1861 err = 0;
1862 param_var = parse_string (inst, vc_head, Program, &found);
1863 Program->Position = parse_position (inst);
1864
1865 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001866 char *error_msg = (char *)
1867 _mesa_malloc (_mesa_strlen ((char *) param_var->name) + 40);
Jouk Jansen40322e12004-04-05 08:50:36 +00001868 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1869 param_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001870 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001871 _mesa_free (error_msg);
1872 return 1;
1873 }
1874
1875 specified_length = parse_integer (inst, Program);
1876
1877 if (specified_length < 0) {
Brian Paula088f162006-09-05 23:08:51 +00001878 program_error(ctx, Program->Position, "Negative parameter array length");
Jouk Jansen40322e12004-04-05 08:50:36 +00001879 return 1;
1880 }
1881
1882 param_var->type = vt_param;
1883 param_var->param_binding_length = 0;
1884
1885 /* Right now, everything is shoved into the main state register file.
1886 *
1887 * In the future, it would be nice to leave things ENV/LOCAL params
1888 * in their respective register files, if possible
1889 */
1890 param_var->param_binding_type = PROGRAM_STATE_VAR;
1891
1892 /* Remember to:
1893 * * - add each guy to the parameter list
1894 * * - increment the param_var->param_binding_len
1895 * * - store the param_var->param_binding_begin for the first one
1896 * * - compare the actual len to the specified len at the end
1897 */
1898 while (**inst != PARAM_NULL) {
1899 if (parse_param_elements (ctx, inst, param_var, Program, GL_FALSE))
1900 return 1;
1901 }
1902
1903 /* Test array length here! */
1904 if (specified_length) {
Brian Paula6c423d2004-08-25 15:59:48 +00001905 if (specified_length != (int)param_var->param_binding_length) {
Brian Paula088f162006-09-05 23:08:51 +00001906 program_error(ctx, Program->Position,
1907 "Declared parameter array length does not match parameter list");
Jouk Jansen40322e12004-04-05 08:50:36 +00001908 }
1909 }
1910
1911 (*inst)++;
1912
1913 return 0;
1914}
1915
1916/**
1917 *
1918 */
1919static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001920parse_param_use (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001921 struct arb_program *Program, struct var_cache **new_var)
1922{
1923 struct var_cache *param_var;
1924
1925 /* First, insert a dummy entry into the var_cache */
1926 var_cache_create (&param_var);
Brian Paul6a769d92006-04-28 15:42:15 +00001927 param_var->name = (const GLubyte *) " ";
Jouk Jansen40322e12004-04-05 08:50:36 +00001928 param_var->type = vt_param;
1929
1930 param_var->param_binding_length = 0;
1931 /* Don't fill in binding_begin; We use the default value of -1
1932 * to tell if its already initialized, elsewhere.
1933 *
1934 * param_var->param_binding_begin = 0;
1935 */
1936 param_var->param_binding_type = PROGRAM_STATE_VAR;
1937
1938 var_cache_append (vc_head, param_var);
1939
1940 /* Then fill it with juicy parameter goodness */
1941 if (parse_param_elements (ctx, inst, param_var, Program, GL_TRUE))
1942 return 1;
1943
1944 *new_var = param_var;
1945
1946 return 0;
1947}
1948
1949
1950/**
1951 * This handles the declaration of TEMP variables
1952 *
1953 * \return 0 on sucess, 1 on error
1954 */
1955static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001956parse_temp (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001957 struct arb_program *Program)
1958{
1959 GLuint found;
1960 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00001961
1962 while (**inst != 0) {
1963 temp_var = parse_string (inst, vc_head, Program, &found);
1964 Program->Position = parse_position (inst);
1965 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001966 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00001967 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
1968 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1969 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001970 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001971 _mesa_free (error_msg);
1972 return 1;
1973 }
1974
1975 temp_var->type = vt_temp;
1976
1977 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
1978 (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001979 ctx->Const.FragmentProgram.MaxTemps))
Jouk Jansen40322e12004-04-05 08:50:36 +00001980 || ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
1981 && (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001982 ctx->Const.VertexProgram.MaxTemps))) {
Brian Paula088f162006-09-05 23:08:51 +00001983 program_error(ctx, Program->Position,
1984 "Too many TEMP variables declared");
Jouk Jansen40322e12004-04-05 08:50:36 +00001985 return 1;
1986 }
1987
1988 temp_var->temp_binding = Program->Base.NumTemporaries;
1989 Program->Base.NumTemporaries++;
1990 }
1991 (*inst)++;
1992
1993 return 0;
1994}
1995
1996/**
1997 * This handles variables of the OUTPUT variety
1998 *
1999 * \return 0 on sucess, 1 on error
2000 */
2001static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002002parse_output (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002003 struct arb_program *Program)
2004{
2005 GLuint found;
2006 struct var_cache *output_var;
Brian Paul7aebaf32005-10-30 21:23:23 +00002007 GLuint err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002008
2009 output_var = parse_string (inst, vc_head, Program, &found);
2010 Program->Position = parse_position (inst);
2011 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002012 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002013 _mesa_malloc (_mesa_strlen ((char *) output_var->name) + 40);
2014 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2015 output_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002016 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002017 _mesa_free (error_msg);
2018 return 1;
2019 }
2020
2021 output_var->type = vt_output;
Brian Paul7aebaf32005-10-30 21:23:23 +00002022
2023 err = parse_result_binding(ctx, inst, &output_var->output_binding, Program);
2024 return err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002025}
2026
2027/**
2028 * This handles variables of the ALIAS kind
2029 *
2030 * \return 0 on sucess, 1 on error
2031 */
2032static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002033parse_alias (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002034 struct arb_program *Program)
2035{
2036 GLuint found;
2037 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002038
2039 temp_var = parse_string (inst, vc_head, Program, &found);
2040 Program->Position = parse_position (inst);
2041
2042 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002043 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002044 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2045 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2046 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002047 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002048 _mesa_free (error_msg);
2049 return 1;
2050 }
2051
2052 temp_var->type = vt_alias;
2053 temp_var->alias_binding = parse_string (inst, vc_head, Program, &found);
2054 Program->Position = parse_position (inst);
2055
2056 if (!found)
2057 {
Brian Paul7aebaf32005-10-30 21:23:23 +00002058 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002059 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2060 _mesa_sprintf (error_msg, "Alias value %s is not defined",
2061 temp_var->alias_binding->name);
Brian Paula088f162006-09-05 23:08:51 +00002062 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002063 _mesa_free (error_msg);
2064 return 1;
2065 }
2066
2067 return 0;
2068}
2069
2070/**
2071 * This handles variables of the ADDRESS kind
2072 *
2073 * \return 0 on sucess, 1 on error
2074 */
2075static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002076parse_address (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002077 struct arb_program *Program)
2078{
2079 GLuint found;
2080 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002081
2082 while (**inst != 0) {
2083 temp_var = parse_string (inst, vc_head, Program, &found);
2084 Program->Position = parse_position (inst);
2085 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002086 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002087 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2088 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2089 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002090 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002091 _mesa_free (error_msg);
2092 return 1;
2093 }
2094
2095 temp_var->type = vt_address;
2096
2097 if (Program->Base.NumAddressRegs >=
Brian Paul05051032005-11-01 04:36:33 +00002098 ctx->Const.VertexProgram.MaxAddressRegs) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002099 const char *msg = "Too many ADDRESS variables declared";
Brian Paula088f162006-09-05 23:08:51 +00002100 program_error(ctx, Program->Position, msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002101 return 1;
2102 }
2103
2104 temp_var->address_binding = Program->Base.NumAddressRegs;
2105 Program->Base.NumAddressRegs++;
2106 }
2107 (*inst)++;
2108
2109 return 0;
2110}
2111
2112/**
2113 * Parse a program declaration
2114 *
2115 * \return 0 on sucess, 1 on error
2116 */
2117static GLint
Brian Paula088f162006-09-05 23:08:51 +00002118parse_declaration (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002119 struct arb_program *Program)
2120{
2121 GLint err = 0;
2122
2123 switch (*(*inst)++) {
2124 case ADDRESS:
2125 err = parse_address (ctx, inst, vc_head, Program);
2126 break;
2127
2128 case ALIAS:
2129 err = parse_alias (ctx, inst, vc_head, Program);
2130 break;
2131
2132 case ATTRIB:
2133 err = parse_attrib (ctx, inst, vc_head, Program);
2134 break;
2135
2136 case OUTPUT:
2137 err = parse_output (ctx, inst, vc_head, Program);
2138 break;
2139
2140 case PARAM:
2141 err = parse_param (ctx, inst, vc_head, Program);
2142 break;
2143
2144 case TEMP:
2145 err = parse_temp (ctx, inst, vc_head, Program);
2146 break;
2147 }
2148
2149 return err;
2150}
2151
2152/**
Brian Paul7aebaf32005-10-30 21:23:23 +00002153 * Handle the parsing out of a masked destination register, either for a
2154 * vertex or fragment program.
Jouk Jansen40322e12004-04-05 08:50:36 +00002155 *
2156 * If we are a vertex program, make sure we don't write to
Brian Paul7aebaf32005-10-30 21:23:23 +00002157 * result.position if we have specified that the program is
Jouk Jansen40322e12004-04-05 08:50:36 +00002158 * position invariant
2159 *
2160 * \param File - The register file we write to
2161 * \param Index - The register index we write to
2162 * \param WriteMask - The mask controlling which components we write (1->write)
2163 *
2164 * \return 0 on sucess, 1 on error
2165 */
2166static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002167parse_masked_dst_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002168 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7aebaf32005-10-30 21:23:23 +00002169 enum register_file *File, GLuint *Index, GLint *WriteMask)
Jouk Jansen40322e12004-04-05 08:50:36 +00002170{
Brian Paul7aebaf32005-10-30 21:23:23 +00002171 GLuint tmp, result;
Jouk Jansen40322e12004-04-05 08:50:36 +00002172 struct var_cache *dst;
2173
2174 /* We either have a result register specified, or a
2175 * variable that may or may not be writable
2176 */
2177 switch (*(*inst)++) {
2178 case REGISTER_RESULT:
Brian Paul7aebaf32005-10-30 21:23:23 +00002179 if (parse_result_binding(ctx, inst, Index, Program))
Jouk Jansen40322e12004-04-05 08:50:36 +00002180 return 1;
2181 *File = PROGRAM_OUTPUT;
2182 break;
2183
2184 case REGISTER_ESTABLISHED_NAME:
2185 dst = parse_string (inst, vc_head, Program, &result);
2186 Program->Position = parse_position (inst);
2187
2188 /* If the name has never been added to our symbol table, we're hosed */
2189 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002190 program_error(ctx, Program->Position, "0: Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002191 return 1;
2192 }
2193
2194 switch (dst->type) {
2195 case vt_output:
2196 *File = PROGRAM_OUTPUT;
Brian Paul7aebaf32005-10-30 21:23:23 +00002197 *Index = dst->output_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002198 break;
2199
2200 case vt_temp:
2201 *File = PROGRAM_TEMPORARY;
2202 *Index = dst->temp_binding;
2203 break;
2204
2205 /* If the var type is not vt_output or vt_temp, no go */
2206 default:
Brian Paula088f162006-09-05 23:08:51 +00002207 program_error(ctx, Program->Position,
2208 "Destination register is read only");
Jouk Jansen40322e12004-04-05 08:50:36 +00002209 return 1;
2210 }
2211 break;
2212
2213 default:
Brian Paula088f162006-09-05 23:08:51 +00002214 program_error(ctx, Program->Position,
2215 "Unexpected opcode in parse_masked_dst_reg()");
Jouk Jansen40322e12004-04-05 08:50:36 +00002216 return 1;
2217 }
2218
2219
2220 /* Position invariance test */
2221 /* This test is done now in syntax portion - when position invariance OPTION
2222 is specified, "result.position" rule is disabled so there is no way
2223 to write the position
2224 */
2225 /*if ((Program->HintPositionInvariant) && (*File == PROGRAM_OUTPUT) &&
2226 (*Index == 0)) {
Brian Paula088f162006-09-05 23:08:51 +00002227 program_error(ctx, Program->Position,
Jouk Jansen40322e12004-04-05 08:50:36 +00002228 "Vertex program specified position invariance and wrote vertex position");
2229 }*/
2230
2231 /* And then the mask.
2232 * w,a -> bit 0
2233 * z,b -> bit 1
2234 * y,g -> bit 2
2235 * x,r -> bit 3
Keith Whitwell7c26b612005-04-21 14:46:57 +00002236 *
2237 * ==> Need to reverse the order of bits for this!
Jouk Jansen40322e12004-04-05 08:50:36 +00002238 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002239 tmp = (GLint) *(*inst)++;
2240 *WriteMask = (((tmp>>3) & 0x1) |
2241 ((tmp>>1) & 0x2) |
2242 ((tmp<<1) & 0x4) |
2243 ((tmp<<3) & 0x8));
Jouk Jansen40322e12004-04-05 08:50:36 +00002244
2245 return 0;
2246}
2247
2248
2249/**
2250 * Handle the parsing of a address register
2251 *
2252 * \param Index - The register index we write to
2253 *
2254 * \return 0 on sucess, 1 on error
2255 */
2256static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002257parse_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002258 struct var_cache **vc_head,
2259 struct arb_program *Program, GLint * Index)
2260{
2261 struct var_cache *dst;
2262 GLuint result;
Aapo Tahkola6fc864b2006-03-22 21:29:15 +00002263
2264 *Index = 0; /* XXX */
Jouk Jansen40322e12004-04-05 08:50:36 +00002265
2266 dst = parse_string (inst, vc_head, Program, &result);
2267 Program->Position = parse_position (inst);
2268
2269 /* If the name has never been added to our symbol table, we're hosed */
2270 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002271 program_error(ctx, Program->Position, "Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002272 return 1;
2273 }
2274
2275 if (dst->type != vt_address) {
Brian Paula088f162006-09-05 23:08:51 +00002276 program_error(ctx, Program->Position, "Variable is not of type ADDRESS");
Jouk Jansen40322e12004-04-05 08:50:36 +00002277 return 1;
2278 }
2279
2280 return 0;
2281}
2282
Brian Paul8e8fa632005-07-01 02:03:33 +00002283#if 0 /* unused */
Jouk Jansen40322e12004-04-05 08:50:36 +00002284/**
2285 * Handle the parsing out of a masked address register
2286 *
2287 * \param Index - The register index we write to
2288 * \param WriteMask - The mask controlling which components we write (1->write)
2289 *
2290 * \return 0 on sucess, 1 on error
2291 */
2292static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002293parse_masked_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002294 struct var_cache **vc_head,
2295 struct arb_program *Program, GLint * Index,
2296 GLboolean * WriteMask)
2297{
2298 if (parse_address_reg (ctx, inst, vc_head, Program, Index))
2299 return 1;
2300
2301 /* This should be 0x8 */
2302 (*inst)++;
2303
2304 /* Writemask of .x is implied */
2305 WriteMask[0] = 1;
2306 WriteMask[1] = WriteMask[2] = WriteMask[3] = 0;
2307
2308 return 0;
2309}
Brian Paul8e8fa632005-07-01 02:03:33 +00002310#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00002311
2312/**
2313 * Parse out a swizzle mask.
2314 *
Brian Paul32df89e2005-10-29 18:26:43 +00002315 * Basically convert COMPONENT_X/Y/Z/W to SWIZZLE_X/Y/Z/W
Jouk Jansen40322e12004-04-05 08:50:36 +00002316 *
2317 * The len parameter allows us to grab 4 components for a vector
2318 * swizzle, or just 1 component for a scalar src register selection
2319 */
Brian Paul32df89e2005-10-29 18:26:43 +00002320static void
Brian Paula088f162006-09-05 23:08:51 +00002321parse_swizzle_mask(const GLubyte ** inst, GLubyte *swizzle, GLint len)
Jouk Jansen40322e12004-04-05 08:50:36 +00002322{
Brian Paul32df89e2005-10-29 18:26:43 +00002323 GLint i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002324
Brian Paul32df89e2005-10-29 18:26:43 +00002325 for (i = 0; i < 4; i++)
2326 swizzle[i] = i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002327
Brian Paul32df89e2005-10-29 18:26:43 +00002328 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00002329 switch (*(*inst)++) {
2330 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002331 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002332 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002333 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002334 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002335 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002336 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002337 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002338 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002339 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002340 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002341 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002342 default:
2343 _mesa_problem(NULL, "bad component in parse_swizzle_mask()");
2344 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002345 }
2346 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002347}
2348
Jouk Jansen40322e12004-04-05 08:50:36 +00002349
Brian Paul32df89e2005-10-29 18:26:43 +00002350/**
2351 * Parse an extended swizzle mask which is a sequence of
2352 * four x/y/z/w/0/1 tokens.
2353 * \return swizzle four swizzle values
2354 * \return negateMask four element bitfield
2355 */
2356static void
Brian Paula088f162006-09-05 23:08:51 +00002357parse_extended_swizzle_mask(const GLubyte **inst, GLubyte swizzle[4],
Brian Paul32df89e2005-10-29 18:26:43 +00002358 GLubyte *negateMask)
2359{
2360 GLint i;
2361
2362 *negateMask = 0x0;
2363 for (i = 0; i < 4; i++) {
2364 GLubyte swz;
2365 if (parse_sign(inst) == -1)
2366 *negateMask |= (1 << i);
Jouk Jansen40322e12004-04-05 08:50:36 +00002367
2368 swz = *(*inst)++;
2369
2370 switch (swz) {
2371 case COMPONENT_0:
Brian Paul32df89e2005-10-29 18:26:43 +00002372 swizzle[i] = SWIZZLE_ZERO;
Jouk Jansen40322e12004-04-05 08:50:36 +00002373 break;
2374 case COMPONENT_1:
Brian Paul32df89e2005-10-29 18:26:43 +00002375 swizzle[i] = SWIZZLE_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002376 break;
2377 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002378 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002379 break;
2380 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002381 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002382 break;
2383 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002384 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002385 break;
2386 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002387 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002388 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002389 default:
2390 _mesa_problem(NULL, "bad case in parse_extended_swizzle_mask()");
2391 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002392 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002393 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002394}
2395
2396
2397static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002398parse_src_reg (GLcontext * ctx, const GLubyte ** inst,
2399 struct var_cache **vc_head,
Brian Paul7aebaf32005-10-30 21:23:23 +00002400 struct arb_program *Program,
2401 enum register_file * File, GLint * Index,
Jouk Jansen40322e12004-04-05 08:50:36 +00002402 GLboolean *IsRelOffset )
2403{
2404 struct var_cache *src;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002405 GLuint binding, is_generic, found;
Brian Paulbd997cd2004-07-20 21:12:56 +00002406 GLint offset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002407
Keith Whitwell7c26b612005-04-21 14:46:57 +00002408 *IsRelOffset = 0;
2409
Jouk Jansen40322e12004-04-05 08:50:36 +00002410 /* And the binding for the src */
2411 switch (*(*inst)++) {
2412 case REGISTER_ATTRIB:
2413 if (parse_attrib_binding
Brian Paul18e7c5c2005-10-30 21:46:00 +00002414 (ctx, inst, Program, &binding, &is_generic))
Jouk Jansen40322e12004-04-05 08:50:36 +00002415 return 1;
2416 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002417 *Index = binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002418
2419 /* We need to insert a dummy variable into the var_cache so we can
2420 * catch generic vertex attrib aliasing errors
2421 */
2422 var_cache_create(&src);
2423 src->type = vt_attrib;
Brian Paul6a769d92006-04-28 15:42:15 +00002424 src->name = (const GLubyte *) "Dummy Attrib Variable";
Brian Paul18e7c5c2005-10-30 21:46:00 +00002425 src->attrib_binding = binding;
2426 src->attrib_is_generic = is_generic;
Jouk Jansen40322e12004-04-05 08:50:36 +00002427 var_cache_append(vc_head, src);
2428 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00002429 program_error(ctx, Program->Position,
2430 "Cannot use both a generic vertex attribute "
2431 "and a specific attribute of the same type");
Jouk Jansen40322e12004-04-05 08:50:36 +00002432 return 1;
2433 }
2434 break;
2435
2436 case REGISTER_PARAM:
2437 switch (**inst) {
2438 case PARAM_ARRAY_ELEMENT:
2439 (*inst)++;
2440 src = parse_string (inst, vc_head, Program, &found);
2441 Program->Position = parse_position (inst);
2442
2443 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002444 program_error(ctx, Program->Position,
2445 "2: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002446 return 1;
2447 }
2448
Brian Paul95801792005-12-06 15:41:43 +00002449 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002450
2451 switch (*(*inst)++) {
2452 case ARRAY_INDEX_ABSOLUTE:
2453 offset = parse_integer (inst, Program);
2454
2455 if ((offset < 0)
Brian Paula6c423d2004-08-25 15:59:48 +00002456 || (offset >= (int)src->param_binding_length)) {
Brian Paula088f162006-09-05 23:08:51 +00002457 program_error(ctx, Program->Position,
2458 "Index out of range");
2459 /* offset, src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002460 return 1;
2461 }
2462
2463 *Index = src->param_binding_begin + offset;
2464 break;
2465
2466 case ARRAY_INDEX_RELATIVE:
2467 {
2468 GLint addr_reg_idx, rel_off;
2469
2470 /* First, grab the address regiseter */
2471 if (parse_address_reg (ctx, inst, vc_head, Program, &addr_reg_idx))
2472 return 1;
2473
2474 /* And the .x */
2475 ((*inst)++);
2476 ((*inst)++);
2477 ((*inst)++);
2478 ((*inst)++);
2479
2480 /* Then the relative offset */
2481 if (parse_relative_offset(ctx, inst, Program, &rel_off)) return 1;
2482
2483 /* And store it properly */
2484 *Index = src->param_binding_begin + rel_off;
2485 *IsRelOffset = 1;
2486 }
2487 break;
2488 }
2489 break;
2490
2491 default:
Jouk Jansen40322e12004-04-05 08:50:36 +00002492 if (parse_param_use (ctx, inst, vc_head, Program, &src))
2493 return 1;
2494
Brian Paul95801792005-12-06 15:41:43 +00002495 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002496 *Index = src->param_binding_begin;
2497 break;
2498 }
2499 break;
2500
2501 case REGISTER_ESTABLISHED_NAME:
Jouk Jansen40322e12004-04-05 08:50:36 +00002502 src = parse_string (inst, vc_head, Program, &found);
2503 Program->Position = parse_position (inst);
2504
2505 /* If the name has never been added to our symbol table, we're hosed */
2506 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002507 program_error(ctx, Program->Position,
2508 "3: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002509 return 1;
2510 }
2511
2512 switch (src->type) {
2513 case vt_attrib:
2514 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002515 *Index = src->attrib_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002516 break;
2517
2518 /* XXX: We have to handle offsets someplace in here! -- or are those above? */
2519 case vt_param:
Brian Paul95801792005-12-06 15:41:43 +00002520 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002521 *Index = src->param_binding_begin;
2522 break;
2523
2524 case vt_temp:
2525 *File = PROGRAM_TEMPORARY;
2526 *Index = src->temp_binding;
2527 break;
2528
2529 /* If the var type is vt_output no go */
2530 default:
Brian Paula088f162006-09-05 23:08:51 +00002531 program_error(ctx, Program->Position,
2532 "destination register is read only");
2533 /* bad src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002534 return 1;
2535 }
2536 break;
2537
2538 default:
Brian Paula088f162006-09-05 23:08:51 +00002539 program_error(ctx, Program->Position,
2540 "Unknown token in parse_src_reg");
Jouk Jansen40322e12004-04-05 08:50:36 +00002541 return 1;
2542 }
2543
2544 return 0;
2545}
2546
2547/**
Brian Paul18e7c5c2005-10-30 21:46:00 +00002548 * Parse fragment program vector source register.
Jouk Jansen40322e12004-04-05 08:50:36 +00002549 */
2550static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002551parse_fp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00002552 struct var_cache **vc_head,
2553 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00002554 struct prog_src_register *reg)
Jouk Jansen40322e12004-04-05 08:50:36 +00002555{
Brian Paul7aebaf32005-10-30 21:23:23 +00002556 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00002557 GLint index;
2558 GLboolean negate;
2559 GLubyte swizzle[4];
2560 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002561
Jouk Jansen40322e12004-04-05 08:50:36 +00002562 /* Grab the sign */
Brian Paul32df89e2005-10-29 18:26:43 +00002563 negate = (parse_sign (inst) == -1) ? 0xf : 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00002564
2565 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00002566 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Jouk Jansen40322e12004-04-05 08:50:36 +00002567 return 1;
2568
2569 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002570 parse_swizzle_mask(inst, swizzle, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00002571
Brian Paul32df89e2005-10-29 18:26:43 +00002572 reg->File = file;
2573 reg->Index = index;
Brian Paul32df89e2005-10-29 18:26:43 +00002574 reg->NegateBase = negate;
2575 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00002576 return 0;
2577}
2578
Jouk Jansen40322e12004-04-05 08:50:36 +00002579
Brian Paulb7fc1c32006-08-30 23:38:03 +00002580/**
2581 * Parse fragment program destination register.
2582 * \return 1 if error, 0 if no error.
2583 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002584static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002585parse_fp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00002586 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002587 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002588{
Brian Paul7aebaf32005-10-30 21:23:23 +00002589 GLint mask;
2590 GLuint idx;
2591 enum register_file file;
2592
Keith Whitwell7c26b612005-04-21 14:46:57 +00002593 if (parse_masked_dst_reg (ctx, inst, vc_head, Program, &file, &idx, &mask))
Jouk Jansen40322e12004-04-05 08:50:36 +00002594 return 1;
2595
Keith Whitwell7c26b612005-04-21 14:46:57 +00002596 reg->File = file;
2597 reg->Index = idx;
2598 reg->WriteMask = mask;
2599 return 0;
2600}
2601
2602
Brian Paul7aebaf32005-10-30 21:23:23 +00002603/**
2604 * Parse fragment program scalar src register.
Brian Paulb7fc1c32006-08-30 23:38:03 +00002605 * \return 1 if error, 0 if no error.
Brian Paul7aebaf32005-10-30 21:23:23 +00002606 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002607static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002608parse_fp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00002609 struct var_cache **vc_head,
2610 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002611 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002612{
Brian Paul7aebaf32005-10-30 21:23:23 +00002613 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002614 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00002615 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002616 GLubyte Swizzle[4];
2617 GLboolean IsRelOffset;
2618
2619 /* Grab the sign */
2620 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
2621
2622 /* And the src reg */
2623 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
2624 return 1;
2625
2626 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002627 parse_swizzle_mask(inst, Swizzle, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002628
Keith Whitwell7c26b612005-04-21 14:46:57 +00002629 reg->File = File;
2630 reg->Index = Index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002631 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 Pauld6272e02006-10-29 18:03:16 +00002653 _mesa_init_instructions(fp, 1);
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 Pauld6272e02006-10-29 18:03:16 +00003145 _mesa_init_instructions(vp, 1);
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 Pauld6272e02006-10-29 18:03:16 +00003687 _mesa_init_instructions(Program->Base.Instructions + numInst, 1);
Brian Paul8c41a142005-11-19 15:36:28 +00003688 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
Brian Paul3a557502006-09-05 23:15:29 +00003787#if 1
3788 /* hack for Warcraft (see bug 8060) */
3789 enable_ext(ctx, id, "vertex_blend");
3790#endif
3791
Brian Paul8c41a142005-11-19 15:36:28 +00003792 return GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003793}
3794
Brian Paul8c41a142005-11-19 15:36:28 +00003795
Jouk Jansen40322e12004-04-05 08:50:36 +00003796/**
3797 * This kicks everything off.
3798 *
3799 * \param ctx - The GL Context
3800 * \param str - The program string
3801 * \param len - The program string length
Brian Paul45703642005-10-29 15:52:31 +00003802 * \param program - The arb_program struct to return all the parsed info in
3803 * \return GL_TRUE on sucess, GL_FALSE on error
Jouk Jansen40322e12004-04-05 08:50:36 +00003804 */
Brian Paul8c41a142005-11-19 15:36:28 +00003805static GLboolean
3806_mesa_parse_arb_program(GLcontext *ctx, GLenum target,
3807 const GLubyte *str, GLsizei len,
3808 struct arb_program *program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003809{
3810 GLint a, err, error_pos;
3811 char error_msg[300];
3812 GLuint parsed_len;
3813 struct var_cache *vc_head;
3814 grammar arbprogram_syn_id;
3815 GLubyte *parsed, *inst;
3816 GLubyte *strz = NULL;
3817 static int arbprogram_syn_is_ok = 0; /* XXX temporary */
3818
Brian Paul8c41a142005-11-19 15:36:28 +00003819 /* set the program target before parsing */
3820 program->Base.Target = target;
3821
Brian Paul7f76b8f2004-09-10 01:05:39 +00003822 /* Reset error state */
3823 _mesa_set_program_error(ctx, -1, NULL);
3824
Brian Paul8c41a142005-11-19 15:36:28 +00003825 /* check if arb_grammar_text (arbprogram.syn) is syntactically correct */
Jouk Jansen40322e12004-04-05 08:50:36 +00003826 if (!arbprogram_syn_is_ok) {
Brian Paul8c41a142005-11-19 15:36:28 +00003827 /* One-time initialization of parsing system */
Jouk Jansen40322e12004-04-05 08:50:36 +00003828 grammar grammar_syn_id;
Jouk Jansen40322e12004-04-05 08:50:36 +00003829 GLuint parsed_len;
Jouk Jansen40322e12004-04-05 08:50:36 +00003830
3831 grammar_syn_id = grammar_load_from_text ((byte *) core_grammar_text);
3832 if (grammar_syn_id == 0) {
3833 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
Brian Paul8c41a142005-11-19 15:36:28 +00003834 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003835 _mesa_set_program_error (ctx, error_pos, error_msg);
3836 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003837 "glProgramStringARB(Error loading grammar rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003838 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003839 }
3840
Brian Paul8c41a142005-11-19 15:36:28 +00003841 err = !grammar_check(grammar_syn_id, (byte *) arb_grammar_text,
3842 &parsed, &parsed_len);
Jouk Jansen40322e12004-04-05 08:50:36 +00003843
Brian Paul49a80ca2006-04-28 15:40:11 +00003844 /* 'parsed' is unused here */
3845 _mesa_free (parsed);
3846 parsed = NULL;
3847
Brian Paul45703642005-10-29 15:52:31 +00003848 /* NOTE: we can't destroy grammar_syn_id right here because
3849 * grammar_destroy() can reset the last error
3850 */
Brian Paul8c41a142005-11-19 15:36:28 +00003851 if (err) {
3852 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003853 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3854 _mesa_set_program_error (ctx, error_pos, error_msg);
Brian Paul8c41a142005-11-19 15:36:28 +00003855 _mesa_error (ctx, GL_INVALID_OPERATION,
3856 "glProgramString(Error loading grammar rule set");
Jouk Jansen40322e12004-04-05 08:50:36 +00003857 grammar_destroy (grammar_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003858 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003859 }
3860
3861 grammar_destroy (grammar_syn_id);
3862
3863 arbprogram_syn_is_ok = 1;
3864 }
3865
3866 /* create the grammar object */
3867 arbprogram_syn_id = grammar_load_from_text ((byte *) arb_grammar_text);
3868 if (arbprogram_syn_id == 0) {
Brian Paul8c41a142005-11-19 15:36:28 +00003869 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003870 grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
3871 _mesa_set_program_error (ctx, error_pos, error_msg);
3872 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003873 "glProgramString(Error loading grammer rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003874 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003875 }
3876
3877 /* Set program_target register value */
Brian Paul55194df2005-11-19 23:29:18 +00003878 if (set_reg8 (ctx, arbprogram_syn_id, "program_target",
Jouk Jansen40322e12004-04-05 08:50:36 +00003879 program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) {
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
Brian Paul8c41a142005-11-19 15:36:28 +00003884 if (!enable_parser_extensions(ctx, arbprogram_syn_id)) {
3885 grammar_destroy(arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003886 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003887 }
3888
3889 /* check for NULL character occurences */
3890 {
Brian Paul8c41a142005-11-19 15:36:28 +00003891 GLint i;
3892 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003893 if (str[i] == '\0') {
Brian Paula088f162006-09-05 23:08:51 +00003894 program_error(ctx, i, "illegal character");
Jouk Jansen40322e12004-04-05 08:50:36 +00003895 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003896 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003897 }
Brian Paul8c41a142005-11-19 15:36:28 +00003898 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003899 }
3900
3901 /* copy the program string to a null-terminated string */
Brian Paulbdd15b52004-05-04 15:11:06 +00003902 strz = (GLubyte *) _mesa_malloc (len + 1);
Brian Paul45703642005-10-29 15:52:31 +00003903 if (!strz) {
Brian Paul8c41a142005-11-19 15:36:28 +00003904 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glProgramStringARB");
3905 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003906 return GL_FALSE;
3907 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003908 _mesa_memcpy (strz, str, len);
3909 strz[len] = '\0';
3910
Michal Krolb80bc052004-10-21 14:09:54 +00003911 /* do a fast check on program string - initial production buffer is 4K */
Brian Paul8c41a142005-11-19 15:36:28 +00003912 err = !grammar_fast_check(arbprogram_syn_id, strz,
3913 &parsed, &parsed_len, 0x1000);
Jouk Jansen40322e12004-04-05 08:50:36 +00003914
3915 /* Syntax parse error */
Brian Paul8c41a142005-11-19 15:36:28 +00003916 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00003917 grammar_get_last_error((GLubyte *) error_msg, 300, &error_pos);
3918 program_error(ctx, error_pos, error_msg);
Brian Paul5fe90292004-07-20 21:15:13 +00003919
Brian Paulb3aefd12005-09-19 20:12:32 +00003920#if DEBUG_PARSING
Brian Paula088f162006-09-05 23:08:51 +00003921 /* useful for debugging */
Brian Paulb3aefd12005-09-19 20:12:32 +00003922 do {
Brian Paul5fe90292004-07-20 21:15:13 +00003923 int line, col;
3924 char *s;
Brian Paul45703642005-10-29 15:52:31 +00003925 fprintf(stderr, "program: %s\n", (char *) strz);
3926 fprintf(stderr, "Error Pos: %d\n", ctx->program.ErrorPos);
Brian Paula088f162006-09-05 23:08:51 +00003927 s = (char *) _mesa_find_line_column(strz, strz+ctx->program.ErrorPos,
3928 &line, &col);
Brian Paulb3aefd12005-09-19 20:12:32 +00003929 fprintf(stderr, "line %d col %d: %s\n", line, col, s);
3930 } while (0)
3931#endif
Brian Paul5fe90292004-07-20 21:15:13 +00003932
Brian Paula088f162006-09-05 23:08:51 +00003933 _mesa_free(strz);
3934 _mesa_free(parsed);
3935
Jouk Jansen40322e12004-04-05 08:50:36 +00003936 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003937 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003938 }
3939
Jouk Jansen40322e12004-04-05 08:50:36 +00003940 grammar_destroy (arbprogram_syn_id);
3941
Brian Paul8c41a142005-11-19 15:36:28 +00003942 /*
3943 * Program string is syntactically correct at this point
3944 * Parse the tokenized version of the program now, generating
3945 * vertex/fragment program instructions.
3946 */
3947
Jouk Jansen40322e12004-04-05 08:50:36 +00003948 /* Initialize the arb_program struct */
3949 program->Base.String = strz;
Brian Paul383c39e2006-08-25 15:14:25 +00003950 program->Base.Instructions = _mesa_alloc_instructions(MAX_INSTRUCTIONS);
Jouk Jansen40322e12004-04-05 08:50:36 +00003951 program->Base.NumInstructions =
3952 program->Base.NumTemporaries =
3953 program->Base.NumParameters =
3954 program->Base.NumAttributes = program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00003955 program->Base.Parameters = _mesa_new_parameter_list ();
3956 program->Base.InputsRead = 0x0;
3957 program->Base.OutputsWritten = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003958 program->Position = 0;
3959 program->MajorVersion = program->MinorVersion = 0;
3960 program->PrecisionOption = GL_DONT_CARE;
3961 program->FogOption = GL_NONE;
3962 program->HintPositionInvariant = GL_FALSE;
3963 for (a = 0; a < MAX_TEXTURE_IMAGE_UNITS; a++)
Brian Paul45cd2f92005-11-03 02:25:10 +00003964 program->TexturesUsed[a] = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003965 program->NumAluInstructions =
3966 program->NumTexInstructions =
3967 program->NumTexIndirections = 0;
Keith Whitwellc3626a92005-11-01 17:25:49 +00003968 program->UsesKill = 0;
3969
Jouk Jansen40322e12004-04-05 08:50:36 +00003970 vc_head = NULL;
Brian Paul45703642005-10-29 15:52:31 +00003971 err = GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003972
3973 /* Start examining the tokens in the array */
3974 inst = parsed;
3975
3976 /* Check the grammer rev */
3977 if (*inst++ != REVISION) {
Brian Paula088f162006-09-05 23:08:51 +00003978 program_error (ctx, 0, "Grammar version mismatch");
Brian Paul45703642005-10-29 15:52:31 +00003979 err = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003980 }
3981 else {
Michal Krolb80bc052004-10-21 14:09:54 +00003982 /* ignore program target */
3983 inst++;
Brian Paul8c41a142005-11-19 15:36:28 +00003984 err = parse_instructions(ctx, inst, &vc_head, program);
Jouk Jansen40322e12004-04-05 08:50:36 +00003985 }
3986
3987 /*debug_variables(ctx, vc_head, program); */
3988
3989 /* We're done with the parsed binary array */
3990 var_cache_destroy (&vc_head);
3991
3992 _mesa_free (parsed);
Brian Paul45703642005-10-29 15:52:31 +00003993
Brian Paul8c41a142005-11-19 15:36:28 +00003994 /* Reallocate the instruction array from size [MAX_INSTRUCTIONS]
3995 * to size [ap.Base.NumInstructions].
3996 */
Brian Paula7543902006-08-24 21:58:32 +00003997 program->Base.Instructions
3998 = _mesa_realloc_instructions(program->Base.Instructions,
3999 MAX_INSTRUCTIONS,
4000 program->Base.NumInstructions);
4001
Brian Paul45703642005-10-29 15:52:31 +00004002 return !err;
Jouk Jansen40322e12004-04-05 08:50:36 +00004003}
Brian Paul8c41a142005-11-19 15:36:28 +00004004
4005
4006
4007void
4008_mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target,
4009 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004010 struct gl_fragment_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004011{
4012 struct arb_program ap;
4013 GLuint i;
4014
4015 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
Brian Paul95801792005-12-06 15:41:43 +00004016 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004017 /* Error in the program. Just return. */
4018 return;
4019 }
4020
4021 /* Copy the relevant contents of the arb_program struct into the
4022 * fragment_program struct.
4023 */
4024 program->Base.String = ap.Base.String;
4025 program->Base.NumInstructions = ap.Base.NumInstructions;
4026 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4027 program->Base.NumParameters = ap.Base.NumParameters;
4028 program->Base.NumAttributes = ap.Base.NumAttributes;
4029 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004030 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4031 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4032 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4033 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4034 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004035 program->NumAluInstructions = ap.NumAluInstructions;
4036 program->NumTexInstructions = ap.NumTexInstructions;
4037 program->NumTexIndirections = ap.NumTexIndirections;
Brian Paul006e1832006-03-29 15:15:37 +00004038 program->NumNativeAluInstructions = ap.NumAluInstructions;
4039 program->NumNativeTexInstructions = ap.NumTexInstructions;
4040 program->NumNativeTexIndirections = ap.NumTexIndirections;
Brian Paul8c41a142005-11-19 15:36:28 +00004041 program->Base.InputsRead = ap.Base.InputsRead;
4042 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4043 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++)
4044 program->TexturesUsed[i] = ap.TexturesUsed[i];
4045 program->FogOption = ap.FogOption;
4046
4047 if (program->Base.Instructions)
4048 _mesa_free(program->Base.Instructions);
4049 program->Base.Instructions = ap.Base.Instructions;
4050
4051 if (program->Base.Parameters)
4052 _mesa_free_parameter_list(program->Base.Parameters);
4053 program->Base.Parameters = ap.Base.Parameters;
4054
4055#if DEBUG_FP
4056 _mesa_print_program(&program.Base);
4057#endif
4058}
4059
4060
4061
4062/**
4063 * Parse the vertex program string. If success, update the given
4064 * vertex_program object with the new program. Else, leave the vertex_program
4065 * object unchanged.
4066 */
4067void
4068_mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
4069 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00004070 struct gl_vertex_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00004071{
4072 struct arb_program ap;
4073
4074 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
4075
Brian Paul95801792005-12-06 15:41:43 +00004076 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00004077 /* Error in the program. Just return. */
4078 return;
4079 }
4080
4081 /* Copy the relevant contents of the arb_program struct into the
4082 * vertex_program struct.
4083 */
4084 program->Base.String = ap.Base.String;
4085 program->Base.NumInstructions = ap.Base.NumInstructions;
4086 program->Base.NumTemporaries = ap.Base.NumTemporaries;
4087 program->Base.NumParameters = ap.Base.NumParameters;
4088 program->Base.NumAttributes = ap.Base.NumAttributes;
4089 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00004090 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
4091 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
4092 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
4093 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
4094 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00004095 program->Base.InputsRead = ap.Base.InputsRead;
4096 program->Base.OutputsWritten = ap.Base.OutputsWritten;
4097 program->IsPositionInvariant = ap.HintPositionInvariant;
4098
4099 if (program->Base.Instructions)
4100 _mesa_free(program->Base.Instructions);
4101 program->Base.Instructions = ap.Base.Instructions;
4102
4103 if (program->Base.Parameters)
4104 _mesa_free_parameter_list(program->Base.Parameters);
4105 program->Base.Parameters = ap.Base.Parameters;
4106
4107#if DEBUG_VP
4108 _mesa_print_program(&program->Base);
4109#endif
4110}