Skip to content
  1. Oct 09, 2007
  2. Oct 05, 2007
  3. Sep 26, 2007
  4. Sep 25, 2007
  5. Sep 24, 2007
  6. Sep 11, 2007
  7. Sep 07, 2007
  8. Aug 30, 2007
  9. Aug 28, 2007
  10. Aug 21, 2007
  11. Aug 18, 2007
  12. Aug 02, 2007
  13. Jul 27, 2007
  14. Jul 25, 2007
  15. Jul 21, 2007
  16. Jul 19, 2007
    • Evan Cheng's avatar
      Change instruction description to split OperandList into OutOperandList and · 94b5a80b
      Evan Cheng authored
      InOperandList. This gives one piece of important information: # of results
      produced by an instruction.
      An example of the change:
      def ADD32rr  : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      =>
      def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      
      llvm-svn: 40033
      94b5a80b
  17. Jul 12, 2007
Loading