r600g/sb: improve alu packing on cayman
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_strings.c
1 /**************************************************************************
2 *
3 * Copyright 2007-2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright 2012 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29
30 #include "pipe/p_compiler.h"
31 #include "util/u_memory.h"
32 #include "tgsi_strings.h"
33
34
35 const char *tgsi_processor_type_names[4] =
36 {
37 "FRAG",
38 "VERT",
39 "GEOM",
40 "COMP"
41 };
42
43 static const char *tgsi_file_names[] =
44 {
45 "NULL",
46 "CONST",
47 "IN",
48 "OUT",
49 "TEMP",
50 "SAMP",
51 "ADDR",
52 "IMM",
53 "PRED",
54 "SV",
55 "RES",
56 "SVIEW"
57 };
58
59 const char *tgsi_semantic_names[TGSI_SEMANTIC_COUNT] =
60 {
61 "POSITION",
62 "COLOR",
63 "BCOLOR",
64 "FOG",
65 "PSIZE",
66 "GENERIC",
67 "NORMAL",
68 "FACE",
69 "EDGEFLAG",
70 "PRIM_ID",
71 "INSTANCEID",
72 "VERTEXID",
73 "STENCIL",
74 "CLIPDIST",
75 "CLIPVERTEX",
76 "GRID_SIZE",
77 "BLOCK_ID",
78 "BLOCK_SIZE",
79 "THREAD_ID",
80 "TEXCOORD",
81 "PCOORD",
82 "VIEWPORT_INDEX",
83 "LAYER",
84 "CULLDIST"
85 };
86
87 const char *tgsi_texture_names[TGSI_TEXTURE_COUNT] =
88 {
89 "BUFFER",
90 "1D",
91 "2D",
92 "3D",
93 "CUBE",
94 "RECT",
95 "SHADOW1D",
96 "SHADOW2D",
97 "SHADOWRECT",
98 "1D_ARRAY",
99 "2D_ARRAY",
100 "SHADOW1D_ARRAY",
101 "SHADOW2D_ARRAY",
102 "SHADOWCUBE",
103 "2D_MSAA",
104 "2D_ARRAY_MSAA",
105 "CUBEARRAY",
106 "SHADOWCUBEARRAY",
107 "UNKNOWN",
108 };
109
110 const char *tgsi_property_names[TGSI_PROPERTY_COUNT] =
111 {
112 "GS_INPUT_PRIMITIVE",
113 "GS_OUTPUT_PRIMITIVE",
114 "GS_MAX_OUTPUT_VERTICES",
115 "FS_COORD_ORIGIN",
116 "FS_COORD_PIXEL_CENTER",
117 "FS_COLOR0_WRITES_ALL_CBUFS",
118 "FS_DEPTH_LAYOUT",
119 "VS_PROHIBIT_UCPS"
120 };
121
122 const char *tgsi_type_names[5] =
123 {
124 "UNORM",
125 "SNORM",
126 "SINT",
127 "UINT",
128 "FLOAT"
129 };
130
131 const char *tgsi_interpolate_names[TGSI_INTERPOLATE_COUNT] =
132 {
133 "CONSTANT",
134 "LINEAR",
135 "PERSPECTIVE",
136 "COLOR"
137 };
138
139 const char *tgsi_primitive_names[PIPE_PRIM_MAX] =
140 {
141 "POINTS",
142 "LINES",
143 "LINE_LOOP",
144 "LINE_STRIP",
145 "TRIANGLES",
146 "TRIANGLE_STRIP",
147 "TRIANGLE_FAN",
148 "QUADS",
149 "QUAD_STRIP",
150 "POLYGON",
151 "LINES_ADJACENCY",
152 "LINE_STRIP_ADJACENCY",
153 "TRIANGLES_ADJACENCY",
154 "TRIANGLE_STRIP_ADJACENCY"
155 };
156
157 const char *tgsi_fs_coord_origin_names[2] =
158 {
159 "UPPER_LEFT",
160 "LOWER_LEFT"
161 };
162
163 const char *tgsi_fs_coord_pixel_center_names[2] =
164 {
165 "HALF_INTEGER",
166 "INTEGER"
167 };
168
169 const char *tgsi_immediate_type_names[3] =
170 {
171 "FLT32",
172 "UINT32",
173 "INT32"
174 };
175
176
177 static INLINE void
178 tgsi_strings_check(void)
179 {
180 STATIC_ASSERT(Elements(tgsi_semantic_names) == TGSI_SEMANTIC_COUNT);
181 STATIC_ASSERT(Elements(tgsi_texture_names) == TGSI_TEXTURE_COUNT);
182 STATIC_ASSERT(Elements(tgsi_property_names) == TGSI_PROPERTY_COUNT);
183 STATIC_ASSERT(Elements(tgsi_primitive_names) == PIPE_PRIM_MAX);
184 STATIC_ASSERT(Elements(tgsi_interpolate_names) == TGSI_INTERPOLATE_COUNT);
185 (void) tgsi_processor_type_names;
186 (void) tgsi_type_names;
187 (void) tgsi_immediate_type_names;
188 (void) tgsi_fs_coord_origin_names;
189 (void) tgsi_fs_coord_pixel_center_names;
190 }
191
192
193 const char *
194 tgsi_file_name(unsigned file)
195 {
196 STATIC_ASSERT(Elements(tgsi_file_names) == TGSI_FILE_COUNT);
197 if (file < Elements(tgsi_file_names))
198 return tgsi_file_names[file];
199 else
200 return "invalid file";
201 }