Lines Matching defs:AA
64 /// Allow disabling BasicAA from the AA results. This is particularly useful
65 /// when testing to isolate a single AA implementation.
126 for (const auto &AA : AAs) {
127 Result = AA->alias(LocA, LocB, AAQI, CtxI);
161 for (const auto &AA : AAs) {
162 Result &= AA->getModRefInfoMask(Loc, AAQI, IgnoreLocals);
175 for (const auto &AA : AAs) {
176 Result &= AA->getArgModRefInfo(Call, ArgIdx);
218 for (const auto &AA : AAs) {
219 Result &= AA->getModRefInfo(Call, Loc, AAQI);
227 // aggregate set of AA results.
271 for (const auto &AA : AAs) {
272 Result &= AA->getModRefInfo(Call1, Call2, AAQI);
280 // aggregate set of AA results.
378 for (const auto &AA : AAs) {
379 Result &= AA->getMemoryEffects(Call, AAQI);
397 for (const auto &AA : AAs) {
398 Result &= AA->getMemoryEffects(F);
648 /// with a smarter AA in place, this test is just wasting compile time.
773 /// Run the wrapper pass to rebuild an aggregation over known AA passes.
775 /// This is the legacy pass manager's interface to the new-style AA results
782 // NB! This *must* be reset before adding new AA results to the new
808 // If available, run an external AA providing callback over the results as