Skip to content
  1. Jan 21, 2007
  2. Jan 15, 2007
    • Chris Lattner's avatar
      Run an instcombine pass after inlining but before scalarrepl. This allows · faa06087
      Chris Lattner authored
      instcombine to clean up the code, which makes more code suitable for SRoA.
      This helps C++ code in particular, e.g. speeding up tramp3d by 31%.
      
      llvm-svn: 33235
      faa06087
    • Reid Spencer's avatar
      Regenerate. · 6eb29908
      Reid Spencer authored
      llvm-svn: 33227
      6eb29908
    • Reid Spencer's avatar
      For PR1113: · 8307a54b
      Reid Spencer authored
      Increment the counter after the second use, not after the first use. This
      fixes PR1113.
      
      Also, rename some classes for simplicity and to more naturally be
      reminscient of LLVM 1.9. This in preparation for additional classes that
      will provide a scaled down model of the LLVM 1.9 IR.
      
      llvm-svn: 33226
      8307a54b
    • Chris Lattner's avatar
      rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. · 03c4953c
      Chris Lattner authored
      rename Type::getIntegralTypeMask to Type::getIntegerTypeMask.
      
      This makes naming much more consistent.  For example, there are now no longer any
      instances of IntegerType that are not considered isInteger! :)
      
      llvm-svn: 33225
      03c4953c
    • Reid Spencer's avatar
      Regenerate · 7ef3e491
      Reid Spencer authored
      llvm-svn: 33212
      7ef3e491
    • Reid Spencer's avatar
      Reorganize things a bit in preparation for rewrite. Although this looks · 04a03f20
      Reid Spencer authored
      like a lot, its really only two changes:
      
      1. Move stuff that should be private to .y out of the .h file.
      2. Make all semantic values pointers.
      
      This cleans up the silly destroy methods and changes them to delete. It
      also moves the TypeInfo and ValueInfo classes into the .y where we can
      modify them more readily because they have no clients any more.
      
      This shouldn't result in any functional changes in llvm-upgrade.
      
      llvm-svn: 33211
      04a03f20
  3. Jan 13, 2007
  4. Jan 12, 2007
    • Reid Spencer's avatar
      Regenerate. · 4d06a854
      Reid Spencer authored
      llvm-svn: 33140
      4d06a854
    • Reid Spencer's avatar
      Remove support for upgrading NOT. The llvm-upgrade lexer didn't recognize · 2dd0c0b2
      Reid Spencer authored
      it either. NOT is just plain illegal now.
      
      llvm-svn: 33139
      2dd0c0b2
    • Chris Lattner's avatar
      unbreak i1 constants with the cpp writer, eliminate special case. · d99bff4e
      Chris Lattner authored
      llvm-svn: 33133
      d99bff4e
    • 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
    • Chris Lattner's avatar
      Fix persistent conflict madness by removing these from cvs. · 899a89b1
      Chris Lattner authored
      llvm-svn: 33111
      899a89b1
    • 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
  5. Jan 11, 2007
  6. Jan 09, 2007
  7. Jan 08, 2007
  8. Jan 07, 2007
  9. Jan 06, 2007
    • Reid Spencer's avatar
      For PR411: · 32af9e8c
      Reid Spencer authored
      Take an incremental step towards type plane elimination. This change
      separates types from values in the symbol tables by finally making use
      of the TypeSymbolTable class. This yields more natural interfaces for
      dealing with types and unclutters the SymbolTable class.
      
      llvm-svn: 32956
      32af9e8c
    • Reid Spencer's avatar
      Regenerate. · ebbbbf62
      Reid Spencer authored
      llvm-svn: 32955
      ebbbbf62
    • Reid Spencer's avatar
      For PR1082: · cf025ad4
      Reid Spencer authored
      Solve several related problems by making variable names more unique and
      dealing with recursive phi nodes. Unfortunately, this doesn't solve the
      main issue reported in the PR, but its a step in that direction.
      
      llvm-svn: 32953
      cf025ad4
    • Reid Spencer's avatar
      Add an option for getting the C compiler flags, --cflags. · 780d4abb
      Reid Spencer authored
      Patch contributed by Chandler Carruth
      
      llvm-svn: 32950
      780d4abb
    • Reid Spencer's avatar
      Regenerate · 5f926112
      Reid Spencer authored
      llvm-svn: 32944
      5f926112
    • Reid Spencer's avatar
      For PR1080: · bfa5df26
      Reid Spencer authored
      Emit the correct syntax for icmp and fcmp constant expressions. The
      predicate goes outside the parentheses not inside. This was a change made
      in the assembler without the corresponding change made in llvm-upgrade.
      
      llvm-svn: 32942
      bfa5df26
  10. Jan 05, 2007
Loading