Skip to content
  1. Jun 08, 2007
  2. May 08, 2007
  3. May 03, 2007
  4. May 02, 2007
  5. May 01, 2007
  6. Apr 26, 2007
  7. Apr 25, 2007
  8. Apr 17, 2007
    • Evan Cheng's avatar
      Copy coalescing change to prevent a physical register from being pin to a · b881bdab
      Evan Cheng authored
      long live interval that has low usage density.
      1. Change order of coalescing to join physical registers with virtual
         registers first before virtual register intervals become too long.
      2. Check size and usage density to determine if it's worthwhile to join.
      3. If joining is aborted, assign virtual register live interval allocation
         preference field to the physical register.
      4. Register allocator should try to allocate to the preferred register
         first (if available) to create identify moves that can be eliminated.
      
      llvm-svn: 36218
      b881bdab
  9. Mar 20, 2007
  10. Feb 25, 2007
  11. Feb 19, 2007
  12. Feb 17, 2007
  13. Feb 16, 2007
  14. Dec 19, 2006
  15. Dec 06, 2006
  16. Dec 02, 2006
  17. Nov 17, 2006
  18. Nov 08, 2006
  19. Nov 07, 2006
  20. Oct 24, 2006
  21. Aug 27, 2006
  22. Aug 02, 2006
  23. Aug 01, 2006
  24. Jul 20, 2006
  25. Jun 29, 2006
  26. May 12, 2006
  27. May 11, 2006
  28. Mar 26, 2006
  29. Feb 23, 2006
  30. Jan 23, 2006
  31. Dec 28, 2005
  32. Nov 21, 2005
  33. Sep 21, 2005
  34. Aug 30, 2005
  35. Aug 24, 2005
    • Chris Lattner's avatar
      Keep track of which registers are related to which other registers. · 22e91cc3
      Chris Lattner authored
      Use this information to avoid doing expensive interval intersections for
      registers that could not possible be interesting.  This speeds up linscan
      on ia64 compiling kc++ in release mode from taking 7.82s to 4.8s(!), total
      itanium llc time on this program is 27.3s now.  This marginally speeds up
      PPC and X86, but they appear to be limited by other parts of linscan, not
      this code.
      
      On this program, on itanium, live intervals now takes 41% of llc time.
      
      llvm-svn: 22986
      22e91cc3
  36. Aug 22, 2005
    • Chris Lattner's avatar
      Try to avoid scanning the fixed list. On architectures with a non-stupid · 834a2316
      Chris Lattner authored
      number of regs (e.g. most riscs), many functions won't need to use callee
      clobbered registers.  Do a speculative check to see if we can get a free
      register without processing the fixed list (which has all of these).  This
      saves a lot of time on machines with lots of callee clobbered regs (e.g.
      ppc and itanium, also x86).
      
      This reduces ppc llc compile time from 184s -> 172s on kc++.  This is probably
      worth FAR FAR more on itanium though.
      
      llvm-svn: 22972
      834a2316
Loading