blob: 516a69caff937cd4dc12b157642308892758abff [file] [log] [blame]
Ian Romanickadfb0cd2010-03-10 10:43:16 -08001/*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
Eric Anholtac95f2f2010-06-22 10:38:52 -070024#include "ir.h"
Ian Romanickadfb0cd2010-03-10 10:43:16 -080025#include "glsl_parser_extras.h"
Ian Romanick8bde4ce2010-03-19 11:57:24 -070026#include "glsl_symbol_table.h"
Eric Anholt44fc3c62011-11-08 14:46:25 -080027#include "main/core.h"
Ian Romanick92e412e2011-01-24 16:55:50 -080028#include "main/uniforms.h"
29#include "program/prog_parameter.h"
30#include "program/prog_statevars.h"
31#include "program/prog_instruction.h"
Ian Romanickadfb0cd2010-03-10 10:43:16 -080032
Ian Romanick22971e92010-06-29 15:29:56 -070033static void generate_ARB_draw_buffers_variables(exec_list *,
34 struct _mesa_glsl_parse_state *,
35 bool, _mesa_glsl_parser_targets);
Ian Romanick9c4b1f22010-06-29 15:10:09 -070036
Brian Paul7ce18632010-12-08 18:25:38 -070037static void
38generate_ARB_draw_instanced_variables(exec_list *,
39 struct _mesa_glsl_parse_state *,
40 bool, _mesa_glsl_parser_targets);
41
Eric Anholt44fc3c62011-11-08 14:46:25 -080042struct builtin_variable {
43 enum ir_variable_mode mode;
44 int slot;
45 const char *type;
46 const char *name;
47};
48
49static const builtin_variable builtin_core_vs_variables[] = {
50 { ir_var_out, VERT_RESULT_HPOS, "vec4", "gl_Position" },
51 { ir_var_out, VERT_RESULT_PSIZ, "float", "gl_PointSize" },
52};
53
54static const builtin_variable builtin_core_fs_variables[] = {
55 { ir_var_in, FRAG_ATTRIB_WPOS, "vec4", "gl_FragCoord" },
56 { ir_var_in, FRAG_ATTRIB_FACE, "bool", "gl_FrontFacing" },
57 { ir_var_out, FRAG_RESULT_COLOR, "vec4", "gl_FragColor" },
58};
59
60static const builtin_variable builtin_100ES_fs_variables[] = {
61 { ir_var_in, FRAG_ATTRIB_PNTC, "vec2", "gl_PointCoord" },
62};
63
64static const builtin_variable builtin_110_fs_variables[] = {
65 { ir_var_out, FRAG_RESULT_DEPTH, "float", "gl_FragDepth" },
66};
67
68static const builtin_variable builtin_110_deprecated_fs_variables[] = {
69 { ir_var_in, FRAG_ATTRIB_COL0, "vec4", "gl_Color" },
70 { ir_var_in, FRAG_ATTRIB_COL1, "vec4", "gl_SecondaryColor" },
71 { ir_var_in, FRAG_ATTRIB_FOGC, "float", "gl_FogFragCoord" },
72};
73
74static const builtin_variable builtin_110_deprecated_vs_variables[] = {
75 { ir_var_in, VERT_ATTRIB_POS, "vec4", "gl_Vertex" },
76 { ir_var_in, VERT_ATTRIB_NORMAL, "vec3", "gl_Normal" },
77 { ir_var_in, VERT_ATTRIB_COLOR0, "vec4", "gl_Color" },
78 { ir_var_in, VERT_ATTRIB_COLOR1, "vec4", "gl_SecondaryColor" },
79 { ir_var_in, VERT_ATTRIB_TEX0, "vec4", "gl_MultiTexCoord0" },
80 { ir_var_in, VERT_ATTRIB_TEX1, "vec4", "gl_MultiTexCoord1" },
81 { ir_var_in, VERT_ATTRIB_TEX2, "vec4", "gl_MultiTexCoord2" },
82 { ir_var_in, VERT_ATTRIB_TEX3, "vec4", "gl_MultiTexCoord3" },
83 { ir_var_in, VERT_ATTRIB_TEX4, "vec4", "gl_MultiTexCoord4" },
84 { ir_var_in, VERT_ATTRIB_TEX5, "vec4", "gl_MultiTexCoord5" },
85 { ir_var_in, VERT_ATTRIB_TEX6, "vec4", "gl_MultiTexCoord6" },
86 { ir_var_in, VERT_ATTRIB_TEX7, "vec4", "gl_MultiTexCoord7" },
87 { ir_var_in, VERT_ATTRIB_FOG, "float", "gl_FogCoord" },
88 { ir_var_out, VERT_RESULT_CLIP_VERTEX, "vec4", "gl_ClipVertex" },
89 { ir_var_out, VERT_RESULT_COL0, "vec4", "gl_FrontColor" },
90 { ir_var_out, VERT_RESULT_BFC0, "vec4", "gl_BackColor" },
91 { ir_var_out, VERT_RESULT_COL1, "vec4", "gl_FrontSecondaryColor" },
92 { ir_var_out, VERT_RESULT_BFC1, "vec4", "gl_BackSecondaryColor" },
93 { ir_var_out, VERT_RESULT_FOGC, "float", "gl_FogFragCoord" },
94};
95
96static const builtin_variable builtin_120_fs_variables[] = {
97 { ir_var_in, FRAG_ATTRIB_PNTC, "vec2", "gl_PointCoord" },
98};
99
100static const builtin_variable builtin_130_vs_variables[] = {
Eric Anholt919c53e2011-11-08 14:49:07 -0800101 { ir_var_system_value, SYSTEM_VALUE_VERTEX_ID, "int", "gl_VertexID" },
Eric Anholt44fc3c62011-11-08 14:46:25 -0800102};
103
104static const builtin_variable builtin_110_deprecated_uniforms[] = {
105 { ir_var_uniform, -1, "mat4", "gl_ModelViewMatrix" },
106 { ir_var_uniform, -1, "mat4", "gl_ProjectionMatrix" },
107 { ir_var_uniform, -1, "mat4", "gl_ModelViewProjectionMatrix" },
108 { ir_var_uniform, -1, "mat3", "gl_NormalMatrix" },
109 { ir_var_uniform, -1, "mat4", "gl_ModelViewMatrixInverse" },
110 { ir_var_uniform, -1, "mat4", "gl_ProjectionMatrixInverse" },
111 { ir_var_uniform, -1, "mat4", "gl_ModelViewProjectionMatrixInverse" },
112 { ir_var_uniform, -1, "mat4", "gl_ModelViewMatrixTranspose" },
113 { ir_var_uniform, -1, "mat4", "gl_ProjectionMatrixTranspose" },
114 { ir_var_uniform, -1, "mat4", "gl_ModelViewProjectionMatrixTranspose" },
115 { ir_var_uniform, -1, "mat4", "gl_ModelViewMatrixInverseTranspose" },
116 { ir_var_uniform, -1, "mat4", "gl_ProjectionMatrixInverseTranspose" },
117 { ir_var_uniform, -1, "mat4", "gl_ModelViewProjectionMatrixInverseTranspose" },
118 { ir_var_uniform, -1, "float", "gl_NormalScale" },
119 { ir_var_uniform, -1, "gl_LightModelParameters", "gl_LightModel"},
120
121 /* Mesa-internal ATI_envmap_bumpmap state. */
122 { ir_var_uniform, -1, "vec2", "gl_BumpRotMatrix0MESA"},
123 { ir_var_uniform, -1, "vec2", "gl_BumpRotMatrix1MESA"},
124 { ir_var_uniform, -1, "vec4", "gl_FogParamsOptimizedMESA"},
125};
126
Ian Romanick92e412e2011-01-24 16:55:50 -0800127static struct gl_builtin_uniform_element gl_DepthRange_elements[] = {
128 {"near", {STATE_DEPTH_RANGE, 0, 0}, SWIZZLE_XXXX},
129 {"far", {STATE_DEPTH_RANGE, 0, 0}, SWIZZLE_YYYY},
130 {"diff", {STATE_DEPTH_RANGE, 0, 0}, SWIZZLE_ZZZZ},
131};
132
133static struct gl_builtin_uniform_element gl_ClipPlane_elements[] = {
134 {NULL, {STATE_CLIPPLANE, 0, 0}, SWIZZLE_XYZW}
135};
136
137static struct gl_builtin_uniform_element gl_Point_elements[] = {
138 {"size", {STATE_POINT_SIZE}, SWIZZLE_XXXX},
139 {"sizeMin", {STATE_POINT_SIZE}, SWIZZLE_YYYY},
140 {"sizeMax", {STATE_POINT_SIZE}, SWIZZLE_ZZZZ},
141 {"fadeThresholdSize", {STATE_POINT_SIZE}, SWIZZLE_WWWW},
142 {"distanceConstantAttenuation", {STATE_POINT_ATTENUATION}, SWIZZLE_XXXX},
143 {"distanceLinearAttenuation", {STATE_POINT_ATTENUATION}, SWIZZLE_YYYY},
144 {"distanceQuadraticAttenuation", {STATE_POINT_ATTENUATION}, SWIZZLE_ZZZZ},
145};
146
147static struct gl_builtin_uniform_element gl_FrontMaterial_elements[] = {
148 {"emission", {STATE_MATERIAL, 0, STATE_EMISSION}, SWIZZLE_XYZW},
149 {"ambient", {STATE_MATERIAL, 0, STATE_AMBIENT}, SWIZZLE_XYZW},
150 {"diffuse", {STATE_MATERIAL, 0, STATE_DIFFUSE}, SWIZZLE_XYZW},
151 {"specular", {STATE_MATERIAL, 0, STATE_SPECULAR}, SWIZZLE_XYZW},
152 {"shininess", {STATE_MATERIAL, 0, STATE_SHININESS}, SWIZZLE_XXXX},
153};
154
155static struct gl_builtin_uniform_element gl_BackMaterial_elements[] = {
156 {"emission", {STATE_MATERIAL, 1, STATE_EMISSION}, SWIZZLE_XYZW},
157 {"ambient", {STATE_MATERIAL, 1, STATE_AMBIENT}, SWIZZLE_XYZW},
158 {"diffuse", {STATE_MATERIAL, 1, STATE_DIFFUSE}, SWIZZLE_XYZW},
159 {"specular", {STATE_MATERIAL, 1, STATE_SPECULAR}, SWIZZLE_XYZW},
160 {"shininess", {STATE_MATERIAL, 1, STATE_SHININESS}, SWIZZLE_XXXX},
161};
162
163static struct gl_builtin_uniform_element gl_LightSource_elements[] = {
164 {"ambient", {STATE_LIGHT, 0, STATE_AMBIENT}, SWIZZLE_XYZW},
165 {"diffuse", {STATE_LIGHT, 0, STATE_DIFFUSE}, SWIZZLE_XYZW},
166 {"specular", {STATE_LIGHT, 0, STATE_SPECULAR}, SWIZZLE_XYZW},
167 {"position", {STATE_LIGHT, 0, STATE_POSITION}, SWIZZLE_XYZW},
168 {"halfVector", {STATE_LIGHT, 0, STATE_HALF_VECTOR}, SWIZZLE_XYZW},
169 {"spotDirection", {STATE_LIGHT, 0, STATE_SPOT_DIRECTION},
170 MAKE_SWIZZLE4(SWIZZLE_X,
171 SWIZZLE_Y,
172 SWIZZLE_Z,
173 SWIZZLE_Z)},
174 {"spotCosCutoff", {STATE_LIGHT, 0, STATE_SPOT_DIRECTION}, SWIZZLE_WWWW},
175 {"spotCutoff", {STATE_LIGHT, 0, STATE_SPOT_CUTOFF}, SWIZZLE_XXXX},
176 {"spotExponent", {STATE_LIGHT, 0, STATE_ATTENUATION}, SWIZZLE_WWWW},
177 {"constantAttenuation", {STATE_LIGHT, 0, STATE_ATTENUATION}, SWIZZLE_XXXX},
178 {"linearAttenuation", {STATE_LIGHT, 0, STATE_ATTENUATION}, SWIZZLE_YYYY},
179 {"quadraticAttenuation", {STATE_LIGHT, 0, STATE_ATTENUATION}, SWIZZLE_ZZZZ},
180};
181
182static struct gl_builtin_uniform_element gl_LightModel_elements[] = {
183 {"ambient", {STATE_LIGHTMODEL_AMBIENT, 0}, SWIZZLE_XYZW},
184};
185
186static struct gl_builtin_uniform_element gl_FrontLightModelProduct_elements[] = {
187 {"sceneColor", {STATE_LIGHTMODEL_SCENECOLOR, 0}, SWIZZLE_XYZW},
188};
189
190static struct gl_builtin_uniform_element gl_BackLightModelProduct_elements[] = {
191 {"sceneColor", {STATE_LIGHTMODEL_SCENECOLOR, 1}, SWIZZLE_XYZW},
192};
193
194static struct gl_builtin_uniform_element gl_FrontLightProduct_elements[] = {
195 {"ambient", {STATE_LIGHTPROD, 0, 0, STATE_AMBIENT}, SWIZZLE_XYZW},
196 {"diffuse", {STATE_LIGHTPROD, 0, 0, STATE_DIFFUSE}, SWIZZLE_XYZW},
197 {"specular", {STATE_LIGHTPROD, 0, 0, STATE_SPECULAR}, SWIZZLE_XYZW},
198};
199
200static struct gl_builtin_uniform_element gl_BackLightProduct_elements[] = {
201 {"ambient", {STATE_LIGHTPROD, 0, 1, STATE_AMBIENT}, SWIZZLE_XYZW},
202 {"diffuse", {STATE_LIGHTPROD, 0, 1, STATE_DIFFUSE}, SWIZZLE_XYZW},
203 {"specular", {STATE_LIGHTPROD, 0, 1, STATE_SPECULAR}, SWIZZLE_XYZW},
204};
205
206static struct gl_builtin_uniform_element gl_TextureEnvColor_elements[] = {
207 {NULL, {STATE_TEXENV_COLOR, 0}, SWIZZLE_XYZW},
208};
209
210static struct gl_builtin_uniform_element gl_EyePlaneS_elements[] = {
211 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_EYE_S}, SWIZZLE_XYZW},
212};
213
214static struct gl_builtin_uniform_element gl_EyePlaneT_elements[] = {
215 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_EYE_T}, SWIZZLE_XYZW},
216};
217
218static struct gl_builtin_uniform_element gl_EyePlaneR_elements[] = {
219 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_EYE_R}, SWIZZLE_XYZW},
220};
221
222static struct gl_builtin_uniform_element gl_EyePlaneQ_elements[] = {
223 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_EYE_Q}, SWIZZLE_XYZW},
224};
225
226static struct gl_builtin_uniform_element gl_ObjectPlaneS_elements[] = {
227 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_OBJECT_S}, SWIZZLE_XYZW},
228};
229
230static struct gl_builtin_uniform_element gl_ObjectPlaneT_elements[] = {
231 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_OBJECT_T}, SWIZZLE_XYZW},
232};
233
234static struct gl_builtin_uniform_element gl_ObjectPlaneR_elements[] = {
235 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_OBJECT_R}, SWIZZLE_XYZW},
236};
237
238static struct gl_builtin_uniform_element gl_ObjectPlaneQ_elements[] = {
239 {NULL, {STATE_TEXGEN, 0, STATE_TEXGEN_OBJECT_Q}, SWIZZLE_XYZW},
240};
241
242static struct gl_builtin_uniform_element gl_Fog_elements[] = {
243 {"color", {STATE_FOG_COLOR}, SWIZZLE_XYZW},
244 {"density", {STATE_FOG_PARAMS}, SWIZZLE_XXXX},
245 {"start", {STATE_FOG_PARAMS}, SWIZZLE_YYYY},
246 {"end", {STATE_FOG_PARAMS}, SWIZZLE_ZZZZ},
247 {"scale", {STATE_FOG_PARAMS}, SWIZZLE_WWWW},
248};
249
250static struct gl_builtin_uniform_element gl_NormalScale_elements[] = {
251 {NULL, {STATE_NORMAL_SCALE}, SWIZZLE_XXXX},
252};
253
Eric Anholt4fc9a982011-10-21 10:45:48 -0700254static struct gl_builtin_uniform_element gl_BumpRotMatrix0MESA_elements[] = {
Ian Romanick92e412e2011-01-24 16:55:50 -0800255 {NULL, {STATE_INTERNAL, STATE_ROT_MATRIX_0}, SWIZZLE_XYZW},
256};
257
Eric Anholt4fc9a982011-10-21 10:45:48 -0700258static struct gl_builtin_uniform_element gl_BumpRotMatrix1MESA_elements[] = {
Ian Romanick92e412e2011-01-24 16:55:50 -0800259 {NULL, {STATE_INTERNAL, STATE_ROT_MATRIX_1}, SWIZZLE_XYZW},
260};
261
Eric Anholt4fc9a982011-10-21 10:45:48 -0700262static struct gl_builtin_uniform_element gl_FogParamsOptimizedMESA_elements[] = {
Ian Romanick92e412e2011-01-24 16:55:50 -0800263 {NULL, {STATE_INTERNAL, STATE_FOG_PARAMS_OPTIMIZED}, SWIZZLE_XYZW},
264};
265
Eric Anholtf868cb02011-07-16 17:41:26 -0700266static struct gl_builtin_uniform_element gl_CurrentAttribVertMESA_elements[] = {
267 {NULL, {STATE_INTERNAL, STATE_CURRENT_ATTRIB, 0}, SWIZZLE_XYZW},
268};
269
270static struct gl_builtin_uniform_element gl_CurrentAttribFragMESA_elements[] = {
271 {NULL, {STATE_INTERNAL, STATE_CURRENT_ATTRIB_MAYBE_VP_CLAMPED, 0}, SWIZZLE_XYZW},
272};
273
Ian Romanick92e412e2011-01-24 16:55:50 -0800274#define MATRIX(name, statevar, modifier) \
275 static struct gl_builtin_uniform_element name ## _elements[] = { \
276 { NULL, { statevar, 0, 0, 0, modifier}, SWIZZLE_XYZW }, \
277 { NULL, { statevar, 0, 1, 1, modifier}, SWIZZLE_XYZW }, \
278 { NULL, { statevar, 0, 2, 2, modifier}, SWIZZLE_XYZW }, \
279 { NULL, { statevar, 0, 3, 3, modifier}, SWIZZLE_XYZW }, \
280 }
281
282MATRIX(gl_ModelViewMatrix,
283 STATE_MODELVIEW_MATRIX, STATE_MATRIX_TRANSPOSE);
284MATRIX(gl_ModelViewMatrixInverse,
285 STATE_MODELVIEW_MATRIX, STATE_MATRIX_INVTRANS);
286MATRIX(gl_ModelViewMatrixTranspose,
287 STATE_MODELVIEW_MATRIX, 0);
288MATRIX(gl_ModelViewMatrixInverseTranspose,
289 STATE_MODELVIEW_MATRIX, STATE_MATRIX_INVERSE);
290
291MATRIX(gl_ProjectionMatrix,
292 STATE_PROJECTION_MATRIX, STATE_MATRIX_TRANSPOSE);
293MATRIX(gl_ProjectionMatrixInverse,
294 STATE_PROJECTION_MATRIX, STATE_MATRIX_INVTRANS);
295MATRIX(gl_ProjectionMatrixTranspose,
296 STATE_PROJECTION_MATRIX, 0);
297MATRIX(gl_ProjectionMatrixInverseTranspose,
298 STATE_PROJECTION_MATRIX, STATE_MATRIX_INVERSE);
299
300MATRIX(gl_ModelViewProjectionMatrix,
301 STATE_MVP_MATRIX, STATE_MATRIX_TRANSPOSE);
302MATRIX(gl_ModelViewProjectionMatrixInverse,
303 STATE_MVP_MATRIX, STATE_MATRIX_INVTRANS);
304MATRIX(gl_ModelViewProjectionMatrixTranspose,
305 STATE_MVP_MATRIX, 0);
306MATRIX(gl_ModelViewProjectionMatrixInverseTranspose,
307 STATE_MVP_MATRIX, STATE_MATRIX_INVERSE);
308
309MATRIX(gl_TextureMatrix,
310 STATE_TEXTURE_MATRIX, STATE_MATRIX_TRANSPOSE);
311MATRIX(gl_TextureMatrixInverse,
312 STATE_TEXTURE_MATRIX, STATE_MATRIX_INVTRANS);
313MATRIX(gl_TextureMatrixTranspose,
314 STATE_TEXTURE_MATRIX, 0);
315MATRIX(gl_TextureMatrixInverseTranspose,
316 STATE_TEXTURE_MATRIX, STATE_MATRIX_INVERSE);
317
318static struct gl_builtin_uniform_element gl_NormalMatrix_elements[] = {
319 { NULL, { STATE_MODELVIEW_MATRIX, 0, 0, 0, STATE_MATRIX_INVERSE},
Eric Anholtcc4ddc32011-10-18 17:17:28 -0700320 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_Z) },
Ian Romanick92e412e2011-01-24 16:55:50 -0800321 { NULL, { STATE_MODELVIEW_MATRIX, 0, 1, 1, STATE_MATRIX_INVERSE},
Eric Anholtcc4ddc32011-10-18 17:17:28 -0700322 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_Z) },
Ian Romanick92e412e2011-01-24 16:55:50 -0800323 { NULL, { STATE_MODELVIEW_MATRIX, 0, 2, 2, STATE_MATRIX_INVERSE},
Eric Anholtcc4ddc32011-10-18 17:17:28 -0700324 MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_Z) },
Ian Romanick92e412e2011-01-24 16:55:50 -0800325};
326
327#undef MATRIX
328
329#define STATEVAR(name) {#name, name ## _elements, Elements(name ## _elements)}
330
331const struct gl_builtin_uniform_desc _mesa_builtin_uniform_desc[] = {
332 STATEVAR(gl_DepthRange),
333 STATEVAR(gl_ClipPlane),
334 STATEVAR(gl_Point),
335 STATEVAR(gl_FrontMaterial),
336 STATEVAR(gl_BackMaterial),
337 STATEVAR(gl_LightSource),
338 STATEVAR(gl_LightModel),
339 STATEVAR(gl_FrontLightModelProduct),
340 STATEVAR(gl_BackLightModelProduct),
341 STATEVAR(gl_FrontLightProduct),
342 STATEVAR(gl_BackLightProduct),
343 STATEVAR(gl_TextureEnvColor),
344 STATEVAR(gl_EyePlaneS),
345 STATEVAR(gl_EyePlaneT),
346 STATEVAR(gl_EyePlaneR),
347 STATEVAR(gl_EyePlaneQ),
348 STATEVAR(gl_ObjectPlaneS),
349 STATEVAR(gl_ObjectPlaneT),
350 STATEVAR(gl_ObjectPlaneR),
351 STATEVAR(gl_ObjectPlaneQ),
352 STATEVAR(gl_Fog),
353
354 STATEVAR(gl_ModelViewMatrix),
355 STATEVAR(gl_ModelViewMatrixInverse),
356 STATEVAR(gl_ModelViewMatrixTranspose),
357 STATEVAR(gl_ModelViewMatrixInverseTranspose),
358
359 STATEVAR(gl_ProjectionMatrix),
360 STATEVAR(gl_ProjectionMatrixInverse),
361 STATEVAR(gl_ProjectionMatrixTranspose),
362 STATEVAR(gl_ProjectionMatrixInverseTranspose),
363
364 STATEVAR(gl_ModelViewProjectionMatrix),
365 STATEVAR(gl_ModelViewProjectionMatrixInverse),
366 STATEVAR(gl_ModelViewProjectionMatrixTranspose),
367 STATEVAR(gl_ModelViewProjectionMatrixInverseTranspose),
368
369 STATEVAR(gl_TextureMatrix),
370 STATEVAR(gl_TextureMatrixInverse),
371 STATEVAR(gl_TextureMatrixTranspose),
372 STATEVAR(gl_TextureMatrixInverseTranspose),
373
374 STATEVAR(gl_NormalMatrix),
375 STATEVAR(gl_NormalScale),
376
Eric Anholt4fc9a982011-10-21 10:45:48 -0700377 STATEVAR(gl_BumpRotMatrix0MESA),
378 STATEVAR(gl_BumpRotMatrix1MESA),
379 STATEVAR(gl_FogParamsOptimizedMESA),
Eric Anholtf868cb02011-07-16 17:41:26 -0700380 STATEVAR(gl_CurrentAttribVertMESA),
381 STATEVAR(gl_CurrentAttribFragMESA),
Ian Romanick92e412e2011-01-24 16:55:50 -0800382
383 {NULL, NULL, 0}
384};
385
Ian Romanickc77b2572010-04-07 16:59:46 -0700386static ir_variable *
Ian Romanickdfdff942011-01-24 16:45:11 -0800387add_variable(exec_list *instructions, glsl_symbol_table *symtab,
388 const char *name, const glsl_type *type,
389 enum ir_variable_mode mode, int slot)
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800390{
Ian Romanick7e2aa912010-07-19 17:12:42 -0700391 ir_variable *var = new(symtab) ir_variable(type, name, mode);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800392
Eric Anholt71df19f2010-04-19 11:10:37 -0700393 switch (var->mode) {
Ian Romanicke2f84f02010-06-29 15:19:11 -0700394 case ir_var_auto:
Eric Anholt71df19f2010-04-19 11:10:37 -0700395 case ir_var_in:
Kenneth Graunke819d57f2011-01-12 15:37:37 -0800396 case ir_var_const_in:
Eric Anholt046bef22010-08-04 20:33:57 -0700397 case ir_var_uniform:
Brian Paul7ce18632010-12-08 18:25:38 -0700398 case ir_var_system_value:
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800399 var->read_only = true;
Eric Anholt71df19f2010-04-19 11:10:37 -0700400 break;
401 case ir_var_inout:
Eric Anholt71df19f2010-04-19 11:10:37 -0700402 case ir_var_out:
Eric Anholt71df19f2010-04-19 11:10:37 -0700403 break;
404 default:
405 assert(0);
406 break;
407 }
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800408
Ian Romanicked0626e2010-06-21 11:42:57 -0700409 var->location = slot;
Ian Romanick68a4fc92010-10-07 17:21:22 -0700410 var->explicit_location = (slot >= 0);
Ian Romanicked0626e2010-06-21 11:42:57 -0700411
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800412 /* Once the variable is created an initialized, add it to the symbol table
413 * and add the declaration to the IR stream.
414 */
415 instructions->push_tail(var);
416
Eric Anholt001eee52010-11-05 06:11:24 -0700417 symtab->add_variable(var);
Ian Romanickc77b2572010-04-07 16:59:46 -0700418 return var;
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800419}
420
Eric Anholt85b5dba2010-07-28 12:23:51 -0700421static ir_variable *
Ian Romanickdfdff942011-01-24 16:45:11 -0800422add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
Eric Anholt85b5dba2010-07-28 12:23:51 -0700423 const char *name, const glsl_type *type)
424{
Ian Romanick89d81ab2011-01-25 10:41:20 -0800425 ir_variable *const uni =
426 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
427
428 unsigned i;
429 for (i = 0; _mesa_builtin_uniform_desc[i].name != NULL; i++) {
430 if (strcmp(_mesa_builtin_uniform_desc[i].name, name) == 0) {
431 break;
432 }
433 }
434
435 assert(_mesa_builtin_uniform_desc[i].name != NULL);
436 const struct gl_builtin_uniform_desc* const statevar =
437 &_mesa_builtin_uniform_desc[i];
438
439 const unsigned array_count = type->is_array() ? type->length : 1;
440 uni->num_state_slots = array_count * statevar->num_elements;
441
442 ir_state_slot *slots =
443 ralloc_array(uni, ir_state_slot, uni->num_state_slots);
444
445 uni->state_slots = slots;
446
447 for (unsigned a = 0; a < array_count; a++) {
448 for (unsigned j = 0; j < statevar->num_elements; j++) {
449 struct gl_builtin_uniform_element *element = &statevar->elements[j];
450
451 memcpy(slots->tokens, element->tokens, sizeof(element->tokens));
452 if (type->is_array()) {
Eric Anholtf868cb02011-07-16 17:41:26 -0700453 if (strcmp(name, "gl_CurrentAttribVertMESA") == 0 ||
454 strcmp(name, "gl_CurrentAttribFragMESA") == 0) {
455 slots->tokens[2] = a;
456 } else {
457 slots->tokens[1] = a;
458 }
Ian Romanick89d81ab2011-01-25 10:41:20 -0800459 }
460
461 slots->swizzle = element->swizzle;
462 slots++;
463 }
464 }
465
466 return uni;
Eric Anholt85b5dba2010-07-28 12:23:51 -0700467}
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700468
469static void
Ian Romanickdfdff942011-01-24 16:45:11 -0800470add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
471 const builtin_variable *proto)
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700472{
473 /* Create a new variable declaration from the description supplied by
474 * the caller.
475 */
476 const glsl_type *const type = symtab->get_type(proto->type);
477
478 assert(type != NULL);
479
Ian Romanick89d81ab2011-01-25 10:41:20 -0800480 if (proto->mode == ir_var_uniform) {
481 add_uniform(instructions, symtab, proto->name, type);
482 } else {
483 add_variable(instructions, symtab, proto->name, type, proto->mode,
484 proto->slot);
485 }
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700486}
487
Ian Romanickd3b39192011-10-31 14:43:27 -0700488static ir_variable *
Ian Romanickdfdff942011-01-24 16:45:11 -0800489add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
Eric Anholtf8946692010-07-20 14:03:35 -0700490 const char *name, int value)
491{
Ian Romanickdfdff942011-01-24 16:45:11 -0800492 ir_variable *const var = add_variable(instructions, symtab,
493 name, glsl_type::int_type,
494 ir_var_auto, -1);
Eric Anholtf8946692010-07-20 14:03:35 -0700495 var->constant_value = new(var) ir_constant(value);
Ian Romanickf37b1ad2011-10-31 14:31:07 -0700496 var->constant_initializer = new(var) ir_constant(value);
497 var->has_initializer = true;
Ian Romanickd3b39192011-10-31 14:43:27 -0700498 return var;
Eric Anholtf8946692010-07-20 14:03:35 -0700499}
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700500
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700501/* Several constants in GLSL ES have different names than normal desktop GLSL.
502 * Therefore, this function should only be called on the ES path.
503 */
504static void
505generate_100ES_uniforms(exec_list *instructions,
506 struct _mesa_glsl_parse_state *state)
507{
Ian Romanickdfdff942011-01-24 16:45:11 -0800508 glsl_symbol_table *const symtab = state->symbols;
509
510 add_builtin_constant(instructions, symtab, "gl_MaxVertexAttribs",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700511 state->Const.MaxVertexAttribs);
Ian Romanickdfdff942011-01-24 16:45:11 -0800512 add_builtin_constant(instructions, symtab, "gl_MaxVertexUniformVectors",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700513 state->Const.MaxVertexUniformComponents);
Ian Romanickdfdff942011-01-24 16:45:11 -0800514 add_builtin_constant(instructions, symtab, "gl_MaxVaryingVectors",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700515 state->Const.MaxVaryingFloats / 4);
Ian Romanickdfdff942011-01-24 16:45:11 -0800516 add_builtin_constant(instructions, symtab, "gl_MaxVertexTextureImageUnits",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700517 state->Const.MaxVertexTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800518 add_builtin_constant(instructions, symtab, "gl_MaxCombinedTextureImageUnits",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700519 state->Const.MaxCombinedTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800520 add_builtin_constant(instructions, symtab, "gl_MaxTextureImageUnits",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700521 state->Const.MaxTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800522 add_builtin_constant(instructions, symtab, "gl_MaxFragmentUniformVectors",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700523 state->Const.MaxFragmentUniformComponents);
524
Ian Romanickdfdff942011-01-24 16:45:11 -0800525 add_uniform(instructions, symtab, "gl_DepthRange",
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700526 state->symbols->get_type("gl_DepthRangeParameters"));
527}
528
Eric Anholt78fe3c92010-03-28 01:46:48 -0700529static void
530generate_110_uniforms(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800531 struct _mesa_glsl_parse_state *state,
532 bool add_deprecated)
Eric Anholt78fe3c92010-03-28 01:46:48 -0700533{
Ian Romanickdfdff942011-01-24 16:45:11 -0800534 glsl_symbol_table *const symtab = state->symbols;
535
Eric Anholt177ccd22012-03-09 11:38:34 -0800536 if (add_deprecated) {
537 for (unsigned i = 0
538 ; i < Elements(builtin_110_deprecated_uniforms)
539 ; i++) {
540 add_builtin_variable(instructions, symtab,
541 & builtin_110_deprecated_uniforms[i]);
542 }
Eric Anholt78fe3c92010-03-28 01:46:48 -0700543 }
544
Eric Anholt177ccd22012-03-09 11:38:34 -0800545 if (add_deprecated) {
546 add_builtin_constant(instructions, symtab, "gl_MaxLights",
547 state->Const.MaxLights);
548 add_builtin_constant(instructions, symtab, "gl_MaxClipPlanes",
549 state->Const.MaxClipPlanes);
550 add_builtin_constant(instructions, symtab, "gl_MaxTextureUnits",
551 state->Const.MaxTextureUnits);
552 add_builtin_constant(instructions, symtab, "gl_MaxTextureCoords",
553 state->Const.MaxTextureCoords);
554 }
Ian Romanickdfdff942011-01-24 16:45:11 -0800555 add_builtin_constant(instructions, symtab, "gl_MaxVertexAttribs",
Eric Anholtf8946692010-07-20 14:03:35 -0700556 state->Const.MaxVertexAttribs);
Ian Romanickdfdff942011-01-24 16:45:11 -0800557 add_builtin_constant(instructions, symtab, "gl_MaxVertexUniformComponents",
Eric Anholtf8946692010-07-20 14:03:35 -0700558 state->Const.MaxVertexUniformComponents);
Ian Romanickdfdff942011-01-24 16:45:11 -0800559 add_builtin_constant(instructions, symtab, "gl_MaxVaryingFloats",
Eric Anholtf8946692010-07-20 14:03:35 -0700560 state->Const.MaxVaryingFloats);
Ian Romanickdfdff942011-01-24 16:45:11 -0800561 add_builtin_constant(instructions, symtab, "gl_MaxVertexTextureImageUnits",
Eric Anholtf8946692010-07-20 14:03:35 -0700562 state->Const.MaxVertexTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800563 add_builtin_constant(instructions, symtab, "gl_MaxCombinedTextureImageUnits",
Eric Anholtf8946692010-07-20 14:03:35 -0700564 state->Const.MaxCombinedTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800565 add_builtin_constant(instructions, symtab, "gl_MaxTextureImageUnits",
Eric Anholtf8946692010-07-20 14:03:35 -0700566 state->Const.MaxTextureImageUnits);
Ian Romanickdfdff942011-01-24 16:45:11 -0800567 add_builtin_constant(instructions, symtab, "gl_MaxFragmentUniformComponents",
Eric Anholtf8946692010-07-20 14:03:35 -0700568 state->Const.MaxFragmentUniformComponents);
Ian Romanick127308b2010-07-01 13:30:50 -0700569
Eric Anholt177ccd22012-03-09 11:38:34 -0800570 if (add_deprecated) {
571 const glsl_type *const mat4_array_type =
572 glsl_type::get_array_instance(glsl_type::mat4_type,
573 state->Const.MaxTextureCoords);
Ian Romanick3eba5932010-04-26 14:59:32 -0700574
Eric Anholt177ccd22012-03-09 11:38:34 -0800575 add_uniform(instructions, symtab, "gl_TextureMatrix", mat4_array_type);
576 add_uniform(instructions, symtab, "gl_TextureMatrixInverse", mat4_array_type);
577 add_uniform(instructions, symtab, "gl_TextureMatrixTranspose", mat4_array_type);
578 add_uniform(instructions, symtab, "gl_TextureMatrixInverseTranspose", mat4_array_type);
579 }
Eric Anholt78fe3c92010-03-28 01:46:48 -0700580
Ian Romanickdfdff942011-01-24 16:45:11 -0800581 add_uniform(instructions, symtab, "gl_DepthRange",
582 symtab->get_type("gl_DepthRangeParameters"));
Eric Anholt78fe3c92010-03-28 01:46:48 -0700583
Eric Anholt177ccd22012-03-09 11:38:34 -0800584 if (add_deprecated) {
585 add_uniform(instructions, symtab, "gl_ClipPlane",
586 glsl_type::get_array_instance(glsl_type::vec4_type,
587 state->Const.MaxClipPlanes));
588 add_uniform(instructions, symtab, "gl_Point",
589 symtab->get_type("gl_PointParameters"));
Eric Anholt85b5dba2010-07-28 12:23:51 -0700590
Eric Anholt177ccd22012-03-09 11:38:34 -0800591 const glsl_type *const material_parameters_type =
592 symtab->get_type("gl_MaterialParameters");
593 add_uniform(instructions, symtab, "gl_FrontMaterial", material_parameters_type);
594 add_uniform(instructions, symtab, "gl_BackMaterial", material_parameters_type);
Eric Anholt78fe3c92010-03-28 01:46:48 -0700595
Eric Anholt177ccd22012-03-09 11:38:34 -0800596 const glsl_type *const light_source_array_type =
597 glsl_type::get_array_instance(symtab->get_type("gl_LightSourceParameters"), state->Const.MaxLights);
Eric Anholtaa579432010-05-19 14:09:04 -0700598
Eric Anholt177ccd22012-03-09 11:38:34 -0800599 add_uniform(instructions, symtab, "gl_LightSource", light_source_array_type);
Eric Anholtaa579432010-05-19 14:09:04 -0700600
Eric Anholt177ccd22012-03-09 11:38:34 -0800601 const glsl_type *const light_model_products_type =
602 symtab->get_type("gl_LightModelProducts");
603 add_uniform(instructions, symtab, "gl_FrontLightModelProduct",
604 light_model_products_type);
605 add_uniform(instructions, symtab, "gl_BackLightModelProduct",
606 light_model_products_type);
Eric Anholt85b5dba2010-07-28 12:23:51 -0700607
Eric Anholt177ccd22012-03-09 11:38:34 -0800608 const glsl_type *const light_products_type =
609 glsl_type::get_array_instance(symtab->get_type("gl_LightProducts"),
610 state->Const.MaxLights);
611 add_uniform(instructions, symtab, "gl_FrontLightProduct", light_products_type);
612 add_uniform(instructions, symtab, "gl_BackLightProduct", light_products_type);
Eric Anholt85b5dba2010-07-28 12:23:51 -0700613
Eric Anholt177ccd22012-03-09 11:38:34 -0800614 add_uniform(instructions, symtab, "gl_TextureEnvColor",
615 glsl_type::get_array_instance(glsl_type::vec4_type,
616 state->Const.MaxTextureUnits));
Eric Anholt85b5dba2010-07-28 12:23:51 -0700617
Eric Anholt177ccd22012-03-09 11:38:34 -0800618 const glsl_type *const texcoords_vec4 =
619 glsl_type::get_array_instance(glsl_type::vec4_type,
620 state->Const.MaxTextureCoords);
621 add_uniform(instructions, symtab, "gl_EyePlaneS", texcoords_vec4);
622 add_uniform(instructions, symtab, "gl_EyePlaneT", texcoords_vec4);
623 add_uniform(instructions, symtab, "gl_EyePlaneR", texcoords_vec4);
624 add_uniform(instructions, symtab, "gl_EyePlaneQ", texcoords_vec4);
625 add_uniform(instructions, symtab, "gl_ObjectPlaneS", texcoords_vec4);
626 add_uniform(instructions, symtab, "gl_ObjectPlaneT", texcoords_vec4);
627 add_uniform(instructions, symtab, "gl_ObjectPlaneR", texcoords_vec4);
628 add_uniform(instructions, symtab, "gl_ObjectPlaneQ", texcoords_vec4);
Eric Anholt85b5dba2010-07-28 12:23:51 -0700629
Eric Anholt177ccd22012-03-09 11:38:34 -0800630 add_uniform(instructions, symtab, "gl_Fog",
631 symtab->get_type("gl_FogParameters"));
632 }
Eric Anholtf868cb02011-07-16 17:41:26 -0700633
634 /* Mesa-internal current attrib state */
635 const glsl_type *const vert_attribs =
636 glsl_type::get_array_instance(glsl_type::vec4_type, VERT_ATTRIB_MAX);
637 add_uniform(instructions, symtab, "gl_CurrentAttribVertMESA", vert_attribs);
638 const glsl_type *const frag_attribs =
639 glsl_type::get_array_instance(glsl_type::vec4_type, FRAG_ATTRIB_MAX);
640 add_uniform(instructions, symtab, "gl_CurrentAttribFragMESA", frag_attribs);
Eric Anholt78fe3c92010-03-28 01:46:48 -0700641}
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800642
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700643/* This function should only be called for ES, not desktop GL. */
644static void
645generate_100ES_vs_variables(exec_list *instructions,
646 struct _mesa_glsl_parse_state *state)
647{
648 for (unsigned i = 0; i < Elements(builtin_core_vs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800649 add_builtin_variable(instructions, state->symbols,
650 & builtin_core_vs_variables[i]);
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700651 }
652
653 generate_100ES_uniforms(instructions, state);
654
655 generate_ARB_draw_buffers_variables(instructions, state, false,
656 vertex_shader);
657}
658
659
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800660static void
661generate_110_vs_variables(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800662 struct _mesa_glsl_parse_state *state,
663 bool add_deprecated)
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800664{
665 for (unsigned i = 0; i < Elements(builtin_core_vs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800666 add_builtin_variable(instructions, state->symbols,
667 & builtin_core_vs_variables[i]);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800668 }
669
Eric Anholt177ccd22012-03-09 11:38:34 -0800670 if (add_deprecated) {
671 for (unsigned i = 0
672 ; i < Elements(builtin_110_deprecated_vs_variables)
673 ; i++) {
674 add_builtin_variable(instructions, state->symbols,
675 & builtin_110_deprecated_vs_variables[i]);
676 }
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800677 }
Eric Anholt177ccd22012-03-09 11:38:34 -0800678 generate_110_uniforms(instructions, state, add_deprecated);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800679
Ian Romanickcd00d5b2010-07-01 13:17:54 -0700680 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
681 *
682 * "As with all arrays, indices used to subscript gl_TexCoord must
683 * either be an integral constant expressions, or this array must be
684 * re-declared by the shader with a size. The size can be at most
685 * gl_MaxTextureCoords. Using indexes close to 0 may aid the
686 * implementation in preserving varying resources."
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800687 */
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700688 const glsl_type *const vec4_array_type =
Ian Romanickf38d15b2010-07-20 15:33:40 -0700689 glsl_type::get_array_instance(glsl_type::vec4_type, 0);
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700690
Ian Romanickdfdff942011-01-24 16:45:11 -0800691 add_variable(instructions, state->symbols,
692 "gl_TexCoord", vec4_array_type, ir_var_out, VERT_RESULT_TEX0);
Ian Romanick22971e92010-06-29 15:29:56 -0700693
694 generate_ARB_draw_buffers_variables(instructions, state, false,
695 vertex_shader);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800696}
697
698
699static void
700generate_120_vs_variables(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800701 struct _mesa_glsl_parse_state *state,
702 bool add_deprecated)
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800703{
704 /* GLSL version 1.20 did not add any built-in variables in the vertex
705 * shader.
706 */
Eric Anholt177ccd22012-03-09 11:38:34 -0800707 generate_110_vs_variables(instructions, state, add_deprecated);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800708}
709
710
711static void
Paul Berry36c4b1a2011-08-11 17:33:06 -0700712generate_130_uniforms(exec_list *instructions,
713 struct _mesa_glsl_parse_state *state)
714{
715 glsl_symbol_table *const symtab = state->symbols;
716
717 add_builtin_constant(instructions, symtab, "gl_MaxClipDistances",
718 state->Const.MaxClipPlanes);
Eric Anholt2ecfa882011-10-21 15:17:16 -0700719 add_builtin_constant(instructions, symtab, "gl_MaxVaryingComponents",
720 state->Const.MaxVaryingFloats);
Paul Berry36c4b1a2011-08-11 17:33:06 -0700721}
722
723
724static void
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800725generate_130_vs_variables(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800726 struct _mesa_glsl_parse_state *state,
727 bool add_deprecated)
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800728{
Eric Anholt177ccd22012-03-09 11:38:34 -0800729 generate_120_vs_variables(instructions, state, add_deprecated);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800730
731 for (unsigned i = 0; i < Elements(builtin_130_vs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800732 add_builtin_variable(instructions, state->symbols,
733 & builtin_130_vs_variables[i]);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800734 }
735
Paul Berry36c4b1a2011-08-11 17:33:06 -0700736 generate_130_uniforms(instructions, state);
737
Paul Berryaf243b52011-08-11 15:03:19 -0700738 /* From the GLSL 1.30 spec, section 7.1 (Vertex Shader Special
739 * Variables):
740 *
741 * The gl_ClipDistance array is predeclared as unsized and must
742 * be sized by the shader either redeclaring it with a size or
743 * indexing it only with integral constant expressions.
744 *
745 * We represent this in Mesa by initially declaring the array as
746 * size 0.
747 */
Eric Anholt271e1992010-04-02 23:47:06 -0700748 const glsl_type *const clip_distance_array_type =
Paul Berryaf243b52011-08-11 15:03:19 -0700749 glsl_type::get_array_instance(glsl_type::float_type, 0);
Ian Romanicked0626e2010-06-21 11:42:57 -0700750
Ian Romanickdfdff942011-01-24 16:45:11 -0800751 add_variable(instructions, state->symbols,
Paul Berry3d7c5a42011-08-19 13:12:23 -0700752 "gl_ClipDistance", clip_distance_array_type, ir_var_out,
753 VERT_RESULT_CLIP_DIST0);
Eric Anholt271e1992010-04-02 23:47:06 -0700754
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800755}
756
757
758static void
759initialize_vs_variables(exec_list *instructions,
760 struct _mesa_glsl_parse_state *state)
761{
762
763 switch (state->language_version) {
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700764 case 100:
765 generate_100ES_vs_variables(instructions, state);
766 break;
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800767 case 110:
Eric Anholt177ccd22012-03-09 11:38:34 -0800768 generate_110_vs_variables(instructions, state, true);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800769 break;
770 case 120:
Eric Anholt177ccd22012-03-09 11:38:34 -0800771 generate_120_vs_variables(instructions, state, true);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800772 break;
773 case 130:
Eric Anholt177ccd22012-03-09 11:38:34 -0800774 generate_130_vs_variables(instructions, state, true);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800775 break;
Eric Anholtc5ff9a82012-03-08 13:49:15 -0800776 case 140:
Eric Anholt177ccd22012-03-09 11:38:34 -0800777 generate_130_vs_variables(instructions, state, false);
Eric Anholtc5ff9a82012-03-08 13:49:15 -0800778 break;
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800779 }
Brian Paul7ce18632010-12-08 18:25:38 -0700780
Eric Anholt177ccd22012-03-09 11:38:34 -0800781 generate_ARB_draw_instanced_variables(instructions, state, false,
782 vertex_shader);
Ian Romanickadfb0cd2010-03-10 10:43:16 -0800783}
784
Brian Paul7ce18632010-12-08 18:25:38 -0700785
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700786/* This function should only be called for ES, not desktop GL. */
787static void
788generate_100ES_fs_variables(exec_list *instructions,
789 struct _mesa_glsl_parse_state *state)
790{
791 for (unsigned i = 0; i < Elements(builtin_core_fs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800792 add_builtin_variable(instructions, state->symbols,
793 & builtin_core_fs_variables[i]);
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700794 }
795
796 for (unsigned i = 0; i < Elements(builtin_100ES_fs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800797 add_builtin_variable(instructions, state->symbols,
798 & builtin_100ES_fs_variables[i]);
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700799 }
800
801 generate_100ES_uniforms(instructions, state);
802
803 generate_ARB_draw_buffers_variables(instructions, state, false,
804 fragment_shader);
805}
806
Eric Anholtb3f743a2010-03-25 14:48:25 -0700807static void
808generate_110_fs_variables(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800809 struct _mesa_glsl_parse_state *state,
810 bool add_deprecated)
Eric Anholtb3f743a2010-03-25 14:48:25 -0700811{
812 for (unsigned i = 0; i < Elements(builtin_core_fs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800813 add_builtin_variable(instructions, state->symbols,
814 & builtin_core_fs_variables[i]);
Eric Anholtb3f743a2010-03-25 14:48:25 -0700815 }
816
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700817 for (unsigned i = 0; i < Elements(builtin_110_fs_variables); i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800818 add_builtin_variable(instructions, state->symbols,
819 & builtin_110_fs_variables[i]);
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -0700820 }
821
Eric Anholt177ccd22012-03-09 11:38:34 -0800822 if (add_deprecated) {
823 for (unsigned i = 0
824 ; i < Elements(builtin_110_deprecated_fs_variables)
825 ; i++) {
826 add_builtin_variable(instructions, state->symbols,
827 & builtin_110_deprecated_fs_variables[i]);
828 }
Eric Anholt0f09aea2010-03-27 12:48:57 -0700829 }
Eric Anholt177ccd22012-03-09 11:38:34 -0800830
831 generate_110_uniforms(instructions, state, add_deprecated);
Eric Anholt0f09aea2010-03-27 12:48:57 -0700832
Ian Romanickcd00d5b2010-07-01 13:17:54 -0700833 /* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
834 *
835 * "As with all arrays, indices used to subscript gl_TexCoord must
836 * either be an integral constant expressions, or this array must be
837 * re-declared by the shader with a size. The size can be at most
838 * gl_MaxTextureCoords. Using indexes close to 0 may aid the
839 * implementation in preserving varying resources."
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700840 */
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700841 const glsl_type *const vec4_array_type =
Ian Romanickf38d15b2010-07-20 15:33:40 -0700842 glsl_type::get_array_instance(glsl_type::vec4_type, 0);
Ian Romanick3f9a73d2010-04-02 11:59:57 -0700843
Ian Romanickdfdff942011-01-24 16:45:11 -0800844 add_variable(instructions, state->symbols,
845 "gl_TexCoord", vec4_array_type, ir_var_in, FRAG_ATTRIB_TEX0);
Ian Romanick9c4b1f22010-06-29 15:10:09 -0700846
Ian Romanick22971e92010-06-29 15:29:56 -0700847 generate_ARB_draw_buffers_variables(instructions, state, false,
848 fragment_shader);
Eric Anholtb3f743a2010-03-25 14:48:25 -0700849}
850
Ian Romanickc77b2572010-04-07 16:59:46 -0700851
852static void
Ian Romanick22971e92010-06-29 15:29:56 -0700853generate_ARB_draw_buffers_variables(exec_list *instructions,
854 struct _mesa_glsl_parse_state *state,
855 bool warn, _mesa_glsl_parser_targets target)
Ian Romanickc77b2572010-04-07 16:59:46 -0700856{
Ian Romanick22971e92010-06-29 15:29:56 -0700857 /* gl_MaxDrawBuffers is available in all shader stages.
858 */
Ian Romanicke2f84f02010-06-29 15:19:11 -0700859 ir_variable *const mdb =
Ian Romanickd3b39192011-10-31 14:43:27 -0700860 add_builtin_constant(instructions, state->symbols, "gl_MaxDrawBuffers",
861 state->Const.MaxDrawBuffers);
Ian Romanicke2f84f02010-06-29 15:19:11 -0700862
863 if (warn)
864 mdb->warn_extension = "GL_ARB_draw_buffers";
865
Ian Romanick22971e92010-06-29 15:29:56 -0700866 /* gl_FragData is only available in the fragment shader.
867 */
868 if (target == fragment_shader) {
869 const glsl_type *const vec4_array_type =
Ian Romanickf38d15b2010-07-20 15:33:40 -0700870 glsl_type::get_array_instance(glsl_type::vec4_type,
Ian Romanick22971e92010-06-29 15:29:56 -0700871 state->Const.MaxDrawBuffers);
Ian Romanickc77b2572010-04-07 16:59:46 -0700872
Ian Romanick22971e92010-06-29 15:29:56 -0700873 ir_variable *const fd =
Ian Romanickdfdff942011-01-24 16:45:11 -0800874 add_variable(instructions, state->symbols,
875 "gl_FragData", vec4_array_type,
876 ir_var_out, FRAG_RESULT_DATA0);
Ian Romanick22971e92010-06-29 15:29:56 -0700877
878 if (warn)
879 fd->warn_extension = "GL_ARB_draw_buffers";
880 }
Ian Romanickc77b2572010-04-07 16:59:46 -0700881}
882
Brian Paul7ce18632010-12-08 18:25:38 -0700883
884static void
885generate_ARB_draw_instanced_variables(exec_list *instructions,
886 struct _mesa_glsl_parse_state *state,
887 bool warn,
888 _mesa_glsl_parser_targets target)
889{
890 /* gl_InstanceIDARB is only available in the vertex shader.
891 */
Eric Anholt177ccd22012-03-09 11:38:34 -0800892 if (target != vertex_shader)
893 return;
894
895 if (state->ARB_draw_instanced_enable) {
Ian Romanick1e6a2c12012-02-29 08:29:39 -0800896 ir_variable *inst =
Ian Romanickdfdff942011-01-24 16:45:11 -0800897 add_variable(instructions, state->symbols,
898 "gl_InstanceIDARB", glsl_type::int_type,
899 ir_var_system_value, SYSTEM_VALUE_INSTANCE_ID);
Brian Paul7ce18632010-12-08 18:25:38 -0700900
901 if (warn)
902 inst->warn_extension = "GL_ARB_draw_instanced";
Eric Anholt177ccd22012-03-09 11:38:34 -0800903 }
Ian Romanick1e6a2c12012-02-29 08:29:39 -0800904
Eric Anholt177ccd22012-03-09 11:38:34 -0800905 if (state->ARB_draw_instanced_enable || state->language_version >= 140) {
Ian Romanick1e6a2c12012-02-29 08:29:39 -0800906 /* Originally ARB_draw_instanced only specified that ARB decorated name.
907 * Since no vendor actually implemented that behavior and some apps use
908 * the undecorated name, the extension now specifies that both names are
909 * available.
910 */
Eric Anholt177ccd22012-03-09 11:38:34 -0800911 ir_variable *inst =
912 add_variable(instructions, state->symbols,
913 "gl_InstanceID", glsl_type::int_type,
914 ir_var_system_value, SYSTEM_VALUE_INSTANCE_ID);
Ian Romanick1e6a2c12012-02-29 08:29:39 -0800915
Eric Anholt177ccd22012-03-09 11:38:34 -0800916 if (state->language_version < 140 && warn)
Ian Romanick1e6a2c12012-02-29 08:29:39 -0800917 inst->warn_extension = "GL_ARB_draw_instanced";
Brian Paul7ce18632010-12-08 18:25:38 -0700918 }
919}
920
921
Dave Airlied9671862010-10-06 09:36:02 +1000922static void
923generate_ARB_shader_stencil_export_variables(exec_list *instructions,
924 struct _mesa_glsl_parse_state *state,
925 bool warn)
926{
927 /* gl_FragStencilRefARB is only available in the fragment shader.
928 */
929 ir_variable *const fd =
Ian Romanickdfdff942011-01-24 16:45:11 -0800930 add_variable(instructions, state->symbols,
931 "gl_FragStencilRefARB", glsl_type::int_type,
932 ir_var_out, FRAG_RESULT_STENCIL);
Dave Airlied9671862010-10-06 09:36:02 +1000933
934 if (warn)
935 fd->warn_extension = "GL_ARB_shader_stencil_export";
936}
Ian Romanickc77b2572010-04-07 16:59:46 -0700937
Eric Anholtb3f743a2010-03-25 14:48:25 -0700938static void
Marek Olšák5ba2e7a2011-05-02 16:41:04 +0200939generate_AMD_shader_stencil_export_variables(exec_list *instructions,
940 struct _mesa_glsl_parse_state *state,
941 bool warn)
942{
943 /* gl_FragStencilRefAMD is only available in the fragment shader.
944 */
945 ir_variable *const fd =
946 add_variable(instructions, state->symbols,
947 "gl_FragStencilRefAMD", glsl_type::int_type,
948 ir_var_out, FRAG_RESULT_STENCIL);
949
950 if (warn)
951 fd->warn_extension = "GL_AMD_shader_stencil_export";
952}
953
954static void
Eric Anholtb3f743a2010-03-25 14:48:25 -0700955generate_120_fs_variables(exec_list *instructions,
Eric Anholt177ccd22012-03-09 11:38:34 -0800956 struct _mesa_glsl_parse_state *state,
957 bool add_deprecated)
Eric Anholtb3f743a2010-03-25 14:48:25 -0700958{
Eric Anholt177ccd22012-03-09 11:38:34 -0800959 generate_110_fs_variables(instructions, state, add_deprecated);
Eric Anholt152b55e2010-07-07 19:45:22 -0700960
961 for (unsigned i = 0
962 ; i < Elements(builtin_120_fs_variables)
963 ; i++) {
Ian Romanickdfdff942011-01-24 16:45:11 -0800964 add_builtin_variable(instructions, state->symbols,
965 & builtin_120_fs_variables[i]);
Eric Anholt152b55e2010-07-07 19:45:22 -0700966 }
Eric Anholtb3f743a2010-03-25 14:48:25 -0700967}
968
969static void
Eric Anholt177ccd22012-03-09 11:38:34 -0800970generate_fs_clipdistance(exec_list *instructions,
971 struct _mesa_glsl_parse_state *state)
Eric Anholtb3f743a2010-03-25 14:48:25 -0700972{
Paul Berryaf243b52011-08-11 15:03:19 -0700973 /* From the GLSL 1.30 spec, section 7.2 (Fragment Shader Special
974 * Variables):
975 *
976 * The built-in input variable gl_ClipDistance array contains linearly
977 * interpolated values for the vertex values written by the vertex shader
978 * to the gl_ClipDistance vertex output variable. This array must be
979 * sized in the fragment shader either implicitly or explicitly to be the
980 * same size as it was sized in the vertex shader.
981 *
982 * In other words, the array must be pre-declared as implicitly sized. We
983 * represent this in Mesa by initially declaring the array as size 0.
984 */
Ian Romanick8645a952010-04-07 16:47:44 -0700985 const glsl_type *const clip_distance_array_type =
Paul Berryaf243b52011-08-11 15:03:19 -0700986 glsl_type::get_array_instance(glsl_type::float_type, 0);
Ian Romanicked0626e2010-06-21 11:42:57 -0700987
Ian Romanickdfdff942011-01-24 16:45:11 -0800988 add_variable(instructions, state->symbols,
Paul Berry3d7c5a42011-08-19 13:12:23 -0700989 "gl_ClipDistance", clip_distance_array_type, ir_var_in,
990 FRAG_ATTRIB_CLIP_DIST0);
Eric Anholtb3f743a2010-03-25 14:48:25 -0700991}
992
993static void
Eric Anholt177ccd22012-03-09 11:38:34 -0800994generate_130_fs_variables(exec_list *instructions,
995 struct _mesa_glsl_parse_state *state)
996{
997 generate_120_fs_variables(instructions, state, true);
998
999 generate_130_uniforms(instructions, state);
1000 generate_fs_clipdistance(instructions, state);
1001}
1002
1003
1004static void
1005generate_140_fs_variables(exec_list *instructions,
1006 struct _mesa_glsl_parse_state *state)
1007{
1008 generate_120_fs_variables(instructions, state, false);
1009
1010 generate_130_uniforms(instructions, state);
1011 generate_fs_clipdistance(instructions, state);
1012}
1013
1014static void
Eric Anholtb3f743a2010-03-25 14:48:25 -07001015initialize_fs_variables(exec_list *instructions,
1016 struct _mesa_glsl_parse_state *state)
1017{
1018
1019 switch (state->language_version) {
Kenneth Graunkeb4fe4d52010-08-07 02:45:33 -07001020 case 100:
1021 generate_100ES_fs_variables(instructions, state);
1022 break;
Eric Anholtb3f743a2010-03-25 14:48:25 -07001023 case 110:
Eric Anholt177ccd22012-03-09 11:38:34 -08001024 generate_110_fs_variables(instructions, state, true);
Eric Anholtb3f743a2010-03-25 14:48:25 -07001025 break;
1026 case 120:
Eric Anholt177ccd22012-03-09 11:38:34 -08001027 generate_120_fs_variables(instructions, state, true);
Eric Anholtb3f743a2010-03-25 14:48:25 -07001028 break;
1029 case 130:
Ian Romanick5e18b052010-06-29 14:21:05 -07001030 generate_130_fs_variables(instructions, state);
Eric Anholtb3f743a2010-03-25 14:48:25 -07001031 break;
Eric Anholtc5ff9a82012-03-08 13:49:15 -08001032 case 140:
Eric Anholt177ccd22012-03-09 11:38:34 -08001033 generate_140_fs_variables(instructions, state);
Eric Anholtc5ff9a82012-03-08 13:49:15 -08001034 break;
Eric Anholtb3f743a2010-03-25 14:48:25 -07001035 }
Dave Airlied9671862010-10-06 09:36:02 +10001036
1037 if (state->ARB_shader_stencil_export_enable)
1038 generate_ARB_shader_stencil_export_variables(instructions, state,
1039 state->ARB_shader_stencil_export_warn);
Marek Olšák5ba2e7a2011-05-02 16:41:04 +02001040
1041 if (state->AMD_shader_stencil_export_enable)
1042 generate_AMD_shader_stencil_export_variables(instructions, state,
1043 state->AMD_shader_stencil_export_warn);
Eric Anholtb3f743a2010-03-25 14:48:25 -07001044}
Ian Romanickadfb0cd2010-03-10 10:43:16 -08001045
1046void
1047_mesa_glsl_initialize_variables(exec_list *instructions,
1048 struct _mesa_glsl_parse_state *state)
1049{
1050 switch (state->target) {
1051 case vertex_shader:
1052 initialize_vs_variables(instructions, state);
1053 break;
1054 case geometry_shader:
Eric Anholtb3f743a2010-03-25 14:48:25 -07001055 break;
Ian Romanickadfb0cd2010-03-10 10:43:16 -08001056 case fragment_shader:
Eric Anholtb3f743a2010-03-25 14:48:25 -07001057 initialize_fs_variables(instructions, state);
Ian Romanickadfb0cd2010-03-10 10:43:16 -08001058 break;
Ian Romanickadfb0cd2010-03-10 10:43:16 -08001059 }
1060}