- Jan 12, 2007
-
-
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
-
- Oct 20, 2006
-
-
Reid Spencer authored
This patch implements the first increment for the Signless Types feature. All changes pertain to removing the ConstantSInt and ConstantUInt classes in favor of just using ConstantInt. llvm-svn: 31063
-
Chris Lattner authored
llvm-svn: 31059
-
- Sep 29, 2006
-
-
Chris Lattner authored
ConstantBool::getTrue() and ConstantBool::getFalse(). llvm-svn: 30666
-
- Sep 28, 2006
-
-
Chris Lattner authored
llvm-svn: 30641
-
Chris Lattner authored
Use the new ManagedStatic class to explicitly manage static variables, eliminating static ctors/dtors llvm-svn: 30639
-
- Sep 17, 2006
-
-
Chris Lattner authored
Instruction::isRelational to Instruction::isComparison. llvm-svn: 30444
-
- Aug 27, 2006
-
-
Chris Lattner authored
llvm-svn: 29911
-