forked from antlr/grammars-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLSLParser.g4
455 lines (449 loc) · 9.22 KB
/
GLSLParser.g4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/*
MIT License
Copyright (c) 2022 Mustafa Said Ağca
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
parser grammar GLSLParser;
options { tokenVocab = GLSLLexer; }
translation_unit
: external_declaration* EOF
;
variable_identifier
: IDENTIFIER
;
primary_expression
: variable_identifier
| TRUE
| FALSE
| INTCONSTANT
| UINTCONSTANT
| FLOATCONSTANT
| DOUBLECONSTANT
| LEFT_PAREN expression RIGHT_PAREN
;
postfix_expression
: primary_expression
| postfix_expression LEFT_BRACKET integer_expression RIGHT_BRACKET
| postfix_expression LEFT_PAREN function_call_parameters? RIGHT_PAREN
| type_specifier LEFT_PAREN function_call_parameters? RIGHT_PAREN
| postfix_expression DOT field_selection
| postfix_expression INC_OP
| postfix_expression DEC_OP
;
field_selection
: variable_identifier
| function_call
;
integer_expression
: expression
;
function_call
: function_identifier LEFT_PAREN function_call_parameters? RIGHT_PAREN
;
function_identifier
: type_specifier
| postfix_expression
;
function_call_parameters
: assignment_expression (COMMA assignment_expression)*
| VOID
;
unary_expression
: postfix_expression
| INC_OP unary_expression
| DEC_OP unary_expression
| unary_operator unary_expression
;
unary_operator
: PLUS
| DASH
| BANG
| TILDE
;
assignment_expression
: constant_expression
| unary_expression assignment_operator assignment_expression
;
assignment_operator
: EQUAL
| MUL_ASSIGN
| DIV_ASSIGN
| MOD_ASSIGN
| ADD_ASSIGN
| SUB_ASSIGN
| LEFT_ASSIGN
| RIGHT_ASSIGN
| AND_ASSIGN
| XOR_ASSIGN
| OR_ASSIGN
;
binary_expression
: unary_expression
| binary_expression (STAR | SLASH | PERCENT) binary_expression
| binary_expression (PLUS | DASH) binary_expression
| binary_expression (LEFT_OP | RIGHT_OP) binary_expression
| binary_expression (LEFT_ANGLE | RIGHT_ANGLE | LE_OP | GE_OP) binary_expression
| binary_expression (EQ_OP | NE_OP) binary_expression
| binary_expression AMPERSAND binary_expression
| binary_expression CARET binary_expression
| binary_expression VERTICAL_BAR binary_expression
| binary_expression AND_OP binary_expression
| binary_expression XOR_OP binary_expression
| binary_expression OR_OP binary_expression
;
expression
: assignment_expression
| expression COMMA assignment_expression
;
constant_expression
: binary_expression
| binary_expression QUESTION expression COLON assignment_expression
;
declaration
: function_prototype SEMICOLON
| init_declarator_list SEMICOLON
| PRECISION precision_qualifier type_specifier SEMICOLON
| type_qualifier IDENTIFIER LEFT_BRACE struct_declaration_list RIGHT_BRACE (IDENTIFIER array_specifier?)? SEMICOLON
| type_qualifier identifier_list? SEMICOLON
;
identifier_list
: IDENTIFIER (COMMA IDENTIFIER)*
;
function_prototype
: fully_specified_type IDENTIFIER LEFT_PAREN function_parameters? RIGHT_PAREN
;
function_parameters
: parameter_declaration (COMMA parameter_declaration)*
;
parameter_declarator
: type_specifier IDENTIFIER array_specifier?
;
parameter_declaration
: type_qualifier (parameter_declarator | parameter_type_specifier)
| parameter_declarator
| parameter_type_specifier
;
parameter_type_specifier
: type_specifier
;
init_declarator_list
: single_declaration (COMMA typeless_declaration)*
;
single_declaration
: fully_specified_type typeless_declaration?
;
typeless_declaration
: IDENTIFIER array_specifier? (EQUAL initializer)?
;
fully_specified_type
: type_specifier
| type_qualifier type_specifier
;
invariant_qualifier
: INVARIANT
;
interpolation_qualifier
: SMOOTH
| FLAT
| NOPERSPECTIVE
;
layout_qualifier
: LAYOUT LEFT_PAREN layout_qualifier_id_list RIGHT_PAREN
;
layout_qualifier_id_list
: layout_qualifier_id (COMMA layout_qualifier_id)*
;
layout_qualifier_id
: IDENTIFIER (EQUAL constant_expression)?
| SHARED
;
precise_qualifier
: PRECISE
;
type_qualifier
: single_type_qualifier+
;
single_type_qualifier
: storage_qualifier
| layout_qualifier
| precision_qualifier
| interpolation_qualifier
| invariant_qualifier
| precise_qualifier
;
storage_qualifier
: CONST
| IN
| OUT
| INOUT
| CENTROID
| PATCH
| SAMPLE
| UNIFORM
| BUFFER
| SHARED
| COHERENT
| VOLATILE
| RESTRICT
| READONLY
| WRITEONLY
| SUBROUTINE (LEFT_PAREN type_name_list RIGHT_PAREN)?
| ATTRIBUTE
| VARYING
;
type_name_list
: type_name (COMMA type_name)*
;
type_name
: IDENTIFIER
;
type_specifier
: type_specifier_nonarray array_specifier?
;
array_specifier
: dimension+
;
dimension
: LEFT_BRACKET constant_expression? RIGHT_BRACKET
;
type_specifier_nonarray
: VOID
| FLOAT
| DOUBLE
| INT
| UINT
| BOOL
| VEC2
| VEC3
| VEC4
| DVEC2
| DVEC3
| DVEC4
| BVEC2
| BVEC3
| BVEC4
| IVEC2
| IVEC3
| IVEC4
| UVEC2
| UVEC3
| UVEC4
| MAT2
| MAT3
| MAT4
| MAT2X2
| MAT2X3
| MAT2X4
| MAT3X2
| MAT3X3
| MAT3X4
| MAT4X2
| MAT4X3
| MAT4X4
| DMAT2
| DMAT3
| DMAT4
| DMAT2X2
| DMAT2X3
| DMAT2X4
| DMAT3X2
| DMAT3X3
| DMAT3X4
| DMAT4X2
| DMAT4X3
| DMAT4X4
| ATOMIC_UINT
| SAMPLER2D
| SAMPLER3D
| SAMPLERCUBE
| SAMPLER2DSHADOW
| SAMPLERCUBESHADOW
| SAMPLER2DARRAY
| SAMPLER2DARRAYSHADOW
| SAMPLERCUBEARRAY
| SAMPLERCUBEARRAYSHADOW
| ISAMPLER2D
| ISAMPLER3D
| ISAMPLERCUBE
| ISAMPLER2DARRAY
| ISAMPLERCUBEARRAY
| USAMPLER2D
| USAMPLER3D
| USAMPLERCUBE
| USAMPLER2DARRAY
| USAMPLERCUBEARRAY
| SAMPLER1D
| SAMPLER1DSHADOW
| SAMPLER1DARRAY
| SAMPLER1DARRAYSHADOW
| ISAMPLER1D
| ISAMPLER1DARRAY
| USAMPLER1D
| USAMPLER1DARRAY
| SAMPLER2DRECT
| SAMPLER2DRECTSHADOW
| ISAMPLER2DRECT
| USAMPLER2DRECT
| SAMPLERBUFFER
| ISAMPLERBUFFER
| USAMPLERBUFFER
| SAMPLER2DMS
| ISAMPLER2DMS
| USAMPLER2DMS
| SAMPLER2DMSARRAY
| ISAMPLER2DMSARRAY
| USAMPLER2DMSARRAY
| IMAGE2D
| IIMAGE2D
| UIMAGE2D
| IMAGE3D
| IIMAGE3D
| UIMAGE3D
| IMAGECUBE
| IIMAGECUBE
| UIMAGECUBE
| IMAGEBUFFER
| IIMAGEBUFFER
| UIMAGEBUFFER
| IMAGE1D
| IIMAGE1D
| UIMAGE1D
| IMAGE1DARRAY
| IIMAGE1DARRAY
| UIMAGE1DARRAY
| IMAGE2DRECT
| IIMAGE2DRECT
| UIMAGE2DRECT
| IMAGE2DARRAY
| IIMAGE2DARRAY
| UIMAGE2DARRAY
| IMAGECUBEARRAY
| IIMAGECUBEARRAY
| UIMAGECUBEARRAY
| IMAGE2DMS
| IIMAGE2DMS
| UIMAGE2DMS
| IMAGE2DMSARRAY
| IIMAGE2DMSARRAY
| UIMAGE2DMSARRAY
| struct_specifier
| type_name
;
precision_qualifier
: HIGHP
| MEDIUMP
| LOWP
;
struct_specifier
: STRUCT IDENTIFIER? LEFT_BRACE struct_declaration_list RIGHT_BRACE
;
struct_declaration_list
: struct_declaration+
;
struct_declaration
: type_specifier struct_declarator_list SEMICOLON
| type_qualifier type_specifier struct_declarator_list SEMICOLON
;
struct_declarator_list
: struct_declarator (COMMA struct_declarator)*
;
struct_declarator
: IDENTIFIER array_specifier?
;
initializer
: assignment_expression
| LEFT_BRACE initializer_list COMMA? RIGHT_BRACE
;
initializer_list
: initializer (COMMA initializer)*
;
declaration_statement
: declaration
;
statement
: compound_statement
| simple_statement
;
simple_statement
: declaration_statement
| expression_statement
| selection_statement
| switch_statement
| case_label
| iteration_statement
| jump_statement
;
compound_statement
: LEFT_BRACE statement_list? RIGHT_BRACE
;
statement_no_new_scope
: compound_statement_no_new_scope
| simple_statement
;
compound_statement_no_new_scope
: LEFT_BRACE statement_list? RIGHT_BRACE
;
statement_list
: statement+
;
expression_statement
: SEMICOLON
| expression SEMICOLON
;
selection_statement
: IF LEFT_PAREN expression RIGHT_PAREN selection_rest_statement
;
selection_rest_statement
: statement (ELSE statement)?
;
condition
: expression
| fully_specified_type IDENTIFIER EQUAL initializer
;
switch_statement
: SWITCH LEFT_PAREN expression RIGHT_PAREN LEFT_BRACE statement_list? RIGHT_BRACE
;
case_label
: CASE expression COLON
| DEFAULT COLON
;
iteration_statement
: WHILE LEFT_PAREN condition RIGHT_PAREN statement_no_new_scope
| DO statement WHILE LEFT_PAREN expression RIGHT_PAREN SEMICOLON
| FOR LEFT_PAREN for_init_statement for_rest_statement RIGHT_PAREN statement_no_new_scope
;
for_init_statement
: expression_statement
| declaration_statement
;
for_rest_statement
: condition? SEMICOLON expression?
;
jump_statement
: CONTINUE SEMICOLON
| BREAK SEMICOLON
| RETURN expression? SEMICOLON
| DISCARD SEMICOLON
;
external_declaration
: function_definition
| declaration
| SEMICOLON
;
function_definition
: function_prototype compound_statement_no_new_scope
;