gallium: remove the swizzling parts of ExtSwizzle
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_util.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "util/u_debug.h"
29 #include "pipe/p_shader_tokens.h"
30 #include "tgsi_parse.h"
31 #include "tgsi_build.h"
32 #include "tgsi_util.h"
33
34 union pointer_hack
35 {
36 void *pointer;
37 uint64_t uint64;
38 };
39
40 void *
41 tgsi_align_128bit(
42 void *unaligned )
43 {
44 union pointer_hack ph;
45
46 ph.uint64 = 0;
47 ph.pointer = unaligned;
48 ph.uint64 = (ph.uint64 + 15) & ~15;
49 return ph.pointer;
50 }
51
52 unsigned
53 tgsi_util_get_src_register_swizzle(
54 const struct tgsi_src_register *reg,
55 unsigned component )
56 {
57 switch( component ) {
58 case 0:
59 return reg->SwizzleX;
60 case 1:
61 return reg->SwizzleY;
62 case 2:
63 return reg->SwizzleZ;
64 case 3:
65 return reg->SwizzleW;
66 default:
67 assert( 0 );
68 }
69 return 0;
70 }
71
72
73 unsigned
74 tgsi_util_get_full_src_register_swizzle(
75 const struct tgsi_full_src_register *reg,
76 unsigned component )
77 {
78 return tgsi_util_get_src_register_swizzle(
79 &reg->SrcRegister,
80 component );
81 }
82
83 void
84 tgsi_util_set_src_register_swizzle(
85 struct tgsi_src_register *reg,
86 unsigned swizzle,
87 unsigned component )
88 {
89 switch( component ) {
90 case 0:
91 reg->SwizzleX = swizzle;
92 break;
93 case 1:
94 reg->SwizzleY = swizzle;
95 break;
96 case 2:
97 reg->SwizzleZ = swizzle;
98 break;
99 case 3:
100 reg->SwizzleW = swizzle;
101 break;
102 default:
103 assert( 0 );
104 }
105 }
106
107 unsigned
108 tgsi_util_get_src_register_extnegate(
109 const struct tgsi_src_register_ext_swz *reg,
110 unsigned component )
111 {
112 switch( component ) {
113 case 0:
114 return reg->NegateX;
115 case 1:
116 return reg->NegateY;
117 case 2:
118 return reg->NegateZ;
119 case 3:
120 return reg->NegateW;
121 default:
122 assert( 0 );
123 }
124 return 0;
125 }
126
127 void
128 tgsi_util_set_src_register_extnegate(
129 struct tgsi_src_register_ext_swz *reg,
130 unsigned negate,
131 unsigned component )
132 {
133 switch( component ) {
134 case 0:
135 reg->NegateX = negate;
136 break;
137 case 1:
138 reg->NegateY = negate;
139 break;
140 case 2:
141 reg->NegateZ = negate;
142 break;
143 case 3:
144 reg->NegateW = negate;
145 break;
146 default:
147 assert( 0 );
148 }
149 }
150
151 unsigned
152 tgsi_util_get_full_src_register_sign_mode(
153 const struct tgsi_full_src_register *reg,
154 unsigned component )
155 {
156 unsigned sign_mode;
157
158 if( reg->SrcRegisterExtMod.Absolute ) {
159 /* Consider only the post-abs negation. */
160
161 if( reg->SrcRegisterExtMod.Negate ) {
162 sign_mode = TGSI_UTIL_SIGN_SET;
163 }
164 else {
165 sign_mode = TGSI_UTIL_SIGN_CLEAR;
166 }
167 }
168 else {
169 /* Accumulate the three negations. */
170
171 unsigned negate;
172
173 negate = reg->SrcRegister.Negate;
174 if( tgsi_util_get_src_register_extnegate( &reg->SrcRegisterExtSwz, component ) ) {
175 negate = !negate;
176 }
177 if( reg->SrcRegisterExtMod.Negate ) {
178 negate = !negate;
179 }
180
181 if( negate ) {
182 sign_mode = TGSI_UTIL_SIGN_TOGGLE;
183 }
184 else {
185 sign_mode = TGSI_UTIL_SIGN_KEEP;
186 }
187 }
188
189 return sign_mode;
190 }
191
192 void
193 tgsi_util_set_full_src_register_sign_mode(
194 struct tgsi_full_src_register *reg,
195 unsigned sign_mode )
196 {
197 reg->SrcRegisterExtSwz.NegateX = 0;
198 reg->SrcRegisterExtSwz.NegateY = 0;
199 reg->SrcRegisterExtSwz.NegateZ = 0;
200 reg->SrcRegisterExtSwz.NegateW = 0;
201
202 switch (sign_mode)
203 {
204 case TGSI_UTIL_SIGN_CLEAR:
205 reg->SrcRegister.Negate = 0;
206 reg->SrcRegisterExtMod.Absolute = 1;
207 reg->SrcRegisterExtMod.Negate = 0;
208 break;
209
210 case TGSI_UTIL_SIGN_SET:
211 reg->SrcRegister.Negate = 0;
212 reg->SrcRegisterExtMod.Absolute = 1;
213 reg->SrcRegisterExtMod.Negate = 1;
214 break;
215
216 case TGSI_UTIL_SIGN_TOGGLE:
217 reg->SrcRegister.Negate = 1;
218 reg->SrcRegisterExtMod.Absolute = 0;
219 reg->SrcRegisterExtMod.Negate = 0;
220 break;
221
222 case TGSI_UTIL_SIGN_KEEP:
223 reg->SrcRegister.Negate = 0;
224 reg->SrcRegisterExtMod.Absolute = 0;
225 reg->SrcRegisterExtMod.Negate = 0;
226 break;
227
228 default:
229 assert( 0 );
230 }
231 }