Main Content

Execution Speed

Improve execution speed of generated code

The code generator increases the execution speed of the generated code where possible by replacing global variables with local variables, removing data copies, using the memset and memcpy functions, and reducing the amount of memory for storing data. You can increase the execution speed of the generated code by implementing compiler and processor specific optimizations, specifying buffer reuse, and removing code you might not need.

Topics

Processor Specific Optimizations

Optimizations that Improve Execution Efficiency

Related Information