Skip to content
  1. Aug 24, 2007
  2. Aug 01, 2007
    • David Greene's avatar
      · 17a5dfe6
      David Greene authored
      New CallInst interface to address GLIBCXX_DEBUG errors caused by
      indexing an empty std::vector.
      
      Updates to all clients.
      
      llvm-svn: 40660
      17a5dfe6
  3. Jul 18, 2007
  4. Jun 15, 2007
  5. May 11, 2007
  6. Apr 27, 2007
  7. Apr 22, 2007
  8. Apr 21, 2007
  9. Apr 14, 2007
  10. Apr 11, 2007
  11. Apr 09, 2007
    • Reid Spencer's avatar
      For PR1146: · ce38beb6
      Reid Spencer authored
      * Add ParamAttrs to InvokeInst class too.
      * Make sure all initializes of ParamAttrs in CallInst and InvokeInst are 0
      * Destruct the ParamAttrs in Call/Invoke destructors to avoid memory
        leaks. This will change when ParamAttrsList is uniquified but needs to
        be correct until then.
      
      llvm-svn: 35824
      ce38beb6
    • Reid Spencer's avatar
      For PR1146: · 019c8869
      Reid Spencer authored
      * Add ParamAttrList pointers to Function and CallInst.
      * Move the implementation of ParamAttrList from Type.cpp to Function.cpp
      
      llvm-svn: 35818
      019c8869
  12. Mar 22, 2007
  13. Mar 01, 2007
  14. Feb 28, 2007
  15. Feb 24, 2007
  16. Feb 15, 2007
    • Reid Spencer's avatar
      For PR1195: · 09575bac
      Reid Spencer authored
      Change use of "packed" term to "vector" in comments, strings, variable
      names, etc.
      
      llvm-svn: 34300
      09575bac
    • Reid Spencer's avatar
      For PR1195: · d84d35ba
      Reid Spencer authored
      Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and
      PackedTyID -> VectorTyID. No functional changes.
      
      llvm-svn: 34293
      d84d35ba
  17. Feb 13, 2007
  18. Feb 02, 2007
    • Reid Spencer's avatar
      Changes to support making the shift instructions be true BinaryOperators. · 2341c22e
      Reid Spencer authored
      This feature is needed in order to support shifts of more than 255 bits
      on large integer types.  This changes the syntax for llvm assembly to
      make shl, ashr and lshr instructions look like a binary operator:
         shl i32 %X, 1
      instead of
         shl i32 %X, i8 1
      Additionally, this should help a few passes perform additional optimizations.
      
      llvm-svn: 33776
      2341c22e
  19. Feb 01, 2007
  20. Jan 31, 2007
  21. Jan 26, 2007
  22. Jan 21, 2007
    • Reid Spencer's avatar
      For PR970: · 2eadb531
      Reid Spencer authored
      Clean up handling of isFloatingPoint() and dealing with PackedType.
      Patch by Gordon Henriksen!
      
      llvm-svn: 33415
      2eadb531
  23. Jan 17, 2007
    • Reid Spencer's avatar
      For PR1117: · 00e5e0ea
      Reid Spencer authored
      Expose the previously hidden checkCast function as CastInst::castIsValid.
      
      llvm-svn: 33282
      00e5e0ea
  24. Jan 15, 2007
  25. Jan 12, 2007
    • 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
  26. Jan 11, 2007
  27. Dec 31, 2006
    • Reid Spencer's avatar
      For PR950: · 8d9336d0
      Reid Spencer authored
      Change signed integer type names to unsigned equivalents.
      
      llvm-svn: 32780
      8d9336d0
  28. 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
Loading