[PATCH] D141668: [X86] Do not lower INSERT_VECTOR_ELT to vselect for vXf16 without BWI

Phoebe Wang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 13 19:16:35 PST 2023


pengfei updated this revision to Diff 489183.
pengfei marked 2 inline comments as done.
pengfei added a comment.

In D141668#4050934 <https://reviews.llvm.org/D141668#4050934>, @skan wrote:

> You can use `opt --metarenamer` to do the renaming

Thanks for the review! I used `opt -passes=metarenamer,strip llvm/test/CodeGen/X86/pr59980.ll -S -o - --opaque-pointers`. It reduces many manual work :)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141668

Files:
  llvm/lib/Target/X86/X86ISelLowering.cpp
  llvm/test/CodeGen/X86/pr59980.ll


Index: llvm/test/CodeGen/X86/pr59980.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/X86/pr59980.ll
@@ -0,0 +1,38 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-apple-macosx10.15 | FileCheck %s
+
+%0 = type <{ half }>
+%1 = type <{ <16 x half> }>
+
+define void @foo(ptr %0, ptr %1, ptr %2) #0 {
+; CHECK-LABEL: foo:
+; CHECK:       ## %bb.0:
+; CHECK-NEXT:    pushq %rbp
+; CHECK-NEXT:    movq %rsp, %rbp
+; CHECK-NEXT:    andq $-32, %rsp
+; CHECK-NEXT:    subq $64, %rsp
+; CHECK-NEXT:    movl (%rdx), %eax
+; CHECK-NEXT:    andl $15, %eax
+; CHECK-NEXT:    vpinsrw $0, (%rdi), %xmm0, %xmm0
+; CHECK-NEXT:    vmovups (%rsi), %ymm1
+; CHECK-NEXT:    vmovaps %ymm1, (%rsp)
+; CHECK-NEXT:    vpextrw $0, %xmm0, (%rsp,%rax,2)
+; CHECK-NEXT:    vmovaps (%rsp), %ymm0
+; CHECK-NEXT:    vmovups %ymm0, (%rsi)
+; CHECK-NEXT:    movq %rbp, %rsp
+; CHECK-NEXT:    popq %rbp
+; CHECK-NEXT:    vzeroupper
+; CHECK-NEXT:    retq
+  %4 = bitcast ptr %2 to ptr
+  %5 = load i64, ptr %4, align 8
+  %6 = getelementptr inbounds %0, ptr %0, i64 0, i32 0
+  %7 = load half, ptr %6, align 2
+  %8 = getelementptr inbounds %1, ptr %1, i64 0, i32 0
+  %9 = load <16 x half>, ptr %8, align 16
+  %10 = trunc i64 %5 to i32
+  %11 = insertelement <16 x half> %9, half %7, i32 %10
+  store <16 x half> %11, ptr %8, align 16
+  ret void
+}
+
+attributes #0 = { nounwind "target-features"="+f16c" }
Index: llvm/lib/Target/X86/X86ISelLowering.cpp
===================================================================
--- llvm/lib/Target/X86/X86ISelLowering.cpp
+++ llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -20222,7 +20222,7 @@
     // possible vector indices, and FP insertion has less gpr->simd traffic.
     if (!(Subtarget.hasBWI() ||
           (Subtarget.hasAVX512() && EltSizeInBits >= 32) ||
-          (Subtarget.hasSSE41() && VT.isFloatingPoint())))
+          (Subtarget.hasSSE41() && (EltVT == MVT::f32 || EltVT == MVT::f64))))
       return SDValue();
 
     MVT IdxSVT = MVT::getIntegerVT(EltSizeInBits);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141668.489183.patch
Type: text/x-patch
Size: 2118 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230114/3b8ca85e/attachment.bin>


More information about the llvm-commits mailing list