| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 1 | /* |
| 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 Romanick | f52888f | 2010-03-10 10:42:37 -0800 | [diff] [blame] | 28 | #include <cstdlib> |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 29 | #include "main/simple_list.h" |
| Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 30 | #include "glsl_symbol_table.h" |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 31 | |
| 32 | enum _mesa_glsl_parser_targets { |
| 33 | vertex_shader, |
| 34 | geometry_shader, |
| Kenneth Graunke | 34350be | 2010-04-07 14:38:03 -0700 | [diff] [blame] | 35 | fragment_shader, |
| 36 | ir_shader |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | struct _mesa_glsl_parse_state { |
| 40 | void *scanner; |
| 41 | struct simple_node translation_unit; |
| Ian Romanick | 8bde4ce | 2010-03-19 11:57:24 -0700 | [diff] [blame] | 42 | glsl_symbol_table *symbols; |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 43 | |
| 44 | unsigned language_version; |
| 45 | enum _mesa_glsl_parser_targets target; |
| Ian Romanick | 1f58518 | 2010-03-11 14:08:33 -0800 | [diff] [blame] | 46 | |
| Ian Romanick | 41ec6a4 | 2010-03-19 17:08:05 -0700 | [diff] [blame] | 47 | /** |
| 48 | * During AST to IR conversion, pointer to current IR function |
| 49 | * |
| 50 | * Will be \c NULL whenever the AST to IR conversion is not inside a |
| 51 | * function definition. |
| 52 | */ |
| 53 | class ir_function_signature *current_function; |
| 54 | |
| Ian Romanick | 1f58518 | 2010-03-11 14:08:33 -0800 | [diff] [blame] | 55 | /** Was there an error during compilation? */ |
| 56 | bool error; |
| Ian Romanick | 5185a5f | 2010-03-29 15:20:42 -0700 | [diff] [blame] | 57 | |
| 58 | /** Index of last generated anonymous temporary. */ |
| 59 | unsigned temp_index; |
| Ian Romanick | e9d0f26 | 2010-04-05 17:01:53 -0700 | [diff] [blame] | 60 | |
| 61 | /** Loop or switch statement containing the current instructions. */ |
| 62 | class ir_instruction *loop_or_switch_nesting; |
| Ian Romanick | c77b257 | 2010-04-07 16:59:46 -0700 | [diff] [blame] | 63 | |
| Ian Romanick | a2c6df5 | 2010-04-28 13:14:53 -0700 | [diff] [blame] | 64 | /** List of structures defined in user code. */ |
| 65 | const glsl_type **user_structures; |
| 66 | unsigned num_user_structures; |
| 67 | |
| Eric Anholt | 3623df6 | 2010-04-29 18:00:33 -0700 | [diff] [blame^] | 68 | char *info_log; |
| 69 | |
| Ian Romanick | c77b257 | 2010-04-07 16:59:46 -0700 | [diff] [blame] | 70 | /** |
| 71 | * \name Enable bits for GLSL extensions |
| 72 | */ |
| 73 | /*@{*/ |
| 74 | unsigned ARB_draw_buffers_enable:1; |
| 75 | unsigned ARB_draw_buffers_warn:1; |
| Ian Romanick | 0c82465 | 2010-04-07 17:13:44 -0700 | [diff] [blame] | 76 | unsigned ARB_texture_rectangle_enable:1; |
| 77 | unsigned ARB_texture_rectangle_warn:1; |
| Ian Romanick | c77b257 | 2010-04-07 16:59:46 -0700 | [diff] [blame] | 78 | /*@}*/ |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | typedef struct YYLTYPE { |
| 82 | int first_line; |
| 83 | int first_column; |
| 84 | int last_line; |
| 85 | int last_column; |
| 86 | unsigned source; |
| 87 | } YYLTYPE; |
| 88 | # define YYLTYPE_IS_DECLARED 1 |
| 89 | # define YYLTYPE_IS_TRIVIAL 1 |
| 90 | |
| Ian Romanick | 1f58518 | 2010-03-11 14:08:33 -0800 | [diff] [blame] | 91 | extern void _mesa_glsl_error(YYLTYPE *locp, _mesa_glsl_parse_state *state, |
| 92 | const char *fmt, ...); |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 93 | |
| Ian Romanick | 56b8b21 | 2010-04-07 14:47:46 -0700 | [diff] [blame] | 94 | /** |
| 95 | * Emit a warning to the shader log |
| 96 | * |
| 97 | * \sa _mesa_glsl_error |
| 98 | */ |
| 99 | extern void _mesa_glsl_warning(const YYLTYPE *locp, |
| Eric Anholt | 3623df6 | 2010-04-29 18:00:33 -0700 | [diff] [blame^] | 100 | _mesa_glsl_parse_state *state, |
| Ian Romanick | 56b8b21 | 2010-04-07 14:47:46 -0700 | [diff] [blame] | 101 | const char *fmt, ...); |
| 102 | |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 103 | extern void _mesa_glsl_lexer_ctor(struct _mesa_glsl_parse_state *state, |
| 104 | const char *string, size_t len); |
| 105 | |
| 106 | extern void _mesa_glsl_lexer_dtor(struct _mesa_glsl_parse_state *state); |
| 107 | |
| 108 | union YYSTYPE; |
| 109 | extern int _mesa_glsl_lex(union YYSTYPE *yylval, YYLTYPE *yylloc, |
| 110 | void *scanner); |
| 111 | |
| 112 | extern int _mesa_glsl_parse(struct _mesa_glsl_parse_state *); |
| 113 | |
| Ian Romanick | 5bfe30a | 2010-04-07 16:44:30 -0700 | [diff] [blame] | 114 | /** |
| Ian Romanick | e701761 | 2010-04-07 16:46:25 -0700 | [diff] [blame] | 115 | * Process elements of the #extension directive |
| 116 | * |
| 117 | * \return |
| 118 | * If \c name and \c behavior are valid, \c true is returned. Otherwise |
| 119 | * \c false is returned. |
| 120 | */ |
| 121 | extern bool _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp, |
| 122 | const char *behavior, |
| 123 | YYLTYPE *behavior_locp, |
| 124 | _mesa_glsl_parse_state *state); |
| 125 | |
| 126 | /** |
| Ian Romanick | 5bfe30a | 2010-04-07 16:44:30 -0700 | [diff] [blame] | 127 | * Get the textual name of the specified shader target |
| 128 | */ |
| 129 | extern const char * |
| 130 | _mesa_glsl_shader_target_name(enum _mesa_glsl_parser_targets target); |
| 131 | |
| Ian Romanick | a87ac25 | 2010-02-22 13:19:34 -0800 | [diff] [blame] | 132 | #endif /* GLSL_PARSER_EXTRAS_H */ |