[PATCH] D18528: Don't fold double constant to an integer if dest type not integral

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 28 14:17:33 PDT 2016


tejohnson created this revision.
tejohnson added a subscriber: llvm-commits.

I encountered this issue when constant folding during inlining tried to
fold away a bitcast of a double to an x86_mmx, which is not an integral
type. The test case exposes the same issue with a smaller code snippet
during early CSE.

http://reviews.llvm.org/D18528

Files:
  lib/IR/ConstantFold.cpp
  test/CodeGen/X86/mmx-bitcast-fold.ll

Index: test/CodeGen/X86/mmx-bitcast-fold.ll
===================================================================
--- /dev/null
+++ test/CodeGen/X86/mmx-bitcast-fold.ll
@@ -0,0 +1,12 @@
+; RUN: opt -mtriple=x86_64-linux-gnu -early-cse < %s -S | FileCheck %s
+
+; CHECK: @foo(x86_mmx bitcast (double 0.000000e+00 to x86_mmx))
+
+define internal void @bar() {
+entry:
+  %0 = bitcast double 0.0 to x86_mmx
+  %1 = tail call x86_mmx @foo(x86_mmx %0)
+  ret void
+}
+
+declare x86_mmx @foo(x86_mmx)
Index: lib/IR/ConstantFold.cpp
===================================================================
--- lib/IR/ConstantFold.cpp
+++ lib/IR/ConstantFold.cpp
@@ -191,6 +191,10 @@
     if (FP->getType()->isPPC_FP128Ty())
       return nullptr;
 
+    // Make sure dest type is compatible with the folded integer constant.
+    if (!DestTy->isIntegerTy())
+      return nullptr;
+
     return ConstantInt::get(FP->getContext(),
                             FP->getValueAPF().bitcastToAPInt());
   }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D18528.51842.patch
Type: text/x-patch
Size: 987 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160328/fd3feffe/attachment.bin>


More information about the llvm-commits mailing list