flac-1.2.1-asm
authorAnas Nashif <anas.nashif@intel.com>
Thu, 22 Nov 2012 14:31:16 +0000 (06:31 -0800)
committerAnas Nashif <anas.nashif@intel.com>
Thu, 22 Nov 2012 14:31:16 +0000 (06:31 -0800)
src/libFLAC/ia32/Makefile.am
src/libFLAC/ia32/bitreader_asm.nasm
src/libFLAC/ia32/cpu_asm.nasm
src/libFLAC/ia32/fixed_asm.nasm
src/libFLAC/ia32/lpc_asm.nasm
src/libFLAC/ia32/stream_encoder_asm.nasm
src/libFLAC/stream_decoder.c

index 04a5b98..3c88b62 100644 (file)
@@ -37,7 +37,6 @@ STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh
 
 noinst_LTLIBRARIES = libFLAC-asm.la
 libFLAC_asm_la_SOURCES = \
-       bitreader_asm.nasm \
        cpu_asm.nasm \
        fixed_asm.nasm \
        lpc_asm.nasm \
index 5d1bbfa..dbef1ba 100644 (file)
@@ -564,5 +564,5 @@ cident FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap
 end
 
 %ifdef OBJ_FORMAT_elf
-       section .note.GNU-stack noalloc
+       section .note.GNU-stack progbits noalloc noexec nowrite align=1
 %endif
index f5eb110..02c6e43 100644 (file)
@@ -117,5 +117,5 @@ cident FLAC__cpu_info_extended_amd_asm_ia32
 end
 
 %ifdef OBJ_FORMAT_elf
-       section .note.GNU-stack noalloc
+       section .note.GNU-stack progbits noalloc noexec nowrite align=1
 %endif
index 0185f4d..af45efe 100644 (file)
@@ -308,5 +308,5 @@ cident FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov
 end
 
 %ifdef OBJ_FORMAT_elf
-       section .note.GNU-stack noalloc
+       section .note.GNU-stack progbits noalloc noexec nowrite align=1
 %endif
index 4bc4c91..2145864 100644 (file)
@@ -1507,5 +1507,5 @@ cident FLAC__lpc_restore_signal_asm_ia32_mmx
 end
 
 %ifdef OBJ_FORMAT_elf
-       section .note.GNU-stack noalloc
+       section .note.GNU-stack progbits noalloc noexec nowrite align=1
 %endif
index b7ecef8..09574e6 100644 (file)
@@ -155,5 +155,5 @@ cident precompute_partition_info_sums_32bit_asm_ia32_
 end
 
 %ifdef OBJ_FORMAT_elf
-       section .note.GNU-stack noalloc
+       section .note.GNU-stack progbits noalloc noexec nowrite align=1
 %endif
index 4d86fda..6df8337 100644 (file)
@@ -421,7 +421,7 @@ static FLAC__StreamDecoderInitStatus init_stream_internal_(
 #ifdef FLAC__CPU_IA32
                FLAC__ASSERT(decoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
 #ifdef FLAC__HAS_NASM
-#if 1 /*@@@@@@ OPT: not clearly faster, needs more testing */
+#if 0 /*@@@@@@ OPT: not clearly faster, needs more testing */
                if(decoder->private_->cpuinfo.data.ia32.bswap)
                        decoder->private_->local_bitreader_read_rice_signed_block = FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap;
 #endif