vote up 12 vote down star
6

I'm looking for a way to reliably determine whether C++ code is being compiled in 32 vs 64 bit. We've come up with what we think is a reasonable solution using macros, but was curious to know if people could think of cases where this might fail or if there is a better way to do this. Please note we are trying to do this in a cross-platform, multiple compiler environment.

#if ((ULONG_MAX) == (UINT_MAX))
#define IS32BIT
#else
#define IS64BIT
#endif

#ifdef IS64BIT
DoMy64BitOperation()
#else
DoMy32BitOperation()
#endif

Thanks.

flag

4  
If you really care what the word-size of your architecture is, then don't overlook the possibility that it's neither 32 nor 64-bit. There are 16 and 128-bit architectures out there, you know. – alex tingle Oct 1 at 19:07
What is the difference between the 64 bit and the 32 bit operation? – peterchen Oct 1 at 19:49
You really shouldn't conditionalize this on the word-width of the target platform. Instead, use the size of the relevant datatypes directly to determine what to do. stdint.h might be your friend, or you may need to develop some appropriate typedefs of your own. – Novelocrat Oct 19 at 17:27

7 Answers

vote up 11 vote down check

Unfortunately there is no cross platform macro which defines 32 / 64 bit across the major compilers. I've found the most effective way to do this is the following.

First I pick my own representation. I prefer ENVIRONMENT64 / ENVIRONMENT32. Then I find out what all of the major compilers use for determining if it's a 64 bit environment or not and use that to set my variables.

// Check windows
#if _WIN32 || _WIN64
#if _WIN64
#define ENVIRONMENT64
#else
#define ENVIRONMENT32
#endif
#endif

// Check GCC
#if __GNUC__
#if __x86_64__ || __ppc64__
#define ENVIRONMENT64
#else
#define ENVIRONMENT32
#endif
#endif

Another easier route is to simply set these variables from the compiler command line.

link|flag
1  
well, there exist other compilers besides GCC and VS. For example QNX and GHS come to mind (although I suspect QNX has similar build-time defines to GCC). Also you forgot MIPS64 and IA64 architectures in your GCC check – Rom Oct 1 at 18:35
2  
@Rom, definitely more than 2 compilers and architectures. This is just meant to be a sample of how to approach this problem, not a complete solution. – JaredPar Oct 1 at 18:38
Usually the "notes for porting this application/library to a new platform" will contain a list of all the header files that need clauses added in order to support a new compiler... – Steve 'onebyone' Jessop Oct 1 at 18:43
1  
I say "usually". "Ideally" is probably more realistic. – Steve 'onebyone' Jessop Oct 1 at 18:43
Thanks, this is pretty close to what we were looking for. We'll add additional compiler options as we encounter them, but this covers 90% of cases right now. – Joe Corkery Oct 2 at 14:52
show 1 more comment
vote up 7 vote down

That won't work on Windows for a start. Longs and ints are both 32 bits whether you're compiling for 32 bit or 64 bit windows. I would think checking if the size of a pointer is 8 bytes is probably a more reliable route.

link|flag
2  
Unfortunately sizeof is prohibited in #if directive (if you think about it preprocessor has no way to tell) – EFraim Oct 1 at 18:25
Yep, that's why I left it at suggesting checking the size of a pointer rather than using sizeof - I can't think of a portable way to do it off the top of my head... – mattnewport Oct 1 at 18:27
Question doesn't (yet) say it has to be done at pre-processor time. Many/most compilers with optimisation on will do a decent job of eliminating dead code, even if you "leave it until run time" with a test like sizeof(void*) == 8 ? Do64Bit() : Do32Bit();. That could still leave an unused function in the binary, but the expression is likely compiled just to a call to the "right" function. – Steve 'onebyone' Jessop Oct 1 at 18:41
@onebyone that solves the problem of function calls, but what if I want to declare a variable a different type based on platform, that would need to be done at preprocessor unless you want to declare multiple variables and use them based on an if statement (which would also be optimized out if they're unused, but wouldn't be very pleasant in the code) – Falaina Oct 1 at 18:45
Then you're right, a constant expression in a conditional is no good. Kirill's approach can do what you want, though: template<int> struct Thing; template<> struct Thing<4> { typedef uint32_t type; }; template<> struct Thing<8> { typedef uint64_t type; }; typedef Thing<sizeof(void*)>::type thingtype; – Steve 'onebyone' Jessop Oct 1 at 18:50
vote up 29 vote down
template<int> void DoMyOperationHelper();

template<> void DoMyOperationHelper<4>() 
{
  // do 32-bits operations
}

template<> void DoMyOperationHelper<8>() 
{
  // do 64-bits operations
}

