nir/types: Add a wrapper for coordinate_components
[mesa.git] / src / compiler / nir_types.cpp
1 /*
2 * Copyright © 2014 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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #include "nir_types.h"
29 #include "compiler/glsl/ir.h"
30
31 const char *
32 glsl_get_type_name(const glsl_type *type)
33 {
34 return type->name;
35 }
36
37 const glsl_type *
38 glsl_get_array_element(const glsl_type* type)
39 {
40 if (type->is_matrix())
41 return type->column_type();
42 else if (type->is_vector())
43 return type->get_scalar_type();
44 return type->fields.array;
45 }
46
47 const glsl_type *
48 glsl_without_array(const glsl_type *type)
49 {
50 return type->without_array();
51 }
52
53 const glsl_type *
54 glsl_without_array_or_matrix(const glsl_type *type)
55 {
56 type = type->without_array();
57 if (type->is_matrix())
58 type = type->column_type();
59 return type;
60 }
61
62 const glsl_type *
63 glsl_get_array_instance(const glsl_type *type,
64 unsigned array_size)
65 {
66 return glsl_type::get_array_instance(type, array_size);
67 }
68
69 const glsl_type *
70 glsl_get_struct_field(const glsl_type *type, unsigned index)
71 {
72 return type->fields.structure[index].type;
73 }
74
75 const glsl_type *
76 glsl_get_function_return_type(const glsl_type *type)
77 {
78 return type->fields.parameters[0].type;
79 }
80
81 const glsl_function_param *
82 glsl_get_function_param(const glsl_type *type, unsigned index)
83 {
84 return &type->fields.parameters[index + 1];
85 }
86
87 const struct glsl_type *
88 glsl_get_column_type(const struct glsl_type *type)
89 {
90 return type->column_type();
91 }
92
93 GLenum
94 glsl_get_gl_type(const struct glsl_type *type)
95 {
96 return type->gl_type;
97 }
98
99 enum glsl_base_type
100 glsl_get_base_type(const struct glsl_type *type)
101 {
102 return type->base_type;
103 }
104
105 unsigned
106 glsl_get_vector_elements(const struct glsl_type *type)
107 {
108 return type->vector_elements;
109 }
110
111 unsigned
112 glsl_get_components(const struct glsl_type *type)
113 {
114 return type->components();
115 }
116
117 unsigned
118 glsl_get_matrix_columns(const struct glsl_type *type)
119 {
120 return type->matrix_columns;
121 }
122
123 unsigned
124 glsl_get_length(const struct glsl_type *type)
125 {
126 return type->is_matrix() ? type->matrix_columns : type->length;
127 }
128
129 unsigned
130 glsl_get_aoa_size(const struct glsl_type *type)
131 {
132 return type->arrays_of_arrays_size();
133 }
134
135 unsigned
136 glsl_count_attribute_slots(const struct glsl_type *type,
137 bool is_vertex_input)
138 {
139 return type->count_attribute_slots(is_vertex_input);
140 }
141
142 unsigned
143 glsl_get_component_slots(const struct glsl_type *type)
144 {
145 return type->component_slots();
146 }
147
148 const char *
149 glsl_get_struct_elem_name(const struct glsl_type *type, unsigned index)
150 {
151 return type->fields.structure[index].name;
152 }
153
154 glsl_sampler_dim
155 glsl_get_sampler_dim(const struct glsl_type *type)
156 {
157 assert(glsl_type_is_sampler(type) || glsl_type_is_image(type));
158 return (glsl_sampler_dim)type->sampler_dimensionality;
159 }
160
161 glsl_base_type
162 glsl_get_sampler_result_type(const struct glsl_type *type)
163 {
164 assert(glsl_type_is_sampler(type) || glsl_type_is_image(type));
165 return (glsl_base_type)type->sampled_type;
166 }
167
168 unsigned
169 glsl_get_sampler_target(const struct glsl_type *type)
170 {
171 assert(glsl_type_is_sampler(type));
172 return type->sampler_index();
173 }
174
175 int
176 glsl_get_sampler_coordinate_components(const struct glsl_type *type)
177 {
178 assert(glsl_type_is_sampler(type) || glsl_type_is_image(type));
179 return type->coordinate_components();
180 }
181
182 unsigned
183 glsl_get_record_location_offset(const struct glsl_type *type,
184 unsigned length)
185 {
186 return type->record_location_offset(length);
187 }
188
189 bool
190 glsl_type_is_16bit(const glsl_type *type)
191 {
192 return type->is_16bit();
193 }
194
195 bool
196 glsl_type_is_64bit(const glsl_type *type)
197 {
198 return type->is_64bit();
199 }
200
201 bool
202 glsl_type_is_void(const glsl_type *type)
203 {
204 return type->is_void();
205 }
206
207 bool
208 glsl_type_is_error(const glsl_type *type)
209 {
210 return type->is_error();
211 }
212
213 bool
214 glsl_type_is_vector(const struct glsl_type *type)
215 {
216 return type->is_vector();
217 }
218
219 bool
220 glsl_type_is_scalar(const struct glsl_type *type)
221 {
222 return type->is_scalar();
223 }
224
225 bool
226 glsl_type_is_vector_or_scalar(const struct glsl_type *type)
227 {
228 return type->is_vector() || type->is_scalar();
229 }
230
231 bool
232 glsl_type_is_matrix(const struct glsl_type *type)
233 {
234 return type->is_matrix();
235 }
236
237 bool
238 glsl_type_is_array(const struct glsl_type *type)
239 {
240 return type->is_array();
241 }
242
243 bool
244 glsl_type_is_array_of_arrays(const struct glsl_type *type)
245 {
246 return type->is_array_of_arrays();
247 }
248
249 bool
250 glsl_type_is_array_or_matrix(const struct glsl_type *type)
251 {
252 return type->is_array() || type->is_matrix();
253 }
254
255 bool
256 glsl_type_is_struct(const struct glsl_type *type)
257 {
258 return type->is_record() || type->is_interface();
259 }
260
261 bool
262 glsl_type_is_sampler(const struct glsl_type *type)
263 {
264 return type->is_sampler();
265 }
266
267 bool
268 glsl_type_is_image(const struct glsl_type *type)
269 {
270 return type->is_image();
271 }
272
273 bool
274 glsl_sampler_type_is_shadow(const struct glsl_type *type)
275 {
276 assert(glsl_type_is_sampler(type));
277 return type->sampler_shadow;
278 }
279
280 bool
281 glsl_sampler_type_is_array(const struct glsl_type *type)
282 {
283 assert(glsl_type_is_sampler(type) || glsl_type_is_image(type));
284 return type->sampler_array;
285 }
286
287 bool
288 glsl_type_is_dual_slot(const struct glsl_type *type)
289 {
290 return type->is_dual_slot();
291 }
292
293 bool
294 glsl_type_is_numeric(const struct glsl_type *type)
295 {
296 return type->is_numeric();
297 }
298
299 bool
300 glsl_type_is_boolean(const struct glsl_type *type)
301 {
302 return type->is_boolean();
303 }
304
305 const glsl_type *
306 glsl_void_type(void)
307 {
308 return glsl_type::void_type;
309 }
310
311 const glsl_type *
312 glsl_float_type(void)
313 {
314 return glsl_type::float_type;
315 }
316
317 const glsl_type *
318 glsl_double_type(void)
319 {
320 return glsl_type::double_type;
321 }
322
323 const glsl_type *
324 glsl_float16_t_type(void)
325 {
326 return glsl_type::float16_t_type;
327 }
328
329 const glsl_type *
330 glsl_vec_type(unsigned n)
331 {
332 return glsl_type::vec(n);
333 }
334
335 const glsl_type *
336 glsl_dvec_type(unsigned n)
337 {
338 return glsl_type::dvec(n);
339 }
340
341 const glsl_type *
342 glsl_vec4_type(void)
343 {
344 return glsl_type::vec4_type;
345 }
346
347 const glsl_type *
348 glsl_uvec4_type(void)
349 {
350 return glsl_type::uvec4_type;
351 }
352
353 const glsl_type *
354 glsl_int_type(void)
355 {
356 return glsl_type::int_type;
357 }
358
359 const glsl_type *
360 glsl_uint_type(void)
361 {
362 return glsl_type::uint_type;
363 }
364
365 const glsl_type *
366 glsl_int64_t_type(void)
367 {
368 return glsl_type::int64_t_type;
369 }
370
371 const glsl_type *
372 glsl_uint64_t_type(void)
373 {
374 return glsl_type::uint64_t_type;
375 }
376
377 const glsl_type *
378 glsl_int16_t_type(void)
379 {
380 return glsl_type::int16_t_type;
381 }
382
383 const glsl_type *
384 glsl_uint16_t_type(void)
385 {
386 return glsl_type::uint16_t_type;
387 }
388
389 const glsl_type *
390 glsl_int8_t_type(void)
391 {
392 return glsl_type::int8_t_type;
393 }
394
395 const glsl_type *
396 glsl_uint8_t_type(void)
397 {
398 return glsl_type::uint8_t_type;
399 }
400
401 const glsl_type *
402 glsl_bool_type(void)
403 {
404 return glsl_type::bool_type;
405 }
406
407 const glsl_type *
408 glsl_scalar_type(enum glsl_base_type base_type)
409 {
410 return glsl_type::get_instance(base_type, 1, 1);
411 }
412
413 const glsl_type *
414 glsl_vector_type(enum glsl_base_type base_type, unsigned components)
415 {
416 const glsl_type *t = glsl_type::get_instance(base_type, components, 1);
417 assert(t != glsl_type::error_type);
418 return t;
419 }
420
421 const glsl_type *
422 glsl_matrix_type(enum glsl_base_type base_type, unsigned rows, unsigned columns)
423 {
424 const glsl_type *t = glsl_type::get_instance(base_type, rows, columns);
425 assert(t != glsl_type::error_type);
426 return t;
427 }
428
429 const glsl_type *
430 glsl_array_type(const glsl_type *base, unsigned elements)
431 {
432 return glsl_type::get_array_instance(base, elements);
433 }
434
435 const glsl_type *
436 glsl_struct_type(const glsl_struct_field *fields,
437 unsigned num_fields, const char *name)
438 {
439 return glsl_type::get_record_instance(fields, num_fields, name);
440 }
441
442 const glsl_type *
443 glsl_interface_type(const glsl_struct_field *fields,
444 unsigned num_fields,
445 enum glsl_interface_packing packing,
446 bool row_major,
447 const char *block_name)
448 {
449 return glsl_type::get_interface_instance(fields, num_fields, packing,
450 row_major, block_name);
451 }
452
453 const struct glsl_type *
454 glsl_sampler_type(enum glsl_sampler_dim dim, bool is_shadow, bool is_array,
455 enum glsl_base_type base_type)
456 {
457 return glsl_type::get_sampler_instance(dim, is_shadow, is_array, base_type);
458 }
459
460 const struct glsl_type *
461 glsl_bare_sampler_type()
462 {
463 return glsl_type::sampler_type;
464 }
465
466 const struct glsl_type *
467 glsl_image_type(enum glsl_sampler_dim dim, bool is_array,
468 enum glsl_base_type base_type)
469 {
470 return glsl_type::get_image_instance(dim, is_array, base_type);
471 }
472
473 const glsl_type *
474 glsl_function_type(const glsl_type *return_type,
475 const glsl_function_param *params, unsigned num_params)
476 {
477 return glsl_type::get_function_instance(return_type, params, num_params);
478 }
479
480 const glsl_type *
481 glsl_transposed_type(const struct glsl_type *type)
482 {
483 assert(glsl_type_is_matrix(type));
484 return glsl_type::get_instance(type->base_type, type->matrix_columns,
485 type->vector_elements);
486 }
487
488 const glsl_type *
489 glsl_channel_type(const glsl_type *t)
490 {
491 switch (glsl_get_base_type(t)) {
492 case GLSL_TYPE_ARRAY: {
493 const glsl_type *base = glsl_channel_type(glsl_get_array_element(t));
494 return glsl_array_type(base, glsl_get_length(t));
495 }
496 case GLSL_TYPE_UINT:
497 return glsl_uint_type();
498 case GLSL_TYPE_INT:
499 return glsl_int_type();
500 case GLSL_TYPE_FLOAT:
501 return glsl_float_type();
502 case GLSL_TYPE_BOOL:
503 return glsl_bool_type();
504 case GLSL_TYPE_DOUBLE:
505 return glsl_double_type();
506 case GLSL_TYPE_UINT64:
507 return glsl_uint64_t_type();
508 case GLSL_TYPE_INT64:
509 return glsl_int64_t_type();
510 case GLSL_TYPE_FLOAT16:
511 return glsl_float16_t_type();
512 case GLSL_TYPE_UINT16:
513 return glsl_uint16_t_type();
514 case GLSL_TYPE_INT16:
515 return glsl_int16_t_type();
516 default:
517 unreachable("Unhandled base type glsl_channel_type()");
518 }
519 }
520
521 void
522 glsl_get_natural_size_align_bytes(const struct glsl_type *type,
523 unsigned *size, unsigned *align)
524 {
525 switch (type->base_type) {
526 case GLSL_TYPE_UINT8:
527 case GLSL_TYPE_INT8:
528 case GLSL_TYPE_UINT16:
529 case GLSL_TYPE_INT16:
530 case GLSL_TYPE_FLOAT16:
531 case GLSL_TYPE_UINT:
532 case GLSL_TYPE_INT:
533 case GLSL_TYPE_FLOAT:
534 case GLSL_TYPE_BOOL:
535 case GLSL_TYPE_DOUBLE:
536 case GLSL_TYPE_UINT64:
537 case GLSL_TYPE_INT64: {
538 unsigned N = glsl_get_bit_size(type) / 8;
539 *size = N * type->components();
540 *align = N;
541 break;
542 }
543
544 case GLSL_TYPE_ARRAY: {
545 unsigned elem_size, elem_align;
546 glsl_get_natural_size_align_bytes(type->fields.array,
547 &elem_size, &elem_align);
548 *align = elem_align;
549 *size = type->length * ALIGN_POT(elem_size, elem_align);
550 break;
551 }
552
553 case GLSL_TYPE_STRUCT:
554 *size = 0;
555 *align = 0;
556 for (unsigned i = 0; i < type->length; i++) {
557 unsigned elem_size, elem_align;
558 glsl_get_natural_size_align_bytes(type->fields.structure[i].type,
559 &elem_size, &elem_align);
560 *align = MAX2(*align, elem_align);
561 *size = ALIGN_POT(*size, elem_align) + elem_size;
562 }
563 break;
564
565 case GLSL_TYPE_SAMPLER:
566 case GLSL_TYPE_ATOMIC_UINT:
567 case GLSL_TYPE_SUBROUTINE:
568 case GLSL_TYPE_IMAGE:
569 case GLSL_TYPE_VOID:
570 case GLSL_TYPE_ERROR:
571 case GLSL_TYPE_INTERFACE:
572 case GLSL_TYPE_FUNCTION:
573 unreachable("type does not have a natural size");
574 }
575 }
576
577 const glsl_type *
578 glsl_atomic_uint_type(void)
579 {
580 return glsl_type::atomic_uint_type;
581 }
582
583 unsigned
584 glsl_atomic_size(const struct glsl_type *type)
585 {
586 return type->atomic_size();
587 }
588
589 bool
590 glsl_contains_atomic(const struct glsl_type *type)
591 {
592 return type->contains_atomic();
593 }