blob: 465950b207bc8f56002504cd98096181d4a7b44c [file] [log] [blame]
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +10001/* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000-2009 Josh Coalson
Erik de Castro Lopo14373912014-11-24 22:07:15 +11003 * Copyright (C) 2011-2014 Xiph.Org Foundation
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +10004 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * - Neither the name of the Xiph.org Foundation nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
Erik de Castro Lopo006b8352014-03-23 21:59:46 +110033#ifdef HAVE_CONFIG_H
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100034# include <config.h>
35#endif
36
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100037#ifndef FLAC__NO_ASM
Erik de Castro Lopob8d58e32014-06-15 20:29:34 +100038#if (defined FLAC__CPU_IA32 || defined FLAC__CPU_X86_64) && defined FLAC__HAS_X86INTRIN
Erik de Castro Lopod40e9862014-01-30 21:49:51 +110039#include "private/stream_encoder.h"
Miroslav Lichvarf0815242014-06-19 13:04:33 +020040#include "private/bitmath.h"
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100041#ifdef FLAC__SSSE3_SUPPORTED
42
43#include <stdlib.h> /* for abs() */
44#include <tmmintrin.h> /* SSSE3 */
45#include "FLAC/assert.h"
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100046
Erik de Castro Lopod40e9862014-01-30 21:49:51 +110047FLAC__SSE_TARGET("ssse3")
Erik de Castro Lopo6cd8b422014-01-07 21:14:55 +110048void FLAC__precompute_partition_info_sums_intrin_ssse3(const FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[],
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100049 unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps)
50{
51 const unsigned default_partition_samples = (residual_samples + predictor_order) >> max_partition_order;
52 unsigned partitions = 1u << max_partition_order;
53
54 FLAC__ASSERT(default_partition_samples > predictor_order);
55
56 /* first do max_partition_order */
57 {
Erik de Castro Lopo86b36d92015-11-03 18:08:49 +110058 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples);
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100059 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order);
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100060
Erik de Castro Lopo86b36d92015-11-03 18:08:49 +110061 if(bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < threshold) {
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100062 for(partition = residual_sample = 0; partition < partitions; partition++) {
Erik de Castro Lopo86b36d92015-11-03 18:08:49 +110063 __m128i mm_sum = _mm_setzero_si128();
64 unsigned e1, e3;
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100065 end += default_partition_samples;
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100066
67 e1 = (residual_sample + 3) & ~3; e3 = end & ~3;
68 if(e1 > end)
69 e1 = end; /* try flac -l 1 -b 16 and you'll be here */
70
Erik de Castro Lopo57297ee2014-01-30 21:53:37 +110071 /* assumption: residual[] is properly aligned so (residual + e1) is properly aligned too and _mm_loadu_si128() is fast */
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +110072 for( ; residual_sample < e1; residual_sample++) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +110073 __m128i mm_res = _mm_abs_epi32(_mm_cvtsi32_si128(residual[residual_sample]));
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +110074 mm_sum = _mm_add_epi32(mm_sum, mm_res);
75 }
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100076
77 for( ; residual_sample < e3; residual_sample+=4) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +110078 __m128i mm_res = _mm_abs_epi32(_mm_loadu_si128((const __m128i*)(residual+residual_sample)));
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +110079 mm_sum = _mm_add_epi32(mm_sum, mm_res);
80 }
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100081
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +110082 for( ; residual_sample < end; residual_sample++) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +110083 __m128i mm_res = _mm_abs_epi32(_mm_cvtsi32_si128(residual[residual_sample]));
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100084 mm_sum = _mm_add_epi32(mm_sum, mm_res);
85 }
86
87 mm_sum = _mm_hadd_epi32(mm_sum, mm_sum);
88 mm_sum = _mm_hadd_epi32(mm_sum, mm_sum);
Erik de Castro Lopo6abc4802014-09-21 08:48:17 +100089 abs_residual_partition_sums[partition] = (FLAC__uint32)_mm_cvtsi128_si32(mm_sum);
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100090 }
91 }
92 else { /* have to pessimistically use 64 bits for accumulator */
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100093 for(partition = residual_sample = 0; partition < partitions; partition++) {
Erik de Castro Lopo86b36d92015-11-03 18:08:49 +110094 __m128i mm_sum = _mm_setzero_si128();
95 unsigned e1, e3;
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100096 end += default_partition_samples;
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +100097
98 e1 = (residual_sample + 1) & ~1; e3 = end & ~1;
99 FLAC__ASSERT(e1 <= end);
100
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +1100101 for( ; residual_sample < e1; residual_sample++) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +1100102 __m128i mm_res = _mm_abs_epi32(_mm_cvtsi32_si128(residual[residual_sample])); /* 0 0 0 |r0| == 00 |r0_64| */
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +1100103 mm_sum = _mm_add_epi64(mm_sum, mm_res);
104 }
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000105
106 for( ; residual_sample < e3; residual_sample+=2) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +1100107 __m128i mm_res = _mm_abs_epi32(_mm_loadl_epi64((const __m128i*)(residual+residual_sample))); /* 0 0 |r1| |r0| */
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000108 mm_res = _mm_shuffle_epi32(mm_res, _MM_SHUFFLE(3,1,2,0)); /* 0 |r1| 0 |r0| == |r1_64| |r0_64| */
109 mm_sum = _mm_add_epi64(mm_sum, mm_res);
110 }
111
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +1100112 for( ; residual_sample < end; residual_sample++) {
Erik de Castro Lopo2319a682015-11-18 19:24:44 +1100113 __m128i mm_res = _mm_abs_epi32(_mm_cvtsi32_si128(residual[residual_sample]));
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +1100114 mm_sum = _mm_add_epi64(mm_sum, mm_res);
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000115 }
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000116
Erik de Castro Lopo59cfca02014-01-31 20:39:26 +1100117 mm_sum = _mm_add_epi64(mm_sum, _mm_srli_si128(mm_sum, 8));
118 _mm_storel_epi64((__m128i*)(abs_residual_partition_sums+partition), mm_sum);
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000119 }
120 }
121 }
122
123 /* now merge partitions for lower orders */
124 {
125 unsigned from_partition = 0, to_partition = partitions;
126 int partition_order;
127 for(partition_order = (int)max_partition_order - 1; partition_order >= (int)min_partition_order; partition_order--) {
128 unsigned i;
129 partitions >>= 1;
130 for(i = 0; i < partitions; i++) {
131 abs_residual_partition_sums[to_partition++] =
132 abs_residual_partition_sums[from_partition ] +
133 abs_residual_partition_sums[from_partition+1];
134 from_partition += 2;
135 }
136 }
137 }
138}
139
140#endif /* FLAC__SSSE3_SUPPORTED */
Erik de Castro Lopob8d58e32014-06-15 20:29:34 +1000141#endif /* (FLAC__CPU_IA32 || FLAC__CPU_X86_64) && FLAC__HAS_X86INTRIN */
Erik de Castro Lopoecd0acb2013-10-04 01:38:00 +1000142#endif /* FLAC__NO_ASM */