Home
last modified time | relevance | path

Searched refs:IsDOT (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DVOPInstructions.td173 let IsDOT = P.IsDOT;
399 …let Inst{14} = !if(!and(P.HasSrc2, P.HasOpSel), src2_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_sel_…
408 …let Inst{59} = !if(!and(P.HasSrc0, P.HasOpSel), src0_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
409 …let Inst{60} = !if(!and(P.HasSrc1, P.HasOpSel), src1_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
784 …let Inst{14} = !if(!and(P.HasSrc2, P.HasOpSel), src2_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_sel_…
788 …let Inst{59} = !if(!and(P.HasSrc0, P.HasOpSel), src0_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
789 …let Inst{60} = !if(!and(P.HasSrc1, P.HasOpSel), src1_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
1138 bit IsDOT = 0,
1139 ComplexPattern SrcPat = !if(IsDOT, VOP3PModsDOT, VOP3PMods)> {
1335 let IsDOT = ps.IsDOT;
[all …]
H A DSIInstrFormats.td140 field bit IsDOT = 0;
238 let TSFlags{55} = IsDOT;
H A DAMDGPUISelDAGToDAG.h237 bool IsDOT = false) const;
H A DAMDGPUInstructionSelector.h188 bool IsDOT = false) const;
H A DVOP3PInstructions.td58 SDPatternOperator node = null_frag, bit IsDOT = 0> {
61 getVOP3PModPat<P, node, IsDOT, IsDOT>.ret,
371 let IsDOT = 1 in {
410 } // End let IsDOT = 1
413 let IsDOT = 1 in
453 let IsDOT = 1;
H A DSIDefines.h148 IsDOT = UINT64_C(1) << 55, enumerator
H A DSIInstrInfo.h790 return MI.getDesc().TSFlags & SIInstrFlags::IsDOT; in isDOT()
814 return get(Opcode).TSFlags & SIInstrFlags::IsDOT; in isDOT()
H A DAMDGPUISelDAGToDAG.cpp2918 SDValue &SrcMods, bool IsDOT) const { in SelectVOP3PMods()
2929 (!IsDOT || !Subtarget->hasDOTOpSelHazard())) { in SelectVOP3PMods()
H A DSIFoldOperands.cpp212 (ST->hasDOTOpSelHazard() && (TSFlags & SIInstrFlags::IsDOT))) in canUseImmWithOpSel()
H A DAMDGPUInstructionSelector.cpp3876 Register Src, const MachineRegisterInfo &MRI, bool IsDOT) const { in selectVOP3PModsImpl()
3892 (void)IsDOT; // DOTs do not use OPSEL on gfx940+, check ST.hasDOTOpSelHazard() in selectVOP3PModsImpl()
H A DVOP3Instructions.td905 let SubtargetPredicate = HasDot9Insts, IsDOT=1 in {
H A DSIInstrInfo.td2289 field bit IsDOT = 0;
H A DVOP2Instructions.td1071 IsDOT = 1 in {
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4367 if (isGFX940() && (TSFlags & SIInstrFlags::IsDOT)) { in validateOpSel()
4381 if (isGFX11Plus() && (TSFlags & SIInstrFlags::IsDOT) && in validateOpSel()
4402 if (!(TSFlags & SIInstrFlags::IsDOT) && !(TSFlags & SIInstrFlags::IsWMMA) && in validateNeg()