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.

c28069 find symbol size from symbol table

I would like to find the symbol address and symbol size of a symbol from the symbol table.(c28069 piccolo)

To generate symbol table, I have used the following commands

ofd2000 application.out

nm2000 -l application.out

Copy pasting some part of the symbol table below

 Symbol Table
 
      id name            value      kind     section         binding type   
      -- ----            -----      ----     -------         ------- ----   
       0 .vectors        0x00000000 defined  .vectors        local   section
       2 .text           0x003f5041 defined  .text           local   section
       4 .switch         0x00000000 defined  .switch         local   section

As you can see, there is no field such as "size" to find the symbol size.

Both the commands provide me the symbol address, but I am unable to find the symbol size. (Earlier I have used ARM targets with GNU compiler, GNU provides a tool "arm-none-eabi-objdump" that provides both symbol table and symbol size)

Any suggestions on how to use the TI utilities to suffice my need? Or are they other utilities I need to be aware of?

Thanks in advance for the help,

Amit