Skip to content
  1. Apr 03, 2012
  2. Mar 04, 2012
  3. Feb 28, 2012
  4. Feb 21, 2012
    • Andrew Trick's avatar
      Clear virtual registers after they are no longer referenced. · da84e646
      Andrew Trick authored
      Passes after RegAlloc should be able to rely on MRI->getNumVirtRegs() == 0.
      This makes sharing code for pre/postRA passes more robust.
      Now, to check if a pass is running before the RA pipeline begins, use MRI->isSSA().
      To check if a pass is running after the RA pipeline ends, use !MRI->getNumVirtRegs().
      
      PEI resets virtual regs when it's done scavenging.
      
      PTX will either have to provide its own PEI pass or assign physregs.
      
      llvm-svn: 151032
      da84e646
  5. Feb 10, 2012
    • Andrew Trick's avatar
      RegAlloc superpass: includes phi elimination, coalescing, and scheduling. · d3f8fe81
      Andrew Trick authored
      Creates a configurable regalloc pipeline.
      
      Ensure specific llc options do what they say and nothing more: -reglloc=... has no effect other than selecting the allocator pass itself. This patch introduces a new umbrella flag, "-optimize-regalloc", to enable/disable the optimizing regalloc "superpass". This allows for example testing coalscing and scheduling under -O0 or vice-versa.
      
      When a CodeGen pass requires the MachineFunction to have a particular property, we need to explicitly define that property so it can be directly queried rather than naming a specific Pass. For example, to check for SSA, use MRI->isSSA, not addRequired<PHIElimination>.
      
      CodeGen transformation passes are never "required" as an analysis
      
      ProcessImplicitDefs does not require LiveVariables.
      
      We have a plan to massively simplify some of the early passes within the regalloc superpass.
      
      llvm-svn: 150226
      d3f8fe81
  6. Feb 08, 2012
  7. Jan 17, 2012
  8. Jan 13, 2012
  9. Jan 12, 2012
  10. Jan 11, 2012
  11. Jan 05, 2012
    • Jakob Stoklund Olesen's avatar
      Freeze reserved registers before starting register allocation. · d19d3cab
      Jakob Stoklund Olesen authored
      The register allocators don't currently support adding reserved
      registers while they are running.  Extend the MRI API to keep track of
      the set of reserved registers when register allocation started.
      
      Target hooks like hasFP() and needsStackRealignment() can look at this
      set to avoid reserving more registers during register allocation.
      
      llvm-svn: 147577
      d19d3cab
  12. Aug 11, 2011
  13. Aug 09, 2011
  14. Jul 27, 2011
  15. Jul 02, 2011
  16. Jun 27, 2011
  17. Jun 26, 2011
  18. Jun 03, 2011
  19. May 10, 2011
  20. May 06, 2011
  21. Apr 20, 2011
    • Jakob Stoklund Olesen's avatar
      Prefer cheap registers for busy live ranges. · 0e34c1df
      Jakob Stoklund Olesen authored
      On the x86-64 and thumb2 targets, some registers are more expensive to encode
      than others in the same register class.
      
      Add a CostPerUse field to the TableGen register description, and make it
      available from TRI->getCostPerUse. This represents the cost of a REX prefix or a
      32-bit instruction encoding required by choosing a high register.
      
      Teach the greedy register allocator to prefer cheap registers for busy live
      ranges (as indicated by spill weight).
      
      llvm-svn: 129864
      0e34c1df
  22. Apr 12, 2011
  23. Apr 11, 2011
  24. Apr 05, 2011
  25. Apr 01, 2011
  26. Mar 23, 2011
  27. Mar 16, 2011
  28. Mar 12, 2011
    • Jakob Stoklund Olesen's avatar
      Spill multiple registers at once. · a86595e0
      Jakob Stoklund Olesen authored
      Live range splitting can create a number of small live ranges containing only a
      single real use. Spill these small live ranges along with the large range they
      are connected to with copies. This enables memory operand folding and maximizes
      the spill to fill distance.
      
      Work in progress with known bugs.
      
      llvm-svn: 127529
      a86595e0
  29. Mar 10, 2011
  30. Feb 23, 2011
  31. Feb 18, 2011
  32. Feb 17, 2011
  33. Feb 09, 2011
    • Jakob Stoklund Olesen's avatar
      Evict a lighter single interference before attempting to split a live range. · 1305bc0a
      Jakob Stoklund Olesen authored
      Registers are not allocated strictly in spill weight order when live range
      splitting and spilling has created new shorter intervals with higher spill
      weights.
      
      When one of the new heavy intervals conflicts with a single lighter interval,
      simply evict the old interval instead of trying to split the heavy one.
      
      The lighter interval is a better candidate for splitting, it has a smaller use
      density.
      
      llvm-svn: 125151
      1305bc0a
Loading