- Oct 24, 2011
-
-
Nick Lewycky authored
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; } llvm-svn: 142790
-
Chandler Carruth authored
two more subtle routines to the bottom and expand on their cautionary comments a bit. No functionality or actual interface change here. llvm-svn: 142789
-
Nick Lewycky authored
state. Furthermore, they might not have two operands. This fixes the underlying issue behind the crashes introduced in r142781. llvm-svn: 142788
-
Nick Lewycky authored
instructions. This doesn't introduce any optimizations we weren't doing before (except potentially due to pass ordering issues), now passes will eliminate them sooner as part of their own cleanups. llvm-svn: 142787
-
Nick Lewycky authored
Assertion `i_nocapture < OperandTraits<PHINode>::operands(this) && "getOperand() out of range!"' failed. coming out of indvars. llvm-svn: 142786
-
NAKAMURA Takumi authored
llvm-svn: 142785
-
Chandler Carruth authored
to match the CMakeLists.txt change in r142782; this should fix the CMake build. llvm-svn: 142784
-
Chandler Carruth authored
a single class. Previously it was split between two classes, one internal and one external. The concern seemed to center around exposing the weights used, but those can remain confined to the implementation file. Having a single class to maintain the state and analyses in use will also simplify several of the enhancements I want to make to our static heuristics. llvm-svn: 142783
-
Ted Kremenek authored
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more accurate, but it frees up the name AnalysisContext for other uses. llvm-svn: 142782
-
Nick Lewycky authored
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; } llvm-svn: 142781
-
Chandler Carruth authored
extraneous whitespace. Trying to clean-up this pass as much as I can before I start making functional changes. llvm-svn: 142780
-
Craig Topper authored
llvm-svn: 142779
-
- Oct 23, 2011
-
-
Chandler Carruth authored
to bring it under direct test instead of merely indirectly testing it in the BlockFrequencyInfo pass. The next step is to start adding tests for the various heuristics employed, and to start fixing those heuristics once they're under test. llvm-svn: 142778
-
Tobias Grosser authored
These are remainders of the switch to the newer isl version. At the point of switching I did not test with PoCC support. I should have done. ;-) llvm-svn: 142777
-
Tobias Grosser authored
The recommanded and supported way to use Polly is to load it into clang. Documentation for this is available on the website under http://polly.grosser.es/example_load_Polly_into_clang.html llvm-svn: 142776
-
Tobias Grosser authored
This also documents the new option on the website. llvm-svn: 142775
-
Tobias Grosser authored
This removes the separate prevector options for the Pluto and isl scheduler. llvm-svn: 142774
-
Tobias Grosser authored
llvm-svn: 142773
-
Tobias Grosser authored
The option -polly-no-optimizer disables the scheduling optimizer. llvm-svn: 142772
-
Tobias Grosser authored
llvm-svn: 142771
-
Tobias Grosser authored
llvm-svn: 142770
-
Tobias Grosser authored
llvm-svn: 142769
-
Tobias Grosser authored
llvm-svn: 142768
-
Tobias Grosser authored
llvm-svn: 142767
-
Tobias Grosser authored
Similar changes for polly-only-viewer, polly-printer and polly-only-printer. llvm-svn: 142766
-
Tobias Grosser authored
llvm-svn: 142765
-
Bill Wendling authored
llvm-svn: 142764
-
Bill Wendling authored
llvm-svn: 142763
-
Chandler Carruth authored
to get important constant branch probabilities and use them for finding the best branch out of a set of possibilities. llvm-svn: 142762
-
Chandler Carruth authored
llvm-svn: 142761
-
Peter Collingbourne authored
llvm-svn: 142760
-
Peter Collingbourne authored
llvm-svn: 142759
-
Peter Collingbourne authored
in-class member initialisers). llvm-svn: 142758
-
Peter Collingbourne authored
llvm-svn: 142757
-
Peter Collingbourne authored
llvm-svn: 142756
-
Peter Collingbourne authored
instead of silently discarding them. As a side effect, this improves diagnostics for constexpr class templates slightly. llvm-svn: 142755
-
Benjamin Kramer authored
Python.h includes a ton of macros that can cause weird behavior down the road. llvm-svn: 142754
-
Benjamin Kramer authored
llvm-svn: 142753
-
Benjamin Kramer authored
50% is much more readable than 5.000000e-01. llvm-svn: 142752
-
Benjamin Kramer authored
llvm-svn: 142751
-