Skip to content
  1. Mar 26, 2006
  2. Mar 22, 2006
  3. Mar 13, 2006
  4. 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
  5. Jan 27, 2006
  6. Dec 20, 2005
  7. Dec 14, 2005
    • Nate Begeman's avatar
      Add support for fmul node of type v4f32. · 40f081d8
      Nate Begeman authored
      void %foo(<4 x float> * %a) {
      entry:
        %tmp1 = load <4 x float> * %a;
        %tmp2 = mul <4 x float> %tmp1, %tmp1
        store <4 x float> %tmp2, <4 x float> *%a
        ret void
      }
      
      Is selected to:
      
      _foo:
              li r2, 0
              lvx v0, r2, r3
              vxor v1, v1, v1
              vmaddfp v0, v0, v0, v1
              stvx v0, r2, r3
              blr
      
      llvm-svn: 24701
      40f081d8
  8. Dec 10, 2005
  9. Dec 04, 2005
  10. Nov 29, 2005
  11. Nov 26, 2005
  12. Nov 23, 2005
    • Nate Begeman's avatar
      Some first bits of AltiVec stuff: Instruction Formats, Encodings, and · 8492fd30
      Nate Begeman authored
      Registers.  Apologies to Jim if the scheduling info so far isn't accurate.
      
      There's a few more things like VRsave support that need to be finished up
      in my local tree before I can commit code that Does The Right Thing for
      turning 4 x float into the various altivec packed float instructions.
      
      llvm-svn: 24489
      8492fd30
  13. Oct 25, 2005
  14. Oct 19, 2005
  15. Oct 15, 2005
  16. Sep 30, 2005
  17. Sep 08, 2005
  18. Sep 03, 2005
  19. Sep 02, 2005
  20. Aug 26, 2005
  21. Aug 08, 2005
  22. Apr 19, 2005
  23. Apr 18, 2005
  24. Apr 14, 2005
  25. Apr 12, 2005
  26. Apr 11, 2005
    • Chris Lattner's avatar
      Revert the previous patch, which I didn't mean to check in. · f29cc882
      Chris Lattner authored
      llvm-svn: 21226
      f29cc882
    • Chris Lattner's avatar
      Fix a minor bug (ORo didn't mark that it set CR0). · d3dc3100
      Chris Lattner authored
      Refactor how . instructions are handled.  In particular, instead of passing
      the RC flag all the way up the inheritance hierarchy, just make a new tblgen
      class 'DOT' which can be added to an instruction definition.
      
      For example, instead of this:
      
      -def AND  : XForm_6<31,  28, 0, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
      -let Defs = [CR0] in
      -def ANDo : XForm_6<31,  28, 1, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
      -                   "and. $rA, $rS, $rB">;
      
      We now have this:
      
      +def AND  : XForm_6<31,  28, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
                          "and $rA, $rS, $rB">;
      
      llvm-svn: 21225
      d3dc3100
  27. Nov 25, 2004
Loading