This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI C/C++ Compiler
Hi E2E Support Team,
I am compiling software on TMS5703137 device. Currently I am using TI Code generation tools tms470 5.1.6 for Windows (without CCS).
Some of the functions in the software are static. Is it true that TI compiler may make assumptions about the static functions, so that it does not follow ARM EABI? If so, can I change that behavior? I have seen that there is call_assumptions, but it appears to have effect on global symbols.
Is it possible to display somehow using TI tools functions that do not follow EABI method of parameter passing? It appears that DWARF has a calling convention indication like DW_CC_normal, DW_CC_nocall.
Thanks,
Piotr
Your fundamental problem is that you have information that the compiler doesn't: that any function can be called from outside the program.
If the program is delivered to you already compiled, then yes, there isn't much you can do except cope with it.
If it's delivered as source and you compile it, then compiling with -o2 instead of -o3 will avoid many of the possible call changes, because that level of optimisation disables interprocedural analysis and transforms. For a true brute-force approach, -Dstatic= (ie, defining the symbol "static" to be the empty string) will make all the static functions extern. Unfortunately, it will also break any static local variables.
By the way, inlined functions may still be a problem, because they won't have well-defined boundaries once integrated into the caller. -o2 will avoid automatic inlining but not functions that are declared inline.