SPRU514Z July 2001 – October 2023 SM320F28335-EP
For pointer expressions of the form *p++, the compiler uses efficient C28x autoincrement addressing modes. In many cases, where code steps through an array in a loop such as below, the loop optimizations convert the array references to indirect references through autoincremented register variable pointers.
for (I = 0; I <N; ++I) a(I)...