summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorJames Benton <[email protected]>2012-05-30 14:40:33 +0100
committerJosé Fonseca <[email protected]>2012-11-28 19:14:36 +0000
commitd7a8390a821e9a9e7ae5103eb50315eac8131c9c (patch)
tree4c6282c305ed57b07e8378a3faa87108bb908463 /src/gallium/auxiliary
parent71c6fe76c05aa7fc1300cb13e6507abbea5a1e19 (diff)
gallivm: Changed lp_build_pad_vector to correctly handle scalar argument.
Removed the lp_type argument as it was unnecessary. Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c2
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_pack.c36
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_pack.h1
3 files changed, 22 insertions, 17 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c b/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
index 609b9d415d6..24fee640a82 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
@@ -82,7 +82,7 @@ lp_build_fetch_rgba_aos_array(struct gallivm_state *gallivm,
/* Expand to correct length */
if (src_type.length < dst_type.length) {
- res = lp_build_pad_vector(gallivm, res, src_type, dst_type.length);
+ res = lp_build_pad_vector(gallivm, res, dst_type.length);
src_type.length = dst_type.length;
}
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_pack.c b/src/gallium/auxiliary/gallivm/lp_bld_pack.c
index b18f7841ccb..e57d4148870 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_pack.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_pack.c
@@ -745,32 +745,38 @@ lp_build_resize(struct gallivm_state *gallivm,
*/
LLVMValueRef
lp_build_pad_vector(struct gallivm_state *gallivm,
- LLVMValueRef src,
- struct lp_type src_type,
- unsigned dst_length)
+ LLVMValueRef src,
+ unsigned dst_length)
{
- LLVMValueRef undef = LLVMGetUndef(lp_build_vec_type(gallivm, src_type));
LLVMValueRef elems[LP_MAX_VECTOR_LENGTH];
- unsigned i;
+ LLVMValueRef undef;
+ LLVMTypeRef type;
+ unsigned i, src_length;
+
+ type = LLVMTypeOf(src);
+
+ if (LLVMGetTypeKind(type) != LLVMVectorTypeKind) {
+ /* Can't use ShuffleVector on non-vector type */
+ undef = LLVMGetUndef(LLVMVectorType(type, dst_length));
+ return LLVMBuildInsertElement(gallivm->builder, undef, src, lp_build_const_int32(gallivm, 0), "");
+ }
+
+ undef = LLVMGetUndef(type);
+ src_length = LLVMGetVectorSize(type);
assert(dst_length <= Elements(elems));
- assert(dst_length > src_type.length);
+ assert(dst_length >= src_length);
- if (src_type.length == dst_length)
+ if (src_length == dst_length)
return src;
- /* If its a single scalar type, no need to reinvent the wheel */
- if (src_type.length == 1) {
- return lp_build_broadcast(gallivm, LLVMVectorType(lp_build_elem_type(gallivm, src_type), dst_length), src);
- }
-
/* All elements from src vector */
- for (i = 0; i < src_type.length; ++i)
+ for (i = 0; i < src_length; ++i)
elems[i] = lp_build_const_int32(gallivm, i);
/* Undef fill remaining space */
- for (i = src_type.length; i < dst_length; ++i)
- elems[i] = lp_build_const_int32(gallivm, src_type.length);
+ for (i = src_length; i < dst_length; ++i)
+ elems[i] = lp_build_const_int32(gallivm, src_length);
/* Combine the two vectors */
return LLVMBuildShuffleVector(gallivm->builder, src, undef, LLVMConstVector(elems, dst_length), "");
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_pack.h b/src/gallium/auxiliary/gallivm/lp_bld_pack.h
index 73f299cca11..f734c60b1d8 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_pack.h
+++ b/src/gallium/auxiliary/gallivm/lp_bld_pack.h
@@ -122,7 +122,6 @@ lp_build_resize(struct gallivm_state *gallivm,
LLVMValueRef
lp_build_pad_vector(struct gallivm_state *gallivm,
LLVMValueRef src,
- struct lp_type src_type,
unsigned dst_length);
#endif /* !LP_BLD_PACK_H */