Home
last modified time | relevance | path

Searched refs:OptLoc (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DUtils.h124 const std::optional<MemoryLocation> &OptLoc) { in aliasAnalysisGetModRefInfo() argument
125 return BatchAA.getModRefInfo(cast<llvm::Instruction>(I->Val), OptLoc); in aliasAnalysisGetModRefInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h514 const std::optional<MemoryLocation> &OptLoc) {
516 return getModRefInfo(I, OptLoc, AAQIP);
624 const std::optional<MemoryLocation> &OptLoc,
680 const std::optional<MemoryLocation> &OptLoc) {
681 return AA.getModRefInfo(I, OptLoc, AAQI);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp557 const std::optional<MemoryLocation> &OptLoc, in getModRefInfo() argument
559 if (OptLoc == std::nullopt) { in getModRefInfo()
564 const MemoryLocation &Loc = OptLoc.value_or(MemoryLocation()); in getModRefInfo()