mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
AMDGPU/GlobalISel: Mark 32-bit G_OR 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/D35127 llvm-svn: 309165
This commit is contained in:
parent
7351149d5d
commit
fc08a62082
@ -66,6 +66,8 @@ AMDGPULegalizerInfo::AMDGPULegalizerInfo() {
|
||||
setAction({G_LOAD, 1, P1}, Legal);
|
||||
setAction({G_LOAD, 1, P2}, Legal);
|
||||
|
||||
setAction({G_OR, S32}, Legal);
|
||||
|
||||
setAction({G_SELECT, S32}, Legal);
|
||||
setAction({G_SELECT, 1, S1}, Legal);
|
||||
|
||||
|
21
test/CodeGen/AMDGPU/GlobalISel/legalize-or.mir
Normal file
21
test/CodeGen/AMDGPU/GlobalISel/legalize-or.mir
Normal file
@ -0,0 +1,21 @@
|
||||
# RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=fiji -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s
|
||||
|
||||
--- |
|
||||
define void @test_or() { ret void }
|
||||
...
|
||||
---
|
||||
name: test_or
|
||||
registers:
|
||||
- { id: 0, class: _ }
|
||||
- { id: 1, class: _ }
|
||||
- { id: 2, class: _ }
|
||||
body: |
|
||||
bb.0:
|
||||
liveins: %vgpr0, %vgpr1
|
||||
; CHECK-LABEL: name: test_or
|
||||
; CHECK: %2(s32) = G_OR %0, %1
|
||||
|
||||
%0(s32) = COPY %vgpr0
|
||||
%1(s32) = COPY %vgpr1
|
||||
%2(s32) = G_OR %0, %1
|
||||
...
|
Loading…
Reference in New Issue
Block a user