Home | History | Annotate | Download | only in Analysis

Lines Matching defs:getModRefBehavior

497     /// getModRefBehavior - Return the behavior when calling the given
499 ModRefBehavior getModRefBehavior(ImmutableCallSite CS) override;
501 /// getModRefBehavior - Return the behavior when calling the given function.
503 ModRefBehavior getModRefBehavior(const Function *F) override;
675 /// getModRefBehavior - Return the behavior when calling the given call site.
677 BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
690 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
693 /// getModRefBehavior - Return the behavior when calling the given function.
696 BasicAliasAnalysis::getModRefBehavior(const Function *F) {
719 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);