Is there an integer type with the same size as pointer? Guaranteed on all microarchitectures?
|
1
|
|||||||
|
|
|
According to this Wikipedia page, in C99 your stdint.h header might declare intptr_t and uintptr_t, but then that of course requires
So in general I think this one is tough. |
||||||
|
|
|
Simply put, no. Not guaranteed on all architectures. My question is why? If you want to allocate a type big enough to store a Why is there a need to fit it within an EDIT: Based on your comments to your duplicate question, you want to store special values of the pointer (1,2,3) to indicate extra information. NO!! Don't do this!!. There is no guarantee that 1, 2 and 3 aren't perfectly valid pointers. That may be the case in systems where you're required to align pointers on 4-byte boundaries but, since you asked about all architectures, I'm assuming you have portability as a high value. Find another way to do it that's correct. For example, use the union (syntax from memory, may be wrong):
Then you can use the isPointer 'boolean' to decide if you should treat the union as an integer or pointer. EDIT: If execution is of prime importance, then the typedef solution is the way to go. Basically, you'll have to define the integer you want for each platform you want to run on. You can do this with conditional compilation. I would also add in a runtime check to ensure you've compiled for each platform correctly thus (I'm defining it in the source but you would pass that as a compiler flag, like "
On my system (Ubuntu 8.04, 32-bit), I get:
In that case, I'd know I needed to compile with PTRINT_INT (or long). There may be a way of catching this at compile time with #if, but I couldn't be bothered researching it at the moment. If you strike a platform where there's no integer type sufficient for holding a pointer, you're out of luck. Keep in mind that using special pointer values (1,2,3) to represent integers may also not work on all platforms - this may actually be valid memory addresses for pointers. Still ,if you're going to ignore my advice, there's not much I can do to stop you. It's your code after all :-). One possibility is to check all your return values from malloc and, if you get 1, 2 or 3, just malloc again (i.e., have a mymalloc() which does this automatically). This'll be a minor memory leak but it'll guarantee no clashes between your special pointers and real pointers. |
||||||||||
|
|
|
The C99 standard defines standard int types:
C99 also defines size_t and ptrdiff_t:
The architectures I've seen have the maximum size of an object equal to the whole memory, so sizeof(size_t) == sizeof(void*), but I'm not aware of anything that is both portable to C89 ( which |
||||
|
|
|
This would be true on a standard 32 bit system, but there certainly are no guarantees, and you could find lots of architectures where it isn't true. For example, a common misconception is that sizeof(int) on x86_64 would be 8 (since it's a 64 bit system, I guess), which it isn't. On x86_64, sizeof(int) is still 4, but sizeof(void*) is 8. |
|||
|
|
|
|
So what about C++. Do I have to go to the lengths of:
kust to get portable interger of the size of pointer? |
|||
|
|
|
The standard solution to this problem is to write a small program which checks the sizes of all int types (short int, int, long int) and compares them to void*. If there is a match, it emits a piece of code which defines the intptr type. You can put this in a header file and use the new type. It's simple to include this code in the build process (using |
||
|
|
|
|
No. I do not believe the C standard even specifies standard int sizes. Combine that with all the architectures out there (8/16/32/64bit etc) and there is no way to guarantee anything. |
||
|
|
|
int data type would be the answer on most architectures. But thre is NO guarantee to this for ANY (micro)architecture. |
||||
|
|
|
The answer seems to be "no", but if all you need is a type that can act as both, you can use a union:
|
||||||||
|
|
|
No, the closest you will come to a portable pointer-capable integer type would be |
||
|
|
|
|
Usually sizeof(*void) depends on memory bus width (although not necessarily - pre-RISC AS/400 had 48-bit address bus but 64-bit pointers), and int usually is as big as CPU's general-purpose register (there are also exceptions - SGI C used 32-bit ints on 64-bit MIPS). So there is no guarantee. |
||
|
|
