[PATCH] D135021: [GlobalISel] Combine abs(undef) -> 0

Jessica Paquette via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Oct 1 15:16:51 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8aedb435db7e: [GlobalISel] Combine abs(undef) -> 0 (authored by paquette).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D135021

Files:
  llvm/include/llvm/Target/GlobalISel/Combine.td
  llvm/test/CodeGen/AArch64/GlobalISel/combine-unary-undef-to-zero.mir


Index: llvm/test/CodeGen/AArch64/GlobalISel/combine-unary-undef-to-zero.mir
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/AArch64/GlobalISel/combine-unary-undef-to-zero.mir
@@ -0,0 +1,41 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -mtriple=aarch64-unknown-unknown -run-pass=aarch64-prelegalizer-combiner -verify-machineinstrs -o - %s | FileCheck %s
+
+# Test unary_op(undef) -> 0 combines
+
+...
+---
+name:            abs_scalar
+tracksRegLiveness: true
+body:             |
+  bb.0:
+    liveins: $w0
+    ; CHECK-LABEL: name: abs_scalar
+    ; CHECK: liveins: $w0
+    ; CHECK-NEXT: {{  $}}
+    ; CHECK-NEXT: %abs:_(s32) = G_CONSTANT i32 0
+    ; CHECK-NEXT: $w0 = COPY %abs(s32)
+    ; CHECK-NEXT: RET_ReallyLR implicit $w0
+    %undef:_(s32) = G_IMPLICIT_DEF
+    %abs:_(s32) = G_ABS %undef
+    $w0 = COPY %abs(s32)
+    RET_ReallyLR implicit $w0
+...
+---
+name:            abs_vector
+tracksRegLiveness: true
+body:             |
+  bb.0:
+    liveins: $d0
+    ; CHECK-LABEL: name: abs_vector
+    ; CHECK: liveins: $d0
+    ; CHECK-NEXT: {{  $}}
+    ; CHECK-NEXT: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 0
+    ; CHECK-NEXT: %abs:_(<2 x s32>) = G_BUILD_VECTOR [[C]](s32), [[C]](s32)
+    ; CHECK-NEXT: $d0 = COPY %abs(<2 x s32>)
+    ; CHECK-NEXT: RET_ReallyLR implicit $d0
+    %undef:_(<2 x s32>) = G_IMPLICIT_DEF
+    %abs:_(<2 x s32>) = G_ABS %undef
+    $d0 = COPY %abs(<2 x s32>)
+    RET_ReallyLR implicit $d0
+...
Index: llvm/include/llvm/Target/GlobalISel/Combine.td
===================================================================
--- llvm/include/llvm/Target/GlobalISel/Combine.td
+++ llvm/include/llvm/Target/GlobalISel/Combine.td
@@ -241,6 +241,12 @@
          [{ return Helper.matchOperandIsUndef(*${root}, 2); }]),
   (apply [{ Helper.replaceInstWithUndef(*${root}); }])>;
 
+def unary_undef_to_zero: GICombineRule<
+  (defs root:$root),
+  (match (wip_match_opcode G_ABS):$root,
+         [{ return Helper.matchOperandIsUndef(*${root}, 1); }]),
+  (apply [{ Helper.replaceInstWithConstant(*${root}, 0); }])>;
+
 // Instructions where if any source operand is undef, the instruction can be
 // replaced with undef.
 def propagate_undef_any_op: GICombineRule<
@@ -955,6 +961,7 @@
                                      undef_to_negative_one,
                                      binop_left_undef_to_zero,
                                      binop_right_undef_to_undef,
+                                     unary_undef_to_zero,
                                      propagate_undef_any_op,
                                      propagate_undef_all_ops,
                                      propagate_undef_shuffle_mask,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135021.464526.patch
Type: text/x-patch
Size: 2758 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221001/ecd30719/attachment.bin>


More information about the llvm-commits mailing list