public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: Siarhei Siamashka <siarhei.siamashka@nokia.com>
To: ext Marcel Holtmann <marcel@holtmann.org>
Cc: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH] SBC encoder scale factors calculation optimized with __builtin_clz
Date: Mon, 16 Mar 2009 21:32:26 +0200	[thread overview]
Message-ID: <200903162132.26530.siarhei.siamashka@nokia.com> (raw)
In-Reply-To: <1233588056.4668.16.camel@californication>

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

On Monday 02 February 2009 17:20:56 ext Marcel Holtmann wrote:
> Hi Siarhei,
>
> > > > > > > cases.
> > > > > >
> > > > > > patch has been applied. Thanks.
> > > > >
> > > > > The tests have passed all.
> > > > > http://net.cs.uni-tuebingen.de/html/nexgenvoip/html/
> > > >
> > > > Thanks a lot for keeping an eye on bluez sbc implementation quality.
> > >
> > > are all patches applied now or am I missing one?
> >
> > Yes, thanks, all the patches have been applied except for this one:
> > http://marc.info/?l=linux-bluetooth&m=123319235104928&w=2
> >
> > It should work fine, but I'm still considering how to better optimize
> > processing of joint stereo, which might also require changing this code
> > a bit. For now it's more like a demonstration that scale factors
> > processing can be SIMD optimized quite fine.
> >
> > I will provide a more complete patch with optimizations for both scale
> > factors and joint stereo a bit later.
>
> please re-sent this one with a proper commit message and I apply it.
> Then you can start from there is you like. Or send me a complete new
> one.

Done. Commit message added and patch attached.

time ./sbcenc tesfile.au > /dev/null

before:
real    0m6.404s
user    0m6.152s
sys     0m0.244s

after:
real    0m5.630s
user    0m5.376s
sys     0m0.248s

-- 
Best regards,
Siarhei Siamashka

[-- Attachment #2: 0002-sbc-MMX-optimization-for-scale-factors-calculation.patch --]
[-- Type: text/x-diff, Size: 2519 bytes --]

From 83bece7b4642dde20b76253b7d18228d6654fa70 Mon Sep 17 00:00:00 2001
From: Siarhei Siamashka <siarhei.siamashka@nokia.com>
Date: Mon, 16 Mar 2009 21:10:32 +0200
Subject: [PATCH] sbc: MMX optimization for scale factors calculation

---
 sbc/sbc_primitives_mmx.c |   54 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

diff --git a/sbc/sbc_primitives_mmx.c b/sbc/sbc_primitives_mmx.c
index 08e9ca2..d8373b3 100644
--- a/sbc/sbc_primitives_mmx.c
+++ b/sbc/sbc_primitives_mmx.c
@@ -275,6 +275,59 @@ static inline void sbc_analyze_4b_8s_mmx(int16_t *x, int32_t *out,
 	asm volatile ("emms\n");
 }
 
+static void sbc_calc_scalefactors_mmx(
+	int32_t sb_sample_f[16][2][8],
+	uint32_t scale_factor[2][8],
+	int blocks, int channels, int subbands)
+{
+	static const SBC_ALIGNED int32_t consts[2] = {
+		1 << SCALE_OUT_BITS,
+		1 << SCALE_OUT_BITS,
+	};
+	int ch, sb;
+	intptr_t blk;
+	for (ch = 0; ch < channels; ch++) {
+		for (sb = 0; sb < subbands; sb += 2) {
+			blk = (blocks - 1) * (((char *) &sb_sample_f[1][0][0] -
+				(char *) &sb_sample_f[0][0][0]));
+			asm volatile (
+				"movq         (%4), %%mm0\n"
+			"1:\n"
+				"movq     (%1, %0), %%mm1\n"
+				"pxor        %%mm2, %%mm2\n"
+				"pcmpgtd     %%mm2, %%mm1\n"
+				"paddd    (%1, %0), %%mm1\n"
+				"pcmpgtd     %%mm1, %%mm2\n"
+				"pxor        %%mm2, %%mm1\n"
+
+				"por         %%mm1, %%mm0\n"
+
+				"sub            %2, %0\n"
+				"jns            1b\n"
+
+				"movd        %%mm0, %k0\n"
+				"psrlq         $32, %%mm0\n"
+				"bsrl          %k0, %k0\n"
+				"subl           %5, %k0\n"
+				"movl          %k0, (%3)\n"
+
+				"movd        %%mm0, %k0\n"
+				"bsrl          %k0, %k0\n"
+				"subl           %5, %k0\n"
+				"movl          %k0, 4(%3)\n"
+			: "+r" (blk)
+			: "r" (&sb_sample_f[0][ch][sb]),
+				"i" ((char *) &sb_sample_f[1][0][0] -
+					(char *) &sb_sample_f[0][0][0]),
+				"r" (&scale_factor[ch][sb]),
+				"r" (&consts),
+				"i" (SCALE_OUT_BITS)
+			: "memory");
+		}
+	}
+	asm volatile ("emms\n");
+}
+
 static int check_mmx_support(void)
 {
 #ifdef __amd64__
@@ -313,6 +366,7 @@ void sbc_init_primitives_mmx(struct sbc_encoder_state *state)
 	if (check_mmx_support()) {
 		state->sbc_analyze_4b_4s = sbc_analyze_4b_4s_mmx;
 		state->sbc_analyze_4b_8s = sbc_analyze_4b_8s_mmx;
+		state->sbc_calc_scalefactors = sbc_calc_scalefactors_mmx;
 		state->implementation_info = "MMX";
 	}
 }
-- 
1.5.6.5


  reply	other threads:[~2009-03-16 19:32 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-29  1:10 [PATCH] SBC encoder scale factors calculation optimized with __builtin_clz Siarhei Siamashka
2009-01-29  1:20 ` Siarhei Siamashka
2009-01-29  7:28   ` Marcel Holtmann
2009-01-29  9:07     ` Christian Hoene
2009-01-29  9:51   ` Johan Hedberg
2009-01-29  7:27 ` Marcel Holtmann
2009-01-29 15:00   ` Christian Hoene
2009-01-29 15:30     ` Siarhei Siamashka
2009-01-29 16:31       ` Siarhei Siamashka
2009-01-29 17:01         ` Marcel Holtmann
2009-01-30 11:14           ` Christian Hoene
2009-01-30 17:05             ` Siarhei Siamashka
2009-02-01 16:53               ` Marcel Holtmann
2009-02-02 10:48                 ` Siarhei Siamashka
2009-02-02 15:20                   ` Marcel Holtmann
2009-03-16 19:32                     ` Siarhei Siamashka [this message]
2009-02-02 11:11   ` Siarhei Siamashka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200903162132.26530.siarhei.siamashka@nokia.com \
    --to=siarhei.siamashka@nokia.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=marcel@holtmann.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox