Skip to content
  1. May 14, 2007
  2. May 12, 2007
  3. Apr 17, 2007
  4. Apr 12, 2007
  5. Apr 10, 2007
  6. Apr 05, 2007
  7. Apr 02, 2007
    • Reid Spencer's avatar
      For PR1297: · fad9bd6b
      Reid Spencer authored
      Make sure that the CTPOP result is casted to i32 as the bit counting
      intrinsics all return i32 now (this affects CTLZ and CTTZ as well).
      
      llvm-svn: 35567
      fad9bd6b
  8. Apr 01, 2007
    • Reid Spencer's avatar
      For PR1297: · 6bba6c81
      Reid Spencer authored
      Support overloaded intrinsics bswap, ctpop, cttz, ctlz.
      
      llvm-svn: 35547
      6bba6c81
  9. Mar 01, 2007
  10. Feb 28, 2007
  11. Feb 22, 2007
  12. Feb 21, 2007
  13. Feb 13, 2007
  14. Feb 06, 2007
  15. Feb 02, 2007
  16. Jan 30, 2007
  17. Jan 29, 2007
  18. Jan 28, 2007
    • Reid Spencer's avatar
      For PR1138: · c7765617
      Reid Spencer authored
      Force memcpy to be the 32-bit variant. Since this is only used with
      CBE and lli which both target 32-bit machines, this should be okay.
      
      llvm-svn: 33608
      c7765617
  19. Jan 15, 2007
  20. Jan 07, 2007
  21. Dec 31, 2006
    • Reid Spencer's avatar
      For PR950: · e63b6518
      Reid Spencer authored
      Three changes:
      1. Convert signed integer types to signless versions.
      2. Implement the @sext and @zext parameter attributes. Previously the
         type of an function parameter was used to determine whether it should
         be sign extended or zero extended before the call. This information is
         now communicated via the function type's parameter attributes.
      3. The interface to LowerCallTo had to be changed in order to accommodate
         the parameter attribute information. Although it would have been
         convenient to pass in the FunctionType itself, there isn't always one
         present in the caller. Consequently, a signedness indication for the
         result type and for each parameter was provided for in the interface
         to this method. All implementations were changed to make the adjustment
         necessary.
      
      llvm-svn: 32788
      e63b6518
  22. Dec 23, 2006
    • Reid Spencer's avatar
      For PR950: · 266e42b3
      Reid Spencer authored
      This patch removes the SetCC instructions and replaces them with the ICmp
      and FCmp instructions. The SetCondInst instruction has been removed and
      been replaced with ICmpInst and FCmpInst.
      
      llvm-svn: 32751
      266e42b3
  23. Dec 21, 2006
  24. Dec 18, 2006
  25. Dec 12, 2006
  26. Dec 07, 2006
  27. Nov 28, 2006
  28. Nov 27, 2006
    • Reid Spencer's avatar
      For PR950: · 6c38f0bb
      Reid Spencer authored
      The long awaited CAST patch. This introduces 12 new instructions into LLVM
      to replace the cast instruction. Corresponding changes throughout LLVM are
      provided. This passes llvm-test, llvm/test, and SPEC CPUINT2000 with the
      exception of 175.vpr which fails only on a slight floating point output
      difference.
      
      llvm-svn: 31931
      6c38f0bb
  29. Nov 15, 2006
  30. Nov 08, 2006
    • Reid Spencer's avatar
      For PR950: · fdff938a
      Reid Spencer authored
      This patch converts the old SHR instruction into two instructions,
      AShr (Arithmetic) and LShr (Logical). The Shr instructions now are not
      dependent on the sign of their operands.
      
      llvm-svn: 31542
      fdff938a
  31. Oct 20, 2006
    • Reid Spencer's avatar
      For PR950: · e0fc4dfc
      Reid Spencer authored
      This patch implements the first increment for the Signless Types feature.
      All changes pertain to removing the ConstantSInt and ConstantUInt classes
      in favor of just using ConstantInt.
      
      llvm-svn: 31063
      e0fc4dfc
Loading