blob: 43e2c7e1becef54ac1974c381afc5700c653f69a [file] [log] [blame]
Jouk Jansen40322e12004-04-05 08:50:36 +00001/*
2 * Mesa 3-D graphics library
Brianb7978af2007-01-09 19:17:17 -07003 * Version: 6.5.3
Jouk Jansen40322e12004-04-05 08:50:36 +00004 *
Brianb7978af2007-01-09 19:17:17 -07005 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
Jouk Jansen40322e12004-04-05 08:50:36 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#define DEBUG_PARSING 0
26
27/**
28 * \file arbprogparse.c
29 * ARB_*_program parser core
30 * \author Karl Rasche
31 */
32
Jouk Jansen40322e12004-04-05 08:50:36 +000033#include "glheader.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000034#include "imports.h"
Jouk Jansen40322e12004-04-05 08:50:36 +000035#include "arbprogparse.h"
36#include "grammar_mesa.h"
Brian Paul32df89e2005-10-29 18:26:43 +000037#include "program.h"
Brianc0551f02006-12-14 15:02:37 -070038#include "prog_parameter.h"
39#include "prog_statevars.h"
Brian Paul8c41a142005-11-19 15:36:28 +000040#include "context.h"
Brian Paul6211a142006-08-24 23:37:13 +000041#include "macros.h"
Brian Paul8c41a142005-11-19 15:36:28 +000042#include "mtypes.h"
Brianc0551f02006-12-14 15:02:37 -070043#include "prog_instruction.h"
Brian Paul8c41a142005-11-19 15:36:28 +000044
45
Brian Paul6211a142006-08-24 23:37:13 +000046/* For ARB programs, use the NV instruction limits */
47#define MAX_INSTRUCTIONS MAX2(MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS, \
48 MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS)
Brian Paul8c41a142005-11-19 15:36:28 +000049
50
51/**
52 * This is basically a union of the vertex_program and fragment_program
53 * structs that we can use to parse the program into
54 *
55 * XXX we can probably get rid of this entirely someday.
56 */
57struct arb_program
58{
Brian Paul122629f2006-07-20 16:49:57 +000059 struct gl_program Base;
Brian Paul8c41a142005-11-19 15:36:28 +000060
61 GLuint Position; /* Just used for error reporting while parsing */
62 GLuint MajorVersion;
63 GLuint MinorVersion;
64
65 /* ARB_vertex_progmra options */
66 GLboolean HintPositionInvariant;
67
68 /* ARB_fragment_progmra options */
69 GLenum PrecisionOption; /* GL_DONT_CARE, GL_NICEST or GL_FASTEST */
70 GLenum FogOption; /* GL_NONE, GL_LINEAR, GL_EXP or GL_EXP2 */
71
72 /* ARB_fragment_program specifics */
73 GLbitfield TexturesUsed[MAX_TEXTURE_IMAGE_UNITS];
74 GLuint NumAluInstructions;
75 GLuint NumTexInstructions;
76 GLuint NumTexIndirections;
77
78 GLboolean UsesKill;
79};
80
Ian Romanick9bdfee32005-07-18 12:31:24 +000081
Brian Paula6c423d2004-08-25 15:59:48 +000082
Jouk Jansen40322e12004-04-05 08:50:36 +000083/* TODO:
84 * Fragment Program Stuff:
85 * -----------------------------------------------------
86 *
87 * - things from Michal's email
88 * + overflow on atoi
89 * + not-overflowing floats (don't use parse_integer..)
90 * + can remove range checking in arbparse.c
91 *
92 * - check all limits of number of various variables
93 * + parameters
94 *
95 * - test! test! test!
96 *
97 * Vertex Program Stuff:
98 * -----------------------------------------------------
99 * - Optimize param array usage and count limits correctly, see spec,
100 * section 2.14.3.7
101 * + Record if an array is reference absolutly or relatively (or both)
102 * + For absolute arrays, store a bitmap of accesses
103 * + For single parameters, store an access flag
104 * + After parsing, make a parameter cleanup and merging pass, where
105 * relative arrays are layed out first, followed by abs arrays, and
106 * finally single state.
107 * + Remap offsets for param src and dst registers
108 * + Now we can properly count parameter usage
109 *
110 * - Multiple state binding errors in param arrays (see spec, just before
111 * section 2.14.3.3)
112 * - grep for XXX
113 *
114 * Mesa Stuff
115 * -----------------------------------------------------
116 * - User clipping planes vs. PositionInvariant
117 * - Is it sufficient to just multiply by the mvp to transform in the
118 * PositionInvariant case? Or do we need something more involved?
119 *
120 * - vp_src swizzle is GLubyte, fp_src swizzle is GLuint
121 * - fetch state listed in program_parameters list
122 * + WTF should this go???
123 * + currently in nvvertexec.c and s_nvfragprog.c
124 *
125 * - allow for multiple address registers (and fetch address regs properly)
126 *
127 * Cosmetic Stuff
128 * -----------------------------------------------------
129 * - remove any leftover unused grammer.c stuff (dict_ ?)
130 * - fix grammer.c error handling so its not static
131 * - #ifdef around stuff pertaining to extentions
132 *
133 * Outstanding Questions:
134 * -----------------------------------------------------
135 * - ARB_matrix_palette / ARB_vertex_blend -- not supported
136 * what gets hacked off because of this:
137 * + VERTEX_ATTRIB_MATRIXINDEX
138 * + VERTEX_ATTRIB_WEIGHT
139 * + MATRIX_MODELVIEW
140 * + MATRIX_PALETTE
141 *
142 * - When can we fetch env/local params from their own register files, and
143 * when to we have to fetch them into the main state register file?
144 * (think arrays)
145 *
146 * Grammar Changes:
147 * -----------------------------------------------------
148 */
149
150/* Changes since moving the file to shader directory
151
1522004-III-4 ------------------------------------------------------------
153- added #include "grammar_mesa.h"
154- removed grammar specific code part (it resides now in grammar.c)
155- added GL_ARB_fragment_program_shadow tokens
156- modified #include "arbparse_syn.h"
157- major changes inside _mesa_parse_arb_program()
158- check the program string for '\0' characters
159- copy the program string to a one-byte-longer location to have
160 it null-terminated
161- position invariance test (not writing to result.position) moved
162 to syntax part
163*/
164
165typedef GLubyte *production;
166
Brian Paul11a54c32006-11-15 19:54:25 +0000167
Jouk Jansen40322e12004-04-05 08:50:36 +0000168/**
169 * This is the text describing the rules to parse the grammar
170 */
Brian Paul11a54c32006-11-15 19:54:25 +0000171LONGSTRING static char arb_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +0000172#include "arbprogram_syn.h"
173;
174
175/**
176 * These should match up with the values defined in arbprogram.syn
177 */
178
179/*
180 Changes:
181 - changed and merged V_* and F_* opcode values to OP_*.
182 - added GL_ARB_fragment_program_shadow specific tokens (michal)
183*/
Michal Krolb80bc052004-10-21 14:09:54 +0000184#define REVISION 0x09
Jouk Jansen40322e12004-04-05 08:50:36 +0000185
186/* program type */
187#define FRAGMENT_PROGRAM 0x01
188#define VERTEX_PROGRAM 0x02
189
190/* program section */
191#define OPTION 0x01
192#define INSTRUCTION 0x02
193#define DECLARATION 0x03
194#define END 0x04
195
Michal Krolb80bc052004-10-21 14:09:54 +0000196/* GL_ARB_fragment_program option */
197#define ARB_PRECISION_HINT_FASTEST 0x00
198#define ARB_PRECISION_HINT_NICEST 0x01
199#define ARB_FOG_EXP 0x02
200#define ARB_FOG_EXP2 0x03
201#define ARB_FOG_LINEAR 0x04
Jouk Jansen40322e12004-04-05 08:50:36 +0000202
Michal Krolb80bc052004-10-21 14:09:54 +0000203/* GL_ARB_vertex_program option */
204#define ARB_POSITION_INVARIANT 0x05
Jouk Jansen40322e12004-04-05 08:50:36 +0000205
Michal Krolb80bc052004-10-21 14:09:54 +0000206/* GL_ARB_fragment_program_shadow option */
207#define ARB_FRAGMENT_PROGRAM_SHADOW 0x06
Jouk Jansen40322e12004-04-05 08:50:36 +0000208
Michal Krolb80bc052004-10-21 14:09:54 +0000209/* GL_ARB_draw_buffers option */
210#define ARB_DRAW_BUFFERS 0x07
Michal Krolad22ce82004-10-11 08:13:25 +0000211
Jouk Jansen40322e12004-04-05 08:50:36 +0000212/* GL_ARB_fragment_program instruction class */
213#define OP_ALU_INST 0x00
214#define OP_TEX_INST 0x01
215
216/* GL_ARB_vertex_program instruction class */
217/* OP_ALU_INST */
218
219/* GL_ARB_fragment_program instruction type */
220#define OP_ALU_VECTOR 0x00
221#define OP_ALU_SCALAR 0x01
222#define OP_ALU_BINSC 0x02
223#define OP_ALU_BIN 0x03
224#define OP_ALU_TRI 0x04
225#define OP_ALU_SWZ 0x05
226#define OP_TEX_SAMPLE 0x06
227#define OP_TEX_KIL 0x07
228
229/* GL_ARB_vertex_program instruction type */
230#define OP_ALU_ARL 0x08
231/* OP_ALU_VECTOR */
232/* OP_ALU_SCALAR */
233/* OP_ALU_BINSC */
234/* OP_ALU_BIN */
235/* OP_ALU_TRI */
236/* OP_ALU_SWZ */
237
238/* GL_ARB_fragment_program instruction code */
239#define OP_ABS 0x00
240#define OP_ABS_SAT 0x1B
241#define OP_FLR 0x09
242#define OP_FLR_SAT 0x26
243#define OP_FRC 0x0A
244#define OP_FRC_SAT 0x27
245#define OP_LIT 0x0C
246#define OP_LIT_SAT 0x2A
247#define OP_MOV 0x11
248#define OP_MOV_SAT 0x30
249#define OP_COS 0x1F
250#define OP_COS_SAT 0x20
251#define OP_EX2 0x07
252#define OP_EX2_SAT 0x25
253#define OP_LG2 0x0B
254#define OP_LG2_SAT 0x29
255#define OP_RCP 0x14
256#define OP_RCP_SAT 0x33
257#define OP_RSQ 0x15
258#define OP_RSQ_SAT 0x34
259#define OP_SIN 0x38
260#define OP_SIN_SAT 0x39
261#define OP_SCS 0x35
262#define OP_SCS_SAT 0x36
263#define OP_POW 0x13
264#define OP_POW_SAT 0x32
265#define OP_ADD 0x01
266#define OP_ADD_SAT 0x1C
267#define OP_DP3 0x03
268#define OP_DP3_SAT 0x21
269#define OP_DP4 0x04
270#define OP_DP4_SAT 0x22
271#define OP_DPH 0x05
272#define OP_DPH_SAT 0x23
273#define OP_DST 0x06
274#define OP_DST_SAT 0x24
275#define OP_MAX 0x0F
276#define OP_MAX_SAT 0x2E
277#define OP_MIN 0x10
278#define OP_MIN_SAT 0x2F
279#define OP_MUL 0x12
280#define OP_MUL_SAT 0x31
281#define OP_SGE 0x16
282#define OP_SGE_SAT 0x37
283#define OP_SLT 0x17
284#define OP_SLT_SAT 0x3A
285#define OP_SUB 0x18
286#define OP_SUB_SAT 0x3B
287#define OP_XPD 0x1A
288#define OP_XPD_SAT 0x43
289#define OP_CMP 0x1D
290#define OP_CMP_SAT 0x1E
291#define OP_LRP 0x2B
292#define OP_LRP_SAT 0x2C
293#define OP_MAD 0x0E
294#define OP_MAD_SAT 0x2D
295#define OP_SWZ 0x19
296#define OP_SWZ_SAT 0x3C
297#define OP_TEX 0x3D
298#define OP_TEX_SAT 0x3E
299#define OP_TXB 0x3F
300#define OP_TXB_SAT 0x40
301#define OP_TXP 0x41
302#define OP_TXP_SAT 0x42
303#define OP_KIL 0x28
304
305/* GL_ARB_vertex_program instruction code */
306#define OP_ARL 0x02
307/* OP_ABS */
308/* OP_FLR */
309/* OP_FRC */
310/* OP_LIT */
311/* OP_MOV */
312/* OP_EX2 */
313#define OP_EXP 0x08
314/* OP_LG2 */
315#define OP_LOG 0x0D
316/* OP_RCP */
317/* OP_RSQ */
318/* OP_POW */
319/* OP_ADD */
320/* OP_DP3 */
321/* OP_DP4 */
322/* OP_DPH */
323/* OP_DST */
324/* OP_MAX */
325/* OP_MIN */
326/* OP_MUL */
327/* OP_SGE */
328/* OP_SLT */
329/* OP_SUB */
330/* OP_XPD */
331/* OP_MAD */
332/* OP_SWZ */
333
334/* fragment attribute binding */
335#define FRAGMENT_ATTRIB_COLOR 0x01
336#define FRAGMENT_ATTRIB_TEXCOORD 0x02
337#define FRAGMENT_ATTRIB_FOGCOORD 0x03
338#define FRAGMENT_ATTRIB_POSITION 0x04
339
340/* vertex attribute binding */
341#define VERTEX_ATTRIB_POSITION 0x01
342#define VERTEX_ATTRIB_WEIGHT 0x02
343#define VERTEX_ATTRIB_NORMAL 0x03
344#define VERTEX_ATTRIB_COLOR 0x04
345#define VERTEX_ATTRIB_FOGCOORD 0x05
346#define VERTEX_ATTRIB_TEXCOORD 0x06
347#define VERTEX_ATTRIB_MATRIXINDEX 0x07
348#define VERTEX_ATTRIB_GENERIC 0x08
349
350/* fragment result binding */
351#define FRAGMENT_RESULT_COLOR 0x01
352#define FRAGMENT_RESULT_DEPTH 0x02
353
354/* vertex result binding */
355#define VERTEX_RESULT_POSITION 0x01
356#define VERTEX_RESULT_COLOR 0x02
357#define VERTEX_RESULT_FOGCOORD 0x03
358#define VERTEX_RESULT_POINTSIZE 0x04
359#define VERTEX_RESULT_TEXCOORD 0x05
360
361/* texture target */
362#define TEXTARGET_1D 0x01
363#define TEXTARGET_2D 0x02
364#define TEXTARGET_3D 0x03
365#define TEXTARGET_RECT 0x04
366#define TEXTARGET_CUBE 0x05
367/* GL_ARB_fragment_program_shadow */
368#define TEXTARGET_SHADOW1D 0x06
369#define TEXTARGET_SHADOW2D 0x07
370#define TEXTARGET_SHADOWRECT 0x08
371
372/* face type */
373#define FACE_FRONT 0x00
374#define FACE_BACK 0x01
375
376/* color type */
377#define COLOR_PRIMARY 0x00
378#define COLOR_SECONDARY 0x01
379
380/* component */
381#define COMPONENT_X 0x00
382#define COMPONENT_Y 0x01
383#define COMPONENT_Z 0x02
384#define COMPONENT_W 0x03
385#define COMPONENT_0 0x04
386#define COMPONENT_1 0x05
387
388/* array index type */
389#define ARRAY_INDEX_ABSOLUTE 0x00
390#define ARRAY_INDEX_RELATIVE 0x01
391
392/* matrix name */
393#define MATRIX_MODELVIEW 0x01
394#define MATRIX_PROJECTION 0x02
395#define MATRIX_MVP 0x03
396#define MATRIX_TEXTURE 0x04
397#define MATRIX_PALETTE 0x05
398#define MATRIX_PROGRAM 0x06
399
400/* matrix modifier */
401#define MATRIX_MODIFIER_IDENTITY 0x00
402#define MATRIX_MODIFIER_INVERSE 0x01
403#define MATRIX_MODIFIER_TRANSPOSE 0x02
404#define MATRIX_MODIFIER_INVTRANS 0x03
405
406/* constant type */
407#define CONSTANT_SCALAR 0x01
408#define CONSTANT_VECTOR 0x02
409
410/* program param type */
411#define PROGRAM_PARAM_ENV 0x01
412#define PROGRAM_PARAM_LOCAL 0x02
413
414/* register type */
415#define REGISTER_ATTRIB 0x01
416#define REGISTER_PARAM 0x02
417#define REGISTER_RESULT 0x03
418#define REGISTER_ESTABLISHED_NAME 0x04
419
420/* param binding */
421#define PARAM_NULL 0x00
422#define PARAM_ARRAY_ELEMENT 0x01
423#define PARAM_STATE_ELEMENT 0x02
424#define PARAM_PROGRAM_ELEMENT 0x03
425#define PARAM_PROGRAM_ELEMENTS 0x04
426#define PARAM_CONSTANT 0x05
427
428/* param state property */
429#define STATE_MATERIAL_PARSER 0x01
430#define STATE_LIGHT_PARSER 0x02
431#define STATE_LIGHT_MODEL 0x03
432#define STATE_LIGHT_PROD 0x04
433#define STATE_FOG 0x05
434#define STATE_MATRIX_ROWS 0x06
435/* GL_ARB_fragment_program */
436#define STATE_TEX_ENV 0x07
437#define STATE_DEPTH 0x08
438/* GL_ARB_vertex_program */
439#define STATE_TEX_GEN 0x09
440#define STATE_CLIP_PLANE 0x0A
441#define STATE_POINT 0x0B
442
443/* state material property */
444#define MATERIAL_AMBIENT 0x01
445#define MATERIAL_DIFFUSE 0x02
446#define MATERIAL_SPECULAR 0x03
447#define MATERIAL_EMISSION 0x04
448#define MATERIAL_SHININESS 0x05
449
450/* state light property */
451#define LIGHT_AMBIENT 0x01
452#define LIGHT_DIFFUSE 0x02
453#define LIGHT_SPECULAR 0x03
454#define LIGHT_POSITION 0x04
455#define LIGHT_ATTENUATION 0x05
456#define LIGHT_HALF 0x06
457#define LIGHT_SPOT_DIRECTION 0x07
458
459/* state light model property */
460#define LIGHT_MODEL_AMBIENT 0x01
461#define LIGHT_MODEL_SCENECOLOR 0x02
462
463/* state light product property */
464#define LIGHT_PROD_AMBIENT 0x01
465#define LIGHT_PROD_DIFFUSE 0x02
466#define LIGHT_PROD_SPECULAR 0x03
467
468/* state texture environment property */
469#define TEX_ENV_COLOR 0x01
470
471/* state texture generation coord property */
472#define TEX_GEN_EYE 0x01
473#define TEX_GEN_OBJECT 0x02
474
475/* state fog property */
476#define FOG_COLOR 0x01
477#define FOG_PARAMS 0x02
478
479/* state depth property */
480#define DEPTH_RANGE 0x01
481
482/* state point parameters property */
483#define POINT_SIZE 0x01
484#define POINT_ATTENUATION 0x02
485
486/* declaration */
487#define ATTRIB 0x01
488#define PARAM 0x02
489#define TEMP 0x03
490#define OUTPUT 0x04
491#define ALIAS 0x05
492/* GL_ARB_vertex_program */
493#define ADDRESS 0x06
494
495/*-----------------------------------------------------------------------
496 * From here on down is the semantic checking portion
497 *
498 */
499
500/**
501 * Variable Table Handling functions
502 */
503typedef enum
504{
505 vt_none,
506 vt_address,
507 vt_attrib,
508 vt_param,
509 vt_temp,
510 vt_output,
511 vt_alias
512} var_type;
513
514
Brian Paul7aebaf32005-10-30 21:23:23 +0000515/**
516 * Setting an explicit field for each of the binding properties is a bit
517 * wasteful of space, but it should be much more clear when reading later on..
Jouk Jansen40322e12004-04-05 08:50:36 +0000518 */
519struct var_cache
520{
Brian Paul6a769d92006-04-28 15:42:15 +0000521 const GLubyte *name; /* don't free() - no need */
Jouk Jansen40322e12004-04-05 08:50:36 +0000522 var_type type;
523 GLuint address_binding; /* The index of the address register we should
524 * be using */
525 GLuint attrib_binding; /* For type vt_attrib, see nvfragprog.h for values */
Jouk Jansen40322e12004-04-05 08:50:36 +0000526 GLuint attrib_is_generic; /* If the attrib was specified through a generic
527 * vertex attrib */
528 GLuint temp_binding; /* The index of the temp register we are to use */
Brian Paul7aebaf32005-10-30 21:23:23 +0000529 GLuint output_binding; /* Output/result register number */
Jouk Jansen40322e12004-04-05 08:50:36 +0000530 struct var_cache *alias_binding; /* For type vt_alias, points to the var_cache entry
531 * that this is aliased to */
532 GLuint param_binding_type; /* {PROGRAM_STATE_VAR, PROGRAM_LOCAL_PARAM,
533 * PROGRAM_ENV_PARAM} */
534 GLuint param_binding_begin; /* This is the offset into the program_parameter_list where
535 * the tokens representing our bound state (or constants)
536 * start */
537 GLuint param_binding_length; /* This is how many entries in the the program_parameter_list
538 * we take up with our state tokens or constants. Note that
539 * this is _not_ the same as the number of param registers
540 * we eventually use */
541 struct var_cache *next;
542};
543
544static GLvoid
545var_cache_create (struct var_cache **va)
546{
547 *va = (struct var_cache *) _mesa_malloc (sizeof (struct var_cache));
548 if (*va) {
549 (**va).name = NULL;
550 (**va).type = vt_none;
551 (**va).attrib_binding = ~0;
552 (**va).attrib_is_generic = 0;
553 (**va).temp_binding = ~0;
554 (**va).output_binding = ~0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000555 (**va).param_binding_type = ~0;
556 (**va).param_binding_begin = ~0;
557 (**va).param_binding_length = ~0;
558 (**va).alias_binding = NULL;
559 (**va).next = NULL;
560 }
561}
562
563static GLvoid
564var_cache_destroy (struct var_cache **va)
565{
566 if (*va) {
567 var_cache_destroy (&(**va).next);
568 _mesa_free (*va);
569 *va = NULL;
570 }
571}
572
573static GLvoid
574var_cache_append (struct var_cache **va, struct var_cache *nv)
575{
576 if (*va)
577 var_cache_append (&(**va).next, nv);
578 else
579 *va = nv;
580}
581
582static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000583var_cache_find (struct var_cache *va, const GLubyte * name)
Jouk Jansen40322e12004-04-05 08:50:36 +0000584{
Brian Paul0a360cf2005-01-17 01:21:03 +0000585 /*struct var_cache *first = va;*/
Jouk Jansen40322e12004-04-05 08:50:36 +0000586
587 while (va) {
Brian Paulaa206952005-09-16 18:14:24 +0000588 if (!_mesa_strcmp ( (const char*) name, (const char*) va->name)) {
Jouk Jansen40322e12004-04-05 08:50:36 +0000589 if (va->type == vt_alias)
Michal Krol43343912005-01-11 15:47:16 +0000590 return va->alias_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +0000591 return va;
592 }
593
594 va = va->next;
595 }
596
597 return NULL;
598}
599
Brian Paula088f162006-09-05 23:08:51 +0000600
601
602/**
603 * Called when an error is detected while parsing/compiling a program.
604 * Sets the ctx->Program.ErrorString field to descript and records a
605 * GL_INVALID_OPERATION error.
606 * \param position position of error in program string
607 * \param descrip verbose error description
608 */
609static void
610program_error(GLcontext *ctx, GLint position, const char *descrip)
611{
612 if (descrip) {
613 const char *prefix = "glProgramString(", *suffix = ")";
614 char *str = (char *) _mesa_malloc(_mesa_strlen(descrip) +
615 _mesa_strlen(prefix) +
616 _mesa_strlen(suffix) + 1);
617 if (str) {
618 _mesa_sprintf(str, "%s%s%s", prefix, descrip, suffix);
619 _mesa_error(ctx, GL_INVALID_OPERATION, str);
620 _mesa_free(str);
621 }
622 }
623 _mesa_set_program_error(ctx, position, descrip);
624}
625
626
627
Jouk Jansen40322e12004-04-05 08:50:36 +0000628/**
629 * constructs an integer from 4 GLubytes in LE format
630 */
631static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000632parse_position (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000633{
634 GLuint value;
635
636 value = (GLuint) (*(*inst)++);
637 value += (GLuint) (*(*inst)++) * 0x100;
638 value += (GLuint) (*(*inst)++) * 0x10000;
639 value += (GLuint) (*(*inst)++) * 0x1000000;
640
641 return value;
642}
643
644/**
645 * This will, given a string, lookup the string as a variable name in the
646 * var cache. If the name is found, the var cache node corresponding to the
647 * var name is returned. If it is not found, a new entry is allocated
648 *
649 * \param I Points into the binary array where the string identifier begins
650 * \param found 1 if the string was found in the var_cache, 0 if it was allocated
651 * \return The location on the var_cache corresponding the the string starting at I
652 */
653static struct var_cache *
Brian Paula088f162006-09-05 23:08:51 +0000654parse_string (const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +0000655 struct arb_program *Program, GLuint * found)
656{
Brian Paula088f162006-09-05 23:08:51 +0000657 const GLubyte *i = *inst;
Jouk Jansen40322e12004-04-05 08:50:36 +0000658 struct var_cache *va = NULL;
Brian Paula6c423d2004-08-25 15:59:48 +0000659 (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000660
661 *inst += _mesa_strlen ((char *) i) + 1;
662
663 va = var_cache_find (*vc_head, i);
664
665 if (va) {
666 *found = 1;
667 return va;
668 }
669
670 *found = 0;
671 var_cache_create (&va);
Brian Paul6a769d92006-04-28 15:42:15 +0000672 va->name = (const GLubyte *) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000673
674 var_cache_append (vc_head, va);
675
676 return va;
677}
678
679static char *
Brian Paula088f162006-09-05 23:08:51 +0000680parse_string_without_adding (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000681{
Brian Paula088f162006-09-05 23:08:51 +0000682 const GLubyte *i = *inst;
Brian Paula6c423d2004-08-25 15:59:48 +0000683 (void) Program;
684
Jouk Jansen40322e12004-04-05 08:50:36 +0000685 *inst += _mesa_strlen ((char *) i) + 1;
686
687 return (char *) i;
688}
689
690/**
Brian Paul05908952004-06-08 15:20:23 +0000691 * \return -1 if we parse '-', return 1 otherwise
Jouk Jansen40322e12004-04-05 08:50:36 +0000692 */
Brian Paul05908952004-06-08 15:20:23 +0000693static GLint
Brian Paula088f162006-09-05 23:08:51 +0000694parse_sign (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000695{
696 /*return *(*inst)++ != '+'; */
697
698 if (**inst == '-') {
699 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000700 return -1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000701 }
702 else if (**inst == '+') {
703 (*inst)++;
Brian Paul05908952004-06-08 15:20:23 +0000704 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000705 }
706
Brian Paul05908952004-06-08 15:20:23 +0000707 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +0000708}
709
710/**
711 * parses and returns signed integer
712 */
713static GLint
Brian Paula088f162006-09-05 23:08:51 +0000714parse_integer (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000715{
716 GLint sign;
717 GLint value;
718
719 /* check if *inst points to '+' or '-'
720 * if yes, grab the sign and increment *inst
721 */
722 sign = parse_sign (inst);
723
724 /* now check if *inst points to 0
725 * if yes, increment the *inst and return the default value
726 */
727 if (**inst == 0) {
728 (*inst)++;
729 return 0;
730 }
731
732 /* parse the integer as you normally would do it */
733 value = _mesa_atoi (parse_string_without_adding (inst, Program));
734
735 /* now, after terminating 0 there is a position
736 * to parse it - parse_position()
737 */
738 Program->Position = parse_position (inst);
739
Brian Paul05908952004-06-08 15:20:23 +0000740 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000741}
742
743/**
Brian Paul1ff8f502005-02-16 15:08:29 +0000744 Accumulate this string of digits, and return them as
745 a large integer represented in floating point (for range).
746 If scale is not NULL, also accumulates a power-of-ten
747 integer scale factor that represents the number of digits
748 in the string.
749*/
750static GLdouble
Brian Paula088f162006-09-05 23:08:51 +0000751parse_float_string(const GLubyte ** inst, struct arb_program *Program, GLdouble *scale)
Brian Paul1ff8f502005-02-16 15:08:29 +0000752{
753 GLdouble value = 0.0;
754 GLdouble oscale = 1.0;
755
756 if (**inst == 0) { /* this string of digits is empty-- do nothing */
757 (*inst)++;
758 }
759 else { /* nonempty string-- parse out the digits */
Michal Krol98e35022005-04-14 10:19:19 +0000760 while (**inst >= '0' && **inst <= '9') {
Brian Paul1ff8f502005-02-16 15:08:29 +0000761 GLubyte digit = *((*inst)++);
762 value = value * 10.0 + (GLint) (digit - '0');
763 oscale *= 10.0;
764 }
765 assert(**inst == 0); /* integer string should end with 0 */
766 (*inst)++; /* skip over terminating 0 */
767 Program->Position = parse_position(inst); /* skip position (from integer) */
768 }
769 if (scale)
770 *scale = oscale;
771 return value;
772}
773
774/**
775 Parse an unsigned floating-point number from this stream of tokenized
776 characters. Example floating-point formats supported:
777 12.34
778 12
779 0.34
780 .34
781 12.34e-4
Jouk Jansen40322e12004-04-05 08:50:36 +0000782 */
783static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000784parse_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000785{
Brian Paul1ff8f502005-02-16 15:08:29 +0000786 GLint exponent;
787 GLdouble whole, fraction, fracScale = 1.0;
Jouk Jansen40322e12004-04-05 08:50:36 +0000788
Brian Paul1ff8f502005-02-16 15:08:29 +0000789 whole = parse_float_string(inst, Program, 0);
790 fraction = parse_float_string(inst, Program, &fracScale);
791
792 /* Parse signed exponent */
793 exponent = parse_integer(inst, Program); /* This is the exponent */
Jouk Jansen40322e12004-04-05 08:50:36 +0000794
Brian Paul1ff8f502005-02-16 15:08:29 +0000795 /* Assemble parts of floating-point number: */
796 return (GLfloat) ((whole + fraction / fracScale) *
797 _mesa_pow(10.0, (GLfloat) exponent));
Jouk Jansen40322e12004-04-05 08:50:36 +0000798}
799
800
801/**
802 */
803static GLfloat
Brian Paula088f162006-09-05 23:08:51 +0000804parse_signed_float (const GLubyte ** inst, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +0000805{
Brian Paul05908952004-06-08 15:20:23 +0000806 GLint sign = parse_sign (inst);
807 GLfloat value = parse_float (inst, Program);
808 return value * sign;
Jouk Jansen40322e12004-04-05 08:50:36 +0000809}
810
811/**
812 * This picks out a constant value from the parsed array. The constant vector is r
813 * returned in the *values array, which should be of length 4.
814 *
815 * \param values - The 4 component vector with the constant value in it
816 */
817static GLvoid
Brian Paula088f162006-09-05 23:08:51 +0000818parse_constant (const GLubyte ** inst, GLfloat *values, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000819 GLboolean use)
820{
821 GLuint components, i;
822
823
824 switch (*(*inst)++) {
825 case CONSTANT_SCALAR:
826 if (use == GL_TRUE) {
827 values[0] =
828 values[1] =
829 values[2] = values[3] = parse_float (inst, Program);
830 }
831 else {
832 values[0] =
833 values[1] =
834 values[2] = values[3] = parse_signed_float (inst, Program);
835 }
836
837 break;
838 case CONSTANT_VECTOR:
839 values[0] = values[1] = values[2] = 0;
840 values[3] = 1;
841 components = *(*inst)++;
842 for (i = 0; i < components; i++) {
843 values[i] = parse_signed_float (inst, Program);
844 }
845 break;
846 }
847}
848
849/**
850 * \param offset The offset from the address register that we should
851 * address
852 *
853 * \return 0 on sucess, 1 on error
854 */
855static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000856parse_relative_offset(GLcontext *ctx, const GLubyte **inst,
857 struct arb_program *Program, GLint *offset)
Jouk Jansen40322e12004-04-05 08:50:36 +0000858{
Brian Paul6a769d92006-04-28 15:42:15 +0000859 (void) ctx;
Jouk Jansen40322e12004-04-05 08:50:36 +0000860 *offset = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000861 return 0;
862}
863
864/**
865 * \param color 0 if color type is primary, 1 if color type is secondary
866 * \return 0 on sucess, 1 on error
867 */
868static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000869parse_color_type (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000870 GLint * color)
871{
Brian Paula6c423d2004-08-25 15:59:48 +0000872 (void) ctx; (void) Program;
Jouk Jansen40322e12004-04-05 08:50:36 +0000873 *color = *(*inst)++ != COLOR_PRIMARY;
874 return 0;
875}
876
877/**
878 * Get an integer corresponding to a generic vertex attribute.
879 *
880 * \return 0 on sucess, 1 on error
881 */
882static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000883parse_generic_attrib_num(GLcontext *ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000884 struct arb_program *Program, GLuint *attrib)
885{
Brian Paulbd997cd2004-07-20 21:12:56 +0000886 GLint i = parse_integer(inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000887
Michal Krolbb38cad2006-04-11 11:41:11 +0000888 if ((i < 0) || (i >= MAX_VERTEX_PROGRAM_ATTRIBS))
Jouk Jansen40322e12004-04-05 08:50:36 +0000889 {
Brian Paula088f162006-09-05 23:08:51 +0000890 program_error(ctx, Program->Position,
891 "Invalid generic vertex attribute index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000892 return 1;
893 }
894
Brian Paulbd997cd2004-07-20 21:12:56 +0000895 *attrib = (GLuint) i;
896
Jouk Jansen40322e12004-04-05 08:50:36 +0000897 return 0;
898}
899
900
901/**
Brian Paulbe76b7f2004-10-04 14:40:05 +0000902 * \param color The index of the color buffer to write into
903 * \return 0 on sucess, 1 on error
904 */
905static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000906parse_output_color_num (GLcontext * ctx, const GLubyte ** inst,
Brian Paulbe76b7f2004-10-04 14:40:05 +0000907 struct arb_program *Program, GLuint * color)
908{
909 GLint i = parse_integer (inst, Program);
910
911 if ((i < 0) || (i >= (int)ctx->Const.MaxDrawBuffers)) {
Brian Paula088f162006-09-05 23:08:51 +0000912 program_error(ctx, Program->Position, "Invalid draw buffer index");
Brian Paulbe76b7f2004-10-04 14:40:05 +0000913 return 1;
914 }
915
916 *color = (GLuint) i;
917 return 0;
918}
919
920
921/**
Jouk Jansen40322e12004-04-05 08:50:36 +0000922 * \param coord The texture unit index
923 * \return 0 on sucess, 1 on error
924 */
925static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000926parse_texcoord_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000927 struct arb_program *Program, GLuint * coord)
928{
Brian Paulbd997cd2004-07-20 21:12:56 +0000929 GLint i = parse_integer (inst, Program);
Jouk Jansen40322e12004-04-05 08:50:36 +0000930
Brian Paula6c423d2004-08-25 15:59:48 +0000931 if ((i < 0) || (i >= (int)ctx->Const.MaxTextureUnits)) {
Brian Paula088f162006-09-05 23:08:51 +0000932 program_error(ctx, Program->Position, "Invalid texture unit index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000933 return 1;
934 }
935
Brian Paulbd997cd2004-07-20 21:12:56 +0000936 *coord = (GLuint) i;
Jouk Jansen40322e12004-04-05 08:50:36 +0000937 return 0;
938}
939
940/**
941 * \param coord The weight index
942 * \return 0 on sucess, 1 on error
943 */
944static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000945parse_weight_num (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +0000946 GLint * coord)
947{
948 *coord = parse_integer (inst, Program);
949
950 if ((*coord < 0) || (*coord >= 1)) {
Brian Paula088f162006-09-05 23:08:51 +0000951 program_error(ctx, Program->Position, "Invalid weight index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000952 return 1;
953 }
954
955 return 0;
956}
957
958/**
959 * \param coord The clip plane index
960 * \return 0 on sucess, 1 on error
961 */
962static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000963parse_clipplane_num (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +0000964 struct arb_program *Program, GLint * coord)
965{
966 *coord = parse_integer (inst, Program);
967
968 if ((*coord < 0) || (*coord >= (GLint) ctx->Const.MaxClipPlanes)) {
Brian Paula088f162006-09-05 23:08:51 +0000969 program_error(ctx, Program->Position, "Invalid clip plane index");
Jouk Jansen40322e12004-04-05 08:50:36 +0000970 return 1;
971 }
972
973 return 0;
974}
975
976
977/**
978 * \return 0 on front face, 1 on back face
979 */
980static GLuint
Brian Paula088f162006-09-05 23:08:51 +0000981parse_face_type (const GLubyte ** inst)
Jouk Jansen40322e12004-04-05 08:50:36 +0000982{
983 switch (*(*inst)++) {
984 case FACE_FRONT:
985 return 0;
986
987 case FACE_BACK:
988 return 1;
989 }
990 return 0;
991}
992
993
994/**
995 * Given a matrix and a modifier token on the binary array, return tokens
996 * that _mesa_fetch_state() [program.c] can understand.
997 *
998 * \param matrix - the matrix we are talking about
999 * \param matrix_idx - the index of the matrix we have (for texture & program matricies)
1000 * \param matrix_modifier - the matrix modifier (trans, inv, etc)
1001 * \return 0 on sucess, 1 on failure
1002 */
1003static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001004parse_matrix (GLcontext * ctx, const GLubyte ** inst, struct arb_program *Program,
Jouk Jansen40322e12004-04-05 08:50:36 +00001005 GLint * matrix, GLint * matrix_idx, GLint * matrix_modifier)
1006{
1007 GLubyte mat = *(*inst)++;
1008
1009 *matrix_idx = 0;
1010
1011 switch (mat) {
1012 case MATRIX_MODELVIEW:
Brian65319522007-02-21 11:08:21 -07001013 *matrix = STATE_MODELVIEW_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001014 *matrix_idx = parse_integer (inst, Program);
1015 if (*matrix_idx > 0) {
Brian Paula088f162006-09-05 23:08:51 +00001016 program_error(ctx, Program->Position,
1017 "ARB_vertex_blend not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001018 return 1;
1019 }
1020 break;
1021
1022 case MATRIX_PROJECTION:
Brian65319522007-02-21 11:08:21 -07001023 *matrix = STATE_PROJECTION_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001024 break;
1025
1026 case MATRIX_MVP:
Brian65319522007-02-21 11:08:21 -07001027 *matrix = STATE_MVP_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001028 break;
1029
1030 case MATRIX_TEXTURE:
Brian65319522007-02-21 11:08:21 -07001031 *matrix = STATE_TEXTURE_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001032 *matrix_idx = parse_integer (inst, Program);
1033 if (*matrix_idx >= (GLint) ctx->Const.MaxTextureUnits) {
Brian Paula088f162006-09-05 23:08:51 +00001034 program_error(ctx, Program->Position, "Invalid Texture Unit");
1035 /* bad *matrix_id */
Jouk Jansen40322e12004-04-05 08:50:36 +00001036 return 1;
1037 }
1038 break;
1039
1040 /* This is not currently supported (ARB_matrix_palette) */
1041 case MATRIX_PALETTE:
1042 *matrix_idx = parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001043 program_error(ctx, Program->Position,
1044 "ARB_matrix_palette not supported");
Jouk Jansen40322e12004-04-05 08:50:36 +00001045 return 1;
1046 break;
1047
1048 case MATRIX_PROGRAM:
Brian65319522007-02-21 11:08:21 -07001049 *matrix = STATE_PROGRAM_MATRIX;
Jouk Jansen40322e12004-04-05 08:50:36 +00001050 *matrix_idx = parse_integer (inst, Program);
1051 if (*matrix_idx >= (GLint) ctx->Const.MaxProgramMatrices) {
Brian Paula088f162006-09-05 23:08:51 +00001052 program_error(ctx, Program->Position, "Invalid Program Matrix");
1053 /* bad *matrix_idx */
Jouk Jansen40322e12004-04-05 08:50:36 +00001054 return 1;
1055 }
1056 break;
1057 }
1058
1059 switch (*(*inst)++) {
1060 case MATRIX_MODIFIER_IDENTITY:
1061 *matrix_modifier = 0;
1062 break;
1063 case MATRIX_MODIFIER_INVERSE:
1064 *matrix_modifier = STATE_MATRIX_INVERSE;
1065 break;
1066 case MATRIX_MODIFIER_TRANSPOSE:
1067 *matrix_modifier = STATE_MATRIX_TRANSPOSE;
1068 break;
1069 case MATRIX_MODIFIER_INVTRANS:
1070 *matrix_modifier = STATE_MATRIX_INVTRANS;
1071 break;
1072 }
1073
1074 return 0;
1075}
1076
1077
1078/**
1079 * This parses a state string (rather, the binary version of it) into
1080 * a 6-token sequence as described in _mesa_fetch_state() [program.c]
1081 *
1082 * \param inst - the start in the binary arry to start working from
1083 * \param state_tokens - the storage for the 6-token state description
1084 * \return - 0 on sucess, 1 on error
1085 */
1086static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001087parse_state_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001088 struct arb_program *Program, GLint * state_tokens)
1089{
1090 switch (*(*inst)++) {
1091 case STATE_MATERIAL_PARSER:
1092 state_tokens[0] = STATE_MATERIAL;
1093 state_tokens[1] = parse_face_type (inst);
1094 switch (*(*inst)++) {
1095 case MATERIAL_AMBIENT:
1096 state_tokens[2] = STATE_AMBIENT;
1097 break;
1098 case MATERIAL_DIFFUSE:
1099 state_tokens[2] = STATE_DIFFUSE;
1100 break;
1101 case MATERIAL_SPECULAR:
1102 state_tokens[2] = STATE_SPECULAR;
1103 break;
1104 case MATERIAL_EMISSION:
1105 state_tokens[2] = STATE_EMISSION;
1106 break;
1107 case MATERIAL_SHININESS:
1108 state_tokens[2] = STATE_SHININESS;
1109 break;
1110 }
1111 break;
1112
1113 case STATE_LIGHT_PARSER:
1114 state_tokens[0] = STATE_LIGHT;
1115 state_tokens[1] = parse_integer (inst, Program);
1116
1117 /* Check the value of state_tokens[1] against the # of lights */
1118 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001119 program_error(ctx, Program->Position, "Invalid Light Number");
1120 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001121 return 1;
1122 }
1123
1124 switch (*(*inst)++) {
1125 case LIGHT_AMBIENT:
1126 state_tokens[2] = STATE_AMBIENT;
1127 break;
1128 case LIGHT_DIFFUSE:
1129 state_tokens[2] = STATE_DIFFUSE;
1130 break;
1131 case LIGHT_SPECULAR:
1132 state_tokens[2] = STATE_SPECULAR;
1133 break;
1134 case LIGHT_POSITION:
1135 state_tokens[2] = STATE_POSITION;
1136 break;
1137 case LIGHT_ATTENUATION:
1138 state_tokens[2] = STATE_ATTENUATION;
1139 break;
1140 case LIGHT_HALF:
Brianf958aab2007-02-21 15:23:11 -07001141 state_tokens[2] = STATE_HALF_VECTOR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001142 break;
1143 case LIGHT_SPOT_DIRECTION:
1144 state_tokens[2] = STATE_SPOT_DIRECTION;
1145 break;
1146 }
1147 break;
1148
1149 case STATE_LIGHT_MODEL:
1150 switch (*(*inst)++) {
1151 case LIGHT_MODEL_AMBIENT:
1152 state_tokens[0] = STATE_LIGHTMODEL_AMBIENT;
1153 break;
1154 case LIGHT_MODEL_SCENECOLOR:
1155 state_tokens[0] = STATE_LIGHTMODEL_SCENECOLOR;
1156 state_tokens[1] = parse_face_type (inst);
1157 break;
1158 }
1159 break;
1160
1161 case STATE_LIGHT_PROD:
1162 state_tokens[0] = STATE_LIGHTPROD;
1163 state_tokens[1] = parse_integer (inst, Program);
1164
1165 /* Check the value of state_tokens[1] against the # of lights */
1166 if (state_tokens[1] >= (GLint) ctx->Const.MaxLights) {
Brian Paula088f162006-09-05 23:08:51 +00001167 program_error(ctx, Program->Position, "Invalid Light Number");
1168 /* bad state_tokens[1] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001169 return 1;
1170 }
1171
1172 state_tokens[2] = parse_face_type (inst);
1173 switch (*(*inst)++) {
1174 case LIGHT_PROD_AMBIENT:
1175 state_tokens[3] = STATE_AMBIENT;
1176 break;
1177 case LIGHT_PROD_DIFFUSE:
1178 state_tokens[3] = STATE_DIFFUSE;
1179 break;
1180 case LIGHT_PROD_SPECULAR:
1181 state_tokens[3] = STATE_SPECULAR;
1182 break;
1183 }
1184 break;
1185
1186
1187 case STATE_FOG:
1188 switch (*(*inst)++) {
1189 case FOG_COLOR:
Brian65319522007-02-21 11:08:21 -07001190 state_tokens[0] = STATE_FOG;
1191 state_tokens[1] = STATE_FOG_COLOR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001192 break;
1193 case FOG_PARAMS:
Brian65319522007-02-21 11:08:21 -07001194 state_tokens[0] = STATE_FOG;
1195 state_tokens[1] = STATE_FOG_PARAMS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001196 break;
1197 }
1198 break;
1199
1200 case STATE_TEX_ENV:
1201 state_tokens[1] = parse_integer (inst, Program);
1202 switch (*(*inst)++) {
1203 case TEX_ENV_COLOR:
1204 state_tokens[0] = STATE_TEXENV_COLOR;
1205 break;
1206 }
1207 break;
1208
1209 case STATE_TEX_GEN:
1210 {
1211 GLuint type, coord;
1212
1213 state_tokens[0] = STATE_TEXGEN;
1214 /*state_tokens[1] = parse_integer (inst, Program);*/ /* Texture Unit */
1215
1216 if (parse_texcoord_num (ctx, inst, Program, &coord))
1217 return 1;
1218 state_tokens[1] = coord;
1219
1220 /* EYE or OBJECT */
1221 type = *(*inst++);
1222
1223 /* 0 - s, 1 - t, 2 - r, 3 - q */
1224 coord = *(*inst++);
1225
1226 if (type == TEX_GEN_EYE) {
1227 switch (coord) {
1228 case COMPONENT_X:
1229 state_tokens[2] = STATE_TEXGEN_EYE_S;
1230 break;
1231 case COMPONENT_Y:
1232 state_tokens[2] = STATE_TEXGEN_EYE_T;
1233 break;
1234 case COMPONENT_Z:
1235 state_tokens[2] = STATE_TEXGEN_EYE_R;
1236 break;
1237 case COMPONENT_W:
1238 state_tokens[2] = STATE_TEXGEN_EYE_Q;
1239 break;
1240 }
1241 }
1242 else {
1243 switch (coord) {
1244 case COMPONENT_X:
1245 state_tokens[2] = STATE_TEXGEN_OBJECT_S;
1246 break;
1247 case COMPONENT_Y:
1248 state_tokens[2] = STATE_TEXGEN_OBJECT_T;
1249 break;
1250 case COMPONENT_Z:
1251 state_tokens[2] = STATE_TEXGEN_OBJECT_R;
1252 break;
1253 case COMPONENT_W:
1254 state_tokens[2] = STATE_TEXGEN_OBJECT_Q;
1255 break;
1256 }
1257 }
1258 }
1259 break;
1260
1261 case STATE_DEPTH:
1262 switch (*(*inst)++) {
1263 case DEPTH_RANGE:
1264 state_tokens[0] = STATE_DEPTH_RANGE;
1265 break;
1266 }
1267 break;
1268
1269 case STATE_CLIP_PLANE:
1270 state_tokens[0] = STATE_CLIPPLANE;
1271 state_tokens[1] = parse_integer (inst, Program);
1272 if (parse_clipplane_num (ctx, inst, Program, &state_tokens[1]))
1273 return 1;
1274 break;
1275
1276 case STATE_POINT:
1277 switch (*(*inst++)) {
1278 case POINT_SIZE:
Brian776bc9c2007-02-22 09:29:46 -07001279 state_tokens[0] = STATE_POINT_SIZE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001280 break;
1281
1282 case POINT_ATTENUATION:
Brian776bc9c2007-02-22 09:29:46 -07001283 state_tokens[0] = STATE_POINT_ATTENUATION;
Jouk Jansen40322e12004-04-05 08:50:36 +00001284 break;
1285 }
1286 break;
1287
1288 /* XXX: I think this is the correct format for a matrix row */
1289 case STATE_MATRIX_ROWS:
Jouk Jansen40322e12004-04-05 08:50:36 +00001290 if (parse_matrix
Brian65319522007-02-21 11:08:21 -07001291 (ctx, inst, Program, &state_tokens[0], &state_tokens[1],
1292 &state_tokens[4]))
Jouk Jansen40322e12004-04-05 08:50:36 +00001293 return 1;
1294
Brian65319522007-02-21 11:08:21 -07001295 state_tokens[2] = parse_integer (inst, Program); /* The first row to grab */
Jouk Jansen40322e12004-04-05 08:50:36 +00001296
1297 if ((**inst) != 0) { /* Either the last row, 0 */
Brian65319522007-02-21 11:08:21 -07001298 state_tokens[3] = parse_integer (inst, Program);
1299 if (state_tokens[3] < state_tokens[2]) {
Brian Paula088f162006-09-05 23:08:51 +00001300 program_error(ctx, Program->Position,
1301 "Second matrix index less than the first");
1302 /* state_tokens[4] vs. state_tokens[3] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001303 return 1;
1304 }
1305 }
1306 else {
Brian65319522007-02-21 11:08:21 -07001307 state_tokens[3] = state_tokens[2];
Jouk Jansen40322e12004-04-05 08:50:36 +00001308 (*inst)++;
1309 }
1310 break;
1311 }
1312
1313 return 0;
1314}
1315
1316/**
1317 * This parses a state string (rather, the binary version of it) into
1318 * a 6-token similar for the state fetching code in program.c
1319 *
1320 * One might ask, why fetch these parameters into just like you fetch
1321 * state when they are already stored in other places?
1322 *
1323 * Because of array offsets -> We can stick env/local parameters in the
1324 * middle of a parameter array and then index someplace into the array
1325 * when we execute.
1326 *
1327 * One optimization might be to only do this for the cases where the
1328 * env/local parameters end up inside of an array, and leave the
1329 * single parameters (or arrays of pure env/local pareameters) in their
1330 * respective register files.
1331 *
1332 * For ENV parameters, the format is:
1333 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1334 * state_tokens[1] = STATE_ENV
1335 * state_tokens[2] = the parameter index
1336 *
1337 * for LOCAL parameters, the format is:
1338 * state_tokens[0] = STATE_FRAGMENT_PROGRAM / STATE_VERTEX_PROGRAM
1339 * state_tokens[1] = STATE_LOCAL
1340 * state_tokens[2] = the parameter index
1341 *
1342 * \param inst - the start in the binary arry to start working from
1343 * \param state_tokens - the storage for the 6-token state description
1344 * \return - 0 on sucess, 1 on failure
1345 */
1346static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001347parse_program_single_item (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001348 struct arb_program *Program, GLint * state_tokens)
1349{
1350 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1351 state_tokens[0] = STATE_FRAGMENT_PROGRAM;
1352 else
1353 state_tokens[0] = STATE_VERTEX_PROGRAM;
1354
1355
1356 switch (*(*inst)++) {
1357 case PROGRAM_PARAM_ENV:
1358 state_tokens[1] = STATE_ENV;
1359 state_tokens[2] = parse_integer (inst, Program);
1360
1361 /* Check state_tokens[2] against the number of ENV parameters available */
1362 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001363 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001364 ||
1365 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001366 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxEnvParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001367 program_error(ctx, Program->Position,
1368 "Invalid Program Env Parameter");
1369 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001370 return 1;
1371 }
1372
1373 break;
1374
1375 case PROGRAM_PARAM_LOCAL:
1376 state_tokens[1] = STATE_LOCAL;
1377 state_tokens[2] = parse_integer (inst, Program);
1378
1379 /* Check state_tokens[2] against the number of LOCAL parameters available */
1380 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001381 (state_tokens[2] >= (GLint) ctx->Const.FragmentProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001382 ||
1383 ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
Brian Paul05051032005-11-01 04:36:33 +00001384 (state_tokens[2] >= (GLint) ctx->Const.VertexProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001385 program_error(ctx, Program->Position,
1386 "Invalid Program Local Parameter");
1387 /* bad state_tokens[2] */
Jouk Jansen40322e12004-04-05 08:50:36 +00001388 return 1;
1389 }
1390 break;
1391 }
1392
1393 return 0;
1394}
1395
1396/**
1397 * For ARB_vertex_program, programs are not allowed to use both an explicit
1398 * vertex attribute and a generic vertex attribute corresponding to the same
1399 * state. See section 2.14.3.1 of the GL_ARB_vertex_program spec.
1400 *
1401 * This will walk our var_cache and make sure that nobody does anything fishy.
1402 *
1403 * \return 0 on sucess, 1 on error
1404 */
1405static GLuint
1406generic_attrib_check(struct var_cache *vc_head)
1407{
1408 int a;
1409 struct var_cache *curr;
1410 GLboolean explicitAttrib[MAX_VERTEX_PROGRAM_ATTRIBS],
1411 genericAttrib[MAX_VERTEX_PROGRAM_ATTRIBS];
1412
1413 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1414 explicitAttrib[a] = GL_FALSE;
1415 genericAttrib[a] = GL_FALSE;
1416 }
1417
1418 curr = vc_head;
1419 while (curr) {
1420 if (curr->type == vt_attrib) {
1421 if (curr->attrib_is_generic)
Brian Paul18e7c5c2005-10-30 21:46:00 +00001422 genericAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001423 else
Brian Paul18e7c5c2005-10-30 21:46:00 +00001424 explicitAttrib[ curr->attrib_binding ] = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00001425 }
1426
1427 curr = curr->next;
1428 }
1429
1430 for (a=0; a<MAX_VERTEX_PROGRAM_ATTRIBS; a++) {
1431 if ((explicitAttrib[a]) && (genericAttrib[a]))
1432 return 1;
1433 }
1434
1435 return 0;
1436}
1437
1438/**
1439 * This will handle the binding side of an ATTRIB var declaration
1440 *
Brian Paul18e7c5c2005-10-30 21:46:00 +00001441 * \param inputReg returns the input register index, one of the
1442 * VERT_ATTRIB_* or FRAG_ATTRIB_* values.
Brian Paula088f162006-09-05 23:08:51 +00001443 * \return returns 0 on success, 1 on error
Jouk Jansen40322e12004-04-05 08:50:36 +00001444 */
1445static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001446parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst,
Brian Paul18e7c5c2005-10-30 21:46:00 +00001447 struct arb_program *Program,
1448 GLuint *inputReg, GLuint *is_generic)
Jouk Jansen40322e12004-04-05 08:50:36 +00001449{
Jouk Jansen40322e12004-04-05 08:50:36 +00001450 GLint err = 0;
1451
1452 *is_generic = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001453
Jouk Jansen40322e12004-04-05 08:50:36 +00001454 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1455 switch (*(*inst)++) {
1456 case FRAGMENT_ATTRIB_COLOR:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001457 {
1458 GLint coord;
1459 err = parse_color_type (ctx, inst, Program, &coord);
1460 *inputReg = FRAG_ATTRIB_COL0 + coord;
1461 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001462 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001463 case FRAGMENT_ATTRIB_TEXCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001464 {
Brian8fa6f732007-02-01 09:24:41 -07001465 GLuint texcoord = 0;
Brian Paul18e7c5c2005-10-30 21:46:00 +00001466 err = parse_texcoord_num (ctx, inst, Program, &texcoord);
1467 *inputReg = FRAG_ATTRIB_TEX0 + texcoord;
1468 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001469 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001470 case FRAGMENT_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001471 *inputReg = FRAG_ATTRIB_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001472 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001473 case FRAGMENT_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001474 *inputReg = FRAG_ATTRIB_WPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001475 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00001476 default:
1477 err = 1;
1478 break;
1479 }
1480 }
1481 else {
1482 switch (*(*inst)++) {
1483 case VERTEX_ATTRIB_POSITION:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001484 *inputReg = VERT_ATTRIB_POS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001485 break;
1486
1487 case VERTEX_ATTRIB_WEIGHT:
1488 {
1489 GLint weight;
Jouk Jansen40322e12004-04-05 08:50:36 +00001490 err = parse_weight_num (ctx, inst, Program, &weight);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001491 *inputReg = VERT_ATTRIB_WEIGHT;
Brian Paul3a557502006-09-05 23:15:29 +00001492#if 1
1493 /* hack for Warcraft (see bug 8060) */
1494 _mesa_warning(ctx, "Application error: vertex program uses 'vertex.weight' but GL_ARB_vertex_blend not supported.");
Brian Pauld9aebd82006-09-06 05:03:47 +00001495 break;
Brian Paul3a557502006-09-05 23:15:29 +00001496#else
Brian Paula088f162006-09-05 23:08:51 +00001497 program_error(ctx, Program->Position,
1498 "ARB_vertex_blend not supported");
Brian Pauld9aebd82006-09-06 05:03:47 +00001499 return 1;
Brian Paul3a557502006-09-05 23:15:29 +00001500#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00001501 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001502
1503 case VERTEX_ATTRIB_NORMAL:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001504 *inputReg = VERT_ATTRIB_NORMAL;
Jouk Jansen40322e12004-04-05 08:50:36 +00001505 break;
1506
1507 case VERTEX_ATTRIB_COLOR:
1508 {
1509 GLint color;
Jouk Jansen40322e12004-04-05 08:50:36 +00001510 err = parse_color_type (ctx, inst, Program, &color);
1511 if (color) {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001512 *inputReg = VERT_ATTRIB_COLOR1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001513 }
1514 else {
Brian Paul18e7c5c2005-10-30 21:46:00 +00001515 *inputReg = VERT_ATTRIB_COLOR0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001516 }
1517 }
1518 break;
1519
1520 case VERTEX_ATTRIB_FOGCOORD:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001521 *inputReg = VERT_ATTRIB_FOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00001522 break;
1523
1524 case VERTEX_ATTRIB_TEXCOORD:
1525 {
Brian8fa6f732007-02-01 09:24:41 -07001526 GLuint unit = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001527 err = parse_texcoord_num (ctx, inst, Program, &unit);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001528 *inputReg = VERT_ATTRIB_TEX0 + unit;
Jouk Jansen40322e12004-04-05 08:50:36 +00001529 }
1530 break;
1531
Jouk Jansen40322e12004-04-05 08:50:36 +00001532 case VERTEX_ATTRIB_MATRIXINDEX:
Brian Paul18e7c5c2005-10-30 21:46:00 +00001533 /* Not supported at this time */
1534 {
1535 const char *msg = "ARB_palette_matrix not supported";
1536 parse_integer (inst, Program);
Brian Paula088f162006-09-05 23:08:51 +00001537 program_error(ctx, Program->Position, msg);
Brian Paul18e7c5c2005-10-30 21:46:00 +00001538 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001539 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001540
1541 case VERTEX_ATTRIB_GENERIC:
1542 {
1543 GLuint attrib;
Tilman Sauerbeck6c334752006-06-28 16:26:20 +00001544 err = parse_generic_attrib_num(ctx, inst, Program, &attrib);
Brian Paula088f162006-09-05 23:08:51 +00001545 if (!err) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001546 *is_generic = 1;
Brian Paul095c6692006-04-25 00:21:32 +00001547 /* Add VERT_ATTRIB_GENERIC0 here because ARB_vertex_program's
1548 * attributes do not alias the conventional vertex
1549 * attributes.
1550 */
1551 if (attrib > 0)
1552 *inputReg = attrib + VERT_ATTRIB_GENERIC0;
Brian Paul919f6a02006-05-29 14:37:56 +00001553 else
1554 *inputReg = 0;
Jouk Jansen40322e12004-04-05 08:50:36 +00001555 }
1556 }
1557 break;
1558
1559 default:
1560 err = 1;
1561 break;
1562 }
1563 }
1564
Jouk Jansen40322e12004-04-05 08:50:36 +00001565 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00001566 program_error(ctx, Program->Position, "Bad attribute binding");
Jouk Jansen40322e12004-04-05 08:50:36 +00001567 }
1568
Brian Paulde997602005-11-12 17:53:14 +00001569 Program->Base.InputsRead |= (1 << *inputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001570
1571 return err;
1572}
1573
Brian Paul7aebaf32005-10-30 21:23:23 +00001574
Jouk Jansen40322e12004-04-05 08:50:36 +00001575/**
1576 * This translates between a binary token for an output variable type
1577 * and the mesa token for the same thing.
1578 *
Brian Paul7aebaf32005-10-30 21:23:23 +00001579 * \param inst The parsed tokens
1580 * \param outputReg Returned index/number of the output register,
Brian Paul90ebb582005-11-02 18:06:12 +00001581 * one of the VERT_RESULT_* or FRAG_RESULT_* values.
Jouk Jansen40322e12004-04-05 08:50:36 +00001582 */
1583static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001584parse_result_binding(GLcontext *ctx, const GLubyte **inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00001585 GLuint *outputReg, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00001586{
Brian Paul7aebaf32005-10-30 21:23:23 +00001587 const GLubyte token = *(*inst)++;
Jouk Jansen40322e12004-04-05 08:50:36 +00001588
Brian Paul7aebaf32005-10-30 21:23:23 +00001589 switch (token) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001590 case FRAGMENT_RESULT_COLOR:
Jouk Jansen40322e12004-04-05 08:50:36 +00001591 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001592 GLuint out_color;
1593
Brian Paulbe76b7f2004-10-04 14:40:05 +00001594 /* This gets result of the color buffer we're supposed to
Brian Paul7aebaf32005-10-30 21:23:23 +00001595 * draw into. This pertains to GL_ARB_draw_buffers.
Brian Paulbe76b7f2004-10-04 14:40:05 +00001596 */
1597 parse_output_color_num(ctx, inst, Program, &out_color);
Brian Paul7aebaf32005-10-30 21:23:23 +00001598 ASSERT(out_color < MAX_DRAW_BUFFERS);
Brian Paul90ebb582005-11-02 18:06:12 +00001599 *outputReg = FRAG_RESULT_COLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001600 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001601 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001602 /* for vtx programs, this is VERTEX_RESULT_POSITION */
1603 *outputReg = VERT_RESULT_HPOS;
Jouk Jansen40322e12004-04-05 08:50:36 +00001604 }
1605 break;
1606
1607 case FRAGMENT_RESULT_DEPTH:
Jouk Jansen40322e12004-04-05 08:50:36 +00001608 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001609 /* for frag programs, this is FRAGMENT_RESULT_DEPTH */
Brian Paul90ebb582005-11-02 18:06:12 +00001610 *outputReg = FRAG_RESULT_DEPR;
Jouk Jansen40322e12004-04-05 08:50:36 +00001611 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001612 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001613 /* for vtx programs, this is VERTEX_RESULT_COLOR */
Jouk Jansen40322e12004-04-05 08:50:36 +00001614 GLint color_type;
1615 GLuint face_type = parse_face_type(inst);
Brian Paul7aebaf32005-10-30 21:23:23 +00001616 GLint err = parse_color_type(ctx, inst, Program, &color_type);
1617 if (err)
1618 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001619
Jouk Jansen40322e12004-04-05 08:50:36 +00001620 if (face_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001621 /* back face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001622 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001623 *outputReg = VERT_RESULT_BFC1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001624 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001625 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001626 *outputReg = VERT_RESULT_BFC0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001627 }
1628 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001629 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001630 /* front face */
Jouk Jansen40322e12004-04-05 08:50:36 +00001631 if (color_type) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001632 *outputReg = VERT_RESULT_COL1; /* secondary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001633 }
1634 /* primary color */
1635 else {
Brian Paul7aebaf32005-10-30 21:23:23 +00001636 *outputReg = VERT_RESULT_COL0; /* primary color */
Jouk Jansen40322e12004-04-05 08:50:36 +00001637 }
1638 }
1639 }
1640 break;
1641
1642 case VERTEX_RESULT_FOGCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001643 *outputReg = VERT_RESULT_FOGC;
Jouk Jansen40322e12004-04-05 08:50:36 +00001644 break;
1645
1646 case VERTEX_RESULT_POINTSIZE:
Brian Paul7aebaf32005-10-30 21:23:23 +00001647 *outputReg = VERT_RESULT_PSIZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00001648 break;
1649
1650 case VERTEX_RESULT_TEXCOORD:
Brian Paul7aebaf32005-10-30 21:23:23 +00001651 {
1652 GLuint unit;
1653 if (parse_texcoord_num (ctx, inst, Program, &unit))
1654 return 1;
1655 *outputReg = VERT_RESULT_TEX0 + unit;
1656 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001657 break;
1658 }
1659
Brian Paulde997602005-11-12 17:53:14 +00001660 Program->Base.OutputsWritten |= (1 << *outputReg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001661
1662 return 0;
1663}
1664
Brian Paul7aebaf32005-10-30 21:23:23 +00001665
Jouk Jansen40322e12004-04-05 08:50:36 +00001666/**
1667 * This handles the declaration of ATTRIB variables
1668 *
1669 * XXX: Still needs
1670 * parse_vert_attrib_binding(), or something like that
1671 *
1672 * \return 0 on sucess, 1 on error
1673 */
1674static GLint
Brian Paula088f162006-09-05 23:08:51 +00001675parse_attrib (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001676 struct arb_program *Program)
1677{
1678 GLuint found;
1679 char *error_msg;
1680 struct var_cache *attrib_var;
1681
1682 attrib_var = parse_string (inst, vc_head, Program, &found);
1683 Program->Position = parse_position (inst);
1684 if (found) {
1685 error_msg = (char *)
1686 _mesa_malloc (_mesa_strlen ((char *) attrib_var->name) + 40);
1687 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1688 attrib_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001689 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001690 _mesa_free (error_msg);
1691 return 1;
1692 }
1693
1694 attrib_var->type = vt_attrib;
1695
Brian Paul7aebaf32005-10-30 21:23:23 +00001696 if (parse_attrib_binding(ctx, inst, Program, &attrib_var->attrib_binding,
Brian Paul7aebaf32005-10-30 21:23:23 +00001697 &attrib_var->attrib_is_generic))
1698 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001699
Brian Paul7aebaf32005-10-30 21:23:23 +00001700 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00001701 program_error(ctx, Program->Position,
1702 "Cannot use both a generic vertex attribute "
1703 "and a specific attribute of the same type");
Brian Paul7aebaf32005-10-30 21:23:23 +00001704 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00001705 }
1706
1707 Program->Base.NumAttributes++;
1708 return 0;
1709}
1710
1711/**
1712 * \param use -- TRUE if we're called when declaring implicit parameters,
1713 * FALSE if we're declaraing variables. This has to do with
1714 * if we get a signed or unsigned float for scalar constants
1715 */
1716static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001717parse_param_elements (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00001718 struct var_cache *param_var,
1719 struct arb_program *Program, GLboolean use)
1720{
1721 GLint idx;
Brian Paul7aebaf32005-10-30 21:23:23 +00001722 GLuint err = 0;
Brianb7978af2007-01-09 19:17:17 -07001723 GLint state_tokens[STATE_LENGTH];
Jouk Jansen40322e12004-04-05 08:50:36 +00001724 GLfloat const_values[4];
1725
Jouk Jansen40322e12004-04-05 08:50:36 +00001726 switch (*(*inst)++) {
1727 case PARAM_STATE_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001728 if (parse_state_single_item (ctx, inst, Program, state_tokens))
1729 return 1;
1730
1731 /* If we adding STATE_MATRIX that has multiple rows, we need to
1732 * unroll it and call _mesa_add_state_reference() for each row
1733 */
Brian65319522007-02-21 11:08:21 -07001734 if ((state_tokens[0] == STATE_MODELVIEW_MATRIX ||
1735 state_tokens[0] == STATE_PROJECTION_MATRIX ||
1736 state_tokens[0] == STATE_MVP_MATRIX ||
1737 state_tokens[0] == STATE_TEXTURE_MATRIX ||
1738 state_tokens[0] == STATE_PROGRAM_MATRIX)
1739 && (state_tokens[2] != state_tokens[3])) {
Jouk Jansen40322e12004-04-05 08:50:36 +00001740 GLint row;
Brian65319522007-02-21 11:08:21 -07001741 const GLint first_row = state_tokens[2];
1742 const GLint last_row = state_tokens[3];
Jouk Jansen40322e12004-04-05 08:50:36 +00001743
1744 for (row = first_row; row <= last_row; row++) {
Brian65319522007-02-21 11:08:21 -07001745 state_tokens[2] = state_tokens[3] = row;
Jouk Jansen40322e12004-04-05 08:50:36 +00001746
Brian Paulde997602005-11-12 17:53:14 +00001747 idx = _mesa_add_state_reference(Program->Base.Parameters,
1748 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001749 if (param_var->param_binding_begin == ~0U)
1750 param_var->param_binding_begin = idx;
1751 param_var->param_binding_length++;
1752 Program->Base.NumParameters++;
1753 }
1754 }
1755 else {
Brian Paulde997602005-11-12 17:53:14 +00001756 idx = _mesa_add_state_reference(Program->Base.Parameters,
1757 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001758 if (param_var->param_binding_begin == ~0U)
1759 param_var->param_binding_begin = idx;
1760 param_var->param_binding_length++;
1761 Program->Base.NumParameters++;
1762 }
1763 break;
1764
1765 case PARAM_PROGRAM_ELEMENT:
Jouk Jansen40322e12004-04-05 08:50:36 +00001766 if (parse_program_single_item (ctx, inst, Program, state_tokens))
1767 return 1;
Brian Paulde997602005-11-12 17:53:14 +00001768 idx = _mesa_add_state_reference (Program->Base.Parameters, state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001769 if (param_var->param_binding_begin == ~0U)
1770 param_var->param_binding_begin = idx;
1771 param_var->param_binding_length++;
1772 Program->Base.NumParameters++;
1773
1774 /* Check if there is more: 0 -> we're done, else its an integer */
1775 if (**inst) {
1776 GLuint out_of_range, new_idx;
1777 GLuint start_idx = state_tokens[2] + 1;
1778 GLuint end_idx = parse_integer (inst, Program);
1779
1780 out_of_range = 0;
1781 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
1782 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001783 && (end_idx >= ctx->Const.FragmentProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001784 || ((state_tokens[1] == STATE_LOCAL)
1785 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001786 ctx->Const.FragmentProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001787 out_of_range = 1;
1788 }
1789 else {
1790 if (((state_tokens[1] == STATE_ENV)
Brian Paul05051032005-11-01 04:36:33 +00001791 && (end_idx >= ctx->Const.VertexProgram.MaxEnvParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001792 || ((state_tokens[1] == STATE_LOCAL)
1793 && (end_idx >=
Brian Paul05051032005-11-01 04:36:33 +00001794 ctx->Const.VertexProgram.MaxLocalParams)))
Jouk Jansen40322e12004-04-05 08:50:36 +00001795 out_of_range = 1;
1796 }
1797 if (out_of_range) {
Brian Paula088f162006-09-05 23:08:51 +00001798 program_error(ctx, Program->Position,
1799 "Invalid Program Parameter"); /*end_idx*/
Jouk Jansen40322e12004-04-05 08:50:36 +00001800 return 1;
1801 }
1802
1803 for (new_idx = start_idx; new_idx <= end_idx; new_idx++) {
1804 state_tokens[2] = new_idx;
Brian Paulde997602005-11-12 17:53:14 +00001805 idx = _mesa_add_state_reference(Program->Base.Parameters,
1806 state_tokens);
Jouk Jansen40322e12004-04-05 08:50:36 +00001807 param_var->param_binding_length++;
1808 Program->Base.NumParameters++;
1809 }
1810 }
Brian Paul7aebaf32005-10-30 21:23:23 +00001811 else {
1812 (*inst)++;
1813 }
Jouk Jansen40322e12004-04-05 08:50:36 +00001814 break;
1815
1816 case PARAM_CONSTANT:
1817 parse_constant (inst, const_values, Program, use);
Brian Paulde997602005-11-12 17:53:14 +00001818 idx = _mesa_add_named_constant(Program->Base.Parameters,
1819 (char *) param_var->name,
Brian Paul0c6723a2006-11-15 23:38:02 +00001820 const_values, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00001821 if (param_var->param_binding_begin == ~0U)
1822 param_var->param_binding_begin = idx;
1823 param_var->param_binding_length++;
1824 Program->Base.NumParameters++;
1825 break;
1826
1827 default:
Brian Paula088f162006-09-05 23:08:51 +00001828 program_error(ctx, Program->Position,
1829 "Unexpected token (in parse_param_elements())");
Jouk Jansen40322e12004-04-05 08:50:36 +00001830 return 1;
1831 }
1832
1833 /* Make sure we haven't blown past our parameter limits */
1834 if (((Program->Base.Target == GL_VERTEX_PROGRAM_ARB) &&
1835 (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001836 ctx->Const.VertexProgram.MaxLocalParams))
Jouk Jansen40322e12004-04-05 08:50:36 +00001837 || ((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
1838 && (Program->Base.NumParameters >=
Brian Paul05051032005-11-01 04:36:33 +00001839 ctx->Const.FragmentProgram.MaxLocalParams))) {
Brian Paula088f162006-09-05 23:08:51 +00001840 program_error(ctx, Program->Position, "Too many parameter variables");
Jouk Jansen40322e12004-04-05 08:50:36 +00001841 return 1;
1842 }
1843
1844 return err;
1845}
1846
Brian Paul7aebaf32005-10-30 21:23:23 +00001847
Jouk Jansen40322e12004-04-05 08:50:36 +00001848/**
1849 * This picks out PARAM program parameter bindings.
1850 *
1851 * XXX: This needs to be stressed & tested
1852 *
1853 * \return 0 on sucess, 1 on error
1854 */
1855static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001856parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001857 struct arb_program *Program)
1858{
Brian Paulbd997cd2004-07-20 21:12:56 +00001859 GLuint found, err;
1860 GLint specified_length;
Jouk Jansen40322e12004-04-05 08:50:36 +00001861 struct var_cache *param_var;
1862
1863 err = 0;
1864 param_var = parse_string (inst, vc_head, Program, &found);
1865 Program->Position = parse_position (inst);
1866
1867 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001868 char *error_msg = (char *)
1869 _mesa_malloc (_mesa_strlen ((char *) param_var->name) + 40);
Jouk Jansen40322e12004-04-05 08:50:36 +00001870 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1871 param_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001872 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001873 _mesa_free (error_msg);
1874 return 1;
1875 }
1876
1877 specified_length = parse_integer (inst, Program);
1878
1879 if (specified_length < 0) {
Brian Paula088f162006-09-05 23:08:51 +00001880 program_error(ctx, Program->Position, "Negative parameter array length");
Jouk Jansen40322e12004-04-05 08:50:36 +00001881 return 1;
1882 }
1883
1884 param_var->type = vt_param;
1885 param_var->param_binding_length = 0;
1886
1887 /* Right now, everything is shoved into the main state register file.
1888 *
1889 * In the future, it would be nice to leave things ENV/LOCAL params
1890 * in their respective register files, if possible
1891 */
1892 param_var->param_binding_type = PROGRAM_STATE_VAR;
1893
1894 /* Remember to:
1895 * * - add each guy to the parameter list
1896 * * - increment the param_var->param_binding_len
1897 * * - store the param_var->param_binding_begin for the first one
1898 * * - compare the actual len to the specified len at the end
1899 */
1900 while (**inst != PARAM_NULL) {
1901 if (parse_param_elements (ctx, inst, param_var, Program, GL_FALSE))
1902 return 1;
1903 }
1904
1905 /* Test array length here! */
1906 if (specified_length) {
Brian Paula6c423d2004-08-25 15:59:48 +00001907 if (specified_length != (int)param_var->param_binding_length) {
Brian Paula088f162006-09-05 23:08:51 +00001908 program_error(ctx, Program->Position,
1909 "Declared parameter array length does not match parameter list");
Jouk Jansen40322e12004-04-05 08:50:36 +00001910 }
1911 }
1912
1913 (*inst)++;
1914
1915 return 0;
1916}
1917
1918/**
1919 *
1920 */
1921static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001922parse_param_use (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001923 struct arb_program *Program, struct var_cache **new_var)
1924{
1925 struct var_cache *param_var;
1926
1927 /* First, insert a dummy entry into the var_cache */
1928 var_cache_create (&param_var);
Brian Paul6a769d92006-04-28 15:42:15 +00001929 param_var->name = (const GLubyte *) " ";
Jouk Jansen40322e12004-04-05 08:50:36 +00001930 param_var->type = vt_param;
1931
1932 param_var->param_binding_length = 0;
1933 /* Don't fill in binding_begin; We use the default value of -1
1934 * to tell if its already initialized, elsewhere.
1935 *
1936 * param_var->param_binding_begin = 0;
1937 */
1938 param_var->param_binding_type = PROGRAM_STATE_VAR;
1939
1940 var_cache_append (vc_head, param_var);
1941
1942 /* Then fill it with juicy parameter goodness */
1943 if (parse_param_elements (ctx, inst, param_var, Program, GL_TRUE))
1944 return 1;
1945
1946 *new_var = param_var;
1947
1948 return 0;
1949}
1950
1951
1952/**
1953 * This handles the declaration of TEMP variables
1954 *
1955 * \return 0 on sucess, 1 on error
1956 */
1957static GLuint
Brian Paula088f162006-09-05 23:08:51 +00001958parse_temp (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00001959 struct arb_program *Program)
1960{
1961 GLuint found;
1962 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00001963
1964 while (**inst != 0) {
1965 temp_var = parse_string (inst, vc_head, Program, &found);
1966 Program->Position = parse_position (inst);
1967 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00001968 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00001969 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
1970 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
1971 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00001972 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00001973 _mesa_free (error_msg);
1974 return 1;
1975 }
1976
1977 temp_var->type = vt_temp;
1978
1979 if (((Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) &&
1980 (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001981 ctx->Const.FragmentProgram.MaxTemps))
Jouk Jansen40322e12004-04-05 08:50:36 +00001982 || ((Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
1983 && (Program->Base.NumTemporaries >=
Brian Paul05051032005-11-01 04:36:33 +00001984 ctx->Const.VertexProgram.MaxTemps))) {
Brian Paula088f162006-09-05 23:08:51 +00001985 program_error(ctx, Program->Position,
1986 "Too many TEMP variables declared");
Jouk Jansen40322e12004-04-05 08:50:36 +00001987 return 1;
1988 }
1989
1990 temp_var->temp_binding = Program->Base.NumTemporaries;
1991 Program->Base.NumTemporaries++;
1992 }
1993 (*inst)++;
1994
1995 return 0;
1996}
1997
1998/**
1999 * This handles variables of the OUTPUT variety
2000 *
2001 * \return 0 on sucess, 1 on error
2002 */
2003static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002004parse_output (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002005 struct arb_program *Program)
2006{
2007 GLuint found;
2008 struct var_cache *output_var;
Brian Paul7aebaf32005-10-30 21:23:23 +00002009 GLuint err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002010
2011 output_var = parse_string (inst, vc_head, Program, &found);
2012 Program->Position = parse_position (inst);
2013 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002014 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002015 _mesa_malloc (_mesa_strlen ((char *) output_var->name) + 40);
2016 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2017 output_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002018 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002019 _mesa_free (error_msg);
2020 return 1;
2021 }
2022
2023 output_var->type = vt_output;
Brian Paul7aebaf32005-10-30 21:23:23 +00002024
2025 err = parse_result_binding(ctx, inst, &output_var->output_binding, Program);
2026 return err;
Jouk Jansen40322e12004-04-05 08:50:36 +00002027}
2028
2029/**
2030 * This handles variables of the ALIAS kind
2031 *
2032 * \return 0 on sucess, 1 on error
2033 */
2034static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002035parse_alias (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002036 struct arb_program *Program)
2037{
2038 GLuint found;
2039 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002040
2041 temp_var = parse_string (inst, vc_head, Program, &found);
2042 Program->Position = parse_position (inst);
2043
2044 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002045 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002046 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2047 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2048 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002049 program_error(ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002050 _mesa_free (error_msg);
2051 return 1;
2052 }
2053
2054 temp_var->type = vt_alias;
2055 temp_var->alias_binding = parse_string (inst, vc_head, Program, &found);
2056 Program->Position = parse_position (inst);
2057
2058 if (!found)
2059 {
Brian Paul7aebaf32005-10-30 21:23:23 +00002060 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002061 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2062 _mesa_sprintf (error_msg, "Alias value %s is not defined",
2063 temp_var->alias_binding->name);
Brian Paula088f162006-09-05 23:08:51 +00002064 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002065 _mesa_free (error_msg);
2066 return 1;
2067 }
2068
2069 return 0;
2070}
2071
2072/**
2073 * This handles variables of the ADDRESS kind
2074 *
2075 * \return 0 on sucess, 1 on error
2076 */
2077static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002078parse_address (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002079 struct arb_program *Program)
2080{
2081 GLuint found;
2082 struct var_cache *temp_var;
Jouk Jansen40322e12004-04-05 08:50:36 +00002083
2084 while (**inst != 0) {
2085 temp_var = parse_string (inst, vc_head, Program, &found);
2086 Program->Position = parse_position (inst);
2087 if (found) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002088 char *error_msg = (char *)
Jouk Jansen40322e12004-04-05 08:50:36 +00002089 _mesa_malloc (_mesa_strlen ((char *) temp_var->name) + 40);
2090 _mesa_sprintf (error_msg, "Duplicate Varible Declaration: %s",
2091 temp_var->name);
Brian Paula088f162006-09-05 23:08:51 +00002092 program_error (ctx, Program->Position, error_msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002093 _mesa_free (error_msg);
2094 return 1;
2095 }
2096
2097 temp_var->type = vt_address;
2098
2099 if (Program->Base.NumAddressRegs >=
Brian Paul05051032005-11-01 04:36:33 +00002100 ctx->Const.VertexProgram.MaxAddressRegs) {
Brian Paul7aebaf32005-10-30 21:23:23 +00002101 const char *msg = "Too many ADDRESS variables declared";
Brian Paula088f162006-09-05 23:08:51 +00002102 program_error(ctx, Program->Position, msg);
Jouk Jansen40322e12004-04-05 08:50:36 +00002103 return 1;
2104 }
2105
2106 temp_var->address_binding = Program->Base.NumAddressRegs;
2107 Program->Base.NumAddressRegs++;
2108 }
2109 (*inst)++;
2110
2111 return 0;
2112}
2113
2114/**
2115 * Parse a program declaration
2116 *
2117 * \return 0 on sucess, 1 on error
2118 */
2119static GLint
Brian Paula088f162006-09-05 23:08:51 +00002120parse_declaration (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
Jouk Jansen40322e12004-04-05 08:50:36 +00002121 struct arb_program *Program)
2122{
2123 GLint err = 0;
2124
2125 switch (*(*inst)++) {
2126 case ADDRESS:
2127 err = parse_address (ctx, inst, vc_head, Program);
2128 break;
2129
2130 case ALIAS:
2131 err = parse_alias (ctx, inst, vc_head, Program);
2132 break;
2133
2134 case ATTRIB:
2135 err = parse_attrib (ctx, inst, vc_head, Program);
2136 break;
2137
2138 case OUTPUT:
2139 err = parse_output (ctx, inst, vc_head, Program);
2140 break;
2141
2142 case PARAM:
2143 err = parse_param (ctx, inst, vc_head, Program);
2144 break;
2145
2146 case TEMP:
2147 err = parse_temp (ctx, inst, vc_head, Program);
2148 break;
2149 }
2150
2151 return err;
2152}
2153
2154/**
Brian Paul7aebaf32005-10-30 21:23:23 +00002155 * Handle the parsing out of a masked destination register, either for a
2156 * vertex or fragment program.
Jouk Jansen40322e12004-04-05 08:50:36 +00002157 *
2158 * If we are a vertex program, make sure we don't write to
Brian Paul7aebaf32005-10-30 21:23:23 +00002159 * result.position if we have specified that the program is
Jouk Jansen40322e12004-04-05 08:50:36 +00002160 * position invariant
2161 *
2162 * \param File - The register file we write to
2163 * \param Index - The register index we write to
2164 * \param WriteMask - The mask controlling which components we write (1->write)
2165 *
2166 * \return 0 on sucess, 1 on error
2167 */
2168static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002169parse_masked_dst_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002170 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7aebaf32005-10-30 21:23:23 +00002171 enum register_file *File, GLuint *Index, GLint *WriteMask)
Jouk Jansen40322e12004-04-05 08:50:36 +00002172{
Brian Paul7aebaf32005-10-30 21:23:23 +00002173 GLuint tmp, result;
Jouk Jansen40322e12004-04-05 08:50:36 +00002174 struct var_cache *dst;
2175
2176 /* We either have a result register specified, or a
2177 * variable that may or may not be writable
2178 */
2179 switch (*(*inst)++) {
2180 case REGISTER_RESULT:
Brian Paul7aebaf32005-10-30 21:23:23 +00002181 if (parse_result_binding(ctx, inst, Index, Program))
Jouk Jansen40322e12004-04-05 08:50:36 +00002182 return 1;
2183 *File = PROGRAM_OUTPUT;
2184 break;
2185
2186 case REGISTER_ESTABLISHED_NAME:
2187 dst = parse_string (inst, vc_head, Program, &result);
2188 Program->Position = parse_position (inst);
2189
2190 /* If the name has never been added to our symbol table, we're hosed */
2191 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002192 program_error(ctx, Program->Position, "0: Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002193 return 1;
2194 }
2195
2196 switch (dst->type) {
2197 case vt_output:
2198 *File = PROGRAM_OUTPUT;
Brian Paul7aebaf32005-10-30 21:23:23 +00002199 *Index = dst->output_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002200 break;
2201
2202 case vt_temp:
2203 *File = PROGRAM_TEMPORARY;
2204 *Index = dst->temp_binding;
2205 break;
2206
2207 /* If the var type is not vt_output or vt_temp, no go */
2208 default:
Brian Paula088f162006-09-05 23:08:51 +00002209 program_error(ctx, Program->Position,
2210 "Destination register is read only");
Jouk Jansen40322e12004-04-05 08:50:36 +00002211 return 1;
2212 }
2213 break;
2214
2215 default:
Brian Paula088f162006-09-05 23:08:51 +00002216 program_error(ctx, Program->Position,
2217 "Unexpected opcode in parse_masked_dst_reg()");
Jouk Jansen40322e12004-04-05 08:50:36 +00002218 return 1;
2219 }
2220
2221
2222 /* Position invariance test */
2223 /* This test is done now in syntax portion - when position invariance OPTION
2224 is specified, "result.position" rule is disabled so there is no way
2225 to write the position
2226 */
2227 /*if ((Program->HintPositionInvariant) && (*File == PROGRAM_OUTPUT) &&
2228 (*Index == 0)) {
Brian Paula088f162006-09-05 23:08:51 +00002229 program_error(ctx, Program->Position,
Jouk Jansen40322e12004-04-05 08:50:36 +00002230 "Vertex program specified position invariance and wrote vertex position");
2231 }*/
2232
2233 /* And then the mask.
2234 * w,a -> bit 0
2235 * z,b -> bit 1
2236 * y,g -> bit 2
2237 * x,r -> bit 3
Keith Whitwell7c26b612005-04-21 14:46:57 +00002238 *
2239 * ==> Need to reverse the order of bits for this!
Jouk Jansen40322e12004-04-05 08:50:36 +00002240 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002241 tmp = (GLint) *(*inst)++;
2242 *WriteMask = (((tmp>>3) & 0x1) |
2243 ((tmp>>1) & 0x2) |
2244 ((tmp<<1) & 0x4) |
2245 ((tmp<<3) & 0x8));
Jouk Jansen40322e12004-04-05 08:50:36 +00002246
2247 return 0;
2248}
2249
2250
2251/**
2252 * Handle the parsing of a address register
2253 *
2254 * \param Index - The register index we write to
2255 *
2256 * \return 0 on sucess, 1 on error
2257 */
2258static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002259parse_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002260 struct var_cache **vc_head,
2261 struct arb_program *Program, GLint * Index)
2262{
2263 struct var_cache *dst;
2264 GLuint result;
Aapo Tahkola6fc864b2006-03-22 21:29:15 +00002265
2266 *Index = 0; /* XXX */
Jouk Jansen40322e12004-04-05 08:50:36 +00002267
2268 dst = parse_string (inst, vc_head, Program, &result);
2269 Program->Position = parse_position (inst);
2270
2271 /* If the name has never been added to our symbol table, we're hosed */
2272 if (!result) {
Brian Paula088f162006-09-05 23:08:51 +00002273 program_error(ctx, Program->Position, "Undefined variable");
Jouk Jansen40322e12004-04-05 08:50:36 +00002274 return 1;
2275 }
2276
2277 if (dst->type != vt_address) {
Brian Paula088f162006-09-05 23:08:51 +00002278 program_error(ctx, Program->Position, "Variable is not of type ADDRESS");
Jouk Jansen40322e12004-04-05 08:50:36 +00002279 return 1;
2280 }
2281
2282 return 0;
2283}
2284
Brian Paul8e8fa632005-07-01 02:03:33 +00002285#if 0 /* unused */
Jouk Jansen40322e12004-04-05 08:50:36 +00002286/**
2287 * Handle the parsing out of a masked address register
2288 *
2289 * \param Index - The register index we write to
2290 * \param WriteMask - The mask controlling which components we write (1->write)
2291 *
2292 * \return 0 on sucess, 1 on error
2293 */
2294static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002295parse_masked_address_reg (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002296 struct var_cache **vc_head,
2297 struct arb_program *Program, GLint * Index,
2298 GLboolean * WriteMask)
2299{
2300 if (parse_address_reg (ctx, inst, vc_head, Program, Index))
2301 return 1;
2302
2303 /* This should be 0x8 */
2304 (*inst)++;
2305
2306 /* Writemask of .x is implied */
2307 WriteMask[0] = 1;
2308 WriteMask[1] = WriteMask[2] = WriteMask[3] = 0;
2309
2310 return 0;
2311}
Brian Paul8e8fa632005-07-01 02:03:33 +00002312#endif
Jouk Jansen40322e12004-04-05 08:50:36 +00002313
2314/**
2315 * Parse out a swizzle mask.
2316 *
Brian Paul32df89e2005-10-29 18:26:43 +00002317 * Basically convert COMPONENT_X/Y/Z/W to SWIZZLE_X/Y/Z/W
Jouk Jansen40322e12004-04-05 08:50:36 +00002318 *
2319 * The len parameter allows us to grab 4 components for a vector
2320 * swizzle, or just 1 component for a scalar src register selection
2321 */
Brian Paul32df89e2005-10-29 18:26:43 +00002322static void
Brian Paula088f162006-09-05 23:08:51 +00002323parse_swizzle_mask(const GLubyte ** inst, GLubyte *swizzle, GLint len)
Jouk Jansen40322e12004-04-05 08:50:36 +00002324{
Brian Paul32df89e2005-10-29 18:26:43 +00002325 GLint i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002326
Brian Paul32df89e2005-10-29 18:26:43 +00002327 for (i = 0; i < 4; i++)
2328 swizzle[i] = i;
Jouk Jansen40322e12004-04-05 08:50:36 +00002329
Brian Paul32df89e2005-10-29 18:26:43 +00002330 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00002331 switch (*(*inst)++) {
2332 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002333 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002334 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002335 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002336 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002337 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002338 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002339 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002340 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00002341 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002342 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002343 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002344 default:
2345 _mesa_problem(NULL, "bad component in parse_swizzle_mask()");
2346 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002347 }
2348 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002349}
2350
Jouk Jansen40322e12004-04-05 08:50:36 +00002351
Brian Paul32df89e2005-10-29 18:26:43 +00002352/**
2353 * Parse an extended swizzle mask which is a sequence of
2354 * four x/y/z/w/0/1 tokens.
2355 * \return swizzle four swizzle values
2356 * \return negateMask four element bitfield
2357 */
2358static void
Brian Paula088f162006-09-05 23:08:51 +00002359parse_extended_swizzle_mask(const GLubyte **inst, GLubyte swizzle[4],
Brian Paul32df89e2005-10-29 18:26:43 +00002360 GLubyte *negateMask)
2361{
2362 GLint i;
2363
2364 *negateMask = 0x0;
2365 for (i = 0; i < 4; i++) {
2366 GLubyte swz;
2367 if (parse_sign(inst) == -1)
2368 *negateMask |= (1 << i);
Jouk Jansen40322e12004-04-05 08:50:36 +00002369
2370 swz = *(*inst)++;
2371
2372 switch (swz) {
2373 case COMPONENT_0:
Brian Paul32df89e2005-10-29 18:26:43 +00002374 swizzle[i] = SWIZZLE_ZERO;
Jouk Jansen40322e12004-04-05 08:50:36 +00002375 break;
2376 case COMPONENT_1:
Brian Paul32df89e2005-10-29 18:26:43 +00002377 swizzle[i] = SWIZZLE_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002378 break;
2379 case COMPONENT_X:
Brian Paul32df89e2005-10-29 18:26:43 +00002380 swizzle[i] = SWIZZLE_X;
Jouk Jansen40322e12004-04-05 08:50:36 +00002381 break;
2382 case COMPONENT_Y:
Brian Paul32df89e2005-10-29 18:26:43 +00002383 swizzle[i] = SWIZZLE_Y;
Jouk Jansen40322e12004-04-05 08:50:36 +00002384 break;
2385 case COMPONENT_Z:
Brian Paul32df89e2005-10-29 18:26:43 +00002386 swizzle[i] = SWIZZLE_Z;
Jouk Jansen40322e12004-04-05 08:50:36 +00002387 break;
2388 case COMPONENT_W:
Brian Paul32df89e2005-10-29 18:26:43 +00002389 swizzle[i] = SWIZZLE_W;
Jouk Jansen40322e12004-04-05 08:50:36 +00002390 break;
Brian Paul32df89e2005-10-29 18:26:43 +00002391 default:
2392 _mesa_problem(NULL, "bad case in parse_extended_swizzle_mask()");
2393 return;
Jouk Jansen40322e12004-04-05 08:50:36 +00002394 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002395 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002396}
2397
2398
2399static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002400parse_src_reg (GLcontext * ctx, const GLubyte ** inst,
2401 struct var_cache **vc_head,
Brian Paul7aebaf32005-10-30 21:23:23 +00002402 struct arb_program *Program,
2403 enum register_file * File, GLint * Index,
Jouk Jansen40322e12004-04-05 08:50:36 +00002404 GLboolean *IsRelOffset )
2405{
2406 struct var_cache *src;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002407 GLuint binding, is_generic, found;
Brian Paulbd997cd2004-07-20 21:12:56 +00002408 GLint offset;
Jouk Jansen40322e12004-04-05 08:50:36 +00002409
Keith Whitwell7c26b612005-04-21 14:46:57 +00002410 *IsRelOffset = 0;
2411
Jouk Jansen40322e12004-04-05 08:50:36 +00002412 /* And the binding for the src */
2413 switch (*(*inst)++) {
2414 case REGISTER_ATTRIB:
2415 if (parse_attrib_binding
Brian Paul18e7c5c2005-10-30 21:46:00 +00002416 (ctx, inst, Program, &binding, &is_generic))
Jouk Jansen40322e12004-04-05 08:50:36 +00002417 return 1;
2418 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002419 *Index = binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002420
2421 /* We need to insert a dummy variable into the var_cache so we can
2422 * catch generic vertex attrib aliasing errors
2423 */
2424 var_cache_create(&src);
2425 src->type = vt_attrib;
Brian Paul6a769d92006-04-28 15:42:15 +00002426 src->name = (const GLubyte *) "Dummy Attrib Variable";
Brian Paul18e7c5c2005-10-30 21:46:00 +00002427 src->attrib_binding = binding;
2428 src->attrib_is_generic = is_generic;
Jouk Jansen40322e12004-04-05 08:50:36 +00002429 var_cache_append(vc_head, src);
2430 if (generic_attrib_check(*vc_head)) {
Brian Paula088f162006-09-05 23:08:51 +00002431 program_error(ctx, Program->Position,
2432 "Cannot use both a generic vertex attribute "
2433 "and a specific attribute of the same type");
Jouk Jansen40322e12004-04-05 08:50:36 +00002434 return 1;
2435 }
2436 break;
2437
2438 case REGISTER_PARAM:
2439 switch (**inst) {
2440 case PARAM_ARRAY_ELEMENT:
2441 (*inst)++;
2442 src = parse_string (inst, vc_head, Program, &found);
2443 Program->Position = parse_position (inst);
2444
2445 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002446 program_error(ctx, Program->Position,
2447 "2: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002448 return 1;
2449 }
2450
Brian Paul95801792005-12-06 15:41:43 +00002451 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002452
2453 switch (*(*inst)++) {
2454 case ARRAY_INDEX_ABSOLUTE:
2455 offset = parse_integer (inst, Program);
2456
2457 if ((offset < 0)
Brian Paula6c423d2004-08-25 15:59:48 +00002458 || (offset >= (int)src->param_binding_length)) {
Brian Paula088f162006-09-05 23:08:51 +00002459 program_error(ctx, Program->Position,
2460 "Index out of range");
2461 /* offset, src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002462 return 1;
2463 }
2464
2465 *Index = src->param_binding_begin + offset;
2466 break;
2467
2468 case ARRAY_INDEX_RELATIVE:
2469 {
2470 GLint addr_reg_idx, rel_off;
2471
2472 /* First, grab the address regiseter */
2473 if (parse_address_reg (ctx, inst, vc_head, Program, &addr_reg_idx))
2474 return 1;
2475
2476 /* And the .x */
2477 ((*inst)++);
2478 ((*inst)++);
2479 ((*inst)++);
2480 ((*inst)++);
2481
2482 /* Then the relative offset */
2483 if (parse_relative_offset(ctx, inst, Program, &rel_off)) return 1;
2484
2485 /* And store it properly */
2486 *Index = src->param_binding_begin + rel_off;
2487 *IsRelOffset = 1;
2488 }
2489 break;
2490 }
2491 break;
2492
2493 default:
Jouk Jansen40322e12004-04-05 08:50:36 +00002494 if (parse_param_use (ctx, inst, vc_head, Program, &src))
2495 return 1;
2496
Brian Paul95801792005-12-06 15:41:43 +00002497 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002498 *Index = src->param_binding_begin;
2499 break;
2500 }
2501 break;
2502
2503 case REGISTER_ESTABLISHED_NAME:
Jouk Jansen40322e12004-04-05 08:50:36 +00002504 src = parse_string (inst, vc_head, Program, &found);
2505 Program->Position = parse_position (inst);
2506
2507 /* If the name has never been added to our symbol table, we're hosed */
2508 if (!found) {
Brian Paula088f162006-09-05 23:08:51 +00002509 program_error(ctx, Program->Position,
2510 "3: Undefined variable"); /* src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002511 return 1;
2512 }
2513
2514 switch (src->type) {
2515 case vt_attrib:
2516 *File = PROGRAM_INPUT;
Brian Paul18e7c5c2005-10-30 21:46:00 +00002517 *Index = src->attrib_binding;
Jouk Jansen40322e12004-04-05 08:50:36 +00002518 break;
2519
2520 /* XXX: We have to handle offsets someplace in here! -- or are those above? */
2521 case vt_param:
Brian Paul95801792005-12-06 15:41:43 +00002522 *File = (enum register_file) src->param_binding_type;
Jouk Jansen40322e12004-04-05 08:50:36 +00002523 *Index = src->param_binding_begin;
2524 break;
2525
2526 case vt_temp:
2527 *File = PROGRAM_TEMPORARY;
2528 *Index = src->temp_binding;
2529 break;
2530
2531 /* If the var type is vt_output no go */
2532 default:
Brian Paula088f162006-09-05 23:08:51 +00002533 program_error(ctx, Program->Position,
2534 "destination register is read only");
2535 /* bad src->name */
Jouk Jansen40322e12004-04-05 08:50:36 +00002536 return 1;
2537 }
2538 break;
2539
2540 default:
Brian Paula088f162006-09-05 23:08:51 +00002541 program_error(ctx, Program->Position,
2542 "Unknown token in parse_src_reg");
Jouk Jansen40322e12004-04-05 08:50:36 +00002543 return 1;
2544 }
2545
2546 return 0;
2547}
2548
2549/**
Brian Paul18e7c5c2005-10-30 21:46:00 +00002550 * Parse fragment program vector source register.
Jouk Jansen40322e12004-04-05 08:50:36 +00002551 */
2552static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002553parse_fp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00002554 struct var_cache **vc_head,
2555 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00002556 struct prog_src_register *reg)
Jouk Jansen40322e12004-04-05 08:50:36 +00002557{
Brian Paul7aebaf32005-10-30 21:23:23 +00002558 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00002559 GLint index;
2560 GLboolean negate;
2561 GLubyte swizzle[4];
2562 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002563
Jouk Jansen40322e12004-04-05 08:50:36 +00002564 /* Grab the sign */
Brian Paul32df89e2005-10-29 18:26:43 +00002565 negate = (parse_sign (inst) == -1) ? 0xf : 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00002566
2567 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00002568 if (parse_src_reg(ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Jouk Jansen40322e12004-04-05 08:50:36 +00002569 return 1;
2570
2571 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002572 parse_swizzle_mask(inst, swizzle, 4);
Jouk Jansen40322e12004-04-05 08:50:36 +00002573
Brian Paul32df89e2005-10-29 18:26:43 +00002574 reg->File = file;
2575 reg->Index = index;
Brian Paul32df89e2005-10-29 18:26:43 +00002576 reg->NegateBase = negate;
2577 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00002578 return 0;
2579}
2580
Jouk Jansen40322e12004-04-05 08:50:36 +00002581
Brian Paulb7fc1c32006-08-30 23:38:03 +00002582/**
2583 * Parse fragment program destination register.
2584 * \return 1 if error, 0 if no error.
2585 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002586static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002587parse_fp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00002588 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002589 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002590{
Brian Paul7aebaf32005-10-30 21:23:23 +00002591 GLint mask;
2592 GLuint idx;
2593 enum register_file file;
2594
Keith Whitwell7c26b612005-04-21 14:46:57 +00002595 if (parse_masked_dst_reg (ctx, inst, vc_head, Program, &file, &idx, &mask))
Jouk Jansen40322e12004-04-05 08:50:36 +00002596 return 1;
2597
Keith Whitwell7c26b612005-04-21 14:46:57 +00002598 reg->File = file;
2599 reg->Index = idx;
2600 reg->WriteMask = mask;
2601 return 0;
2602}
2603
2604
Brian Paul7aebaf32005-10-30 21:23:23 +00002605/**
2606 * Parse fragment program scalar src register.
Brian Paulb7fc1c32006-08-30 23:38:03 +00002607 * \return 1 if error, 0 if no error.
Brian Paul7aebaf32005-10-30 21:23:23 +00002608 */
Keith Whitwell7c26b612005-04-21 14:46:57 +00002609static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002610parse_fp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00002611 struct var_cache **vc_head,
2612 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002613 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00002614{
Brian Paul7aebaf32005-10-30 21:23:23 +00002615 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002616 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00002617 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002618 GLubyte Swizzle[4];
2619 GLboolean IsRelOffset;
2620
2621 /* Grab the sign */
2622 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
2623
2624 /* And the src reg */
2625 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
2626 return 1;
2627
2628 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00002629 parse_swizzle_mask(inst, Swizzle, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002630
Keith Whitwell7c26b612005-04-21 14:46:57 +00002631 reg->File = File;
2632 reg->Index = Index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002633 reg->NegateBase = Negate;
2634 reg->Swizzle = (Swizzle[0] << 0);
2635
Jouk Jansen40322e12004-04-05 08:50:36 +00002636 return 0;
2637}
2638
Keith Whitwell7c26b612005-04-21 14:46:57 +00002639
Jouk Jansen40322e12004-04-05 08:50:36 +00002640/**
2641 * This is a big mother that handles getting opcodes into the instruction
2642 * and handling the src & dst registers for fragment program instructions
Brian Paulb7fc1c32006-08-30 23:38:03 +00002643 * \return 1 if error, 0 if no error
Jouk Jansen40322e12004-04-05 08:50:36 +00002644 */
2645static GLuint
Brian Paula088f162006-09-05 23:08:51 +00002646parse_fp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00002647 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00002648 struct prog_instruction *fp)
Jouk Jansen40322e12004-04-05 08:50:36 +00002649{
Keith Whitwell7c26b612005-04-21 14:46:57 +00002650 GLint a;
Jouk Jansen40322e12004-04-05 08:50:36 +00002651 GLuint texcoord;
2652 GLubyte instClass, type, code;
2653 GLboolean rel;
2654
Brian Pauld6272e02006-10-29 18:03:16 +00002655 _mesa_init_instructions(fp, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00002656
2657 /* Record the position in the program string for debugging */
2658 fp->StringPos = Program->Position;
2659
2660 /* OP_ALU_INST or OP_TEX_INST */
2661 instClass = *(*inst)++;
2662
2663 /* OP_ALU_{VECTOR, SCALAR, BINSC, BIN, TRI, SWZ},
2664 * OP_TEX_{SAMPLE, KIL}
2665 */
2666 type = *(*inst)++;
2667
2668 /* The actual opcode name */
2669 code = *(*inst)++;
2670
2671 /* Increment the correct count */
2672 switch (instClass) {
2673 case OP_ALU_INST:
2674 Program->NumAluInstructions++;
2675 break;
2676 case OP_TEX_INST:
2677 Program->NumTexInstructions++;
2678 break;
2679 }
2680
Jouk Jansen40322e12004-04-05 08:50:36 +00002681 switch (type) {
2682 case OP_ALU_VECTOR:
2683 switch (code) {
2684 case OP_ABS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002685 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002686 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00002687 fp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002688 break;
2689
2690 case OP_FLR_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002691 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002692 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00002693 fp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00002694 break;
2695
2696 case OP_FRC_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002697 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002698 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00002699 fp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00002700 break;
2701
2702 case OP_LIT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002703 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002704 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00002705 fp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002706 break;
2707
2708 case OP_MOV_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002709 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002710 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00002711 fp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00002712 break;
2713 }
2714
Keith Whitwell7c26b612005-04-21 14:46:57 +00002715 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002716 return 1;
2717
Keith Whitwell7c26b612005-04-21 14:46:57 +00002718 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002719 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002720 break;
2721
2722 case OP_ALU_SCALAR:
2723 switch (code) {
2724 case OP_COS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002725 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002726 case OP_COS:
Brian Paul7e807512005-11-05 17:10:45 +00002727 fp->Opcode = OPCODE_COS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002728 break;
2729
2730 case OP_EX2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002731 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002732 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00002733 fp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002734 break;
2735
2736 case OP_LG2_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002737 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002738 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00002739 fp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00002740 break;
2741
2742 case OP_RCP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002743 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002744 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00002745 fp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002746 break;
2747
2748 case OP_RSQ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002749 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002750 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00002751 fp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002752 break;
2753
2754 case OP_SIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002755 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002756 case OP_SIN:
Brian Paul7e807512005-11-05 17:10:45 +00002757 fp->Opcode = OPCODE_SIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002758 break;
2759
2760 case OP_SCS_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002761 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002762 case OP_SCS:
2763
Brian Paul7e807512005-11-05 17:10:45 +00002764 fp->Opcode = OPCODE_SCS;
Jouk Jansen40322e12004-04-05 08:50:36 +00002765 break;
2766 }
2767
Keith Whitwell7c26b612005-04-21 14:46:57 +00002768 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002769 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002770
2771 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002772 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002773 break;
2774
2775 case OP_ALU_BINSC:
2776 switch (code) {
2777 case OP_POW_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002778 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002779 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00002780 fp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00002781 break;
2782 }
2783
Keith Whitwell7c26b612005-04-21 14:46:57 +00002784 if (parse_fp_dst_reg(ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002785 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002786
Jouk Jansen40322e12004-04-05 08:50:36 +00002787 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002788 if (parse_fp_scalar_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002789 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002790 }
2791 break;
2792
2793
2794 case OP_ALU_BIN:
2795 switch (code) {
2796 case OP_ADD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002797 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002798 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00002799 fp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002800 break;
2801
2802 case OP_DP3_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002803 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002804 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00002805 fp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00002806 break;
2807
2808 case OP_DP4_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002809 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002810 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00002811 fp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00002812 break;
2813
2814 case OP_DPH_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002815 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002816 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00002817 fp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00002818 break;
2819
2820 case OP_DST_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002821 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002822 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00002823 fp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00002824 break;
2825
2826 case OP_MAX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002827 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002828 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00002829 fp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002830 break;
2831
2832 case OP_MIN_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002833 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002834 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00002835 fp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00002836 break;
2837
2838 case OP_MUL_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002839 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002840 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00002841 fp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00002842 break;
2843
2844 case OP_SGE_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002845 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002846 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00002847 fp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002848 break;
2849
2850 case OP_SLT_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002851 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002852 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00002853 fp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00002854 break;
2855
2856 case OP_SUB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002857 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002858 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00002859 fp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002860 break;
2861
2862 case OP_XPD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002863 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002864 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00002865 fp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002866 break;
2867 }
2868
Keith Whitwell7c26b612005-04-21 14:46:57 +00002869 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002870 return 1;
2871 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002872 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2873 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002874 }
2875 break;
2876
2877 case OP_ALU_TRI:
2878 switch (code) {
2879 case OP_CMP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002880 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002881 case OP_CMP:
Brian Paul7e807512005-11-05 17:10:45 +00002882 fp->Opcode = OPCODE_CMP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002883 break;
2884
2885 case OP_LRP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002886 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002887 case OP_LRP:
Brian Paul7e807512005-11-05 17:10:45 +00002888 fp->Opcode = OPCODE_LRP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002889 break;
2890
2891 case OP_MAD_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002892 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002893 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00002894 fp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00002895 break;
2896 }
2897
Keith Whitwell7c26b612005-04-21 14:46:57 +00002898 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002899 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002900
Jouk Jansen40322e12004-04-05 08:50:36 +00002901 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00002902 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[a]))
2903 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002904 }
2905 break;
2906
2907 case OP_ALU_SWZ:
2908 switch (code) {
2909 case OP_SWZ_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002910 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002911 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00002912 fp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00002913 break;
2914 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00002915 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002916 return 1;
2917
Keith Whitwell7c26b612005-04-21 14:46:57 +00002918 {
Brian Paul32df89e2005-10-29 18:26:43 +00002919 GLubyte swizzle[4];
Brian Paul54cfe692005-10-21 15:22:36 +00002920 GLubyte negateMask;
Brian Paul7aebaf32005-10-30 21:23:23 +00002921 enum register_file file;
2922 GLint index;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002923
Brian Paul32df89e2005-10-29 18:26:43 +00002924 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &rel))
Keith Whitwell7c26b612005-04-21 14:46:57 +00002925 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00002926 parse_extended_swizzle_mask(inst, swizzle, &negateMask);
2927 fp->SrcReg[0].File = file;
2928 fp->SrcReg[0].Index = index;
Brian Paul54cfe692005-10-21 15:22:36 +00002929 fp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00002930 fp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
2931 swizzle[1],
2932 swizzle[2],
2933 swizzle[3]);
Keith Whitwell7c26b612005-04-21 14:46:57 +00002934 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002935 break;
2936
2937 case OP_TEX_SAMPLE:
2938 switch (code) {
2939 case OP_TEX_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002940 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002941 case OP_TEX:
Brian Paul7e807512005-11-05 17:10:45 +00002942 fp->Opcode = OPCODE_TEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002943 break;
2944
2945 case OP_TXP_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002946 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002947 case OP_TXP:
Brian Paul7e807512005-11-05 17:10:45 +00002948 fp->Opcode = OPCODE_TXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00002949 break;
2950
2951 case OP_TXB_SAT:
Brian Paule31ac052005-11-20 17:52:40 +00002952 fp->SaturateMode = SATURATE_ZERO_ONE;
Jouk Jansen40322e12004-04-05 08:50:36 +00002953 case OP_TXB:
Brian Paul7e807512005-11-05 17:10:45 +00002954 fp->Opcode = OPCODE_TXB;
Jouk Jansen40322e12004-04-05 08:50:36 +00002955 break;
2956 }
2957
Keith Whitwell7c26b612005-04-21 14:46:57 +00002958 if (parse_fp_dst_reg (ctx, inst, vc_head, Program, &fp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00002959 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00002960
2961 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00002962 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00002963
2964 /* texImageUnit */
2965 if (parse_texcoord_num (ctx, inst, Program, &texcoord))
2966 return 1;
2967 fp->TexSrcUnit = texcoord;
2968
2969 /* texTarget */
2970 switch (*(*inst)++) {
2971 case TEXTARGET_1D:
Brian Paul7e807512005-11-05 17:10:45 +00002972 fp->TexSrcTarget = TEXTURE_1D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002973 break;
2974 case TEXTARGET_2D:
Brian Paul7e807512005-11-05 17:10:45 +00002975 fp->TexSrcTarget = TEXTURE_2D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002976 break;
2977 case TEXTARGET_3D:
Brian Paul7e807512005-11-05 17:10:45 +00002978 fp->TexSrcTarget = TEXTURE_3D_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002979 break;
2980 case TEXTARGET_RECT:
Brian Paul7e807512005-11-05 17:10:45 +00002981 fp->TexSrcTarget = TEXTURE_RECT_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002982 break;
2983 case TEXTARGET_CUBE:
Brian Paul7e807512005-11-05 17:10:45 +00002984 fp->TexSrcTarget = TEXTURE_CUBE_INDEX;
Jouk Jansen40322e12004-04-05 08:50:36 +00002985 break;
2986 case TEXTARGET_SHADOW1D:
2987 case TEXTARGET_SHADOW2D:
2988 case TEXTARGET_SHADOWRECT:
2989 /* TODO ARB_fragment_program_shadow code */
2990 break;
2991 }
Brian Paulb7fc1c32006-08-30 23:38:03 +00002992 Program->TexturesUsed[texcoord] |= (1 << fp->TexSrcTarget);
2993 /* Check that both "2D" and "CUBE" (for example) aren't both used */
2994 if (_mesa_bitcount(Program->TexturesUsed[texcoord]) > 1) {
Brian Paula088f162006-09-05 23:08:51 +00002995 program_error(ctx, Program->Position,
2996 "multiple targets used on one texture image unit");
Brian Paulb7fc1c32006-08-30 23:38:03 +00002997 return 1;
2998 }
Jouk Jansen40322e12004-04-05 08:50:36 +00002999 break;
3000
3001 case OP_TEX_KIL:
Keith Whitwellc3626a92005-11-01 17:25:49 +00003002 Program->UsesKill = 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003003 if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003004 return 1;
Brian Paul7e807512005-11-05 17:10:45 +00003005 fp->Opcode = OPCODE_KIL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003006 break;
Brian Paulb7fc1c32006-08-30 23:38:03 +00003007 default:
3008 _mesa_problem(ctx, "bad type 0x%x in parse_fp_instruction()", type);
3009 return 1;
Jouk Jansen40322e12004-04-05 08:50:36 +00003010 }
3011
3012 return 0;
3013}
3014
Keith Whitwell7c26b612005-04-21 14:46:57 +00003015static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003016parse_vp_dst_reg(GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003017 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003018 struct prog_dst_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003019{
Brian Paul7aebaf32005-10-30 21:23:23 +00003020 GLint mask;
3021 GLuint idx;
3022 enum register_file file;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003023
3024 if (parse_masked_dst_reg(ctx, inst, vc_head, Program, &file, &idx, &mask))
3025 return 1;
3026
3027 reg->File = file;
3028 reg->Index = idx;
3029 reg->WriteMask = mask;
3030 return 0;
3031}
3032
3033/**
3034 * Handle the parsing out of a masked address register
3035 *
3036 * \param Index - The register index we write to
3037 * \param WriteMask - The mask controlling which components we write (1->write)
3038 *
3039 * \return 0 on sucess, 1 on error
3040 */
3041static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003042parse_vp_address_reg (GLcontext * ctx, const GLubyte ** inst,
Keith Whitwell7c26b612005-04-21 14:46:57 +00003043 struct var_cache **vc_head,
3044 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003045 struct prog_dst_register *reg)
Keith Whitwell7c26b612005-04-21 14:46:57 +00003046{
3047 GLint idx;
3048
3049 if (parse_address_reg (ctx, inst, vc_head, Program, &idx))
3050 return 1;
3051
3052 /* This should be 0x8 */
3053 (*inst)++;
3054
3055 reg->File = PROGRAM_ADDRESS;
3056 reg->Index = idx;
3057
3058 /* Writemask of .x is implied */
3059 reg->WriteMask = 0x1;
3060 return 0;
3061}
3062
3063/**
Brian Paul7aebaf32005-10-30 21:23:23 +00003064 * Parse vertex program vector source register.
Keith Whitwell7c26b612005-04-21 14:46:57 +00003065 */
3066static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003067parse_vp_vector_src_reg(GLcontext * ctx, const GLubyte ** inst,
Brian Paul32df89e2005-10-29 18:26:43 +00003068 struct var_cache **vc_head,
3069 struct arb_program *program,
Brian Paul7e807512005-11-05 17:10:45 +00003070 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003071{
Brian Paul7aebaf32005-10-30 21:23:23 +00003072 enum register_file file;
Brian Paul32df89e2005-10-29 18:26:43 +00003073 GLint index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003074 GLubyte negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003075 GLubyte swizzle[4];
3076 GLboolean isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003077
3078 /* Grab the sign */
Brian Paul7aebaf32005-10-30 21:23:23 +00003079 negateMask = (parse_sign (inst) == -1) ? 0xf : 0x0;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003080
3081 /* And the src reg */
Brian Paul32df89e2005-10-29 18:26:43 +00003082 if (parse_src_reg (ctx, inst, vc_head, program, &file, &index, &isRelOffset))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003083 return 1;
3084
3085 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003086 parse_swizzle_mask(inst, swizzle, 4);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003087
Brian Paul32df89e2005-10-29 18:26:43 +00003088 reg->File = file;
3089 reg->Index = index;
3090 reg->Swizzle = MAKE_SWIZZLE4(swizzle[0], swizzle[1],
3091 swizzle[2], swizzle[3]);
Brian Paul7e807512005-11-05 17:10:45 +00003092 reg->NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003093 reg->RelAddr = isRelOffset;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003094 return 0;
3095}
3096
3097
3098static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003099parse_vp_scalar_src_reg (GLcontext * ctx, const GLubyte ** inst,
Brian Paul7aebaf32005-10-30 21:23:23 +00003100 struct var_cache **vc_head,
3101 struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003102 struct prog_src_register *reg )
Keith Whitwell7c26b612005-04-21 14:46:57 +00003103{
Brian Paul7aebaf32005-10-30 21:23:23 +00003104 enum register_file File;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003105 GLint Index;
Brian Paul7aebaf32005-10-30 21:23:23 +00003106 GLubyte Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003107 GLubyte Swizzle[4];
3108 GLboolean IsRelOffset;
3109
3110 /* Grab the sign */
3111 Negate = (parse_sign (inst) == -1) ? 0x1 : 0x0;
3112
3113 /* And the src reg */
3114 if (parse_src_reg (ctx, inst, vc_head, Program, &File, &Index, &IsRelOffset))
3115 return 1;
3116
3117 /* finally, the swizzle */
Brian Paul32df89e2005-10-29 18:26:43 +00003118 parse_swizzle_mask(inst, Swizzle, 1);
Keith Whitwell7c26b612005-04-21 14:46:57 +00003119
3120 reg->File = File;
3121 reg->Index = Index;
3122 reg->Swizzle = (Swizzle[0] << 0);
Brian Paul7e807512005-11-05 17:10:45 +00003123 reg->NegateBase = Negate;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003124 reg->RelAddr = IsRelOffset;
3125 return 0;
3126}
3127
3128
Jouk Jansen40322e12004-04-05 08:50:36 +00003129/**
3130 * This is a big mother that handles getting opcodes into the instruction
3131 * and handling the src & dst registers for vertex program instructions
3132 */
3133static GLuint
Brian Paula088f162006-09-05 23:08:51 +00003134parse_vp_instruction (GLcontext * ctx, const GLubyte ** inst,
Jouk Jansen40322e12004-04-05 08:50:36 +00003135 struct var_cache **vc_head, struct arb_program *Program,
Brian Paul7e807512005-11-05 17:10:45 +00003136 struct prog_instruction *vp)
Jouk Jansen40322e12004-04-05 08:50:36 +00003137{
3138 GLint a;
3139 GLubyte type, code;
3140
3141 /* OP_ALU_{ARL, VECTOR, SCALAR, BINSC, BIN, TRI, SWZ} */
3142 type = *(*inst)++;
3143
3144 /* The actual opcode name */
3145 code = *(*inst)++;
3146
Brian Pauld6272e02006-10-29 18:03:16 +00003147 _mesa_init_instructions(vp, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003148 /* Record the position in the program string for debugging */
3149 vp->StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003150
3151 switch (type) {
3152 /* XXX: */
3153 case OP_ALU_ARL:
Brian Paul7e807512005-11-05 17:10:45 +00003154 vp->Opcode = OPCODE_ARL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003155
3156 /* Remember to set SrcReg.RelAddr; */
3157
3158 /* Get the masked address register [dst] */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003159 if (parse_vp_address_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003160 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003161
Jouk Jansen40322e12004-04-05 08:50:36 +00003162 vp->DstReg.File = PROGRAM_ADDRESS;
3163
3164 /* Get a scalar src register */
Keith Whitwell7c26b612005-04-21 14:46:57 +00003165 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003166 return 1;
3167
3168 break;
3169
3170 case OP_ALU_VECTOR:
3171 switch (code) {
3172 case OP_ABS:
Brian Paul7e807512005-11-05 17:10:45 +00003173 vp->Opcode = OPCODE_ABS;
Jouk Jansen40322e12004-04-05 08:50:36 +00003174 break;
3175 case OP_FLR:
Brian Paul7e807512005-11-05 17:10:45 +00003176 vp->Opcode = OPCODE_FLR;
Jouk Jansen40322e12004-04-05 08:50:36 +00003177 break;
3178 case OP_FRC:
Brian Paul7e807512005-11-05 17:10:45 +00003179 vp->Opcode = OPCODE_FRC;
Jouk Jansen40322e12004-04-05 08:50:36 +00003180 break;
3181 case OP_LIT:
Brian Paul7e807512005-11-05 17:10:45 +00003182 vp->Opcode = OPCODE_LIT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003183 break;
3184 case OP_MOV:
Brian Paul7e807512005-11-05 17:10:45 +00003185 vp->Opcode = OPCODE_MOV;
Jouk Jansen40322e12004-04-05 08:50:36 +00003186 break;
3187 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003188
3189 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003190 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003191
3192 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003193 return 1;
3194 break;
3195
3196 case OP_ALU_SCALAR:
3197 switch (code) {
3198 case OP_EX2:
Brian Paul7e807512005-11-05 17:10:45 +00003199 vp->Opcode = OPCODE_EX2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003200 break;
3201 case OP_EXP:
Brian Paul7e807512005-11-05 17:10:45 +00003202 vp->Opcode = OPCODE_EXP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003203 break;
3204 case OP_LG2:
Brian Paul7e807512005-11-05 17:10:45 +00003205 vp->Opcode = OPCODE_LG2;
Jouk Jansen40322e12004-04-05 08:50:36 +00003206 break;
3207 case OP_LOG:
Brian Paul7e807512005-11-05 17:10:45 +00003208 vp->Opcode = OPCODE_LOG;
Jouk Jansen40322e12004-04-05 08:50:36 +00003209 break;
3210 case OP_RCP:
Brian Paul7e807512005-11-05 17:10:45 +00003211 vp->Opcode = OPCODE_RCP;
Jouk Jansen40322e12004-04-05 08:50:36 +00003212 break;
3213 case OP_RSQ:
Brian Paul7e807512005-11-05 17:10:45 +00003214 vp->Opcode = OPCODE_RSQ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003215 break;
3216 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003217 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003218 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003219
3220 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[0]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003221 return 1;
3222 break;
3223
3224 case OP_ALU_BINSC:
3225 switch (code) {
3226 case OP_POW:
Brian Paul7e807512005-11-05 17:10:45 +00003227 vp->Opcode = OPCODE_POW;
Jouk Jansen40322e12004-04-05 08:50:36 +00003228 break;
3229 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003230 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003231 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003232
Jouk Jansen40322e12004-04-05 08:50:36 +00003233 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003234 if (parse_vp_scalar_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003235 return 1;
3236 }
3237 break;
3238
3239 case OP_ALU_BIN:
3240 switch (code) {
3241 case OP_ADD:
Brian Paul7e807512005-11-05 17:10:45 +00003242 vp->Opcode = OPCODE_ADD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003243 break;
3244 case OP_DP3:
Brian Paul7e807512005-11-05 17:10:45 +00003245 vp->Opcode = OPCODE_DP3;
Jouk Jansen40322e12004-04-05 08:50:36 +00003246 break;
3247 case OP_DP4:
Brian Paul7e807512005-11-05 17:10:45 +00003248 vp->Opcode = OPCODE_DP4;
Jouk Jansen40322e12004-04-05 08:50:36 +00003249 break;
3250 case OP_DPH:
Brian Paul7e807512005-11-05 17:10:45 +00003251 vp->Opcode = OPCODE_DPH;
Jouk Jansen40322e12004-04-05 08:50:36 +00003252 break;
3253 case OP_DST:
Brian Paul7e807512005-11-05 17:10:45 +00003254 vp->Opcode = OPCODE_DST;
Jouk Jansen40322e12004-04-05 08:50:36 +00003255 break;
3256 case OP_MAX:
Brian Paul7e807512005-11-05 17:10:45 +00003257 vp->Opcode = OPCODE_MAX;
Jouk Jansen40322e12004-04-05 08:50:36 +00003258 break;
3259 case OP_MIN:
Brian Paul7e807512005-11-05 17:10:45 +00003260 vp->Opcode = OPCODE_MIN;
Jouk Jansen40322e12004-04-05 08:50:36 +00003261 break;
3262 case OP_MUL:
Brian Paul7e807512005-11-05 17:10:45 +00003263 vp->Opcode = OPCODE_MUL;
Jouk Jansen40322e12004-04-05 08:50:36 +00003264 break;
3265 case OP_SGE:
Brian Paul7e807512005-11-05 17:10:45 +00003266 vp->Opcode = OPCODE_SGE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003267 break;
3268 case OP_SLT:
Brian Paul7e807512005-11-05 17:10:45 +00003269 vp->Opcode = OPCODE_SLT;
Jouk Jansen40322e12004-04-05 08:50:36 +00003270 break;
3271 case OP_SUB:
Brian Paul7e807512005-11-05 17:10:45 +00003272 vp->Opcode = OPCODE_SUB;
Jouk Jansen40322e12004-04-05 08:50:36 +00003273 break;
3274 case OP_XPD:
Brian Paul7e807512005-11-05 17:10:45 +00003275 vp->Opcode = OPCODE_XPD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003276 break;
3277 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003278 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003279 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003280
Jouk Jansen40322e12004-04-05 08:50:36 +00003281 for (a = 0; a < 2; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003282 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003283 return 1;
3284 }
3285 break;
3286
3287 case OP_ALU_TRI:
3288 switch (code) {
3289 case OP_MAD:
Brian Paul7e807512005-11-05 17:10:45 +00003290 vp->Opcode = OPCODE_MAD;
Jouk Jansen40322e12004-04-05 08:50:36 +00003291 break;
3292 }
3293
Keith Whitwell7c26b612005-04-21 14:46:57 +00003294 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
Jouk Jansen40322e12004-04-05 08:50:36 +00003295 return 1;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003296
Jouk Jansen40322e12004-04-05 08:50:36 +00003297 for (a = 0; a < 3; a++) {
Keith Whitwell7c26b612005-04-21 14:46:57 +00003298 if (parse_vp_vector_src_reg(ctx, inst, vc_head, Program, &vp->SrcReg[a]))
Jouk Jansen40322e12004-04-05 08:50:36 +00003299 return 1;
3300 }
3301 break;
3302
3303 case OP_ALU_SWZ:
3304 switch (code) {
3305 case OP_SWZ:
Brian Paul7e807512005-11-05 17:10:45 +00003306 vp->Opcode = OPCODE_SWZ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003307 break;
3308 }
Keith Whitwell7c26b612005-04-21 14:46:57 +00003309 {
Brian Paul32df89e2005-10-29 18:26:43 +00003310 GLubyte swizzle[4];
3311 GLubyte negateMask;
3312 GLboolean relAddr;
Brian Paul7aebaf32005-10-30 21:23:23 +00003313 enum register_file file;
3314 GLint index;
Jouk Jansen40322e12004-04-05 08:50:36 +00003315
Keith Whitwell7c26b612005-04-21 14:46:57 +00003316 if (parse_vp_dst_reg(ctx, inst, vc_head, Program, &vp->DstReg))
3317 return 1;
3318
Brian Paul32df89e2005-10-29 18:26:43 +00003319 if (parse_src_reg(ctx, inst, vc_head, Program, &file, &index, &relAddr))
Keith Whitwell7c26b612005-04-21 14:46:57 +00003320 return 1;
Brian Paul32df89e2005-10-29 18:26:43 +00003321 parse_extended_swizzle_mask (inst, swizzle, &negateMask);
3322 vp->SrcReg[0].File = file;
3323 vp->SrcReg[0].Index = index;
Brian Paul7e807512005-11-05 17:10:45 +00003324 vp->SrcReg[0].NegateBase = negateMask;
Brian Paul32df89e2005-10-29 18:26:43 +00003325 vp->SrcReg[0].Swizzle = MAKE_SWIZZLE4(swizzle[0],
3326 swizzle[1],
3327 swizzle[2],
3328 swizzle[3]);
3329 vp->SrcReg[0].RelAddr = relAddr;
Keith Whitwell7c26b612005-04-21 14:46:57 +00003330 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003331 break;
3332 }
3333 return 0;
3334}
3335
3336#if DEBUG_PARSING
3337
3338static GLvoid
Jouk Jansen40322e12004-04-05 08:50:36 +00003339debug_variables (GLcontext * ctx, struct var_cache *vc_head,
3340 struct arb_program *Program)
3341{
3342 struct var_cache *vc;
3343 GLint a, b;
3344
Brianb618ac82007-02-22 09:39:25 -07003345 fprintf (stderr, "debug_variables, vc_head: %p\n", (void*) vc_head);
Jouk Jansen40322e12004-04-05 08:50:36 +00003346
3347 /* First of all, print out the contents of the var_cache */
3348 vc = vc_head;
3349 while (vc) {
Brianb618ac82007-02-22 09:39:25 -07003350 fprintf (stderr, "[%p]\n", (void*) vc);
Jouk Jansen40322e12004-04-05 08:50:36 +00003351 switch (vc->type) {
3352 case vt_none:
3353 fprintf (stderr, "UNDEFINED %s\n", vc->name);
3354 break;
3355 case vt_attrib:
3356 fprintf (stderr, "ATTRIB %s\n", vc->name);
3357 fprintf (stderr, " binding: 0x%x\n", vc->attrib_binding);
3358 break;
3359 case vt_param:
3360 fprintf (stderr, "PARAM %s begin: %d len: %d\n", vc->name,
3361 vc->param_binding_begin, vc->param_binding_length);
3362 b = vc->param_binding_begin;
3363 for (a = 0; a < vc->param_binding_length; a++) {
3364 fprintf (stderr, "%s\n",
Brianb618ac82007-02-22 09:39:25 -07003365 Program->Base.Parameters->Parameters[a + b].Name);
3366 if (Program->Base.Parameters->Parameters[a + b].Type == PROGRAM_STATE_VAR) {
3367 const char *s;
3368 s = _mesa_program_state_string(Program->Base.Parameters->Parameters
3369 [a + b].StateIndexes);
3370 fprintf(stderr, "%s\n", s);
3371 _mesa_free((char *) s);
Jouk Jansen40322e12004-04-05 08:50:36 +00003372 }
3373 else
3374 fprintf (stderr, "%f %f %f %f\n",
Brianb618ac82007-02-22 09:39:25 -07003375 Program->Base.Parameters->ParameterValues[a + b][0],
3376 Program->Base.Parameters->ParameterValues[a + b][1],
3377 Program->Base.Parameters->ParameterValues[a + b][2],
3378 Program->Base.Parameters->ParameterValues[a + b][3]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003379 }
3380 break;
3381 case vt_temp:
3382 fprintf (stderr, "TEMP %s\n", vc->name);
3383 fprintf (stderr, " binding: 0x%x\n", vc->temp_binding);
3384 break;
3385 case vt_output:
3386 fprintf (stderr, "OUTPUT %s\n", vc->name);
3387 fprintf (stderr, " binding: 0x%x\n", vc->output_binding);
3388 break;
3389 case vt_alias:
3390 fprintf (stderr, "ALIAS %s\n", vc->name);
Brianb618ac82007-02-22 09:39:25 -07003391 fprintf (stderr, " binding: 0x%p (%s)\n",
3392 (void*) vc->alias_binding, vc->alias_binding->name);
Jouk Jansen40322e12004-04-05 08:50:36 +00003393 break;
Brianb618ac82007-02-22 09:39:25 -07003394 default:
3395 /* nothing */
3396 ;
Jouk Jansen40322e12004-04-05 08:50:36 +00003397 }
3398 vc = vc->next;
3399 }
3400}
3401
Brian Paul72030e02005-11-03 03:30:34 +00003402#endif /* DEBUG_PARSING */
Brian Paul7aebaf32005-10-30 21:23:23 +00003403
3404
3405/**
Jouk Jansen40322e12004-04-05 08:50:36 +00003406 * The main loop for parsing a fragment or vertex program
3407 *
Brian Paul72030e02005-11-03 03:30:34 +00003408 * \return 1 on error, 0 on success
Jouk Jansen40322e12004-04-05 08:50:36 +00003409 */
Brian Paul72030e02005-11-03 03:30:34 +00003410static GLint
Brian Paula088f162006-09-05 23:08:51 +00003411parse_instructions(GLcontext * ctx, const GLubyte * inst,
3412 struct var_cache **vc_head, struct arb_program *Program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003413{
Brian Paul72030e02005-11-03 03:30:34 +00003414 const GLuint maxInst = (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB)
3415 ? ctx->Const.FragmentProgram.MaxInstructions
3416 : ctx->Const.VertexProgram.MaxInstructions;
Jouk Jansen40322e12004-04-05 08:50:36 +00003417 GLint err = 0;
3418
Brian Paul72030e02005-11-03 03:30:34 +00003419 ASSERT(MAX_INSTRUCTIONS >= maxInst);
3420
Jouk Jansen40322e12004-04-05 08:50:36 +00003421 Program->MajorVersion = (GLuint) * inst++;
3422 Program->MinorVersion = (GLuint) * inst++;
3423
3424 while (*inst != END) {
3425 switch (*inst++) {
3426
3427 case OPTION:
3428 switch (*inst++) {
3429 case ARB_PRECISION_HINT_FASTEST:
3430 Program->PrecisionOption = GL_FASTEST;
3431 break;
3432
3433 case ARB_PRECISION_HINT_NICEST:
3434 Program->PrecisionOption = GL_NICEST;
3435 break;
3436
3437 case ARB_FOG_EXP:
3438 Program->FogOption = GL_EXP;
3439 break;
3440
3441 case ARB_FOG_EXP2:
3442 Program->FogOption = GL_EXP2;
3443 break;
3444
3445 case ARB_FOG_LINEAR:
3446 Program->FogOption = GL_LINEAR;
3447 break;
3448
3449 case ARB_POSITION_INVARIANT:
3450 if (Program->Base.Target == GL_VERTEX_PROGRAM_ARB)
Brian Paul45cd2f92005-11-03 02:25:10 +00003451 Program->HintPositionInvariant = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003452 break;
3453
3454 case ARB_FRAGMENT_PROGRAM_SHADOW:
3455 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3456 /* TODO ARB_fragment_program_shadow code */
3457 }
3458 break;
Michal Krolad22ce82004-10-11 08:13:25 +00003459
3460 case ARB_DRAW_BUFFERS:
3461 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
3462 /* do nothing for now */
3463 }
3464 break;
Jouk Jansen40322e12004-04-05 08:50:36 +00003465 }
3466 break;
3467
3468 case INSTRUCTION:
Brian Paul72030e02005-11-03 03:30:34 +00003469 /* check length */
3470 if (Program->Base.NumInstructions + 1 >= maxInst) {
Brian Paula088f162006-09-05 23:08:51 +00003471 program_error(ctx, Program->Position,
3472 "Max instruction count exceeded");
Brian Paul72030e02005-11-03 03:30:34 +00003473 return 1;
3474 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003475 Program->Position = parse_position (&inst);
Brian Paul72030e02005-11-03 03:30:34 +00003476 /* parse the current instruction */
Jouk Jansen40322e12004-04-05 08:50:36 +00003477 if (Program->Base.Target == GL_FRAGMENT_PROGRAM_ARB) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003478 err = parse_fp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003479 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003480 }
3481 else {
Jouk Jansen40322e12004-04-05 08:50:36 +00003482 err = parse_vp_instruction (ctx, &inst, vc_head, Program,
Brian Paul8c41a142005-11-19 15:36:28 +00003483 &Program->Base.Instructions[Program->Base.NumInstructions]);
Jouk Jansen40322e12004-04-05 08:50:36 +00003484 }
3485
Brian Paul72030e02005-11-03 03:30:34 +00003486 /* increment instuction count */
Jouk Jansen40322e12004-04-05 08:50:36 +00003487 Program->Base.NumInstructions++;
3488 break;
3489
3490 case DECLARATION:
3491 err = parse_declaration (ctx, &inst, vc_head, Program);
3492 break;
3493
3494 default:
3495 break;
3496 }
3497
3498 if (err)
3499 break;
3500 }
3501
3502 /* Finally, tag on an OPCODE_END instruction */
Brian Paul8c41a142005-11-19 15:36:28 +00003503 {
Brian Paul7aebaf32005-10-30 21:23:23 +00003504 const GLuint numInst = Program->Base.NumInstructions;
Brian Pauld6272e02006-10-29 18:03:16 +00003505 _mesa_init_instructions(Program->Base.Instructions + numInst, 1);
Brian Paul8c41a142005-11-19 15:36:28 +00003506 Program->Base.Instructions[numInst].Opcode = OPCODE_END;
Jouk Jansen40322e12004-04-05 08:50:36 +00003507 /* YYY Wrong Position in program, whatever, at least not random -> crash
3508 Program->Position = parse_position (&inst);
3509 */
Brian Paul8c41a142005-11-19 15:36:28 +00003510 Program->Base.Instructions[numInst].StringPos = Program->Position;
Jouk Jansen40322e12004-04-05 08:50:36 +00003511 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003512 Program->Base.NumInstructions++;
3513
Brian Paul05051032005-11-01 04:36:33 +00003514 /*
3515 * Initialize native counts to logical counts. The device driver may
3516 * change them if program is translated into a hardware program.
3517 */
3518 Program->Base.NumNativeInstructions = Program->Base.NumInstructions;
3519 Program->Base.NumNativeTemporaries = Program->Base.NumTemporaries;
3520 Program->Base.NumNativeParameters = Program->Base.NumParameters;
3521 Program->Base.NumNativeAttributes = Program->Base.NumAttributes;
3522 Program->Base.NumNativeAddressRegs = Program->Base.NumAddressRegs;
Brian Paul05051032005-11-01 04:36:33 +00003523
Jouk Jansen40322e12004-04-05 08:50:36 +00003524 return err;
3525}
3526
Brian Paul7aebaf32005-10-30 21:23:23 +00003527
Jouk Jansen40322e12004-04-05 08:50:36 +00003528/* XXX temporary */
Brian5cc12922006-12-14 14:27:05 -07003529LONGSTRING static char core_grammar_text[] =
Jouk Jansen40322e12004-04-05 08:50:36 +00003530#include "grammar_syn.h"
3531;
3532
Brian Paul7aebaf32005-10-30 21:23:23 +00003533
Brian Paul8c41a142005-11-19 15:36:28 +00003534/**
3535 * Set a grammar parameter.
3536 * \param name the grammar parameter
3537 * \param value the new parameter value
3538 * \return 0 if OK, 1 if error
3539 */
3540static int
3541set_reg8 (GLcontext *ctx, grammar id, const char *name, GLubyte value)
Jouk Jansen40322e12004-04-05 08:50:36 +00003542{
3543 char error_msg[300];
3544 GLint error_pos;
3545
Brian Paul8c41a142005-11-19 15:36:28 +00003546 if (grammar_set_reg8 (id, (const byte *) name, value))
Jouk Jansen40322e12004-04-05 08:50:36 +00003547 return 0;
3548
3549 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3550 _mesa_set_program_error (ctx, error_pos, error_msg);
3551 _mesa_error (ctx, GL_INVALID_OPERATION, "Grammar Register Error");
3552 return 1;
3553}
3554
Brian Paul8c41a142005-11-19 15:36:28 +00003555
3556/**
3557 * Enable support for the given language option in the parser.
3558 * \return 1 if OK, 0 if error
3559 */
3560static int
3561enable_ext(GLcontext *ctx, grammar id, const char *name)
Jouk Jansen40322e12004-04-05 08:50:36 +00003562{
Brian Paul8c41a142005-11-19 15:36:28 +00003563 return !set_reg8(ctx, id, name, 1);
Jouk Jansen40322e12004-04-05 08:50:36 +00003564}
3565
Brian Paul8c41a142005-11-19 15:36:28 +00003566
3567/**
3568 * Enable parser extensions based on which OpenGL extensions are supported
3569 * by this rendering context.
3570 *
3571 * \return GL_TRUE if OK, GL_FALSE if error.
3572 */
3573static GLboolean
3574enable_parser_extensions(GLcontext *ctx, grammar id)
Jouk Jansen40322e12004-04-05 08:50:36 +00003575{
Brian Paul8c41a142005-11-19 15:36:28 +00003576#if 0
3577 /* These are not supported at this time */
3578 if ((ctx->Extensions.ARB_vertex_blend ||
3579 ctx->Extensions.EXT_vertex_weighting)
Brian Paul43cc1dc2006-09-05 23:11:09 +00003580 && !enable_ext(ctx, id, "vertex_blend"))
Brian Paul8c41a142005-11-19 15:36:28 +00003581 return GL_FALSE;
3582 if (ctx->Extensions.ARB_matrix_palette
3583 && !enable_ext(ctx, id, "matrix_palette"))
3584 return GL_FALSE;
3585 if (ctx->Extensions.ARB_fragment_program_shadow
3586 && !enable_ext(ctx, id, "fragment_program_shadow"))
3587 return GL_FALSE;
3588#endif
3589 if (ctx->Extensions.EXT_point_parameters
3590 && !enable_ext(ctx, id, "point_parameters"))
3591 return GL_FALSE;
3592 if (ctx->Extensions.EXT_secondary_color
3593 && !enable_ext(ctx, id, "secondary_color"))
3594 return GL_FALSE;
3595 if (ctx->Extensions.EXT_fog_coord
3596 && !enable_ext(ctx, id, "fog_coord"))
3597 return GL_FALSE;
3598 if (ctx->Extensions.NV_texture_rectangle
3599 && !enable_ext(ctx, id, "texture_rectangle"))
3600 return GL_FALSE;
3601 if (ctx->Extensions.ARB_draw_buffers
3602 && !enable_ext(ctx, id, "draw_buffers"))
3603 return GL_FALSE;
3604
Brian Paul3a557502006-09-05 23:15:29 +00003605#if 1
3606 /* hack for Warcraft (see bug 8060) */
3607 enable_ext(ctx, id, "vertex_blend");
3608#endif
3609
Brian Paul8c41a142005-11-19 15:36:28 +00003610 return GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003611}
3612
Brian Paul8c41a142005-11-19 15:36:28 +00003613
Jouk Jansen40322e12004-04-05 08:50:36 +00003614/**
3615 * This kicks everything off.
3616 *
3617 * \param ctx - The GL Context
3618 * \param str - The program string
3619 * \param len - The program string length
Brian Paul45703642005-10-29 15:52:31 +00003620 * \param program - The arb_program struct to return all the parsed info in
3621 * \return GL_TRUE on sucess, GL_FALSE on error
Jouk Jansen40322e12004-04-05 08:50:36 +00003622 */
Brian Paul8c41a142005-11-19 15:36:28 +00003623static GLboolean
3624_mesa_parse_arb_program(GLcontext *ctx, GLenum target,
3625 const GLubyte *str, GLsizei len,
3626 struct arb_program *program)
Jouk Jansen40322e12004-04-05 08:50:36 +00003627{
3628 GLint a, err, error_pos;
3629 char error_msg[300];
3630 GLuint parsed_len;
3631 struct var_cache *vc_head;
3632 grammar arbprogram_syn_id;
3633 GLubyte *parsed, *inst;
3634 GLubyte *strz = NULL;
3635 static int arbprogram_syn_is_ok = 0; /* XXX temporary */
3636
Brian Paul8c41a142005-11-19 15:36:28 +00003637 /* set the program target before parsing */
3638 program->Base.Target = target;
3639
Brian Paul7f76b8f2004-09-10 01:05:39 +00003640 /* Reset error state */
3641 _mesa_set_program_error(ctx, -1, NULL);
3642
Brian Paul8c41a142005-11-19 15:36:28 +00003643 /* check if arb_grammar_text (arbprogram.syn) is syntactically correct */
Jouk Jansen40322e12004-04-05 08:50:36 +00003644 if (!arbprogram_syn_is_ok) {
Brian Paul8c41a142005-11-19 15:36:28 +00003645 /* One-time initialization of parsing system */
Jouk Jansen40322e12004-04-05 08:50:36 +00003646 grammar grammar_syn_id;
Jouk Jansen40322e12004-04-05 08:50:36 +00003647 GLuint parsed_len;
Jouk Jansen40322e12004-04-05 08:50:36 +00003648
3649 grammar_syn_id = grammar_load_from_text ((byte *) core_grammar_text);
3650 if (grammar_syn_id == 0) {
3651 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
Brian Paul8c41a142005-11-19 15:36:28 +00003652 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003653 _mesa_set_program_error (ctx, error_pos, error_msg);
3654 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003655 "glProgramStringARB(Error loading grammar rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003656 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003657 }
3658
Brian Paul8c41a142005-11-19 15:36:28 +00003659 err = !grammar_check(grammar_syn_id, (byte *) arb_grammar_text,
3660 &parsed, &parsed_len);
Jouk Jansen40322e12004-04-05 08:50:36 +00003661
Brian Paul49a80ca2006-04-28 15:40:11 +00003662 /* 'parsed' is unused here */
3663 _mesa_free (parsed);
3664 parsed = NULL;
3665
Brian Paul45703642005-10-29 15:52:31 +00003666 /* NOTE: we can't destroy grammar_syn_id right here because
3667 * grammar_destroy() can reset the last error
3668 */
Brian Paul8c41a142005-11-19 15:36:28 +00003669 if (err) {
3670 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003671 grammar_get_last_error ((byte *) error_msg, 300, &error_pos);
3672 _mesa_set_program_error (ctx, error_pos, error_msg);
Brian Paul8c41a142005-11-19 15:36:28 +00003673 _mesa_error (ctx, GL_INVALID_OPERATION,
3674 "glProgramString(Error loading grammar rule set");
Jouk Jansen40322e12004-04-05 08:50:36 +00003675 grammar_destroy (grammar_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003676 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003677 }
3678
3679 grammar_destroy (grammar_syn_id);
3680
3681 arbprogram_syn_is_ok = 1;
3682 }
3683
3684 /* create the grammar object */
3685 arbprogram_syn_id = grammar_load_from_text ((byte *) arb_grammar_text);
3686 if (arbprogram_syn_id == 0) {
Brian Paul8c41a142005-11-19 15:36:28 +00003687 /* XXX this is not a GL error - it's an implementation bug! - FIX */
Jouk Jansen40322e12004-04-05 08:50:36 +00003688 grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
3689 _mesa_set_program_error (ctx, error_pos, error_msg);
3690 _mesa_error (ctx, GL_INVALID_OPERATION,
Brian Paul8c41a142005-11-19 15:36:28 +00003691 "glProgramString(Error loading grammer rule set)");
Brian Paul45703642005-10-29 15:52:31 +00003692 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003693 }
3694
3695 /* Set program_target register value */
Brian Paul55194df2005-11-19 23:29:18 +00003696 if (set_reg8 (ctx, arbprogram_syn_id, "program_target",
Jouk Jansen40322e12004-04-05 08:50:36 +00003697 program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) {
3698 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003699 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003700 }
3701
Brian Paul8c41a142005-11-19 15:36:28 +00003702 if (!enable_parser_extensions(ctx, arbprogram_syn_id)) {
3703 grammar_destroy(arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003704 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003705 }
3706
3707 /* check for NULL character occurences */
3708 {
Brian Paul8c41a142005-11-19 15:36:28 +00003709 GLint i;
3710 for (i = 0; i < len; i++) {
Jouk Jansen40322e12004-04-05 08:50:36 +00003711 if (str[i] == '\0') {
Brian Paula088f162006-09-05 23:08:51 +00003712 program_error(ctx, i, "illegal character");
Jouk Jansen40322e12004-04-05 08:50:36 +00003713 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003714 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003715 }
Brian Paul8c41a142005-11-19 15:36:28 +00003716 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003717 }
3718
3719 /* copy the program string to a null-terminated string */
Brian Paulbdd15b52004-05-04 15:11:06 +00003720 strz = (GLubyte *) _mesa_malloc (len + 1);
Brian Paul45703642005-10-29 15:52:31 +00003721 if (!strz) {
Brian Paul8c41a142005-11-19 15:36:28 +00003722 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glProgramStringARB");
3723 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003724 return GL_FALSE;
3725 }
Jouk Jansen40322e12004-04-05 08:50:36 +00003726 _mesa_memcpy (strz, str, len);
3727 strz[len] = '\0';
3728
Michal Krolb80bc052004-10-21 14:09:54 +00003729 /* do a fast check on program string - initial production buffer is 4K */
Brian Paul8c41a142005-11-19 15:36:28 +00003730 err = !grammar_fast_check(arbprogram_syn_id, strz,
3731 &parsed, &parsed_len, 0x1000);
Jouk Jansen40322e12004-04-05 08:50:36 +00003732
3733 /* Syntax parse error */
Brian Paul8c41a142005-11-19 15:36:28 +00003734 if (err) {
Brian Paula088f162006-09-05 23:08:51 +00003735 grammar_get_last_error((GLubyte *) error_msg, 300, &error_pos);
3736 program_error(ctx, error_pos, error_msg);
Brian Paul5fe90292004-07-20 21:15:13 +00003737
Brian Paulb3aefd12005-09-19 20:12:32 +00003738#if DEBUG_PARSING
Brian Paula088f162006-09-05 23:08:51 +00003739 /* useful for debugging */
Brian Paulb3aefd12005-09-19 20:12:32 +00003740 do {
Brian Paul5fe90292004-07-20 21:15:13 +00003741 int line, col;
3742 char *s;
Brian Paul45703642005-10-29 15:52:31 +00003743 fprintf(stderr, "program: %s\n", (char *) strz);
3744 fprintf(stderr, "Error Pos: %d\n", ctx->program.ErrorPos);
Brian Paula088f162006-09-05 23:08:51 +00003745 s = (char *) _mesa_find_line_column(strz, strz+ctx->program.ErrorPos,
3746 &line, &col);
Brian Paulb3aefd12005-09-19 20:12:32 +00003747 fprintf(stderr, "line %d col %d: %s\n", line, col, s);
3748 } while (0)
3749#endif
Brian Paul5fe90292004-07-20 21:15:13 +00003750
Brian Paula088f162006-09-05 23:08:51 +00003751 _mesa_free(strz);
3752 _mesa_free(parsed);
3753
Jouk Jansen40322e12004-04-05 08:50:36 +00003754 grammar_destroy (arbprogram_syn_id);
Brian Paul45703642005-10-29 15:52:31 +00003755 return GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003756 }
3757
Jouk Jansen40322e12004-04-05 08:50:36 +00003758 grammar_destroy (arbprogram_syn_id);
3759
Brian Paul8c41a142005-11-19 15:36:28 +00003760 /*
3761 * Program string is syntactically correct at this point
3762 * Parse the tokenized version of the program now, generating
3763 * vertex/fragment program instructions.
3764 */
3765
Jouk Jansen40322e12004-04-05 08:50:36 +00003766 /* Initialize the arb_program struct */
3767 program->Base.String = strz;
Brian Paul383c39e2006-08-25 15:14:25 +00003768 program->Base.Instructions = _mesa_alloc_instructions(MAX_INSTRUCTIONS);
Jouk Jansen40322e12004-04-05 08:50:36 +00003769 program->Base.NumInstructions =
3770 program->Base.NumTemporaries =
3771 program->Base.NumParameters =
3772 program->Base.NumAttributes = program->Base.NumAddressRegs = 0;
Brian Paulde997602005-11-12 17:53:14 +00003773 program->Base.Parameters = _mesa_new_parameter_list ();
3774 program->Base.InputsRead = 0x0;
3775 program->Base.OutputsWritten = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003776 program->Position = 0;
3777 program->MajorVersion = program->MinorVersion = 0;
3778 program->PrecisionOption = GL_DONT_CARE;
3779 program->FogOption = GL_NONE;
3780 program->HintPositionInvariant = GL_FALSE;
3781 for (a = 0; a < MAX_TEXTURE_IMAGE_UNITS; a++)
Brian Paul45cd2f92005-11-03 02:25:10 +00003782 program->TexturesUsed[a] = 0x0;
Jouk Jansen40322e12004-04-05 08:50:36 +00003783 program->NumAluInstructions =
3784 program->NumTexInstructions =
3785 program->NumTexIndirections = 0;
Keith Whitwellc3626a92005-11-01 17:25:49 +00003786 program->UsesKill = 0;
3787
Jouk Jansen40322e12004-04-05 08:50:36 +00003788 vc_head = NULL;
Brian Paul45703642005-10-29 15:52:31 +00003789 err = GL_FALSE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003790
3791 /* Start examining the tokens in the array */
3792 inst = parsed;
3793
3794 /* Check the grammer rev */
3795 if (*inst++ != REVISION) {
Brian Paula088f162006-09-05 23:08:51 +00003796 program_error (ctx, 0, "Grammar version mismatch");
Brian Paul45703642005-10-29 15:52:31 +00003797 err = GL_TRUE;
Jouk Jansen40322e12004-04-05 08:50:36 +00003798 }
3799 else {
Michal Krolb80bc052004-10-21 14:09:54 +00003800 /* ignore program target */
3801 inst++;
Brian Paul8c41a142005-11-19 15:36:28 +00003802 err = parse_instructions(ctx, inst, &vc_head, program);
Jouk Jansen40322e12004-04-05 08:50:36 +00003803 }
3804
3805 /*debug_variables(ctx, vc_head, program); */
3806
3807 /* We're done with the parsed binary array */
3808 var_cache_destroy (&vc_head);
3809
3810 _mesa_free (parsed);
Brian Paul45703642005-10-29 15:52:31 +00003811
Brian Paul8c41a142005-11-19 15:36:28 +00003812 /* Reallocate the instruction array from size [MAX_INSTRUCTIONS]
3813 * to size [ap.Base.NumInstructions].
3814 */
Brian Paula7543902006-08-24 21:58:32 +00003815 program->Base.Instructions
3816 = _mesa_realloc_instructions(program->Base.Instructions,
3817 MAX_INSTRUCTIONS,
3818 program->Base.NumInstructions);
3819
Brian Paul45703642005-10-29 15:52:31 +00003820 return !err;
Jouk Jansen40322e12004-04-05 08:50:36 +00003821}
Brian Paul8c41a142005-11-19 15:36:28 +00003822
3823
3824
3825void
3826_mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target,
3827 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00003828 struct gl_fragment_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00003829{
3830 struct arb_program ap;
3831 GLuint i;
3832
3833 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
Brian Paul95801792005-12-06 15:41:43 +00003834 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00003835 /* Error in the program. Just return. */
3836 return;
3837 }
3838
3839 /* Copy the relevant contents of the arb_program struct into the
3840 * fragment_program struct.
3841 */
3842 program->Base.String = ap.Base.String;
3843 program->Base.NumInstructions = ap.Base.NumInstructions;
3844 program->Base.NumTemporaries = ap.Base.NumTemporaries;
3845 program->Base.NumParameters = ap.Base.NumParameters;
3846 program->Base.NumAttributes = ap.Base.NumAttributes;
3847 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00003848 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
3849 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
3850 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
3851 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
3852 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian21f99792007-01-09 11:00:21 -07003853 program->Base.NumAluInstructions = ap.Base.NumAluInstructions;
3854 program->Base.NumTexInstructions = ap.Base.NumTexInstructions;
3855 program->Base.NumTexIndirections = ap.Base.NumTexIndirections;
3856 program->Base.NumNativeAluInstructions = ap.Base.NumAluInstructions;
3857 program->Base.NumNativeTexInstructions = ap.Base.NumTexInstructions;
3858 program->Base.NumNativeTexIndirections = ap.Base.NumTexIndirections;
Brian Paul8c41a142005-11-19 15:36:28 +00003859 program->Base.InputsRead = ap.Base.InputsRead;
3860 program->Base.OutputsWritten = ap.Base.OutputsWritten;
3861 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++)
Brianc9db2232007-01-04 17:22:19 -07003862 program->Base.TexturesUsed[i] = ap.TexturesUsed[i];
Brian Paul8c41a142005-11-19 15:36:28 +00003863 program->FogOption = ap.FogOption;
3864
3865 if (program->Base.Instructions)
3866 _mesa_free(program->Base.Instructions);
3867 program->Base.Instructions = ap.Base.Instructions;
3868
3869 if (program->Base.Parameters)
3870 _mesa_free_parameter_list(program->Base.Parameters);
3871 program->Base.Parameters = ap.Base.Parameters;
3872
3873#if DEBUG_FP
Brian Paul11a54c32006-11-15 19:54:25 +00003874 _mesa_printf("____________Fragment program %u ________\n", program->Base.ID);
3875 _mesa_print_program(&program->Base);
Brian Paul8c41a142005-11-19 15:36:28 +00003876#endif
3877}
3878
3879
3880
3881/**
3882 * Parse the vertex program string. If success, update the given
3883 * vertex_program object with the new program. Else, leave the vertex_program
3884 * object unchanged.
3885 */
3886void
3887_mesa_parse_arb_vertex_program(GLcontext *ctx, GLenum target,
3888 const GLvoid *str, GLsizei len,
Brian Paul122629f2006-07-20 16:49:57 +00003889 struct gl_vertex_program *program)
Brian Paul8c41a142005-11-19 15:36:28 +00003890{
3891 struct arb_program ap;
3892
3893 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
3894
Brian Paul95801792005-12-06 15:41:43 +00003895 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len, &ap)) {
Brian Paul8c41a142005-11-19 15:36:28 +00003896 /* Error in the program. Just return. */
3897 return;
3898 }
3899
3900 /* Copy the relevant contents of the arb_program struct into the
3901 * vertex_program struct.
3902 */
3903 program->Base.String = ap.Base.String;
3904 program->Base.NumInstructions = ap.Base.NumInstructions;
3905 program->Base.NumTemporaries = ap.Base.NumTemporaries;
3906 program->Base.NumParameters = ap.Base.NumParameters;
3907 program->Base.NumAttributes = ap.Base.NumAttributes;
3908 program->Base.NumAddressRegs = ap.Base.NumAddressRegs;
Roland Scheideggere6de1ed2006-08-30 11:55:18 +00003909 program->Base.NumNativeInstructions = ap.Base.NumNativeInstructions;
3910 program->Base.NumNativeTemporaries = ap.Base.NumNativeTemporaries;
3911 program->Base.NumNativeParameters = ap.Base.NumNativeParameters;
3912 program->Base.NumNativeAttributes = ap.Base.NumNativeAttributes;
3913 program->Base.NumNativeAddressRegs = ap.Base.NumNativeAddressRegs;
Brian Paul8c41a142005-11-19 15:36:28 +00003914 program->Base.InputsRead = ap.Base.InputsRead;
3915 program->Base.OutputsWritten = ap.Base.OutputsWritten;
3916 program->IsPositionInvariant = ap.HintPositionInvariant;
3917
3918 if (program->Base.Instructions)
3919 _mesa_free(program->Base.Instructions);
3920 program->Base.Instructions = ap.Base.Instructions;
3921
3922 if (program->Base.Parameters)
3923 _mesa_free_parameter_list(program->Base.Parameters);
3924 program->Base.Parameters = ap.Base.Parameters;
3925
3926#if DEBUG_VP
Roland Scheidegger54dac2c2007-02-09 00:36:40 +01003927 _mesa_printf("____________Vertex program %u __________\n", program->Base.Id);
Brian Paul8c41a142005-11-19 15:36:28 +00003928 _mesa_print_program(&program->Base);
3929#endif
3930}