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.

AM2634: Stack Usage and Memory Allocation

Part Number: AM2634

Hello 

I want show the following features in my build system:

I don't use the default options in CCS. Could you tell me, which directive activates those features in CLANG Compiler ?

Thank you

  • Hi Panda,

    The TI CCS supports the Stack-Usage View feature. Yo open the view, go to the CCS menu View and select Stack Usage. 

    The view shows Exclusive Size and Inclusive Size by function. The Exclusive Size is the amount of stack required by that function, ignoring any functions it may call. The Inclusive Size is the amount of stack required by that function, plus the amount of stack required by all the functions called by that function, applied recursively.

    I don't think there is any compiler directive to enable/disable this feature.