Skip to content
  1. Jan 07, 2008
  2. Jan 06, 2008
    • Chris Lattner's avatar
      Change the 'isStore' inferrer to look for 'SDNPMayStore' · a348f55e
      Chris Lattner authored
      instead of "ISD::STORE".  This allows us to mark target-specific dag
      nodes as storing (such as ppc byteswap stores).  This allows us to remove
      more explicit isStore flags from the .td files.
      
      Finally, add a warning for when a .td file contains an explicit 
      isStore and tblgen is able to infer it.
      
      llvm-svn: 45654
      a348f55e
  3. Dec 29, 2007
  4. Dec 13, 2007
  5. Nov 13, 2007
  6. Nov 12, 2007
  7. Nov 05, 2007
  8. Oct 26, 2007
  9. Oct 09, 2007
  10. Sep 24, 2007
  11. Sep 11, 2007
  12. Aug 18, 2007
    • Bruno Cardoso Lopes's avatar
      MipsHi now has ouput flag · 9fbef510
      Bruno Cardoso Lopes authored
      MipsAdd SDNode created to add support to an Add opcode which supports input flag
      Added an instruction itinerary to all instruction classes
      Added branches with zero cond codes
      Now call clobbers all non-callee saved registers
      Call w/ register support added
      Added DelaySlot to branch and load instructions
      Added patterns to handle all setcc, brcond/setcc and MipsAdd instructions
      
      llvm-svn: 41161
      9fbef510
  13. Jul 21, 2007
  14. 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
  15. Jul 12, 2007
  16. Jun 06, 2007
    • Bruno Cardoso Lopes's avatar
      Initial Mips support, here we go! =) · 35e43c49
      Bruno Cardoso Lopes authored
      - Modifications from the last patch included
        (issues pointed by Evan Cheng are now fixed).
      - Added more MipsI instructions.
      - Added more patterns to match branch instructions.
      
      llvm-svn: 37461
      35e43c49
Loading