Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Mod

43 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden);
50 unsigned NoModRef, Mod, Ref, ModRef;
65 NoModRef = Mod = Ref = ModRef = 0;
202 // Mod/ref alias analysis: compare all pairs of calls and values
217 case AliasAnalysis::Mod:
218 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent());
219 ++Mod; break;
232 // Mod/ref alias analysis: compare all pairs of calls
242 case AliasAnalysis::Mod:
243 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent());
244 ++Mod; break;
284 // Display the summary for mod/ref analysis
285 unsigned ModRefSum = NoModRef + Mod + Ref + ModRef;
287 errs() << " Alias Analysis Mod/Ref Evaluator Summary: no mod/ref!\n";
290 errs() << " " << NoModRef << " no mod/ref responses ";
292 errs() << " " << Mod << " mod responses ";
293 PrintPercent(Mod, ModRefSum);
296 errs() << " " << ModRef << " mod & ref responses ";
298 errs() << " Alias Analysis Evaluator Mod/Ref Summary: "
299 << NoModRef*100/ModRefSum << "%/" << Mod*100/ModRefSum << "%/"