|
@@ -1,5 +1,5 @@
|
|
|
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
|
|
|
-# RUN: llc -mtriple=amdgcn-mesa-mesa3d -run-pass=si-optimize-exec-masking-pre-ra %s -o - | FileCheck -check-prefix=GCN %s
|
|
|
+# RUN: llc -mtriple=amdgcn-mesa-mesa3d -run-pass=si-optimize-exec-masking-pre-ra -verify-machineinstrs %s -o - | FileCheck -check-prefix=GCN %s
|
|
|
|
|
|
# Check for regression from assuming an instruction was a copy after
|
|
|
# dropping the opcode check.
|
|
@@ -95,3 +95,26 @@ body: |
|
|
|
$exec = S_OR_B64 $exec, %7, implicit-def $scc
|
|
|
|
|
|
...
|
|
|
+
|
|
|
+# When folding a v_cndmask and a v_cmp in a pattern leading to
|
|
|
+# s_cbranch_vccz, ensure that an undef operand is handled correctly.
|
|
|
+---
|
|
|
+name: cndmask_cmp_cbranch_fold_undef
|
|
|
+tracksRegLiveness: true
|
|
|
+body: |
|
|
|
+ ; GCN-LABEL: name: cndmask_cmp_cbranch_fold_undef
|
|
|
+ ; GCN: bb.0:
|
|
|
+ ; GCN: successors: %bb.1(0x80000000)
|
|
|
+ ; GCN: $vcc = S_ANDN2_B64 $exec, undef %1:sreg_64_xexec, implicit-def $scc
|
|
|
+ ; GCN: S_CBRANCH_VCCZ %bb.1, implicit $vcc
|
|
|
+ ; GCN: bb.1:
|
|
|
+ bb.0:
|
|
|
+
|
|
|
+ %1:vgpr_32 = V_CNDMASK_B32_e64 0, 0, 0, 1, undef %0:sreg_64_xexec, implicit $exec
|
|
|
+ V_CMP_NE_U32_e32 1, %1, implicit-def $vcc, implicit $exec
|
|
|
+ $vcc = S_AND_B64 $exec, $vcc, implicit-def dead $scc
|
|
|
+ S_CBRANCH_VCCZ %bb.1, implicit $vcc
|
|
|
+
|
|
|
+ bb.1:
|
|
|
+
|
|
|
+...
|