Home | History | Annotate | Download | only in Analysis

Lines Matching defs:getModRefBehavior

512     /// getModRefBehavior - Return the behavior when calling the given
514 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS);
516 /// getModRefBehavior - Return the behavior when calling the given function.
518 virtual ModRefBehavior getModRefBehavior(const Function *F);
645 /// getModRefBehavior - Return the behavior when calling the given call site.
647 BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
660 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
663 /// getModRefBehavior - Return the behavior when calling the given function.
666 BasicAliasAnalysis::getModRefBehavior(const Function *F) {
685 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);