blob: 62edb7f59549e52ce75883e107fb81ba381ffa81 [file] [log] [blame]
Jouk Jansen40322e12004-04-05 08:50:36 +00001/*
2 * Mesa 3-D graphics library
Brianab31a3a2007-09-13 11:41:49 -06003 * Version: 7.1
Jouk Jansen40322e12004-04-05 08:50:36 +00004 *
Brian7d2b6a02008-03-27 16:17:37 -06005 * Copyright (C) 1999-2008 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
Brian Paul0576e832008-09-19 13:04:52 +020033/**
34Notes on program parameters, etc.
35
36The instructions we emit will use six kinds of source registers:
37
38 PROGRAM_INPUT - input registers
39 PROGRAM_TEMPORARY - temp registers
40 PROGRAM_ADDRESS - address/indirect register
41 PROGRAM_SAMPLER - texture sampler
42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal
43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be:
44 + a state variable, like "state.fog.color", or
45 + a pointer to a "program.local[k]" parameter, or
46 + a pointer to a "program.env[k]" parameter
47
48Basically, all the program.local[] and program.env[] values will get mapped
49into the unified gl_program->Parameters array. This solves the problem of
50having three separate program parameter arrays.
51*/
52
53
Brianc223c6b2007-07-04 13:15:20 -060054#include "main/glheader.h"
55#include "main/imports.h"
Brian Paulbbd28712008-09-18 12:26:54 -060056#include "main/context.h"
57#include "main/macros.h"
58#include "main/mtypes.h"
Brianc223c6b2007-07-04 13:15:20 -060059#include "shader/grammar/grammar_mesa.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000060#include "arbprogparse.h"
Brian Paul32df89e2005-10-29 18:26:43 +000061#include "program.h"
Brian Paulc0ef1662008-03-25 11:32:31 -060062#include "programopt.h"
Brianc0551f02006-12-14 15:02:37 -070063#include "prog_parameter.h"
64#include "prog_statevars.h"
Brianc0551f02006-12-14 15:02:37 -070065#include "prog_instruction.h"
Brian Paul8c41a142005-11-19 15:36:28 +000066
Brian Paul8c41a142005-11-19 15:36:28 +000067/**
68 * This is basically a union of the vertex_program and fragment_program
69 * structs that we can use to parse the program into
70 *
71 * XXX we can probably get rid of this entirely someday.
72 */
73struct arb_program
74{
Brian Paul122629f2006-07-20 16:49:57 +000075 struct gl_program Base;
Brian Paul8c41a142005-11-19 15:36:28 +000076
77 GLuint Position; /* Just used for error reporting while parsing */
78 GLuint MajorVersion;
79 GLuint MinorVersion;
80
81 /* ARB_vertex_progmra options */
82 GLboolean HintPositionInvariant;
83
84 /* ARB_fragment_progmra options */
85 GLenum PrecisionOption; /* GL_DONT_CARE, GL_NICEST or GL_FASTEST */
86 GLenum FogOption; /* GL_NONE, GL_LINEAR, GL_EXP or GL_EXP2 */
87
88 /* ARB_fragment_program specifics */
89 GLbitfield TexturesUsed[MAX_TEXTURE_IMAGE_UNITS];
Ian Romanick7b559a92007-06-07 13:58:50 -070090 GLbitfield ShadowSamplers;
Brian Paul8c41a142005-11-19 15:36:28 +000091 GLuint NumAluInstructions;
92 GLuint NumTexInstructions;
93 GLuint NumTexIndirections;
94
95 GLboolean UsesKill;
96};
97
Ian Romanick9bdfee32005-07-18 12:31:24 +000098
Brian Paula6c423d2004-08-25 15:59:48 +000099
Jouk Jansen40322e12004-04-05 08:50:36 +0000100/* TODO:
101 * Fragment Program Stuff:
102 * -----------------------------------------------------
103 *
104 * - things from Michal's email
105 * + overflow on atoi
106 * + not-overflowing floats (don't use parse_integer..)
107 * + can remove range checking in arbparse.c
108 *
109 * - check all limits of number of various variables
110 * + parameters
111 *
112 * - test! test! test!
113 *
114 * Vertex Program Stuff:
115 * -----------------------------------------------------
116 * - Optimize param array usage and count limits correctly, see spec,
117 * section 2.14.3.7
118 * + Record if an array is reference absolutly or relatively (or both)
119 * + For absolute arrays, store a bitmap of accesses
120 * + For single parameters, store an access flag
121 * + After parsing, make a parameter cleanup and merging pass, where
122 * relative arrays are layed out first, followed by abs arrays, and
123 * finally single state.
124 * + Remap offsets for param src and dst registers
125 * + Now we can properly count parameter usage
126 *
127 * - Multiple state binding errors in param arrays (see spec, just before
128 * section 2.14.3.3)
129 * - grep for XXX
130 *
131 * Mesa Stuff
132 * -----------------------------------------------------
133 * - User clipping planes vs. PositionInvariant
134 * - Is it sufficient to just multiply by the mvp to transform in the
135 * PositionInvariant case? Or do we need something more involved?
136 *
137 * - vp_src swizzle is GLubyte, fp_src swizzle is GLuint
138 * - fetch state listed in program_parameters list
139 * + WTF should this go???
140 * + currently in nvvertexec.c and s_nvfragprog.c
141 *
142 * - allow for multiple address registers (and fetch address regs properly)
143 *
144 * Cosmetic Stuff
145 * -----------------------------------------------------
146 * - remove any leftover unused grammer.c stuff (dict_ ?)
147 * - fix grammer.c error handling so its not static
148 * - #ifdef around stuff pertaining to extentions
149 *
150 * Outstanding Questions:
151 * -----------------------------------------------------
152 * - ARB_matrix_palette / ARB_vertex_blend -- not supported
153 * what gets hacked off because of this:
154 * + VERTEX_ATTRIB_MATRIXINDEX
155 * + VERTEX_ATTRIB_WEIGHT
156 * + MATRIX_MODELVIEW
157 * + MATRIX_PALETTE
158 *
159 * - When can we fetch env/local params from their own register files, and
160 * when to we have to fetch them into the main state register file?
161 * (think arrays)
162 *
163 * Grammar Changes:
164 * -----------------------------------------------------
165 */
166
167/* Changes since moving the file to shader directory
168
1692004-III-4 ------------------------------------------------------------
170- added #include "grammar_mesa.h"
171- removed grammar specific code part (it resides now in grammar.c)
172- added GL_ARB_fragment_program_shadow tokens
173- modified #include "arbparse_syn.h"
174- major changes inside _mesa_parse_arb_program()
175- check the program string for '\0' characters
176- copy the program string to a one-byte-longer location to have
177 it null-terminated
178- position invariance test (not writing to result.position) moved
179 to syntax part
180*/
181
182typedef GLubyte *production;
183
Brian Paul11a54c32006-11-15 19:54:25 +0000184
Jouk Jansen40322e12004-04-05 08:50:36 +0000185/**
186 * This is the text describing the rules to parse the grammar
187 */
Brian Paul11a54c32006-11-15 19:54:25 +0000188LONGSTRING static char arb_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +0000189#include "arbprogram_syn.h"
190;
191
192/**
193 * These should match up with the values defined in arbprogram.syn
194 */
195
196/*
197 Changes:
198 - changed and merged V_* and F_* opcode values to OP_*.
199 - added GL_ARB_fragment_program_shadow specific tokens (michal)
200*/
Ian Romanickbb372f12007-05-16 15:34:22 -0700201#define REVISION 0x0a
Jouk Jansen40322e12004-04-05 08:50:36 +0000202
203/* program type */
204#define FRAGMENT_PROGRAM 0x01
205#define VERTEX_PROGRAM 0x02
206
207/* program section */
208#define OPTION 0x01
209#define INSTRUCTION 0x02
210#define DECLARATION 0x03
211#define END 0x04
212
Michal Krolb80bc052004-10-21 14:09:54 +0000213/* GL_ARB_fragment_program option */
214#define ARB_PRECISION_HINT_FASTEST 0x00
215#define ARB_PRECISION_HINT_NICEST 0x01
216#define ARB_FOG_EXP 0x02
217#define ARB_FOG_EXP2 0x03
218#define ARB_FOG_LINEAR 0x04
Jouk Jansen40322e12004-04-05 08:50:36 +0000219
Michal Krolb80bc052004-10-21 14:09:54 +0000220/* GL_ARB_vertex_program option */
221#define ARB_POSITION_INVARIANT 0x05
Jouk Jansen40322e12004-04-05 08:50:36 +0000222
Michal Krolb80bc052004-10-21 14:09:54 +0000223/* GL_ARB_fragment_program_shadow option */
224#define ARB_FRAGMENT_PROGRAM_SHADOW 0x06
Jouk Jansen40322e12004-04-05 08:50:36 +0000225
Michal Krolb80bc052004-10-21 14:09:54 +0000226/* GL_ARB_draw_buffers option */
227#define ARB_DRAW_BUFFERS 0x07
Michal Krolad22ce82004-10-11 08:13:25 +0000228
Ian Romanickbb372f12007-05-16 15:34:22 -0700229/* GL_MESA_texture_array option */
230#define MESA_TEXTURE_ARRAY 0x08
231
Jouk Jansen40322e12004-04-05 08:50:36 +0000232/* GL_ARB_fragment_program instruction class */
233#define OP_ALU_INST 0x00
234#define OP_TEX_INST 0x01
235
236/* GL_ARB_vertex_program instruction class */
237/* OP_ALU_INST */
238
239/* GL_ARB_fragment_program instruction type */
240#define OP_ALU_VECTOR 0x00
241#define OP_ALU_SCALAR 0x01
242#define OP_ALU_BINSC 0x02
243#define OP_ALU_BIN 0x03
244#define OP_ALU_TRI 0x04
245#define OP_ALU_SWZ 0x05
246#define OP_TEX_SAMPLE 0x06
247#define OP_TEX_KIL 0x07
248
249/* GL_ARB_vertex_program instruction type */
250#define OP_ALU_ARL 0x08
251/* OP_ALU_VECTOR */
252/* OP_ALU_SCALAR */
253/* OP_ALU_BINSC */
254/* OP_ALU_BIN */
255/* OP_ALU_TRI */
256/* OP_ALU_SWZ */
257
258/* GL_ARB_fragment_program instruction code */
259#define OP_ABS 0x00
260#define OP_ABS_SAT 0x1B
261#define OP_FLR 0x09
262#define OP_FLR_SAT 0x26
263#define OP_FRC 0x0A
264#define OP_FRC_SAT 0x27
265#define OP_LIT 0x0C
266#define OP_LIT_SAT 0x2A
267#define OP_MOV 0x11
268#define OP_MOV_SAT 0x30
269#define OP_COS 0x1F
270#define OP_COS_SAT 0x20
271#define OP_EX2 0x07
272#define OP_EX2_SAT 0x25
273#define OP_LG2 0x0B
274#define OP_LG2_SAT 0x29
275#define OP_RCP 0x14
276#define OP_RCP_SAT 0x33
277#define OP_RSQ 0x15
278#define OP_RSQ_SAT 0x34
279#define OP_SIN 0x38
280#define OP_SIN_SAT 0x39
281#define OP_SCS 0x35
282#define OP_SCS_SAT 0x36
283#define OP_POW 0x13
284#define OP_POW_SAT 0x32
285#define OP_ADD 0x01
286#define OP_ADD_SAT 0x1C
287#define OP_DP3 0x03
288#define OP_DP3_SAT 0x21
289#define OP_DP4 0x04
290#define OP_DP4_SAT 0x22
291#define OP_DPH 0x05
292#define OP_DPH_SAT 0x23
293#define OP_DST 0x06
294#define OP_DST_SAT 0x24
295#define OP_MAX 0x0F
296#define OP_MAX_SAT 0x2E
297#define OP_MIN 0x10
298#define OP_MIN_SAT 0x2F
299#define OP_MUL 0x12
300#define OP_MUL_SAT 0x31
301#define OP_SGE 0x16
302#define OP_SGE_SAT 0x37
303#define OP_SLT 0x17
304#define OP_SLT_SAT 0x3A
305#define OP_SUB 0x18
306#define OP_SUB_SAT 0x3B
307#define OP_XPD 0x1A
308#define OP_XPD_SAT 0x43
309#define OP_CMP 0x1D
310#define OP_CMP_SAT 0x1E
311#define OP_LRP 0x2B
312#define OP_LRP_SAT 0x2C
313#define OP_MAD 0x0E
314#define OP_MAD_SAT 0x2D
315#define OP_SWZ 0x19
316#define OP_SWZ_SAT 0x3C
317#define OP_TEX 0x3D
318#define OP_TEX_SAT 0x3E
319#define OP_TXB 0x3F
320#define OP_TXB_SAT 0x40
321#define OP_TXP 0x41
322#define OP_TXP_SAT 0x42
323#define OP_KIL 0x28
324
325/* GL_ARB_vertex_program instruction code */
326#define OP_ARL 0x02
327/* OP_ABS */
328/* OP_FLR */
329/* OP_FRC */
330/* OP_LIT */
331/* OP_MOV */
332/* OP_EX2 */
333#define OP_EXP 0x08
334/* OP_LG2 */
335#define OP_LOG 0x0D
336/* OP_RCP */
337/* OP_RSQ */
338/* OP_POW */
339/* OP_ADD */
340/* OP_DP3 */
341/* OP_DP4 */
342/* OP_DPH */
343/* OP_DST */
344/* OP_MAX */
345/* OP_MIN */
346/* OP_MUL */
347/* OP_SGE */
348/* OP_SLT */
349/* OP_SUB */
350/* OP_XPD */
351/* OP_MAD */
352/* OP_SWZ */
353
354/* fragment attribute binding */
355#define FRAGMENT_ATTRIB_COLOR 0x01
356#define FRAGMENT_ATTRIB_TEXCOORD 0x02
357#define FRAGMENT_ATTRIB_FOGCOORD 0x03
358#define FRAGMENT_ATTRIB_POSITION 0x04
359
360/* vertex attribute binding */
361#define VERTEX_ATTRIB_POSITION 0x01
362#define VERTEX_ATTRIB_WEIGHT 0x02
363#define VERTEX_ATTRIB_NORMAL 0x03
364#define VERTEX_ATTRIB_COLOR 0x04
365#define VERTEX_ATTRIB_FOGCOORD 0x05
366#define VERTEX_ATTRIB_TEXCOORD 0x06
367#define VERTEX_ATTRIB_MATRIXINDEX 0x07
368#define VERTEX_ATTRIB_GENERIC 0x08
369
370/* fragment result binding */
371#define FRAGMENT_RESULT_COLOR 0x01
372#define FRAGMENT_RESULT_DEPTH 0x02
373
374/* vertex result binding */
375#define VERTEX_RESULT_POSITION 0x01
376#define VERTEX_RESULT_COLOR 0x02
377#define VERTEX_RESULT_FOGCOORD 0x03
378#define VERTEX_RESULT_POINTSIZE 0x04
379#define VERTEX_RESULT_TEXCOORD 0x05
380
381/* texture target */
382#define TEXTARGET_1D 0x01
383#define TEXTARGET_2D 0x02
384#define TEXTARGET_3D 0x03
385#define TEXTARGET_RECT 0x04
386#define TEXTARGET_CUBE 0x05
387/* GL_ARB_fragment_program_shadow */
388#define TEXTARGET_SHADOW1D 0x06
389#define TEXTARGET_SHADOW2D 0x07
390#define TEXTARGET_SHADOWRECT 0x08
Ian Romanickbb372f12007-05-16 15:34:22 -0700391/* GL_MESA_texture_array */
392#define TEXTARGET_1D_ARRAY 0x09
393#define TEXTARGET_2D_ARRAY 0x0a
Ian Romanick69358e72007-06-05 09:24:27 -0700394#define TEXTARGET_SHADOW1D_ARRAY 0x0b
395#define TEXTARGET_SHADOW2D_ARRAY 0x0c
Jouk Jansen40322e12004-04-05 08:50:36 +0000396
397/* face type */
398#define FACE_FRONT 0x00
399#define FACE_BACK 0x01
400
401/* color type */
402#define COLOR_PRIMARY 0x00
403#define COLOR_SECONDARY 0x01
404
405/* component */
406#define COMPONENT_X 0x00
407#define COMPONENT_Y 0x01
408#define COMPONENT_Z 0x02
409#define COMPONENT_W 0x03
410#define COMPONENT_0 0x04
411#define COMPONENT_1 0x05
412
413/* array index type */
414#define ARRAY_INDEX_ABSOLUTE 0x00
415#define ARRAY_INDEX_RELATIVE 0x01
416
417/* matrix name */
418#define MATRIX_MODELVIEW 0x01
419#define MATRIX_PROJECTION 0x02
420#define MATRIX_MVP 0x03
421#define MATRIX_TEXTURE 0x04
422#define MATRIX_PALETTE 0x05
423#define MATRIX_PROGRAM 0x06
424
425/* matrix modifier */
426#define MATRIX_MODIFIER_IDENTITY 0x00
427#define MATRIX_MODIFIER_INVERSE 0x01
428#define MATRIX_MODIFIER_TRANSPOSE 0x02
429#define MATRIX_MODIFIER_INVTRANS 0x03
430
431/* constant type */
432#define CONSTANT_SCALAR 0x01
433#define CONSTANT_VECTOR 0x02
434
435/* program param type */
436#define PROGRAM_PARAM_ENV 0x01
437#define PROGRAM_PARAM_LOCAL 0x02
438
439/* register type */
440#define REGISTER_ATTRIB 0x01
441#define REGISTER_PARAM 0x02
442#define REGISTER_RESULT 0x03
443#define REGISTER_ESTABLISHED_NAME 0x04
444
445/* param binding */
446#define PARAM_NULL 0x00
447#define PARAM_ARRAY_ELEMENT 0x01
448#define PARAM_STATE_ELEMENT 0x02
449#define PARAM_PROGRAM_ELEMENT 0x03
450#define PARAM_PROGRAM_ELEMENTS 0x04
451#define PARAM_CONSTANT 0x05
452
453/* param state property */
454#define STATE_MATERIAL_PARSER 0x01
455#define STATE_LIGHT_PARSER 0x02
456#define STATE_LIGHT_MODEL 0x03
457#define STATE_LIGHT_PROD 0x04
458#define STATE_FOG 0x05
459#define STATE_MATRIX_ROWS 0x06
460/* GL_ARB_fragment_program */
461#define STATE_TEX_ENV 0x07
462#define STATE_DEPTH 0x08
463/* GL_ARB_vertex_program */
464#define STATE_TEX_GEN 0x09
465#define STATE_CLIP_PLANE 0x0A
466#define STATE_POINT 0x0B
467
468/* state material property */
469#define MATERIAL_AMBIENT 0x01
470#define MATERIAL_DIFFUSE 0x02
471#define MATERIAL_SPECULAR 0x03
472#define MATERIAL_EMISSION 0x04
473#define MATERIAL_SHININESS 0x05
474
475/* state light property */
476#define LIGHT_AMBIENT 0x01
477#define LIGHT_DIFFUSE 0x02
478#define LIGHT_SPECULAR 0x03
479#define LIGHT_POSITION 0x04
480#define LIGHT_ATTENUATION 0x05
481#define LIGHT_HALF 0x06
482#define LIGHT_SPOT_DIRECTION 0x07
483
484/* state light model property */
485#define LIGHT_MODEL_AMBIENT 0x01
486#define LIGHT_MODEL_SCENECOLOR 0x02
487
488/* state light product property */
489#define LIGHT_PROD_AMBIENT 0x01
490#define LIGHT_PROD_DIFFUSE 0x02
491#define LIGHT_PROD_SPECULAR 0x03
492
493/* state texture environment property */
494#define TEX_ENV_COLOR 0x01
495
496/* state texture generation coord property */
497#define TEX_GEN_EYE 0x01
498#define TEX_GEN_OBJECT 0x02
499
500/* state fog property */
501#define FOG_COLOR 0x01
502#define FOG_PARAMS 0x02
503
504/* state depth property */
505#define DEPTH_RANGE 0x01
506
507/* state point parameters property */
508#define POINT_SIZE 0x01
509#define POINT_ATTENUATION 0x02
510
511/* declaration */
512#define ATTRIB 0x01
513#define PARAM 0x02
514#define TEMP 0x03
515#define OUTPUT 0x04
516#define ALIAS 0x05
517/* GL_ARB_vertex_program */
518#define ADDRESS 0x06
519
520/*-----------------------------------------------------------------------
521 * From here on down is the semantic checking portion
522 *
523 */
524
525/**
526 * Variable Table Handling functions
527 */
528typedef enum
529{
530 vt_none,
531 vt_address,
532 vt_attrib,
533 vt_param,
534 vt_temp,
535 vt_output,
536 vt_alias
537} var_type;
538
539
Brian Paul7aebaf32005-10-30 21:23:23 +0000540/**
541 * Setting an explicit field for each of the binding properties is a bit
542 * wasteful of space, but it should be much more clear when reading later on..
Jouk Jansen40322e12004-04-05 08:50:36 +0000543 */
544struct var_cache
545{
Brian Paul6a769d92006-04-28 15:42:15 +0000546 const GLubyte *name; /* don't free() - no need */
Jouk Jansen40322e12004-04-05 08:50:36 +0000547 var_type type;
548 GLuint address_binding; /* The index of the address register we should
549 * be using */
550 GLuint attrib_binding; /* For type vt_attrib, see nvfragprog.h for values */
Jouk Jansen40322e12004-04-05 08:50:36 +0000551 GLuint attrib_is_generic; /* If the attrib was specified through a generic
552 * vertex attrib */
553 GLuint temp_binding; /* The index of the temp register we are to use */
Brian Paul7aebaf32005-10-30 21:23:23 +0000554 GLuint output_binding; /* Output/result register number */
Jouk Jansen40322e12004-04-05 08:50:36 +0000555 struct var_cache *alias_binding; /* For type vt_alias, points to the var_cache entry
556 * that this is aliased to */
557 GLuint param_binding_type; /* {PROGRAM_STATE_VAR, PROGRAM_LOCAL_PARAM,
558 * PROGRAM_ENV_PARAM} */
559 GLuint param_binding_begin; /* This is the offset into the program_parameter_list where
560 * the tokens representing our bound state (or constants)
561 * start */
562 GLuint param_binding_length; /* This is how many entries in the the program_parameter_list
563 * we take up with our state tokens or constants. Note that
564 * this is _not_ the same as the number of param registers
565 * we eventually use */
566 struct var_cache *next;
567};
568
569static GLvoid
570var_cache_create (struct var_cache **va)
571{
572 *va = (struct var_cache *) _mesa_malloc (sizeof (struct var_cache));
573 if (*va) {
574 (**va).name = NULL;
575 (**va).type = vt_none;
576 (**va).attrib_binding = ~0;
577 (**va).attrib_is_generic = 0;
578 (**va).temp_binding = ~0;
579 (**va).output_binding = ~0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000580 (**va).param_binding_type = ~0;
581 (**va).param_binding_begin = ~0;
582 (**va).param_binding_length = ~0;
583 (**va).alias_binding = NULL;
584 (**va).next = NULL;
585 }
586}
587
588static GLvoid
589var_cache_destroy (struct var_cache **va)
590{
591 if (*va) {
592 var_cache_destroy (&(**va).next);
593 _mesa_free (*va);
594 *va = NULL;
595 }
596}
597
598static GLvoid
599var_cache_append (struct var_cache **va, struct var_cache *nv)
600{
601 if (*va)
602 var_cache_append (&(**va).next, nv);
603 else
604 *va = nv;
605}
606
607static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000608var_cache_find (struct var_cache *va, const GLubyte * name)
Jouk Jansen40322e12004-04-05 08:50:36 +0000609{
Brian Paul0a360cf2005-01-17 01:21:03 +0000610 /*struct var_cache *first = va;*/
Jouk Jansen40322e12004-04-05 08:50:36 +0000611
612 while (va) {
Brian Paulaa206952005-09-16 18:14:24 +0000613 if (!_mesa_strcmp ( (const char*) name, (const char*) va->name)) {
Jouk Jansen40322e12004-04-05 08:50:36 +0000614 if (va->type == vt_alias)
Michal Krol43343912005-01-11 15:47:16 +0000615 return va->alias_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +0000616 return va;
617 }
618
619 va = va->next;
620 }
621
622 return NULL;
623}
624
Brian Paula088f162006-09-05 23:08:51 +0000625
626
627/**
628 * Called when an error is detected while parsing/compiling a program.
629 * Sets the ctx->Program.ErrorString field to descript and records a
630 * GL_INVALID_OPERATION error.
631 * \param position position of error in program string
632 * \param descrip verbose error description
633 */
634static void
635program_error(GLcontext *ctx, GLint position, const char *descrip)
636{
637 if (descrip) {
638 const char *prefix = "glProgramString(", *suffix = ")";
639 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
640 _mesa_strlen(prefix) +
641 _mesa_strlen(suffix) + 1);
642 if (str) {
643 _mesa_sprintf(str, "%s%s%s", prefix, descrip, suffix);
644 _mesa_error(ctx, GL_INVALID_OPERATION, str);
645 _mesa_free(str);
646 }
647 }
648 _mesa_set_program_error(ctx, position, descrip);
649}
650
651
Brianab31a3a2007-09-13 11:41:49 -0600652/**
653 * As above, but with an extra string parameter for more info.
654 */
655static void
656program_error2(GLcontext *ctx, GLint position, const char *descrip,
657 const char *var)
658{
659 if (descrip) {
660 const char *prefix = "glProgramString(", *suffix = ")";
661 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
662 _mesa_strlen(": ") +
663 _mesa_strlen(var) +
664 _mesa_strlen(prefix) +
665 _mesa_strlen(suffix) + 1);
666 if (str) {
667 _mesa_sprintf(str, "%s%s: %s%s", prefix, descrip, var, suffix);
668 _mesa_error(ctx, GL_INVALID_OPERATION, str);
669 _mesa_free(str);
670 }
671 }
672 {
673 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
674 _mesa_strlen(": ") +
675 _mesa_strlen(var) + 1);
676 if (str) {
677 _mesa_sprintf(str, "%s: %s", descrip, var);
678 }
679 _mesa_set_program_error(ctx, position, str);
680 if (str) {
681 _mesa_free(str);
682 }
683 }
684}
685
686
Brian Paula088f162006-09-05 23:08:51 +0000687
Jouk Jansen40322e12004-04-05 08:50:36 +0000688/**
689 * constructs an integer from 4 GLubytes in LE format
690 */
691static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000692parse_position (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000693{
694 GLuint value;
695
696 value = (GLuint) (*(*inst)++);
697 value += (GLuint) (*(*inst)++) * 0x100;
698 value += (GLuint) (*(*inst)++) * 0x10000;
699 value += (GLuint) (*(*inst)++) * 0x1000000;
700
701 return value;
702}
703
704/**
705 * This will, given a string, lookup the string as a variable name in the
706 * var cache. If the name is found, the var cache node corresponding to the
707 * var name is returned. If it is not found, a new entry is allocated
708 *
709 * \param I Points into the binary array where the string identifier begins
710 * \param found 1 if the string was found in the var_cache, 0 if it was allocated
711 * \return The location on the var_cache corresponding the the string starting at I
712 */
713static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000714parse_string (const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +0000715 struct arb_program *Program, GLuint * found)
716{
Brian Paula088f162006-09-05 23:08:51 +0000717 const GLubyte *i = *inst;
Jouk Jansen40322e12004-04-05 08:50:36 +0000718 struct var_cache *va = NULL;
Brian Paula6c423d2004-08-25 15:59:48 +0000719 (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000720
721 *inst += _mesa_strlen ((char *) i) + 1;
722
723 va = var_cache_find (*vc_head, i);
724
725 if (va) {
726 *found = 1;
727 return va;
728 }
729
730 *found = 0;
731 var_cache_create (&va);
Brian Paul6a769d92006-04-28 15:42:15 +0000732 va->name = (const GLubyte *) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000733
734 var_cache_append (vc_head, va);
735
736 return va;
737}
738
739static char *
Brian Paula088f162006-09-05 23:08:51 +0000740parse_string_without_adding (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000741{
Brian Paula088f162006-09-05 23:08:51 +0000742 const GLubyte *i = *inst;
Brian Paula6c423d2004-08-25 15:59:48 +0000743 (void) Program;
744
Jouk Jansen40322e12004-04-05 08:50:36 +0000745 *inst += _mesa_strlen ((char *) i) + 1;
746
747 return (char *) i;
748}
749
750/**
Brian Paul05908952004-06-08 15:20:23 +0000751 * \return -1 if we parse '-', return 1 otherwise
Jouk Jansen40322e12004-04-05 08:50:36 +0000752 */
Brian Paul05908952004-06-08 15:20:23 +0000753static GLint
Brian Paula088f162006-09-05 23:08:51 +0000754parse_sign (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000755{
756 /*return *(*inst)++ != '+'; */
757
758 if (**inst == '-') {
759 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000760 return -1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000761 }
762 else if (**inst == '+') {
763 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000764 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000765 }
766
Brian Paul05908952004-06-08 15:20:23 +0000767 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000768}
769
770/**
771 * parses and returns signed integer
772 */
773static GLint
Brian Paula088f162006-09-05 23:08:51 +0000774parse_integer (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000775{
776 GLint sign;
777 GLint value;
778
779 /* check if *inst points to '+' or '-'
780 * if yes, grab the sign and increment *inst
781 */
782 sign = parse_sign (inst);
783
784 /* now check if *inst points to 0
785 * if yes, increment the *inst and return the default value
786 */
787 if (**inst == 0) {
788 (*inst)++;
789 return 0;
790 }
791
792 /* parse the integer as you normally would do it */
793 value = _mesa_atoi (parse_string_without_adding (inst, Program));
794
795 /* now, after terminating 0 there is a position
796 * to parse it - parse_position()
797 */
798 Program->Position = parse_position (inst);
799
Brian Paul05908952004-06-08 15:20:23 +0000800 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000801}
802
803/**
Brian Paul1ff8f502005-02-16 15:08:29 +0000804 Accumulate this string of digits, and return them as
805 a large integer represented in floating point (for range).
806 If scale is not NULL, also accumulates a power-of-ten
807 integer scale factor that represents the number of digits
808 in the string.
809*/
810static GLdouble
Brian Paula088f162006-09-05 23:08:51 +0000811parse_float_string(const GLubyte ** inst, struct arb_program *Program, GLdouble *scale)
Brian Paul1ff8f502005-02-16 15:08:29 +0000812{
813 GLdouble value = 0.0;
814 GLdouble oscale = 1.0;
815
816 if (**inst == 0) { /* this string of digits is empty-- do nothing */
817 (*inst)++;
818 }
819 else { /* nonempty string-- parse out the digits */
Michal Krol98e35022005-04-14 10:19:19 +0000820 while (**inst >= '0' && **inst <= '9') {
Brian Paul1ff8f502005-02-16 15:08:29 +0000821 GLubyte digit = *((*inst)++);
822 value = value * 10.0 + (GLint) (digit - '0');
823 oscale *= 10.0;
824 }
825 assert(**inst == 0); /* integer string should end with 0 */
826 (*inst)++; /* skip over terminating 0 */
827 Program->Position = parse_position(inst); /* skip position (from integer) */
828 }
829 if (scale)
830 *scale = oscale;
831 return value;
832}
833
834/**
835 Parse an unsigned floating-point number from this stream of tokenized
836 characters. Example floating-point formats supported:
837 12.34
838 12
839 0.34
840 .34
841 12.34e-4
Jouk Jansen40322e12004-04-05 08:50:36 +0000842 */
843static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000844parse_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000845{
Brian Paul1ff8f502005-02-16 15:08:29 +0000846 GLint exponent;
847 GLdouble whole, fraction, fracScale = 1.0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000848
Brian Paul1ff8f502005-02-16 15:08:29 +0000849 whole = parse_float_string(inst, Program, 0);
850 fraction = parse_float_string(inst, Program, &fracScale);
851
852 /* Parse signed exponent */
853 exponent = parse_integer(inst, Program); /* This is the exponent */
Jouk Jansen40322e12004-04-05 08:50:36 +0000854
Brian Paul1ff8f502005-02-16 15:08:29 +0000855 /* Assemble parts of floating-point number: */
856 return (GLfloat) ((whole + fraction / fracScale) *
857 _mesa_pow(10.0, (GLfloat) exponent));
Jouk Jansen40322e12004-04-05 08:50:36 +0000858}
859
860
861/**
862 */
863static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000864parse_signed_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000865{
Brian Paul05908952004-06-08 15:20:23 +0000866 GLint sign = parse_sign (inst);
867 GLfloat value = parse_float (inst, Program);
868 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000869}
870
871/**
872 * This picks out a constant value from the parsed array. The constant vector is r
873 * returned in the *values array, which should be of length 4.
874 *
875 * \param values - The 4 component vector with the constant value in it
876 */
877static GLvoid
Brian Paula088f162006-09-05 23:08:51 +0000878parse_constant (const GLubyte ** inst, GLfloat *values, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000879 GLboolean use)
880{
881 GLuint components, i;
882
883
884 switch (*(*inst)++) {
885 case CONSTANT_SCALAR:
886 if (use == GL_TRUE) {
887 values[0] =
888 values[1] =
889 values[2] = values[3] = parse_float (inst, Program);
890 }
891 else {
892 values[0] =
893 values[1] =
894 values[2] = values[3] = parse_signed_float (inst, Program);
895 }
896
897 break;
898 case CONSTANT_VECTOR:
899 values[0] = values[1] = values[2] = 0;
900 values[3] = 1;
901 components = *(*inst)++;
902 for (i = 0; i < components; i++) {
903 values[i] = parse_signed_float (inst, Program);
904 }
905 break;
906 }
907}
908
909/**
910 * \param offset The offset from the address register that we should
911 * address
912 *
913 * \return 0 on sucess, 1 on error
914 */
915static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000916parse_relative_offset(GLcontext *ctx, const GLubyte **inst,
917 struct arb_program *Program, GLint *offset)
Jouk Jansen40322e12004-04-05 08:50:36 +0000918{
Brian Paul6a769d92006-04-28 15:42:15 +0000919 (void) ctx;
Jouk Jansen40322e12004-04-05 08:50:36 +0000920 *offset = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000921 return 0;
922}
923
924/**
925 * \param color 0 if color type is primary, 1 if color type is secondary
926 * \return 0 on sucess, 1 on error
927 */
928static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000929parse_color_type (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000930 GLint * color)
931{
Brian Paula6c423d2004-08-25 15:59:48 +0000932 (void) ctx; (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000933 *color = *(*inst)++ != COLOR_PRIMARY;
934 return 0;
935}
936
937/**
938 * Get an integer corresponding to a generic vertex attribute.
939 *
940 * \return 0 on sucess, 1 on error
941 */
942static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000943parse_generic_attrib_num(GLcontext *ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000944 struct arb_program *Program, GLuint *attrib)
945{
Brian Paulbd997cd2004-07-20 21:12:56 +0000946 GLint i = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000947
Michal Krolbb38cad2006-04-11 11:41:11 +0000948 if ((i < 0) || (i >= MAX_VERTEX_PROGRAM_ATTRIBS))
Jouk Jansen40322e12004-04-05 08:50:36 +0000949 {
Brian Paula088f162006-09-05 23:08:51 +0000950 program_error(ctx, Program->Position,
951 "Invalid generic vertex attribute index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000952 return 1;
953 }
954
Brian Paulbd997cd2004-07-20 21:12:56 +0000955 *attrib = (GLuint) i;
956
Jouk Jansen40322e12004-04-05 08:50:36 +0000957 return 0;
958}
959
960
961/**
Brian Paulbe76b7f2004-10-04 14:40:05 +0000962 * \param color The index of the color buffer to write into
963 * \return 0 on sucess, 1 on error
964 */
965static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000966parse_output_color_num (GLcontext * ctx, const GLubyte ** inst,
Brian Paulbe76b7f2004-10-04 14:40:05 +0000967 struct arb_program *Program, GLuint * color)
968{
969 GLint i = parse_integer (inst, Program);
970
971 if ((i < 0) || (i >= (int)ctx->Const.MaxDrawBuffers)) {
Brian Paula088f162006-09-05 23:08:51 +0000972 program_error(ctx, Program->Position, "Invalid draw buffer index");
Brian Paulbe76b7f2004-10-04 14:40:05 +0000973 return 1;
974 }
975
976 *color = (GLuint) i;
977 return 0;
978}
979
980
981/**
Ian Romanick2549c262009-01-14 10:05:40 -0800982 * Validate the index of a texture coordinate
983 *
Jouk Jansen40322e12004-04-05 08:50:36 +0000984 * \param coord The texture unit index
985 * \return 0 on sucess, 1 on error
986 */
987static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000988parse_texcoord_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000989 struct arb_program *Program, GLuint * coord)
990{
Brian Paulbd997cd2004-07-20 21:12:56 +0000991 GLint i = parse_integer (inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000992
Ian Romanick2549c262009-01-14 10:05:40 -0800993 if ((i < 0) || (i >= (int)ctx->Const.MaxTextureCoordUnits)) {
994 program_error(ctx, Program->Position, "Invalid texture coordinate index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000995 return 1;
996 }
997
Brian Paulbd997cd2004-07-20 21:12:56 +0000998 *coord = (GLuint) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000999 return 0;
1000}
1001
Ian Romanick2549c262009-01-14 10:05:40 -08001002
1003/**
1004 * Validate the index of a texture image unit
1005 *
1006 * \param coord The texture unit index
1007 * \return 0 on sucess, 1 on error
1008 */
1009static GLuint
1010parse_teximage_num (GLcontext * ctx, const GLubyte ** inst,
1011 struct arb_program *Program, GLuint * coord)
1012{
1013 GLint i = parse_integer (inst, Program);
1014
1015 if ((i < 0) || (i >= (int)ctx->Const.MaxTextureImageUnits)) {
1016 program_error(ctx, Program->Position, "Invalid texture image index");
1017 return 1;
1018 }
1019
1020 *coord = (GLuint) i;
1021 return 0;
1022}
1023
1024
Jouk Jansen40322e12004-04-05 08:50:36 +00001025/**
1026 * \param coord The weight index
1027 * \return 0 on sucess, 1 on error
1028 */
1029static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001030parse_weight_num (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +00001031 GLint * coord)
1032{
1033 *coord = parse_integer (inst, Program);
1034
1035 if ((*coord < 0) || (*coord >= 1)) {
Brian Paula088f162006-09-05 23:08:51 +00001036 program_error(ctx, Program->Position, "Invalid weight index");
Jouk Jansen40322e12004-04-05 08:50:36 +00001037 return 1;
1038 }
1039
1040 return 0;
1041}
1042
1043/**
1044 * \param coord The clip plane index
1045 * \return 0 on sucess, 1 on error
1046 */
1047static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001048parse_clipplane_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001049 struct arb_program *Program, GLint * coord)
1050{
1051 *coord = parse_integer (inst, Program);
1052
1053 if ((*coord < 0) || (*coord >= (GLint) ctx->Const.MaxClipPlanes)) {
Brian Paula088f162006-09-05 23:08:51 +00001054 program_error(ctx, Program->Position, "Invalid clip plane index");
Jouk Jansen40322e12004-04-05 08:50:36 +00001055 return 1;
1056 }
1057
1058 return 0;
1059}
1060
1061
1062/**
1063 * \return 0 on front face, 1 on back face
1064 */
1065static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001066parse_face_type (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +00001067{
1068 switch (*(*inst)++) {
1069 case FACE_FRONT:
1070 return 0;
1071
1072 case FACE_BACK:
1073 return 1;
1074 }
1075 return 0;
1076}
1077
1078
1079/**
1080 * Given a matrix and a modifier token on the binary array, return tokens
1081 * that _mesa_fetch_state() [program.c] can understand.
1082 *
1083 * \param matrix - the matrix we are talking about
1084 * \param matrix_idx - the index of the matrix we have (for texture & program matricies)
1085 * \param matrix_modifier - the matrix modifier (trans, inv, etc)
1086 * \return 0 on sucess, 1 on failure
1087 */
1088static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001089parse_matrix (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +00001090 GLint * matrix, GLint * matrix_idx, GLint * matrix_modifier)
1091{
1092 GLubyte mat = *(*inst)++;
1093
1094 *matrix_idx = 0;
1095
1096 switch (mat) {
1097 case MATRIX_MODELVIEW:
Brian65319522007-02-21 11:08:21 -07001098 *matrix = STATE_MODELVIEW_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001099 *matrix_idx = parse_integer (inst, Program);
1100 if (*matrix_idx > 0) {
Brian Paula088f162006-09-05 23:08:51 +00001101 program_error(ctx, Program->Position,
1102 "ARB_vertex_blend not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001103 return 1;
1104 }
1105 break;
1106
1107 case MATRIX_PROJECTION:
Brian65319522007-02-21 11:08:21 -07001108 *matrix = STATE_PROJECTION_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001109 break;
1110
1111 case MATRIX_MVP:
Brian65319522007-02-21 11:08:21 -07001112 *matrix = STATE_MVP_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001113 break;
1114
1115 case MATRIX_TEXTURE:
Brian65319522007-02-21 11:08:21 -07001116 *matrix = STATE_TEXTURE_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001117 *matrix_idx = parse_integer (inst, Program);
1118 if (*matrix_idx >= (GLint) ctx->Const.MaxTextureUnits) {
Brian Paula088f162006-09-05 23:08:51 +00001119 program_error(ctx, Program->Position, "Invalid Texture Unit");
1120 /* bad *matrix_id */
Jouk Jansen40322e12004-04-05 08:50:36 +00001121 return 1;
1122 }
1123 break;
1124
1125 /* This is not currently supported (ARB_matrix_palette) */
1126 case MATRIX_PALETTE:
1127 *matrix_idx = parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001128 program_error(ctx, Program->Position,
1129 "ARB_matrix_palette not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001130 return 1;
1131 break;
1132
1133 case MATRIX_PROGRAM:
Brian65319522007-02-21 11:08:21 -07001134 *matrix = STATE_PROGRAM_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001135 *matrix_idx = parse_integer (inst, Program);
1136 if (*matrix_idx >= (GLint) ctx->Const.MaxProgramMatrices) {
Brian Paula088f162006-09-05 23:08:51 +00001137 program_error(ctx, Program->Position, "Invalid Program Matrix");
1138 /* bad *matrix_idx */
Jouk Jansen40322e12004-04-05 08:50:36 +00001139 return 1;
1140 }
1141 break;
1142 }
1143
1144 switch (*(*inst)++) {
1145 case MATRIX_MODIFIER_IDENTITY:
1146 *matrix_modifier = 0;
1147 break;
1148 case MATRIX_MODIFIER_INVERSE:
1149 *matrix_modifier = STATE_MATRIX_INVERSE;
1150 break;
1151 case MATRIX_MODIFIER_TRANSPOSE:
1152 *matrix_modifier = STATE_MATRIX_TRANSPOSE;
1153 break;
1154 case MATRIX_MODIFIER_INVTRANS:
1155 *matrix_modifier = STATE_MATRIX_INVTRANS;
1156 break;
1157 }
1158
1159 return 0;
1160}
1161
1162
1163/**
1164 * This parses a state string (rather, the binary version of it) into
1165 * a 6-token sequence as described in _mesa_fetch_state() [program.c]
1166 *
1167 * \param inst - the start in the binary arry to start working from
1168 * \param state_tokens - the storage for the 6-token state description
1169 * \return - 0 on sucess, 1 on error
1170 */
1171static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001172parse_state_single_item (GLcontext * ctx, const GLubyte ** inst,
Brianaa9d22a2007-02-23 11:21:03 -07001173 struct arb_program *Program,
1174 gl_state_index state_tokens[STATE_LENGTH])
Jouk Jansen40322e12004-04-05 08:50:36 +00001175{
Brian Paul4ca0af12008-07-09 08:35:50 -06001176 GLubyte token = *(*inst)++;
1177
1178 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001179 case STATE_MATERIAL_PARSER:
1180 state_tokens[0] = STATE_MATERIAL;
1181 state_tokens[1] = parse_face_type (inst);
1182 switch (*(*inst)++) {
1183 case MATERIAL_AMBIENT:
1184 state_tokens[2] = STATE_AMBIENT;
1185 break;
1186 case MATERIAL_DIFFUSE:
1187 state_tokens[2] = STATE_DIFFUSE;
1188 break;
1189 case MATERIAL_SPECULAR:
1190 state_tokens[2] = STATE_SPECULAR;
1191 break;
1192 case MATERIAL_EMISSION:
1193 state_tokens[2] = STATE_EMISSION;
1194 break;
1195 case MATERIAL_SHININESS:
1196 state_tokens[2] = STATE_SHININESS;
1197 break;
1198 }
1199 break;
1200
1201 case STATE_LIGHT_PARSER:
1202 state_tokens[0] = STATE_LIGHT;
1203 state_tokens[1] = parse_integer (inst, Program);
1204
1205 /* Check the value of state_tokens[1] against the # of lights */
1206 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001207 program_error(ctx, Program->Position, "Invalid Light Number");
1208 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001209 return 1;
1210 }
1211
1212 switch (*(*inst)++) {
1213 case LIGHT_AMBIENT:
1214 state_tokens[2] = STATE_AMBIENT;
1215 break;
1216 case LIGHT_DIFFUSE:
1217 state_tokens[2] = STATE_DIFFUSE;
1218 break;
1219 case LIGHT_SPECULAR:
1220 state_tokens[2] = STATE_SPECULAR;
1221 break;
1222 case LIGHT_POSITION:
1223 state_tokens[2] = STATE_POSITION;
1224 break;
1225 case LIGHT_ATTENUATION:
1226 state_tokens[2] = STATE_ATTENUATION;
1227 break;
1228 case LIGHT_HALF:
Brianf958aab2007-02-21 15:23:11 -07001229 state_tokens[2] = STATE_HALF_VECTOR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001230 break;
1231 case LIGHT_SPOT_DIRECTION:
1232 state_tokens[2] = STATE_SPOT_DIRECTION;
1233 break;
1234 }
1235 break;
1236
1237 case STATE_LIGHT_MODEL:
1238 switch (*(*inst)++) {
1239 case LIGHT_MODEL_AMBIENT:
1240 state_tokens[0] = STATE_LIGHTMODEL_AMBIENT;
1241 break;
1242 case LIGHT_MODEL_SCENECOLOR:
1243 state_tokens[0] = STATE_LIGHTMODEL_SCENECOLOR;
1244 state_tokens[1] = parse_face_type (inst);
1245 break;
1246 }
1247 break;
1248
1249 case STATE_LIGHT_PROD:
1250 state_tokens[0] = STATE_LIGHTPROD;
1251 state_tokens[1] = parse_integer (inst, Program);
1252
1253 /* Check the value of state_tokens[1] against the # of lights */
1254 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001255 program_error(ctx, Program->Position, "Invalid Light Number");
1256 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001257 return 1;
1258 }
1259
1260 state_tokens[2] = parse_face_type (inst);
1261 switch (*(*inst)++) {
1262 case LIGHT_PROD_AMBIENT:
1263 state_tokens[3] = STATE_AMBIENT;
1264 break;
1265 case LIGHT_PROD_DIFFUSE:
1266 state_tokens[3] = STATE_DIFFUSE;
1267 break;
1268 case LIGHT_PROD_SPECULAR:
1269 state_tokens[3] = STATE_SPECULAR;
1270 break;
1271 }
1272 break;
1273
1274
1275 case STATE_FOG:
1276 switch (*(*inst)++) {
1277 case FOG_COLOR:
Brianf1390a32007-02-23 17:11:01 -07001278 state_tokens[0] = STATE_FOG_COLOR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001279 break;
1280 case FOG_PARAMS:
Brianf1390a32007-02-23 17:11:01 -07001281 state_tokens[0] = STATE_FOG_PARAMS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001282 break;
1283 }
1284 break;
1285
1286 case STATE_TEX_ENV:
1287 state_tokens[1] = parse_integer (inst, Program);
1288 switch (*(*inst)++) {
1289 case TEX_ENV_COLOR:
1290 state_tokens[0] = STATE_TEXENV_COLOR;
1291 break;
1292 }
1293 break;
1294
1295 case STATE_TEX_GEN:
1296 {
1297 GLuint type, coord;
1298
1299 state_tokens[0] = STATE_TEXGEN;
1300 /*state_tokens[1] = parse_integer (inst, Program);*/ /* Texture Unit */
1301
1302 if (parse_texcoord_num (ctx, inst, Program, &coord))
1303 return 1;
1304 state_tokens[1] = coord;
1305
1306 /* EYE or OBJECT */
Briand799b7a2007-09-13 11:29:00 -06001307 type = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001308
1309 /* 0 - s, 1 - t, 2 - r, 3 - q */
Briand799b7a2007-09-13 11:29:00 -06001310 coord = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001311
1312 if (type == TEX_GEN_EYE) {
1313 switch (coord) {
1314 case COMPONENT_X:
1315 state_tokens[2] = STATE_TEXGEN_EYE_S;
1316 break;
1317 case COMPONENT_Y:
1318 state_tokens[2] = STATE_TEXGEN_EYE_T;
1319 break;
1320 case COMPONENT_Z:
1321 state_tokens[2] = STATE_TEXGEN_EYE_R;
1322 break;
1323 case COMPONENT_W:
1324 state_tokens[2] = STATE_TEXGEN_EYE_Q;
1325 break;
Briand799b7a2007-09-13 11:29:00 -06001326 default:
1327 _mesa_problem(ctx, "bad texgen component in "
1328 "parse_state_single_item()");
Jouk Jansen40322e12004-04-05 08:50:36 +00001329 }
1330 }
1331 else {
1332 switch (coord) {
1333 case COMPONENT_X:
1334 state_tokens[2] = STATE_TEXGEN_OBJECT_S;
1335 break;
1336 case COMPONENT_Y:
1337 state_tokens[2] = STATE_TEXGEN_OBJECT_T;
1338 break;
1339 case COMPONENT_Z:
1340 state_tokens[2] = STATE_TEXGEN_OBJECT_R;
1341 break;
1342 case COMPONENT_W:
1343 state_tokens[2] = STATE_TEXGEN_OBJECT_Q;
1344 break;
Briand799b7a2007-09-13 11:29:00 -06001345 default:
1346 _mesa_problem(ctx, "bad texgen component in "
1347 "parse_state_single_item()");
Jouk Jansen40322e12004-04-05 08:50:36 +00001348 }
1349 }
1350 }
1351 break;
1352
1353 case STATE_DEPTH:
1354 switch (*(*inst)++) {
1355 case DEPTH_RANGE:
1356 state_tokens[0] = STATE_DEPTH_RANGE;
1357 break;
1358 }
1359 break;
1360
1361 case STATE_CLIP_PLANE:
1362 state_tokens[0] = STATE_CLIPPLANE;
Brianaa9d22a2007-02-23 11:21:03 -07001363 if (parse_clipplane_num (ctx, inst, Program,
1364 (GLint *) &state_tokens[1]))
Jouk Jansen40322e12004-04-05 08:50:36 +00001365 return 1;
1366 break;
1367
1368 case STATE_POINT:
Briand799b7a2007-09-13 11:29:00 -06001369 switch (*(*inst)++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001370 case POINT_SIZE:
Brian776bc9c2007-02-22 09:29:46 -07001371 state_tokens[0] = STATE_POINT_SIZE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001372 break;
1373
1374 case POINT_ATTENUATION:
Brian776bc9c2007-02-22 09:29:46 -07001375 state_tokens[0] = STATE_POINT_ATTENUATION;
Jouk Jansen40322e12004-04-05 08:50:36 +00001376 break;
1377 }
1378 break;
1379
1380 /* XXX: I think this is the correct format for a matrix row */
1381 case STATE_MATRIX_ROWS:
Brianaa9d22a2007-02-23 11:21:03 -07001382 if (parse_matrix(ctx, inst, Program,
1383 (GLint *) &state_tokens[0],
1384 (GLint *) &state_tokens[1],
1385 (GLint *) &state_tokens[4]))
Jouk Jansen40322e12004-04-05 08:50:36 +00001386 return 1;
1387
Brian65319522007-02-21 11:08:21 -07001388 state_tokens[2] = parse_integer (inst, Program); /* The first row to grab */
Jouk Jansen40322e12004-04-05 08:50:36 +00001389
1390 if ((**inst) != 0) { /* Either the last row, 0 */
Brian65319522007-02-21 11:08:21 -07001391 state_tokens[3] = parse_integer (inst, Program);
1392 if (state_tokens[3] < state_tokens[2]) {
Brian Paula088f162006-09-05 23:08:51 +00001393 program_error(ctx, Program->Position,
1394 "Second matrix index less than the first");
1395 /* state_tokens[4] vs. state_tokens[3] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001396 return 1;
1397 }
1398 }
1399 else {
Brian65319522007-02-21 11:08:21 -07001400 state_tokens[3] = state_tokens[2];
Jouk Jansen40322e12004-04-05 08:50:36 +00001401 (*inst)++;
1402 }
1403 break;
1404 }
1405
1406 return 0;
1407}
1408
1409/**
1410 * This parses a state string (rather, the binary version of it) into
1411 * a 6-token similar for the state fetching code in program.c
1412 *
1413 * One might ask, why fetch these parameters into just like you fetch
1414 * state when they are already stored in other places?
1415 *
1416 * Because of array offsets -> We can stick env/local parameters in the
1417 * middle of a parameter array and then index someplace into the array
1418 * when we execute.
1419 *
1420 * One optimization might be to only do this for the cases where the
1421 * env/local parameters end up inside of an array, and leave the
1422 * single parameters (or arrays of pure env/local pareameters) in their
1423 * respective register files.
1424 *
1425 * For ENV parameters, the format is:
1426 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1427 * state_tokens[1] = STATE_ENV
1428 * state_tokens[2] = the parameter index
1429 *
1430 * for LOCAL parameters, the format is:
1431 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1432 * state_tokens[1] = STATE_LOCAL
1433 * state_tokens[2] = the parameter index
1434 *
1435 * \param inst - the start in the binary arry to start working from
1436 * \param state_tokens - the storage for the 6-token state description
1437 * \return - 0 on sucess, 1 on failure
1438 */
1439static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001440parse_program_single_item (GLcontext * ctx, const GLubyte ** inst,
Brianaa9d22a2007-02-23 11:21:03 -07001441 struct arb_program *Program,
1442 gl_state_index state_tokens[STATE_LENGTH])
Jouk Jansen40322e12004-04-05 08:50:36 +00001443{
1444 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1445 state_tokens[0] = STATE_FRAGMENT_PROGRAM;
1446 else
1447 state_tokens[0] = STATE_VERTEX_PROGRAM;
1448
1449
1450 switch (*(*inst)++) {
1451 case PROGRAM_PARAM_ENV:
1452 state_tokens[1] = STATE_ENV;
1453 state_tokens[2] = parse_integer (inst, Program);
1454
1455 /* Check state_tokens[2] against the number of ENV parameters available */
1456 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001457 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001458 ||
1459 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001460 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxEnvParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001461 program_error(ctx, Program->Position,
1462 "Invalid Program Env Parameter");
1463 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001464 return 1;
1465 }
1466
1467 break;
1468
1469 case PROGRAM_PARAM_LOCAL:
1470 state_tokens[1] = STATE_LOCAL;
1471 state_tokens[2] = parse_integer (inst, Program);
1472
1473 /* Check state_tokens[2] against the number of LOCAL parameters available */
1474 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001475 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001476 ||
1477 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001478 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001479 program_error(ctx, Program->Position,
1480 "Invalid Program Local Parameter");
1481 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001482 return 1;
1483 }
1484 break;
1485 }
1486
1487 return 0;
1488}
1489
1490/**
1491 * For ARB_vertex_program, programs are not allowed to use both an explicit
1492 * vertex attribute and a generic vertex attribute corresponding to the same
1493 * state. See section 2.14.3.1 of the GL_ARB_vertex_program spec.
1494 *
1495 * This will walk our var_cache and make sure that nobody does anything fishy.
1496 *
1497 * \return 0 on sucess, 1 on error
1498 */
1499static GLuint
1500generic_attrib_check(struct var_cache *vc_head)
1501{
1502 int a;
1503 struct var_cache *curr;
1504 GLboolean explicitAttrib[MAX_VERTEX_PROGRAM_ATTRIBS],
1505 genericAttrib[MAX_VERTEX_PROGRAM_ATTRIBS];
1506
1507 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1508 explicitAttrib[a] = GL_FALSE;
1509 genericAttrib[a] = GL_FALSE;
1510 }
1511
1512 curr = vc_head;
1513 while (curr) {
1514 if (curr->type == vt_attrib) {
1515 if (curr->attrib_is_generic)
Brian Paul18e7c5c2005-10-30 21:46:00 +00001516 genericAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001517 else
Brian Paul18e7c5c2005-10-30 21:46:00 +00001518 explicitAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001519 }
1520
1521 curr = curr->next;
1522 }
1523
1524 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1525 if ((explicitAttrib[a]) && (genericAttrib[a]))
1526 return 1;
1527 }
1528
1529 return 0;
1530}
1531
1532/**
1533 * This will handle the binding side of an ATTRIB var declaration
1534 *
Brian Paul18e7c5c2005-10-30 21:46:00 +00001535 * \param inputReg returns the input register index, one of the
1536 * VERT_ATTRIB_* or FRAG_ATTRIB_* values.
Brian Paula088f162006-09-05 23:08:51 +00001537 * \return returns 0 on success, 1 on error
Jouk Jansen40322e12004-04-05 08:50:36 +00001538 */
1539static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001540parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst,
Brian Paul18e7c5c2005-10-30 21:46:00 +00001541 struct arb_program *Program,
1542 GLuint *inputReg, GLuint *is_generic)
Jouk Jansen40322e12004-04-05 08:50:36 +00001543{
Jouk Jansen40322e12004-04-05 08:50:36 +00001544 GLint err = 0;
1545
1546 *is_generic = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001547
Jouk Jansen40322e12004-04-05 08:50:36 +00001548 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1549 switch (*(*inst)++) {
1550 case FRAGMENT_ATTRIB_COLOR:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001551 {
1552 GLint coord;
1553 err = parse_color_type (ctx, inst, Program, &coord);
1554 *inputReg = FRAG_ATTRIB_COL0 + coord;
1555 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001556 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001557 case FRAGMENT_ATTRIB_TEXCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001558 {
Brian8fa6f732007-02-01 09:24:41 -07001559 GLuint texcoord = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001560 err = parse_texcoord_num (ctx, inst, Program, &texcoord);
1561 *inputReg = FRAG_ATTRIB_TEX0 + texcoord;
1562 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001563 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001564 case FRAGMENT_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001565 *inputReg = FRAG_ATTRIB_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001566 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001567 case FRAGMENT_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001568 *inputReg = FRAG_ATTRIB_WPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001569 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001570 default:
1571 err = 1;
1572 break;
1573 }
1574 }
1575 else {
1576 switch (*(*inst)++) {
1577 case VERTEX_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001578 *inputReg = VERT_ATTRIB_POS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001579 break;
1580
1581 case VERTEX_ATTRIB_WEIGHT:
1582 {
1583 GLint weight;
Jouk Jansen40322e12004-04-05 08:50:36 +00001584 err = parse_weight_num (ctx, inst, Program, &weight);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001585 *inputReg = VERT_ATTRIB_WEIGHT;
Brian Paul3a557502006-09-05 23:15:29 +00001586#if 1
1587 /* hack for Warcraft (see bug 8060) */
1588 _mesa_warning(ctx, "Application error: vertex program uses 'vertex.weight' but GL_ARB_vertex_blend not supported.");
Brian Pauld9aebd82006-09-06 05:03:47 +00001589 break;
Brian Paul3a557502006-09-05 23:15:29 +00001590#else
Brian Paula088f162006-09-05 23:08:51 +00001591 program_error(ctx, Program->Position,
1592 "ARB_vertex_blend not supported");
Brian Pauld9aebd82006-09-06 05:03:47 +00001593 return 1;
Brian Paul3a557502006-09-05 23:15:29 +00001594#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00001595 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001596
1597 case VERTEX_ATTRIB_NORMAL:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001598 *inputReg = VERT_ATTRIB_NORMAL;
Jouk Jansen40322e12004-04-05 08:50:36 +00001599 break;
1600
1601 case VERTEX_ATTRIB_COLOR:
1602 {
1603 GLint color;
Jouk Jansen40322e12004-04-05 08:50:36 +00001604 err = parse_color_type (ctx, inst, Program, &color);
1605 if (color) {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001606 *inputReg = VERT_ATTRIB_COLOR1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001607 }
1608 else {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001609 *inputReg = VERT_ATTRIB_COLOR0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001610 }
1611 }
1612 break;
1613
1614 case VERTEX_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001615 *inputReg = VERT_ATTRIB_FOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00001616 break;
1617
1618 case VERTEX_ATTRIB_TEXCOORD:
1619 {
Brian8fa6f732007-02-01 09:24:41 -07001620 GLuint unit = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001621 err = parse_texcoord_num (ctx, inst, Program, &unit);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001622 *inputReg = VERT_ATTRIB_TEX0 + unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001623 }
1624 break;
1625
Jouk Jansen40322e12004-04-05 08:50:36 +00001626 case VERTEX_ATTRIB_MATRIXINDEX:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001627 /* Not supported at this time */
1628 {
1629 const char *msg = "ARB_palette_matrix not supported";
1630 parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001631 program_error(ctx, Program->Position, msg);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001632 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001633 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001634
1635 case VERTEX_ATTRIB_GENERIC:
1636 {
1637 GLuint attrib;
Tilman Sauerbeck6c334752006-06-28 16:26:20 +00001638 err = parse_generic_attrib_num(ctx, inst, Program, &attrib);
Brian Paula088f162006-09-05 23:08:51 +00001639 if (!err) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001640 *is_generic = 1;
Brian Paul095c6692006-04-25 00:21:32 +00001641 /* Add VERT_ATTRIB_GENERIC0 here because ARB_vertex_program's
1642 * attributes do not alias the conventional vertex
1643 * attributes.
1644 */
1645 if (attrib > 0)
1646 *inputReg = attrib + VERT_ATTRIB_GENERIC0;
Brian Paul919f6a02006-05-29 14:37:56 +00001647 else
1648 *inputReg = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001649 }
1650 }
1651 break;
1652
1653 default:
1654 err = 1;
1655 break;
1656 }
1657 }
1658
Jouk Jansen40322e12004-04-05 08:50:36 +00001659 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00001660 program_error(ctx, Program->Position, "Bad attribute binding");
Jouk Jansen40322e12004-04-05 08:50:36 +00001661 }
1662
Jouk Jansen40322e12004-04-05 08:50:36 +00001663 return err;
1664}
1665
Brian Paul7aebaf32005-10-30 21:23:23 +00001666
Jouk Jansen40322e12004-04-05 08:50:36 +00001667/**
1668 * This translates between a binary token for an output variable type
1669 * and the mesa token for the same thing.
1670 *
Brian Paul7aebaf32005-10-30 21:23:23 +00001671 * \param inst The parsed tokens
1672 * \param outputReg Returned index/number of the output register,
Brian Paul90ebb582005-11-02 18:06:12 +00001673 * one of the VERT_RESULT_* or FRAG_RESULT_* values.
Jouk Jansen40322e12004-04-05 08:50:36 +00001674 */
1675static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001676parse_result_binding(GLcontext *ctx, const GLubyte **inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00001677 GLuint *outputReg, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00001678{
Brian Paul7aebaf32005-10-30 21:23:23 +00001679 const GLubyte token = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001680
Brian Paul7aebaf32005-10-30 21:23:23 +00001681 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001682 case FRAGMENT_RESULT_COLOR:
Jouk Jansen40322e12004-04-05 08:50:36 +00001683 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001684 GLuint out_color;
1685
Brian Paulbe76b7f2004-10-04 14:40:05 +00001686 /* This gets result of the color buffer we're supposed to
Brian Paul7aebaf32005-10-30 21:23:23 +00001687 * draw into. This pertains to GL_ARB_draw_buffers.
Brian Paulbe76b7f2004-10-04 14:40:05 +00001688 */
1689 parse_output_color_num(ctx, inst, Program, &out_color);
Brian Paul7aebaf32005-10-30 21:23:23 +00001690 ASSERT(out_color < MAX_DRAW_BUFFERS);
Brian Paul90ebb582005-11-02 18:06:12 +00001691 *outputReg = FRAG_RESULT_COLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001692 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001693 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001694 /* for vtx programs, this is VERTEX_RESULT_POSITION */
1695 *outputReg = VERT_RESULT_HPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001696 }
1697 break;
1698
1699 case FRAGMENT_RESULT_DEPTH:
Jouk Jansen40322e12004-04-05 08:50:36 +00001700 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001701 /* for frag programs, this is FRAGMENT_RESULT_DEPTH */
Brian Paul90ebb582005-11-02 18:06:12 +00001702 *outputReg = FRAG_RESULT_DEPR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001703 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001704 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001705 /* for vtx programs, this is VERTEX_RESULT_COLOR */
Jouk Jansen40322e12004-04-05 08:50:36 +00001706 GLint color_type;
1707 GLuint face_type = parse_face_type(inst);
Brian Paul7aebaf32005-10-30 21:23:23 +00001708 GLint err = parse_color_type(ctx, inst, Program, &color_type);
1709 if (err)
1710 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001711
Jouk Jansen40322e12004-04-05 08:50:36 +00001712 if (face_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001713 /* back face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001714 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001715 *outputReg = VERT_RESULT_BFC1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001716 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001717 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001718 *outputReg = VERT_RESULT_BFC0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001719 }
1720 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001721 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001722 /* front face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001723 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001724 *outputReg = VERT_RESULT_COL1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001725 }
1726 /* primary color */
1727 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001728 *outputReg = VERT_RESULT_COL0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001729 }
1730 }
1731 }
1732 break;
1733
1734 case VERTEX_RESULT_FOGCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001735 *outputReg = VERT_RESULT_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001736 break;
1737
1738 case VERTEX_RESULT_POINTSIZE:
Brian Paul7aebaf32005-10-30 21:23:23 +00001739 *outputReg = VERT_RESULT_PSIZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00001740 break;
1741
1742 case VERTEX_RESULT_TEXCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001743 {
1744 GLuint unit;
1745 if (parse_texcoord_num (ctx, inst, Program, &unit))
1746 return 1;
1747 *outputReg = VERT_RESULT_TEX0 + unit;
1748 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001749 break;
1750 }
1751
Brian Paulde997602005-11-12 17:53:14 +00001752 Program->Base.OutputsWritten |= (1 << *outputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001753
1754 return 0;
1755}
1756
Brian Paul7aebaf32005-10-30 21:23:23 +00001757
Jouk Jansen40322e12004-04-05 08:50:36 +00001758/**
1759 * This handles the declaration of ATTRIB variables
1760 *
1761 * XXX: Still needs
1762 * parse_vert_attrib_binding(), or something like that
1763 *
1764 * \return 0 on sucess, 1 on error
1765 */
1766static GLint
Brian Paula088f162006-09-05 23:08:51 +00001767parse_attrib (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001768 struct arb_program *Program)
1769{
1770 GLuint found;
Jouk Jansen40322e12004-04-05 08:50:36 +00001771 struct var_cache *attrib_var;
1772
1773 attrib_var = parse_string (inst, vc_head, Program, &found);
1774 Program->Position = parse_position (inst);
1775 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06001776 program_error2(ctx, Program->Position,
1777 "Duplicate variable declaration",
1778 (char *) attrib_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00001779 return 1;
1780 }
1781
1782 attrib_var->type = vt_attrib;
1783
Brian Paul7aebaf32005-10-30 21:23:23 +00001784 if (parse_attrib_binding(ctx, inst, Program, &attrib_var->attrib_binding,
Brian Paul7aebaf32005-10-30 21:23:23 +00001785 &attrib_var->attrib_is_generic))
1786 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001787
Brian Paul7aebaf32005-10-30 21:23:23 +00001788 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00001789 program_error(ctx, Program->Position,
1790 "Cannot use both a generic vertex attribute "
1791 "and a specific attribute of the same type");
Brian Paul7aebaf32005-10-30 21:23:23 +00001792 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001793 }
1794
1795 Program->Base.NumAttributes++;
1796 return 0;
1797}
1798
1799/**
1800 * \param use -- TRUE if we're called when declaring implicit parameters,
1801 * FALSE if we're declaraing variables. This has to do with
1802 * if we get a signed or unsigned float for scalar constants
1803 */
1804static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001805parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001806 struct var_cache *param_var,
1807 struct arb_program *Program, GLboolean use)
1808{
1809 GLint idx;
Brian Paul7aebaf32005-10-30 21:23:23 +00001810 GLuint err = 0;
Roland Scheidegger8dc18842007-11-29 03:08:18 +01001811 gl_state_index state_tokens[STATE_LENGTH] = {0, 0, 0, 0, 0};
Jouk Jansen40322e12004-04-05 08:50:36 +00001812 GLfloat const_values[4];
1813
Brian Paul4ca0af12008-07-09 08:35:50 -06001814 GLubyte token = *(*inst)++;
1815
1816 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001817 case PARAM_STATE_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001818 if (parse_state_single_item (ctx, inst, Program, state_tokens))
1819 return 1;
1820
1821 /* If we adding STATE_MATRIX that has multiple rows, we need to
1822 * unroll it and call _mesa_add_state_reference() for each row
1823 */
Brian65319522007-02-21 11:08:21 -07001824 if ((state_tokens[0] == STATE_MODELVIEW_MATRIX ||
1825 state_tokens[0] == STATE_PROJECTION_MATRIX ||
1826 state_tokens[0] == STATE_MVP_MATRIX ||
1827 state_tokens[0] == STATE_TEXTURE_MATRIX ||
1828 state_tokens[0] == STATE_PROGRAM_MATRIX)
1829 && (state_tokens[2] != state_tokens[3])) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001830 GLint row;
Brian65319522007-02-21 11:08:21 -07001831 const GLint first_row = state_tokens[2];
1832 const GLint last_row = state_tokens[3];
Jouk Jansen40322e12004-04-05 08:50:36 +00001833
1834 for (row = first_row; row <= last_row; row++) {
Brian65319522007-02-21 11:08:21 -07001835 state_tokens[2] = state_tokens[3] = row;
Jouk Jansen40322e12004-04-05 08:50:36 +00001836
Brian Paulde997602005-11-12 17:53:14 +00001837 idx = _mesa_add_state_reference(Program->Base.Parameters,
1838 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001839 if (param_var->param_binding_begin == ~0U)
1840 param_var->param_binding_begin = idx;
1841 param_var->param_binding_length++;
1842 Program->Base.NumParameters++;
1843 }
1844 }
1845 else {
Brian Paulde997602005-11-12 17:53:14 +00001846 idx = _mesa_add_state_reference(Program->Base.Parameters,
1847 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001848 if (param_var->param_binding_begin == ~0U)
1849 param_var->param_binding_begin = idx;
1850 param_var->param_binding_length++;
1851 Program->Base.NumParameters++;
1852 }
1853 break;
1854
1855 case PARAM_PROGRAM_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001856 if (parse_program_single_item (ctx, inst, Program, state_tokens))
1857 return 1;
Brian Paulde997602005-11-12 17:53:14 +00001858 idx = _mesa_add_state_reference (Program->Base.Parameters, state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001859 if (param_var->param_binding_begin == ~0U)
1860 param_var->param_binding_begin = idx;
1861 param_var->param_binding_length++;
1862 Program->Base.NumParameters++;
1863
1864 /* Check if there is more: 0 -> we're done, else its an integer */
1865 if (**inst) {
1866 GLuint out_of_range, new_idx;
1867 GLuint start_idx = state_tokens[2] + 1;
1868 GLuint end_idx = parse_integer (inst, Program);
1869
1870 out_of_range = 0;
1871 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1872 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001873 && (end_idx >= ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001874 || ((state_tokens[1] == STATE_LOCAL)
1875 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001876 ctx->Const.FragmentProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001877 out_of_range = 1;
1878 }
1879 else {
1880 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001881 && (end_idx >= ctx->Const.VertexProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001882 || ((state_tokens[1] == STATE_LOCAL)
1883 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001884 ctx->Const.VertexProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001885 out_of_range = 1;
1886 }
1887 if (out_of_range) {
Brian Paula088f162006-09-05 23:08:51 +00001888 program_error(ctx, Program->Position,
1889 "Invalid Program Parameter"); /*end_idx*/
Jouk Jansen40322e12004-04-05 08:50:36 +00001890 return 1;
1891 }
1892
1893 for (new_idx = start_idx; new_idx <= end_idx; new_idx++) {
1894 state_tokens[2] = new_idx;
Brian Paulde997602005-11-12 17:53:14 +00001895 idx = _mesa_add_state_reference(Program->Base.Parameters,
1896 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001897 param_var->param_binding_length++;
1898 Program->Base.NumParameters++;
1899 }
1900 }
Brian Paul7aebaf32005-10-30 21:23:23 +00001901 else {
1902 (*inst)++;
1903 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001904 break;
1905
1906 case PARAM_CONSTANT:
Brian978145a2008-03-27 16:00:15 -06001907 /* parsing something like {1.0, 2.0, 3.0, 4.0} */
Jouk Jansen40322e12004-04-05 08:50:36 +00001908 parse_constant (inst, const_values, Program, use);
Brian Paulde997602005-11-12 17:53:14 +00001909 idx = _mesa_add_named_constant(Program->Base.Parameters,
1910 (char *) param_var->name,
Brian Paul0c6723a2006-11-15 23:38:02 +00001911 const_values, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00001912 if (param_var->param_binding_begin == ~0U)
1913 param_var->param_binding_begin = idx;
Brian Paul0576e832008-09-19 13:04:52 +02001914 param_var->param_binding_type = PROGRAM_STATE_VAR;
1915 /* Note: when we reference this parameter in an instruction later,
1916 * we'll check if it's really a constant/immediate and set the
1917 * instruction register type appropriately.
1918 */
Jouk Jansen40322e12004-04-05 08:50:36 +00001919 param_var->param_binding_length++;
1920 Program->Base.NumParameters++;
1921 break;
1922
1923 default:
Brian Paula088f162006-09-05 23:08:51 +00001924 program_error(ctx, Program->Position,
1925 "Unexpected token (in parse_param_elements())");
Jouk Jansen40322e12004-04-05 08:50:36 +00001926 return 1;
1927 }
1928
1929 /* Make sure we haven't blown past our parameter limits */
1930 if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
1931 (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001932 ctx->Const.VertexProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001933 || ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1934 && (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001935 ctx->Const.FragmentProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001936 program_error(ctx, Program->Position, "Too many parameter variables");
Jouk Jansen40322e12004-04-05 08:50:36 +00001937 return 1;
1938 }
1939
1940 return err;
1941}
1942
Brian Paul7aebaf32005-10-30 21:23:23 +00001943
Jouk Jansen40322e12004-04-05 08:50:36 +00001944/**
1945 * This picks out PARAM program parameter bindings.
1946 *
1947 * XXX: This needs to be stressed & tested
1948 *
1949 * \return 0 on sucess, 1 on error
1950 */
1951static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001952parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001953 struct arb_program *Program)
1954{
Brian Paulbd997cd2004-07-20 21:12:56 +00001955 GLuint found, err;
1956 GLint specified_length;
Jouk Jansen40322e12004-04-05 08:50:36 +00001957 struct var_cache *param_var;
1958
1959 err = 0;
1960 param_var = parse_string (inst, vc_head, Program, &found);
1961 Program->Position = parse_position (inst);
1962
1963 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06001964 program_error2(ctx, Program->Position,
1965 "Duplicate variable declaration",
1966 (char *) param_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00001967 return 1;
1968 }
1969
1970 specified_length = parse_integer (inst, Program);
1971
1972 if (specified_length < 0) {
Brian Paula088f162006-09-05 23:08:51 +00001973 program_error(ctx, Program->Position, "Negative parameter array length");
Jouk Jansen40322e12004-04-05 08:50:36 +00001974 return 1;
1975 }
1976
1977 param_var->type = vt_param;
1978 param_var->param_binding_length = 0;
1979
1980 /* Right now, everything is shoved into the main state register file.
1981 *
1982 * In the future, it would be nice to leave things ENV/LOCAL params
1983 * in their respective register files, if possible
1984 */
1985 param_var->param_binding_type = PROGRAM_STATE_VAR;
1986
1987 /* Remember to:
1988 * * - add each guy to the parameter list
1989 * * - increment the param_var->param_binding_len
1990 * * - store the param_var->param_binding_begin for the first one
1991 * * - compare the actual len to the specified len at the end
1992 */
1993 while (**inst != PARAM_NULL) {
1994 if (parse_param_elements (ctx, inst, param_var, Program, GL_FALSE))
1995 return 1;
1996 }
1997
1998 /* Test array length here! */
1999 if (specified_length) {
Brian Paula6c423d2004-08-25 15:59:48 +00002000 if (specified_length != (int)param_var->param_binding_length) {
Brian Paula088f162006-09-05 23:08:51 +00002001 program_error(ctx, Program->Position,
2002 "Declared parameter array length does not match parameter list");
Jouk Jansen40322e12004-04-05 08:50:36 +00002003 }
2004 }
2005
2006 (*inst)++;
2007
2008 return 0;
2009}
2010
2011/**
2012 *
2013 */
2014static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002015parse_param_use (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002016 struct arb_program *Program, struct var_cache **new_var)
2017{
2018 struct var_cache *param_var;
2019
2020 /* First, insert a dummy entry into the var_cache */
2021 var_cache_create (&param_var);
Brian Paul6a769d92006-04-28 15:42:15 +00002022 param_var->name = (const GLubyte *) " ";
Jouk Jansen40322e12004-04-05 08:50:36 +00002023 param_var->type = vt_param;
2024
2025 param_var->param_binding_length = 0;
2026 /* Don't fill in binding_begin; We use the default value of -1
2027 * to tell if its already initialized, elsewhere.
2028 *
2029 * param_var->param_binding_begin = 0;
2030 */
2031 param_var->param_binding_type = PROGRAM_STATE_VAR;
2032
2033 var_cache_append (vc_head, param_var);
2034
2035 /* Then fill it with juicy parameter goodness */
2036 if (parse_param_elements (ctx, inst, param_var, Program, GL_TRUE))
2037 return 1;
2038
2039 *new_var = param_var;
2040
2041 return 0;
2042}
2043
2044
2045/**
2046 * This handles the declaration of TEMP variables
2047 *
2048 * \return 0 on sucess, 1 on error
2049 */
2050static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002051parse_temp (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002052 struct arb_program *Program)
2053{
2054 GLuint found;
2055 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002056
2057 while (**inst != 0) {
2058 temp_var = parse_string (inst, vc_head, Program, &found);
2059 Program->Position = parse_position (inst);
2060 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06002061 program_error2(ctx, Program->Position,
2062 "Duplicate variable declaration",
2063 (char *) temp_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002064 return 1;
2065 }
2066
2067 temp_var->type = vt_temp;
2068
2069 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
2070 (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00002071 ctx->Const.FragmentProgram.MaxTemps))
Jouk Jansen40322e12004-04-05 08:50:36 +00002072 || ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
2073 && (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00002074 ctx->Const.VertexProgram.MaxTemps))) {
Brian Paula088f162006-09-05 23:08:51 +00002075 program_error(ctx, Program->Position,
2076 "Too many TEMP variables declared");
Jouk Jansen40322e12004-04-05 08:50:36 +00002077 return 1;
2078 }
2079
2080 temp_var->temp_binding = Program->Base.NumTemporaries;
2081 Program->Base.NumTemporaries++;
2082 }
2083 (*inst)++;
2084
2085 return 0;
2086}
2087
2088/**
2089 * This handles variables of the OUTPUT variety
2090 *
2091 * \return 0 on sucess, 1 on error
2092 */
2093static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002094parse_output (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002095 struct arb_program *Program)
2096{
2097 GLuint found;
2098 struct var_cache *output_var;
Brian Paul7aebaf32005-10-30 21:23:23 +00002099 GLuint err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002100
2101 output_var = parse_string (inst, vc_head, Program, &found);
2102 Program->Position = parse_position (inst);
2103 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06002104 program_error2(ctx, Program->Position,
2105 "Duplicate variable declaration",
2106 (char *) output_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002107 return 1;
2108 }
2109
2110 output_var->type = vt_output;
Brian Paul7aebaf32005-10-30 21:23:23 +00002111
2112 err = parse_result_binding(ctx, inst, &output_var->output_binding, Program);
2113 return err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002114}
2115
2116/**
2117 * This handles variables of the ALIAS kind
2118 *
2119 * \return 0 on sucess, 1 on error
2120 */
2121static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002122parse_alias (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002123 struct arb_program *Program)
2124{
2125 GLuint found;
2126 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002127
2128 temp_var = parse_string (inst, vc_head, Program, &found);
2129 Program->Position = parse_position (inst);
2130
2131 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06002132 program_error2(ctx, Program->Position,
2133 "Duplicate variable declaration",
2134 (char *) temp_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002135 return 1;
2136 }
2137
2138 temp_var->type = vt_alias;
2139 temp_var->alias_binding = parse_string (inst, vc_head, Program, &found);
2140 Program->Position = parse_position (inst);
2141
2142 if (!found)
2143 {
Brianab31a3a2007-09-13 11:41:49 -06002144 program_error2(ctx, Program->Position,
2145 "Undefined alias value",
2146 (char *) temp_var->alias_binding->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002147 return 1;
2148 }
2149
2150 return 0;
2151}
2152
2153/**
2154 * This handles variables of the ADDRESS kind
2155 *
2156 * \return 0 on sucess, 1 on error
2157 */
2158static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002159parse_address (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002160 struct arb_program *Program)
2161{
2162 GLuint found;
2163 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002164
2165 while (**inst != 0) {
2166 temp_var = parse_string (inst, vc_head, Program, &found);
2167 Program->Position = parse_position (inst);
2168 if (found) {
Brianab31a3a2007-09-13 11:41:49 -06002169 program_error2(ctx, Program->Position,
2170 "Duplicate variable declaration",
2171 (char *) temp_var->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002172 return 1;
2173 }
2174
2175 temp_var->type = vt_address;
2176
2177 if (Program->Base.NumAddressRegs >=
Brian Paul05051032005-11-01 04:36:33 +00002178 ctx->Const.VertexProgram.MaxAddressRegs) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002179 const char *msg = "Too many ADDRESS variables declared";
Brian Paula088f162006-09-05 23:08:51 +00002180 program_error(ctx, Program->Position, msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002181 return 1;
2182 }
2183
2184 temp_var->address_binding = Program->Base.NumAddressRegs;
2185 Program->Base.NumAddressRegs++;
2186 }
2187 (*inst)++;
2188
2189 return 0;
2190}
2191
2192/**
2193 * Parse a program declaration
2194 *
2195 * \return 0 on sucess, 1 on error
2196 */
2197static GLint
Brian Paula088f162006-09-05 23:08:51 +00002198parse_declaration (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002199 struct arb_program *Program)
2200{
2201 GLint err = 0;
2202
2203 switch (*(*inst)++) {
2204 case ADDRESS:
2205 err = parse_address (ctx, inst, vc_head, Program);
2206 break;
2207
2208 case ALIAS:
2209 err = parse_alias (ctx, inst, vc_head, Program);
2210 break;
2211
2212 case ATTRIB:
2213 err = parse_attrib (ctx, inst, vc_head, Program);
2214 break;
2215
2216 case OUTPUT:
2217 err = parse_output (ctx, inst, vc_head, Program);
2218 break;
2219
2220 case PARAM:
2221 err = parse_param (ctx, inst, vc_head, Program);
2222 break;
2223
2224 case TEMP:
2225 err = parse_temp (ctx, inst, vc_head, Program);
2226 break;
2227 }
2228
2229 return err;
2230}
2231
2232/**
Brian Paul7aebaf32005-10-30 21:23:23 +00002233 * Handle the parsing out of a masked destination register, either for a
2234 * vertex or fragment program.
Jouk Jansen40322e12004-04-05 08:50:36 +00002235 *
2236 * If we are a vertex program, make sure we don't write to
Brian Paul7aebaf32005-10-30 21:23:23 +00002237 * result.position if we have specified that the program is
Jouk Jansen40322e12004-04-05 08:50:36 +00002238 * position invariant
2239 *
2240 * \param File - The register file we write to
2241 * \param Index - The register index we write to
2242 * \param WriteMask - The mask controlling which components we write (1->write)
2243 *
2244 * \return 0 on sucess, 1 on error
2245 */
2246static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002247parse_masked_dst_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002248 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7aebaf32005-10-30 21:23:23 +00002249 enum register_file *File, GLuint *Index, GLint *WriteMask)
Jouk Jansen40322e12004-04-05 08:50:36 +00002250{
Brian Paul7aebaf32005-10-30 21:23:23 +00002251 GLuint tmp, result;
Jouk Jansen40322e12004-04-05 08:50:36 +00002252 struct var_cache *dst;
2253
2254 /* We either have a result register specified, or a
2255 * variable that may or may not be writable
2256 */
2257 switch (*(*inst)++) {
2258 case REGISTER_RESULT:
Brian Paul7aebaf32005-10-30 21:23:23 +00002259 if (parse_result_binding(ctx, inst, Index, Program))
Jouk Jansen40322e12004-04-05 08:50:36 +00002260 return 1;
2261 *File = PROGRAM_OUTPUT;
2262 break;
2263
2264 case REGISTER_ESTABLISHED_NAME:
2265 dst = parse_string (inst, vc_head, Program, &result);
2266 Program->Position = parse_position (inst);
2267
2268 /* If the name has never been added to our symbol table, we're hosed */
2269 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002270 program_error(ctx, Program->Position, "0: Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002271 return 1;
2272 }
2273
2274 switch (dst->type) {
2275 case vt_output:
2276 *File = PROGRAM_OUTPUT;
Brian Paul7aebaf32005-10-30 21:23:23 +00002277 *Index = dst->output_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002278 break;
2279
2280 case vt_temp:
2281 *File = PROGRAM_TEMPORARY;
2282 *Index = dst->temp_binding;
2283 break;
2284
2285 /* If the var type is not vt_output or vt_temp, no go */
2286 default:
Brian Paula088f162006-09-05 23:08:51 +00002287 program_error(ctx, Program->Position,
2288 "Destination register is read only");
Jouk Jansen40322e12004-04-05 08:50:36 +00002289 return 1;
2290 }
2291 break;
2292
2293 default:
Brian Paula088f162006-09-05 23:08:51 +00002294 program_error(ctx, Program->Position,
2295 "Unexpected opcode in parse_masked_dst_reg()");
Jouk Jansen40322e12004-04-05 08:50:36 +00002296 return 1;
2297 }
2298
2299
2300 /* Position invariance test */
2301 /* This test is done now in syntax portion - when position invariance OPTION
2302 is specified, "result.position" rule is disabled so there is no way
2303 to write the position
2304 */
2305 /*if ((Program->HintPositionInvariant) && (*File == PROGRAM_OUTPUT) &&
2306 (*Index == 0)) {
Brian Paula088f162006-09-05 23:08:51 +00002307 program_error(ctx, Program->Position,
Jouk Jansen40322e12004-04-05 08:50:36 +00002308 "Vertex program specified position invariance and wrote vertex position");
2309 }*/
2310
2311 /* And then the mask.
2312 * w,a -> bit 0
2313 * z,b -> bit 1
2314 * y,g -> bit 2
2315 * x,r -> bit 3
Keith Whitwell7c26b612005-04-21 14:46:57 +00002316 *
2317 * ==> Need to reverse the order of bits for this!
Jouk Jansen40322e12004-04-05 08:50:36 +00002318 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002319 tmp = (GLint) *(*inst)++;
2320 *WriteMask = (((tmp>>3) & 0x1) |
2321 ((tmp>>1) & 0x2) |
2322 ((tmp<<1) & 0x4) |
2323 ((tmp<<3) & 0x8));
Jouk Jansen40322e12004-04-05 08:50:36 +00002324
2325 return 0;
2326}
2327
2328
2329/**
2330 * Handle the parsing of a address register
2331 *
2332 * \param Index - The register index we write to
2333 *
2334 * \return 0 on sucess, 1 on error
2335 */
2336static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002337parse_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002338 struct var_cache **vc_head,
2339 struct arb_program *Program, GLint * Index)
2340{
2341 struct var_cache *dst;
2342 GLuint result;
Aapo Tahkola6fc864b2006-03-22 21:29:15 +00002343
2344 *Index = 0; /* XXX */
Jouk Jansen40322e12004-04-05 08:50:36 +00002345
2346 dst = parse_string (inst, vc_head, Program, &result);
2347 Program->Position = parse_position (inst);
2348
2349 /* If the name has never been added to our symbol table, we're hosed */
2350 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002351 program_error(ctx, Program->Position, "Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002352 return 1;
2353 }
2354
2355 if (dst->type != vt_address) {
Brian Paula088f162006-09-05 23:08:51 +00002356 program_error(ctx, Program->Position, "Variable is not of type ADDRESS");
Jouk Jansen40322e12004-04-05 08:50:36 +00002357 return 1;
2358 }
2359
2360 return 0;
2361}
2362
Brian Paul8e8fa632005-07-01 02:03:33 +00002363#if 0 /* unused */
Jouk Jansen40322e12004-04-05 08:50:36 +00002364/**
2365 * Handle the parsing out of a masked address register
2366 *
2367 * \param Index - The register index we write to
2368 * \param WriteMask - The mask controlling which components we write (1->write)
2369 *
2370 * \return 0 on sucess, 1 on error
2371 */
2372static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002373parse_masked_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002374 struct var_cache **vc_head,
2375 struct arb_program *Program, GLint * Index,
2376 GLboolean * WriteMask)
2377{
2378 if (parse_address_reg (ctx, inst, vc_head, Program, Index))
2379 return 1;
2380
2381 /* This should be 0x8 */
2382 (*inst)++;
2383
2384 /* Writemask of .x is implied */
2385 WriteMask[0] = 1;
2386 WriteMask[1] = WriteMask[2] = WriteMask[3] = 0;
2387
2388 return 0;
2389}
Brian Paul8e8fa632005-07-01 02:03:33 +00002390#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00002391
2392/**
2393 * Parse out a swizzle mask.
2394 *
Brian Paul32df89e2005-10-29 18:26:43 +00002395 * Basically convert COMPONENT_X/Y/Z/W to SWIZZLE_X/Y/Z/W
Jouk Jansen40322e12004-04-05 08:50:36 +00002396 *
2397 * The len parameter allows us to grab 4 components for a vector
2398 * swizzle, or just 1 component for a scalar src register selection
2399 */
Brian Paul32df89e2005-10-29 18:26:43 +00002400static void
Brian Paula088f162006-09-05 23:08:51 +00002401parse_swizzle_mask(const GLubyte ** inst, GLubyte *swizzle, GLint len)
Jouk Jansen40322e12004-04-05 08:50:36 +00002402{
Brian Paul32df89e2005-10-29 18:26:43 +00002403 GLint i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002404
Brian Paul32df89e2005-10-29 18:26:43 +00002405 for (i = 0; i < 4; i++)
2406 swizzle[i] = i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002407
Brian Paul32df89e2005-10-29 18:26:43 +00002408 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00002409 switch (*(*inst)++) {
2410 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002411 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002412 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002413 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002414 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002415 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002416 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002417 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002418 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002419 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002420 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002421 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002422 default:
2423 _mesa_problem(NULL, "bad component in parse_swizzle_mask()");
2424 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002425 }
2426 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002427}
2428
Jouk Jansen40322e12004-04-05 08:50:36 +00002429
Brian Paul32df89e2005-10-29 18:26:43 +00002430/**
2431 * Parse an extended swizzle mask which is a sequence of
2432 * four x/y/z/w/0/1 tokens.
2433 * \return swizzle four swizzle values
2434 * \return negateMask four element bitfield
2435 */
2436static void
Brian Paula088f162006-09-05 23:08:51 +00002437parse_extended_swizzle_mask(const GLubyte **inst, GLubyte swizzle[4],
Brian Paul32df89e2005-10-29 18:26:43 +00002438 GLubyte *negateMask)
2439{
2440 GLint i;
2441
2442 *negateMask = 0x0;
2443 for (i = 0; i < 4; i++) {
2444 GLubyte swz;
2445 if (parse_sign(inst) == -1)
2446 *negateMask |= (1 << i);
Jouk Jansen40322e12004-04-05 08:50:36 +00002447
2448 swz = *(*inst)++;
2449
2450 switch (swz) {
2451 case COMPONENT_0:
Brian Paul32df89e2005-10-29 18:26:43 +00002452 swizzle[i] = SWIZZLE_ZERO;
Jouk Jansen40322e12004-04-05 08:50:36 +00002453 break;
2454 case COMPONENT_1:
Brian Paul32df89e2005-10-29 18:26:43 +00002455 swizzle[i] = SWIZZLE_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002456 break;
2457 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002458 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002459 break;
2460 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002461 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002462 break;
2463 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002464 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002465 break;
2466 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002467 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002468 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002469 default:
2470 _mesa_problem(NULL, "bad case in parse_extended_swizzle_mask()");
2471 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002472 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002473 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002474}
2475
2476
2477static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002478parse_src_reg (GLcontext * ctx, const GLubyte ** inst,
2479 struct var_cache **vc_head,
Brian Paul7aebaf32005-10-30 21:23:23 +00002480 struct arb_program *Program,
2481 enum register_file * File, GLint * Index,
Jouk Jansen40322e12004-04-05 08:50:36 +00002482 GLboolean *IsRelOffset )
2483{
2484 struct var_cache *src;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002485 GLuint binding, is_generic, found;
Brian Paulbd997cd2004-07-20 21:12:56 +00002486 GLint offset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002487
Keith Whitwell7c26b612005-04-21 14:46:57 +00002488 *IsRelOffset = 0;
2489
Jouk Jansen40322e12004-04-05 08:50:36 +00002490 /* And the binding for the src */
2491 switch (*(*inst)++) {
2492 case REGISTER_ATTRIB:
2493 if (parse_attrib_binding
Brian Paul18e7c5c2005-10-30 21:46:00 +00002494 (ctx, inst, Program, &binding, &is_generic))
Jouk Jansen40322e12004-04-05 08:50:36 +00002495 return 1;
2496 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002497 *Index = binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002498
2499 /* We need to insert a dummy variable into the var_cache so we can
2500 * catch generic vertex attrib aliasing errors
2501 */
2502 var_cache_create(&src);
2503 src->type = vt_attrib;
Brian Paul6a769d92006-04-28 15:42:15 +00002504 src->name = (const GLubyte *) "Dummy Attrib Variable";
Brian Paul18e7c5c2005-10-30 21:46:00 +00002505 src->attrib_binding = binding;
2506 src->attrib_is_generic = is_generic;
Jouk Jansen40322e12004-04-05 08:50:36 +00002507 var_cache_append(vc_head, src);
2508 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00002509 program_error(ctx, Program->Position,
2510 "Cannot use both a generic vertex attribute "
2511 "and a specific attribute of the same type");
Jouk Jansen40322e12004-04-05 08:50:36 +00002512 return 1;
2513 }
2514 break;
2515
2516 case REGISTER_PARAM:
2517 switch (**inst) {
2518 case PARAM_ARRAY_ELEMENT:
2519 (*inst)++;
2520 src = parse_string (inst, vc_head, Program, &found);
2521 Program->Position = parse_position (inst);
2522
2523 if (!found) {
Brianab31a3a2007-09-13 11:41:49 -06002524 program_error2(ctx, Program->Position,
2525 "Undefined variable",
2526 (char *) src->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00002527 return 1;
2528 }
2529
Brian Paul95801792005-12-06 15:41:43 +00002530 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002531
2532 switch (*(*inst)++) {
2533 case ARRAY_INDEX_ABSOLUTE:
2534 offset = parse_integer (inst, Program);
2535
2536 if ((offset < 0)
Brian Paula6c423d2004-08-25 15:59:48 +00002537 || (offset >= (int)src->param_binding_length)) {
Brian Paula088f162006-09-05 23:08:51 +00002538 program_error(ctx, Program->Position,
2539 "Index out of range");
2540 /* offset, src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002541 return 1;
2542 }
2543
2544 *Index = src->param_binding_begin + offset;
2545 break;
2546
2547 case ARRAY_INDEX_RELATIVE:
2548 {
2549 GLint addr_reg_idx, rel_off;
2550
2551 /* First, grab the address regiseter */
2552 if (parse_address_reg (ctx, inst, vc_head, Program, &addr_reg_idx))
2553 return 1;
2554
2555 /* And the .x */
2556 ((*inst)++);
2557 ((*inst)++);
2558 ((*inst)++);
2559 ((*inst)++);
2560
2561 /* Then the relative offset */
2562 if (parse_relative_offset(ctx, inst, Program, &rel_off)) return 1;
2563
2564 /* And store it properly */
2565 *Index = src->param_binding_begin + rel_off;
2566 *IsRelOffset = 1;
2567 }
2568 break;
2569 }
2570 break;
2571
2572 default:
Jouk Jansen40322e12004-04-05 08:50:36 +00002573 if (parse_param_use (ctx, inst, vc_head, Program, &src))
2574 return 1;
2575
Brian Paul95801792005-12-06 15:41:43 +00002576 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002577 *Index = src->param_binding_begin;
2578 break;
2579 }
2580 break;
2581
2582 case REGISTER_ESTABLISHED_NAME:
Jouk Jansen40322e12004-04-05 08:50:36 +00002583 src = parse_string (inst, vc_head, Program, &found);
2584 Program->Position = parse_position (inst);
2585
2586 /* If the name has never been added to our symbol table, we're hosed */
2587 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002588 program_error(ctx, Program->Position,
2589 "3: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002590 return 1;
2591 }
2592
2593 switch (src->type) {
2594 case vt_attrib:
2595 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002596 *Index = src->attrib_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002597 break;
2598
2599 /* XXX: We have to handle offsets someplace in here! -- or are those above? */
2600 case vt_param:
Brian Paul95801792005-12-06 15:41:43 +00002601 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002602 *Index = src->param_binding_begin;
2603 break;
2604
2605 case vt_temp:
2606 *File = PROGRAM_TEMPORARY;
2607 *Index = src->temp_binding;
2608 break;
2609
2610 /* If the var type is vt_output no go */
2611 default:
Brian Paula088f162006-09-05 23:08:51 +00002612 program_error(ctx, Program->Position,
2613 "destination register is read only");
2614 /* bad src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002615 return 1;
2616 }
2617 break;
2618
2619 default:
Brian Paula088f162006-09-05 23:08:51 +00002620 program_error(ctx, Program->Position,
2621 "Unknown token in parse_src_reg");
Jouk Jansen40322e12004-04-05 08:50:36 +00002622 return 1;
2623 }
2624
Brian Paul0576e832008-09-19 13:04:52 +02002625 if (*File == PROGRAM_STATE_VAR) {
Michal Krol8701e5f2008-09-19 19:11:37 +02002626 enum register_file file;
2627
Brian Paul0576e832008-09-19 13:04:52 +02002628 /* If we're referencing the Program->Parameters[] array, check if the
2629 * parameter is really a constant/literal. If so, set File to CONSTANT.
2630 */
Michal Krola77976d2008-10-01 19:36:04 +02002631 assert(*Index < (GLint) Program->Base.Parameters->NumParameters);
Michal Krol8701e5f2008-09-19 19:11:37 +02002632 file = Program->Base.Parameters->Parameters[*Index].Type;
Brian Paul0576e832008-09-19 13:04:52 +02002633 if (file == PROGRAM_CONSTANT)
2634 *File = PROGRAM_CONSTANT;
2635 }
2636
Markus Amslerf2b91422008-03-17 08:35:27 -06002637 /* Add attributes to InputsRead only if they are used the program.
2638 * This avoids the handling of unused ATTRIB declarations in the drivers. */
2639 if (*File == PROGRAM_INPUT)
2640 Program->Base.InputsRead |= (1 << *Index);
2641
Jouk Jansen40322e12004-04-05 08:50:36 +00002642 return 0;
2643}
2644
Brian7d2b6a02008-03-27 16:17:37 -06002645
Jouk Jansen40322e12004-04-05 08:50:36 +00002646/**
Brian7d2b6a02008-03-27 16:17:37 -06002647 * Parse vertex/fragment program vector source register.
Jouk Jansen40322e12004-04-05 08:50:36 +00002648 */
2649static GLuint
Brian7d2b6a02008-03-27 16:17:37 -06002650parse_vector_src_reg(GLcontext *ctx, const GLubyte **inst,
2651 struct var_cache **vc_head,
2652 struct arb_program *program,
2653 struct prog_src_register *reg)
Jouk Jansen40322e12004-04-05 08:50:36 +00002654{
Brian Paul7aebaf32005-10-30 21:23:23 +00002655 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00002656 GLint index;
Brian7d2b6a02008-03-27 16:17:37 -06002657 GLubyte negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00002658 GLubyte swizzle[4];
2659 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002660
Jouk Jansen40322e12004-04-05 08:50:36 +00002661 /* Grab the sign */
Brian7d2b6a02008-03-27 16:17:37 -06002662 negateMask = (parse_sign (inst) == -1) ? NEGATE_XYZW : NEGATE_NONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002663
2664 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00002665 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Jouk Jansen40322e12004-04-05 08:50:36 +00002666 return 1;
2667
2668 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002669 parse_swizzle_mask(inst, swizzle, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00002670
Brian Paul32df89e2005-10-29 18:26:43 +00002671 reg->File = file;
2672 reg->Index = index;
Brian Paul32df89e2005-10-29 18:26:43 +00002673 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
Brian7d2b6a02008-03-27 16:17:37 -06002674 reg->NegateBase = negateMask;
2675 reg->RelAddr = isRelOffset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002676 return 0;
2677}
2678
Jouk Jansen40322e12004-04-05 08:50:36 +00002679
Brian Paulb7fc1c32006-08-30 23:38:03 +00002680/**
Brian7d2b6a02008-03-27 16:17:37 -06002681 * Parse vertex/fragment program scalar source register.
2682 */
2683static GLuint
2684parse_scalar_src_reg(GLcontext *ctx, const GLubyte **inst,
2685 struct var_cache **vc_head,
2686 struct arb_program *program,
2687 struct prog_src_register *reg)
2688{
2689 enum register_file file;
2690 GLint index;
2691 GLubyte negateMask;
2692 GLubyte swizzle[4];
2693 GLboolean isRelOffset;
2694
2695 /* Grab the sign */
2696 negateMask = (parse_sign (inst) == -1) ? NEGATE_XYZW : NEGATE_NONE;
2697
2698 /* And the src reg */
2699 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
2700 return 1;
2701
2702 /* finally, the swizzle */
2703 parse_swizzle_mask(inst, swizzle, 1);
2704
2705 reg->File = file;
2706 reg->Index = index;
2707 reg->Swizzle = (swizzle[0] << 0);
2708 reg->NegateBase = negateMask;
2709 reg->RelAddr = isRelOffset;
2710 return 0;
2711}
2712
2713
2714/**
2715 * Parse vertex/fragment program destination register.
Brian Paulb7fc1c32006-08-30 23:38:03 +00002716 * \return 1 if error, 0 if no error.
2717 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002718static GLuint
Brian7d2b6a02008-03-27 16:17:37 -06002719parse_dst_reg(GLcontext * ctx, const GLubyte ** inst,
2720 struct var_cache **vc_head, struct arb_program *program,
2721 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002722{
Brian Paul7aebaf32005-10-30 21:23:23 +00002723 GLint mask;
2724 GLuint idx;
2725 enum register_file file;
2726
Brian7d2b6a02008-03-27 16:17:37 -06002727 if (parse_masked_dst_reg (ctx, inst, vc_head, program, &file, &idx, &mask))
Jouk Jansen40322e12004-04-05 08:50:36 +00002728 return 1;
2729
Keith Whitwell7c26b612005-04-21 14:46:57 +00002730 reg->File = file;
2731 reg->Index = idx;
2732 reg->WriteMask = mask;
2733 return 0;
2734}
2735
2736
Brian Paul7aebaf32005-10-30 21:23:23 +00002737/**
Jouk Jansen40322e12004-04-05 08:50:36 +00002738 * This is a big mother that handles getting opcodes into the instruction
2739 * and handling the src & dst registers for fragment program instructions
Brian Paulb7fc1c32006-08-30 23:38:03 +00002740 * \return 1 if error, 0 if no error
Jouk Jansen40322e12004-04-05 08:50:36 +00002741 */
2742static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002743parse_fp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002744 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002745 struct prog_instruction *fp)
Jouk Jansen40322e12004-04-05 08:50:36 +00002746{
Keith Whitwell7c26b612005-04-21 14:46:57 +00002747 GLint a;
Jouk Jansen40322e12004-04-05 08:50:36 +00002748 GLuint texcoord;
2749 GLubyte instClass, type, code;
2750 GLboolean rel;
Ian Romanick7b559a92007-06-07 13:58:50 -07002751 GLuint shadow_tex = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00002752
Brian Pauld6272e02006-10-29 18:03:16 +00002753 _mesa_init_instructions(fp, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002754
2755 /* Record the position in the program string for debugging */
2756 fp->StringPos = Program->Position;
2757
2758 /* OP_ALU_INST or OP_TEX_INST */
2759 instClass = *(*inst)++;
2760
2761 /* OP_ALU_{VECTOR, SCALAR, BINSC, BIN, TRI, SWZ},
2762 * OP_TEX_{SAMPLE, KIL}
2763 */
2764 type = *(*inst)++;
2765
2766 /* The actual opcode name */
2767 code = *(*inst)++;
2768
2769 /* Increment the correct count */
2770 switch (instClass) {
2771 case OP_ALU_INST:
2772 Program->NumAluInstructions++;
2773 break;
2774 case OP_TEX_INST:
2775 Program->NumTexInstructions++;
2776 break;
2777 }
2778
Jouk Jansen40322e12004-04-05 08:50:36 +00002779 switch (type) {
2780 case OP_ALU_VECTOR:
2781 switch (code) {
2782 case OP_ABS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002783 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002784 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00002785 fp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002786 break;
2787
2788 case OP_FLR_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002789 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002790 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00002791 fp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00002792 break;
2793
2794 case OP_FRC_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002795 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002796 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00002797 fp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00002798 break;
2799
2800 case OP_LIT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002801 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002802 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00002803 fp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002804 break;
2805
2806 case OP_MOV_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002807 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002808 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00002809 fp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00002810 break;
2811 }
2812
Brian7d2b6a02008-03-27 16:17:37 -06002813 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002814 return 1;
2815
Brian7d2b6a02008-03-27 16:17:37 -06002816 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002817 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002818 break;
2819
2820 case OP_ALU_SCALAR:
2821 switch (code) {
2822 case OP_COS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002823 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002824 case OP_COS:
Brian Paul7e807512005-11-05 17:10:45 +00002825 fp->Opcode = OPCODE_COS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002826 break;
2827
2828 case OP_EX2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002829 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002830 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00002831 fp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002832 break;
2833
2834 case OP_LG2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002835 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002836 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00002837 fp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002838 break;
2839
2840 case OP_RCP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002841 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002842 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00002843 fp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002844 break;
2845
2846 case OP_RSQ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002847 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002848 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00002849 fp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002850 break;
2851
2852 case OP_SIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002853 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002854 case OP_SIN:
Brian Paul7e807512005-11-05 17:10:45 +00002855 fp->Opcode = OPCODE_SIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002856 break;
2857
2858 case OP_SCS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002859 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002860 case OP_SCS:
2861
Brian Paul7e807512005-11-05 17:10:45 +00002862 fp->Opcode = OPCODE_SCS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002863 break;
2864 }
2865
Brian7d2b6a02008-03-27 16:17:37 -06002866 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002867 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002868
Brian7d2b6a02008-03-27 16:17:37 -06002869 if (parse_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002870 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002871 break;
2872
2873 case OP_ALU_BINSC:
2874 switch (code) {
2875 case OP_POW_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002876 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002877 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00002878 fp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00002879 break;
2880 }
2881
Brian7d2b6a02008-03-27 16:17:37 -06002882 if (parse_dst_reg(ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002883 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002884
Jouk Jansen40322e12004-04-05 08:50:36 +00002885 for (a = 0; a < 2; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06002886 if (parse_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002887 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002888 }
2889 break;
2890
2891
2892 case OP_ALU_BIN:
2893 switch (code) {
2894 case OP_ADD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002895 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002896 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00002897 fp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002898 break;
2899
2900 case OP_DP3_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002901 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002902 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00002903 fp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00002904 break;
2905
2906 case OP_DP4_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002907 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002908 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00002909 fp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00002910 break;
2911
2912 case OP_DPH_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002913 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002914 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00002915 fp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00002916 break;
2917
2918 case OP_DST_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002919 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002920 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00002921 fp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00002922 break;
2923
2924 case OP_MAX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002925 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002926 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00002927 fp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002928 break;
2929
2930 case OP_MIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002931 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002932 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00002933 fp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002934 break;
2935
2936 case OP_MUL_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002937 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002938 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00002939 fp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00002940 break;
2941
2942 case OP_SGE_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002943 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002944 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00002945 fp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002946 break;
2947
2948 case OP_SLT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002949 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002950 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00002951 fp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002952 break;
2953
2954 case OP_SUB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002955 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002956 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00002957 fp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002958 break;
2959
2960 case OP_XPD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002961 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002962 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00002963 fp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002964 break;
2965 }
2966
Brian7d2b6a02008-03-27 16:17:37 -06002967 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002968 return 1;
2969 for (a = 0; a < 2; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06002970 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Keith Whitwell7c26b612005-04-21 14:46:57 +00002971 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002972 }
2973 break;
2974
2975 case OP_ALU_TRI:
2976 switch (code) {
2977 case OP_CMP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002978 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002979 case OP_CMP:
Brian Paul7e807512005-11-05 17:10:45 +00002980 fp->Opcode = OPCODE_CMP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002981 break;
2982
2983 case OP_LRP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002984 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002985 case OP_LRP:
Brian Paul7e807512005-11-05 17:10:45 +00002986 fp->Opcode = OPCODE_LRP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002987 break;
2988
2989 case OP_MAD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002990 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002991 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00002992 fp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002993 break;
2994 }
2995
Brian7d2b6a02008-03-27 16:17:37 -06002996 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002997 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002998
Jouk Jansen40322e12004-04-05 08:50:36 +00002999 for (a = 0; a < 3; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06003000 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003001 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003002 }
3003 break;
3004
3005 case OP_ALU_SWZ:
3006 switch (code) {
3007 case OP_SWZ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00003008 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003009 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00003010 fp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003011 break;
3012 }
Brian7d2b6a02008-03-27 16:17:37 -06003013 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003014 return 1;
3015
Keith Whitwell7c26b612005-04-21 14:46:57 +00003016 {
Brian Paul32df89e2005-10-29 18:26:43 +00003017 GLubyte swizzle[4];
Brian Paul54cfe692005-10-21 15:22:36 +00003018 GLubyte negateMask;
Brian Paul7aebaf32005-10-30 21:23:23 +00003019 enum register_file file;
3020 GLint index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003021
Brian Paul32df89e2005-10-29 18:26:43 +00003022 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &rel))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003023 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00003024 parse_extended_swizzle_mask(inst, swizzle, &negateMask);
3025 fp->SrcReg[0].File = file;
3026 fp->SrcReg[0].Index = index;
Brian Paul54cfe692005-10-21 15:22:36 +00003027 fp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003028 fp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
3029 swizzle[1],
3030 swizzle[2],
3031 swizzle[3]);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003032 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003033 break;
3034
3035 case OP_TEX_SAMPLE:
3036 switch (code) {
3037 case OP_TEX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00003038 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003039 case OP_TEX:
Brian Paul7e807512005-11-05 17:10:45 +00003040 fp->Opcode = OPCODE_TEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003041 break;
3042
3043 case OP_TXP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00003044 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003045 case OP_TXP:
Brian Paul7e807512005-11-05 17:10:45 +00003046 fp->Opcode = OPCODE_TXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003047 break;
3048
3049 case OP_TXB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00003050 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003051 case OP_TXB:
Brian Paul7e807512005-11-05 17:10:45 +00003052 fp->Opcode = OPCODE_TXB;
Jouk Jansen40322e12004-04-05 08:50:36 +00003053 break;
3054 }
3055
Brian7d2b6a02008-03-27 16:17:37 -06003056 if (parse_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003057 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003058
Brian7d2b6a02008-03-27 16:17:37 -06003059 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003060 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003061
3062 /* texImageUnit */
Ian Romanick2549c262009-01-14 10:05:40 -08003063 if (parse_teximage_num (ctx, inst, Program, &texcoord))
Jouk Jansen40322e12004-04-05 08:50:36 +00003064 return 1;
3065 fp->TexSrcUnit = texcoord;
3066
3067 /* texTarget */
3068 switch (*(*inst)++) {
Ian Romanick7b559a92007-06-07 13:58:50 -07003069 case TEXTARGET_SHADOW1D:
3070 shadow_tex = 1 << texcoord;
3071 /* FALLTHROUGH */
Jouk Jansen40322e12004-04-05 08:50:36 +00003072 case TEXTARGET_1D:
Brian Paul7e807512005-11-05 17:10:45 +00003073 fp->TexSrcTarget = TEXTURE_1D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003074 break;
Ian Romanick7b559a92007-06-07 13:58:50 -07003075 case TEXTARGET_SHADOW2D:
3076 shadow_tex = 1 << texcoord;
3077 /* FALLTHROUGH */
Jouk Jansen40322e12004-04-05 08:50:36 +00003078 case TEXTARGET_2D:
Brian Paul7e807512005-11-05 17:10:45 +00003079 fp->TexSrcTarget = TEXTURE_2D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003080 break;
3081 case TEXTARGET_3D:
Brian Paul7e807512005-11-05 17:10:45 +00003082 fp->TexSrcTarget = TEXTURE_3D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003083 break;
Ian Romanick7b559a92007-06-07 13:58:50 -07003084 case TEXTARGET_SHADOWRECT:
3085 shadow_tex = 1 << texcoord;
3086 /* FALLTHROUGH */
Jouk Jansen40322e12004-04-05 08:50:36 +00003087 case TEXTARGET_RECT:
Brian Paul7e807512005-11-05 17:10:45 +00003088 fp->TexSrcTarget = TEXTURE_RECT_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003089 break;
3090 case TEXTARGET_CUBE:
Brian Paul7e807512005-11-05 17:10:45 +00003091 fp->TexSrcTarget = TEXTURE_CUBE_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003092 break;
Ian Romanick69358e72007-06-05 09:24:27 -07003093 case TEXTARGET_SHADOW1D_ARRAY:
Ian Romanick7b559a92007-06-07 13:58:50 -07003094 shadow_tex = 1 << texcoord;
3095 /* FALLTHROUGH */
Ian Romanickbb372f12007-05-16 15:34:22 -07003096 case TEXTARGET_1D_ARRAY:
3097 fp->TexSrcTarget = TEXTURE_1D_ARRAY_INDEX;
3098 break;
Ian Romanick7b559a92007-06-07 13:58:50 -07003099 case TEXTARGET_SHADOW2D_ARRAY:
3100 shadow_tex = 1 << texcoord;
3101 /* FALLTHROUGH */
Ian Romanickbb372f12007-05-16 15:34:22 -07003102 case TEXTARGET_2D_ARRAY:
3103 fp->TexSrcTarget = TEXTURE_2D_ARRAY_INDEX;
3104 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00003105 }
Ian Romanick7b559a92007-06-07 13:58:50 -07003106
Brian Paul44e018c2009-02-20 13:42:08 -07003107 if (shadow_tex)
3108 fp->TexShadow = 1;
3109
Ian Romanick7b559a92007-06-07 13:58:50 -07003110 /* Don't test the first time a particular sampler is seen. Each time
3111 * after that, make sure the shadow state is the same.
3112 */
3113 if ((_mesa_bitcount(Program->TexturesUsed[texcoord]) > 0)
3114 && ((Program->ShadowSamplers & (1 << texcoord)) != shadow_tex)) {
3115 program_error(ctx, Program->Position,
3116 "texture image unit used for shadow sampling and non-shadow sampling");
3117 return 1;
3118 }
3119
Brian Paulb7fc1c32006-08-30 23:38:03 +00003120 Program->TexturesUsed[texcoord] |= (1 << fp->TexSrcTarget);
3121 /* Check that both "2D" and "CUBE" (for example) aren't both used */
3122 if (_mesa_bitcount(Program->TexturesUsed[texcoord]) > 1) {
Brian Paula088f162006-09-05 23:08:51 +00003123 program_error(ctx, Program->Position,
3124 "multiple targets used on one texture image unit");
Brian Paulb7fc1c32006-08-30 23:38:03 +00003125 return 1;
3126 }
Ian Romanick7b559a92007-06-07 13:58:50 -07003127
3128
3129 Program->ShadowSamplers |= shadow_tex;
Jouk Jansen40322e12004-04-05 08:50:36 +00003130 break;
3131
3132 case OP_TEX_KIL:
Keith Whitwellc3626a92005-11-01 17:25:49 +00003133 Program->UsesKill = 1;
Brian7d2b6a02008-03-27 16:17:37 -06003134 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003135 return 1;
Brian Paul7e807512005-11-05 17:10:45 +00003136 fp->Opcode = OPCODE_KIL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003137 break;
Brian Paulb7fc1c32006-08-30 23:38:03 +00003138 default:
3139 _mesa_problem(ctx, "bad type 0x%x in parse_fp_instruction()", type);
3140 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003141 }
3142
3143 return 0;
3144}
3145
Keith Whitwell7c26b612005-04-21 14:46:57 +00003146
3147/**
3148 * Handle the parsing out of a masked address register
3149 *
3150 * \param Index - The register index we write to
3151 * \param WriteMask - The mask controlling which components we write (1->write)
3152 *
3153 * \return 0 on sucess, 1 on error
3154 */
3155static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003156parse_vp_address_reg (GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003157 struct var_cache **vc_head,
3158 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003159 struct prog_dst_register *reg)
Keith Whitwell7c26b612005-04-21 14:46:57 +00003160{
3161 GLint idx;
3162
3163 if (parse_address_reg (ctx, inst, vc_head, Program, &idx))
3164 return 1;
3165
3166 /* This should be 0x8 */
3167 (*inst)++;
3168
3169 reg->File = PROGRAM_ADDRESS;
3170 reg->Index = idx;
3171
3172 /* Writemask of .x is implied */
3173 reg->WriteMask = 0x1;
3174 return 0;
3175}
3176
Keith Whitwell7c26b612005-04-21 14:46:57 +00003177
Jouk Jansen40322e12004-04-05 08:50:36 +00003178/**
3179 * This is a big mother that handles getting opcodes into the instruction
3180 * and handling the src & dst registers for vertex program instructions
3181 */
3182static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003183parse_vp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00003184 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003185 struct prog_instruction *vp)
Jouk Jansen40322e12004-04-05 08:50:36 +00003186{
3187 GLint a;
3188 GLubyte type, code;
3189
3190 /* OP_ALU_{ARL, VECTOR, SCALAR, BINSC, BIN, TRI, SWZ} */
3191 type = *(*inst)++;
3192
3193 /* The actual opcode name */
3194 code = *(*inst)++;
3195
Brian Pauld6272e02006-10-29 18:03:16 +00003196 _mesa_init_instructions(vp, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003197 /* Record the position in the program string for debugging */
3198 vp->StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003199
3200 switch (type) {
3201 /* XXX: */
3202 case OP_ALU_ARL:
Brian Paul7e807512005-11-05 17:10:45 +00003203 vp->Opcode = OPCODE_ARL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003204
3205 /* Remember to set SrcReg.RelAddr; */
3206
3207 /* Get the masked address register [dst] */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003208 if (parse_vp_address_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003209 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003210
Jouk Jansen40322e12004-04-05 08:50:36 +00003211 vp->DstReg.File = PROGRAM_ADDRESS;
3212
3213 /* Get a scalar src register */
Brian7d2b6a02008-03-27 16:17:37 -06003214 if (parse_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003215 return 1;
3216
3217 break;
3218
3219 case OP_ALU_VECTOR:
3220 switch (code) {
3221 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00003222 vp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00003223 break;
3224 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00003225 vp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00003226 break;
3227 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00003228 vp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00003229 break;
3230 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00003231 vp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003232 break;
3233 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00003234 vp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00003235 break;
3236 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003237
Brian7d2b6a02008-03-27 16:17:37 -06003238 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003239 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003240
Brian7d2b6a02008-03-27 16:17:37 -06003241 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003242 return 1;
3243 break;
3244
3245 case OP_ALU_SCALAR:
3246 switch (code) {
3247 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00003248 vp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003249 break;
3250 case OP_EXP:
Brian Paul7e807512005-11-05 17:10:45 +00003251 vp->Opcode = OPCODE_EXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003252 break;
3253 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00003254 vp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003255 break;
3256 case OP_LOG:
Brian Paul7e807512005-11-05 17:10:45 +00003257 vp->Opcode = OPCODE_LOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00003258 break;
3259 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00003260 vp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003261 break;
3262 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00003263 vp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003264 break;
3265 }
Brian7d2b6a02008-03-27 16:17:37 -06003266 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003267 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003268
Brian7d2b6a02008-03-27 16:17:37 -06003269 if (parse_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003270 return 1;
3271 break;
3272
3273 case OP_ALU_BINSC:
3274 switch (code) {
3275 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00003276 vp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00003277 break;
3278 }
Brian7d2b6a02008-03-27 16:17:37 -06003279 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003280 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003281
Jouk Jansen40322e12004-04-05 08:50:36 +00003282 for (a = 0; a < 2; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06003283 if (parse_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003284 return 1;
3285 }
3286 break;
3287
3288 case OP_ALU_BIN:
3289 switch (code) {
3290 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00003291 vp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003292 break;
3293 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00003294 vp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00003295 break;
3296 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00003297 vp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00003298 break;
3299 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00003300 vp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00003301 break;
3302 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00003303 vp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00003304 break;
3305 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00003306 vp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003307 break;
3308 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00003309 vp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00003310 break;
3311 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00003312 vp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003313 break;
3314 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00003315 vp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003316 break;
3317 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00003318 vp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003319 break;
3320 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00003321 vp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00003322 break;
3323 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00003324 vp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003325 break;
3326 }
Brian7d2b6a02008-03-27 16:17:37 -06003327 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003328 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003329
Jouk Jansen40322e12004-04-05 08:50:36 +00003330 for (a = 0; a < 2; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06003331 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003332 return 1;
3333 }
3334 break;
3335
3336 case OP_ALU_TRI:
3337 switch (code) {
3338 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00003339 vp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003340 break;
3341 }
3342
Brian7d2b6a02008-03-27 16:17:37 -06003343 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003344 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003345
Jouk Jansen40322e12004-04-05 08:50:36 +00003346 for (a = 0; a < 3; a++) {
Brian7d2b6a02008-03-27 16:17:37 -06003347 if (parse_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003348 return 1;
3349 }
3350 break;
3351
3352 case OP_ALU_SWZ:
3353 switch (code) {
3354 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00003355 vp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003356 break;
3357 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003358 {
Brian Paul32df89e2005-10-29 18:26:43 +00003359 GLubyte swizzle[4];
3360 GLubyte negateMask;
3361 GLboolean relAddr;
Brian Paul7aebaf32005-10-30 21:23:23 +00003362 enum register_file file;
3363 GLint index;
Jouk Jansen40322e12004-04-05 08:50:36 +00003364
Brian7d2b6a02008-03-27 16:17:37 -06003365 if (parse_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003366 return 1;
3367
Brian Paul32df89e2005-10-29 18:26:43 +00003368 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &relAddr))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003369 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00003370 parse_extended_swizzle_mask (inst, swizzle, &negateMask);
3371 vp->SrcReg[0].File = file;
3372 vp->SrcReg[0].Index = index;
Brian Paul7e807512005-11-05 17:10:45 +00003373 vp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003374 vp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
3375 swizzle[1],
3376 swizzle[2],
3377 swizzle[3]);
3378 vp->SrcReg[0].RelAddr = relAddr;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003379 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003380 break;
3381 }
3382 return 0;
3383}
3384
3385#if DEBUG_PARSING
3386
3387static GLvoid
Jouk Jansen40322e12004-04-05 08:50:36 +00003388debug_variables (GLcontext * ctx, struct var_cache *vc_head,
3389 struct arb_program *Program)
3390{
3391 struct var_cache *vc;
3392 GLint a, b;
3393
Brianb618ac82007-02-22 09:39:25 -07003394 fprintf (stderr, "debug_variables, vc_head: %p\n", (void*) vc_head);
Jouk Jansen40322e12004-04-05 08:50:36 +00003395
3396 /* First of all, print out the contents of the var_cache */
3397 vc = vc_head;
3398 while (vc) {
Brianb618ac82007-02-22 09:39:25 -07003399 fprintf (stderr, "[%p]\n", (void*) vc);
Jouk Jansen40322e12004-04-05 08:50:36 +00003400 switch (vc->type) {
3401 case vt_none:
3402 fprintf (stderr, "UNDEFINED %s\n", vc->name);
3403 break;
3404 case vt_attrib:
3405 fprintf (stderr, "ATTRIB %s\n", vc->name);
3406 fprintf (stderr, " binding: 0x%x\n", vc->attrib_binding);
3407 break;
3408 case vt_param:
3409 fprintf (stderr, "PARAM %s begin: %d len: %d\n", vc->name,
3410 vc->param_binding_begin, vc->param_binding_length);
3411 b = vc->param_binding_begin;
3412 for (a = 0; a < vc->param_binding_length; a++) {
3413 fprintf (stderr, "%s\n",
Brianb618ac82007-02-22 09:39:25 -07003414 Program->Base.Parameters->Parameters[a + b].Name);
3415 if (Program->Base.Parameters->Parameters[a + b].Type == PROGRAM_STATE_VAR) {
Michal Krolce3cf632008-09-05 12:25:50 +02003416 char *s;
Brianb618ac82007-02-22 09:39:25 -07003417 s = _mesa_program_state_string(Program->Base.Parameters->Parameters
3418 [a + b].StateIndexes);
3419 fprintf(stderr, "%s\n", s);
Michal Krolce3cf632008-09-05 12:25:50 +02003420 _mesa_free(s);
Jouk Jansen40322e12004-04-05 08:50:36 +00003421 }
3422 else
3423 fprintf (stderr, "%f %f %f %f\n",
Brianb618ac82007-02-22 09:39:25 -07003424 Program->Base.Parameters->ParameterValues[a + b][0],
3425 Program->Base.Parameters->ParameterValues[a + b][1],
3426 Program->Base.Parameters->ParameterValues[a + b][2],
3427 Program->Base.Parameters->ParameterValues[a + b][3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003428 }
3429 break;
3430 case vt_temp:
3431 fprintf (stderr, "TEMP %s\n", vc->name);
3432 fprintf (stderr, " binding: 0x%x\n", vc->temp_binding);
3433 break;
3434 case vt_output:
3435 fprintf (stderr, "OUTPUT %s\n", vc->name);
3436 fprintf (stderr, " binding: 0x%x\n", vc->output_binding);
3437 break;
3438 case vt_alias:
3439 fprintf (stderr, "ALIAS %s\n", vc->name);
Brianb618ac82007-02-22 09:39:25 -07003440 fprintf (stderr, " binding: 0x%p (%s)\n",
3441 (void*) vc->alias_binding, vc->alias_binding->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00003442 break;
Brianb618ac82007-02-22 09:39:25 -07003443 default:
3444 /* nothing */
3445 ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003446 }
3447 vc = vc->next;
3448 }
3449}
3450
Brian Paul72030e02005-11-03 03:30:34 +00003451#endif /* DEBUG_PARSING */
Brian Paul7aebaf32005-10-30 21:23:23 +00003452
3453
3454/**
Jouk Jansen40322e12004-04-05 08:50:36 +00003455 * The main loop for parsing a fragment or vertex program
3456 *
Brian Paul72030e02005-11-03 03:30:34 +00003457 * \return 1 on error, 0 on success
Jouk Jansen40322e12004-04-05 08:50:36 +00003458 */
Brian Paul72030e02005-11-03 03:30:34 +00003459static GLint
Brian Paula088f162006-09-05 23:08:51 +00003460parse_instructions(GLcontext * ctx, const GLubyte * inst,
3461 struct var_cache **vc_head, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003462{
Brian Paul72030e02005-11-03 03:30:34 +00003463 const GLuint maxInst = (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
3464 ? ctx->Const.FragmentProgram.MaxInstructions
3465 : ctx->Const.VertexProgram.MaxInstructions;
Jouk Jansen40322e12004-04-05 08:50:36 +00003466 GLint err = 0;
3467
Jonathan Whitee3378792008-09-30 15:38:38 -06003468 ASSERT(MAX_PROGRAM_INSTRUCTIONS >= maxInst);
Brian Paul72030e02005-11-03 03:30:34 +00003469
Jouk Jansen40322e12004-04-05 08:50:36 +00003470 Program->MajorVersion = (GLuint) * inst++;
3471 Program->MinorVersion = (GLuint) * inst++;
3472
3473 while (*inst != END) {
3474 switch (*inst++) {
3475
3476 case OPTION:
3477 switch (*inst++) {
3478 case ARB_PRECISION_HINT_FASTEST:
3479 Program->PrecisionOption = GL_FASTEST;
3480 break;
3481
3482 case ARB_PRECISION_HINT_NICEST:
3483 Program->PrecisionOption = GL_NICEST;
3484 break;
3485
3486 case ARB_FOG_EXP:
3487 Program->FogOption = GL_EXP;
3488 break;
3489
3490 case ARB_FOG_EXP2:
3491 Program->FogOption = GL_EXP2;
3492 break;
3493
3494 case ARB_FOG_LINEAR:
3495 Program->FogOption = GL_LINEAR;
3496 break;
3497
3498 case ARB_POSITION_INVARIANT:
3499 if (Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
Brian Paul45cd2f92005-11-03 02:25:10 +00003500 Program->HintPositionInvariant = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003501 break;
3502
3503 case ARB_FRAGMENT_PROGRAM_SHADOW:
3504 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3505 /* TODO ARB_fragment_program_shadow code */
3506 }
3507 break;
Michal Krolad22ce82004-10-11 08:13:25 +00003508
3509 case ARB_DRAW_BUFFERS:
3510 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3511 /* do nothing for now */
3512 }
3513 break;
Ian Romanickbb372f12007-05-16 15:34:22 -07003514
3515 case MESA_TEXTURE_ARRAY:
3516 /* do nothing for now */
3517 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00003518 }
3519 break;
3520
3521 case INSTRUCTION:
Brian Paul72030e02005-11-03 03:30:34 +00003522 /* check length */
3523 if (Program->Base.NumInstructions + 1 >= maxInst) {
Brian Paula088f162006-09-05 23:08:51 +00003524 program_error(ctx, Program->Position,
3525 "Max instruction count exceeded");
Brian Paul72030e02005-11-03 03:30:34 +00003526 return 1;
3527 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003528 Program->Position = parse_position (&inst);
Brian Paul72030e02005-11-03 03:30:34 +00003529 /* parse the current instruction */
Jouk Jansen40322e12004-04-05 08:50:36 +00003530 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003531 err = parse_fp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003532 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003533 }
3534 else {
Jouk Jansen40322e12004-04-05 08:50:36 +00003535 err = parse_vp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003536 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003537 }
3538
Brian Paul72030e02005-11-03 03:30:34 +00003539 /* increment instuction count */
Jouk Jansen40322e12004-04-05 08:50:36 +00003540 Program->Base.NumInstructions++;
3541 break;
3542
3543 case DECLARATION:
3544 err = parse_declaration (ctx, &inst, vc_head, Program);
3545 break;
3546
3547 default:
3548 break;
3549 }
3550
3551 if (err)
3552 break;
3553 }
3554
3555 /* Finally, tag on an OPCODE_END instruction */
Brian Paul8c41a142005-11-19 15:36:28 +00003556 {
Brian Paul7aebaf32005-10-30 21:23:23 +00003557 const GLuint numInst = Program->Base.NumInstructions;
Brian Pauld6272e02006-10-29 18:03:16 +00003558 _mesa_init_instructions(Program->Base.Instructions + numInst, 1);
Brian Paul8c41a142005-11-19 15:36:28 +00003559 Program->Base.Instructions[numInst].Opcode = OPCODE_END;
Jouk Jansen40322e12004-04-05 08:50:36 +00003560 /* YYY Wrong Position in program, whatever, at least not random -> crash
3561 Program->Position = parse_position (&inst);
3562 */
Brian Paul8c41a142005-11-19 15:36:28 +00003563 Program->Base.Instructions[numInst].StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003564 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003565 Program->Base.NumInstructions++;
3566
Brian Paul05051032005-11-01 04:36:33 +00003567 /*
3568 * Initialize native counts to logical counts. The device driver may
3569 * change them if program is translated into a hardware program.
3570 */
3571 Program->Base.NumNativeInstructions = Program->Base.NumInstructions;
3572 Program->Base.NumNativeTemporaries = Program->Base.NumTemporaries;
3573 Program->Base.NumNativeParameters = Program->Base.NumParameters;
3574 Program->Base.NumNativeAttributes = Program->Base.NumAttributes;
3575 Program->Base.NumNativeAddressRegs = Program->Base.NumAddressRegs;
Brian Paul05051032005-11-01 04:36:33 +00003576
Jouk Jansen40322e12004-04-05 08:50:36 +00003577 return err;
3578}
3579
Brian Paul7aebaf32005-10-30 21:23:23 +00003580
Jouk Jansen40322e12004-04-05 08:50:36 +00003581/* XXX temporary */
Brian5cc12922006-12-14 14:27:05 -07003582LONGSTRING static char core_grammar_text[] =
Brianc223c6b2007-07-04 13:15:20 -06003583#include "shader/grammar/grammar_syn.h"
Jouk Jansen40322e12004-04-05 08:50:36 +00003584;
3585
Brian Paul7aebaf32005-10-30 21:23:23 +00003586
Brian Paul8c41a142005-11-19 15:36:28 +00003587/**
3588 * Set a grammar parameter.
3589 * \param name the grammar parameter
3590 * \param value the new parameter value
3591 * \return 0 if OK, 1 if error
3592 */
3593static int
3594set_reg8 (GLcontext *ctx, grammar id, const char *name, GLubyte value)
Jouk Jansen40322e12004-04-05 08:50:36 +00003595{
3596 char error_msg[300];
3597 GLint error_pos;
3598
Brian Paul8c41a142005-11-19 15:36:28 +00003599 if (grammar_set_reg8 (id, (const byte *) name, value))
Jouk Jansen40322e12004-04-05 08:50:36 +00003600 return 0;
3601
3602 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3603 _mesa_set_program_error (ctx, error_pos, error_msg);
3604 _mesa_error (ctx, GL_INVALID_OPERATION, "Grammar Register Error");
3605 return 1;
3606}
3607
Brian Paul8c41a142005-11-19 15:36:28 +00003608
3609/**
3610 * Enable support for the given language option in the parser.
3611 * \return 1 if OK, 0 if error
3612 */
3613static int
3614enable_ext(GLcontext *ctx, grammar id, const char *name)
Jouk Jansen40322e12004-04-05 08:50:36 +00003615{
Brian Paul8c41a142005-11-19 15:36:28 +00003616 return !set_reg8(ctx, id, name, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003617}
3618
Brian Paul8c41a142005-11-19 15:36:28 +00003619
3620/**
3621 * Enable parser extensions based on which OpenGL extensions are supported
3622 * by this rendering context.
3623 *
3624 * \return GL_TRUE if OK, GL_FALSE if error.
3625 */
3626static GLboolean
3627enable_parser_extensions(GLcontext *ctx, grammar id)
Jouk Jansen40322e12004-04-05 08:50:36 +00003628{
Brian Paul8c41a142005-11-19 15:36:28 +00003629#if 0
3630 /* These are not supported at this time */
3631 if ((ctx->Extensions.ARB_vertex_blend ||
3632 ctx->Extensions.EXT_vertex_weighting)
Brian Paul43cc1dc2006-09-05 23:11:09 +00003633 && !enable_ext(ctx, id, "vertex_blend"))
Brian Paul8c41a142005-11-19 15:36:28 +00003634 return GL_FALSE;
3635 if (ctx->Extensions.ARB_matrix_palette
3636 && !enable_ext(ctx, id, "matrix_palette"))
3637 return GL_FALSE;
Ian Romanick7b559a92007-06-07 13:58:50 -07003638#endif
Brian Paul8c41a142005-11-19 15:36:28 +00003639 if (ctx->Extensions.ARB_fragment_program_shadow
3640 && !enable_ext(ctx, id, "fragment_program_shadow"))
3641 return GL_FALSE;
Brian Paul8c41a142005-11-19 15:36:28 +00003642 if (ctx->Extensions.EXT_point_parameters
3643 && !enable_ext(ctx, id, "point_parameters"))
3644 return GL_FALSE;
3645 if (ctx->Extensions.EXT_secondary_color
3646 && !enable_ext(ctx, id, "secondary_color"))
3647 return GL_FALSE;
3648 if (ctx->Extensions.EXT_fog_coord
3649 && !enable_ext(ctx, id, "fog_coord"))
3650 return GL_FALSE;
3651 if (ctx->Extensions.NV_texture_rectangle
3652 && !enable_ext(ctx, id, "texture_rectangle"))
3653 return GL_FALSE;
Ian Romanick8aa209c2009-01-27 19:10:43 -08003654 if (!enable_ext(ctx, id, "draw_buffers"))
Brian Paul8c41a142005-11-19 15:36:28 +00003655 return GL_FALSE;
Ian Romanickbb372f12007-05-16 15:34:22 -07003656 if (ctx->Extensions.MESA_texture_array
3657 && !enable_ext(ctx, id, "texture_array"))
3658 return GL_FALSE;
Brian Paul3a557502006-09-05 23:15:29 +00003659#if 1
3660 /* hack for Warcraft (see bug 8060) */
3661 enable_ext(ctx, id, "vertex_blend");
3662#endif
3663
Brian Paul8c41a142005-11-19 15:36:28 +00003664 return GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003665}
3666
Brian Paul8c41a142005-11-19 15:36:28 +00003667
Jouk Jansen40322e12004-04-05 08:50:36 +00003668/**
3669 * This kicks everything off.
3670 *
3671 * \param ctx - The GL Context
3672 * \param str - The program string
3673 * \param len - The program string length
Brian Paul45703642005-10-29 15:52:31 +00003674 * \param program - The arb_program struct to return all the parsed info in
3675 * \return GL_TRUE on sucess, GL_FALSE on error
Jouk Jansen40322e12004-04-05 08:50:36 +00003676 */
Brian Paul8c41a142005-11-19 15:36:28 +00003677static GLboolean
3678_mesa_parse_arb_program(GLcontext *ctx, GLenum target,
3679 const GLubyte *str, GLsizei len,
3680 struct arb_program *program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003681{
3682 GLint a, err, error_pos;
3683 char error_msg[300];
3684 GLuint parsed_len;
3685 struct var_cache *vc_head;
3686 grammar arbprogram_syn_id;
3687 GLubyte *parsed, *inst;
3688 GLubyte *strz = NULL;
3689 static int arbprogram_syn_is_ok = 0; /* XXX temporary */
3690
Brian Paul8c41a142005-11-19 15:36:28 +00003691 /* set the program target before parsing */
3692 program->Base.Target = target;
3693
Brian Paul7f76b8f2004-09-10 01:05:39 +00003694 /* Reset error state */
3695 _mesa_set_program_error(ctx, -1, NULL);
3696
Brian Paul8c41a142005-11-19 15:36:28 +00003697 /* check if arb_grammar_text (arbprogram.syn) is syntactically correct */
Jouk Jansen40322e12004-04-05 08:50:36 +00003698 if (!arbprogram_syn_is_ok) {
Brian Paul8c41a142005-11-19 15:36:28 +00003699 /* One-time initialization of parsing system */
Jouk Jansen40322e12004-04-05 08:50:36 +00003700 grammar grammar_syn_id;
Jouk Jansen40322e12004-04-05 08:50:36 +00003701 GLuint parsed_len;
Jouk Jansen40322e12004-04-05 08:50:36 +00003702
3703 grammar_syn_id = grammar_load_from_text ((byte *) core_grammar_text);
3704 if (grammar_syn_id == 0) {
3705 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
Brian Paul8c41a142005-11-19 15:36:28 +00003706 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003707 _mesa_set_program_error (ctx, error_pos, error_msg);
3708 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003709 "glProgramStringARB(Error loading grammar rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003710 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003711 }
3712
Brian Paul8c41a142005-11-19 15:36:28 +00003713 err = !grammar_check(grammar_syn_id, (byte *) arb_grammar_text,
3714 &parsed, &parsed_len);
Jouk Jansen40322e12004-04-05 08:50:36 +00003715
Brian Paul49a80ca2006-04-28 15:40:11 +00003716 /* 'parsed' is unused here */
3717 _mesa_free (parsed);
3718 parsed = NULL;
3719
Brian Paul45703642005-10-29 15:52:31 +00003720 /* NOTE: we can't destroy grammar_syn_id right here because
3721 * grammar_destroy() can reset the last error
3722 */
Brian Paul8c41a142005-11-19 15:36:28 +00003723 if (err) {
3724 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003725 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3726 _mesa_set_program_error (ctx, error_pos, error_msg);
Brian Paul8c41a142005-11-19 15:36:28 +00003727 _mesa_error (ctx, GL_INVALID_OPERATION,
3728 "glProgramString(Error loading grammar rule set");
Jouk Jansen40322e12004-04-05 08:50:36 +00003729 grammar_destroy (grammar_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003730 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003731 }
3732
3733 grammar_destroy (grammar_syn_id);
3734
3735 arbprogram_syn_is_ok = 1;
3736 }
3737
3738 /* create the grammar object */
3739 arbprogram_syn_id = grammar_load_from_text ((byte *) arb_grammar_text);
3740 if (arbprogram_syn_id == 0) {
Brian Paul8c41a142005-11-19 15:36:28 +00003741 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003742 grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
3743 _mesa_set_program_error (ctx, error_pos, error_msg);
3744 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003745 "glProgramString(Error loading grammer rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003746 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003747 }
3748
3749 /* Set program_target register value */
Brian Paul55194df2005-11-19 23:29:18 +00003750 if (set_reg8 (ctx, arbprogram_syn_id, "program_target",
Jouk Jansen40322e12004-04-05 08:50:36 +00003751 program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) {
3752 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003753 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003754 }
3755
Brian Paul8c41a142005-11-19 15:36:28 +00003756 if (!enable_parser_extensions(ctx, arbprogram_syn_id)) {
3757 grammar_destroy(arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003758 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003759 }
3760
3761 /* check for NULL character occurences */
3762 {
Brian Paul8c41a142005-11-19 15:36:28 +00003763 GLint i;
3764 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003765 if (str[i] == '\0') {
Brian Paula088f162006-09-05 23:08:51 +00003766 program_error(ctx, i, "illegal character");
Jouk Jansen40322e12004-04-05 08:50:36 +00003767 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003768 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003769 }
Brian Paul8c41a142005-11-19 15:36:28 +00003770 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003771 }
3772
3773 /* copy the program string to a null-terminated string */
Brian Paulbdd15b52004-05-04 15:11:06 +00003774 strz = (GLubyte *) _mesa_malloc (len + 1);
Brian Paul45703642005-10-29 15:52:31 +00003775 if (!strz) {
Brian Paul8c41a142005-11-19 15:36:28 +00003776 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glProgramStringARB");
3777 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003778 return GL_FALSE;
3779 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003780 _mesa_memcpy (strz, str, len);
3781 strz[len] = '\0';
3782
Michal Krolb80bc052004-10-21 14:09:54 +00003783 /* do a fast check on program string - initial production buffer is 4K */
Brian Paul8c41a142005-11-19 15:36:28 +00003784 err = !grammar_fast_check(arbprogram_syn_id, strz,
3785 &parsed, &parsed_len, 0x1000);
Jouk Jansen40322e12004-04-05 08:50:36 +00003786
3787 /* Syntax parse error */
Brian Paul8c41a142005-11-19 15:36:28 +00003788 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00003789 grammar_get_last_error((GLubyte *) error_msg, 300, &error_pos);
3790 program_error(ctx, error_pos, error_msg);
Brian Paul5fe90292004-07-20 21:15:13 +00003791
Brian Paulb3aefd12005-09-19 20:12:32 +00003792#if DEBUG_PARSING
Brian Paula088f162006-09-05 23:08:51 +00003793 /* useful for debugging */
Brian Paulb3aefd12005-09-19 20:12:32 +00003794 do {
Brian Paul5fe90292004-07-20 21:15:13 +00003795 int line, col;
3796 char *s;
Brian Paul45703642005-10-29 15:52:31 +00003797 fprintf(stderr, "program: %s\n", (char *) strz);
Eric Anholtb039b782008-01-15 15:09:21 -08003798 fprintf(stderr, "Error Pos: %d\n", ctx->Program.ErrorPos);
3799 s = (char *) _mesa_find_line_column(strz, strz+ctx->Program.ErrorPos,
Brian Paula088f162006-09-05 23:08:51 +00003800 &line, &col);
Brian Paulb3aefd12005-09-19 20:12:32 +00003801 fprintf(stderr, "line %d col %d: %s\n", line, col, s);
Eric Anholtb039b782008-01-15 15:09:21 -08003802 } while (0);
Brian Paulb3aefd12005-09-19 20:12:32 +00003803#endif
Brian Paul5fe90292004-07-20 21:15:13 +00003804
Brian Paula088f162006-09-05 23:08:51 +00003805 _mesa_free(strz);
3806 _mesa_free(parsed);
3807
Jouk Jansen40322e12004-04-05 08:50:36 +00003808 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003809 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003810 }
3811
Jouk Jansen40322e12004-04-05 08:50:36 +00003812 grammar_destroy (arbprogram_syn_id);
3813
Brian Paul8c41a142005-11-19 15:36:28 +00003814 /*
3815 * Program string is syntactically correct at this point
3816 * Parse the tokenized version of the program now, generating
3817 * vertex/fragment program instructions.
3818 */
3819
Jouk Jansen40322e12004-04-05 08:50:36 +00003820 /* Initialize the arb_program struct */
3821 program->Base.String = strz;
Jonathan Whitee3378792008-09-30 15:38:38 -06003822 program->Base.Instructions = _mesa_alloc_instructions(MAX_PROGRAM_INSTRUCTIONS);
Jouk Jansen40322e12004-04-05 08:50:36 +00003823 program->Base.NumInstructions =
3824 program->Base.NumTemporaries =
3825 program->Base.NumParameters =
3826 program->Base.NumAttributes = program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00003827 program->Base.Parameters = _mesa_new_parameter_list ();
3828 program->Base.InputsRead = 0x0;
3829 program->Base.OutputsWritten = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003830 program->Position = 0;
3831 program->MajorVersion = program->MinorVersion = 0;
3832 program->PrecisionOption = GL_DONT_CARE;
3833 program->FogOption = GL_NONE;
3834 program->HintPositionInvariant = GL_FALSE;
3835 for (a = 0; a < MAX_TEXTURE_IMAGE_UNITS; a++)
Brian Paul45cd2f92005-11-03 02:25:10 +00003836 program->TexturesUsed[a] = 0x0;
Ian Romanick7b559a92007-06-07 13:58:50 -07003837 program->ShadowSamplers = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003838 program->NumAluInstructions =
3839 program->NumTexInstructions =
3840 program->NumTexIndirections = 0;
Keith Whitwellc3626a92005-11-01 17:25:49 +00003841 program->UsesKill = 0;
3842
Jouk Jansen40322e12004-04-05 08:50:36 +00003843 vc_head = NULL;
Brian Paul45703642005-10-29 15:52:31 +00003844 err = GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003845
3846 /* Start examining the tokens in the array */
3847 inst = parsed;
3848
3849 /* Check the grammer rev */
3850 if (*inst++ != REVISION) {
Brian Paula088f162006-09-05 23:08:51 +00003851 program_error (ctx, 0, "Grammar version mismatch");
Brian Paul45703642005-10-29 15:52:31 +00003852 err = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003853 }
3854 else {
Michal Krolb80bc052004-10-21 14:09:54 +00003855 /* ignore program target */
3856 inst++;
Brian Paul8c41a142005-11-19 15:36:28 +00003857 err = parse_instructions(ctx, inst, &vc_head, program);
Jouk Jansen40322e12004-04-05 08:50:36 +00003858 }
3859
3860 /*debug_variables(ctx, vc_head, program); */
3861
3862 /* We're done with the parsed binary array */
3863 var_cache_destroy (&vc_head);
3864
3865 _mesa_free (parsed);
Brian Paul45703642005-10-29 15:52:31 +00003866
Jonathan Whitee3378792008-09-30 15:38:38 -06003867 /* Reallocate the instruction array from size [MAX_PROGRAM_INSTRUCTIONS]
Brian Paul8c41a142005-11-19 15:36:28 +00003868 * to size [ap.Base.NumInstructions].
3869 */
Brian Paula7543902006-08-24 21:58:32 +00003870 program->Base.Instructions
3871 = _mesa_realloc_instructions(program->Base.Instructions,
Jonathan Whitee3378792008-09-30 15:38:38 -06003872 MAX_PROGRAM_INSTRUCTIONS,
Brian Paula7543902006-08-24 21:58:32 +00003873 program->Base.NumInstructions);
3874
Brian Paul45703642005-10-29 15:52:31 +00003875 return !err;
Jouk Jansen40322e12004-04-05 08:50:36 +00003876}
Brian Paul8c41a142005-11-19 15:36:28 +00003877
3878
3879
3880void
3881_mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target,
3882 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00003883 struct gl_fragment_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00003884{
3885 struct arb_program ap;
3886 GLuint i;
3887
3888 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
Brian Paul95801792005-12-06 15:41:43 +00003889 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00003890 /* Error in the program. Just return. */
3891 return;
3892 }
3893
3894 /* Copy the relevant contents of the arb_program struct into the
3895 * fragment_program struct.
3896 */
3897 program->Base.String = ap.Base.String;
3898 program->Base.NumInstructions = ap.Base.NumInstructions;
3899 program->Base.NumTemporaries = ap.Base.NumTemporaries;
3900 program->Base.NumParameters = ap.Base.NumParameters;
3901 program->Base.NumAttributes = ap.Base.NumAttributes;
3902 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00003903 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
3904 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
3905 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
3906 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
3907 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian21f99792007-01-09 11:00:21 -07003908 program->Base.NumAluInstructions = ap.Base.NumAluInstructions;
3909 program->Base.NumTexInstructions = ap.Base.NumTexInstructions;
3910 program->Base.NumTexIndirections = ap.Base.NumTexIndirections;
3911 program->Base.NumNativeAluInstructions = ap.Base.NumAluInstructions;
3912 program->Base.NumNativeTexInstructions = ap.Base.NumTexInstructions;
3913 program->Base.NumNativeTexIndirections = ap.Base.NumTexIndirections;
Brian Paul8c41a142005-11-19 15:36:28 +00003914 program->Base.InputsRead = ap.Base.InputsRead;
3915 program->Base.OutputsWritten = ap.Base.OutputsWritten;
Brian Paul1af2b142008-05-14 16:44:48 -06003916 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++) {
Brianc9db2232007-01-04 17:22:19 -07003917 program->Base.TexturesUsed[i] = ap.TexturesUsed[i];
Brian Paul1af2b142008-05-14 16:44:48 -06003918 if (ap.TexturesUsed[i])
3919 program->Base.SamplersUsed |= (1 << i);
3920 }
Ian Romanick7b559a92007-06-07 13:58:50 -07003921 program->Base.ShadowSamplers = ap.ShadowSamplers;
Brian Paul8c41a142005-11-19 15:36:28 +00003922 program->FogOption = ap.FogOption;
Keith Whitwell7ecdfb22007-03-04 21:47:05 +00003923 program->UsesKill = ap.UsesKill;
Brian Paul8c41a142005-11-19 15:36:28 +00003924
Brian Paulf8baad22008-10-06 12:29:29 -06003925 if (program->FogOption)
3926 program->Base.InputsRead |= FRAG_BIT_FOGC;
3927
Brian Paul8c41a142005-11-19 15:36:28 +00003928 if (program->Base.Instructions)
3929 _mesa_free(program->Base.Instructions);
3930 program->Base.Instructions = ap.Base.Instructions;
3931
3932 if (program->Base.Parameters)
3933 _mesa_free_parameter_list(program->Base.Parameters);
3934 program->Base.Parameters = ap.Base.Parameters;
3935
Brian Paulc0ef1662008-03-25 11:32:31 -06003936 /* Append fog instructions now if the program has "OPTION ARB_fog_exp"
3937 * or similar. We used to leave this up to drivers, but it appears
3938 * there's no hardware that wants to do fog in a discrete stage separate
3939 * from the fragment shader.
3940 */
3941 if (program->FogOption != GL_NONE) {
3942 _mesa_append_fog_code(ctx, program);
3943 program->FogOption = GL_NONE;
3944 }
3945
Brian Paul8c41a142005-11-19 15:36:28 +00003946#if DEBUG_FP
Zack Rusin74964ff2008-06-10 16:59:44 -04003947 _mesa_printf("____________Fragment program %u ________\n", program->Base.Id);
Brian Paul11a54c32006-11-15 19:54:25 +00003948 _mesa_print_program(&program->Base);
Brian Paul8c41a142005-11-19 15:36:28 +00003949#endif
3950}
3951
3952
3953
3954/**
3955 * Parse the vertex program string. If success, update the given
3956 * vertex_program object with the new program. Else, leave the vertex_program
3957 * object unchanged.
3958 */
3959void
3960_mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
3961 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00003962 struct gl_vertex_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00003963{
3964 struct arb_program ap;
3965
3966 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
3967
Brian Paul95801792005-12-06 15:41:43 +00003968 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian3075f262008-02-20 08:53:41 -07003969 _mesa_error(ctx, GL_INVALID_OPERATION, "glProgramString(bad program)");
Brian Paul8c41a142005-11-19 15:36:28 +00003970 return;
3971 }
3972
3973 /* Copy the relevant contents of the arb_program struct into the
3974 * vertex_program struct.
3975 */
3976 program->Base.String = ap.Base.String;
3977 program->Base.NumInstructions = ap.Base.NumInstructions;
3978 program->Base.NumTemporaries = ap.Base.NumTemporaries;
3979 program->Base.NumParameters = ap.Base.NumParameters;
3980 program->Base.NumAttributes = ap.Base.NumAttributes;
3981 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00003982 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
3983 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
3984 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
3985 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
3986 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00003987 program->Base.InputsRead = ap.Base.InputsRead;
3988 program->Base.OutputsWritten = ap.Base.OutputsWritten;
3989 program->IsPositionInvariant = ap.HintPositionInvariant;
3990
3991 if (program->Base.Instructions)
3992 _mesa_free(program->Base.Instructions);
3993 program->Base.Instructions = ap.Base.Instructions;
3994
3995 if (program->Base.Parameters)
3996 _mesa_free_parameter_list(program->Base.Parameters);
3997 program->Base.Parameters = ap.Base.Parameters;
3998
3999#if DEBUG_VP
Roland Scheidegger54dac2c2007-02-09 00:36:40 +01004000 _mesa_printf("____________Vertex program %u __________\n", program->Base.Id);
Brian Paul8c41a142005-11-19 15:36:28 +00004001 _mesa_print_program(&program->Base);
4002#endif
4003}