Skip to content
  1. May 25, 2006
  2. May 24, 2006
  3. May 17, 2006
  4. May 12, 2006
  5. May 08, 2006
  6. May 07, 2006
  7. Apr 22, 2006
  8. Apr 09, 2006
  9. Mar 26, 2006
  10. Mar 25, 2006
  11. Mar 24, 2006
  12. Mar 22, 2006
  13. Mar 21, 2006
  14. Mar 20, 2006
  15. Mar 17, 2006
    • Nate Begeman's avatar
      Remove BRTWOWAY* · bb01d4f2
      Nate Begeman authored
      Make the PPC backend not dependent on BRTWOWAY_CC and make the branch
      selector smarter about the code it generates, fixing a case in the
      readme.
      
      llvm-svn: 26814
      bb01d4f2
  16. Mar 16, 2006
  17. Mar 14, 2006
  18. Mar 13, 2006
    • Chris Lattner's avatar
      For functions that use vector registers, save VRSAVE, mark used · 02e2c18c
      Chris Lattner authored
      registers, and update it on entry to each function, then restore it on exit.
      
      This compiles:
      
      void func(vfloat *a, vfloat *b, vfloat *c) {
              *a = *b * *c + *c;
      }
      
      to this:
      
      _func:
              mfspr r2, 256
              oris r6, r2, 49152
              mtspr 256, r6
              lvx v0, 0, r5
              lvx v1, 0, r4
              vmaddfp v0, v1, v0, v0
              stvx v0, 0, r3
              mtspr 256, r2
              blr
      
      GCC produces this (which has additional stack accesses):
      
      _func:
              mfspr r0,256
              stw r0,-4(r1)
              oris r0,r0,0xc000
              mtspr 256,r0
              lvx v0,0,r5
              lvx v1,0,r4
              lwz r12,-4(r1)
              vmaddfp v0,v0,v1,v0
              stvx v0,0,r3
              mtspr 256,r12
              blr
      
      llvm-svn: 26733
      02e2c18c
  19. Mar 12, 2006
    • Chris Lattner's avatar
      Several big changes: · 51348c5f
      Chris Lattner authored
      1. Use flags on the instructions in the .td file to indicate the PPC970 unit
         type instead of a table in the .cpp file.  Much cleaner.
      2. Change the hazard recognizer to build d-groups according to the actual
         algorithm used, not my flawed understanding of it.
      3. Model "must be in the first slot" and "must be the only instr in a group"
         accurately.
      
      llvm-svn: 26719
      51348c5f
  20. Mar 08, 2006
  21. Mar 07, 2006
  22. Mar 01, 2006
  23. Feb 24, 2006
  24. Feb 17, 2006
  25. Feb 16, 2006
  26. Feb 09, 2006
  27. Feb 05, 2006
  28. Jan 28, 2006
  29. Jan 23, 2006
Loading