pan/bi: Share ALU type printing
[mesa.git] / src / panfrost / util / pan_ir.c
1 /*
2 * Copyright (C) 2020 Collabora Ltd.
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27 #include "pan_ir.h"
28 #include "util/macros.h"
29
30 /* Converts a per-component mask to a byte mask */
31
32 uint16_t
33 pan_to_bytemask(unsigned bytes, unsigned mask)
34 {
35 switch (bytes) {
36 case 8:
37 return mask;
38
39 case 16: {
40 unsigned space =
41 (mask & 0x1) |
42 ((mask & 0x2) << (2 - 1)) |
43 ((mask & 0x4) << (4 - 2)) |
44 ((mask & 0x8) << (6 - 3)) |
45 ((mask & 0x10) << (8 - 4)) |
46 ((mask & 0x20) << (10 - 5)) |
47 ((mask & 0x40) << (12 - 6)) |
48 ((mask & 0x80) << (14 - 7));
49
50 return space | (space << 1);
51 }
52
53 case 32: {
54 unsigned space =
55 (mask & 0x1) |
56 ((mask & 0x2) << (4 - 1)) |
57 ((mask & 0x4) << (8 - 2)) |
58 ((mask & 0x8) << (12 - 3));
59
60 return space | (space << 1) | (space << 2) | (space << 3);
61 }
62
63 case 64: {
64 unsigned A = (mask & 0x1) ? 0xFF : 0x00;
65 unsigned B = (mask & 0x2) ? 0xFF : 0x00;
66 return A | (B << 8);
67 }
68
69 default:
70 unreachable("Invalid register mode");
71 }
72 }
73
74 void
75 pan_block_add_successor(pan_block *block, pan_block *successor)
76 {
77 assert(block);
78 assert(successor);
79
80 for (unsigned i = 0; i < ARRAY_SIZE(block->successors); ++i) {
81 if (block->successors[i]) {
82 if (block->successors[i] == successor)
83 return;
84 else
85 continue;
86 }
87
88 block->successors[i] = successor;
89 _mesa_set_add(successor->predecessors, block);
90 return;
91 }
92
93 unreachable("Too many successors");
94 }
95
96 /* Prints a NIR ALU type in Bifrost-style ".f32" ".i8" etc */
97
98 void
99 pan_print_alu_type(nir_alu_type t, FILE *fp)
100 {
101 unsigned size = nir_alu_type_get_type_size(t);
102 nir_alu_type base = nir_alu_type_get_base_type(t);
103
104 switch (base) {
105 case nir_type_int:
106 fprintf(fp, ".i");
107 break;
108 case nir_type_uint:
109 fprintf(fp, ".u");
110 break;
111 case nir_type_bool:
112 fprintf(fp, ".b");
113 break;
114 case nir_type_float:
115 fprintf(fp, ".f");
116 break;
117 default:
118 fprintf(fp, ".unknown");
119 break;
120 }
121
122 fprintf(fp, "%u", size);
123 }