1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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 VMWARE 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.
26 **************************************************************************/
30 * Helper functions for logical operations.
32 * @author Jose Fonseca <jfonseca@vmware.com>
36 #include "util/u_cpu_detect.h"
37 #include "util/u_debug.h"
39 #include "lp_bld_type.h"
40 #include "lp_bld_const.h"
41 #include "lp_bld_intr.h"
42 #include "lp_bld_logic.h"
48 * Selection with vector conditional like
50 * select <4 x i1> %C, %A, %B
52 * is valid IR (e.g. llvm/test/Assembler/vector-select.ll), but it is not
53 * supported on any backend.
55 * Expanding the boolean vector to full SIMD register width, as in
57 * sext <4 x i1> %C to <4 x i32>
59 * is valid and supported (e.g., llvm/test/CodeGen/X86/vec_compare.ll), but
60 * it causes assertion failures in LLVM 2.6. It appears to work correctly on
66 * Build code to compare two values 'a' and 'b' of 'type' using the given func.
67 * \param func one of PIPE_FUNC_x
68 * The result values will be 0 for false or ~0 for true.
71 lp_build_compare(LLVMBuilderRef builder
,
72 const struct lp_type type
,
77 LLVMTypeRef int_vec_type
= lp_build_int_vec_type(type
);
78 LLVMValueRef zeros
= LLVMConstNull(int_vec_type
);
79 LLVMValueRef ones
= LLVMConstAllOnes(int_vec_type
);
83 assert(func
>= PIPE_FUNC_NEVER
);
84 assert(func
<= PIPE_FUNC_ALWAYS
);
86 if(func
== PIPE_FUNC_NEVER
)
88 if(func
== PIPE_FUNC_ALWAYS
)
91 /* TODO: optimize the constant case */
93 /* XXX: It is not clear if we should use the ordered or unordered operators */
95 #if HAVE_LLVM < 0x0207
96 #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
97 if(type
.width
* type
.length
== 128) {
98 if(type
.floating
&& util_cpu_caps
.has_sse
) {
99 /* float[4] comparison */
100 LLVMTypeRef vec_type
= lp_build_vec_type(type
);
101 LLVMValueRef args
[3];
107 case PIPE_FUNC_EQUAL
:
110 case PIPE_FUNC_NOTEQUAL
:
116 case PIPE_FUNC_LEQUAL
:
119 case PIPE_FUNC_GREATER
:
123 case PIPE_FUNC_GEQUAL
:
129 return lp_build_undef(type
);
141 args
[2] = LLVMConstInt(LLVMInt8Type(), cc
, 0);
142 res
= lp_build_intrinsic(builder
,
143 "llvm.x86.sse.cmp.ps",
146 res
= LLVMBuildBitCast(builder
, res
, int_vec_type
, "");
149 else if(util_cpu_caps
.has_sse2
) {
150 /* int[4] comparison */
151 static const struct {
157 {0, 0, 0, 1}, /* PIPE_FUNC_NEVER */
158 {1, 0, 1, 0}, /* PIPE_FUNC_LESS */
159 {0, 1, 0, 0}, /* PIPE_FUNC_EQUAL */
160 {0, 0, 1, 1}, /* PIPE_FUNC_LEQUAL */
161 {0, 0, 1, 0}, /* PIPE_FUNC_GREATER */
162 {0, 1, 0, 1}, /* PIPE_FUNC_NOTEQUAL */
163 {1, 0, 1, 1}, /* PIPE_FUNC_GEQUAL */
164 {0, 0, 0, 0} /* PIPE_FUNC_ALWAYS */
168 LLVMValueRef args
[2];
170 LLVMTypeRef vec_type
= lp_build_vec_type(type
);
172 switch (type
.width
) {
174 pcmpeq
= "llvm.x86.sse2.pcmpeq.b";
175 pcmpgt
= "llvm.x86.sse2.pcmpgt.b";
178 pcmpeq
= "llvm.x86.sse2.pcmpeq.w";
179 pcmpgt
= "llvm.x86.sse2.pcmpgt.w";
182 pcmpeq
= "llvm.x86.sse2.pcmpeq.d";
183 pcmpgt
= "llvm.x86.sse2.pcmpgt.d";
187 return lp_build_undef(type
);
190 /* There are no signed byte and unsigned word/dword comparison
191 * instructions. So flip the sign bit so that the results match.
194 ((type
.width
== 8 && type
.sign
) ||
195 (type
.width
!= 8 && !type
.sign
))) {
196 LLVMValueRef msb
= lp_build_const_int_vec(type
, (unsigned long long)1 << (type
.width
- 1));
197 a
= LLVMBuildXor(builder
, a
, msb
, "");
198 b
= LLVMBuildXor(builder
, b
, msb
, "");
201 if(table
[func
].swap
) {
211 res
= lp_build_intrinsic(builder
, pcmpeq
, vec_type
, args
, 2);
212 else if (table
[func
].gt
)
213 res
= lp_build_intrinsic(builder
, pcmpgt
, vec_type
, args
, 2);
215 res
= LLVMConstNull(vec_type
);
218 res
= LLVMBuildNot(builder
, res
, "");
222 } /* if (type.width * type.length == 128) */
224 #endif /* HAVE_LLVM < 0x0207 */
227 LLVMRealPredicate op
;
229 case PIPE_FUNC_NEVER
:
230 op
= LLVMRealPredicateFalse
;
232 case PIPE_FUNC_ALWAYS
:
233 op
= LLVMRealPredicateTrue
;
235 case PIPE_FUNC_EQUAL
:
238 case PIPE_FUNC_NOTEQUAL
:
244 case PIPE_FUNC_LEQUAL
:
247 case PIPE_FUNC_GREATER
:
250 case PIPE_FUNC_GEQUAL
:
255 return lp_build_undef(type
);
258 #if HAVE_LLVM >= 0x0207
259 cond
= LLVMBuildFCmp(builder
, op
, a
, b
, "");
260 res
= LLVMBuildSExt(builder
, cond
, int_vec_type
, "");
262 if (type
.length
== 1) {
263 cond
= LLVMBuildFCmp(builder
, op
, a
, b
, "");
264 res
= LLVMBuildSExt(builder
, cond
, int_vec_type
, "");
269 res
= LLVMGetUndef(int_vec_type
);
271 debug_printf("%s: warning: using slow element-wise float"
272 " vector comparison\n", __FUNCTION__
);
273 for (i
= 0; i
< type
.length
; ++i
) {
274 LLVMValueRef index
= LLVMConstInt(LLVMInt32Type(), i
, 0);
275 cond
= LLVMBuildFCmp(builder
, op
,
276 LLVMBuildExtractElement(builder
, a
, index
, ""),
277 LLVMBuildExtractElement(builder
, b
, index
, ""),
279 cond
= LLVMBuildSelect(builder
, cond
,
280 LLVMConstExtractElement(ones
, index
),
281 LLVMConstExtractElement(zeros
, index
),
283 res
= LLVMBuildInsertElement(builder
, res
, cond
, index
, "");
291 case PIPE_FUNC_EQUAL
:
294 case PIPE_FUNC_NOTEQUAL
:
298 op
= type
.sign
? LLVMIntSLT
: LLVMIntULT
;
300 case PIPE_FUNC_LEQUAL
:
301 op
= type
.sign
? LLVMIntSLE
: LLVMIntULE
;
303 case PIPE_FUNC_GREATER
:
304 op
= type
.sign
? LLVMIntSGT
: LLVMIntUGT
;
306 case PIPE_FUNC_GEQUAL
:
307 op
= type
.sign
? LLVMIntSGE
: LLVMIntUGE
;
311 return lp_build_undef(type
);
314 #if HAVE_LLVM >= 0x0207
315 cond
= LLVMBuildICmp(builder
, op
, a
, b
, "");
316 res
= LLVMBuildSExt(builder
, cond
, int_vec_type
, "");
318 if (type
.length
== 1) {
319 cond
= LLVMBuildICmp(builder
, op
, a
, b
, "");
320 res
= LLVMBuildSExt(builder
, cond
, int_vec_type
, "");
325 res
= LLVMGetUndef(int_vec_type
);
327 debug_printf("%s: warning: using slow element-wise int"
328 " vector comparison\n", __FUNCTION__
);
330 for(i
= 0; i
< type
.length
; ++i
) {
331 LLVMValueRef index
= LLVMConstInt(LLVMInt32Type(), i
, 0);
332 cond
= LLVMBuildICmp(builder
, op
,
333 LLVMBuildExtractElement(builder
, a
, index
, ""),
334 LLVMBuildExtractElement(builder
, b
, index
, ""),
336 cond
= LLVMBuildSelect(builder
, cond
,
337 LLVMConstExtractElement(ones
, index
),
338 LLVMConstExtractElement(zeros
, index
),
340 res
= LLVMBuildInsertElement(builder
, res
, cond
, index
, "");
352 * Build code to compare two values 'a' and 'b' using the given func.
353 * \param func one of PIPE_FUNC_x
354 * The result values will be 0 for false or ~0 for true.
357 lp_build_cmp(struct lp_build_context
*bld
,
362 return lp_build_compare(bld
->builder
, bld
->type
, func
, a
, b
);
367 * Return mask ? a : b;
369 * mask is a bitwise mask, composed of 0 or ~0 for each element.
372 lp_build_select(struct lp_build_context
*bld
,
377 struct lp_type type
= bld
->type
;
383 if (type
.length
== 1) {
384 mask
= LLVMBuildTrunc(bld
->builder
, mask
, LLVMInt1Type(), "");
385 res
= LLVMBuildSelect(bld
->builder
, mask
, a
, b
, "");
389 LLVMTypeRef int_vec_type
= lp_build_int_vec_type(type
);
390 a
= LLVMBuildBitCast(bld
->builder
, a
, int_vec_type
, "");
391 b
= LLVMBuildBitCast(bld
->builder
, b
, int_vec_type
, "");
394 a
= LLVMBuildAnd(bld
->builder
, a
, mask
, "");
396 /* This often gets translated to PANDN, but sometimes the NOT is
397 * pre-computed and stored in another constant. The best strategy depends
398 * on available registers, so it is not a big deal -- hopefully LLVM does
399 * the right decision attending the rest of the program.
401 b
= LLVMBuildAnd(bld
->builder
, b
, LLVMBuildNot(bld
->builder
, mask
, ""), "");
403 res
= LLVMBuildOr(bld
->builder
, a
, b
, "");
406 LLVMTypeRef vec_type
= lp_build_vec_type(type
);
407 res
= LLVMBuildBitCast(bld
->builder
, res
, vec_type
, "");
416 lp_build_select_aos(struct lp_build_context
*bld
,
419 const boolean cond
[4])
421 const struct lp_type type
= bld
->type
;
422 const unsigned n
= type
.length
;
427 if(cond
[0] && cond
[1] && cond
[2] && cond
[3])
429 if(!cond
[0] && !cond
[1] && !cond
[2] && !cond
[3])
431 if(a
== bld
->undef
|| b
== bld
->undef
)
435 * There are three major ways of accomplishing this:
438 * - or with a bit mask.
440 * Select isn't supported for vector types yet.
441 * The flip between these is empirical and might need to be.
447 LLVMTypeRef elem_type
= LLVMInt32Type();
448 LLVMValueRef shuffles
[LP_MAX_VECTOR_LENGTH
];
450 for(j
= 0; j
< n
; j
+= 4)
451 for(i
= 0; i
< 4; ++i
)
452 shuffles
[j
+ i
] = LLVMConstInt(elem_type
, (cond
[i
] ? 0 : n
) + j
+ i
, 0);
454 return LLVMBuildShuffleVector(bld
->builder
, a
, b
, LLVMConstVector(shuffles
, n
), "");
458 /* XXX: Unfortunately select of vectors do not work */
460 LLVMTypeRef elem_type
= LLVMInt1Type();
461 LLVMValueRef cond
[LP_MAX_VECTOR_LENGTH
];
463 for(j
= 0; j
< n
; j
+= 4)
464 for(i
= 0; i
< 4; ++i
)
465 cond
[j
+ i
] = LLVMConstInt(elem_type
, cond
[i
] ? 1 : 0, 0);
467 return LLVMBuildSelect(bld
->builder
, LLVMConstVector(cond
, n
), a
, b
, "");
469 LLVMValueRef mask
= lp_build_const_mask_aos(type
, cond
);
470 return lp_build_select(bld
, mask
, a
, b
);
476 lp_build_alloca(struct lp_build_context
*bld
)
478 const struct lp_type type
= bld
->type
;
480 if (type
.length
> 1) { /*vector*/
481 return LLVMBuildAlloca(bld
->builder
, lp_build_vec_type(type
), "");
483 return LLVMBuildAlloca(bld
->builder
, lp_build_elem_type(type
), "");