Optimization options
Control optimization behavior and performance.
Option |
Description |
---|---|
|
Minimum optimization for the performance of the compiled binary. Turns off most optimizations. When debugging is enabled, this option generates code that directly corresponds to the source code. Therefore, this might result in a significantly larger image. This is the default optimization level. Usage
|
|
Restricted optimization. When debugging is enabled, this option gives the best debug view for the trade-off between image size, performance, and debug. Usage
|
|
High optimization. When debugging is enabled, the debug view might be less satisfactory because the mapping of object code to source code is not always clear. The compiler might perform optimizations that cannot be described by debug information. Usage
|
|
Very high optimization. When debugging is enabled, this option typically gives a poor debug view. Arm recommends debugging at lower optimization levels. Usage
|
|
Enable all the optimizations from level 3, including those performed with the -ffp-mode=fast armflang option. This level also performs other aggressive optimizations that might violate strict compliance with language standards. Usage
|
|
Allow aggressive, lossy floating-point optimizations. Usage
|
|
Enable optimizations that ignore the possibility of NaN and +/-Inf. Usage
|
|
Controls when the compiler is permitted to form fused floating-point operations (such as FMAs). fast: Always (default). on: Only in the presence of the FP_CONTRACT pragma. off: Never. Usage
|
|
Enable or disable inlining (enabled by default). Usage
(enable)
(disable) |
|
Place all automatic arrays on stack memory. For programs using very large arrays on particular operating systems, consider extending stack memory runtime limits. Enabled by default at optimization level Usage
(enable)
(disable) |
|
Tells the compiler to adhere to the aliasing rules defined in the source language. In some circumstances, this flag allows the compiler to assume that pointers to different types do not alias. Enabled by default when using Usage
|
|
This option enables reassociation and reciprocal math optimizations, and does not honor trapping nor signed zero. Usage
(enable)
(disable) |
|
Enable/disable loop vectorization (enabled by default). Usage
(enable)
(disable) |
|
Select which CPU architecture to optimize for Usage
|