Skip to content
  1. Oct 10, 2013
  2. Oct 05, 2013
    • Benjamin Kramer's avatar
      Emit a better error when running out of registers on inline asm. · 7200a46c
      Benjamin Kramer authored
      The most likely case where this error happens is when the user specifies
      too many register operands. Don't make it look like an internal LLVM bug
      when we can see that the error is coming from an inline asm instruction.
      For other instructions we keep the "ran out of registers" error.
      
      llvm-svn: 192041
      7200a46c
  3. Aug 15, 2013
    • Mark Lacey's avatar
      Track new virtual registers by register number. · f9ea8854
      Mark Lacey authored
      Track new virtual registers by register number, rather than by the live
      interval created for them. This is the first step in separating the
      creation of new virtual registers and new live intervals.  Eventually
      live intervals will be created and populated on demand after the virtual
      registers have been created and used in instructions.
      
      llvm-svn: 188434
      f9ea8854
  4. Jul 17, 2013
  5. Nov 28, 2012
  6. Nov 27, 2012
  7. Jun 21, 2012
  8. Jun 20, 2012
  9. Jun 09, 2012
  10. Jun 06, 2012
  11. Jun 02, 2012
    • Jakob Stoklund Olesen's avatar
      Switch all register list clients to the new MC*Iterator interface. · 54038d79
      Jakob Stoklund Olesen authored
      No functional change intended.
      
      Sorry for the churn. The iterator classes are supposed to help avoid
      giant commits like this one in the future. The TableGen-produced
      register lists are getting quite large, and it may be necessary to
      change the table representation.
      
      This makes it possible to do so without changing all clients (again).
      
      llvm-svn: 157854
      54038d79
  12. May 12, 2012
  13. Apr 03, 2012
  14. Mar 04, 2012
  15. Jan 11, 2012
  16. 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
  17. Aug 11, 2011
  18. Aug 09, 2011
  19. Jul 27, 2011
  20. Jul 02, 2011
  21. Jun 27, 2011
  22. Jun 26, 2011
  23. Jun 03, 2011
  24. May 10, 2011
  25. May 06, 2011
  26. 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
  27. Apr 12, 2011
  28. Apr 11, 2011
  29. Apr 05, 2011
  30. Apr 01, 2011
  31. Mar 23, 2011
  32. Mar 16, 2011
  33. 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
Loading