bincode_move.hss 732 B

123456789101112131415
  1. [Main]
  2. Title=Move/Load/Push Instruction Optimization
  3. [Top]
  4. If this type of optimization is turned on, then the TIGCC linker optimizes
  5. all instructions that move data between two places. This includes
  6. instructions to move data between memory and registers or between two places
  7. in memory, instructions to load the address a of memory location into a
  8. register, and instructions to push the contents of a memory location on the
  9. stack. Note that due to the great variety of such instructions, this
  10. optimization is more likely to cause errors than others.
  11. <BR><BR>
  12. This optimization can reduce the number of absolute references to locations
  13. inside the program, and it can also decrease the size of the code if
  14. range-cutting is enabled.