CFLAA: return MustAlias when pointers p, q are equal, i.e.,
authorNuno Lopes <nunoplopes@sapo.pt>
Wed, 9 Aug 2017 17:02:18 +0000 (17:02 +0000)
committerNuno Lopes <nunoplopes@sapo.pt>
Wed, 9 Aug 2017 17:02:18 +0000 (17:02 +0000)
must-alias(p, sz_p, p, sz_q)  irrespective of access sizes sz_p, sz_q

As discussed a couple of weeks ago on the ML.
This makes the behavior consistent with that of BasicAA.
AA clients already check the obj size themselves and may not require the
obj size to match exactly the access size (e.g., in case of store forwarding)

llvm-svn: 310495

llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp

index fd3fa5f..03ce85a 100644 (file)
@@ -68,7 +68,7 @@ public:
 
   AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
     if (LocA.Ptr == LocB.Ptr)
-      return LocA.Size == LocB.Size ? MustAlias : PartialAlias;
+      return MustAlias;
 
     // Comparisons between global variables and other constants should be
     // handled by BasicAA.
index 0de7ad9..1a39988 100644 (file)
@@ -837,7 +837,7 @@ AliasResult CFLAndersAAResult::query(const MemoryLocation &LocA,
 AliasResult CFLAndersAAResult::alias(const MemoryLocation &LocA,
                                      const MemoryLocation &LocB) {
   if (LocA.Ptr == LocB.Ptr)
-    return LocA.Size == LocB.Size ? MustAlias : PartialAlias;
+    return MustAlias;
 
   // Comparisons between global variables and other constants should be
   // handled by BasicAA.