This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a5225558ed7 [docs][Bugpoint] Revert 5584ead50 a5aa3353 new 11e505acf57 Data Dependence Graph Basics new f60ceb9328e gn build: Merge r372162
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/DDG.rst | 135 ++++++++ docs/DependenceGraphs/cycle.png | Bin 0 -> 46831 bytes docs/DependenceGraphs/cycle_pi.png | Bin 0 -> 47148 bytes docs/DependenceGraphs/uml_builder_pattern.png | Bin 0 -> 77125 bytes docs/DependenceGraphs/uml_nodes_and_edges.png | Bin 0 -> 51501 bytes docs/SubsystemDocumentation.rst | 6 +- 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, 1847 insertions(+), 1 deletion(-) create mode 100644 docs/DependenceGraphs/DDG.rst create mode 100644 docs/DependenceGraphs/cycle.png create mode 100644 docs/DependenceGraphs/cycle_pi.png 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