diff --git a/llvm/lib/Target/AMDGPU/VOP1Instructions.td b/llvm/lib/Target/AMDGPU/VOP1Instructions.td index d81adc4e88c0..ff2f93384072 100644 --- a/llvm/lib/Target/AMDGPU/VOP1Instructions.td +++ b/llvm/lib/Target/AMDGPU/VOP1Instructions.td @@ -30,11 +30,11 @@ class VOP1_SDWAe op, VOPProfile P> : VOP_SDWAe

{ let Inst{31-25} = 0x3f; // encoding } -class VOP1_Pseudo pattern=[]> : +class VOP1_Pseudo pattern=[], bit VOP1Only = 0> : InstSI , VOP , - SIMCInstr , - MnemonicAlias { + SIMCInstr , + MnemonicAlias { let isPseudo = 1; let isCodeGenOnly = 1; @@ -332,6 +332,25 @@ def : Pat< } +def VOP_SWAP_I32 : VOPProfile<[i32, i32, i32, untyped]> { + let Outs32 = (outs VGPR_32:$vdst, VGPR_32:$vdst1); + let Ins32 = (ins VGPR_32:$src0, VGPR_32:$src1); + let Outs64 = Outs32; + let Asm32 = " $vdst, $src0"; + let Asm64 = ""; + let Ins64 = (ins); +} + +let SubtargetPredicate = isGFX9 in { + let Constraints = "$vdst = $src1, $vdst1 = $src0", + DisableEncoding="$vdst1,$src1", + SchedRW = [Write64Bit, Write64Bit] in { +// Never VOP3. Takes as long as 2 v_mov_b32s +def V_SWAP_B32 : VOP1_Pseudo <"v_swap_b32", VOP_SWAP_I32, [], 1>; +} + +} // End SubtargetPredicate = isGFX9 + //===----------------------------------------------------------------------===// // Target //===----------------------------------------------------------------------===// @@ -453,6 +472,14 @@ class VOP1_DPP op, VOP1_Pseudo ps, VOPProfile P = ps.Pfl> : let Inst{31-25} = 0x3f; //encoding } +multiclass VOP1Only_Real_vi op> { + let AssemblerPredicates = [isVI], DecoderNamespace = "VI" in { + def _vi : + VOP1_Real(NAME), SIEncodingFamily.VI>, + VOP1e(NAME).Pfl>; + } +} + multiclass VOP1_Real_vi op> { let AssemblerPredicates = [isVI], DecoderNamespace = "VI" in { def _e32_vi : @@ -547,7 +574,7 @@ defm V_RNDNE_F16 : VOP1_Real_vi <0x47>; defm V_FRACT_F16 : VOP1_Real_vi <0x48>; defm V_SIN_F16 : VOP1_Real_vi <0x49>; defm V_COS_F16 : VOP1_Real_vi <0x4a>; - +defm V_SWAP_B32 : VOP1Only_Real_vi <0x51>; // Copy of v_mov_b32 with $vdst as a use operand for use with VGPR // indexing mode. vdst can't be treated as a def for codegen purposes, diff --git a/llvm/test/MC/AMDGPU/vop1-gfx9-err.s b/llvm/test/MC/AMDGPU/vop1-gfx9-err.s new file mode 100644 index 000000000000..87251e6243cc --- /dev/null +++ b/llvm/test/MC/AMDGPU/vop1-gfx9-err.s @@ -0,0 +1,25 @@ +// RUN: not llvm-mc -arch=amdgcn -mcpu=gfx901 -show-encoding %s 2>&1 | FileCheck -check-prefix=GCN %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s 2>&1 | FileCheck -check-prefix=GCN %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s 2>&1 | FileCheck -check-prefix=GCN %s + +v_swap_b32 v1, 1 +// GCN: :16: error: invalid operand for instruction + +v_swap_b32 v1, s0 +// GCN: :16: error: invalid operand for instruction + +// FIXME: Better error for it requiring VOP1 encoding +v_swap_b32_e64 v1, v2 +// GCN: :1: error: unrecognized instruction mnemonic + +v_swap_b32 v1, v2, v1 +// GCN: :20: error: invalid operand for instruction + +v_swap_b32 v1, v2, v2 +// GCN: :20: error: invalid operand for instruction + +v_swap_b32 v1, v2, v2, v2 +// GCN: :20: error: invalid operand for instruction + +v_swap_codegen_pseudo_b32 v1, v2 +// GCN: :1: error: unrecognized instruction mnemonic diff --git a/llvm/test/MC/AMDGPU/vop1-gfx9.s b/llvm/test/MC/AMDGPU/vop1-gfx9.s new file mode 100644 index 000000000000..8706190aa142 --- /dev/null +++ b/llvm/test/MC/AMDGPU/vop1-gfx9.s @@ -0,0 +1,13 @@ +// RUN: llvm-mc -arch=amdgcn -mcpu=gfx901 -show-encoding %s | FileCheck -check-prefix=GFX9 %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tahiti -show-encoding %s 2>&1 | FileCheck -check-prefix=NOVI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=hawaii -show-encoding %s 2>&1 | FileCheck -check-prefix=NOVI %s +// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga -show-encoding %s 2>&1 | FileCheck -check-prefix=NOVI %s + +v_swap_b32 v1, v2 +// GFX9: v_swap_b32 v1, v2 ; encoding: [0x02,0xa3,0x02,0x7e] +// NOVI: :1: error: instruction not supported on this GPU + +// FIXME: Error for it requiring VOP1 encoding +v_swap_b32_e32 v1, v2 +// GFX9: v_swap_b32 v1, v2 ; encoding: [0x02,0xa3,0x02,0x7e] +// NOVI: :1: error: instruction not supported on this GPU diff --git a/llvm/test/MC/Disassembler/AMDGPU/vop1_gfx9.txt b/llvm/test/MC/Disassembler/AMDGPU/vop1_gfx9.txt new file mode 100644 index 000000000000..370ba632ebca --- /dev/null +++ b/llvm/test/MC/Disassembler/AMDGPU/vop1_gfx9.txt @@ -0,0 +1,4 @@ +# RUN: llvm-mc -arch=amdgcn -mcpu=gfx901 -disassemble -show-encoding < %s | FileCheck %s -check-prefix=GFX9 + +# GFX9: v_swap_b32 v1, v2 ; encoding: [0x02,0xa3,0x02,0x7e] +0x02 0xa3 0x02 0x7e