vote up 5 vote down star
1

I want to implement a logical operation that works as efficient as possible. I need this truth table:

p    q    p → q
T    T      T
T    F      F
F    T      T
F    F      T

This, according to wikipedia is called "logical implication"

I've been long trying to figure out how to make this with bitwise operations in C without using conditionals. Maybe someone has got some thoughts about it.

Thanks

flag

80% accept rate
What do you need this for? Without context a discussion about efficiency is pretty much pointless. – starblue Mar 21 at 7:28

4 Answers

vote up 5 vote down check

FYI, with gcc-4.3.3:

int foo(int a, int b) { return !a || b; }
int bar(int a, int b) { return ~a | b; }

Gives (from objdump -d):

0000000000000000 <foo>:
   0:   85 ff                   test   %edi,%edi
   2:   0f 94 c2                sete   %dl
   5:   85 f6                   test   %esi,%esi
   7:   0f 95 c0                setne  %al
   a:   09 d0                   or     %edx,%eax
   c:   83 e0 01                and    $0x1,%eax
   f:   c3                      retq   

0000000000000010 <bar>:
  10:   f7 d7                   not    %edi
  12:   09 fe                   or     %edi,%esi
  14:   89 f0                   mov    %esi,%eax
  16:   c3                      retq

So, no branches, but twice as many instructions.

@litb: Ok, here is with _Bool:

0000000000000020 <baz>:
  20:   40 84 ff                test   %dil,%dil
  23:   b8 01 00 00 00          mov    $0x1,%eax
  28:   0f 45 c6                cmovne %esi,%eax
  2b:   c3                      retq

So, using _Bool instead of int is a good idea.

link|flag
Or you could just use gcc -S *.c; cat *.s and skip the objdump -d *.o step? ;-) – ephemient Mar 21 at 3:54
Yeah, but I remembered the objdump option but not the gcc one :-p – derobert Mar 21 at 3:56
Actually, testing gcc -S it gives /much/ more output, all of the extra stuff irrelevant. – derobert Mar 21 at 3:57
I get much shorter code for the || version with _Bool (c99) or bool (c++) – Johannes Schaub - litb Mar 21 at 3:59
this is insane. with optimizations off, the bitwise way stays that short, while the || way bloats all the way up :p – Johannes Schaub - litb Mar 21 at 4:07
show 1 more comment
vote up 9 vote down
~p | q

For visualization:

perl -e'printf "%x\n", (~0x1100 | 0x1010) & 0x1111'
1011

In tight code, this should be faster than "!p || q" because the latter has a branch, which might cause a stall in the CPU due to a branch prediction error. The bitwise version is deterministic and, as a bonus, can do 32 times as much work in a 32-bit integer than the boolean version!

link|flag
Thanks! I would like to ask where could I get more information about these? I mean about the C implementation of these operations, so I can get to know the details of || vs | and so on... – Álvaro Mar 21 at 3:25
Maybe en.wikipedia.org/wiki/Bitwise_operation – Chris Dolan Mar 21 at 3:27
i've tested both versions. GCC at least on x86 insists on using a branch returning 0/1 for the bool version in every scenario i could imagine. bitwise ops did not. – Johannes Schaub - litb Mar 21 at 3:49
vote up 7 vote down
!p || q

is plenty fast. seriously, don't worry about it.

link|flag
That's not bitwise! – Chris Dolan Mar 21 at 3:00
who cares.. a bitwise operation will not be any faster than that. – eduffy Mar 21 at 3:03
Yes, actually I wanted to know also if this would be as fast as bitwise. Thanks for claryfing me that. – Álvaro Mar 21 at 3:05
For a 32-bit int, "~p | q" does 32 times as much work as "!p || q" and doesn't require a jump. – Chris Dolan Mar 21 at 3:08
litb: jumps are slower than arithmetic in just about every CPU due to branch prediction misses. – Chris Dolan Mar 21 at 3:09
show 9 more comments
vote up 3 vote down

You can read up on deriving boolean expressions from truth Tables (also see canonical form), on how you can express any truth table as a combination of boolean primitives or functions.

link|flag
Very interesting link. Thanks! – Álvaro Mar 21 at 12:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.