- Oct 26, 2011
-
-
Evan Cheng authored
on Darwin platforms where -Os means optimize for size without hurting performance. llvm-svn: 143002
-
Bill Wendling authored
An MBB which branches to an EH landing pad shouldn't be considered for tail merging. In SjLj EH, the jump to the landing pad is not done explicitly through a branch statement. The EH landing pad is added as a successor to the throwing BB. Because of that however, the branch folding pass could mistakenly think that it could merge the throwing BB with another BB. This isn't safe to do. <rdar://problem/10334833> llvm-svn: 143001
-
Eli Friedman authored
Add a note about the removal of the atomic intrinsics to the "Major Changes" section of the release notes. llvm-svn: 142998
-
Eric Christopher authored
to use for stripping final executables. Patch by Simon Atanasyan! llvm-svn: 142997
-
Eric Christopher authored
Patch by Dimitry Andric! llvm-svn: 142995
-
Eli Friedman authored
llvm-svn: 142994
-
Mon P Wang authored
fix up later. For this special case, allow such a mask to be considered valid. <rdar://problem/8622574> llvm-svn: 142992
-
Bill Wendling authored
llvm-svn: 142991
-
Bill Wendling authored
llvm-svn: 142990
-
Bill Wendling authored
llvm-svn: 142989
-
Bill Wendling authored
llvm-svn: 142988
-
Bill Wendling authored
llvm-svn: 142987
-
Michael J. Spencer authored
llvm-svn: 142984
-
Michael J. Spencer authored
llvm-svn: 142983
-
Michael J. Spencer authored
llvm-svn: 142982
-
Michael J. Spencer authored
llvm-svn: 142981
-
- Oct 25, 2011
-
-
Owen Anderson authored
llvm-svn: 142970
-
Bill Wendling authored
llvm-svn: 142966
-
Bill Wendling authored
llvm-svn: 142965
-
Bill Wendling authored
llvm-svn: 142963
-
Owen Anderson authored
Add support for the notion of "hidden" relocations. On MachO, these are relocation entries that are used as additional information for other, real relocations, rather than being relocations themselves. I'm not familiar enough with ELF or COFF to know if they should have any relocations marked hidden. llvm-svn: 142961
-
Bill Wendling authored
llvm-svn: 142960
-
Eli Friedman authored
llvm-svn: 142959
-
Chad Rosier authored
LLVM 2.9. My understanding is that we plan to maintain compatibility with 2.9 until the 3.1 release. At that time we can generate new test cases using LLVM 3.0. llvm-svn: 142958
-
Jim Grosbach authored
PR11217. llvm-svn: 142956
-
Bill Wendling authored
llvm-svn: 142955
-
Bill Wendling authored
llvm-svn: 142954
-
Owen Anderson authored
llvm-svn: 142952
-
Bruno Cardoso Lopes authored
compile and use a bunch of stuff using o32 abi). Also the rt-rk.com team claims that the JIT support they contributed, is complete for the mips "static" relocation model. llvm-svn: 142950
-
Chad Rosier authored
llvm-svn: 142948
-
Owen Anderson authored
llvm-svn: 142938
-
Bruno Cardoso Lopes authored
This first patch is for expression variable kinds. Patch by Jack Carter! llvm-svn: 142934
-
Bruno Cardoso Lopes authored
The address for $sp, and addresses for sdc1/ldc1 must be 8-byte aligned Patch by Petar Jovanovic. llvm-svn: 142930
-
Duncan Sands authored
down to this commit. Original commit message: An MBB which branches to an EH landing pad shouldn't be considered for tail merging. In SjLj EH, the jump to the landing pad is not done explicitly through a branch statement. The EH landing pad is added as a successor to the throwing BB. Because of that however, the branch folding pass could mistakenly think that it could merge the throwing BB with another BB. This isn't safe to do. <rdar://problem/10334833> llvm-svn: 142920
-
Duncan Sands authored
bots. Original commit messages: - Reapply r142781 with fix. Original message: Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the loop header when computing the trip count. With this, we now constant evaluate: struct ListNode { const struct ListNode *next; int i; }; static const struct ListNode node1 = {0, 1}; static const struct ListNode node2 = {&node1, 2}; static const struct ListNode node3 = {&node2, 3}; int test() { int sum = 0; for (const struct ListNode *n = &node3; n != 0; n = n->next) sum += n->i; return sum; } - Now that we look at all the header PHIs, we need to consider all the header PHIs when deciding that the loop has stopped evolving. Fixes miscompile in the gcc torture testsuite! llvm-svn: 142919
-
Chandler Carruth authored
classifying many edges as exiting which were in fact not. These mainly formed edges into sub-loops. It was also not correctly classifying all returning edges out of loops as leaving the loop. With this match most of the loop heuristics are more rational. Several serious regressions on loop-intesive benchmarks like perlbench's loop tests when built with -enable-block-placement are fixed by these updated heuristics. Unfortunately they in turn uncover some other regressions. There are still several improvemenst that should be made to loop heuristics including trip-count, and early back-edge management. llvm-svn: 142917
-
Duncan Sands authored
the dragonegg and llvm-gcc self-host buildbots. Original commit messages: - Reapply r142781 with fix. Original message: Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the loop header when computing the trip count. With this, we now constant evaluate: struct ListNode { const struct ListNode *next; int i; }; static const struct ListNode node1 = {0, 1}; static const struct ListNode node2 = {&node1, 2}; static const struct ListNode node3 = {&node2, 3}; int test() { int sum = 0; for (const struct ListNode *n = &node3; n != 0; n = n->next) sum += n->i; return sum; } - Now that we look at all the header PHIs, we need to consider all the header PHIs when deciding that the loop has stopped evolving. Fixes miscompile in the gcc torture testsuite! llvm-svn: 142916
-
Nick Lewycky authored
llvm-svn: 142912
-
Chad Rosier authored
bitcode reader/writer backward compatibility. llvm-svn: 142896
-
Bill Wendling authored
llvm-svn: 142893
-