Home | History | Annotate | Download | only in Analysis

Lines Matching defs:getModRefBehavior

472     /// getModRefBehavior - Return the behavior when calling the given
474 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS);
476 /// getModRefBehavior - Return the behavior when calling the given function.
478 virtual ModRefBehavior getModRefBehavior(const Function *F);
605 /// getModRefBehavior - Return the behavior when calling the given call site.
607 BasicAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
620 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min);
623 /// getModRefBehavior - Return the behavior when calling the given function.
626 BasicAliasAnalysis::getModRefBehavior(const Function *F) {
645 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min);