Skip to content
  1. May 03, 2007
  2. May 02, 2007
  3. May 01, 2007
  4. Apr 15, 2007
  5. Apr 14, 2007
  6. Apr 08, 2007
  7. Apr 07, 2007
  8. Mar 02, 2007
  9. Feb 13, 2007
  10. Feb 06, 2007
  11. Jan 31, 2007
  12. Jan 30, 2007
  13. Jan 20, 2007
  14. Jan 15, 2007
  15. Jan 12, 2007
    • Chris Lattner's avatar
      Remove over-general comparisons · 3b6058c2
      Chris Lattner authored
      llvm-svn: 33147
      3b6058c2
    • 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
  16. Jan 11, 2007
  17. Jan 07, 2007
  18. 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
  19. 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
  20. Dec 21, 2006
  21. Dec 20, 2006
  22. Dec 19, 2006
  23. Dec 13, 2006
Loading