Add .note.GNU-stack section to assembler files to avoid the default behavior
authorKristian Høgsberg <krh@redhat.com>
Mon, 17 Apr 2006 18:58:24 +0000 (18:58 +0000)
committerKristian Høgsberg <krh@redhat.com>
Mon, 17 Apr 2006 18:58:24 +0000 (18:58 +0000)
of requesting executable stacks.

25 files changed:
src/mesa/drivers/dri/r200/r200_vtxtmp_x86.S
src/mesa/drivers/dri/radeon/radeon_vtxtmp_x86.S
src/mesa/glapi/gl_x86-64_asm.py
src/mesa/glapi/gl_x86_asm.py
src/mesa/tnl/t_vtx_x86_gcc.S
src/mesa/x86-64/glapi_x86-64.S
src/mesa/x86-64/xform4.S
src/mesa/x86/3dnow_normal.S
src/mesa/x86/3dnow_xform1.S
src/mesa/x86/3dnow_xform2.S
src/mesa/x86/3dnow_xform3.S
src/mesa/x86/3dnow_xform4.S
src/mesa/x86/common_x86_asm.S
src/mesa/x86/glapi_x86.S
src/mesa/x86/mmx_blend.S
src/mesa/x86/read_rgba_span_x86.S
src/mesa/x86/sse_normal.S
src/mesa/x86/sse_xform1.S
src/mesa/x86/sse_xform2.S
src/mesa/x86/sse_xform3.S
src/mesa/x86/sse_xform4.S
src/mesa/x86/x86_cliptest.S
src/mesa/x86/x86_xform2.S
src/mesa/x86/x86_xform3.S
src/mesa/x86/x86_xform4.S

index 57a35c657b8a895c9460df7940ecceb706ec4679..5e33c7bdeeada5f73ae303c0eb9fbd78135e919a 100644 (file)
@@ -493,3 +493,7 @@ GLOBL( _sse_MultiTexCoord2f_2 )
        ret
 GLOBL( _sse_MultiTexCoord2f_2_end )
 #endif
+
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index d2bb1d15192b3da1df4bc918b294ecce9e9ffaef..1b433491aa847098f2be10468d9451b3ac82c20a 100644 (file)
@@ -492,3 +492,7 @@ GLOBL( _sse_MultiTexCoord2f_2 )
        ret
 GLOBL( _sse_MultiTexCoord2f_2_end )
 #endif
+
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 20050ef3cf69aa76b5f1a136109410022e2802c3..ea13d2ac5227080f5b2b818bf731c30fd754ba41 100644 (file)
@@ -190,6 +190,10 @@ class PrintGenericStubs(gl_XML.gl_print_base):
                print ' .long   2,4,20    /* Minimum kernel version w/TLS */'
                print '3:       .p2align 2        /* pad out section */'
                print '#endif /* GLX_USE_TLS */'
+               print ''
+               print '#if defined (__ELF__) && defined (__linux__)'
+               print ' .section .note.GNU-stack,"",%progbits'
+               print '#endif'
                return
 
 
index e62687a7235b409cd11f7fbfb66024c311568d44..899cce64b99355b7094dda35c5fc6001d424d50c 100644 (file)
@@ -188,6 +188,10 @@ class PrintGenericStubs(gl_XML.gl_print_base):
                print ' .long   2,4,20    /* Minimum kernel version w/TLS */'
                print '3:       .p2align 2        /* pad out section */'
                print '#endif /* GLX_USE_TLS */'
+               print ''
+               print '#if defined (__ELF__) && defined (__linux__)'
+               print ' .section .note.GNU-stack,"",%progbits'
+               print '#endif'
                return
 
 
index 5f79197f7e5a50ce88acb56f47456d729a3f8b13..93753be759b40264d08dddb7019da45ff58d3d0e 100644 (file)
@@ -555,3 +555,7 @@ GLOBL( _tnl_x86_dispatch_vertexattribfv )
        ret     $8              /* return */
 GLOBL( _tnl_x86_dispatch_vertexattribfv_end )
 #endif /* defined (STDCALL_API) */
