[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1331660063.4449.23.camel@edumazet-glaptop>
Date: Tue, 13 Mar 2012 10:34:23 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: David Laight <David.Laight@...LAB.COM>
Cc: Maciej Zenczykowski <zenczykowski@...il.com>,
Maciej Zenczykowski <maze@...gle.com>, netdev@...r.kernel.org
Subject: RE: [PATCH] net: pfifo_fast - use ffs(x)-1 instead of array lookup
On Tue, 2012-03-13 at 16:55 +0000, David Laight wrote:
> > > + /* For i in 0..7 returns {-1, 0, 1, 0, 2, 0, 1, 0}[i] */
> > > + return ((26468 >> (i+i)) & 3) - 1;
> >
> > That expression doesn't seem quite right to me ...
> > return (int)(0x12131210 >> (i * 4)) & 3) - 1;
> > probably does whats wanted.
>
> Hmmm... I'm going blind - I read that as 'i+1' not 'i+i'.
> But using 'i * 4' and putting the constant in base 16
> make the code rather less obscure.
Point was to get short/fast code.
26458 can probably be expressed with a macro so that it is self
explained.
Check asm output if your way is better. Its probably not the case
because some arches can use smaller code to manipulate small constants.
I am not sure the memory lookup is that expensive anyway
(we probably could use 'char' instead of 'int' to reduce the siwe of
this memory blob)
Code is also read from memory, so you have to trade icache/dcache
issues.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists