Skip to content
  1. Mar 03, 2007
  2. Mar 02, 2007
  3. Feb 11, 2007
  4. Feb 06, 2007
  5. Jan 31, 2007
  6. Jan 15, 2007
  7. Jan 12, 2007
    • Chris Lattner's avatar
      simplify some code · f5e5236b
      Chris Lattner authored
      llvm-svn: 33150
      f5e5236b
    • Reid Spencer's avatar
      For PR1064: · 7a9c62ba
      Reid Spencer authored
      Implement the arbitrary bit-width integer feature. The feature allows
      integers of any bitwidth (up to 64) to be defined instead of just 1, 8,
      16, 32, and 64 bit integers.
      
      This change does several things:
      1. Introduces a new Derived Type, IntegerType, to represent the number of
         bits in an integer. The Type classes SubclassData field is used to
         store the number of bits. This allows 2^23 bits in an integer type.
      2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and
         64-bit integers. These are replaced with just IntegerType which is not
         a primitive any more.
      3. Adjust the rest of LLVM to account for this change.
      
      Note that while this incremental change lays the foundation for arbitrary
      bit-width integers, LLVM has not yet been converted to actually deal with
      them in any significant way. Most optimization passes, for example, will
      still only deal with the byte-width integer types.  Future increments
      will rectify this situation.
      
      llvm-svn: 33113
      7a9c62ba
  8. Jan 08, 2007
  9. Jan 07, 2007
  10. Dec 31, 2006
    • Reid Spencer's avatar
      For PR950: · c635f47d
      Reid Spencer authored
      This patch replaces signed integer types with signless ones:
      1. [US]Byte -> Int8
      2. [U]Short -> Int16
      3. [U]Int   -> Int32
      4. [U]Long  -> Int64.
      5. Removal of isSigned, isUnsigned, getSignedVersion, getUnsignedVersion
         and other methods related to signedness. In a few places this warranted
         identifying the signedness information from other sources.
      
      llvm-svn: 32785
      c635f47d
  11. 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
  12. Dec 19, 2006
  13. Dec 06, 2006
  14. 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
  15. Sep 21, 2006
  16. Aug 28, 2006
  17. Aug 26, 2006
  18. Aug 25, 2006
  19. Aug 18, 2006
  20. Jul 14, 2006
  21. Jul 13, 2006
  22. Jul 12, 2006
  23. Jul 11, 2006
  24. Jun 27, 2006
  25. Jun 17, 2006
  26. Nov 18, 2005
  27. Nov 17, 2005
  28. Aug 10, 2005
  29. Jul 30, 2005
  30. Jun 15, 2005
  31. Apr 22, 2005
  32. Feb 14, 2005
  33. Feb 12, 2005
  34. Oct 27, 2004
  35. Oct 12, 2004
Loading