Merge branch 'gallium-edgeflags'
[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->Register,
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_full_src_register_sign_mode(
109 const struct tgsi_full_src_register *reg,
110 unsigned component )
111 {
112 unsigned sign_mode;
113
114 if( reg->Register.Absolute ) {
115 /* Consider only the post-abs negation. */
116
117 if( reg->Register.Negate ) {
118 sign_mode = TGSI_UTIL_SIGN_SET;
119 }
120 else {
121 sign_mode = TGSI_UTIL_SIGN_CLEAR;
122 }
123 }
124 else {
125 if( reg->Register.Negate ) {
126 sign_mode = TGSI_UTIL_SIGN_TOGGLE;
127 }
128 else {
129 sign_mode = TGSI_UTIL_SIGN_KEEP;
130 }
131 }
132
133 return sign_mode;
134 }
135
136 void
137 tgsi_util_set_full_src_register_sign_mode(
138 struct tgsi_full_src_register *reg,
139 unsigned sign_mode )
140 {
141 switch (sign_mode)
142 {
143 case TGSI_UTIL_SIGN_CLEAR:
144 reg->Register.Negate = 0;
145 reg->Register.Absolute = 1;
146 break;
147
148 case TGSI_UTIL_SIGN_SET:
149 reg->Register.Absolute = 1;
150 reg->Register.Negate = 1;
151 break;
152
153 case TGSI_UTIL_SIGN_TOGGLE:
154 reg->Register.Negate = 1;
155 reg->Register.Absolute = 0;
156 break;
157
158 case TGSI_UTIL_SIGN_KEEP:
159 reg->Register.Negate = 0;
160 reg->Register.Absolute = 0;
161 break;
162
163 default:
164 assert( 0 );
165 }
166 }