[PATCH] D64499: [PowerPC][HTM] Fix impossible reg-to-reg copy assert with ttest builtin

Jinsong Ji via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 16 13:24:35 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL366255: [PowerPC][HTM] Fix impossible reg-to-reg copy assert with ttest builtin (authored by jsji, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D64499?vs=208965&id=210159#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64499/new/

https://reviews.llvm.org/D64499

Files:
  llvm/trunk/lib/Target/PowerPC/PPCInstrHTM.td
  llvm/trunk/test/CodeGen/PowerPC/htm-ttest.ll


Index: llvm/trunk/lib/Target/PowerPC/PPCInstrHTM.td
===================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCInstrHTM.td
+++ llvm/trunk/lib/Target/PowerPC/PPCInstrHTM.td
@@ -164,6 +164,8 @@
           (TSR 0)>;
 
 def : Pat<(i64 (int_ppc_ttest)),
-          (RLDICL (i64 (COPY (TABORTWCI 0, (LI 0), 0))), 36, 28)>;
+          (RLDICL (i64 (INSERT_SUBREG (i64 (IMPLICIT_DEF)),
+                                      (TABORTWCI 0, (LI 0), 0), sub_32)),
+                   36, 28)>;
 
 } // [HasHTM]
Index: llvm/trunk/test/CodeGen/PowerPC/htm-ttest.ll
===================================================================
--- llvm/trunk/test/CodeGen/PowerPC/htm-ttest.ll
+++ llvm/trunk/test/CodeGen/PowerPC/htm-ttest.ll
@@ -0,0 +1,30 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -verify-machineinstrs \
+; RUN:     -mcpu=pwr8 -mattr=+htm < %s | FileCheck %s
+
+define dso_local void @main() #0 {
+; CHECK-LABEL: main:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    li 3, 0
+; CHECK-NEXT:    tabortwci. 0, 3, 0
+; CHECK-NEXT:    mfocrf 3, 128
+; CHECK-NEXT:    rldicl 3, 3, 36, 28
+; CHECK-NEXT:    rlwinm. 3, 3, 31, 30, 31
+; CHECK-NEXT:    beqlr+ 0
+; CHECK-NEXT:  # %bb.1:
+  %1 = call i64 @llvm.ppc.ttest() #1
+  %2 = lshr i64 %1, 1
+  %3 = and i64 %2, 3
+  %4 = icmp eq i64 %3, 0
+  br i1 %4, label %5, label %6
+
+5:                                                ; preds = %0
+  ret void
+
+6:                                                ; preds = %0
+  unreachable
+}
+
+; Function Attrs: nounwind
+declare i64 @llvm.ppc.ttest() #1
+


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64499.210159.patch
Type: text/x-patch
Size: 1672 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190716/fb4d387a/attachment.bin>


More information about the llvm-commits mailing list