Michael Gottesman | 6eb95dc | 2013-07-10 18:49:00 +0000 | [diff] [blame] | 1 | //===- ProvenanceAnalysis.h - ObjC ARC Optimization ---*- C++ -*-----------===// |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// \file |
| 10 | /// |
| 11 | /// This file declares a special form of Alias Analysis called ``Provenance |
| 12 | /// Analysis''. The word ``provenance'' refers to the history of the ownership |
| 13 | /// of an object. Thus ``Provenance Analysis'' is an analysis which attempts to |
| 14 | /// use various techniques to determine if locally |
| 15 | /// |
| 16 | /// WARNING: This file knows about certain library functions. It recognizes them |
| 17 | /// by name, and hardwires knowledge of their semantics. |
| 18 | /// |
| 19 | /// WARNING: This file knows about how certain Objective-C library functions are |
| 20 | /// used. Naive LLVM IR transformations which would otherwise be |
| 21 | /// behavior-preserving may break these assumptions. |
| 22 | /// |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 25 | #ifndef LLVM_LIB_TRANSFORMS_OBJCARC_PROVENANCEANALYSIS_H |
| 26 | #define LLVM_LIB_TRANSFORMS_OBJCARC_PROVENANCEANALYSIS_H |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 27 | |
| 28 | #include "llvm/ADT/DenseMap.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 29 | #include "llvm/Analysis/AliasAnalysis.h" |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 30 | |
| 31 | namespace llvm { |
| 32 | class Value; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 33 | class DataLayout; |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 34 | class PHINode; |
| 35 | class SelectInst; |
| 36 | } |
| 37 | |
| 38 | namespace llvm { |
| 39 | namespace objcarc { |
Michael Gottesman | 23a1ee5 | 2013-01-29 04:58:30 +0000 | [diff] [blame] | 40 | |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 41 | /// \brief This is similar to BasicAliasAnalysis, and it uses many of the same |
| 42 | /// techniques, except it uses special ObjC-specific reasoning about pointer |
| 43 | /// relationships. |
| 44 | /// |
| 45 | /// In this context ``Provenance'' is defined as the history of an object's |
| 46 | /// ownership. Thus ``Provenance Analysis'' is defined by using the notion of |
| 47 | /// an ``independent provenance source'' of a pointer to determine whether or |
| 48 | /// not two pointers have the same provenance source and thus could |
| 49 | /// potentially be related. |
Benjamin Kramer | 079b96e | 2013-09-11 18:05:11 +0000 | [diff] [blame] | 50 | class ProvenanceAnalysis { |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 51 | AliasAnalysis *AA; |
| 52 | |
| 53 | typedef std::pair<const Value *, const Value *> ValuePairTy; |
| 54 | typedef DenseMap<ValuePairTy, bool> CachedResultsTy; |
| 55 | CachedResultsTy CachedResults; |
| 56 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 57 | bool relatedCheck(const Value *A, const Value *B, const DataLayout &DL); |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 58 | bool relatedSelect(const SelectInst *A, const Value *B); |
| 59 | bool relatedPHI(const PHINode *A, const Value *B); |
| 60 | |
Aaron Ballman | f9a1897 | 2015-02-15 22:54:22 +0000 | [diff] [blame] | 61 | void operator=(const ProvenanceAnalysis &) = delete; |
| 62 | ProvenanceAnalysis(const ProvenanceAnalysis &) = delete; |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 63 | |
| 64 | public: |
| 65 | ProvenanceAnalysis() {} |
| 66 | |
| 67 | void setAA(AliasAnalysis *aa) { AA = aa; } |
| 68 | |
| 69 | AliasAnalysis *getAA() const { return AA; } |
| 70 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 71 | bool related(const Value *A, const Value *B, const DataLayout &DL); |
Michael Gottesman | 778138e | 2013-01-29 03:03:03 +0000 | [diff] [blame] | 72 | |
| 73 | void clear() { |
| 74 | CachedResults.clear(); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | } // end namespace objcarc |
| 79 | } // end namespace llvm |
| 80 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 81 | #endif |