I downloaded Chromium's code base and ran across the WTF namespace.

namespace WTF {
    /*
     * C++'s idea of a reinterpret_cast lacks sufficient cojones.
     */
    template<typename TO, typename FROM>
    TO bitwise_cast(FROM in)
    {
        COMPILE_ASSERT(sizeof(TO) == sizeof(FROM), WTF_wtf_reinterpret_cast_sizeof_types_is_equal);
        union {
            FROM from;
            TO to;
        } u;
        u.from = in;
        return u.to;
    }
} // namespace WTF

Does this mean what I think it means? Could be so, the bitwise_cast implementation specified here will not compile if either TO or FROM is not a POD and is not (AFAIK) more powerful than C++ built in reinterpret_cast.

The only point of light I see here is the nobody seems to be using bitwise_cast in the Chromium project.

link|improve this question

2  
Probably a good idea to quote the "NO WARRANTIES" part. – MSalters May 7 '09 at 13:21
@KennyTM please see meta.stackoverflow.com/questions/45844/… for a discussion of how to tag this question – Earlz May 31 '10 at 6:15
feedback

3 Answers

up vote 27 down vote accepted

Its short for Web Template Framework , provides commonly used functions all over the WebKit codebase.

link|improve this answer
as in "the daily web template framework?" – CashCow Jan 31 at 11:50
as in C++ templates doing common stuff :) – İsmail 'cartman' Dönmez Jan 31 at 12:17
feedback

Could be so, the bitwise_cast implementation specified here yields undefined behaviour if either TO or FROM is not a POD

If FROM or TO are not POD types, the compilation would fail with current C++ standard because you wouldn't be able to put them in union.

link|improve this answer
Right you are, I'll correct the question. – Motti May 7 '09 at 12:14
1  
Not sure. If your class contains a pointer-to-member, it's not a POD but it still can go in a union, I think. – MSalters May 7 '09 at 13:22
feedback

It is to avoid the strict-aliasing optimization problem:

http://stackoverflow.com/questions/2906365/gcc-strict-aliasing-and-casting-through-a-union

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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