Skip to content

Commit

Permalink
ARMLoadStoreOptimizer: Rewrite LDM/STM matching logic.
Browse files Browse the repository at this point in the history
This improves the logic in several ways and is a preparation for
followup patches:
- First perform an analysis and create a list of merge candidates, then
  transform. This simplifies the code in that you have don't have to
  care to much anymore that you may be holding iterators to
  MachineInstrs that get removed.
- Analyze/Transform basic blocks in reverse order. This allows to use
  LivePhysRegs to find free registers instead of the RegisterScavenger.
  The RegisterScavenger will become less precise in the future as it
  relies on the deprecated kill-flags.
- Return the newly created node in MergeOps so there's no need to look
  around in the schedule to find it.
- Rename some MBBI iterators to InsertBefore to make their role clear.
- General code cleanup.

Differential Revision: http://reviews.llvm.org/D10140

llvm-svn: 241920
  • Loading branch information
MatzeB committed Jul 10, 2015
1 parent bf91f71 commit a4a3182
Show file tree
Hide file tree
Showing 2 changed files with 483 additions and 553 deletions.

0 comments on commit a4a3182

Please sign in to comment.