[PATCH] D46151: AMDGPU/GlobalISel: Implement select() for COPY
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 21 17:49:08 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL335315: AMDGPU/GlobalISel: Implement select() for COPY (authored by tstellar, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D46151
Files:
llvm/trunk/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
llvm/trunk/test/CodeGen/AMDGPU/GlobalISel/inst-select-copy.mir
Index: llvm/trunk/test/CodeGen/AMDGPU/GlobalISel/inst-select-copy.mir
===================================================================
--- llvm/trunk/test/CodeGen/AMDGPU/GlobalISel/inst-select-copy.mir
+++ llvm/trunk/test/CodeGen/AMDGPU/GlobalISel/inst-select-copy.mir
@@ -0,0 +1,27 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -march=amdgcn -run-pass=instruction-select -verify-machineinstrs -global-isel %s -o - | FileCheck %s -check-prefixes=GCN
+
+--- |
+ define amdgpu_kernel void @copy(i32 addrspace(1)* %global0) {ret void}
+...
+---
+
+name: copy
+legalized: true
+regBankSelected: true
+
+
+body: |
+ bb.0:
+ liveins: $sgpr2_sgpr3
+ ; GCN-LABEL: name: copy
+ ; GCN: [[COPY:%[0-9]+]]:sreg_64_xexec = COPY $sgpr2_sgpr3
+ ; GCN: [[COPY1:%[0-9]+]]:vreg_64 = COPY [[COPY]]
+ ; GCN: [[DEF:%[0-9]+]]:vgpr_32 = IMPLICIT_DEF
+ ; GCN: FLAT_STORE_DWORD [[COPY1]], [[DEF]], 0, 0, 0, implicit $exec, implicit $flat_scr
+ %0:sgpr(s64) = COPY $sgpr2_sgpr3
+ %1:vgpr(s64) = COPY %0
+ %2:vgpr(s32) = G_IMPLICIT_DEF
+ G_STORE %2, %1 :: (store 4 into %ir.global0)
+...
+---
Index: llvm/trunk/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
===================================================================
--- llvm/trunk/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
+++ llvm/trunk/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
@@ -528,8 +528,11 @@
bool AMDGPUInstructionSelector::select(MachineInstr &I,
CodeGenCoverage &CoverageInfo) const {
- if (!isPreISelGenericOpcode(I.getOpcode()))
+ if (!isPreISelGenericOpcode(I.getOpcode())) {
+ if (I.isCopy())
+ return selectCOPY(I);
return true;
+ }
switch (I.getOpcode()) {
default:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46151.152417.patch
Type: text/x-patch
Size: 1795 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180622/ee7d2807/attachment.bin>
More information about the llvm-commits
mailing list