Skip to content
  1. Sep 20, 2011
  2. Sep 09, 2011
  3. Jul 08, 2011
  4. Apr 15, 2011
  5. Mar 04, 2011
  6. Nov 10, 2010
  7. Nov 08, 2010
  8. Aug 17, 2010
  9. Apr 05, 2010
    • Jakob Stoklund Olesen's avatar
      Replace TSFlagsFields and TSFlagsShifts with a simpler TSFlags field. · b93331f3
      Jakob Stoklund Olesen authored
      When a target instruction wants to set target-specific flags, it should simply
      set bits in the TSFlags bit vector defined in the Instruction TableGen class.
      
      This works well because TableGen resolves member references late:
      
      class I : Instruction {
        AddrMode AM = AddrModeNone;
        let TSFlags{3-0} = AM.Value;
      }
      
      let AM = AddrMode4 in
      def ADD : I;
      
      TSFlags gets the expected bits from AddrMode4 in this example.
      
      llvm-svn: 100384
      b93331f3
  10. May 27, 2009
  11. Nov 24, 2008
  12. Jul 30, 2008
  13. Jul 09, 2008
  14. Jul 05, 2008
    • Bruno Cardoso Lopes's avatar
      Several changes to Mips backend, experimental fp support being the most · c9c3f499
      Bruno Cardoso Lopes authored
      important.
      - Cleanup in the Subtarget info with addition of new features, not all support
        yet, but they allow the future inclusion of features easier. Among new features,
        we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
        integer
        and float registers, allegrex vector FPU (VFPU), single float only support.
      - TargetMachine now detects allegrex core.
      - Added allegrex (Mips32r2) sext_inreg instructions.
      - *Added Float Point Instructions*, handling single float only, and
        aliased accesses for 32-bit FPUs.
      - Some cleanup in FP instruction formats and FP register classes.
      - Calling conventions improved to support mips 32-bit EABI.
      - Added Asm Printer support for fp cond codes.
      - Added support for sret copy to a return register.
      - EABI support added into LowerCALL and FORMAL_ARGS.
      - MipsFunctionInfo now keeps a virtual register per function to track the
        sret on function entry until function ret.
      - MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
        FP cond codes mapping and initial FP Branch Analysis.
      - Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
        FPCmp
      - MipsTargetLowering : handling different FP classes, Allegrex support, sret
        return copy, no homing location within EABI, non 32-bit stack objects
        arguments, and asm constraint for float.
      
      llvm-svn: 53146
      c9c3f499
  15. Dec 29, 2007
  16. Nov 06, 2007
  17. Aug 18, 2007
  18. 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
  19. Apr 16, 2007
    • Reid Spencer's avatar
      For PR1336: · 19c0217d
      Reid Spencer authored
      Subtarget option names must be given in lower case in order to be
      recognized. Fixes test/CodeGen/Alpha/ctlz.ll
      
      llvm-svn: 36125
      19c0217d
  20. Jan 24, 2007
  21. May 18, 2006
  22. May 17, 2006
  23. Mar 09, 2006
  24. Jan 27, 2006
  25. Oct 26, 2005
  26. Oct 24, 2005
  27. Jun 24, 2005
  28. Apr 05, 2005
  29. Feb 05, 2005
  30. Jan 23, 2005
  31. Dec 10, 2004
  32. Sep 22, 2004
  33. Apr 07, 2004
  34. Feb 28, 2004
  35. Feb 25, 2004
Loading