mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 17:13:02 +02:00
The sources of the Free Pascal compiler, RTL, packages and utilities.
See https://www.freepascal.org/ for more info.
![]() This optimizer folds shift/roll operations into following data instructions. It will change code like: mov r0, r0, lsl #16 add r1, r0, r1 into add r1, r1, r0, lsl #16 Source registers will be reordered when necessary, also SUB/SBC will be replaced with RSB/RSC and vice versa when reordering is required. It could be expanded to support more operations like LDR/STR. git-svn-id: trunk@21507 - |
||
---|---|---|
compiler | ||
ide | ||
installer | ||
packages | ||
rtl | ||
tests | ||
utils | ||
.gitattributes | ||
.gitignore | ||
Makefile | ||
Makefile.fpc |