dependence analysis
authorSebastian Pop <spop@codeaurora.org>
Thu, 11 Oct 2012 07:32:34 +0000 (07:32 +0000)
committerSebastian Pop <spop@codeaurora.org>
Thu, 11 Oct 2012 07:32:34 +0000 (07:32 +0000)
commitad43499fc4c2879e25e8c83ddd556a3079e41516
treec69f0e21d4bbe75c7de5cf62de86bde9aa0d80fa
parentbe9262b8c7d32b416893368061281f827b489b18
dependence analysis

Patch from Preston Briggs <preston.briggs@gmail.com>.

This is an updated version of the dependence-analysis patch, including an MIV
test based on Banerjee's inequalities.

It's a fairly complete implementation of the paper

    Practical Dependence Testing
    Gina Goff, Ken Kennedy, and Chau-Wen Tseng
    PLDI 1991

It cannot yet propagate constraints between coupled RDIV subscripts (discussed
in Section 5.3.2 of the paper).

It's organized as a FunctionPass with a single entry point that supports testing
for dependence between two instructions in a function. If there's no dependence,
it returns null. If there's a dependence, it returns a pointer to a Dependence
which can be queried about details (what kind of dependence, is it loop
independent, direction and distance vector entries, etc). I haven't included
every imaginable feature, but there's a good selection that should be adequate
for supporting many loop transformations. Of course, it can be extended as
necessary.

Included in the patch file are many test cases, commented with C code showing
the loops and array references.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165708 91177308-0d34-0410-b5e6-96231b3b80d8
23 files changed:
include/llvm/Analysis/DependenceAnalysis.h [new file with mode: 0644]
include/llvm/Analysis/Passes.h
include/llvm/InitializePasses.h
include/llvm/LinkAllPasses.h
lib/Analysis/Analysis.cpp
lib/Analysis/CMakeLists.txt
lib/Analysis/DependenceAnalysis.cpp [new file with mode: 0644]
test/Analysis/DependenceAnalysis/Banerjee.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/Coupled.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/ExactRDIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/ExactSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/GCD.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/Preliminary.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/Propagating.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/Separability.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/StrongSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/SymbolicRDIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/SymbolicSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/WeakCrossingSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/WeakZeroDstSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/WeakZeroSrcSIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/ZIV.ll [new file with mode: 0644]
test/Analysis/DependenceAnalysis/lit.local.cfg [new file with mode: 0644]