HomeSort by relevance Sort by last modified time
    Searched defs:AssumptionCache (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
AssumptionCache.h 1 //===- llvm/Analysis/AssumptionCache.h - Track @llvm.assume ---*- C++ -*-===//
39 class AssumptionCache {
59 /// \brief Construct an AssumptionCache from a function by scanning all of
61 AssumptionCache(Function &F) : F(F), Scanned(false) {}
92 /// \brief A function analysis which provides an \c AssumptionCache.
101 typedef AssumptionCache Result;
109 AssumptionCache run(Function &F, FunctionAnalysisManager &) {
110 return AssumptionCache(F);
123 /// \brief An immutable pass that tracks lazily created \c AssumptionCache
128 /// function is deleted. The nature of the AssumptionCache is that it is no
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
AssumptionCache.h 1 //===- llvm/Analysis/AssumptionCache.h - Track @llvm.assume -----*- C++ -*-===//
42 class AssumptionCache {
53 AssumptionCache *AC;
61 AffectedValueCallbackVH(Value *V, AssumptionCache *AC = nullptr)
90 /// Construct an AssumptionCache from a function by scanning all of
92 AssumptionCache(Function &F) : F(F) {}
147 /// A function analysis which provides an \c AssumptionCache.
157 using Result = AssumptionCache;
159 AssumptionCache run(Function &F, FunctionAnalysisManager &) {
160 return AssumptionCache(F)
    [all...]

Completed in 163 milliseconds