- Jan 12, 2007
-
-
Nick Lewycky authored
instruction. Doesn't work the other way though (can't recover bits that have been truncated). llvm-svn: 33104
-
Nick Lewycky authored
llvm-svn: 33096
-
- Jan 11, 2007
-
-
Reid Spencer authored
llvm-svn: 33076
-
Zhou Sheng authored
llvm-svn: 33075
-
Zhou Sheng authored
Merge ConstantIntegral and ConstantBool into ConstantInt. Remove ConstantIntegral and ConstantBool from LLVM. llvm-svn: 33073
-
Zhou Sheng authored
llvm-svn: 33072
-
Nick Lewycky authored
is so that it can be called from inside a debugger. llvm-svn: 33067
-
Nick Lewycky authored
Please do not enable, there is still some known miscompile problem. llvm-svn: 33066
-
- Jan 08, 2007
-
-
Jeff Cohen authored
llvm-svn: 33021
-
Reid Spencer authored
This patch converts getPrimitiveSize to getPrimitiveSizeInBits where it is appropriate to do so (comparison of integer primitive types). llvm-svn: 33012
-
Reid Spencer authored
Enable complex addressing modes on 64-bit platforms involving two induction variables by keeping a size and scale in 64-bits not 32. Patch by Dan Gohman. llvm-svn: 33011
-
- Jan 07, 2007
-
-
Chris Lattner authored
llvm-svn: 32980
-
Chris Lattner authored
llvm-svn: 32971
-
- Jan 06, 2007
-
-
Chris Lattner authored
llvm-svn: 32959
-
Chris Lattner authored
is only called on integers. llvm-svn: 32949
-
Chris Lattner authored
types of the same size llvm-svn: 32948
-
Chris Lattner authored
relational pointer comparisons with casts. llvm-svn: 32947
-
Chris Lattner authored
llvm-svn: 32946
-
- Jan 05, 2007
-
-
Chris Lattner authored
undef operands. llvm-svn: 32899
-
Chris Lattner authored
llvm-svn: 32893
-
Chris Lattner authored
llvm-svn: 32890
-
- Jan 04, 2007
-
-
Reid Spencer authored
llvm-svn: 32866
-
Chris Lattner authored
llvm-svn: 32858
-
- Jan 03, 2007
-
-
Jim Laskey authored
llvm-svn: 32827
-
- Dec 31, 2006
-
-
Reid Spencer authored
llvm-svn: 32803
-
Reid Spencer authored
This patch replaces signed integer types with signless ones: 1. [US]Byte -> Int8 2. [U]Short -> Int16 3. [U]Int -> Int32 4. [U]Long -> Int64. 5. Removal of isSigned, isUnsigned, getSignedVersion, getUnsignedVersion and other methods related to signedness. In a few places this warranted identifying the signedness information from other sources. llvm-svn: 32785
-
- Dec 24, 2006
-
-
Reid Spencer authored
Fix this by ensuring that a bitcast is inserted to do sign switching. This is only temporarily needed as the merging of signed and unsigned is next on the SignlessTypes plate. llvm-svn: 32757
-
- Dec 23, 2006
-
-
Reid Spencer authored
correctly and emit "may be used uninitialized" warnings. llvm-svn: 32756
-
Reid Spencer authored
Don't allow CmpInst instances to be processed in FoldSelectOpOp because you can't easily swap their operands. llvm-svn: 32753
-
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
-
Chris Lattner authored
llvm-svn: 32750
-
- Dec 20, 2006
-
-
Chris Lattner authored
code to handle instructions as well, so that we properly fold things like X & undef -> 0. This fixes Transforms/SCCP/2006-12-19-UndefBug.ll llvm-svn: 32715
-
- Dec 19, 2006
-
-
Chris Lattner authored
llvm-svn: 32692
-
Chris Lattner authored
converted, we lose a static initializer. This also allows GCC to emit warnings about unused statistics. llvm-svn: 32690
-
- Dec 18, 2006
-
-
Reid Spencer authored
creation. These changes are still temporary but at least this pushes knowledge of signedness out closer to where it can be determined properly and allows signedness to be removed from VMCore. llvm-svn: 32654
-
- Dec 15, 2006
-
-
Chris Lattner authored
llvm-svn: 32595
-
- Dec 13, 2006
-
-
Reid Spencer authored
used to determine whether a ZExt or SExt cast is performed. Instead, pass an "isSigned" bool to the function and determine its value from the opcode of the cast involved. Also, clean up some cruft from previous patches. llvm-svn: 32548
-
Reid Spencer authored
cast instructions. A few are bug fixes. llvm-svn: 32544
-
Reid Spencer authored
make sure to also check that it is a zext from bool, not any other cast operation type. llvm-svn: 32539
-
Reid Spencer authored
The cast patch introduced the possibility that the wrong cast opcode could be used and that this transform could trigger on different kinds of cast operations. This patch rectifies that. llvm-svn: 32538
-