Skip to content
  1. Feb 07, 2014
  2. Dec 15, 2013
    • Reed Kotler's avatar
      Last change for mips16 prolog/epilog cleanup and optimization. · 5c29d63a
      Reed Kotler authored
      Some tiny cosmetic code changes to follow. Because of the wide
      ranging nature of the patch a full 24 test cycle was needed to
      check against regression. This was the smallest patch I could
      make to progress from the earlier ones in the series. 
      
      llvm-svn: 197350
      5c29d63a
  3. Aug 21, 2013
  4. May 16, 2013
  5. May 11, 2013
    • Reed Kotler's avatar
      Checkin in of first of several patches to finish implementation of · 783c7944
      Reed Kotler authored
      mips16/mips32 floating point interoperability. 
      
      This patch fixes returns from mips16 functions so that if the function
      was in fact called by a mips32 hard float routine, then values
      that would have been returned in floating point registers are so returned.
      
      Mips16 mode has no floating point instructions so there is no way to
      load values into floating point registers.
      
      This is needed when returning float, double, single complex, double complex
      in the Mips ABI.
      
      Helper functions in libc for mips16 are available to do this.
      
      For efficiency purposes, these helper functions have a different calling
      convention from normal Mips calls.
      
      Registers v0,v1,a0,a1 are used to pass parameters instead of
      a0,a1,a2,a3.
      
      This is because v0,v1,a0,a1 are the natural registers used to return
      floating point values in soft float. These values can then be moved
      to the appropriate floating point registers with no extra cost.
      
      The only register that is modified is ra in this call.
      
      The helper functions make sure that the return values are in the floating
      point registers that they would be in if soft float was not in effect
      (which it is for mips16, though the soft float is implemented using a mips32
      library that uses hard float).
       
      
      llvm-svn: 181641
      783c7944
  6. Mar 06, 2013
  7. Mar 05, 2013
  8. Oct 27, 2012
  9. Aug 16, 2012
  10. Jun 13, 2012
  11. Mar 01, 2012
  12. Feb 28, 2012
  13. Feb 17, 2012
  14. Feb 16, 2012
  15. Nov 14, 2011
    • Akira Hatanaka's avatar
      AnalyzeCallOperands function for N32/64. · 0b8bc004
      Akira Hatanaka authored
      N32/64 places all variable arguments in integer registers (or on stack),
      regardless of their types, but follows calling convention of non-vaarg function
      when it handles fixed arguments.
      
      llvm-svn: 144553
      0b8bc004
  16. Nov 12, 2011
  17. Sep 23, 2011
  18. Jun 21, 2011
  19. Apr 25, 2011
  20. Apr 15, 2011
  21. Mar 04, 2011
  22. Aug 17, 2010
  23. Jan 19, 2010
  24. Mar 19, 2009
  25. Aug 03, 2008
  26. 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
  27. Dec 29, 2007
  28. 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