Readers of my blog know: I’m not a fan of printf(), and I think for many good reasons. Still printf() is widely used, and the GNU gcc tries to optimize things. This is observed with a simple example: If I’m writing
printf("a");
Then the code produced (ARM Cortex-M0+ with GNU ARM Embedded 4.9 2015q2 gives:
movs r0, #97 ; 0x61 bl 0xa98
Instead of calling printf(), it is calling putchar()! Why is that?
The reason is that the gcc compiler tries to optimize things as much as possible. In case of using printf() for a single character, it replaces it with a call to putchar() wich is much more efficient and smaller.
The following articles describes many of the optimizations performed by gcc: http://www.ciselant.de/projects/gcc_printf/gcc_printf.html
If I’m printing two characters:
printf("ab");
than gcc will use printf():
ldr r3, [pc, #8] ; (0x62c <main+24>) adds r0, r3, #0 bl 0xa64
So depending on what the compiler is able to optimize, other low-level functions will be used. If using semihosting or custom low-level I/O libraries that might cause linker error with missing functions.
To disable that compiler optimization, use the following compiler option:
-fno-builtin
If using the GNU ARM Eclipse plugins, there is a check box for that option in the project settings:
with that option set, printf("a") will use printf():
ldr r3, [pc, #16] ; (0x630 <main+28>) adds r0, r3, #0 bl 0xa6c
Happy Optimizing 🙂


I’m starting to read you for work again. 🙂
LikeLike
Excellent, and maybe you can read it for fun too 🙂
LikeLike
Now, I shall think twice before using printf(); Thanks for showing the option in Eclipse…
LikeLike
Pingback: Semihosting (again!) with NXP Kinetis SDK V2.0 | MCU on Eclipse
Pingback: assert(), __FILE__, Path and other cool GNU gcc Tricks to be aware of | MCU on Eclipse
However, “-fno-builtin” disables format checks which are usually enabled through -Wall (at least according to my understanding of https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wformat ). I think the format warnings can be very helpful. What do you think?
LikeLike
Yes, these warnings are very useful. But it seems that I still get them (say for printf)?
LikeLike