[llvm-branch-commits] [llvm-branch] r85371 - in /llvm/branches/Apple/Leela: lib/CodeGen/MachineFunction.cpp test/CodeGen/X86/constant-pool-sharing.ll

Bill Wendling isanbard at gmail.com
Tue Oct 27 21:35:19 PDT 2009


Author: void
Date: Tue Oct 27 23:35:19 2009
New Revision: 85371

URL: http://llvm.org/viewvc/llvm-project?rev=85371&view=rev
Log:
$ svn merge -c 85359 https://llvm.org/svn/llvm-project/llvm/trunk
--- Merging r85359 into '.':
A    test/CodeGen/X86/constant-pool-sharing.ll
U    lib/CodeGen/MachineFunction.cpp


Added:
    llvm/branches/Apple/Leela/test/CodeGen/X86/constant-pool-sharing.ll
      - copied unchanged from r85359, llvm/trunk/test/CodeGen/X86/constant-pool-sharing.ll
Modified:
    llvm/branches/Apple/Leela/lib/CodeGen/MachineFunction.cpp

Modified: llvm/branches/Apple/Leela/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Leela/lib/CodeGen/MachineFunction.cpp?rev=85371&r1=85370&r2=85371&view=diff

==============================================================================
--- llvm/branches/Apple/Leela/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/branches/Apple/Leela/lib/CodeGen/MachineFunction.cpp Tue Oct 27 23:35:19 2009
@@ -582,6 +582,47 @@
       delete Constants[i].Val.MachineCPVal;
 }
 
+/// CanShareConstantPoolEntry - Test whether the given two constants
+/// can be allocated the same constant pool entry.
+static bool CanShareConstantPoolEntry(Constant *A, Constant *B,
+                                      const TargetData *TD) {
+  // Handle the trivial case quickly.
+  if (A == B) return true;
+
+  // If they have the same type but weren't the same constant, quickly
+  // reject them.
+  if (A->getType() == B->getType()) return false;
+
+  // For now, only support constants with the same size.
+  if (TD->getTypeStoreSize(A->getType()) != TD->getTypeStoreSize(B->getType()))
+    return false;
+
+  // If a floating-point value and an integer value have the same encoding,
+  // they can share a constant-pool entry.
+  if (ConstantFP *AFP = dyn_cast<ConstantFP>(A))
+    if (ConstantInt *BI = dyn_cast<ConstantInt>(B))
+      return AFP->getValueAPF().bitcastToAPInt() == BI->getValue();
+  if (ConstantFP *BFP = dyn_cast<ConstantFP>(B))
+    if (ConstantInt *AI = dyn_cast<ConstantInt>(A))
+      return BFP->getValueAPF().bitcastToAPInt() == AI->getValue();
+
+  // Two vectors can share an entry if each pair of corresponding
+  // elements could.
+  if (ConstantVector *AV = dyn_cast<ConstantVector>(A))
+    if (ConstantVector *BV = dyn_cast<ConstantVector>(B)) {
+      if (AV->getType()->getNumElements() != BV->getType()->getNumElements())
+        return false;
+      for (unsigned i = 0, e = AV->getType()->getNumElements(); i != e; ++i)
+        if (!CanShareConstantPoolEntry(AV->getOperand(i), BV->getOperand(i), TD))
+          return false;
+      return true;
+    }
+
+  // TODO: Handle other cases.
+
+  return false;
+}
+
 /// getConstantPoolIndex - Create a new entry in the constant pool or return
 /// an existing one.  User must specify the log2 of the minimum required
 /// alignment for the object.
@@ -590,14 +631,17 @@
                                                    unsigned Alignment) {
   assert(Alignment && "Alignment must be specified!");
   if (Alignment > PoolAlignment) PoolAlignment = Alignment;
-  
+
   // Check to see if we already have this constant.
   //
   // FIXME, this could be made much more efficient for large constant pools.
   for (unsigned i = 0, e = Constants.size(); i != e; ++i)
-    if (Constants[i].Val.ConstVal == C &&
-        (Constants[i].getAlignment() & (Alignment - 1)) == 0)
+    if (!Constants[i].isMachineConstantPoolEntry() &&
+        CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, TD)) {
+      if ((unsigned)Constants[i].getAlignment() < Alignment)
+        Constants[i].Alignment = Alignment;
       return i;
+    }
   
   Constants.push_back(MachineConstantPoolEntry(C, Alignment));
   return Constants.size()-1;





More information about the llvm-branch-commits mailing list