Home | History | Annotate | Download | only in Analysis

Lines Matching defs:getModRefBehavior

500     /// getModRefBehavior - Return the behavior when calling the given
502 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS);
504 /// getModRefBehavior - Return the behavior when calling the given function.
506 virtual ModRefBehavior getModRefBehavior(const Function *F);
632 /// getModRefBehavior - Return the behavior when calling the given call site.
634 BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
647 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
650 /// getModRefBehavior - Return the behavior when calling the given function.
653 BasicAliasAnalysis::getModRefBehavior(const Function *F) {
672 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);