[PATCH] D11879: [PHITransAddr] Don't assume that instruction operands are translatable

David Majnemer via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 9 08:44:18 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL244418: [PHITransAddr] Don't assume that instruction operands are translatable (authored by majnemer).

Changed prior to commit:
  http://reviews.llvm.org/D11879?vs=31604&id=31620#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11879

Files:
  llvm/trunk/lib/Analysis/PHITransAddr.cpp
  llvm/trunk/test/Transforms/GVN/pr24397.ll

Index: llvm/trunk/lib/Analysis/PHITransAddr.cpp
===================================================================
--- llvm/trunk/lib/Analysis/PHITransAddr.cpp
+++ llvm/trunk/lib/Analysis/PHITransAddr.cpp
@@ -374,9 +374,10 @@
   if (!Tmp.PHITranslateValue(CurBB, PredBB, &DT, /*MustDominate=*/true))
     return Tmp.getAddr();
 
-  // If we don't have an available version of this value, it must be an
-  // instruction.
-  Instruction *Inst = cast<Instruction>(InVal);
+  // We don't need to PHI translate values which aren't instructions.
+  auto *Inst = dyn_cast<Instruction>(InVal);
+  if (!Inst)
+    return nullptr;
 
   // Handle cast of PHI translatable value.
   if (CastInst *Cast = dyn_cast<CastInst>(Inst)) {
Index: llvm/trunk/test/Transforms/GVN/pr24397.ll
===================================================================
--- llvm/trunk/test/Transforms/GVN/pr24397.ll
+++ llvm/trunk/test/Transforms/GVN/pr24397.ll
@@ -0,0 +1,18 @@
+; RUN: opt -basicaa -gvn -disable-output < %s
+
+target triple = "x86_64-unknown-linux-gnu"
+
+define i64 @foo(i64** %arrayidx) {
+entry:
+  %p = load i64*, i64** %arrayidx, align 8
+  %cmpnull = icmp eq i64* %p, null
+  br label %BB2
+
+entry2:                                           ; No predecessors!
+  br label %BB2
+
+BB2:                                              ; preds = %entry2, %entry
+  %bc = bitcast i64** %arrayidx to i64*
+  %load = load i64, i64* %bc, align 8
+  ret i64 %load
+}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11879.31620.patch
Type: text/x-patch
Size: 1452 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150809/9de4ad2f/attachment.bin>


More information about the llvm-commits mailing list