@@ -209,12 +209,6 @@ ModRefInfo AAResults::getModRefInfo(const Instruction *I, const CallBase *Call2,
209
209
return ModRefInfo::NoModRef;
210
210
}
211
211
212
- ModRefInfo AAResults::getModRefInfo (const CallBase *Call,
213
- const MemoryLocation &Loc) {
214
- SimpleAAQueryInfo AAQIP (*this );
215
- return getModRefInfo (Call, Loc, AAQIP);
216
- }
217
-
218
212
ModRefInfo AAResults::getModRefInfo (const CallBase *Call,
219
213
const MemoryLocation &Loc,
220
214
AAQueryInfo &AAQI) {
@@ -269,12 +263,6 @@ ModRefInfo AAResults::getModRefInfo(const CallBase *Call,
269
263
return Result;
270
264
}
271
265
272
- ModRefInfo AAResults::getModRefInfo (const CallBase *Call1,
273
- const CallBase *Call2) {
274
- SimpleAAQueryInfo AAQIP (*this );
275
- return getModRefInfo (Call1, Call2, AAQIP);
276
- }
277
-
278
266
ModRefInfo AAResults::getModRefInfo (const CallBase *Call1,
279
267
const CallBase *Call2, AAQueryInfo &AAQI) {
280
268
ModRefInfo Result = ModRefInfo::ModRef;
@@ -476,11 +464,6 @@ raw_ostream &llvm::operator<<(raw_ostream &OS, MemoryEffects ME) {
476
464
// Helper method implementation
477
465
// ===----------------------------------------------------------------------===//
478
466
479
- ModRefInfo AAResults::getModRefInfo (const LoadInst *L,
480
- const MemoryLocation &Loc) {
481
- SimpleAAQueryInfo AAQIP (*this );
482
- return getModRefInfo (L, Loc, AAQIP);
483
- }
484
467
ModRefInfo AAResults::getModRefInfo (const LoadInst *L,
485
468
const MemoryLocation &Loc,
486
469
AAQueryInfo &AAQI) {
@@ -499,11 +482,6 @@ ModRefInfo AAResults::getModRefInfo(const LoadInst *L,
499
482
return ModRefInfo::Ref;
500
483
}
501
484
502
- ModRefInfo AAResults::getModRefInfo (const StoreInst *S,
503
- const MemoryLocation &Loc) {
504
- SimpleAAQueryInfo AAQIP (*this );
505
- return getModRefInfo (S, Loc, AAQIP);
506
- }
507
485
ModRefInfo AAResults::getModRefInfo (const StoreInst *S,
508
486
const MemoryLocation &Loc,
509
487
AAQueryInfo &AAQI) {
@@ -530,12 +508,6 @@ ModRefInfo AAResults::getModRefInfo(const StoreInst *S,
530
508
return ModRefInfo::Mod;
531
509
}
532
510
533
- ModRefInfo AAResults::getModRefInfo (const FenceInst *S,
534
- const MemoryLocation &Loc) {
535
- SimpleAAQueryInfo AAQIP (*this );
536
- return getModRefInfo (S, Loc, AAQIP);
537
- }
538
-
539
511
ModRefInfo AAResults::getModRefInfo (const FenceInst *S,
540
512
const MemoryLocation &Loc,
541
513
AAQueryInfo &AAQI) {
@@ -547,12 +519,6 @@ ModRefInfo AAResults::getModRefInfo(const FenceInst *S,
547
519
return ModRefInfo::ModRef;
548
520
}
549
521
550
- ModRefInfo AAResults::getModRefInfo (const VAArgInst *V,
551
- const MemoryLocation &Loc) {
552
- SimpleAAQueryInfo AAQIP (*this );
553
- return getModRefInfo (V, Loc, AAQIP);
554
- }
555
-
556
522
ModRefInfo AAResults::getModRefInfo (const VAArgInst *V,
557
523
const MemoryLocation &Loc,
558
524
AAQueryInfo &AAQI) {
@@ -572,12 +538,6 @@ ModRefInfo AAResults::getModRefInfo(const VAArgInst *V,
572
538
return ModRefInfo::ModRef;
573
539
}
574
540
575
- ModRefInfo AAResults::getModRefInfo (const CatchPadInst *CatchPad,
576
- const MemoryLocation &Loc) {
577
- SimpleAAQueryInfo AAQIP (*this );
578
- return getModRefInfo (CatchPad, Loc, AAQIP);
579
- }
580
-
581
541
ModRefInfo AAResults::getModRefInfo (const CatchPadInst *CatchPad,
582
542
const MemoryLocation &Loc,
583
543
AAQueryInfo &AAQI) {
@@ -591,12 +551,6 @@ ModRefInfo AAResults::getModRefInfo(const CatchPadInst *CatchPad,
591
551
return ModRefInfo::ModRef;
592
552
}
593
553
594
- ModRefInfo AAResults::getModRefInfo (const CatchReturnInst *CatchRet,
595
- const MemoryLocation &Loc) {
596
- SimpleAAQueryInfo AAQIP (*this );
597
- return getModRefInfo (CatchRet, Loc, AAQIP);
598
- }
599
-
600
554
ModRefInfo AAResults::getModRefInfo (const CatchReturnInst *CatchRet,
601
555
const MemoryLocation &Loc,
602
556
AAQueryInfo &AAQI) {
@@ -610,12 +564,6 @@ ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
610
564
return ModRefInfo::ModRef;
611
565
}
612
566
613
- ModRefInfo AAResults::getModRefInfo (const AtomicCmpXchgInst *CX,
614
- const MemoryLocation &Loc) {
615
- SimpleAAQueryInfo AAQIP (*this );
616
- return getModRefInfo (CX, Loc, AAQIP);
617
- }
618
-
619
567
ModRefInfo AAResults::getModRefInfo (const AtomicCmpXchgInst *CX,
620
568
const MemoryLocation &Loc,
621
569
AAQueryInfo &AAQI) {
@@ -634,12 +582,6 @@ ModRefInfo AAResults::getModRefInfo(const AtomicCmpXchgInst *CX,
634
582
return ModRefInfo::ModRef;
635
583
}
636
584
637
- ModRefInfo AAResults::getModRefInfo (const AtomicRMWInst *RMW,
638
- const MemoryLocation &Loc) {
639
- SimpleAAQueryInfo AAQIP (*this );
640
- return getModRefInfo (RMW, Loc, AAQIP);
641
- }
642
-
643
585
ModRefInfo AAResults::getModRefInfo (const AtomicRMWInst *RMW,
644
586
const MemoryLocation &Loc,
645
587
AAQueryInfo &AAQI) {
0 commit comments