- Jan 21, 2007
-
-
Chris Lattner authored
llvm-svn: 33420
-
- Jan 15, 2007
-
-
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
-
Reid Spencer authored
llvm-svn: 33227
-
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
-
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
-
Reid Spencer authored
llvm-svn: 33212
-
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
-
- Jan 13, 2007
-
-
Reid Spencer authored
llvm-svn: 33180
-
Reid Spencer authored
llvm-svn: 33179
-
Reid Spencer authored
llvm-svn: 33172
-
Reid Spencer authored
llvm-svn: 33171
-
Reid Spencer authored
llvm-svn: 33169
-
Reid Spencer authored
llvm-svn: 33165
-
Reid Spencer authored
Implement upgrading of the varargs intrinsics. These must now have i8* arguments. This patch bitcasts arguments to i8* and fixes the prototypes. llvm-svn: 33163
-
- Jan 12, 2007
-
-
Reid Spencer authored
llvm-svn: 33140
-
Reid Spencer authored
it either. NOT is just plain illegal now. llvm-svn: 33139
-
Chris Lattner authored
llvm-svn: 33133
-
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
-
Chris Lattner authored
llvm-svn: 33111
-
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
-
- Jan 11, 2007
-
-
Reid Spencer authored
llvm-svn: 33076
-
Zhou Sheng authored
Merge ConstantIntegral and ConstantBool into ConstantInt. Remove ConstantIntegral and ConstantBool from LLVM. llvm-svn: 33073
-
- Jan 09, 2007
-
-
Chandler Carruth authored
llvm-svn: 33032
-
- Jan 08, 2007
-
-
Devang Patel authored
Clear modules vector so that destructure does not try to delete these modules again. Patch by Chandler Carruth. llvm-svn: 33017
-
Chris Lattner authored
as the jit intercepts exit calls to implement atexit handlers. This fixes SingleSource/UnitTests/2003-05-14-AtExit llvm-svn: 33008
-
-
- Jan 07, 2007
-
-
Chris Lattner authored
llvm-svn: 32990
-
Reid Spencer authored
llvm-svn: 32987
-
Reid Spencer authored
llvm-svn: 32986
-
Chris Lattner authored
llvm-svn: 32978
-
Chris Lattner authored
llvm-svn: 32966
-
Chris Lattner authored
llvm-svn: 32965
-
- Jan 06, 2007
-
-
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
-
Reid Spencer authored
llvm-svn: 32955
-
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
-
Reid Spencer authored
Patch contributed by Chandler Carruth llvm-svn: 32950
-
Reid Spencer authored
llvm-svn: 32944
-
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
-
- Jan 05, 2007
-
-
Reid Spencer authored
file so make it depend on the .y file as well. This ensures that in parallel builds the lexer is built after bison runs. llvm-svn: 32937
-
Reid Spencer authored
llvm-svn: 32908
-