From 28e46458bca3065baf0424b20e5b72cb672069e6 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Tue, 4 Aug 2009 12:32:24 +0100 Subject: llvmpipe: Some notes about PSHUF. --- src/gallium/drivers/llvmpipe/lp_bld_swizzle.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.c b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.c index 0205d17ff1..8cda4a48ba 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.c @@ -45,6 +45,9 @@ lp_build_broadcast_aos(struct lp_build_context *bld, if(a == bld->undef || a == bld->zero || a == bld->one) return a; + /* XXX: SSE3 has PSHUFB which should be better than bitmasks, but forcing + * using shuffles here actually causes worst results. More investigation is + * needed. */ if (n <= 4) { /* * Shuffle. @@ -62,10 +65,10 @@ lp_build_broadcast_aos(struct lp_build_context *bld, /* * Bit mask and recursive shifts * - * XYZW XYZW .... XYZW - * _Y__ _Y__ .... _Y__ - * YY_ YY__ .... YY__ - * YYYY YYYY .... YYYY + * XYZW XYZW .... XYZW <= input + * 0Y00 0Y00 .... 0Y00 + * YY00 YY00 .... YY00 + * YYYY YYYY .... YYYY <= output */ union lp_type type4 = type; const char shifts[4][2] = { -- cgit v1.2.3