Skip to content
  1. Aug 21, 2013
  2. Aug 14, 2013
  3. Jul 14, 2013
  4. Jul 03, 2013
  5. Jun 22, 2013
  6. May 25, 2013
  7. May 18, 2013
  8. May 16, 2013
  9. 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
  10. May 01, 2013
  11. Apr 20, 2013
  12. Apr 13, 2013
  13. Mar 30, 2013
  14. Mar 13, 2013
  15. Mar 12, 2013
  16. Mar 06, 2013
  17. Mar 05, 2013
  18. 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
  19. Feb 25, 2013
  20. Feb 24, 2013
  21. Feb 23, 2013
  22. Feb 22, 2013
  23. Feb 21, 2013
  24. Feb 15, 2013
  25. Jan 30, 2013
  26. Jan 28, 2013
  27. 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
  28. Jan 22, 2013
  29. 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
  30. Dec 12, 2012
    • Evan Cheng's avatar
      Sorry about the churn. One more change to getOptimalMemOpType() hook. Did I · 962711ee
      Evan Cheng authored
      mention the inline memcpy / memset expansion code is a mess?
      
      This patch split the ZeroOrLdSrc argument into two: IsMemset and ZeroMemset.
      The first indicates whether it is expanding a memset or a memcpy / memmove.
      The later is whether the memset is a memset of zero. It's totally possible
      (likely even) that targets may want to do different things for memcpy and
      memset of zero.
      
      llvm-svn: 169959
      962711ee
    • Evan Cheng's avatar
      - Rename isLegalMemOpType to isSafeMemOpType. "Legal" is a very overloade term. · c3d1aca6
      Evan Cheng authored
      Also added more comments to explain why it is generally ok to return true.
      - Rename getOptimalMemOpType argument IsZeroVal to ZeroOrLdSrc. It's meant to
      be true for loaded source (memcpy) or zero constants (memset). The poor name
      choice is probably some kind of legacy issue.
      
      llvm-svn: 169954
      c3d1aca6
  31. Dec 11, 2012
    • Evan Cheng's avatar
      Some enhancements for memcpy / memset inline expansion. · 79e2ca90
      Evan Cheng authored
      1. Teach it to use overlapping unaligned load / store to copy / set the trailing
         bytes. e.g. On 86, use two pairs of movups / movaps for 17 - 31 byte copies.
      2. Use f64 for memcpy / memset on targets where i64 is not legal but f64 is. e.g.
         x86 and ARM.
      3. When memcpy from a constant string, do *not* replace the load with a constant
         if it's not possible to materialize an integer immediate with a single
         instruction (required a new target hook: TLI.isIntImmLegal()).
      4. Use unaligned load / stores more aggressively if target hooks indicates they
         are "fast".
      5. Update ARM target hooks to use unaligned load / stores. e.g. vld1.8 / vst1.8.
         Also increase the threshold to something reasonable (8 for memset, 4 pairs
         for memcpy).
      
      This significantly improves Dhrystone, up to 50% on ARM iOS devices.
      
      rdar://12760078
      
      llvm-svn: 169791
      79e2ca90
  32. Nov 17, 2012
  33. Nov 07, 2012
Loading