From 5a726b8ecfc26cd67b15962be0eabff9a7a20102 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Tue, 2 Oct 2007 00:43:25 +0000 Subject: [PATCH] Mention memdep in the AA documentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42519 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/AliasAnalysis.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/AliasAnalysis.html b/docs/AliasAnalysis.html index 748b3cb30eb..7c3fa81d443 100644 --- a/docs/AliasAnalysis.html +++ b/docs/AliasAnalysis.html @@ -50,6 +50,7 @@ implementations +
  • Memory Dependence Analysis
  • @@ -947,6 +948,24 @@ algorithm will have a lower number of may aliases).

    + +
    + Memory Dependence Analysis +
    + + +
    + +

    If you're just looking to be a client of alias analysis information, consider +using the Memory Dependence Analysis interface instead. MemDep is a lazy, +caching layer on top of alias analysis that is able to answer the question of +what preceding memory operations a given instruction depends on, either at an +intra- or inter-block level. Because of its laziness and caching +policy, using MemDep can be a significant performance win over accessing alias +analysis directly.

    + +
    +
    -- 2.34.1