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