summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/Passes.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-07 14:27:09 +0000
committerDan Gohman <gohman@apple.com>2010-07-07 14:27:09 +0000
commit9e86f4364b912ae743490ba01d6989acfd12c046 (patch)
tree0eb6677f25fb104f50e85918f79d60b5665e0315 /include/llvm/Analysis/Passes.h
parent46151f1764ec61bfe3724e5db41e7675a9d90a96 (diff)
downloadllvm-9e86f4364b912ae743490ba01d6989acfd12c046.tar.gz
llvm-9e86f4364b912ae743490ba01d6989acfd12c046.tar.bz2
llvm-9e86f4364b912ae743490ba01d6989acfd12c046.tar.xz
Remove interprocedural-basic-aa and associated code. The AliasAnalysis
interface needs implementations to be consistent, so any code which wants to support different semantics must use a different interface. It's not currently worthwhile to add a new interface for this new concept. Document that AliasAnalysis doesn't support cross-function queries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/Passes.h')
-rw-r--r--include/llvm/Analysis/Passes.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/include/llvm/Analysis/Passes.h b/include/llvm/Analysis/Passes.h
index 1020e07e0e..ce3f7a6677 100644
--- a/include/llvm/Analysis/Passes.h
+++ b/include/llvm/Analysis/Passes.h
@@ -53,13 +53,6 @@ namespace llvm {
//===--------------------------------------------------------------------===//
//
- // createInterproceduralAAEvalPass - This pass implements a simple
- // N^2 interprocedural alias analysis accuracy evaluator.
- //
- Pass *createInterproceduralAAEvalPass();
-
- //===--------------------------------------------------------------------===//
- //
// createNoAAPass - This pass implements a "I don't know" alias analysis.
//
ImmutablePass *createNoAAPass();
@@ -67,23 +60,12 @@ namespace llvm {
//===--------------------------------------------------------------------===//
//
// createBasicAliasAnalysisPass - This pass implements the default alias
- // analysis. This analysis respects the noalias attribute, so it is not
- // suitable for some interprocedural uses (see the discussion of noalias
- // in AliasAnalysis.html for details).
+ // analysis.
//
ImmutablePass *createBasicAliasAnalysisPass();
//===--------------------------------------------------------------------===//
//
- // createInterproceduralBasicAliasAnalysisPass - This pass is similar to
- // baiscaa, except that it properly supports queries to values which live
- // in different functions. Unlike the regular BasicAliasAnalysis, this
- // implementation does not respect the noalias attribute.
- //
- ImmutablePass *createInterproceduralBasicAliasAnalysisPass();
-
- //===--------------------------------------------------------------------===//
- //
/// createLibCallAliasAnalysisPass - Create an alias analysis pass that knows
/// about the semantics of a set of libcalls specified by LCI. The newly
/// constructed pass takes ownership of the pointer that is provided.