Skip to content
  1. Sep 23, 2013
  2. Sep 07, 2013
    • Akira Hatanaka's avatar
      [mips] Enhance command line option "-mno-ldc1-sdc1" to expand base+index double · 63791216
      Akira Hatanaka authored
      precision loads and stores as well as reg+imm double precision loads and stores.
      
      Previously, expansion of loads and stores was done after register allocation,
      but now it takes place during legalization. As a result, users will see double
      precision stores and loads being emitted to spill and restore 64-bit FP registers.
      
      llvm-svn: 190235
      63791216
  3. Aug 28, 2013
    • Daniel Sanders's avatar
      [mips][msa] Added bnz.df, bnz.v, bz.df, and bz.v · ce09d078
      Daniel Sanders authored
      These intrinsics are legalized to V(ALL|ANY)_(NON)?ZERO nodes,
      are matched as SN?Z_[BHWDV]_PSEUDO pseudo's, and emitted as
      a branch/mov sequence to evaluate to 0 or 1.
      
      Note: The resulting code is sub-optimal since it doesnt seem to be possible
      to feed the result of an intrinsic directly into a brcond. At the moment
      it uses (SETCC (VALL_ZERO $ws), 0, SETEQ) and similar which unnecessarily
      evaluates the boolean twice.
      
      llvm-svn: 189478
      ce09d078
  4. Aug 21, 2013
  5. Aug 14, 2013
  6. Jul 14, 2013
  7. Jul 03, 2013
  8. Jun 22, 2013
  9. May 25, 2013
  10. May 18, 2013
  11. May 16, 2013
  12. 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
  13. May 01, 2013
  14. Apr 20, 2013
  15. Apr 13, 2013
  16. Mar 30, 2013
  17. Mar 13, 2013
  18. Mar 12, 2013
  19. Mar 06, 2013
  20. Mar 05, 2013
  21. Mar 01, 2013
    • Michael Liao's avatar
      Fix PR10475 · 6af16fc3
      Michael Liao authored
      - ISD::SHL/SRL/SRA must have either both scalar or both vector operands
        but TLI.getShiftAmountTy() so far only return scalar type. As a
        result, backend logic assuming that breaks.
      - Rename the original TLI.getShiftAmountTy() to
        TLI.getScalarShiftAmountTy() and re-define TLI.getShiftAmountTy() to
        return target-specificed scalar type or the same vector type as the
        1st operand.
      - Fix most TICG logic assuming TLI.getShiftAmountTy() a simple scalar
        type.
      
      llvm-svn: 176364
      6af16fc3
  22. Feb 25, 2013
  23. Feb 24, 2013
  24. Feb 23, 2013
  25. Feb 22, 2013
  26. Feb 21, 2013
  27. Feb 15, 2013
  28. Jan 30, 2013
  29. Jan 28, 2013
  30. Jan 24, 2013
    • Reed Kotler's avatar
      The next phase of Mips16 hard float implementation. · a2d76bce
      Reed Kotler authored
      Allow Mips16 routines to call Mips32 routines that have abi requirements
      that either arguments or return values are passed in floating point 
      registers. This handles only the pic case. We have not done non pic
      for Mips16 yet in any form.
      
      The libm functions are Mips32, so with this addition we have a complete
      Mips16 hard float implementation.
      
      We still are not able to complete mix Mip16 and Mips32 with hard float.
      That will be the next phase which will have several steps. For Mips32
      to freely call Mips16 some stub functions must be created.
      
      llvm-svn: 173320
      a2d76bce
  31. Jan 22, 2013
  32. Dec 15, 2012
    • Reed Kotler's avatar
      This code implements most of mips16 hardfloat as it is done by gcc. · 5fdeb212
      Reed Kotler authored
      In this case, essentially it is soft float with different library routines.
      The next step will be to make this fully interoperational with mips32 floating
      point and that requires creating stubs for functions with signatures that
      contain floating point types.
      
      I have a more sophisticated design for mips16 hardfloat which I hope to
      implement at a later time that directly does floating point without the need
      for function calls.
      
      The mips16 encoding has no floating point instructions so one needs to
      switch to mips32 mode to execute floating point instructions.
      
      llvm-svn: 170259
      5fdeb212
Loading