[PATCH] D61812: [AMDGPU] Fixed handling of imemdiate i1 literals
Stanislav Mekhanoshin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 14 09:17:34 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL360689: [AMDGPU] Fixed handling of imemdiate i1 literals (authored by rampitec, committed by ).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D61812?vs=199463&id=199472#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61812/new/
https://reviews.llvm.org/D61812
Files:
llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.cpp
llvm/trunk/test/CodeGen/AMDGPU/xor3-i1-const.ll
Index: llvm/trunk/test/CodeGen/AMDGPU/xor3-i1-const.ll
===================================================================
--- llvm/trunk/test/CodeGen/AMDGPU/xor3-i1-const.ll
+++ llvm/trunk/test/CodeGen/AMDGPU/xor3-i1-const.ll
@@ -0,0 +1,23 @@
+; RUN: llc -march=amdgcn -mcpu=bonaire -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
+
+; This test used to crash
+; GCN-LABEL: {{^}}xor3_i1_const:
+; GCN: s_xor_b64 s[{{[0-9:]+}}], s[{{[0-9:]+}}], -1
+; GCN: s_xor_b64 s[{{[0-9:]+}}], s[{{[0-9:]+}}], -1
+define amdgpu_ps float @xor3_i1_const(float inreg %arg1, i32 inreg %arg2) {
+main_body:
+ %tmp26 = fcmp nsz olt float %arg1, 0.000000e+00
+ %tmp28 = call nsz float @llvm.amdgcn.interp.p2(float undef, float undef, i32 0, i32 0, i32 %arg2)
+ %tmp29 = fcmp nsz olt float %arg1, 5.700000e+01
+ %tmp31 = fcmp nsz olt float %tmp28, 0.000000e+00
+ %.demorgan = and i1 %tmp26, %tmp29
+ %tmp34 = xor i1 %.demorgan, true
+ %tmp35 = and i1 %tmp31, %tmp34
+ %tmp36 = xor i1 %tmp35, true
+ %tmp37 = xor i1 %.demorgan, %tmp36
+ %tmp42 = or i1 %tmp37, %tmp35
+ %tmp43 = select i1 %tmp42, float 1.000000e+00, float 0.000000e+00
+ ret float %tmp43
+}
+
+declare float @llvm.amdgcn.interp.p2(float, float, i32, i32, i32)
Index: llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.cpp
===================================================================
--- llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.cpp
+++ llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.cpp
@@ -2523,6 +2523,9 @@
bool SIInstrInfo::isInlineConstant(const APInt &Imm) const {
switch (Imm.getBitWidth()) {
+ case 1: // This likely will be a condition code mask.
+ return true;
+
case 32:
return AMDGPU::isInlinableLiteral32(Imm.getSExtValue(),
ST.hasInv2PiInlineImm());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61812.199472.patch
Type: text/x-patch
Size: 1782 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190514/7c8a8191/attachment.bin>
More information about the llvm-commits
mailing list