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.

Compiler/K2GICE: C6000 series optimizer analyzer replacement

Part Number: K2GICE

Tool/software: TI C/C++ Compiler

Hi,

I understood that C6000 series compiler does not support optimizer analyzer. Is there way to see the memory usage of compiled code on C6000 series without running it on the device.

-Tommi

  • Tommi Mehtonen said:
    I understood that C6000 series compiler does not support optimizer analyzer.

    I'm not sure what you mean by the term optimizer analyzer.

    Tommi Mehtonen said:
    Is there way to see the memory usage of compiled code on C6000 series without running it on the device.

    There are few different solutions to consider.

    If you use Code Composer Studio (CCS), then select View | Memory Allocation.

    The linker map file shows how all the pieces of code and data from the program are collected together and allocated to memory.  It is created with the linker option --map_file=name_of_file.  The part of the file titled Module Summary is probably the most helpful.

    The cg_xml package contains a utility named sectti that dumps out key information on all the output sections in the program.

    Thanks and regards,

    -George

  • Hi

    Sorry mixed words. I meant the css utility optimizer assistant.

    But thanks the tool sectti is just what i needed. 

    Tommi