Lines Matching defs:AA
62 /// Allow disabling BasicAA from the AA results. This is particularly useful
63 /// when testing to isolate a single AA implementation.
124 for (const auto &AA : AAs) {
125 Result = AA->alias(LocA, LocB, AAQI, CtxI);
159 for (const auto &AA : AAs) {
160 Result &= AA->getModRefInfoMask(Loc, AAQI, IgnoreLocals);
173 for (const auto &AA : AAs) {
174 Result &= AA->getArgModRefInfo(Call, ArgIdx);
216 for (const auto &AA : AAs) {
217 Result &= AA->getModRefInfo(Call, Loc, AAQI);
225 // aggregate set of AA results.
269 for (const auto &AA : AAs) {
270 Result &= AA->getModRefInfo(Call1, Call2, AAQI);
278 // aggregate set of AA results.
376 for (const auto &AA : AAs) {
377 Result &= AA->getMemoryEffects(Call, AAQI);
395 for (const auto &AA : AAs) {
396 Result &= AA->getMemoryEffects(F);
610 /// with a smarter AA in place, this test is just wasting compile time.
733 /// Run the wrapper pass to rebuild an aggregation over known AA passes.
735 /// This is the legacy pass manager's interface to the new-style AA results
742 // NB! This *must* be reset before adding new AA results to the new
768 // If available, run an external AA providing callback over the results as