Home
last modified time | relevance | path

Searched refs:Assumptions (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DAssumptions.cpp41 DenseSet<StringRef> Assumptions; in getAssumptions() local
46 Assumptions.insert(Str); in getAssumptions()
47 return Assumptions; in getAssumptions()
52 const DenseSet<StringRef> &Assumptions) { in addAssumptionsImpl() argument
53 if (Assumptions.empty()) in addAssumptionsImpl()
58 if (!set_union(CurAssumptions, Assumptions)) in addAssumptionsImpl()
96 bool llvm::addAssumptions(Function &F, const DenseSet<StringRef> &Assumptions) { in addAssumptions() argument
97 return ::addAssumptionsImpl(F, Assumptions); in addAssumptions()
101 const DenseSet<StringRef> &Assumptions) { in addAssumptions() argument
102 return ::addAssumptionsImpl(CB, Assumptions); in addAssumptions()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DAssumptions.h67 bool addAssumptions(Function &F, const DenseSet<StringRef> &Assumptions);
70 bool addAssumptions(CallBase &CB, const DenseSet<StringRef> &Assumptions);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h3048 SetContents(const DenseSet<BaseTy> &Assumptions)
3049 : Universal(false), Set(Assumptions) {}
3051 SetContents(bool Universal, const DenseSet<BaseTy> &Assumptions)
3052 : Universal(Universal), Set(Assumptions) {}
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/
H A DREADME.txt355 Assumptions are listed in "int_lib.h", and in individual files. Where possible
/freebsd-14.2/sys/dev/isp/
H A DDriverManual.txt198 5.1 Driver Assumptions
422 5.7 Locking Assumptions
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp1678 SmallVector<std::string, 4> Assumptions; in ParseOpenMPAssumesDirective() local
1750 Assumptions.push_back(Assumption); in ParseOpenMPAssumesDirective()
1753 Actions.ActOnOpenMPAssumesDirective(Loc, DKind, Assumptions, SkippedClauses); in ParseOpenMPAssumesDirective()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp11861 auto Assumptions = getAssumptions(CB); in getInitialAssumptions() local
11863 set_union(Assumptions, getAssumptions(*F)); in getInitialAssumptions()
11865 set_union(Assumptions, getAssumptions(*F)); in getInitialAssumptions()
11866 return Assumptions; in getInitialAssumptions()
/freebsd-14.2/lib/clang/libllvm/
H A DMakefile791 SRCS_MIN+= IR/Assumptions.cpp
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp3492 ArrayRef<std::string> Assumptions, in ActOnOpenMPAssumesDirective() argument
3494 if (!SkippedClauses && Assumptions.empty()) in ActOnOpenMPAssumesDirective()
3499 auto *AA = AssumptionAttr::Create(Context, llvm::join(Assumptions, ","), Loc); in ActOnOpenMPAssumesDirective()
3506 if (Assumptions.empty()) in ActOnOpenMPAssumesDirective()
/freebsd-14.2/contrib/one-true-awk/testdir/
H A Dfunstack.ok479 Robert A. Wagner Finiteness Assumptions and Intellectual
H A Dfunstack.in3366 title = "Finiteness Assumptions and Intellectual Isolation of Computer Scientists",
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11548 ArrayRef<std::string> Assumptions,