- Oct 16, 2004
-
-
Chris Lattner authored
llvm-svn: 17040
-
- Oct 12, 2004
-
-
Chris Lattner authored
well as a vector of constant*'s. It turns out that this is more efficient and all of the clients want to do that, so we should cater to them. llvm-svn: 16923
-
- Sep 15, 2004
-
-
Alkis Evlogimenos authored
same size as the one in the array type. llvm-svn: 16354
-
- Sep 10, 2004
-
-
Alkis Evlogimenos authored
ConstantArray and ConstantPacked objects. llvm-svn: 16261
-
- Sep 02, 2004
-
-
Reid Spencer authored
Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
-
- Aug 20, 2004
-
-
Brian Gaeke authored
llvm-svn: 15938
-
- Aug 17, 2004
-
-
Chris Lattner authored
llvm-svn: 15883
-
- Aug 05, 2004
-
-
Chris Lattner authored
llvm-svn: 15509
-
- Aug 04, 2004
-
-
Chris Lattner authored
llvm-svn: 15498
-
Alkis Evlogimenos authored
llvm-svn: 15482
-
Chris Lattner authored
element. This speeds up the bytecode reader from 12.86s to 8.72s on 252.eon. llvm-svn: 15463
-
- Jul 29, 2004
-
-
Misha Brukman authored
llvm-svn: 15334
-
- Jul 19, 2004
-
-
Chris Lattner authored
llvm-svn: 14987
-
- Jul 18, 2004
-
-
Reid Spencer authored
- Replace ConstantPointerRef usage with GlobalValue usage - Minimize redundant isa<GlobalValue> usage - Correct isa<Constant> for GlobalValue subclass - Delete ConstantPointerRef member function implementations llvm-svn: 14928
-
- Jul 12, 2004
-
-
Chris Lattner authored
llvm-svn: 14776
-
- Jul 04, 2004
-
-
Reid Spencer authored
llvm-svn: 14614
-
- Jun 21, 2004
-
-
Chris Lattner authored
code. Patch contributed by Vladimir Prus. llvm-svn: 14280
-
- Jun 17, 2004
-
-
Chris Lattner authored
llvm-svn: 14201
-
- Jun 09, 2004
-
-
Chris Lattner authored
llvm-svn: 14078
-
- Jun 05, 2004
-
-
Chris Lattner authored
llvm-svn: 14031
-
- May 25, 2004
-
-
Chris Lattner authored
llvm-svn: 13738
-
- Apr 05, 2004
-
-
Chris Lattner authored
llvm-svn: 12648
-
- Mar 31, 2004
-
-
Chris Lattner authored
llvm-svn: 12564
-
Chris Lattner authored
llvm-svn: 12562
-
- Mar 29, 2004
-
-
Chris Lattner authored
llvm-svn: 12530
-
Chris Lattner authored
llvm-svn: 12526
-
- Mar 12, 2004
-
-
Chris Lattner authored
memory wasteage. llvm-svn: 12323
-
- Mar 08, 2004
-
-
Chris Lattner authored
llvm-svn: 12214
-
- Feb 16, 2004
-
-
Chris Lattner authored
enjoyed by all, fixing a fixme. Add an assert llvm-svn: 11505
-
- Feb 15, 2004
-
-
Chris Lattner authored
initializers for constant structs and arrays take constant space, instead of space proportinal to the number of elements. This reduces the memory usage of the LLVM compiler by hundreds of megabytes when compiling some nasty SPEC95 benchmarks. llvm-svn: 11470
-
Chris Lattner authored
'Constant', instead of specific subclass pointers. In the future, these will return an instance of ConstantAggregateZero if all of the inputs are zeros. llvm-svn: 11467
-
Chris Lattner authored
llvm-svn: 11466
-
Chris Lattner authored
llvm-svn: 11463
-
Chris Lattner authored
from 16.57 -> 13.46s on 129.compress. llvm-svn: 11462
-
- Feb 09, 2004
-
-
Chris Lattner authored
llvm-svn: 11228
-
- Feb 01, 2004
-
-
Chris Lattner authored
Basically we store floating point values as their integral components, instead of relying on the semantics of floating point < to differentiate between values. This is likely to make the map search be faster anyway. llvm-svn: 11064
-
- Jan 23, 2004
-
-
Chris Lattner authored
out that the problem was actually the writer writing out a 'null' value because it didn't normalize it. This fixes: test/Regression/Assembler/2004-01-22-FloatNormalization.ll llvm-svn: 10967
-
- Jan 14, 2004
-
-
Chris Lattner authored
lay off the crack. llvm-svn: 10855
-
Chris Lattner authored
llvm-svn: 10851
-
- Jan 12, 2004
-
-
Chris Lattner authored
Move a bunch of (now) private stuff from ConstantFolding.h into ConstantFolding.cpp. This _finally_ gets us to a place where we have a sane constant folder. The rules are: 1. LLVM clients now use ConstantExpr::get* methods to fold constants. If they cannot be folded, a constantexpr is created, so these methods always return valid Constant*'s. 2. The implementation of ConstantExpr::get* uses the functions exposed by ConstantFolding.h to try to fold constants. If they cannot be folded, they should return a null pointer. 3. The implementation of ConstantFolding can do whatever it wants, and only has one client (Constants.cpp) This cuts down on the wierd dependencies, and eliminates the two interfaces. The old constanthandling interface was especially bad for clients to use because almost none of them took the failure condition into consideration, thus leading to obscure problems. llvm-svn: 10807
-