[Bug 108586] Android build error with new tiled_memcopy_sse41 (32 bit build only)

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Tue Oct 30 12:47:55 UTC 2018


https://bugs.freedesktop.org/show_bug.cgi?id=108586

Tapani Pälli <lemody at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #2 from Tapani Pälli <lemody at gmail.com> ---
Fix was pushed to master, thanks Mauro!

--- 8< ---
commit bfe0e3291302f4a8bf2f9b401a07f6d5ade19d15
Author: Mauro Rossi <issor.oruam at gmail.com>
Date:   Mon Oct 29 12:59:56 2018 +0100

    android: i965/tiled_memcpy: fix build for x86 generic target

    x86 32 bit generic target does not enable ARCH_X86_HAVE_SSE4_1
    for this reason all Android library modules using SSE4_1 in mesa
    are built conditionally to ARCH_X86_HAVE_SSE4_1

    The same approach is now applied to libmesa_intel_tiled_memcpy_sse41
    in order to avoid the following building errors:

    external/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c:574:15:
    error: initializing '__m128i' (vector of 2 'long long' values) with an
expression of incompatible type 'int'
          __m128i val = _mm_stream_load_si128((__m128i *)src);
                  ^     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    external/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c:578:15:
    error: initializing '__m128i' (vector of 2 'long long' values) with an
expression of incompatible type 'int'
          __m128i val0 = _mm_stream_load_si128(((__m128i *)src) + 0);
                  ^      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    external/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c:579:15:
    error: initializing '__m128i' (vector of 2 'long long' values) with an
expression of incompatible type 'int'
          __m128i val1 = _mm_stream_load_si128(((__m128i *)src) + 1);
                  ^      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    external/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c:580:15:
    error: initializing '__m128i' (vector of 2 'long long' values) with an
expression of incompatible type 'int'
          __m128i val2 = _mm_stream_load_si128(((__m128i *)src) + 2);
                  ^      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    external/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c:581:15: error:
initializing '__m128i' (vector of 2 'long long' values) with an expression of
incompatible type 'int'
          __m128i val3 = _mm_stream_load_si128(((__m128i *)src) + 3);
                  ^      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    5 errors generated.

    Fixes: 11b1afdc92 ("i965/tiled_memcpy: inline movntdqa loads in
tiled_to_linear")
    Signed-off-by: Mauro Rossi <issor.oruam at gmail.com>
    Reviewed-by: Tapani Pälli <tapani.palli at intel.com>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-3d-bugs/attachments/20181030/d218da9b/attachment.html>


More information about the intel-3d-bugs mailing list