Which other missing feature in gcc would make tracing function calls in userspace C/C++ applications easier
Let's say we want to compile a larger C/C++ application with 80,000 unique functions so that at run-time the function call-tree is output for code comprehension and debugging purposes.
Here [1] various methods and implementation options were discussed including the possibility of modifying gcc itself.
However, modifying gcc to insert macros all over the code has an unknown level of difficulty... but it's probably more difficult than expected.