[llvm-commits] [llvm] r62351 - in /llvm/trunk: lib/Transforms/Scalar/InstructionCombining.cpp test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll

Chris Lattner sabre at nondot.org
Fri Jan 16 12:12:52 PST 2009


Author: lattner
Date: Fri Jan 16 14:12:52 2009
New Revision: 62351

URL: http://llvm.org/viewvc/llvm-project?rev=62351&view=rev
Log:
Fix PR3335 by not turning a store to one address  space into a store to another.

Added:
    llvm/trunk/test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll
Modified:
    llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=62351&r1=62350&r2=62351&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Fri Jan 16 14:12:52 2009
@@ -11169,7 +11169,11 @@
   if (!SrcPTy->isInteger() && !isa<PointerType>(SrcPTy))
     return 0;
   
-  if (IC.getTargetData().getTypeSizeInBits(SrcPTy) !=
+  // If the pointers point into different address spaces or if they point to
+  // values with different sizes, we can't do the transformation.
+  if (SrcTy->getAddressSpace() != 
+        cast<PointerType>(CI->getType())->getAddressSpace() ||
+      IC.getTargetData().getTypeSizeInBits(SrcPTy) !=
       IC.getTargetData().getTypeSizeInBits(DestPTy))
     return 0;
 

Added: llvm/trunk/test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll?rev=62351&view=auto

==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll (added)
+++ llvm/trunk/test/Transforms/InstCombine/2009-01-16-PointerAddrSpace.ll Fri Jan 16 14:12:52 2009
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {store.*addrspace(1)}
+; PR3335
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
+target triple = "i386-apple-darwin9.6"
+
+define i32 @test(i32* %P) nounwind {
+entry:
+  %Q = bitcast i32* %P to i32 addrspace(1)*
+  store i32 0, i32 addrspace(1)* %Q, align 4
+  ret i32 0
+}





More information about the llvm-commits mailing list