Skip to content
  1. Feb 02, 2007
  2. Jan 31, 2007
  3. Jan 30, 2007
  4. Jan 13, 2007
  5. 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
    • Reid Spencer's avatar
      Implement review feedback for the ConstantBool->ConstantInt merge. Chris · cddc9dfe
      Reid Spencer authored
      recommended that getBoolValue be replaced with getZExtValue and that
      get(bool) be replaced by get(const Type*, uint64_t). This implements
      those changes.
      
      llvm-svn: 33110
      cddc9dfe
  6. Jan 11, 2007
  7. Jan 04, 2007
  8. Jan 03, 2007
  9. Dec 31, 2006
  10. 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
  11. Dec 20, 2006
  12. Dec 19, 2006
  13. Dec 12, 2006
  14. Dec 07, 2006
  15. Dec 06, 2006
  16. Dec 05, 2006
  17. Nov 26, 2006
  18. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  19. Oct 23, 2006
  20. Oct 22, 2006
    • Chris Lattner's avatar
      3 Changes: · af17096d
      Chris Lattner authored
      1. Better document what is going on here.
      2. Only hack on one branch per iteration, making the results less conservative.
      3. Handle the problematic case by marking edges executable instead of by
         playing with value lattice states.  This is far less pessimistic, and fixes
         SCCP/ipsccp-gvar.ll.
      
      llvm-svn: 31106
      af17096d
  21. Oct 20, 2006
  22. Sep 29, 2006
    • Chris Lattner's avatar
      · 6ab03f6a
      Chris Lattner authored
      Eliminate ConstantBool::True and ConstantBool::False.  Instead, provide
      ConstantBool::getTrue() and ConstantBool::getFalse().
      
      llvm-svn: 30665
      6ab03f6a
  23. Aug 28, 2006
  24. Apr 08, 2006
  25. Feb 08, 2006
  26. Jan 23, 2006
  27. Jan 17, 2006
  28. Jan 10, 2006
  29. Sep 26, 2005
  30. Apr 23, 2005
  31. Apr 22, 2005
  32. Apr 19, 2005
    • Chris Lattner's avatar
      Wrap some long lines. · 8cb10a17
      Chris Lattner authored
      Make IPSCCP strip off dead constant exprs that are using functions, making
      them appear as though their address is taken.  This allows us to propagate
      some more pool descriptors, lowering the overhead of pool alloc.
      
      llvm-svn: 21363
      8cb10a17
  33. Mar 15, 2005
  34. Jan 08, 2005
Loading