// helper function just to hide clumsy syntax
inline void DoMyOperation() { DoMyOperationHelper<sizeof(size_t)>(); }

int main()
{
  // appropriate function will be selected at compile time 
  DoMyOperation(); 

  return 0;
}
link|flag
What happens if the size_t is neither 4 nor 8? – Jesper Oct 1 at 20:17
2  
@Jesper, Then you'll get link error in the sample above. Or you could implement DoMyOperation for that case – Kirill V. Lyadvinsky Oct 1 at 20:40
Slick use of templates, and kudos for testing what matters (the size of some particular type) rather than a correlate. – Novelocrat Oct 19 at 17:25
Careful with using size_t for this. You can have issues where it doesn't correspond to the pointer size for instance (eg on platforms with more than one pointer size). – Logan Capaldo Oct 22 at 12:03
1  
Standard says that size of size_t is large enough to hold size of any allocated object in system. Usually it is what you want to know while conditional compiling. If it is not what you want, you could use this snippet with some other type instead of size_t. For instance, it could be void*. – Kirill V. Lyadvinsky Oct 22 at 12:35
vote up 0 vote down

If you can use project configurations in all your environments, that would make defining a 64- and 32-bit symbol easy. So you'd have project configurations like this:

32-bit Debug
32-bit Release
64-bit Debug
64-bit Release

EDIT: These are generic configurations, not targetted configurations. Call them whatever you want.

If you can't do that, I like Jared's idea.

link|flag
Or combine the two: auto-detect the configuration on the compilers you know about, but fall back to looking at a #define specified in the project/command-line/whatever on unrecognised compilers. – Steve 'onebyone' Jessop Oct 1 at 18:45
1  
How is your VisualStudio-specific solution going to help with the OP's cross platform question?? – alex tingle Oct 1 at 18:50
I said if project configurations are supported. – Jon Seigel Oct 1 at 18:53
1  
@Jon: Hmm. They are NOT supported in any kind of cross-platform environment by definition. Unless it is MS's definition of cross-platform - works on newer flavors of Windows. – EFraim Oct 1 at 19:00
@EFraim: Yes, you can TARGET 32- or 64-bit using VS, but that is not what I am talking about. Generic project configurations, and the names I assign them, have absolutely nothing to do with platform. If project configurations are VS-specific, then that's a shame because they're very handy. – Jon Seigel Oct 1 at 19:23
show 1 more comment
vote up 2 vote down

You should be able to use the macros defined in stdint.h. In particular INTPTR_MAX is exactly the value you need.

#include <cstdint>
#if INTPTR_MAX == INT32_MAX
    #define THIS_IS_32_BIT_ENVIRONMENT
#elif INTPTR_MAX == INT64_MAX
    #define THIS_IS_64_BIT_ENVIRONMENT
#else
    #error "Environment not 32 or 64-bit."
#endif

Some (all?) versions of Microsoft's compiler don't come with stdint.h. Not sure why, since it's a standard file. Here's a version you can use: http://msinttypes.googlecode.com/svn/trunk/stdint.h

link|flag
2  
Why no stdint.h for Microsoft? Because it was introduced with the C99 standard, and Microsoft seems to have an active aversion to implementing even the easiest of stuff from C99. Even the easy library stuff that requires no compiler change. Even the stuff that's already being done when compiling for C++ (like declarations after statements). I know it needs testing, etc., but I also know that MS gets (or once got) a fair chunk of its library from Dinkumware/Plauger, and Dinkumware's had the C99 library stuff around for years. – Michael Burr Oct 1 at 19:19
2  
VC++2010 (beta 1, anyway) has <stdint.h> and <cstdint>. As for the present state of affairs - VC++ library originates from Dinkumware (still does - TR1 was taken from there as well), but from what I recall reading on VCBlog, it undergoes a fairly significant refactoring to compile cleanly with /clr, work with all MSVC non-standard types like __int64, and so on - which is why it's not as simple as just taking it and putting it into next compiler version. – Pavel Minaev Oct 1 at 19:44
vote up 1 vote down

"Compiled in 64 bit" is not well defined in C++.

C++ sets only lower limits for sizes such as int, long and void *. There is no guarantee that int is 64 bit even when compiled for a 64 bit platform. The model allows for e.g. 23 bit ints and sizeof(int *) != sizeof(char *)

There are different programming models for 64 bit platforms.

Your best bet is a platform specific test. Your second best, portable decision must be more specific in what is 64 bit.

link|flag
vote up 0 vote down

I'd place 32-bit and 64-bit sources in different files and then select appropriate source files using the build system.

link|flag

Your Answer

Get an OpenID
or

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