Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Mod

43 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden);
52 unsigned NoModRef, Mod, Ref, ModRef;
67 NoModRef = Mod = Ref = ModRef = 0;
272 // Mod/ref alias analysis: compare all pairs of calls and values
287 case AliasAnalysis::Mod:
288 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent());
289 ++Mod; break;
300 // Mod/ref alias analysis: compare all pairs of calls
310 case AliasAnalysis::Mod:
311 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent());
312 ++Mod; break;
352 // Display the summary for mod/ref analysis
353 unsigned ModRefSum = NoModRef + Mod + Ref + ModRef;
355 errs() << " Alias Analysis Mod/Ref Evaluator Summary: no mod/ref!\n";
358 errs() << " " << NoModRef << " no mod/ref responses ";
360 errs() << " " << Mod << " mod responses ";
361 PrintPercent(Mod, ModRefSum);
364 errs() << " " << ModRef << " mod & ref responses ";
366 errs() << " Alias Analysis Evaluator Mod/Ref Summary: "
367 << NoModRef*100/ModRefSum << "%/" << Mod*100/ModRefSum << "%/"