Skip to content
  1. Aug 24, 2005
  2. Jul 28, 2005
  3. May 14, 2005
  4. May 13, 2005
  5. Apr 22, 2005
  6. Apr 09, 2005
  7. Mar 10, 2005
    • Chris Lattner's avatar
      I didn't mean to check this in. :( · 6f6ecad9
      Chris Lattner authored
      llvm-svn: 20555
      6f6ecad9
    • Chris Lattner's avatar
      Allow the live interval analysis pass to be a bit more aggressive about · 76aa8e07
      Chris Lattner authored
      numbering values in live ranges for physical registers.
      
      The alpha backend currently generates code that looks like this:
      
        vreg = preg
      ...
        preg = vreg
        use preg
      ...
        preg = vreg
        use preg
      
      etc.  Because vreg contains the value of preg coming in, each of the
      copies back into preg contain that initial value as well.
      
      In the case of the Alpha, this allows this testcase:
      
      void "foo"(int %blah) {
              store int 5, int *%MyVar
              store int 12, int* %MyVar2
              ret void
      }
      
      to compile to:
      
      foo:
              ldgp $29, 0($27)
              ldiq $0,5
              stl $0,MyVar
              ldiq $0,12
              stl $0,MyVar2
              ret $31,($26),1
      
      instead of:
      
      foo:
              ldgp $29, 0($27)
              bis $29,$29,$0
              ldiq $1,5
              bis $0,$0,$29
              stl $1,MyVar
              ldiq $1,12
              bis $0,$0,$29
              stl $1,MyVar2
              ret $31,($26),1
      
      This does not seem to have any noticable effect on X86 code.
      
      This fixes PR535.
      
      llvm-svn: 20536
      76aa8e07
  8. Jan 08, 2005
  9. Dec 07, 2004
    • Reid Spencer's avatar
      For PR387:\ · 90839368
      Reid Spencer authored
      Make only one print method to avoid overloaded virtual warnings when \
      compiled with -Woverloaded-virtual
      
      llvm-svn: 18589
      90839368
  10. Oct 26, 2004
  11. Oct 25, 2004
  12. Oct 02, 2004
  13. Oct 01, 2004
  14. Sep 30, 2004
  15. Sep 09, 2004
  16. Sep 08, 2004
  17. Sep 03, 2004
  18. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  19. Aug 31, 2004
  20. Aug 27, 2004
  21. Aug 24, 2004
  22. Aug 16, 2004
  23. Aug 04, 2004
  24. Jul 25, 2004
  25. Jul 24, 2004
  26. Jul 23, 2004
Loading