//===-- AMDGPUGIsel.td - AMDGPU GlobalISel Patterns---------*- tablegen -*-===// // // 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 // //===----------------------------------------------------------------------===// // This files contains patterns that should only be used by GlobalISel. For // example patterns for V_* instructions that have S_* equivalents. // SelectionDAG does not support selecting V_* instructions. //===----------------------------------------------------------------------===// include "AMDGPU.td" def p0 : PtrValueType; def p1 : PtrValueType; def p4 : PtrValueType; def sd_vsrc0 : ComplexPattern; def gi_vsrc0 : GIComplexOperandMatcher, GIComplexPatternEquiv; def sd_vcsrc : ComplexPattern; def gi_vcsrc : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_vop3mods0 : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_vop3mods : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_vop3omods : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_smrd_imm : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_smrd_imm32 : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_smrd_sgpr : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_flat_offset : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_flat_offset_signed : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_mubuf_scratch_offset : GIComplexOperandMatcher, GIComplexPatternEquiv; def gi_mubuf_scratch_offen : GIComplexOperandMatcher, GIComplexPatternEquiv; class GISelSop2Pat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src0_vt SReg_32:$src0), (src1_vt SReg_32:$src1))), (inst src0_vt:$src0, src1_vt:$src1) >; class GISelVop2Pat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src0_vt (sd_vsrc0 src0_vt:$src0)), (src1_vt VGPR_32:$src1))), (inst src0_vt:$src0, src1_vt:$src1) >; class GISelVop2CommutePat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src1_vt VGPR_32:$src1), (src0_vt (sd_vsrc0 src0_vt:$src0)))), (inst src0_vt:$src0, src1_vt:$src1) >; class GISelVop3Pat2 < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src0_vt (sd_vcsrc src0_vt:$src0)), (src1_vt (sd_vcsrc src1_vt:$src1)))), (inst src0_vt:$src0, src1_vt:$src1) >; class GISelVop3Pat2CommutePat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src0_vt (sd_vcsrc src0_vt:$src0)), (src1_vt (sd_vcsrc src1_vt:$src1)))), (inst src0_vt:$src1, src1_vt:$src0) >; class GISelVop3Pat2ModsPat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < (dst_vt (node (src0_vt (VOP3Mods0 src0_vt:$src0, i32:$src0_modifiers, i1:$clamp, i32:$omods)), (src1_vt (VOP3Mods src1_vt:$src1, i32:$src1_modifiers)))), (inst i32:$src0_modifiers, src0_vt:$src0, i32:$src1_modifiers, src1_vt:$src1, $clamp, $omods) >; multiclass GISelVop2IntrPat < SDPatternOperator node, Instruction inst, ValueType dst_vt, ValueType src_vt = dst_vt> { def : GISelVop2Pat ; // FIXME: Intrinsics aren't marked as commutable, so we need to add an explcit // pattern to handle commuting. This is another reason why legalizing to a // generic machine instruction may be better that matching the intrinsic // directly. def : GISelVop2CommutePat ; } def : GISelSop2Pat ; def : GISelVop2Pat ; // FIXME: We can't re-use SelectionDAG patterns here because they match // against a custom SDNode and we would need to create a generic machine // instruction that is equivalent to the custom SDNode. This would also require // us to custom legalize the intrinsic to the new generic machine instruction, // but I can't get custom legalizing of intrinsic to work and I'm not sure if // this is even supported yet. def : GISelVop3Pat2ModsPat < int_amdgcn_cvt_pkrtz, V_CVT_PKRTZ_F16_F32_e64, v2f16, f32>; defm : GISelVop2IntrPat ; def : GISelVop3Pat2ModsPat ; defm : GISelVop2IntrPat ; def : GISelVop3Pat2ModsPat ; // Since GlobalISel is more flexible then SelectionDAG, I think we can get // away with adding patterns for integer types and not legalizing all // loads and stores to vector types. This should help simplify the load/store // legalization. foreach Ty = [i64, p0, p1, p4] in { defm : SMRD_Pattern <"S_LOAD_DWORDX2", Ty>; }