- Jan 26, 2007
-
-
Reid Spencer authored
llvm-svn: 33520
-
- Jan 21, 2007
-
-
Reid Spencer authored
llvm-svn: 33417
-
Reid Spencer authored
Clean up handling of isFloatingPoint() and dealing with PackedType. Patch by Gordon Henriksen! llvm-svn: 33415
-
- Jan 19, 2007
-
-
Reid Spencer authored
This is the final patch for this PR. It implements some minor cleanup in the use of IntegerType, to wit: 1. Type::getIntegerTypeMask -> IntegerType::getBitMask 2. Type::Int*Ty changed to IntegerType* from Type* 3. ConstantInt::getType() returns IntegerType* now, not Type* This also fixes PR1120. Patch by Sheng Zhou. llvm-svn: 33370
-
- Jan 15, 2007
-
-
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
-
Chris Lattner authored
llvm-svn: 33213
-
- Jan 12, 2007
-
-
Jim Laskey authored
llvm-svn: 33146
-
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
-
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 04, 2007
-
-
Chris Lattner authored
llvm-svn: 32856
-
- Dec 31, 2006
-
-
Reid Spencer authored
Change signed integer type names to unsigned equivalents. llvm-svn: 32780
-
- Dec 24, 2006
-
-
Reid Spencer authored
llvm-svn: 32758
-
- Dec 23, 2006
-
-
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
-
- Dec 19, 2006
-
-
Reid Spencer authored
still check the validity of signed values an overload to isValueValidForType was added to allow passing in an int64_t to check. llvm-svn: 32663
-
- Dec 18, 2006
-
-
Reid Spencer authored
that its last uses have been removed. llvm-svn: 32653
-
- Dec 15, 2006
-
-
Jeff Cohen authored
llvm-svn: 32614
-
- Dec 13, 2006
-
-
Reid Spencer authored
Rename getZeroExtend and getSignExtend to getZExt and getSExt to match the the casting mnemonics in the rest of LLVM. llvm-svn: 32514
-
- Dec 12, 2006
-
-
Reid Spencer authored
llvm-svn: 32475
-
Reid Spencer authored
to the createIntegerCast and createFPCast for CastInst instructions. llvm-svn: 32457
-
- Dec 08, 2006
-
-
Andrew Lenharth authored
llvm-svn: 32361
-
- Dec 07, 2006
-
-
Reid Spencer authored
as the right type. Use this to shorten some code. llvm-svn: 32300
-
- Dec 06, 2006
-
-
Reid Spencer authored
Remove the getMaxValue and getMinValue functions from ConstantIntegral. They don't make sense for a signless type. Also, for isMaxValue and isMinValue, have the caller provided the signedness rather than obtaining it from the constant's type. llvm-svn: 32287
-
- Dec 05, 2006
-
-
Reid Spencer authored
remaining uses to more specific casts. llvm-svn: 32231
-
Reid Spencer authored
llvm-svn: 32211
-
- Dec 04, 2006
-
-
Reid Spencer authored
llvm-svn: 32200
-
Reid Spencer authored
expressions. These will get used to reduce clutter as we replace various calls to createInferredCast and getCast. llvm-svn: 32191
-
Reid Spencer authored
llvm-svn: 32186
-
Reid Spencer authored
llvm-svn: 32170
-
Reid Spencer authored
CastInst and ConstantExpr that allow the signedness to be explicitly passed in and reliance on signedness removed from getCastOpcode. These are temporary measures useful during the conversion of inferred casts. llvm-svn: 32164
-
- Dec 03, 2006
-
-
Reid Spencer authored
llvm-svn: 32147
-
- Dec 01, 2006
-
-
Chris Lattner authored
ConstantInt::get llvm-svn: 32080
-
- Nov 27, 2006
-
-
Reid Spencer authored
The long awaited CAST patch. This introduces 12 new instructions into LLVM to replace the cast instruction. Corresponding changes throughout LLVM are provided. This passes llvm-test, llvm/test, and SPEC CPUINT2000 with the exception of 175.vpr which fails only on a slight floating point output difference. llvm-svn: 31931
-
- Nov 17, 2006
-
-
Bill Wendling authored
llvm-svn: 31814
-
- Nov 08, 2006
-
-
Reid Spencer authored
This patch converts the old SHR instruction into two instructions, AShr (Arithmetic) and LShr (Logical). The Shr instructions now are not dependent on the sign of their operands. llvm-svn: 31542
-
- Nov 02, 2006
-
-
Reid Spencer authored
Replace the REM instruction with UREM, SREM and FREM. llvm-svn: 31369
-
- Oct 26, 2006
-
-
Evan Cheng authored
llvm-svn: 31206
-
Evan Cheng authored
llvm-svn: 31201
-
Reid Spencer authored
Make necessary changes to support DIV -> [SUF]Div. This changes llvm to have three division instructions: signed, unsigned, floating point. The bytecode and assembler are bacwards compatible, however. llvm-svn: 31195
-