vote up 3 vote down star
8

Today at work we came across the following code (some of you might recognize it):

#define GET_VAL( val, type )    							\
    {                                                   \
        ASSERT( ( pIP + sizeof(type) ) <= pMethodEnd ); \
        val = ( *((type *&)(pIP))++ );  				\
    }

Basically we have a byte array and a pointer. The macro returns a reference to a variable of type and advance the pointer to the end of that variable.

It reminded me of the several times that I needed to "think like a parser" in order to understand C++ code.

Do you know of other code examples that caused you to stop and read it several times till you managed to grasp what it was suppose to do?

flag

This really should be closed... it's both subjective and argumentative. – Adam Haile Oct 7 '08 at 12:47
No its not - I wrote this question so that we can show interesting and confusion ways of using C++. So we can learn from those examples. – Dror Helper Oct 7 '08 at 13:05
This comments about questions getting closed are ridiculous. – Terminus Oct 7 '08 at 16:10

10 Answers

vote up 4 vote down check

The inverse square root implementation in Quake 3:

float InvSqrt (float x){
    float xhalf = 0.5f*x;
    int i = *(int*)&x;
    i = 0x5f3759df - (i>>1);
    x = *(float*)&i;
    x = x*(1.5f - xhalf*x*x);
    return x;
}

Update: How this works (thanks ryan_s)

link|flag
Don't forget to link Chris Lamont's paper for the great explanation of how this crazy thing works. lomont.org/Math/Papers/… – ryan_s Oct 8 '08 at 3:23
vote up 11 vote down

This was on reddit recently http://www.xs4all.nl/~weegen/eelis/analogliterals.xhtml

 assert((o-----o
        |     !
        !     !
        !     !
        !     !
        o-----o ).area == ( o---------o
                            |         !
                            !         !
                            o---------o ).area );
link|flag
this is a tautology. – Haoest Oct 7 '08 at 18:08
Now this is why I love C++ ! – Luc Touraille Oct 8 '08 at 15:33
vote up 9 vote down

Duff's Device (http://en.wikipedia.org/wiki/Duff%27s_device) give me nightmares:

strcpy(to, from, count)
char *to, *from;
int count;
{
    int n = (count + 7) / 8;
    switch (count % 8) {
    case 0: do { *to = *from++;
    case 7:      *to = *from++;
    case 6:      *to = *from++;
    case 5:      *to = *from++;
    case 4:      *to = *from++;
    case 3:      *to = *from++;
    case 2:      *to = *from++;
    case 1:      *to = *from++;
               } while (--n > 0);
    }
}
link|flag
I've always found Duff's Device quite intuitive, it just makes sense. After you get over the weird syntax of the loop you're rolling, or unrolling perhaps :) – PintSizedCat Oct 7 '08 at 14:19
vote up 5 vote down

This is well known but still impressive way to swap two integers without creating temp variable:

// a^=b^=a^=b;     // int a and int b will be swapped
// Technically undefined behavior as variable may only 
// be assined once within the same statement.
// 
// But this can be written correctly like this.
// Which still looks cool and unreadable ;-)

a^=b;
b^=a;
a^=b;
link|flag
only problem is that this is technically undefined behavior due to sequence point rules. use "a ^= b; b ^= a; a ^= b;" instead. – Evan Teran Oct 7 '08 at 15:57
Wrong. it is correct. Operation order is perfectly defined from right to left in this case. Read the standard, – Terminus Oct 7 '08 at 16:12
@ Terminus: You are infact wrong. Assigning to a variable more than once in a statement is undefined behavior. To prevent this you need to use the ';' to seporate them into different statements. – Martin York Oct 7 '08 at 18:01
Actually you need to study the C/C++ standard. Why do you state things you don't know about? Read about associativity: cppreference.com/wiki/operator_precedence/… '=' has right to left associativity. This site is supposed to give EXPERT answers. You just demonstrate your ignorance in C/C++. – Terminus Oct 7 '08 at 18:16
This is realy really really basic stuff. You shouldn't be talking about C/C++ when you don't know this. You are just spreading false ideas. – Terminus Oct 7 '08 at 18:17
show 9 more comments
vote up 4 vote down

I know it's C and not C++ but there is always the the International Obfuscated C Code Contest. I have seen some code there that would make your head spin.

link|flag
vote up 4 vote down
unsigned int reverse(register unsigned int x)
{
 x = (((x & 0xaaaaaaaa) >> 1) | ((x & 0x55555555) << 1));
 x = (((x & 0xcccccccc) >> 2) | ((x & 0x33333333) << 2));
 x = (((x & 0xf0f0f0f0) >> 4) | ((x & 0x0f0f0f0f) << 4));
 x = (((x & 0xff00ff00) >> 8) | ((x & 0x00ff00ff) << 8));
 return((x >> 16) | (x << 16));
}

Reverses the order of the bits in an int.

link|flag
If this had been clever trick code then +1. – Martin York Oct 7 '08 at 18:18
vote up 1 vote down

C, but present in C++, I find the comma operator really obfuscates code, take this...

ihi = y[0]>y[1] ? (inhi=1,0) : (inhi=0,1);

Terse and quite elegant, but very easy to miss or misunderstand.

link|flag
To me, this code is a perfect example of "Just because you can do something, doesn't mean you should." It's neat because it's on one line, but if it was spread out more it would be many times more understandable by someone look at it for the first time. Not that it's not a cool example. :) – Colen Oct 7 '08 at 18:26
vote up 1 vote down

Binary shifts confuses me all the time:

An example from java.util.concurrent.ConcurrentHashMap:

return ((h << 7) - h + (h >>> 9) + (h >>> 17))

link|flag
Why has this been voted up? This is Java, but the question is about C++. – finnw Oct 7 '08 at 16:09
vote up 1 vote down

Most Boost stuff - the template metaprogramming is bad enough, but when you factor in the workarounds necessary to get it to work on some compilers (*coughborlandcough*), it gets pretty ridiculous. Just try to understand Boost.Bind. Just try.

link|flag
vote up -1 vote down

I vote for some black-magic-hackerish template metaprogramming (unfortunately don't have any on hand to post it).

link|flag

Your Answer

Get an OpenID
or

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