3 * Copyright © 2009 Intel Corporation
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
36 struct _mesa_glsl_parse_state
;
37 struct glsl_symbol_table
;
40 _mesa_glsl_initialize_types(struct _mesa_glsl_parse_state
*state
);
43 _mesa_glsl_release_types(void);
61 enum glsl_sampler_dim
{
62 GLSL_SAMPLER_DIM_1D
= 0,
65 GLSL_SAMPLER_DIM_CUBE
,
66 GLSL_SAMPLER_DIM_RECT
,
68 GLSL_SAMPLER_DIM_EXTERNAL
77 glsl_base_type base_type
;
79 unsigned sampler_dimensionality
:3; /**< \see glsl_sampler_dim */
80 unsigned sampler_shadow
:1;
81 unsigned sampler_array
:1;
82 unsigned sampler_type
:2; /**< Type of data returned using this sampler.
83 * only \c GLSL_TYPE_FLOAT, \c GLSL_TYPE_INT,
84 * and \c GLSL_TYPE_UINT are valid.
87 /* Callers of this ralloc-based new need not call delete. It's
88 * easier to just ralloc_free 'mem_ctx' (or any of its ancestors). */
89 static void* operator new(size_t size
)
91 if (glsl_type::mem_ctx
== NULL
) {
92 glsl_type::mem_ctx
= ralloc_context(NULL
);
93 assert(glsl_type::mem_ctx
!= NULL
);
98 type
= ralloc_size(glsl_type::mem_ctx
, size
);
104 /* If the user *does* call delete, that's OK, we will just
105 * ralloc_free in that case. */
106 static void operator delete(void *type
)
112 * \name Vector and matrix element counts
114 * For scalars, each of these values will be 1. For non-numeric types
118 unsigned vector_elements
:3; /**< 1, 2, 3, or 4 vector elements. */
119 unsigned matrix_columns
:3; /**< 1, 2, 3, or 4 matrix columns. */
123 * Name of the data type
125 * This may be \c NULL for anonymous structures, for arrays, or for
131 * For \c GLSL_TYPE_ARRAY, this is the length of the array. For
132 * \c GLSL_TYPE_STRUCT, it is the number of elements in the structure and
133 * the number of values pointed to by \c fields.structure (below).
138 * Subtype of composite data types.
141 const struct glsl_type
*array
; /**< Type of array elements. */
142 const struct glsl_type
*parameters
; /**< Parameters to function. */
143 struct glsl_struct_field
*structure
; /**< List of struct fields. */
148 * \name Pointers to various public type singletons
151 static const glsl_type
*const error_type
;
152 static const glsl_type
*const void_type
;
153 static const glsl_type
*const int_type
;
154 static const glsl_type
*const ivec4_type
;
155 static const glsl_type
*const uint_type
;
156 static const glsl_type
*const uvec2_type
;
157 static const glsl_type
*const uvec3_type
;
158 static const glsl_type
*const uvec4_type
;
159 static const glsl_type
*const float_type
;
160 static const glsl_type
*const vec2_type
;
161 static const glsl_type
*const vec3_type
;
162 static const glsl_type
*const vec4_type
;
163 static const glsl_type
*const bool_type
;
164 static const glsl_type
*const mat2_type
;
165 static const glsl_type
*const mat2x3_type
;
166 static const glsl_type
*const mat2x4_type
;
167 static const glsl_type
*const mat3x2_type
;
168 static const glsl_type
*const mat3_type
;
169 static const glsl_type
*const mat3x4_type
;
170 static const glsl_type
*const mat4x2_type
;
171 static const glsl_type
*const mat4x3_type
;
172 static const glsl_type
*const mat4_type
;
177 * For numeric and boolean derrived types returns the basic scalar type
179 * If the type is a numeric or boolean scalar, vector, or matrix type,
180 * this function gets the scalar type of the individual components. For
181 * all other types, including arrays of numeric or boolean types, the
182 * error type is returned.
184 const glsl_type
*get_base_type() const;
187 * Get the basic scalar type which this type aggregates.
189 * If the type is a numeric or boolean scalar, vector, or matrix, or an
190 * array of any of those, this function gets the scalar type of the
191 * individual components. For structs and arrays of structs, this function
192 * returns the struct type. For samplers and arrays of samplers, this
193 * function returns the sampler type.
195 const glsl_type
*get_scalar_type() const;
198 * Query the type of elements in an array
201 * Pointer to the type of elements in the array for array types, or \c NULL
202 * for non-array types.
204 const glsl_type
*element_type() const
206 return is_array() ? fields
.array
: NULL
;
210 * Get the instance of a built-in scalar, vector, or matrix type
212 static const glsl_type
*get_instance(unsigned base_type
, unsigned rows
,
216 * Get the instance of an array type
218 static const glsl_type
*get_array_instance(const glsl_type
*base
,
222 * Get the instance of a record type
224 static const glsl_type
*get_record_instance(const glsl_struct_field
*fields
,
229 * Query the total number of scalars that make up a scalar, vector or matrix
231 unsigned components() const
233 return vector_elements
* matrix_columns
;
237 * Calculate the number of components slots required to hold this type
239 * This is used to determine how many uniform or varying locations a type
242 unsigned component_slots() const;
245 * \brief Can this type be implicitly converted to another?
247 * \return True if the types are identical or if this type can be converted
248 * to \c desired according to Section 4.1.10 of the GLSL spec.
251 * From page 25 (31 of the pdf) of the GLSL 1.50 spec, Section 4.1.10
252 * Implicit Conversions:
254 * In some situations, an expression and its type will be implicitly
255 * converted to a different type. The following table shows all allowed
256 * implicit conversions:
258 * Type of expression | Can be implicitly converted to
259 * --------------------------------------------------
272 * There are no implicit array or structure conversions. For example,
273 * an array of int cannot be implicitly converted to an array of float.
274 * There are no implicit conversions between signed and unsigned
278 bool can_implicitly_convert_to(const glsl_type
*desired
) const;
281 * Query whether or not a type is a scalar (non-vector and non-matrix).
283 bool is_scalar() const
285 return (vector_elements
== 1)
286 && (base_type
>= GLSL_TYPE_UINT
)
287 && (base_type
<= GLSL_TYPE_BOOL
);
291 * Query whether or not a type is a vector
293 bool is_vector() const
295 return (vector_elements
> 1)
296 && (matrix_columns
== 1)
297 && (base_type
>= GLSL_TYPE_UINT
)
298 && (base_type
<= GLSL_TYPE_BOOL
);
302 * Query whether or not a type is a matrix
304 bool is_matrix() const
306 /* GLSL only has float matrices. */
307 return (matrix_columns
> 1) && (base_type
== GLSL_TYPE_FLOAT
);
311 * Query whether or not a type is a non-array numeric type
313 bool is_numeric() const
315 return (base_type
>= GLSL_TYPE_UINT
) && (base_type
<= GLSL_TYPE_FLOAT
);
319 * Query whether or not a type is an integral type
321 bool is_integer() const
323 return (base_type
== GLSL_TYPE_UINT
) || (base_type
== GLSL_TYPE_INT
);
327 * Query whether or not a type is a float type
329 bool is_float() const
331 return base_type
== GLSL_TYPE_FLOAT
;
335 * Query whether or not a type is a non-array boolean type
337 bool is_boolean() const
339 return base_type
== GLSL_TYPE_BOOL
;
343 * Query whether or not a type is a sampler
345 bool is_sampler() const
347 return base_type
== GLSL_TYPE_SAMPLER
;
351 * Query whether or not type is a sampler, or for struct and array
352 * types, contains a sampler.
354 bool contains_sampler() const;
357 * Query whether or not a type is an array
359 bool is_array() const
361 return base_type
== GLSL_TYPE_ARRAY
;
365 * Query whether or not a type is a record
367 bool is_record() const
369 return base_type
== GLSL_TYPE_STRUCT
;
373 * Query whether or not a type is the void type singleton.
377 return base_type
== GLSL_TYPE_VOID
;
381 * Query whether or not a type is the error type singleton.
383 bool is_error() const
385 return base_type
== GLSL_TYPE_ERROR
;
389 * Query the full type of a matrix row
392 * If the type is not a matrix, \c glsl_type::error_type is returned.
393 * Otherwise a type matching the rows of the matrix is returned.
395 const glsl_type
*row_type() const
398 ? get_instance(base_type
, matrix_columns
, 1)
403 * Query the full type of a matrix column
406 * If the type is not a matrix, \c glsl_type::error_type is returned.
407 * Otherwise a type matching the columns of the matrix is returned.
409 const glsl_type
*column_type() const
412 ? get_instance(base_type
, vector_elements
, 1)
418 * Get the type of a structure field
421 * Pointer to the type of the named field. If the type is not a structure
422 * or the named field does not exist, \c glsl_type::error_type is returned.
424 const glsl_type
*field_type(const char *name
) const;
428 * Get the location of a filed within a record type
430 int field_index(const char *name
) const;
434 * Query the number of elements in an array type
437 * The number of elements in the array for array types or -1 for non-array
438 * types. If the number of elements in the array has not yet been declared,
441 int array_size() const
443 return is_array() ? length
: -1;
448 * ralloc context for all glsl_type allocations
450 * Set on the first call to \c glsl_type::new.
452 static void *mem_ctx
;
454 void init_ralloc_type_ctx(void);
456 /** Constructor for vector and matrix types */
457 glsl_type(GLenum gl_type
,
458 glsl_base_type base_type
, unsigned vector_elements
,
459 unsigned matrix_columns
, const char *name
);
461 /** Constructor for sampler types */
462 glsl_type(GLenum gl_type
,
463 enum glsl_sampler_dim dim
, bool shadow
, bool array
,
464 unsigned type
, const char *name
);
466 /** Constructor for record types */
467 glsl_type(const glsl_struct_field
*fields
, unsigned num_fields
,
470 /** Constructor for array types */
471 glsl_type(const glsl_type
*array
, unsigned length
);
473 /** Hash table containing the known array types. */
474 static struct hash_table
*array_types
;
476 /** Hash table containing the known record types. */
477 static struct hash_table
*record_types
;
479 static int record_key_compare(const void *a
, const void *b
);
480 static unsigned record_key_hash(const void *key
);
483 * \name Pointers to various type singletons
486 static const glsl_type _error_type
;
487 static const glsl_type _void_type
;
488 static const glsl_type _sampler3D_type
;
489 static const glsl_type builtin_core_types
[];
490 static const glsl_type builtin_structure_types
[];
491 static const glsl_type builtin_110_deprecated_structure_types
[];
492 static const glsl_type builtin_110_types
[];
493 static const glsl_type builtin_120_types
[];
494 static const glsl_type builtin_130_types
[];
495 static const glsl_type builtin_ARB_texture_rectangle_types
[];
496 static const glsl_type builtin_EXT_texture_array_types
[];
497 static const glsl_type builtin_EXT_texture_buffer_object_types
[];
498 static const glsl_type builtin_OES_EGL_image_external_types
[];
502 * \name Methods to populate a symbol table with built-in types.
505 * This is one of the truely annoying things about C++. Methods that are
506 * completely internal and private to a type still have to be advertised to
507 * the world in a public header file.
510 static void generate_100ES_types(glsl_symbol_table
*);
511 static void generate_110_types(glsl_symbol_table
*);
512 static void generate_120_types(glsl_symbol_table
*);
513 static void generate_130_types(glsl_symbol_table
*);
514 static void generate_ARB_texture_rectangle_types(glsl_symbol_table
*, bool);
515 static void generate_EXT_texture_array_types(glsl_symbol_table
*, bool);
516 static void generate_OES_texture_3D_types(glsl_symbol_table
*, bool);
517 static void generate_OES_EGL_image_external_types(glsl_symbol_table
*, bool);
521 * \name Friend functions.
523 * These functions are friends because they must have C linkage and the
524 * need to call various private methods or access various private static
528 friend void _mesa_glsl_initialize_types(struct _mesa_glsl_parse_state
*);
529 friend void _mesa_glsl_release_types(void);
533 struct glsl_struct_field
{
534 const struct glsl_type
*type
;
538 #endif /* __cplusplus */
540 #endif /* GLSL_TYPES_H */