When merging two common GlobalValues, keep the largest.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 9 Sep 2014 15:59:12 +0000 (15:59 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 9 Sep 2014 15:59:12 +0000 (15:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217451 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Linker/LinkModules.cpp
test/Linker/Inputs/linkage2.ll
test/Linker/linkage2.ll

index 87d075fb03ee2658dfe40449ad252615c1771827..65fe30c94f7b81fe3bf4381a24f7366690b1c9aa 100644 (file)
@@ -688,6 +688,9 @@ bool ModuleLinker::shouldLinkFromSource(const GlobalValue &Dest,
   bool SrcIsDeclaration = isDeclaration(Src);
   bool DestIsDeclaration = isDeclaration(Dest);
 
+  // FIXME: Make datalayout mandatory and just use getDataLayout().
+  DataLayout DL(Dest.getParent());
+
   if (SrcIsDeclaration) {
     // If Src is external or if both Src & Dest are external..  Just link the
     // external globals, we aren't adding anything.
@@ -702,14 +705,26 @@ bool ModuleLinker::shouldLinkFromSource(const GlobalValue &Dest,
     // If Dest is external but Src is not:
     return true;
 
+  if (Src.hasCommonLinkage()) {
+    if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage())
+      return true;
+
+    if (!Dest.hasCommonLinkage())
+      return false;
+
+    uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
+    uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
+    return SrcSize > DestSize;
+  }
+
   if (Src.isWeakForLinker()) {
     assert(!Dest.hasExternalWeakLinkage());
     assert(!Dest.hasAvailableExternallyLinkage());
+
     if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage())
       return true;
 
-    return (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) &&
-           Src.hasCommonLinkage();
+    return false;
   }
 
   if (Dest.isWeakForLinker()) {
index 6ecaeb55a0fa27f3b6df9c9e89106c3fc2be27b2..6f320e40e0aed8f00e2160a2b46808de16e0479d 100644 (file)
@@ -1,3 +1,5 @@
 @test1_a = weak global i8 1
 
 @test2_a = external dllimport global i8
+
+@test3_a = common global i16 0
index 99cb22c05c262901489da0137880fc1961261070..283a3b941df8e0a3725de7ffc9987dc428da9f15 100644 (file)
@@ -2,7 +2,10 @@
 ; RUN: llvm-link %p/Inputs/linkage2.ll %s -S | FileCheck %s
 
 @test1_a = common global i8 0
-; CHECK: @test1_a = common global i8 0
+; CHECK-DAG: @test1_a = common global i8 0
 
 @test2_a = global i8 0
-; CHECK: @test2_a = global i8 0
+; CHECK-DAG: @test2_a = global i8 0
+
+@test3_a = common global i8 0
+; CHECK-DAG: @test3_a = common global i16 0