This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b93303087a6 [InstSimplify] add tests for fma/fmuladd; NFC new d23ee4dbce1 Data Dependence Graph Basics new d192322d236 gn build: Merge r372238
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/DependenceGraphs/cycle.png | Bin 0 -> 46831 bytes docs/DependenceGraphs/cycle_pi.png | Bin 0 -> 47148 bytes docs/DependenceGraphs/index.rst | 140 ++++++++ docs/DependenceGraphs/uml_builder_pattern.png | Bin 0 -> 77125 bytes docs/DependenceGraphs/uml_nodes_and_edges.png | Bin 0 -> 51501 bytes docs/SubsystemDocumentation.rst | 7 +- include/llvm/Analysis/DDG.h | 372 +++++++++++++++++++++ include/llvm/Analysis/DependenceGraphBuilder.h | 108 ++++++ lib/Analysis/CMakeLists.txt | 2 + lib/Analysis/DDG.cpp | 181 +++++++++++ lib/Analysis/DependenceGraphBuilder.cpp | 200 ++++++++++++ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 2 + test/Analysis/DDG/basic-a.ll | 189 +++++++++++ test/Analysis/DDG/basic-b.ll | 216 ++++++++++++ test/Analysis/DDG/basic-loopnest.ll | 434 +++++++++++++++++++++++++ utils/gn/secondary/llvm/lib/Analysis/BUILD.gn | 2 + 17 files changed, 1853 insertions(+), 1 deletion(-) create mode 100644 docs/DependenceGraphs/cycle.png create mode 100644 docs/DependenceGraphs/cycle_pi.png create mode 100644 docs/DependenceGraphs/index.rst create mode 100644 docs/DependenceGraphs/uml_builder_pattern.png create mode 100644 docs/DependenceGraphs/uml_nodes_and_edges.png create mode 100644 include/llvm/Analysis/DDG.h create mode 100644 include/llvm/Analysis/DependenceGraphBuilder.h create mode 100644 lib/Analysis/DDG.cpp create mode 100644 lib/Analysis/DependenceGraphBuilder.cpp create mode 100644 test/Analysis/DDG/basic-a.ll create mode 100644 test/Analysis/DDG/basic-b.ll create mode 100644 test/Analysis/DDG/basic-loopnest.ll