llvm-6502/test/Analysis/DependenceAnalysis
Sebastian Pop 5026b2cc8b split delinearization pass in 3 steps
To compute the dimensions of the array in a unique way, we split the
delinearization analysis in three steps:

- find parametric terms in all memory access functions
- compute the array dimensions from the set of terms
- compute the delinearized access functions for each dimension

The first step is executed on all the memory access functions such that we
gather all the patterns in which an array is accessed. The second step reduces
all this information in a unique description of the sizes of the array. The
third step is delinearizing each memory access function following the common
description of the shape of the array computed in step 2.

This rewrite of the delinearization pass also solves a problem we had with the
previous implementation: because the previous algorithm was by induction on the
structure of the SCEV, it would not correctly recognize the shape of the array
when the memory access was not following the nesting of the loops: for example,
see polly/test/ScopInfo/multidim_only_ivs_3d_reverse.ll

; void foo(long n, long m, long o, double A[n][m][o]) {
;
;   for (long i = 0; i < n; i++)
;     for (long j = 0; j < m; j++)
;       for (long k = 0; k < o; k++)
;         A[i][k][j] = 1.0;

Starting with this patch we no longer delinearize access functions that do not
contain parameters, for example in test/Analysis/DependenceAnalysis/GCD.ll

;;  for (long int i = 0; i < 100; i++)
;;    for (long int j = 0; j < 100; j++) {
;;      A[2*i - 4*j] = i;
;;      *B++ = A[6*i + 8*j];

these accesses will not be delinearized as the upper bound of the loops are
constants, and their access functions do not contain SCEVUnknown parameters.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208232 91177308-0d34-0410-b5e6-96231b3b80d8
2014-05-07 18:01:20 +00:00
..
Banerjee.ll split delinearization pass in 3 steps 2014-05-07 18:01:20 +00:00
Coupled.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
ExactRDIV.ll Modified dump() to provide a little 2012-11-30 00:44:47 +00:00
ExactSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
GCD.ll split delinearization pass in 3 steps 2014-05-07 18:01:20 +00:00
Invariant.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185187 91177308-0d34-0410-b5e6-96231b3b80d8 2013-06-28 18:44:48 +00:00
Preliminary.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
Propagating.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
Separability.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
StrongSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
SymbolicRDIV.ll improve dependence analysis testcases 2013-11-12 22:47:30 +00:00
SymbolicSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
WeakCrossingSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
WeakZeroDstSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
WeakZeroSrcSIV.ll Modified depends() to recognize that when all levels are "=" and 2012-11-27 19:12:26 +00:00
ZIV.ll Modified dump() to provide a little 2012-11-30 00:44:47 +00:00