[PATCH] D23182: [ConstantFolding] Don't create illegal (non-integral) inttoptrs

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 4 16:55:50 PDT 2016


sanjoy created this revision.
sanjoy added reviewers: majnemer, arsenm.
sanjoy added a subscriber: llvm-commits.
Herald added a subscriber: mcrosier.

https://reviews.llvm.org/D23182

Files:
  lib/Analysis/ConstantFolding.cpp
  test/Transforms/InstCombine/non-integral-pointers.ll

Index: test/Transforms/InstCombine/non-integral-pointers.ll
===================================================================
--- /dev/null
+++ test/Transforms/InstCombine/non-integral-pointers.ll
@@ -0,0 +1,20 @@
+; RUN: opt -instcombine -S < %s | FileCheck %s
+
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128-ni:4"
+target triple = "x86_64-unknown-linux-gnu"
+
+define i8 addrspace(4)* @f_0() {
+; CHECK-LABEL: @f_0(
+; CHECK: ret i8 addrspace(4)* getelementptr (i8, i8 addrspace(4)* null, i64 50)
+  %result = getelementptr i8, i8 addrspace(4)* null, i64 50
+  ret i8 addrspace(4)* %result
+}
+
+define i8 addrspace(3)* @f_1() {
+; inttoptr is fine here since addrspace(3) is integral.
+
+; CHECK-LABEL: @f_1(
+; CHECK: ret i8 addrspace(3)* inttoptr (i64 50 to i8 addrspace(3)*)
+  %result = getelementptr i8, i8 addrspace(3)* null, i64 50
+  ret i8 addrspace(3)* %result
+}
Index: lib/Analysis/ConstantFolding.cpp
===================================================================
--- lib/Analysis/ConstantFolding.cpp
+++ lib/Analysis/ConstantFolding.cpp
@@ -828,17 +828,18 @@
     }
   }
 
-  if (Ptr->isNullValue() || BasePtr != 0) {
+  PointerType *PTy = cast<PointerType>(Ptr->getType());
+  if ((Ptr->isNullValue() || BasePtr != 0) &&
+      !DL.isNonIntegralPointerType(PTy)) {
     Constant *C = ConstantInt::get(Ptr->getContext(), Offset + BasePtr);
     return ConstantExpr::getIntToPtr(C, ResTy);
   }
 
   // Otherwise form a regular getelementptr. Recompute the indices so that
   // we eliminate over-indexing of the notional static type array bounds.
   // This makes it easy to determine if the getelementptr is "inbounds".
   // Also, this helps GlobalOpt do SROA on GlobalVariables.
-  Type *Ty = Ptr->getType();
-  assert(Ty->isPointerTy() && "Forming regular GEP of non-pointer type");
+  Type *Ty = PTy;
   SmallVector<Constant *, 32> NewIdxs;
 
   do {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23182.66881.patch
Type: text/x-patch
Size: 1894 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160804/031268c7/attachment.bin>


More information about the llvm-commits mailing list