+
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 34433510c5682d6da1633fd9711f0c009a131814..d976d53fe4ba33bd9f1c8202417a06bd81557280 100644 (file)
@@ -31127,3 +31127,7 @@ GL_PREFIX(BlitFramebufferEXT):
        .long   2,4,20    /* Minimum kernel version w/TLS */
 3:     .p2align 2        /* pad out section */
 #endif /* GLX_USE_TLS */
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 622c3f0c25188a50c4fa15dd3c9439ecd4afb58a..65328f6666e856966ba3e2e80e5286fd7ca1a2e4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xform4.S,v 1.1 2005/05/07 16:59:59 brianp Exp $ */
+/* $Id: xform4.S,v 1.2 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -456,3 +456,7 @@ p4_2d_done:
        ret
                        
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 623849d80ceb9e1f4939e40d607ef67ebf6722b3..4345c1b574e7bb36ca5e4d544c383a6b8cd4e6ed 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: 3dnow_normal.S,v 1.9 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: 3dnow_normal.S,v 1.10 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -846,3 +846,7 @@ LLBL (G3R_end):
     RET
 
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 57e66e94ab4e0b25b5727534a6308c37a804f034..22b12cca067094e4d3bc1ae3ce3073e91ee1e58f 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: 3dnow_xform1.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: 3dnow_xform1.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -431,3 +431,7 @@ LLBL( G3TP3R_3 ):
     RET
 
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 98c1522015dec921da5201148a4d5f5fe15687c2..d9e96d04e28bcd92c5da918a845adaf1a40e5c5c 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: 3dnow_xform2.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: 3dnow_xform2.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -471,3 +471,7 @@ LLBL( G3TPIR_4 ):
     POP_L     ( ESI )
     RET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index bc6fd5a1c6df9283aa2430c682f354dd7ece39dc..babee1caa003896541fab73d59936ad7756fc183 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: 3dnow_xform3.S,v 1.4 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: 3dnow_xform3.S,v 1.5 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -555,3 +555,7 @@ LLBL( G3TPIR_2 ):
     POP_L     ( ESI )
     RET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index b4336cd659acb8d56059471747b2ec55b8dac6c5..b16d2b12dd6a249dc88f726a81bcd714b768c237 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: 3dnow_xform4.S,v 1.4 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: 3dnow_xform4.S,v 1.5 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -564,3 +564,7 @@ LLBL( G3TPIR_2 ):
     POP_L     ( ESI )
     RET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 654b3469d8a60634b2f9bed9645eb46af7190989..ef3cc9eb59fca63b8c32d3e0ce925394bf5c44b2 100644 (file)
@@ -213,3 +213,7 @@ GLNAME( _mesa_test_os_sse_exception_support ):
 
 #endif
 
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 1a46e5567e783138d73637089b70e6ce7f6efbc0..ed79797d321e65853a1326117c34e6756aaf53c1 100644 (file)
@@ -1156,3 +1156,7 @@ GLNAME(gl_dispatch_functions_end):
        .long   2,4,20    /* Minimum kernel version w/TLS */
 3:     .p2align 2        /* pad out section */
 #endif /* GLX_USE_TLS */
+       
+#if defined(__ELF__) && defined(__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index f7326cdbe6b1a479a37582bda4fbc94be800ae24..397d635a6217a048f854ab6c2737b83f144549e6 100644 (file)
@@ -364,3 +364,7 @@ TWO(MOVQ       ( MM1, REGIND(rgba) ))
 #include "mmx_blendtmp.h"
 
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 6b8036e5b8d8302359235fd0cfa0c9c0fb8d169a..960cffa50bc61909dc5871d91cc8cd86b1ec8295 100644 (file)
@@ -687,3 +687,7 @@ _generic_read_RGBA_span_RGB565_MMX:
 #endif
        ret
 #endif /* !defined(__DJGPP__) && !defined(__MINGW32__) */
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 07d831b8b69f2178776a73be6c49d22120774453..066d46e5efd9335f151a8d67199b12ab813b9173 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sse_normal.S,v 1.5 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: sse_normal.S,v 1.6 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -255,3 +255,7 @@ LLBL(K_G3TNNRR_finish):
        RET
 #undef FRAME_OFFSET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 1795c4cf86b93340f1a743b9b0a5fb26c1bb1108..4051f606a7eefc3b4a90c199089b8af9c9477adf 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sse_xform1.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: sse_xform1.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -440,3 +440,7 @@ LLBL(K_GTP13P3DR_finish):
        RET
 #undef FRAME_OFFSET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 9393668df02df1c524e90ecc897762405c3d6d49..06fe086bd40569b450e1d50516a0a940c46bb583 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sse_xform2.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: sse_xform2.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -459,3 +459,7 @@ LLBL(K_GTP23P3DR_finish):
        RET
 #undef FRAME_OFFSET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index db0b3cbfc5ba7195f078337a53ffed9f60cb63a1..eafbe342887610c094b1b833d3963f59b75cd582 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sse_xform3.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: sse_xform3.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -505,3 +505,7 @@ LLBL(K_GTP3P3DR_finish):
        RET
 #undef FRAME_OFFSET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index aef62b00aa85c0a5a4cf089bb76effa2c1149de9..24c323194f1219f08b81ddc67c5250abb9187c5e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sse_xform4.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: sse_xform4.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -229,3 +229,7 @@ LLBL( sse_identity_done ):
        POP_L( ESI )
        RET
 #endif
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index f4038a583ae290f1ac5065d338db7f1fe33da32c..5a45ee6ae60588aa94986f225d4f97cdc9cc27d3 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86_cliptest.S,v 1.11 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: x86_cliptest.S,v 1.12 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -401,3 +401,7 @@ LLBL(ctp4_np_finish):
        POP_L( ESI )
 
        RET
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index bb255b48550aee9883521edde5b1d0fc916c46cd..94f6989d423b981d81c02607741fdf8785d6e12b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86_xform2.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: x86_xform2.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -568,3 +568,7 @@ LLBL(x86_p2_ir_done):
        POP_L( ESI )
        RET
 #undef FRAME_OFFSET
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 6bdec6aa74f109fd902616e82443a538ee029d0b..747e2f4d286bba5c797aea59cbba33e4e2502294 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86_xform3.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: x86_xform3.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -638,3 +638,7 @@ LLBL(x86_p3_ir_done):
        POP_L( EDI )
        POP_L( ESI )
        RET
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif
index 61b303ad31bab5828c36f84c3b6de38a1ff4b389..def3c1ceb9ed1593198d2a8eb509d701130b14ab 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86_xform4.S,v 1.3 2005/01/04 14:33:47 brianp Exp $ */
+/* $Id: x86_xform4.S,v 1.4 2006/04/17 18:58:24 krh Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -671,3 +671,7 @@ LLBL(x86_p4_ir_done):
        POP_L( EDI )
        POP_L( ESI )
        RET
+       
+#if defined (__ELF__) && defined (__linux__)
+       .section .note.GNU-stack,"",%progbits
+#endif