This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Reg Optimization

Hi there,

          Im using DS-5 simulator for coding C program along with Assembly and Neon.In this vectorization is working perfectly but when optimization of MEDIUM/HIGH level is used, the  pointer increment is not working properly. Can anyone help me in this regard??

Thanks in advance

Pavi

Parents
  • Pravinchanm is right to point out that stepping through program execution at C code level when using high optimization is sometimes problematic. In particular, if the compiler has vectorized some operations, then the correspondence between C statements and object code will be very obscure and the debugger may not show it correctly.

    Chris

Reply
  • Pravinchanm is right to point out that stepping through program execution at C code level when using high optimization is sometimes problematic. In particular, if the compiler has vectorized some operations, then the correspondence between C statements and object code will be very obscure and the debugger may not show it correctly.

    Chris

Children