From: Ian Romanick Date: Tue, 24 May 2005 23:03:15 +0000 (+0000) Subject: Only use x86 / SSE assembly when USE_X86_ASM / USE_SSE_ASM are defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e87ab8c05fb08c39432f5838c05df3b50e9a2694;p=mesa.git Only use x86 / SSE assembly when USE_X86_ASM / USE_SSE_ASM are defined. This makes the driver build on x86-64 again. --- diff --git a/src/mesa/drivers/dri/unichrome/via_memcpy.c b/src/mesa/drivers/dri/unichrome/via_memcpy.c index 351ba26ff2a..d7b05bcaaf9 100644 --- a/src/mesa/drivers/dri/unichrome/via_memcpy.c +++ b/src/mesa/drivers/dri/unichrome/via_memcpy.c @@ -26,6 +26,7 @@ #include "via_tex.h" +#if defined( USE_SSE_ASM ) #define SSE_PREFETCH " prefetchnta " #define FENCE __asm__ __volatile__ ("sfence":::"memory"); @@ -134,5 +135,4 @@ void via_sse_memcpy(void *to, FENCE; } - - +#endif /* defined( USE_SSE_ASM ) */ diff --git a/src/mesa/drivers/dri/unichrome/via_tex.c b/src/mesa/drivers/dri/unichrome/via_tex.c index 9672888f8ea..f628e089d33 100644 --- a/src/mesa/drivers/dri/unichrome/via_tex.c +++ b/src/mesa/drivers/dri/unichrome/via_tex.c @@ -948,10 +948,14 @@ void viaInitTextureFuncs(struct dd_function_table * functions) functions->DeleteTexture = _mesa_delete_texture_object; functions->FreeTexImageData = viaFreeTextureImageData; +#if defined( USE_SSE_ASM ) if (getenv("VIA_NO_SSE")) functions->TextureMemCpy = _mesa_memcpy; else functions->TextureMemCpy = via_sse_memcpy; +#else + functions->TextureMemCpy = _mesa_memcpy; +#endif functions->UpdateTexturePalette = 0; functions->IsTextureResident = viaIsTextureResident; diff --git a/src/mesa/drivers/dri/unichrome/via_tex.h b/src/mesa/drivers/dri/unichrome/via_tex.h index 8277aada407..73cfa91addc 100644 --- a/src/mesa/drivers/dri/unichrome/via_tex.h +++ b/src/mesa/drivers/dri/unichrome/via_tex.h @@ -34,6 +34,8 @@ GLboolean viaUpdateTextureState(GLcontext *ctx); void viaInitTextureFuncs(struct dd_function_table * functions); GLboolean viaSwapOutWork( struct via_context *vmesa ); +#if defined( USE_SSE_ASM ) void via_sse_memcpy( void *to, const void *from, size_t sz ); +#endif /* defined( USE_SSE_ASM ) */ #endif diff --git a/src/mesa/drivers/dri/unichrome/via_tris.c b/src/mesa/drivers/dri/unichrome/via_tris.c index e425a1eda74..898a343856b 100644 --- a/src/mesa/drivers/dri/unichrome/via_tris.c +++ b/src/mesa/drivers/dri/unichrome/via_tris.c @@ -57,7 +57,7 @@ do { \ vb += vertsize; \ } while (0) #else -#if 1 +#if defined( USE_X86_ASM ) #define COPY_DWORDS(vb, vertsize, v) \ do { \ int j; \