| //===-- DSInstructions.td - DS Instruction Defintions ---------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| class DS_Pseudo <string opName, dag outs, dag ins, string asmOps, list<dag> pattern=[]> : |
| InstSI <outs, ins, "", pattern>, |
| SIMCInstr <opName, SIEncodingFamily.NONE> { |
| |
| let LGKM_CNT = 1; |
| let DS = 1; |
| let Size = 8; |
| let UseNamedOperandTable = 1; |
| |
| // Most instruction load and store data, so set this as the default. |
| let mayLoad = 1; |
| let mayStore = 1; |
| let maybeAtomic = 1; |
| |
| let hasSideEffects = 0; |
| let SchedRW = [WriteLDS]; |
| |
| let isPseudo = 1; |
| let isCodeGenOnly = 1; |
| |
| let AsmMatchConverter = "cvtDS"; |
| |
| string Mnemonic = opName; |
| string AsmOperands = asmOps; |
| |
| // Well these bits a kind of hack because it would be more natural |
| // to test "outs" and "ins" dags for the presence of particular operands |
| bits<1> has_vdst = 1; |
| bits<1> has_addr = 1; |
| bits<1> has_data0 = 1; |
| bits<1> has_data1 = 1; |
| |
| bits<1> has_gws_data0 = 0; // data0 is encoded as addr |
| |
| bits<1> has_offset = 1; // has "offset" that should be split to offset0,1 |
| bits<1> has_offset0 = 1; |
| bits<1> has_offset1 = 1; |
| |
| bits<1> has_gds = 1; |
| bits<1> gdsValue = 0; // if has_gds == 0 set gds to this value |
| |
| bits<1> has_m0_read = 1; |
| |
| let Uses = !if(has_m0_read, [M0, EXEC], [EXEC]); |
| } |
| |
| class DS_Real <DS_Pseudo ds> : |
| InstSI <ds.OutOperandList, ds.InOperandList, ds.Mnemonic # " " # ds.AsmOperands, []>, |
| Enc64 { |
| |
| let isPseudo = 0; |
| let isCodeGenOnly = 0; |
| let DS = 1; |
| let UseNamedOperandTable = 1; |
| |
| // copy relevant pseudo op flags |
| let SubtargetPredicate = ds.SubtargetPredicate; |
| let OtherPredicates = ds.OtherPredicates; |
| let AsmMatchConverter = ds.AsmMatchConverter; |
| |
| // encoding fields |
| bits<8> vdst; |
| bits<1> gds; |
| bits<8> addr; |
| bits<8> data0; |
| bits<8> data1; |
| bits<8> offset0; |
| bits<8> offset1; |
| |
| bits<16> offset; |
| let offset0 = !if(ds.has_offset, offset{7-0}, ?); |
| let offset1 = !if(ds.has_offset, offset{15-8}, ?); |
| } |
| |
| |
| // DS Pseudo instructions |
| |
| class DS_0A1D_NORET<string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs), |
| (ins rc:$data0, offset:$offset, gds:$gds), |
| "$data0$offset$gds"> { |
| |
| let has_addr = 0; |
| let has_data1 = 0; |
| let has_vdst = 0; |
| } |
| |
| class DS_1A1D_NORET<string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs), |
| (ins VGPR_32:$addr, rc:$data0, offset:$offset, gds:$gds), |
| "$addr, $data0$offset$gds"> { |
| |
| let has_data1 = 0; |
| let has_vdst = 0; |
| } |
| |
| multiclass DS_1A1D_NORET_mc<string opName, RegisterClass rc = VGPR_32> { |
| def "" : DS_1A1D_NORET<opName, rc>, |
| AtomicNoRet<opName, 0>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A1D_NORET<opName, rc>, |
| AtomicNoRet<opName#"_gfx9", 0>; |
| } |
| } |
| |
| class DS_1A2D_NORET<string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs), |
| (ins VGPR_32:$addr, rc:$data0, rc:$data1, offset:$offset, gds:$gds), |
| "$addr, $data0, $data1"#"$offset"#"$gds"> { |
| |
| let has_vdst = 0; |
| } |
| |
| multiclass DS_1A2D_NORET_mc<string opName, RegisterClass rc = VGPR_32> { |
| def "" : DS_1A2D_NORET<opName, rc>, |
| AtomicNoRet<opName, 0>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A2D_NORET<opName, rc>, |
| AtomicNoRet<opName#"_gfx9", 0>; |
| } |
| } |
| |
| class DS_1A2D_Off8_NORET <string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs), |
| (ins VGPR_32:$addr, rc:$data0, rc:$data1, |
| offset0:$offset0, offset1:$offset1, gds:$gds), |
| "$addr, $data0, $data1$offset0$offset1$gds"> { |
| |
| let has_vdst = 0; |
| let has_offset = 0; |
| let AsmMatchConverter = "cvtDSOffset01"; |
| } |
| |
| multiclass DS_1A2D_Off8_NORET_mc <string opName, RegisterClass rc = VGPR_32> { |
| def "" : DS_1A2D_Off8_NORET<opName, rc>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A2D_Off8_NORET<opName, rc>; |
| } |
| } |
| |
| class DS_1A1D_RET <string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs rc:$vdst), |
| (ins VGPR_32:$addr, rc:$data0, offset:$offset, gds:$gds), |
| "$vdst, $addr, $data0$offset$gds"> { |
| |
| let hasPostISelHook = 1; |
| let has_data1 = 0; |
| } |
| |
| multiclass DS_1A1D_RET_mc <string opName, RegisterClass rc = VGPR_32, |
| string NoRetOp = ""> { |
| def "" : DS_1A1D_RET<opName, rc>, |
| AtomicNoRet<NoRetOp, !if(!eq(NoRetOp, ""), 0, 1)>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A1D_RET<opName, rc>, |
| AtomicNoRet<!if(!eq(NoRetOp, ""), "", NoRetOp#"_gfx9"), |
| !if(!eq(NoRetOp, ""), 0, 1)>; |
| } |
| } |
| |
| class DS_1A2D_RET<string opName, |
| RegisterClass rc = VGPR_32, |
| RegisterClass src = rc> |
| : DS_Pseudo<opName, |
| (outs rc:$vdst), |
| (ins VGPR_32:$addr, src:$data0, src:$data1, offset:$offset, gds:$gds), |
| "$vdst, $addr, $data0, $data1$offset$gds"> { |
| |
| let hasPostISelHook = 1; |
| } |
| |
| multiclass DS_1A2D_RET_mc<string opName, |
| RegisterClass rc = VGPR_32, |
| string NoRetOp = "", |
| RegisterClass src = rc> { |
| def "" : DS_1A2D_RET<opName, rc, src>, |
| AtomicNoRet<NoRetOp, !if(!eq(NoRetOp, ""), 0, 1)>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A2D_RET<opName, rc, src>, |
| AtomicNoRet<NoRetOp#"_gfx9", !if(!eq(NoRetOp, ""), 0, 1)>; |
| } |
| } |
| |
| class DS_1A2D_Off8_RET<string opName, |
| RegisterClass rc = VGPR_32, |
| RegisterClass src = rc> |
| : DS_Pseudo<opName, |
| (outs rc:$vdst), |
| (ins VGPR_32:$addr, src:$data0, src:$data1, offset0:$offset0, offset1:$offset1, gds:$gds), |
| "$vdst, $addr, $data0, $data1$offset0$offset1$gds"> { |
| |
| let has_offset = 0; |
| let AsmMatchConverter = "cvtDSOffset01"; |
| |
| let hasPostISelHook = 1; |
| } |
| |
| multiclass DS_1A2D_Off8_RET_mc<string opName, |
| RegisterClass rc = VGPR_32, |
| RegisterClass src = rc> { |
| def "" : DS_1A2D_Off8_RET<opName, rc, src>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A2D_Off8_RET<opName, rc, src>; |
| } |
| } |
| |
| |
| class DS_1A_RET<string opName, RegisterClass rc = VGPR_32, bit HasTiedOutput = 0, Operand ofs = offset> |
| : DS_Pseudo<opName, |
| (outs rc:$vdst), |
| !if(HasTiedOutput, |
| (ins VGPR_32:$addr, ofs:$offset, gds:$gds, rc:$vdst_in), |
| (ins VGPR_32:$addr, ofs:$offset, gds:$gds)), |
| "$vdst, $addr$offset$gds"> { |
| let Constraints = !if(HasTiedOutput, "$vdst = $vdst_in", ""); |
| let DisableEncoding = !if(HasTiedOutput, "$vdst_in", ""); |
| let has_data0 = 0; |
| let has_data1 = 0; |
| } |
| |
| multiclass DS_1A_RET_mc<string opName, RegisterClass rc = VGPR_32, bit HasTiedOutput = 0, Operand ofs = offset> { |
| def "" : DS_1A_RET<opName, rc, HasTiedOutput, ofs>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A_RET<opName, rc, HasTiedOutput, ofs>; |
| } |
| } |
| |
| class DS_1A_RET_Tied<string opName, RegisterClass rc = VGPR_32> : |
| DS_1A_RET<opName, rc, 1>; |
| |
| class DS_1A_Off8_RET <string opName, RegisterClass rc = VGPR_32> |
| : DS_Pseudo<opName, |
| (outs rc:$vdst), |
| (ins VGPR_32:$addr, offset0:$offset0, offset1:$offset1, gds:$gds), |
| "$vdst, $addr$offset0$offset1$gds"> { |
| |
| let has_offset = 0; |
| let has_data0 = 0; |
| let has_data1 = 0; |
| let AsmMatchConverter = "cvtDSOffset01"; |
| } |
| |
| multiclass DS_1A_Off8_RET_mc <string opName, RegisterClass rc = VGPR_32> { |
| def "" : DS_1A_Off8_RET<opName, rc>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A_Off8_RET<opName, rc>; |
| } |
| } |
| |
| class DS_1A_RET_GDS <string opName> : DS_Pseudo<opName, |
| (outs VGPR_32:$vdst), |
| (ins VGPR_32:$addr, offset:$offset), |
| "$vdst, $addr$offset gds"> { |
| |
| let has_data0 = 0; |
| let has_data1 = 0; |
| let has_gds = 0; |
| let gdsValue = 1; |
| let AsmMatchConverter = "cvtDSGds"; |
| } |
| |
| class DS_0A_RET <string opName> : DS_Pseudo<opName, |
| (outs VGPR_32:$vdst), |
| (ins offset:$offset, gds:$gds), |
| "$vdst$offset$gds"> { |
| |
| let mayLoad = 1; |
| let mayStore = 1; |
| |
| let has_addr = 0; |
| let has_data0 = 0; |
| let has_data1 = 0; |
| } |
| |
| class DS_1A <string opName> : DS_Pseudo<opName, |
| (outs), |
| (ins VGPR_32:$addr, offset:$offset, gds:$gds), |
| "$addr$offset$gds"> { |
| |
| let mayLoad = 1; |
| let mayStore = 1; |
| |
| let has_vdst = 0; |
| let has_data0 = 0; |
| let has_data1 = 0; |
| } |
| |
| multiclass DS_1A_mc <string opName> { |
| def "" : DS_1A<opName>; |
| |
| let has_m0_read = 0 in { |
| def _gfx9 : DS_1A<opName>; |
| } |
| } |
| |
| |
| class DS_GWS <string opName, dag ins, string asmOps> |
| : DS_Pseudo<opName, (outs), ins, asmOps> { |
| |
| let has_vdst = 0; |
| let has_addr = 0; |
| let has_data0 = 0; |
| let has_data1 = 0; |
| |
| let has_gds = 0; |
| let gdsValue = 1; |
| let AsmMatchConverter = "cvtDSGds"; |
| } |
| |
| class DS_GWS_0D <string opName> |
| : DS_GWS<opName, |
| (ins offset:$offset, gds:$gds), "$offset gds"> { |
| let hasSideEffects = 1; |
| } |
| |
| class DS_GWS_1D <string opName> |
| : DS_GWS<opName, |
| (ins VGPR_32:$data0, offset:$offset, gds:$gds), "$data0$offset gds"> { |
| |
| let has_gws_data0 = 1; |
| let hasSideEffects = 1; |
| } |
| |
| class DS_VOID <string opName> : DS_Pseudo<opName, |
| (outs), (ins), ""> { |
| let mayLoad = 0; |
| let mayStore = 0; |
| let hasSideEffects = 1; |
| let UseNamedOperandTable = 0; |
| let AsmMatchConverter = ""; |
| |
| let has_vdst = 0; |
| let has_addr = 0; |
| let has_data0 = 0; |
| let has_data1 = 0; |
| let has_offset = 0; |
| let has_offset0 = 0; |
| let has_offset1 = 0; |
| let has_gds = 0; |
| } |
| |
| class DS_1A1D_PERMUTE <string opName, SDPatternOperator node = null_frag> |
| : DS_Pseudo<opName, |
| (outs VGPR_32:$vdst), |
| (ins VGPR_32:$addr, VGPR_32:$data0, offset:$offset), |
| "$vdst, $addr, $data0$offset", |
| [(set i32:$vdst, |
| (node (DS1Addr1Offset i32:$addr, i16:$offset), i32:$data0))] > { |
| |
| let mayLoad = 0; |
| let mayStore = 0; |
| let isConvergent = 1; |
| |
| let has_data1 = 0; |
| let has_gds = 0; |
| } |
| |
| defm DS_ADD_U32 : DS_1A1D_NORET_mc<"ds_add_u32">; |
| defm DS_SUB_U32 : DS_1A1D_NORET_mc<"ds_sub_u32">; |
| defm DS_RSUB_U32 : DS_1A1D_NORET_mc<"ds_rsub_u32">; |
| defm DS_INC_U32 : DS_1A1D_NORET_mc<"ds_inc_u32">; |
| defm DS_DEC_U32 : DS_1A1D_NORET_mc<"ds_dec_u32">; |
| defm DS_MIN_I32 : DS_1A1D_NORET_mc<"ds_min_i32">; |
| defm DS_MAX_I32 : DS_1A1D_NORET_mc<"ds_max_i32">; |
| defm DS_MIN_U32 : DS_1A1D_NORET_mc<"ds_min_u32">; |
| defm DS_MAX_U32 : DS_1A1D_NORET_mc<"ds_max_u32">; |
| defm DS_AND_B32 : DS_1A1D_NORET_mc<"ds_and_b32">; |
| defm DS_OR_B32 : DS_1A1D_NORET_mc<"ds_or_b32">; |
| defm DS_XOR_B32 : DS_1A1D_NORET_mc<"ds_xor_b32">; |
| defm DS_ADD_F32 : DS_1A1D_NORET_mc<"ds_add_f32">; |
| defm DS_MIN_F32 : DS_1A1D_NORET_mc<"ds_min_f32">; |
| defm DS_MAX_F32 : DS_1A1D_NORET_mc<"ds_max_f32">; |
| |
| let mayLoad = 0 in { |
| defm DS_WRITE_B8 : DS_1A1D_NORET_mc<"ds_write_b8">; |
| defm DS_WRITE_B16 : DS_1A1D_NORET_mc<"ds_write_b16">; |
| defm DS_WRITE_B32 : DS_1A1D_NORET_mc<"ds_write_b32">; |
| defm DS_WRITE2_B32 : DS_1A2D_Off8_NORET_mc<"ds_write2_b32">; |
| defm DS_WRITE2ST64_B32: DS_1A2D_Off8_NORET_mc<"ds_write2st64_b32">; |
| |
| |
| let has_m0_read = 0 in { |
| |
| let SubtargetPredicate = HasD16LoadStore in { |
| def DS_WRITE_B8_D16_HI : DS_1A1D_NORET<"ds_write_b8_d16_hi">; |
| def DS_WRITE_B16_D16_HI : DS_1A1D_NORET<"ds_write_b16_d16_hi">; |
| } |
| |
| } // End has_m0_read = 0 |
| |
| let SubtargetPredicate = HasDSAddTid in { |
| def DS_WRITE_ADDTID_B32 : DS_0A1D_NORET<"ds_write_addtid_b32">; |
| } |
| |
| } // End mayLoad = 0 |
| |
| defm DS_MSKOR_B32 : DS_1A2D_NORET_mc<"ds_mskor_b32">; |
| defm DS_CMPST_B32 : DS_1A2D_NORET_mc<"ds_cmpst_b32">; |
| defm DS_CMPST_F32 : DS_1A2D_NORET_mc<"ds_cmpst_f32">; |
| |
| defm DS_ADD_U64 : DS_1A1D_NORET_mc<"ds_add_u64", VReg_64>; |
| defm DS_SUB_U64 : DS_1A1D_NORET_mc<"ds_sub_u64", VReg_64>; |
| defm DS_RSUB_U64 : DS_1A1D_NORET_mc<"ds_rsub_u64", VReg_64>; |
| defm DS_INC_U64 : DS_1A1D_NORET_mc<"ds_inc_u64", VReg_64>; |
| defm DS_DEC_U64 : DS_1A1D_NORET_mc<"ds_dec_u64", VReg_64>; |
| defm DS_MIN_I64 : DS_1A1D_NORET_mc<"ds_min_i64", VReg_64>; |
| defm DS_MAX_I64 : DS_1A1D_NORET_mc<"ds_max_i64", VReg_64>; |
| defm DS_MIN_U64 : DS_1A1D_NORET_mc<"ds_min_u64", VReg_64>; |
| defm DS_MAX_U64 : DS_1A1D_NORET_mc<"ds_max_u64", VReg_64>; |
| defm DS_AND_B64 : DS_1A1D_NORET_mc<"ds_and_b64", VReg_64>; |
| defm DS_OR_B64 : DS_1A1D_NORET_mc<"ds_or_b64", VReg_64>; |
| defm DS_XOR_B64 : DS_1A1D_NORET_mc<"ds_xor_b64", VReg_64>; |
| defm DS_MSKOR_B64 : DS_1A2D_NORET_mc<"ds_mskor_b64", VReg_64>; |
| let mayLoad = 0 in { |
| defm DS_WRITE_B64 : DS_1A1D_NORET_mc<"ds_write_b64", VReg_64>; |
| defm DS_WRITE2_B64 : DS_1A2D_Off8_NORET_mc<"ds_write2_b64", VReg_64>; |
| defm DS_WRITE2ST64_B64: DS_1A2D_Off8_NORET_mc<"ds_write2st64_b64", VReg_64>; |
| } |
| defm DS_CMPST_B64 : DS_1A2D_NORET_mc<"ds_cmpst_b64", VReg_64>; |
| defm DS_CMPST_F64 : DS_1A2D_NORET_mc<"ds_cmpst_f64", VReg_64>; |
| defm DS_MIN_F64 : DS_1A1D_NORET_mc<"ds_min_f64", VReg_64>; |
| defm DS_MAX_F64 : DS_1A1D_NORET_mc<"ds_max_f64", VReg_64>; |
| |
| defm DS_ADD_RTN_U32 : DS_1A1D_RET_mc<"ds_add_rtn_u32", VGPR_32, "ds_add_u32">; |
| defm DS_ADD_RTN_F32 : DS_1A1D_RET_mc<"ds_add_rtn_f32", VGPR_32, "ds_add_f32">; |
| defm DS_SUB_RTN_U32 : DS_1A1D_RET_mc<"ds_sub_rtn_u32", VGPR_32, "ds_sub_u32">; |
| defm DS_RSUB_RTN_U32 : DS_1A1D_RET_mc<"ds_rsub_rtn_u32", VGPR_32, "ds_rsub_u32">; |
| defm DS_INC_RTN_U32 : DS_1A1D_RET_mc<"ds_inc_rtn_u32", VGPR_32, "ds_inc_u32">; |
| defm DS_DEC_RTN_U32 : DS_1A1D_RET_mc<"ds_dec_rtn_u32", VGPR_32, "ds_dec_u32">; |
| defm DS_MIN_RTN_I32 : DS_1A1D_RET_mc<"ds_min_rtn_i32", VGPR_32, "ds_min_i32">; |
| defm DS_MAX_RTN_I32 : DS_1A1D_RET_mc<"ds_max_rtn_i32", VGPR_32, "ds_max_i32">; |
| defm DS_MIN_RTN_U32 : DS_1A1D_RET_mc<"ds_min_rtn_u32", VGPR_32, "ds_min_u32">; |
| defm DS_MAX_RTN_U32 : DS_1A1D_RET_mc<"ds_max_rtn_u32", VGPR_32, "ds_max_u32">; |
| defm DS_AND_RTN_B32 : DS_1A1D_RET_mc<"ds_and_rtn_b32", VGPR_32, "ds_and_b32">; |
| defm DS_OR_RTN_B32 : DS_1A1D_RET_mc<"ds_or_rtn_b32", VGPR_32, "ds_or_b32">; |
| defm DS_XOR_RTN_B32 : DS_1A1D_RET_mc<"ds_xor_rtn_b32", VGPR_32, "ds_xor_b32">; |
| defm DS_MSKOR_RTN_B32 : DS_1A2D_RET_mc<"ds_mskor_rtn_b32", VGPR_32, "ds_mskor_b32">; |
| defm DS_CMPST_RTN_B32 : DS_1A2D_RET_mc<"ds_cmpst_rtn_b32", VGPR_32, "ds_cmpst_b32">; |
| defm DS_CMPST_RTN_F32 : DS_1A2D_RET_mc<"ds_cmpst_rtn_f32", VGPR_32, "ds_cmpst_f32">; |
| defm DS_MIN_RTN_F32 : DS_1A1D_RET_mc<"ds_min_rtn_f32", VGPR_32, "ds_min_f32">; |
| defm DS_MAX_RTN_F32 : DS_1A1D_RET_mc<"ds_max_rtn_f32", VGPR_32, "ds_max_f32">; |
| |
| defm DS_WRXCHG_RTN_B32 : DS_1A1D_RET_mc<"ds_wrxchg_rtn_b32">; |
| defm DS_WRXCHG2_RTN_B32 : DS_1A2D_Off8_RET_mc<"ds_wrxchg2_rtn_b32", VReg_64, VGPR_32>; |
| defm DS_WRXCHG2ST64_RTN_B32 : DS_1A2D_Off8_RET_mc<"ds_wrxchg2st64_rtn_b32", VReg_64, VGPR_32>; |
| |
| defm DS_ADD_RTN_U64 : DS_1A1D_RET_mc<"ds_add_rtn_u64", VReg_64, "ds_add_u64">; |
| defm DS_SUB_RTN_U64 : DS_1A1D_RET_mc<"ds_sub_rtn_u64", VReg_64, "ds_sub_u64">; |
| defm DS_RSUB_RTN_U64 : DS_1A1D_RET_mc<"ds_rsub_rtn_u64", VReg_64, "ds_rsub_u64">; |
| defm DS_INC_RTN_U64 : DS_1A1D_RET_mc<"ds_inc_rtn_u64", VReg_64, "ds_inc_u64">; |
| defm DS_DEC_RTN_U64 : DS_1A1D_RET_mc<"ds_dec_rtn_u64", VReg_64, "ds_dec_u64">; |
| defm DS_MIN_RTN_I64 : DS_1A1D_RET_mc<"ds_min_rtn_i64", VReg_64, "ds_min_i64">; |
| defm DS_MAX_RTN_I64 : DS_1A1D_RET_mc<"ds_max_rtn_i64", VReg_64, "ds_max_i64">; |
| defm DS_MIN_RTN_U64 : DS_1A1D_RET_mc<"ds_min_rtn_u64", VReg_64, "ds_min_u64">; |
| defm DS_MAX_RTN_U64 : DS_1A1D_RET_mc<"ds_max_rtn_u64", VReg_64, "ds_max_u64">; |
| defm DS_AND_RTN_B64 : DS_1A1D_RET_mc<"ds_and_rtn_b64", VReg_64, "ds_and_b64">; |
| defm DS_OR_RTN_B64 : DS_1A1D_RET_mc<"ds_or_rtn_b64", VReg_64, "ds_or_b64">; |
| defm DS_XOR_RTN_B64 : DS_1A1D_RET_mc<"ds_xor_rtn_b64", VReg_64, "ds_xor_b64">; |
| defm DS_MSKOR_RTN_B64 : DS_1A2D_RET_mc<"ds_mskor_rtn_b64", VReg_64, "ds_mskor_b64">; |
| defm DS_CMPST_RTN_B64 : DS_1A2D_RET_mc<"ds_cmpst_rtn_b64", VReg_64, "ds_cmpst_b64">; |
| defm DS_CMPST_RTN_F64 : DS_1A2D_RET_mc<"ds_cmpst_rtn_f64", VReg_64, "ds_cmpst_f64">; |
| defm DS_MIN_RTN_F64 : DS_1A1D_RET_mc<"ds_min_rtn_f64", VReg_64, "ds_min_f64">; |
| defm DS_MAX_RTN_F64 : DS_1A1D_RET_mc<"ds_max_rtn_f64", VReg_64, "ds_max_f64">; |
| |
| defm DS_WRXCHG_RTN_B64 : DS_1A1D_RET_mc<"ds_wrxchg_rtn_b64", VReg_64>; |
| defm DS_WRXCHG2_RTN_B64 : DS_1A2D_Off8_RET_mc<"ds_wrxchg2_rtn_b64", VReg_128, VReg_64>; |
| defm DS_WRXCHG2ST64_RTN_B64 : DS_1A2D_Off8_RET_mc<"ds_wrxchg2st64_rtn_b64", VReg_128, VReg_64>; |
| |
| let isConvergent = 1, usesCustomInserter = 1 in { |
| def DS_GWS_INIT : DS_GWS_1D<"ds_gws_init"> { |
| let mayLoad = 0; |
| } |
| def DS_GWS_SEMA_V : DS_GWS_0D<"ds_gws_sema_v">; |
| def DS_GWS_SEMA_BR : DS_GWS_1D<"ds_gws_sema_br">; |
| def DS_GWS_SEMA_P : DS_GWS_0D<"ds_gws_sema_p">; |
| def DS_GWS_BARRIER : DS_GWS_1D<"ds_gws_barrier">; |
| } |
| |
| def DS_ADD_SRC2_U32 : DS_1A<"ds_add_src2_u32">; |
| def DS_SUB_SRC2_U32 : DS_1A<"ds_sub_src2_u32">; |
| def DS_RSUB_SRC2_U32 : DS_1A<"ds_rsub_src2_u32">; |
| def DS_INC_SRC2_U32 : DS_1A<"ds_inc_src2_u32">; |
| def DS_DEC_SRC2_U32 : DS_1A<"ds_dec_src2_u32">; |
| def DS_MIN_SRC2_I32 : DS_1A<"ds_min_src2_i32">; |
| def DS_MAX_SRC2_I32 : DS_1A<"ds_max_src2_i32">; |
| def DS_MIN_SRC2_U32 : DS_1A<"ds_min_src2_u32">; |
| def DS_MAX_SRC2_U32 : DS_1A<"ds_max_src2_u32">; |
| def DS_AND_SRC2_B32 : DS_1A<"ds_and_src2_b32">; |
| def DS_OR_SRC2_B32 : DS_1A<"ds_or_src2_b32">; |
| def DS_XOR_SRC2_B32 : DS_1A<"ds_xor_src2_b32">; |
| def DS_MIN_SRC2_F32 : DS_1A<"ds_min_src2_f32">; |
| def DS_MAX_SRC2_F32 : DS_1A<"ds_max_src2_f32">; |
| |
| def DS_ADD_SRC2_U64 : DS_1A<"ds_add_src2_u64">; |
| def DS_SUB_SRC2_U64 : DS_1A<"ds_sub_src2_u64">; |
| def DS_RSUB_SRC2_U64 : DS_1A<"ds_rsub_src2_u64">; |
| def DS_INC_SRC2_U64 : DS_1A<"ds_inc_src2_u64">; |
| def DS_DEC_SRC2_U64 : DS_1A<"ds_dec_src2_u64">; |
| def DS_MIN_SRC2_I64 : DS_1A<"ds_min_src2_i64">; |
| def DS_MAX_SRC2_I64 : DS_1A<"ds_max_src2_i64">; |
| def DS_MIN_SRC2_U64 : DS_1A<"ds_min_src2_u64">; |
| def DS_MAX_SRC2_U64 : DS_1A<"ds_max_src2_u64">; |
| def DS_AND_SRC2_B64 : DS_1A<"ds_and_src2_b64">; |
| def DS_OR_SRC2_B64 : DS_1A<"ds_or_src2_b64">; |
| def DS_XOR_SRC2_B64 : DS_1A<"ds_xor_src2_b64">; |
| def DS_MIN_SRC2_F64 : DS_1A<"ds_min_src2_f64">; |
| def DS_MAX_SRC2_F64 : DS_1A<"ds_max_src2_f64">; |
| |
| def DS_WRITE_SRC2_B32 : DS_1A<"ds_write_src2_b32">; |
| def DS_WRITE_SRC2_B64 : DS_1A<"ds_write_src2_b64">; |
| |
| let Uses = [EXEC], mayLoad = 0, mayStore = 0, isConvergent = 1 in { |
| def DS_SWIZZLE_B32 : DS_1A_RET <"ds_swizzle_b32", VGPR_32, 0, SwizzleImm>; |
| } |
| |
| let mayStore = 0 in { |
| defm DS_READ_I8 : DS_1A_RET_mc<"ds_read_i8">; |
| defm DS_READ_U8 : DS_1A_RET_mc<"ds_read_u8">; |
| defm DS_READ_I16 : DS_1A_RET_mc<"ds_read_i16">; |
| defm DS_READ_U16 : DS_1A_RET_mc<"ds_read_u16">; |
| defm DS_READ_B32 : DS_1A_RET_mc<"ds_read_b32">; |
| defm DS_READ_B64 : DS_1A_RET_mc<"ds_read_b64", VReg_64>; |
| |
| defm DS_READ2_B32 : DS_1A_Off8_RET_mc<"ds_read2_b32", VReg_64>; |
| defm DS_READ2ST64_B32: DS_1A_Off8_RET_mc<"ds_read2st64_b32", VReg_64>; |
| |
| defm DS_READ2_B64 : DS_1A_Off8_RET_mc<"ds_read2_b64", VReg_128>; |
| defm DS_READ2ST64_B64: DS_1A_Off8_RET_mc<"ds_read2st64_b64", VReg_128>; |
| |
| let has_m0_read = 0 in { |
| let SubtargetPredicate = HasD16LoadStore in { |
| def DS_READ_U8_D16 : DS_1A_RET_Tied<"ds_read_u8_d16">; |
| def DS_READ_U8_D16_HI : DS_1A_RET_Tied<"ds_read_u8_d16_hi">; |
| def DS_READ_I8_D16 : DS_1A_RET_Tied<"ds_read_i8_d16">; |
| def DS_READ_I8_D16_HI : DS_1A_RET_Tied<"ds_read_i8_d16_hi">; |
| def DS_READ_U16_D16 : DS_1A_RET_Tied<"ds_read_u16_d16">; |
| def DS_READ_U16_D16_HI : DS_1A_RET_Tied<"ds_read_u16_d16_hi">; |
| } |
| } // End has_m0_read = 0 |
| |
| let SubtargetPredicate = HasDSAddTid in { |
| def DS_READ_ADDTID_B32 : DS_0A_RET<"ds_read_addtid_b32">; |
| } |
| |
| } // End mayStore = 0 |
| |
| def DS_CONSUME : DS_0A_RET<"ds_consume">; |
| def DS_APPEND : DS_0A_RET<"ds_append">; |
| def DS_ORDERED_COUNT : DS_1A_RET_GDS<"ds_ordered_count">; |
| |
| //===----------------------------------------------------------------------===// |
| // Instruction definitions for CI and newer. |
| //===----------------------------------------------------------------------===// |
| |
| let SubtargetPredicate = isGFX7Plus in { |
| |
| defm DS_WRAP_RTN_B32 : DS_1A2D_RET_mc<"ds_wrap_rtn_b32", VGPR_32>; |
| defm DS_CONDXCHG32_RTN_B64 : DS_1A1D_RET_mc<"ds_condxchg32_rtn_b64", VReg_64>; |
| |
| let isConvergent = 1, usesCustomInserter = 1 in { |
| def DS_GWS_SEMA_RELEASE_ALL : DS_GWS_0D<"ds_gws_sema_release_all">; |
| } |
| |
| let mayStore = 0 in { |
| defm DS_READ_B96 : DS_1A_RET_mc<"ds_read_b96", VReg_96>; |
| defm DS_READ_B128: DS_1A_RET_mc<"ds_read_b128", VReg_128>; |
| } // End mayStore = 0 |
| |
| let mayLoad = 0 in { |
| defm DS_WRITE_B96 : DS_1A1D_NORET_mc<"ds_write_b96", VReg_96>; |
| defm DS_WRITE_B128 : DS_1A1D_NORET_mc<"ds_write_b128", VReg_128>; |
| } // End mayLoad = 0 |
| |
| def DS_NOP : DS_VOID<"ds_nop">; |
| |
| } // let SubtargetPredicate = isGFX7Plus |
| |
| //===----------------------------------------------------------------------===// |
| // Instruction definitions for VI and newer. |
| //===----------------------------------------------------------------------===// |
| |
| let SubtargetPredicate = isGFX8Plus in { |
| |
| let Uses = [EXEC] in { |
| def DS_PERMUTE_B32 : DS_1A1D_PERMUTE <"ds_permute_b32", |
| int_amdgcn_ds_permute>; |
| def DS_BPERMUTE_B32 : DS_1A1D_PERMUTE <"ds_bpermute_b32", |
| int_amdgcn_ds_bpermute>; |
| } |
| |
| def DS_ADD_SRC2_F32 : DS_1A<"ds_add_src2_f32">; |
| |
| } // let SubtargetPredicate = isGFX8Plus |
| |
| //===----------------------------------------------------------------------===// |
| // DS Patterns |
| //===----------------------------------------------------------------------===// |
| |
| def : GCNPat < |
| (int_amdgcn_ds_swizzle i32:$src, timm:$offset16), |
| (DS_SWIZZLE_B32 VGPR_32:$src, (as_i16timm $offset16), (i1 0)) |
| >; |
| |
| class DSReadPat <DS_Pseudo inst, ValueType vt, PatFrag frag, int gds=0> : GCNPat < |
| (vt (frag (DS1Addr1Offset i32:$ptr, i16:$offset))), |
| (inst $ptr, offset:$offset, (i1 gds)) |
| >; |
| |
| multiclass DSReadPat_mc<DS_Pseudo inst, ValueType vt, string frag> { |
| |
| let OtherPredicates = [LDSRequiresM0Init] in { |
| def : DSReadPat<inst, vt, !cast<PatFrag>(frag#"_m0")>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DSReadPat<!cast<DS_Pseudo>(!cast<string>(inst)#"_gfx9"), vt, !cast<PatFrag>(frag)>; |
| } |
| } |
| |
| class DSReadPat_D16 <DS_Pseudo inst, PatFrag frag, ValueType vt> : GCNPat < |
| (frag (DS1Addr1Offset i32:$ptr, i16:$offset), vt:$in), |
| (inst $ptr, offset:$offset, (i1 0), $in) |
| >; |
| |
| defm : DSReadPat_mc <DS_READ_I8, i32, "sextloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_I8, i16, "sextloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_U8, i32, "extloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_U8, i32, "zextloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_U8, i16, "extloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_U8, i16, "zextloadi8_local">; |
| defm : DSReadPat_mc <DS_READ_I16, i32, "sextloadi16_local">; |
| defm : DSReadPat_mc <DS_READ_I16, i32, "sextloadi16_local">; |
| defm : DSReadPat_mc <DS_READ_U16, i32, "extloadi16_local">; |
| defm : DSReadPat_mc <DS_READ_U16, i32, "zextloadi16_local">; |
| defm : DSReadPat_mc <DS_READ_U16, i16, "load_local">; |
| |
| foreach vt = Reg32Types.types in { |
| defm : DSReadPat_mc <DS_READ_B32, vt, "load_local">; |
| } |
| |
| defm : DSReadPat_mc <DS_READ_B32, i32, "atomic_load_32_local">; |
| defm : DSReadPat_mc <DS_READ_B64, i64, "atomic_load_64_local">; |
| |
| let AddedComplexity = 100 in { |
| |
| foreach vt = VReg_64.RegTypes in { |
| defm : DSReadPat_mc <DS_READ_B64, vt, "load_align8_local">; |
| } |
| |
| defm : DSReadPat_mc <DS_READ_B128, v4i32, "load_align16_local">; |
| |
| } // End AddedComplexity = 100 |
| |
| let OtherPredicates = [D16PreservesUnusedBits] in { |
| def : DSReadPat_D16<DS_READ_U16_D16_HI, load_d16_hi_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_U16_D16_HI, load_d16_hi_local, v2f16>; |
| def : DSReadPat_D16<DS_READ_U8_D16_HI, az_extloadi8_d16_hi_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_U8_D16_HI, az_extloadi8_d16_hi_local, v2f16>; |
| def : DSReadPat_D16<DS_READ_I8_D16_HI, sextloadi8_d16_hi_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_I8_D16_HI, sextloadi8_d16_hi_local, v2f16>; |
| |
| def : DSReadPat_D16<DS_READ_U16_D16, load_d16_lo_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_U16_D16, load_d16_lo_local, v2f16>; |
| def : DSReadPat_D16<DS_READ_U8_D16, az_extloadi8_d16_lo_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_U8_D16, az_extloadi8_d16_lo_local, v2f16>; |
| def : DSReadPat_D16<DS_READ_I8_D16, sextloadi8_d16_lo_local, v2i16>; |
| def : DSReadPat_D16<DS_READ_I8_D16, sextloadi8_d16_lo_local, v2f16>; |
| } |
| |
| class DSWritePat <DS_Pseudo inst, ValueType vt, PatFrag frag, int gds=0> : GCNPat < |
| (frag vt:$value, (DS1Addr1Offset i32:$ptr, i16:$offset)), |
| (inst $ptr, getVregSrcForVT<vt>.ret:$value, offset:$offset, (i1 gds)) |
| >; |
| |
| multiclass DSWritePat_mc <DS_Pseudo inst, ValueType vt, string frag> { |
| let OtherPredicates = [LDSRequiresM0Init] in { |
| def : DSWritePat<inst, vt, !cast<PatFrag>(frag#"_m0")>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DSWritePat<!cast<DS_Pseudo>(!cast<string>(inst)#"_gfx9"), vt, !cast<PatFrag>(frag)>; |
| } |
| } |
| |
| // Irritatingly, atomic_store reverses the order of operands from a |
| // normal store. |
| class DSAtomicWritePat <DS_Pseudo inst, ValueType vt, PatFrag frag> : GCNPat < |
| (frag (DS1Addr1Offset i32:$ptr, i16:$offset), vt:$value), |
| (inst $ptr, $value, offset:$offset, (i1 0)) |
| >; |
| |
| multiclass DSAtomicWritePat_mc <DS_Pseudo inst, ValueType vt, string frag> { |
| let OtherPredicates = [LDSRequiresM0Init] in { |
| def : DSAtomicWritePat<inst, vt, !cast<PatFrag>(frag#"_m0")>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DSAtomicWritePat<!cast<DS_Pseudo>(!cast<string>(inst)#"_gfx9"), vt, !cast<PatFrag>(frag)>; |
| } |
| } |
| |
| defm : DSWritePat_mc <DS_WRITE_B8, i32, "truncstorei8_local">; |
| defm : DSWritePat_mc <DS_WRITE_B16, i32, "truncstorei16_local">; |
| defm : DSWritePat_mc <DS_WRITE_B8, i16, "truncstorei8_local">; |
| defm : DSWritePat_mc <DS_WRITE_B16, i16, "store_local">; |
| |
| foreach vt = VGPR_32.RegTypes in { |
| defm : DSWritePat_mc <DS_WRITE_B32, vt, "store_local">; |
| } |
| |
| defm : DSAtomicWritePat_mc <DS_WRITE_B32, i32, "atomic_store_local_32">; |
| defm : DSAtomicWritePat_mc <DS_WRITE_B64, i64, "atomic_store_local_64">; |
| |
| let OtherPredicates = [D16PreservesUnusedBits] in { |
| def : DSWritePat <DS_WRITE_B16_D16_HI, i32, store_hi16_local>; |
| def : DSWritePat <DS_WRITE_B8_D16_HI, i32, truncstorei8_hi16_local>; |
| } |
| |
| |
| class DS64Bit4ByteAlignedReadPat<DS_Pseudo inst, PatFrag frag> : GCNPat < |
| (v2i32 (frag (DS64Bit4ByteAligned i32:$ptr, i8:$offset0, i8:$offset1))), |
| (inst $ptr, $offset0, $offset1, (i1 0)) |
| >; |
| |
| class DS64Bit4ByteAlignedWritePat<DS_Pseudo inst, PatFrag frag> : GCNPat< |
| (frag v2i32:$value, (DS64Bit4ByteAligned i32:$ptr, i8:$offset0, i8:$offset1)), |
| (inst $ptr, (i32 (EXTRACT_SUBREG $value, sub0)), |
| (i32 (EXTRACT_SUBREG $value, sub1)), $offset0, $offset1, |
| (i1 0)) |
| >; |
| |
| // v2i32 loads are split into i32 loads on SI during lowering, due to a bug |
| // related to bounds checking. |
| let OtherPredicates = [LDSRequiresM0Init, isGFX7Plus] in { |
| def : DS64Bit4ByteAlignedReadPat<DS_READ2_B32, load_local_m0>; |
| def : DS64Bit4ByteAlignedWritePat<DS_WRITE2_B32, store_local_m0>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DS64Bit4ByteAlignedReadPat<DS_READ2_B32_gfx9, load_local>; |
| def : DS64Bit4ByteAlignedWritePat<DS_WRITE2_B32_gfx9, store_local>; |
| } |
| |
| |
| let AddedComplexity = 100 in { |
| |
| foreach vt = VReg_64.RegTypes in { |
| defm : DSWritePat_mc <DS_WRITE_B64, vt, "store_align8_local">; |
| } |
| |
| defm : DSWritePat_mc <DS_WRITE_B128, v4i32, "store_align16_local">; |
| |
| } // End AddedComplexity = 100 |
| class DSAtomicRetPat<DS_Pseudo inst, ValueType vt, PatFrag frag, bit gds=0> : GCNPat < |
| (frag (DS1Addr1Offset i32:$ptr, i16:$offset), vt:$value), |
| (inst $ptr, getVregSrcForVT<vt>.ret:$value, offset:$offset, (i1 gds)) |
| >; |
| |
| multiclass DSAtomicRetPat_mc<DS_Pseudo inst, ValueType vt, string frag> { |
| let OtherPredicates = [LDSRequiresM0Init] in { |
| def : DSAtomicRetPat<inst, vt, !cast<PatFrag>(frag#"_local_m0_"#vt.Size)>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DSAtomicRetPat<!cast<DS_Pseudo>(!cast<string>(inst)#"_gfx9"), vt, |
| !cast<PatFrag>(frag#"_local_"#vt.Size)>; |
| } |
| |
| def : DSAtomicRetPat<inst, vt, !cast<PatFrag>(frag#"_region_m0_"#vt.Size), 1>; |
| } |
| |
| |
| |
| class DSAtomicCmpXChg<DS_Pseudo inst, ValueType vt, PatFrag frag, bit gds=0> : GCNPat < |
| (frag (DS1Addr1Offset i32:$ptr, i16:$offset), vt:$cmp, vt:$swap), |
| (inst $ptr, getVregSrcForVT<vt>.ret:$cmp, getVregSrcForVT<vt>.ret:$swap, offset:$offset, (i1 gds)) |
| >; |
| |
| multiclass DSAtomicCmpXChg_mc<DS_Pseudo inst, ValueType vt, string frag> { |
| let OtherPredicates = [LDSRequiresM0Init] in { |
| def : DSAtomicCmpXChg<inst, vt, !cast<PatFrag>(frag#"_local_m0_"#vt.Size)>; |
| } |
| |
| let OtherPredicates = [NotLDSRequiresM0Init] in { |
| def : DSAtomicCmpXChg<!cast<DS_Pseudo>(!cast<string>(inst)#"_gfx9"), vt, |
| !cast<PatFrag>(frag#"_local_"#vt.Size)>; |
| } |
| |
| def : DSAtomicCmpXChg<inst, vt, !cast<PatFrag>(frag#"_region_m0_"#vt.Size), 1>; |
| } |
| |
| |
| |
| // 32-bit atomics. |
| defm : DSAtomicRetPat_mc<DS_WRXCHG_RTN_B32, i32, "atomic_swap">; |
| defm : DSAtomicRetPat_mc<DS_ADD_RTN_U32, i32, "atomic_load_add">; |
| defm : DSAtomicRetPat_mc<DS_SUB_RTN_U32, i32, "atomic_load_sub">; |
| defm : DSAtomicRetPat_mc<DS_INC_RTN_U32, i32, "atomic_inc">; |
| defm : DSAtomicRetPat_mc<DS_DEC_RTN_U32, i32, "atomic_dec">; |
| defm : DSAtomicRetPat_mc<DS_AND_RTN_B32, i32, "atomic_load_and">; |
| defm : DSAtomicRetPat_mc<DS_OR_RTN_B32, i32, "atomic_load_or">; |
| defm : DSAtomicRetPat_mc<DS_XOR_RTN_B32, i32, "atomic_load_xor">; |
| defm : DSAtomicRetPat_mc<DS_MIN_RTN_I32, i32, "atomic_load_min">; |
| defm : DSAtomicRetPat_mc<DS_MAX_RTN_I32, i32, "atomic_load_max">; |
| defm : DSAtomicRetPat_mc<DS_MIN_RTN_U32, i32, "atomic_load_umin">; |
| defm : DSAtomicRetPat_mc<DS_MAX_RTN_U32, i32, "atomic_load_umax">; |
| defm : DSAtomicCmpXChg_mc<DS_CMPST_RTN_B32, i32, "atomic_cmp_swap">; |
| defm : DSAtomicRetPat_mc<DS_MIN_RTN_F32, f32, "atomic_load_fmin">; |
| defm : DSAtomicRetPat_mc<DS_MAX_RTN_F32, f32, "atomic_load_fmax">; |
| defm : DSAtomicRetPat_mc<DS_ADD_RTN_F32, f32, "atomic_load_fadd">; |
| |
| // 64-bit atomics. |
| defm : DSAtomicRetPat_mc<DS_WRXCHG_RTN_B64, i64, "atomic_swap">; |
| defm : DSAtomicRetPat_mc<DS_ADD_RTN_U64, i64, "atomic_load_add">; |
| defm : DSAtomicRetPat_mc<DS_SUB_RTN_U64, i64, "atomic_load_sub">; |
| defm : DSAtomicRetPat_mc<DS_INC_RTN_U64, i64, "atomic_inc">; |
| defm : DSAtomicRetPat_mc<DS_DEC_RTN_U64, i64, "atomic_dec">; |
| defm : DSAtomicRetPat_mc<DS_AND_RTN_B64, i64, "atomic_load_and">; |
| defm : DSAtomicRetPat_mc<DS_OR_RTN_B64, i64, "atomic_load_or">; |
| defm : DSAtomicRetPat_mc<DS_XOR_RTN_B64, i64, "atomic_load_xor">; |
| defm : DSAtomicRetPat_mc<DS_MIN_RTN_I64, i64, "atomic_load_min">; |
| defm : DSAtomicRetPat_mc<DS_MAX_RTN_I64, i64, "atomic_load_max">; |
| defm : DSAtomicRetPat_mc<DS_MIN_RTN_U64, i64, "atomic_load_umin">; |
| defm : DSAtomicRetPat_mc<DS_MAX_RTN_U64, i64, "atomic_load_umax">; |
| |
| defm : DSAtomicCmpXChg_mc<DS_CMPST_RTN_B64, i64, "atomic_cmp_swap">; |
| |
| def : Pat < |
| (SIds_ordered_count i32:$value, i16:$offset), |
| (DS_ORDERED_COUNT $value, (as_i16imm $offset)) |
| >; |
| |
| //===----------------------------------------------------------------------===// |
| // Target-specific instruction encodings. |
| //===----------------------------------------------------------------------===// |
| |
| //===----------------------------------------------------------------------===// |
| // Base ENC_DS for GFX6, GFX7, GFX10. |
| //===----------------------------------------------------------------------===// |
| |
| class Base_DS_Real_gfx6_gfx7_gfx10<bits<8> op, DS_Pseudo ps, int ef> : |
| DS_Real<ps>, SIMCInstr <ps.Mnemonic, ef> { |
| |
| let Inst{7-0} = !if(ps.has_offset0, offset0, 0); |
| let Inst{15-8} = !if(ps.has_offset1, offset1, 0); |
| let Inst{17} = !if(ps.has_gds, gds, ps.gdsValue); |
| let Inst{25-18} = op; |
| let Inst{31-26} = 0x36; |
| let Inst{39-32} = !if(ps.has_addr, addr, !if(ps.has_gws_data0, data0, 0)); |
| let Inst{47-40} = !if(ps.has_data0, data0, 0); |
| let Inst{55-48} = !if(ps.has_data1, data1, 0); |
| let Inst{63-56} = !if(ps.has_vdst, vdst, 0); |
| } |
| |
| //===----------------------------------------------------------------------===// |
| // GFX10. |
| //===----------------------------------------------------------------------===// |
| |
| let AssemblerPredicate = isGFX10Plus, DecoderNamespace = "GFX10" in { |
| multiclass DS_Real_gfx10<bits<8> op> { |
| def _gfx10 : Base_DS_Real_gfx6_gfx7_gfx10<op, !cast<DS_Pseudo>(NAME), |
| SIEncodingFamily.GFX10>; |
| } |
| } // End AssemblerPredicate = isGFX10Plus, DecoderNamespace = "GFX10" |
| |
| defm DS_ADD_F32 : DS_Real_gfx10<0x015>; |
| defm DS_ADD_RTN_F32 : DS_Real_gfx10<0x055>; |
| defm DS_ADD_SRC2_F32 : DS_Real_gfx10<0x095>; |
| defm DS_WRITE_B8_D16_HI : DS_Real_gfx10<0x0a0>; |
| defm DS_WRITE_B16_D16_HI : DS_Real_gfx10<0x0a1>; |
| defm DS_READ_U8_D16 : DS_Real_gfx10<0x0a2>; |
| defm DS_READ_U8_D16_HI : DS_Real_gfx10<0x0a3>; |
| defm DS_READ_I8_D16 : DS_Real_gfx10<0x0a4>; |
| defm DS_READ_I8_D16_HI : DS_Real_gfx10<0x0a5>; |
| defm DS_READ_U16_D16 : DS_Real_gfx10<0x0a6>; |
| defm DS_READ_U16_D16_HI : DS_Real_gfx10<0x0a7>; |
| defm DS_WRITE_ADDTID_B32 : DS_Real_gfx10<0x0b0>; |
| defm DS_READ_ADDTID_B32 : DS_Real_gfx10<0x0b1>; |
| defm DS_PERMUTE_B32 : DS_Real_gfx10<0x0b2>; |
| defm DS_BPERMUTE_B32 : DS_Real_gfx10<0x0b3>; |
| |
| //===----------------------------------------------------------------------===// |
| // GFX7, GFX10. |
| //===----------------------------------------------------------------------===// |
| |
| let AssemblerPredicate = isGFX7Only, DecoderNamespace = "GFX7" in { |
| multiclass DS_Real_gfx7<bits<8> op> { |
| def _gfx7 : Base_DS_Real_gfx6_gfx7_gfx10<op, !cast<DS_Pseudo>(NAME), |
| SIEncodingFamily.SI>; |
| } |
| } // End AssemblerPredicate = isGFX7Only, DecoderNamespace = "GFX7" |
| |
| multiclass DS_Real_gfx7_gfx10<bits<8> op> : |
| DS_Real_gfx7<op>, DS_Real_gfx10<op>; |
| |
| // FIXME-GFX7: Add tests when upstreaming this part. |
| defm DS_GWS_SEMA_RELEASE_ALL : DS_Real_gfx7_gfx10<0x018>; |
| defm DS_WRAP_RTN_B32 : DS_Real_gfx7_gfx10<0x034>; |
| defm DS_CONDXCHG32_RTN_B64 : DS_Real_gfx7_gfx10<0x07e>; |
| defm DS_WRITE_B96 : DS_Real_gfx7_gfx10<0x0de>; |
| defm DS_WRITE_B128 : DS_Real_gfx7_gfx10<0x0df>; |
| defm DS_READ_B96 : DS_Real_gfx7_gfx10<0x0fe>; |
| defm DS_READ_B128 : DS_Real_gfx7_gfx10<0x0ff>; |
| |
| //===----------------------------------------------------------------------===// |
| // GFX6, GFX7, GFX10. |
| //===----------------------------------------------------------------------===// |
| |
| let AssemblerPredicate = isGFX6GFX7, DecoderNamespace = "GFX6GFX7" in { |
| multiclass DS_Real_gfx6_gfx7<bits<8> op> { |
| def _gfx6_gfx7 : Base_DS_Real_gfx6_gfx7_gfx10<op, !cast<DS_Pseudo>(NAME), |
| SIEncodingFamily.SI>; |
| } |
| } // End AssemblerPredicate = isGFX6GFX7, DecoderNamespace = "GFX6GFX7" |
| |
| multiclass DS_Real_gfx6_gfx7_gfx10<bits<8> op> : |
| DS_Real_gfx6_gfx7<op>, DS_Real_gfx10<op>; |
| |
| defm DS_ADD_U32 : DS_Real_gfx6_gfx7_gfx10<0x000>; |
| defm DS_SUB_U32 : DS_Real_gfx6_gfx7_gfx10<0x001>; |
| defm DS_RSUB_U32 : DS_Real_gfx6_gfx7_gfx10<0x002>; |
| defm DS_INC_U32 : DS_Real_gfx6_gfx7_gfx10<0x003>; |
| defm DS_DEC_U32 : DS_Real_gfx6_gfx7_gfx10<0x004>; |
| defm DS_MIN_I32 : DS_Real_gfx6_gfx7_gfx10<0x005>; |
| defm DS_MAX_I32 : DS_Real_gfx6_gfx7_gfx10<0x006>; |
| defm DS_MIN_U32 : DS_Real_gfx6_gfx7_gfx10<0x007>; |
| defm DS_MAX_U32 : DS_Real_gfx6_gfx7_gfx10<0x008>; |
| defm DS_AND_B32 : DS_Real_gfx6_gfx7_gfx10<0x009>; |
| defm DS_OR_B32 : DS_Real_gfx6_gfx7_gfx10<0x00a>; |
| defm DS_XOR_B32 : DS_Real_gfx6_gfx7_gfx10<0x00b>; |
| defm DS_MSKOR_B32 : DS_Real_gfx6_gfx7_gfx10<0x00c>; |
| defm DS_WRITE_B32 : DS_Real_gfx6_gfx7_gfx10<0x00d>; |
| defm DS_WRITE2_B32 : DS_Real_gfx6_gfx7_gfx10<0x00e>; |
| defm DS_WRITE2ST64_B32 : DS_Real_gfx6_gfx7_gfx10<0x00f>; |
| defm DS_CMPST_B32 : DS_Real_gfx6_gfx7_gfx10<0x010>; |
| defm DS_CMPST_F32 : DS_Real_gfx6_gfx7_gfx10<0x011>; |
| defm DS_MIN_F32 : DS_Real_gfx6_gfx7_gfx10<0x012>; |
| defm DS_MAX_F32 : DS_Real_gfx6_gfx7_gfx10<0x013>; |
| defm DS_NOP : DS_Real_gfx6_gfx7_gfx10<0x014>; |
| defm DS_GWS_INIT : DS_Real_gfx6_gfx7_gfx10<0x019>; |
| defm DS_GWS_SEMA_V : DS_Real_gfx6_gfx7_gfx10<0x01a>; |
| defm DS_GWS_SEMA_BR : DS_Real_gfx6_gfx7_gfx10<0x01b>; |
| defm DS_GWS_SEMA_P : DS_Real_gfx6_gfx7_gfx10<0x01c>; |
| defm DS_GWS_BARRIER : DS_Real_gfx6_gfx7_gfx10<0x01d>; |
| defm DS_WRITE_B8 : DS_Real_gfx6_gfx7_gfx10<0x01e>; |
| defm DS_WRITE_B16 : DS_Real_gfx6_gfx7_gfx10<0x01f>; |
| defm DS_ADD_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x020>; |
| defm DS_SUB_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x021>; |
| defm DS_RSUB_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x022>; |
| defm DS_INC_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x023>; |
| defm DS_DEC_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x024>; |
| defm DS_MIN_RTN_I32 : DS_Real_gfx6_gfx7_gfx10<0x025>; |
| defm DS_MAX_RTN_I32 : DS_Real_gfx6_gfx7_gfx10<0x026>; |
| defm DS_MIN_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x027>; |
| defm DS_MAX_RTN_U32 : DS_Real_gfx6_gfx7_gfx10<0x028>; |
| defm DS_AND_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x029>; |
| defm DS_OR_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02a>; |
| defm DS_XOR_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02b>; |
| defm DS_MSKOR_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02c>; |
| defm DS_WRXCHG_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02d>; |
| defm DS_WRXCHG2_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02e>; |
| defm DS_WRXCHG2ST64_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x02f>; |
| defm DS_CMPST_RTN_B32 : DS_Real_gfx6_gfx7_gfx10<0x030>; |
| defm DS_CMPST_RTN_F32 : DS_Real_gfx6_gfx7_gfx10<0x031>; |
| defm DS_MIN_RTN_F32 : DS_Real_gfx6_gfx7_gfx10<0x032>; |
| defm DS_MAX_RTN_F32 : DS_Real_gfx6_gfx7_gfx10<0x033>; |
| defm DS_SWIZZLE_B32 : DS_Real_gfx6_gfx7_gfx10<0x035>; |
| defm DS_READ_B32 : DS_Real_gfx6_gfx7_gfx10<0x036>; |
| defm DS_READ2_B32 : DS_Real_gfx6_gfx7_gfx10<0x037>; |
| defm DS_READ2ST64_B32 : DS_Real_gfx6_gfx7_gfx10<0x038>; |
| defm DS_READ_I8 : DS_Real_gfx6_gfx7_gfx10<0x039>; |
| defm DS_READ_U8 : DS_Real_gfx6_gfx7_gfx10<0x03a>; |
| defm DS_READ_I16 : DS_Real_gfx6_gfx7_gfx10<0x03b>; |
| defm DS_READ_U16 : DS_Real_gfx6_gfx7_gfx10<0x03c>; |
| defm DS_CONSUME : DS_Real_gfx6_gfx7_gfx10<0x03d>; |
| defm DS_APPEND : DS_Real_gfx6_gfx7_gfx10<0x03e>; |
| defm DS_ORDERED_COUNT : DS_Real_gfx6_gfx7_gfx10<0x03f>; |
| defm DS_ADD_U64 : DS_Real_gfx6_gfx7_gfx10<0x040>; |
| defm DS_SUB_U64 : DS_Real_gfx6_gfx7_gfx10<0x041>; |
| defm DS_RSUB_U64 : DS_Real_gfx6_gfx7_gfx10<0x042>; |
| defm DS_INC_U64 : DS_Real_gfx6_gfx7_gfx10<0x043>; |
| defm DS_DEC_U64 : DS_Real_gfx6_gfx7_gfx10<0x044>; |
| defm DS_MIN_I64 : DS_Real_gfx6_gfx7_gfx10<0x045>; |
| defm DS_MAX_I64 : DS_Real_gfx6_gfx7_gfx10<0x046>; |
| defm DS_MIN_U64 : DS_Real_gfx6_gfx7_gfx10<0x047>; |
| defm DS_MAX_U64 : DS_Real_gfx6_gfx7_gfx10<0x048>; |
| defm DS_AND_B64 : DS_Real_gfx6_gfx7_gfx10<0x049>; |
| defm DS_OR_B64 : DS_Real_gfx6_gfx7_gfx10<0x04a>; |
| defm DS_XOR_B64 : DS_Real_gfx6_gfx7_gfx10<0x04b>; |
| defm DS_MSKOR_B64 : DS_Real_gfx6_gfx7_gfx10<0x04c>; |
| defm DS_WRITE_B64 : DS_Real_gfx6_gfx7_gfx10<0x04d>; |
| defm DS_WRITE2_B64 : DS_Real_gfx6_gfx7_gfx10<0x04e>; |
| defm DS_WRITE2ST64_B64 : DS_Real_gfx6_gfx7_gfx10<0x04f>; |
| defm DS_CMPST_B64 : DS_Real_gfx6_gfx7_gfx10<0x050>; |
| defm DS_CMPST_F64 : DS_Real_gfx6_gfx7_gfx10<0x051>; |
| defm DS_MIN_F64 : DS_Real_gfx6_gfx7_gfx10<0x052>; |
| defm DS_MAX_F64 : DS_Real_gfx6_gfx7_gfx10<0x053>; |
| defm DS_ADD_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x060>; |
| defm DS_SUB_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x061>; |
| defm DS_RSUB_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x062>; |
| defm DS_INC_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x063>; |
| defm DS_DEC_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x064>; |
| defm DS_MIN_RTN_I64 : DS_Real_gfx6_gfx7_gfx10<0x065>; |
| defm DS_MAX_RTN_I64 : DS_Real_gfx6_gfx7_gfx10<0x066>; |
| defm DS_MIN_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x067>; |
| defm DS_MAX_RTN_U64 : DS_Real_gfx6_gfx7_gfx10<0x068>; |
| defm DS_AND_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x069>; |
| defm DS_OR_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06a>; |
| defm DS_XOR_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06b>; |
| defm DS_MSKOR_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06c>; |
| defm DS_WRXCHG_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06d>; |
| defm DS_WRXCHG2_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06e>; |
| defm DS_WRXCHG2ST64_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x06f>; |
| defm DS_CMPST_RTN_B64 : DS_Real_gfx6_gfx7_gfx10<0x070>; |
| defm DS_CMPST_RTN_F64 : DS_Real_gfx6_gfx7_gfx10<0x071>; |
| defm DS_MIN_RTN_F64 : DS_Real_gfx6_gfx7_gfx10<0x072>; |
| defm DS_MAX_RTN_F64 : DS_Real_gfx6_gfx7_gfx10<0x073>; |
| defm DS_READ_B64 : DS_Real_gfx6_gfx7_gfx10<0x076>; |
| defm DS_READ2_B64 : DS_Real_gfx6_gfx7_gfx10<0x077>; |
| defm DS_READ2ST64_B64 : DS_Real_gfx6_gfx7_gfx10<0x078>; |
| defm DS_ADD_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x080>; |
| defm DS_SUB_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x081>; |
| defm DS_RSUB_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x082>; |
| defm DS_INC_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x083>; |
| defm DS_DEC_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x084>; |
| defm DS_MIN_SRC2_I32 : DS_Real_gfx6_gfx7_gfx10<0x085>; |
| defm DS_MAX_SRC2_I32 : DS_Real_gfx6_gfx7_gfx10<0x086>; |
| defm DS_MIN_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x087>; |
| defm DS_MAX_SRC2_U32 : DS_Real_gfx6_gfx7_gfx10<0x088>; |
| defm DS_AND_SRC2_B32 : DS_Real_gfx6_gfx7_gfx10<0x089>; |
| defm DS_OR_SRC2_B32 : DS_Real_gfx6_gfx7_gfx10<0x08a>; |
| defm DS_XOR_SRC2_B32 : DS_Real_gfx6_gfx7_gfx10<0x08b>; |
| defm DS_WRITE_SRC2_B32 : DS_Real_gfx6_gfx7_gfx10<0x08d>; |
| defm DS_MIN_SRC2_F32 : DS_Real_gfx6_gfx7_gfx10<0x092>; |
| defm DS_MAX_SRC2_F32 : DS_Real_gfx6_gfx7_gfx10<0x093>; |
| defm DS_ADD_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c0>; |
| defm DS_SUB_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c1>; |
| defm DS_RSUB_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c2>; |
| defm DS_INC_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c3>; |
| defm DS_DEC_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c4>; |
| defm DS_MIN_SRC2_I64 : DS_Real_gfx6_gfx7_gfx10<0x0c5>; |
| defm DS_MAX_SRC2_I64 : DS_Real_gfx6_gfx7_gfx10<0x0c6>; |
| defm DS_MIN_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c7>; |
| defm DS_MAX_SRC2_U64 : DS_Real_gfx6_gfx7_gfx10<0x0c8>; |
| defm DS_AND_SRC2_B64 : DS_Real_gfx6_gfx7_gfx10<0x0c9>; |
| defm DS_OR_SRC2_B64 : DS_Real_gfx6_gfx7_gfx10<0x0ca>; |
| defm DS_XOR_SRC2_B64 : DS_Real_gfx6_gfx7_gfx10<0x0cb>; |
| defm DS_WRITE_SRC2_B64 : DS_Real_gfx6_gfx7_gfx10<0x0cd>; |
| defm DS_MIN_SRC2_F64 : DS_Real_gfx6_gfx7_gfx10<0x0d2>; |
| defm DS_MAX_SRC2_F64 : DS_Real_gfx6_gfx7_gfx10<0x0d3>; |
| |
| //===----------------------------------------------------------------------===// |
| // GFX8, GFX9 (VI). |
| //===----------------------------------------------------------------------===// |
| |
| class DS_Real_vi <bits<8> op, DS_Pseudo ds> : |
| DS_Real <ds>, |
| SIMCInstr <ds.Mnemonic, SIEncodingFamily.VI> { |
| let AssemblerPredicate = isGFX8GFX9; |
| let DecoderNamespace = "GFX8"; |
| |
| // encoding |
| let Inst{7-0} = !if(ds.has_offset0, offset0, 0); |
| let Inst{15-8} = !if(ds.has_offset1, offset1, 0); |
| let Inst{16} = !if(ds.has_gds, gds, ds.gdsValue); |
| let Inst{24-17} = op; |
| let Inst{31-26} = 0x36; // ds prefix |
| let Inst{39-32} = !if(ds.has_addr, addr, !if(ds.has_gws_data0, data0, 0)); |
| let Inst{47-40} = !if(ds.has_data0, data0, 0); |
| let Inst{55-48} = !if(ds.has_data1, data1, 0); |
| let Inst{63-56} = !if(ds.has_vdst, vdst, 0); |
| } |
| |
| def DS_ADD_U32_vi : DS_Real_vi<0x0, DS_ADD_U32>; |
| def DS_SUB_U32_vi : DS_Real_vi<0x1, DS_SUB_U32>; |
| def DS_RSUB_U32_vi : DS_Real_vi<0x2, DS_RSUB_U32>; |
| def DS_INC_U32_vi : DS_Real_vi<0x3, DS_INC_U32>; |
| def DS_DEC_U32_vi : DS_Real_vi<0x4, DS_DEC_U32>; |
| def DS_MIN_I32_vi : DS_Real_vi<0x5, DS_MIN_I32>; |
| def DS_MAX_I32_vi : DS_Real_vi<0x6, DS_MAX_I32>; |
| def DS_MIN_U32_vi : DS_Real_vi<0x7, DS_MIN_U32>; |
| def DS_MAX_U32_vi : DS_Real_vi<0x8, DS_MAX_U32>; |
| def DS_AND_B32_vi : DS_Real_vi<0x9, DS_AND_B32>; |
| def DS_OR_B32_vi : DS_Real_vi<0xa, DS_OR_B32>; |
| def DS_XOR_B32_vi : DS_Real_vi<0xb, DS_XOR_B32>; |
| def DS_MSKOR_B32_vi : DS_Real_vi<0xc, DS_MSKOR_B32>; |
| def DS_WRITE_B32_vi : DS_Real_vi<0xd, DS_WRITE_B32>; |
| def DS_WRITE2_B32_vi : DS_Real_vi<0xe, DS_WRITE2_B32>; |
| def DS_WRITE2ST64_B32_vi : DS_Real_vi<0xf, DS_WRITE2ST64_B32>; |
| def DS_CMPST_B32_vi : DS_Real_vi<0x10, DS_CMPST_B32>; |
| def DS_CMPST_F32_vi : DS_Real_vi<0x11, DS_CMPST_F32>; |
| def DS_MIN_F32_vi : DS_Real_vi<0x12, DS_MIN_F32>; |
| def DS_MAX_F32_vi : DS_Real_vi<0x13, DS_MAX_F32>; |
| def DS_NOP_vi : DS_Real_vi<0x14, DS_NOP>; |
| def DS_ADD_F32_vi : DS_Real_vi<0x15, DS_ADD_F32>; |
| def DS_GWS_INIT_vi : DS_Real_vi<0x99, DS_GWS_INIT>; |
| def DS_GWS_SEMA_V_vi : DS_Real_vi<0x9a, DS_GWS_SEMA_V>; |
| def DS_GWS_SEMA_BR_vi : DS_Real_vi<0x9b, DS_GWS_SEMA_BR>; |
| def DS_GWS_SEMA_P_vi : DS_Real_vi<0x9c, DS_GWS_SEMA_P>; |
| def DS_GWS_BARRIER_vi : DS_Real_vi<0x9d, DS_GWS_BARRIER>; |
| def DS_WRITE_ADDTID_B32_vi : DS_Real_vi<0x1d, DS_WRITE_ADDTID_B32>; |
| def DS_WRITE_B8_vi : DS_Real_vi<0x1e, DS_WRITE_B8>; |
| def DS_WRITE_B16_vi : DS_Real_vi<0x1f, DS_WRITE_B16>; |
| def DS_ADD_RTN_U32_vi : DS_Real_vi<0x20, DS_ADD_RTN_U32>; |
| def DS_SUB_RTN_U32_vi : DS_Real_vi<0x21, DS_SUB_RTN_U32>; |
| def DS_RSUB_RTN_U32_vi : DS_Real_vi<0x22, DS_RSUB_RTN_U32>; |
| def DS_INC_RTN_U32_vi : DS_Real_vi<0x23, DS_INC_RTN_U32>; |
| def DS_DEC_RTN_U32_vi : DS_Real_vi<0x24, DS_DEC_RTN_U32>; |
| def DS_MIN_RTN_I32_vi : DS_Real_vi<0x25, DS_MIN_RTN_I32>; |
| def DS_MAX_RTN_I32_vi : DS_Real_vi<0x26, DS_MAX_RTN_I32>; |
| def DS_MIN_RTN_U32_vi : DS_Real_vi<0x27, DS_MIN_RTN_U32>; |
| def DS_MAX_RTN_U32_vi : DS_Real_vi<0x28, DS_MAX_RTN_U32>; |
| def DS_AND_RTN_B32_vi : DS_Real_vi<0x29, DS_AND_RTN_B32>; |
| def DS_OR_RTN_B32_vi : DS_Real_vi<0x2a, DS_OR_RTN_B32>; |
| def DS_XOR_RTN_B32_vi : DS_Real_vi<0x2b, DS_XOR_RTN_B32>; |
| def DS_MSKOR_RTN_B32_vi : DS_Real_vi<0x2c, DS_MSKOR_RTN_B32>; |
| def DS_WRXCHG_RTN_B32_vi : DS_Real_vi<0x2d, DS_WRXCHG_RTN_B32>; |
| def DS_WRXCHG2_RTN_B32_vi : DS_Real_vi<0x2e, DS_WRXCHG2_RTN_B32>; |
| def DS_WRXCHG2ST64_RTN_B32_vi : DS_Real_vi<0x2f, DS_WRXCHG2ST64_RTN_B32>; |
| def DS_CMPST_RTN_B32_vi : DS_Real_vi<0x30, DS_CMPST_RTN_B32>; |
| def DS_CMPST_RTN_F32_vi : DS_Real_vi<0x31, DS_CMPST_RTN_F32>; |
| def DS_MIN_RTN_F32_vi : DS_Real_vi<0x32, DS_MIN_RTN_F32>; |
| def DS_MAX_RTN_F32_vi : DS_Real_vi<0x33, DS_MAX_RTN_F32>; |
| def DS_WRAP_RTN_B32_vi : DS_Real_vi<0x34, DS_WRAP_RTN_B32>; |
| def DS_ADD_RTN_F32_vi : DS_Real_vi<0x35, DS_ADD_RTN_F32>; |
| def DS_READ_B32_vi : DS_Real_vi<0x36, DS_READ_B32>; |
| def DS_READ2_B32_vi : DS_Real_vi<0x37, DS_READ2_B32>; |
| def DS_READ2ST64_B32_vi : DS_Real_vi<0x38, DS_READ2ST64_B32>; |
| def DS_READ_I8_vi : DS_Real_vi<0x39, DS_READ_I8>; |
| def DS_READ_U8_vi : DS_Real_vi<0x3a, DS_READ_U8>; |
| def DS_READ_I16_vi : DS_Real_vi<0x3b, DS_READ_I16>; |
| def DS_READ_U16_vi : DS_Real_vi<0x3c, DS_READ_U16>; |
| def DS_READ_ADDTID_B32_vi : DS_Real_vi<0xb6, DS_READ_ADDTID_B32>; |
| def DS_CONSUME_vi : DS_Real_vi<0xbd, DS_CONSUME>; |
| def DS_APPEND_vi : DS_Real_vi<0xbe, DS_APPEND>; |
| def DS_ORDERED_COUNT_vi : DS_Real_vi<0xbf, DS_ORDERED_COUNT>; |
| def DS_SWIZZLE_B32_vi : DS_Real_vi<0x3d, DS_SWIZZLE_B32>; |
| def DS_PERMUTE_B32_vi : DS_Real_vi<0x3e, DS_PERMUTE_B32>; |
| def DS_BPERMUTE_B32_vi : DS_Real_vi<0x3f, DS_BPERMUTE_B32>; |
| |
| def DS_ADD_U64_vi : DS_Real_vi<0x40, DS_ADD_U64>; |
| def DS_SUB_U64_vi : DS_Real_vi<0x41, DS_SUB_U64>; |
| def DS_RSUB_U64_vi : DS_Real_vi<0x42, DS_RSUB_U64>; |
| def DS_INC_U64_vi : DS_Real_vi<0x43, DS_INC_U64>; |
| def DS_DEC_U64_vi : DS_Real_vi<0x44, DS_DEC_U64>; |
| def DS_MIN_I64_vi : DS_Real_vi<0x45, DS_MIN_I64>; |
| def DS_MAX_I64_vi : DS_Real_vi<0x46, DS_MAX_I64>; |
| def DS_MIN_U64_vi : DS_Real_vi<0x47, DS_MIN_U64>; |
| def DS_MAX_U64_vi : DS_Real_vi<0x48, DS_MAX_U64>; |
| def DS_AND_B64_vi : DS_Real_vi<0x49, DS_AND_B64>; |
| def DS_OR_B64_vi : DS_Real_vi<0x4a, DS_OR_B64>; |
| def DS_XOR_B64_vi : DS_Real_vi<0x4b, DS_XOR_B64>; |
| def DS_MSKOR_B64_vi : DS_Real_vi<0x4c, DS_MSKOR_B64>; |
| def DS_WRITE_B64_vi : DS_Real_vi<0x4d, DS_WRITE_B64>; |
| def DS_WRITE2_B64_vi : DS_Real_vi<0x4E, DS_WRITE2_B64>; |
| def DS_WRITE2ST64_B64_vi : DS_Real_vi<0x4f, DS_WRITE2ST64_B64>; |
| def DS_CMPST_B64_vi : DS_Real_vi<0x50, DS_CMPST_B64>; |
| def DS_CMPST_F64_vi : DS_Real_vi<0x51, DS_CMPST_F64>; |
| def DS_MIN_F64_vi : DS_Real_vi<0x52, DS_MIN_F64>; |
| def DS_MAX_F64_vi : DS_Real_vi<0x53, DS_MAX_F64>; |
| |
| def DS_WRITE_B8_D16_HI_vi : DS_Real_vi<0x54, DS_WRITE_B8_D16_HI>; |
| def DS_WRITE_B16_D16_HI_vi : DS_Real_vi<0x55, DS_WRITE_B16_D16_HI>; |
| |
| def DS_READ_U8_D16_vi : DS_Real_vi<0x56, DS_READ_U8_D16>; |
| def DS_READ_U8_D16_HI_vi : DS_Real_vi<0x57, DS_READ_U8_D16_HI>; |
| def DS_READ_I8_D16_vi : DS_Real_vi<0x58, DS_READ_I8_D16>; |
| def DS_READ_I8_D16_HI_vi : DS_Real_vi<0x59, DS_READ_I8_D16_HI>; |
| def DS_READ_U16_D16_vi : DS_Real_vi<0x5a, DS_READ_U16_D16>; |
| def DS_READ_U16_D16_HI_vi : DS_Real_vi<0x5b, DS_READ_U16_D16_HI>; |
| |
| def DS_ADD_RTN_U64_vi : DS_Real_vi<0x60, DS_ADD_RTN_U64>; |
| def DS_SUB_RTN_U64_vi : DS_Real_vi<0x61, DS_SUB_RTN_U64>; |
| def DS_RSUB_RTN_U64_vi : DS_Real_vi<0x62, DS_RSUB_RTN_U64>; |
| def DS_INC_RTN_U64_vi : DS_Real_vi<0x63, DS_INC_RTN_U64>; |
| def DS_DEC_RTN_U64_vi : DS_Real_vi<0x64, DS_DEC_RTN_U64>; |
| def DS_MIN_RTN_I64_vi : DS_Real_vi<0x65, DS_MIN_RTN_I64>; |
| def DS_MAX_RTN_I64_vi : DS_Real_vi<0x66, DS_MAX_RTN_I64>; |
| def DS_MIN_RTN_U64_vi : DS_Real_vi<0x67, DS_MIN_RTN_U64>; |
| def DS_MAX_RTN_U64_vi : DS_Real_vi<0x68, DS_MAX_RTN_U64>; |
| def DS_AND_RTN_B64_vi : DS_Real_vi<0x69, DS_AND_RTN_B64>; |
| def DS_OR_RTN_B64_vi : DS_Real_vi<0x6a, DS_OR_RTN_B64>; |
| def DS_XOR_RTN_B64_vi : DS_Real_vi<0x6b, DS_XOR_RTN_B64>; |
| def DS_MSKOR_RTN_B64_vi : DS_Real_vi<0x6c, DS_MSKOR_RTN_B64>; |
| def DS_WRXCHG_RTN_B64_vi : DS_Real_vi<0x6d, DS_WRXCHG_RTN_B64>; |
| def DS_WRXCHG2_RTN_B64_vi : DS_Real_vi<0x6e, DS_WRXCHG2_RTN_B64>; |
| def DS_WRXCHG2ST64_RTN_B64_vi : DS_Real_vi<0x6f, DS_WRXCHG2ST64_RTN_B64>; |
| def DS_CONDXCHG32_RTN_B64_vi : DS_Real_vi<0x7e, DS_CONDXCHG32_RTN_B64>; |
| def DS_GWS_SEMA_RELEASE_ALL_vi : DS_Real_vi<0x98, DS_GWS_SEMA_RELEASE_ALL>; |
| def DS_CMPST_RTN_B64_vi : DS_Real_vi<0x70, DS_CMPST_RTN_B64>; |
| def DS_CMPST_RTN_F64_vi : DS_Real_vi<0x71, DS_CMPST_RTN_F64>; |
| def DS_MIN_RTN_F64_vi : DS_Real_vi<0x72, DS_MIN_RTN_F64>; |
| def DS_MAX_RTN_F64_vi : DS_Real_vi<0x73, DS_MAX_RTN_F64>; |
| |
| def DS_READ_B64_vi : DS_Real_vi<0x76, DS_READ_B64>; |
| def DS_READ2_B64_vi : DS_Real_vi<0x77, DS_READ2_B64>; |
| def DS_READ2ST64_B64_vi : DS_Real_vi<0x78, DS_READ2ST64_B64>; |
| |
| def DS_ADD_SRC2_U32_vi : DS_Real_vi<0x80, DS_ADD_SRC2_U32>; |
| def DS_SUB_SRC2_U32_vi : DS_Real_vi<0x81, DS_SUB_SRC2_U32>; |
| def DS_RSUB_SRC2_U32_vi : DS_Real_vi<0x82, DS_RSUB_SRC2_U32>; |
| def DS_INC_SRC2_U32_vi : DS_Real_vi<0x83, DS_INC_SRC2_U32>; |
| def DS_DEC_SRC2_U32_vi : DS_Real_vi<0x84, DS_DEC_SRC2_U32>; |
| def DS_MIN_SRC2_I32_vi : DS_Real_vi<0x85, DS_MIN_SRC2_I32>; |
| def DS_MAX_SRC2_I32_vi : DS_Real_vi<0x86, DS_MAX_SRC2_I32>; |
| def DS_MIN_SRC2_U32_vi : DS_Real_vi<0x87, DS_MIN_SRC2_U32>; |
| def DS_MAX_SRC2_U32_vi : DS_Real_vi<0x88, DS_MAX_SRC2_U32>; |
| def DS_AND_SRC2_B32_vi : DS_Real_vi<0x89, DS_AND_SRC2_B32>; |
| def DS_OR_SRC2_B32_vi : DS_Real_vi<0x8a, DS_OR_SRC2_B32>; |
| def DS_XOR_SRC2_B32_vi : DS_Real_vi<0x8b, DS_XOR_SRC2_B32>; |
| def DS_WRITE_SRC2_B32_vi : DS_Real_vi<0x8d, DS_WRITE_SRC2_B32>; |
| def DS_MIN_SRC2_F32_vi : DS_Real_vi<0x92, DS_MIN_SRC2_F32>; |
| def DS_MAX_SRC2_F32_vi : DS_Real_vi<0x93, DS_MAX_SRC2_F32>; |
| def DS_ADD_SRC2_F32_vi : DS_Real_vi<0x95, DS_ADD_SRC2_F32>; |
| def DS_ADD_SRC2_U64_vi : DS_Real_vi<0xc0, DS_ADD_SRC2_U64>; |
| def DS_SUB_SRC2_U64_vi : DS_Real_vi<0xc1, DS_SUB_SRC2_U64>; |
| def DS_RSUB_SRC2_U64_vi : DS_Real_vi<0xc2, DS_RSUB_SRC2_U64>; |
| def DS_INC_SRC2_U64_vi : DS_Real_vi<0xc3, DS_INC_SRC2_U64>; |
| def DS_DEC_SRC2_U64_vi : DS_Real_vi<0xc4, DS_DEC_SRC2_U64>; |
| def DS_MIN_SRC2_I64_vi : DS_Real_vi<0xc5, DS_MIN_SRC2_I64>; |
| def DS_MAX_SRC2_I64_vi : DS_Real_vi<0xc6, DS_MAX_SRC2_I64>; |
| def DS_MIN_SRC2_U64_vi : DS_Real_vi<0xc7, DS_MIN_SRC2_U64>; |
| def DS_MAX_SRC2_U64_vi : DS_Real_vi<0xc8, DS_MAX_SRC2_U64>; |
| def DS_AND_SRC2_B64_vi : DS_Real_vi<0xc9, DS_AND_SRC2_B64>; |
| def DS_OR_SRC2_B64_vi : DS_Real_vi<0xca, DS_OR_SRC2_B64>; |
| def DS_XOR_SRC2_B64_vi : DS_Real_vi<0xcb, DS_XOR_SRC2_B64>; |
| def DS_WRITE_SRC2_B64_vi : DS_Real_vi<0xcd, DS_WRITE_SRC2_B64>; |
| def DS_MIN_SRC2_F64_vi : DS_Real_vi<0xd2, DS_MIN_SRC2_F64>; |
| def DS_MAX_SRC2_F64_vi : DS_Real_vi<0xd3, DS_MAX_SRC2_F64>; |
| def DS_WRITE_B96_vi : DS_Real_vi<0xde, DS_WRITE_B96>; |
| def DS_WRITE_B128_vi : DS_Real_vi<0xdf, DS_WRITE_B128>; |
| def DS_READ_B96_vi : DS_Real_vi<0xfe, DS_READ_B96>; |
| def DS_READ_B128_vi : DS_Real_vi<0xff, DS_READ_B128>; |