Go to file
James Molloy f147359376 [LoopReroll] Introduce the concept of DAGRootSets.
A DAGRootSet models an induction variable being used in a rerollable
loop. For example:

   x[i*3+0] = y1
   x[i*3+1] = y2
   x[i*3+2] = y3

   Base instruction -> i*3
                    +---+----+
                   /    |     \
               ST[y1]  +1     +2  <-- Roots
                        |      |
                      ST[y2] ST[y3]

There may be multiple DAGRootSets, for example:

   x[i*2+0] = ...   (1)
   x[i*2+1] = ...   (1)
   x[i*2+4] = ...   (2)
   x[i*2+5] = ...   (2)
   x[(i+1234)*2+5678] = ... (3)
   x[(i+1234)*2+5679] = ... (3)

This concept is similar to the "Scale" member used previously, but allows
multiple independent sets of roots based off the same induction variable.

llvm-svn: 228821
2015-02-11 09:19:47 +00:00
clang Fix amount of diagnostic classes 2015-02-11 07:56:16 +00:00
clang-tools-extra Fixed module-map-checker to recurse umbrella dirs when collecting headers. 2015-02-10 14:58:07 +00:00
compiler-rt Revert "[UBSan] Enable -Wglobal-constructors." 2015-02-11 03:05:02 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc Implement log10 2015-01-30 18:00:34 +00:00
libcxx Update double_include.sh.cpp for new headers. 2015-02-11 01:31:02 +00:00
libcxxabi unwind: tweak inclusion ordering to work around GCC 2015-02-11 05:20:53 +00:00
lld GNU: Rename parseZOption because it actually parses only -z max-page-size. 2015-02-10 21:40:51 +00:00
lldb Clean up test/tools/lldb-mi/TestMiNotification.py (MI) 2015-02-11 05:02:44 +00:00
llgo irgen: don't emit debug metadata for locals 2015-01-29 00:34:30 +00:00
llvm [LoopReroll] Introduce the concept of DAGRootSets. 2015-02-11 09:19:47 +00:00
openmp Fixed memory corruption problem. 2015-02-10 20:10:21 +00:00
polly isl is now distributed with polly 2015-02-09 13:52:21 +00:00