My questions stem from trying to use printf to log things when trying to build for multiple bit-depth platforms (32/64 for example).
A problem that keeps rearing its ugly head is trying to print ints on multiple architectures. On 32 bit it would be something like
printf(" my int: %d\n", myInt);
but on 64 bit, it would have to be changed to
print (" my int: %ld\n", (long)myInt);
I have two related questions:
-
My first thought was that when you tell printf to print a variable, giving it a format, it would look at the address of that variable and grab as many bytes as it needed for that format. This seemed like a big problem at first. For example if you had a variable myChar that was a char (1 byte), but used a format specifier of %d, that would tell printf to go to the address of myChar and grab the next 4 bytes to treat it like an int. If this were the case, it seems like printf would grab garbage date from neighboring variables (because it was grabbing 4 bytes, but the real value is only 1 byte). This appears to not be the case however. By using myChar and specifying %d, printf grabs 1 byte and then pads the upper 3 bytes with 0’s. Is my understanding correct here?
-
If the above is true, is there any real harm in always promoting variables up to their largest values to avoid the types of problems seen in the 32/64 bit case. For example if you have a short variable myShort, and an int variable, myInt, is there any downside in printing them always as:
printf(“myShort %ld”, (long)myShort);
printf(“myInt %ld”, (long)myInt);
Thanks for any clarification.
Regarding
printf: In the case you sited, “%d” must, by specification, handle the platform-defined ‘int’ data type. It doesn’t matter whether it is 32bits, 64bits, or 128bit linear AS/400 value. If you want to promote the value to a larger field type (and match that promotion with the related format string particle) you’re certainly free to do so,is certainly defined behavior using promotion.
I think the real crux of your question comes in cases like the following, and whether forcing promotion can “solve” any problems that arise. For example:
or what about:
or maybe this (which is the real condition you seem to be trying to avoid):
The first of these will work, but only because the minimum size of anything stack-pushed on a va-arg list is the platform-size of an
int. The compiler will auto-promote the value to an int for you. Since “%d” expects a platformintall will appear well.The second will work always and is fully supported. There is a clear and defined promotion from
chartolong. Even iflongis 64bits (or larger) it will still work.The third is UB all the way.
printfis looking for alongand will be presented with only bytes for anint. If this seems to “work” on your platform, then check your platform width forintandlong. It is likely “working” only because your platformlongandintare the same bit-width. It makes for fun surprises when porting the code to platforms where they are not, and since it is pushed through a va-arg, you won’t see it until real different widths come in to play.All of that being said, now throw an actual address to something (anything, really) such as that required by
scanfand we’re looking at something entirely different.This is a seg-fault waiting to happen. Just like above, you’ll never know it if your platform
longand platformintare the same width. Take this code to a box wherelongandintare different sizes and prep yourself for a gdb-load of the ensuing core file.