Home | History | Annotate | Download | only in Analysis

Lines Matching refs:getModRefBehavior

499     /// getModRefBehavior - Return the behavior when calling the given
501 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS);
503 /// getModRefBehavior - Return the behavior when calling the given function.
505 virtual ModRefBehavior getModRefBehavior(const Function *F);
631 /// getModRefBehavior - Return the behavior when calling the given call site.
633 BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
646 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
649 /// getModRefBehavior - Return the behavior when calling the given function.
652 BasicAliasAnalysis::getModRefBehavior(const Function *F) {
671 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);