From 111d1b387d739aeab14194c09df9afdf08ddfa8e Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 23 Jun 2017 15:17:17 +0000 Subject: [PATCH] AMDGPU/GlobalISel: Mark 32-bit G_AND as legal Reviewers: arsenm Reviewed By: arsenm Subscribers: kzhuravl, wdng, nhaehnle, yaxunl, rovka, kristof.beyls, igorb, dstuttard, tpr, t-tye, llvm-commits Differential Revision: https://reviews.llvm.org/D34349 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306112 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 1 + .../AMDGPU/GlobalISel/legalize-and.mir | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-and.mir diff --git a/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp b/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp index 58c025faffc..e30d510a350 100644 --- a/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp +++ b/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp @@ -36,6 +36,7 @@ AMDGPULegalizerInfo::AMDGPULegalizerInfo() { const LLT P2 = LLT::pointer(2, 64); setAction({G_ADD, S32}, Legal); + setAction({G_AND, S32}, Legal); setAction({G_BITCAST, V2S16}, Legal); setAction({G_BITCAST, 1, S32}, Legal); diff --git a/test/CodeGen/AMDGPU/GlobalISel/legalize-and.mir b/test/CodeGen/AMDGPU/GlobalISel/legalize-and.mir new file mode 100644 index 00000000000..50ef150510d --- /dev/null +++ b/test/CodeGen/AMDGPU/GlobalISel/legalize-and.mir @@ -0,0 +1,22 @@ +# RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=fiji -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s + +--- | + define void @test_and() { ret void } +... + +--- +name: test_and +registers: + - { id: 0, class: _ } + - { id: 1, class: _ } + - { id: 2, class: _ } +body: | + bb.0: + liveins: %vgpr0, %vgpr1 + ; CHECK-LABEL: name: test_and + ; CHECK: %2(s32) = G_AND %0, %1 + + %0(s32) = COPY %vgpr0 + %1(s32) = COPY %vgpr1 + %2(s32) = G_AND %0, %1 +... -- 2.50.1