• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/

Lines Matching refs:getModRefInfo

150 ModRefInfo AAResults::getModRefInfo(Instruction *I, const CallBase *Call2) {
152 return getModRefInfo(I, Call2, AAQIP);
155 ModRefInfo AAResults::getModRefInfo(Instruction *I, const CallBase *Call2,
160 return getModRefInfo(Call1, Call2, AAQI);
170 ModRefInfo MR = getModRefInfo(Call2, DefLoc, AAQI);
177 ModRefInfo AAResults::getModRefInfo(const CallBase *Call,
180 return getModRefInfo(Call, Loc, AAQIP);
183 ModRefInfo AAResults::getModRefInfo(const CallBase *Call,
189 Result = intersectModRef(Result, AA->getModRefInfo(Call, Loc, AAQI));
245 ModRefInfo AAResults::getModRefInfo(const CallBase *Call1,
248 return getModRefInfo(Call1, Call2, AAQIP);
251 ModRefInfo AAResults::getModRefInfo(const CallBase *Call1,
256 Result = intersectModRef(Result, AA->getModRefInfo(Call1, Call2, AAQI));
316 ModRefInfo ModRefC1 = getModRefInfo(Call1, Call2ArgLoc);
357 ModRefInfo ModRefC2 = getModRefInfo(Call2, Call1ArgLoc);
433 ModRefInfo AAResults::getModRefInfo(const LoadInst *L,
436 return getModRefInfo(L, Loc, AAQIP);
438 ModRefInfo AAResults::getModRefInfo(const LoadInst *L,
458 ModRefInfo AAResults::getModRefInfo(const StoreInst *S,
461 return getModRefInfo(S, Loc, AAQIP);
463 ModRefInfo AAResults::getModRefInfo(const StoreInst *S,
491 ModRefInfo AAResults::getModRefInfo(const FenceInst *S, const MemoryLocation &Loc) {
493 return getModRefInfo(S, Loc, AAQIP);
496 ModRefInfo AAResults::getModRefInfo(const FenceInst *S,
506 ModRefInfo AAResults::getModRefInfo(const VAArgInst *V,
509 return getModRefInfo(V, Loc, AAQIP);
512 ModRefInfo AAResults::getModRefInfo(const VAArgInst *V,
536 ModRefInfo AAResults::getModRefInfo(const CatchPadInst *CatchPad,
539 return getModRefInfo(CatchPad, Loc, AAQIP);
542 ModRefInfo AAResults::getModRefInfo(const CatchPadInst *CatchPad,
556 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
559 return getModRefInfo(CatchRet, Loc, AAQIP);
562 ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
576 ModRefInfo AAResults::getModRefInfo(const AtomicCmpXchgInst *CX,
579 return getModRefInfo(CX, Loc, AAQIP);
582 ModRefInfo AAResults::getModRefInfo(const AtomicCmpXchgInst *CX,
604 ModRefInfo AAResults::getModRefInfo(const AtomicRMWInst *RMW,
607 return getModRefInfo(RMW, Loc, AAQIP);
610 ModRefInfo AAResults::getModRefInfo(const AtomicRMWInst *RMW,
722 if (isModOrRefSet(intersectModRef(getModRefInfo(&*I, Loc), Mode)))