- Mar 31, 2008
-
-
Erick Tryzelaar authored
llvm-svn: 48982
-
- Mar 30, 2008
-
-
Chris Lattner authored
patch by David Chisnall. llvm-svn: 48963
-
- Mar 29, 2008
-
-
Evan Cheng authored
llvm-svn: 48935
-
- Mar 28, 2008
-
-
Duncan Sands authored
llvm-svn: 48914
-
- Mar 27, 2008
-
-
Duncan Sands authored
In order to handle indexed nodes I had to introduce a new constructor, and since I was there I factorized the code in the various load constructors. llvm-svn: 48894
-
Dan Gohman authored
nodes. This doesn't currently have much impact the generated code, but it does produce simpler-looking SelectionDAGs, and consequently simpler-looking ScheduleDAGs, because there are fewer spurious dependencies. In particular, CopyValueToVirtualRegister now uses the entry node as the input chain dependency for new CopyToReg nodes instead of calling getRoot and depending on the most recent memory reference. Also, rename UnorderedChains to PendingExports and pull it up from being a local variable in SelectionDAGISel::BuildSelectionDAG to being a member variable of SelectionDAGISel, so that it doesn't have to be passed around to all the places that need it. llvm-svn: 48893
-
Chris Lattner authored
null. This means that uses of invalidated iterators will explode violently with: ilist:143: failed assertion `NodePtr && "++'d off the end of an ilist!"' instead of happening to work "most of the time". llvm-svn: 48859
-
Erick Tryzelaar authored
llvm-svn: 48851
-
Dale Johannesen authored
be relocatable. Describe why .set is needed better. llvm-svn: 48848
-
- Mar 26, 2008
-
-
Roman Levenstein authored
LLVM Value/Use does and MachineRegisterInfo/MachineOperand does. This allows constant time for all uses list maintenance operations. The idea was suggested by Chris. Reviewed by Evan and Dan. Patch is tested and approved by Dan. On normal use-cases compilation speed is not affected. On very big basic blocks there are compilation speedups in the range of 15-20% or even better. llvm-svn: 48822
-
- Mar 25, 2008
-
-
Dan Gohman authored
llvm-svn: 48801
-
Dan Gohman authored
marked read-write. Use const so that they can be allocated in a read-only segment. llvm-svn: 48800
-
Devang Patel authored
llvm-svn: 48793
-
Bill Wendling authored
Patch by dekruijf@cs.wisc.edu! llvm-svn: 48782
-
Sam Bishop authored
OwningPtr<> class. llvm-svn: 48763
-
- Mar 24, 2008
-
-
Owen Anderson authored
llvm-svn: 48743
-
Dan Gohman authored
llvm-svn: 48729
-
Dan Gohman authored
field to store the alignment value instead of haing a separate field. llvm-svn: 48727
-
Evan Cheng authored
Increasing the inline limit from (overly conservative) 200 to 300. Given each BB costs 20 and each instruction costs 5, 200 means a 4 BB function + 24 instructions (actually less because caller's size also contributes to it). Furthermore, double the limit when more than 10% of the callee instructions are vector instructions. Multimedia kernels tend to love inlining. llvm-svn: 48725
-
- Mar 23, 2008
-
-
Gordon Henriksen authored
llvm-svn: 48711
-
Anton Korobeynikov authored
llvm-svn: 48705
-
Anton Korobeynikov authored
on ideas mentioned in PR686. Written by Mikhail Glushenkov and contributed by Codedgers, Inc. Old llvmc will be removed soon after new one will have all its properties. llvm-svn: 48699
-
- Mar 22, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 48681
-
Owen Anderson authored
llvm-svn: 48677
-
Owen Anderson authored
llvm-svn: 48676
-
Evan Cheng authored
llvm-svn: 48673
-
Dan Gohman authored
adding <map> to many files that actually do need it. llvm-svn: 48667
-
Dan Gohman authored
to avoid using constructor calls for static objects. This reduces the number of objects requiring static constructors in a typical LLVM build by around 20%. llvm-svn: 48665
-
- Mar 21, 2008
-
-
Andrew Lenharth authored
llvm-svn: 48648
-
Duncan Sands authored
the new StructType::get method. The second NULL is to pacify the gcc warning mechanism. This patch compiles but is otherwise untested. llvm-svn: 48645
-
Duncan Sands authored
flags. This is needed by the new legalize types infrastructure which wants to expand the 64 bit constants previously used to hold the flags on 32 bit machines. There are two functional changes: (1) in LowerArguments, if a parameter has the zext attribute set then that is marked in the flags; before it was being ignored; (2) PPC had some bogus code for handling two word arguments when using the ELF 32 ABI, which was hard to convert because of the bogusness. As suggested by the original author (Nicolas Geoffray), I've disabled it for the moment. Tested with "make check" and the Ada ACATS testsuite. llvm-svn: 48640
-
Evan Cheng authored
llvm-svn: 48627
-
- Mar 20, 2008
-
-
Gordon Henriksen authored
Patch by Erick Tryzelaar. llvm-svn: 48602
-
Nick Lewycky authored
llvm-svn: 48585
-
Evan Cheng authored
llvm-svn: 48569
-
- Mar 19, 2008
-
-
Devang Patel authored
llvm-svn: 48554
-
Duncan Sands authored
llvm-svn: 48543
-
Chris Lattner authored
struct types. Patch by David Chisnall, with some tweaks. llvm-svn: 48531
-
Gordon Henriksen authored
llvm-svn: 48528
-
Gordon Henriksen authored
Based on Erick Tryzelaar's patch. llvm-svn: 48523
-