Cycle Counts
The number of cycles a block of code takes to run may be important. For example, code that executes during an interrupt should be kept as short as possible to allow other interrupts execution time. When a complex system is implemented on the DSP, hardware resources are scarce and code that takes too long to run will prevent the system from running in real-time.
Two methods of obtaining the cycle count for a block of code will be outlined below. Breakpoints are a fast method of getting a ballpark cycle count for a particular run of the code. However, different iterations of the code may take a different number of cycles to execute. This generally happens when there are branch and conditional instructions. Profiling allows the user to execute the code multiple times and obtain the average, maximum, and minimum number of cycles.
Breakpoints
Setting two breakpoints will allow you to measure the clock cycles between the first and second breakpoint for a particular run. Code Composer will also return a cycle count for running between the second breakpoint and the first, but this count will include all the cycles from I/O handling. Multiple breakpoints can also be set to obtain counts for multiple sections of code, but there is a limit on the number of breakpoints that can be set.
The instructions to set breakpoints and obtain a cycle count for a piece of code:
- Compile the code.
- Select Clock->Enable and Clock->View under the Profile menu.
- Set a software breakpoint by right-clicking on the line you would
like to set it at and choosing "Toggle Software Breakpoint".
- Load the program.
- Run the program. It should halt at the first breakpoint. There will
be a cycle count at the bottom right corner next to the clock symbol.
Double click on the click to clear the cycle count.
- Run the program again. It should halt at the second breakpoint. The
cycle count from the code between the two breakpoints will be
displayed.
Sometimes there may be errors when loading the program like "Can't Set Breakpoint" or "Can't Remove Breakpoint". If this happens, try disabling the breakpoints, reloading, and enabling them again. If the error persists, close Code Composer, disconnect and reconnect the power cable, and start the whole process again.
Profiling
Profiling allows you to obtain an average, maximum, and minimum cycle count for blocks of code. Multiple functions, loops, and ranges can all be profiled at the same time. Code Composer will provide you with many readings. The figure used in our DSP lab is the 'CPU Cycles: Incl. Max".
The instructions to set profile points and obtain a cycle count for a piece of code:
- View the profiling windows by selecting Profile->Setup and Profile->Viewer.
- Load the program onto the DSP.
- Click on the Stopwatch symbol in the Profiling Setup window on the
right to enable profiling.
- Select the 'Ranges' tab in the Profiling Setup window.
- Highlight the range of code you would like to obtain the cycle count for and drag it to the 'Ranges' menu. (Another way to do the same is to highlight those lines,
right click, and select Profile -> Range.)
- Run the code for a while for Code Composer to collect data.
- The default stats shown do not include what we are looking for. In
the profiler viewer window, right click on the address range you would
like stats for and select 'Columns and Rows Setting'. Different counts can be shown, but 'CPU Cycles: Incl. Max.' is probably the most important.