LLVM  8.0.1
CaptureTracking.h
Go to the documentation of this file.
1 //===----- llvm/Analysis/CaptureTracking.h - Pointer capture ----*- C++ -*-===//
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 //
10 // This file contains routines that help determine which pointers are captured.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_ANALYSIS_CAPTURETRACKING_H
15 #define LLVM_ANALYSIS_CAPTURETRACKING_H
16 
17 namespace llvm {
18 
19  class Value;
20  class Use;
21  class Instruction;
22  class DominatorTree;
23  class OrderedBasicBlock;
24 
25  /// The default value for MaxUsesToExplore argument. It's relatively small to
26  /// keep the cost of analysis reasonable for clients like BasicAliasAnalysis,
27  /// where the results can't be cached.
28  /// TODO: we should probably introduce a caching CaptureTracking analysis and
29  /// use it where possible. The caching version can use much higher limit or
30  /// don't have this cap at all.
31  unsigned constexpr DefaultMaxUsesToExplore = 20;
32 
33  /// PointerMayBeCaptured - Return true if this pointer value may be captured
34  /// by the enclosing function (which is required to exist). This routine can
35  /// be expensive, so consider caching the results. The boolean ReturnCaptures
36  /// specifies whether returning the value (or part of it) from the function
37  /// counts as capturing it or not. The boolean StoreCaptures specified
38  /// whether storing the value (or part of it) into memory anywhere
39  /// automatically counts as capturing it or not.
40  /// MaxUsesToExplore specifies how many uses should the analysis explore for
41  /// one value before giving up due too "too many uses".
42  bool PointerMayBeCaptured(const Value *V,
43  bool ReturnCaptures,
44  bool StoreCaptures,
45  unsigned MaxUsesToExplore = DefaultMaxUsesToExplore);
46 
47  /// PointerMayBeCapturedBefore - Return true if this pointer value may be
48  /// captured by the enclosing function (which is required to exist). If a
49  /// DominatorTree is provided, only captures which happen before the given
50  /// instruction are considered. This routine can be expensive, so consider
51  /// caching the results. The boolean ReturnCaptures specifies whether
52  /// returning the value (or part of it) from the function counts as capturing
53  /// it or not. The boolean StoreCaptures specified whether storing the value
54  /// (or part of it) into memory anywhere automatically counts as capturing it
55  /// or not. Captures by the provided instruction are considered if the
56  /// final parameter is true. An ordered basic block in \p OBB could be used
57  /// to speed up capture-tracker queries.
58  /// MaxUsesToExplore specifies how many uses should the analysis explore for
59  /// one value before giving up due too "too many uses".
60  bool PointerMayBeCapturedBefore(const Value *V, bool ReturnCaptures,
61  bool StoreCaptures, const Instruction *I,
62  const DominatorTree *DT, bool IncludeI = false,
63  OrderedBasicBlock *OBB = nullptr,
64  unsigned MaxUsesToExplore = DefaultMaxUsesToExplore);
65 
66  /// This callback is used in conjunction with PointerMayBeCaptured. In
67  /// addition to the interface here, you'll need to provide your own getters
68  /// to see whether anything was captured.
69  struct CaptureTracker {
70  virtual ~CaptureTracker();
71 
72  /// tooManyUses - The depth of traversal has breached a limit. There may be
73  /// capturing instructions that will not be passed into captured().
74  virtual void tooManyUses() = 0;
75 
76  /// shouldExplore - This is the use of a value derived from the pointer.
77  /// To prune the search (ie., assume that none of its users could possibly
78  /// capture) return false. To search it, return true.
79  ///
80  /// U->getUser() is always an Instruction.
81  virtual bool shouldExplore(const Use *U);
82 
83  /// captured - Information about the pointer was captured by the user of
84  /// use U. Return true to stop the traversal or false to continue looking
85  /// for more capturing instructions.
86  virtual bool captured(const Use *U) = 0;
87  };
88 
89  /// PointerMayBeCaptured - Visit the value and the values derived from it and
90  /// find values which appear to be capturing the pointer value. This feeds
91  /// results into and is controlled by the CaptureTracker object.
92  /// MaxUsesToExplore specifies how many uses should the analysis explore for
93  /// one value before giving up due too "too many uses".
94  void PointerMayBeCaptured(const Value *V, CaptureTracker *Tracker,
95  unsigned MaxUsesToExplore = DefaultMaxUsesToExplore);
96 } // end namespace llvm
97 
98 #endif
virtual void tooManyUses()=0
tooManyUses - The depth of traversal has breached a limit.
This callback is used in conjunction with PointerMayBeCaptured.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
unsigned constexpr DefaultMaxUsesToExplore
The default value for MaxUsesToExplore argument.
virtual bool shouldExplore(const Use *U)
shouldExplore - This is the use of a value derived from the pointer.
A Use represents the edge between a Value definition and its users.
Definition: Use.h:56
virtual bool captured(const Use *U)=0
captured - Information about the pointer was captured by the user of use U.
bool PointerMayBeCapturedBefore(const Value *V, bool ReturnCaptures, bool StoreCaptures, const Instruction *I, const DominatorTree *DT, bool IncludeI=false, OrderedBasicBlock *OBB=nullptr, unsigned MaxUsesToExplore=DefaultMaxUsesToExplore)
PointerMayBeCapturedBefore - Return true if this pointer value may be captured by the enclosing funct...
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree...
Definition: Dominators.h:145
#define I(x, y, z)
Definition: MD5.cpp:58
LLVM Value Representation.
Definition: Value.h:73
bool PointerMayBeCaptured(const Value *V, bool ReturnCaptures, bool StoreCaptures, unsigned MaxUsesToExplore=DefaultMaxUsesToExplore)
PointerMayBeCaptured - Return true if this pointer value may be captured by the enclosing function (w...