]> git.gag.com Git - debian/gnuradio/blobdiff - gnuradio-core/src/lib/filter/float_dotprod_sse64.S
Renamed labels .loop1 and .loop2 to include name of file they're contained in.
[debian/gnuradio] / gnuradio-core / src / lib / filter / float_dotprod_sse64.S
index c7f821a3df2e8c8c3fba8f7d8aa50dc51b4781e5..c725b69fb70a3e8140470be7b2cf4e7efd6d8938 100644 (file)
@@ -5,7 +5,7 @@
 # 
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
 # any later version.
 # 
 # GNU Radio is distributed in the hope that it will be useful,
@@ -15,8 +15,8 @@
 # 
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
 # 
 
 
@@ -77,7 +77,7 @@ GLOB_SYMB(float_dotprod_sse):
        jmp     .L1_test
 
        .p2align 4
-.loop1:        
+.float_dotprod_sse64_loop1:    
        movaps  (%rsi), %xmm0
        mulps   (%rdi), %xmm0
        add     $0x10, %rdi
@@ -85,7 +85,7 @@ GLOB_SYMB(float_dotprod_sse):
        addps   %xmm0, %xmm4
 .L1_test:      
        dec     %rax
-       jge     .loop1
+       jge     .float_dotprod_sse64_loop1
 
        
        # set up for primary loop which is unrolled 4 times
@@ -107,7 +107,7 @@ GLOB_SYMB(float_dotprod_sse):
        # hence enter loop at top
 
        .p2align 4
-.loop2:
+.float_dotprod_sse64_loop2:
        mulps   (%rdi), %xmm0
        addps   %xmm2, %xmm6
        movaps  0x20(%rsi), %xmm2
@@ -127,7 +127,7 @@ GLOB_SYMB(float_dotprod_sse):
        add     $0x40, %rdi
        add     $0x40, %rsi
        dec     %rdx
-       jne     .loop2
+       jne     .float_dotprod_sse64_loop2
 
        # OK, now we've done with all the multiplies, but
        # we still need to handle the unaccumulated
@@ -159,3 +159,7 @@ GLOB_SYMB(float_dotprod_sse):
 
 FUNC_TAIL(float_dotprod_sse)
        .ident  "Hand coded x86_64 SSE assembly"
+
+#if defined(__linux__) && defined(__ELF__)
+.section .note.GNU-stack,"",%progbits
+#endif