blob: 87de9083c060e242290b29a3b6c38bb98f3ddcf9 [file] [log] [blame]
Ian Romanicka87ac252010-02-22 13:19:34 -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
24#pragma once
25#ifndef GLSL_PARSER_EXTRAS_H
26#define GLSL_PARSER_EXTRAS_H
27
Ian Romanickf52888f2010-03-10 10:42:37 -080028#include <cstdlib>
Ian Romanick8bde4ce2010-03-19 11:57:24 -070029#include "glsl_symbol_table.h"
Ian Romanicka87ac252010-02-22 13:19:34 -080030
31enum _mesa_glsl_parser_targets {
32 vertex_shader,
33 geometry_shader,
Kenneth Graunke34350be2010-04-07 14:38:03 -070034 fragment_shader,
35 ir_shader
Ian Romanicka87ac252010-02-22 13:19:34 -080036};
37
38struct _mesa_glsl_parse_state {
39 void *scanner;
Ian Romanick304ea902010-05-10 11:17:53 -070040 exec_list translation_unit;
Ian Romanick8bde4ce2010-03-19 11:57:24 -070041 glsl_symbol_table *symbols;
Ian Romanicka87ac252010-02-22 13:19:34 -080042
43 unsigned language_version;
44 enum _mesa_glsl_parser_targets target;
Ian Romanick1f585182010-03-11 14:08:33 -080045
Ian Romanick41ec6a42010-03-19 17:08:05 -070046 /**
47 * During AST to IR conversion, pointer to current IR function
48 *
49 * Will be \c NULL whenever the AST to IR conversion is not inside a
50 * function definition.
51 */
52 class ir_function_signature *current_function;
53
Ian Romanick1f585182010-03-11 14:08:33 -080054 /** Was there an error during compilation? */
55 bool error;
Ian Romanick5185a5f2010-03-29 15:20:42 -070056
57 /** Index of last generated anonymous temporary. */
58 unsigned temp_index;
Ian Romanicke9d0f262010-04-05 17:01:53 -070059
60 /** Loop or switch statement containing the current instructions. */
61 class ir_instruction *loop_or_switch_nesting;
Ian Romanickc77b2572010-04-07 16:59:46 -070062
Ian Romanicka2c6df52010-04-28 13:14:53 -070063 /** List of structures defined in user code. */
64 const glsl_type **user_structures;
65 unsigned num_user_structures;
66
Eric Anholt3623df62010-04-29 18:00:33 -070067 char *info_log;
68
Ian Romanickc77b2572010-04-07 16:59:46 -070069 /**
70 * \name Enable bits for GLSL extensions
71 */
72 /*@{*/
73 unsigned ARB_draw_buffers_enable:1;
74 unsigned ARB_draw_buffers_warn:1;
Ian Romanick0c824652010-04-07 17:13:44 -070075 unsigned ARB_texture_rectangle_enable:1;
76 unsigned ARB_texture_rectangle_warn:1;
Kenneth Graunke0d80f712010-06-08 16:17:17 -070077 unsigned EXT_texture_array_enable:1;
78 unsigned EXT_texture_array_warn:1;
Ian Romanickc77b2572010-04-07 16:59:46 -070079 /*@}*/
Ian Romanicka87ac252010-02-22 13:19:34 -080080};
81
82typedef struct YYLTYPE {
83 int first_line;
84 int first_column;
85 int last_line;
86 int last_column;
87 unsigned source;
88} YYLTYPE;
89# define YYLTYPE_IS_DECLARED 1
90# define YYLTYPE_IS_TRIVIAL 1
91
Ian Romanick1f585182010-03-11 14:08:33 -080092extern void _mesa_glsl_error(YYLTYPE *locp, _mesa_glsl_parse_state *state,
93 const char *fmt, ...);
Ian Romanicka87ac252010-02-22 13:19:34 -080094
Ian Romanick56b8b212010-04-07 14:47:46 -070095/**
96 * Emit a warning to the shader log
97 *
98 * \sa _mesa_glsl_error
99 */
100extern void _mesa_glsl_warning(const YYLTYPE *locp,
Eric Anholt3623df62010-04-29 18:00:33 -0700101 _mesa_glsl_parse_state *state,
Ian Romanick56b8b212010-04-07 14:47:46 -0700102 const char *fmt, ...);
103
Kenneth Graunke04ba86a2010-06-16 12:18:00 -0700104extern "C" {
Kenneth Graunke74704e82010-06-21 11:47:55 -0700105extern int preprocess(void *ctx, const char **shader, char **info_log);
Kenneth Graunke04ba86a2010-06-16 12:18:00 -0700106}
107
Ian Romanicka87ac252010-02-22 13:19:34 -0800108extern void _mesa_glsl_lexer_ctor(struct _mesa_glsl_parse_state *state,
Kenneth Graunke4a2bbda2010-06-21 11:43:42 -0700109 const char *string);
Ian Romanicka87ac252010-02-22 13:19:34 -0800110
111extern void _mesa_glsl_lexer_dtor(struct _mesa_glsl_parse_state *state);
112
113union YYSTYPE;
114extern int _mesa_glsl_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
115 void *scanner);
116
117extern int _mesa_glsl_parse(struct _mesa_glsl_parse_state *);
118
Ian Romanick5bfe30a2010-04-07 16:44:30 -0700119/**
Ian Romanicke7017612010-04-07 16:46:25 -0700120 * Process elements of the #extension directive
121 *
122 * \return
123 * If \c name and \c behavior are valid, \c true is returned. Otherwise
124 * \c false is returned.
125 */
126extern bool _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
127 const char *behavior,
128 YYLTYPE *behavior_locp,
129 _mesa_glsl_parse_state *state);
130
131/**
Ian Romanick5bfe30a2010-04-07 16:44:30 -0700132 * Get the textual name of the specified shader target
133 */
134extern const char *
135_mesa_glsl_shader_target_name(enum _mesa_glsl_parser_targets target);
136
Ian Romanicka87ac252010-02-22 13:19:34 -0800137#endif /* GLSL_PARSER_EXTRAS_H */