Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DVOPInstructions.td160 let IsDOT = P.IsDOT;
398 …let Inst{14} = !if(!and(P.HasSrc2, P.HasOpSel), src2_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_sel_…
407 …let Inst{59} = !if(!and(P.HasSrc0, P.HasOpSel), src0_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
408 …let Inst{60} = !if(!and(P.HasSrc1, P.HasOpSel), src1_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
793 …let Inst{14} = !if(!and(P.HasSrc2, P.HasOpSel), src2_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_sel_…
797 …let Inst{59} = !if(!and(P.HasSrc0, P.HasOpSel), src0_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
798 …let Inst{60} = !if(!and(P.HasSrc1, P.HasOpSel), src1_modifiers{3}, !if(P.IsDOT, 1, ?)); // op_s…
1141 bit IsDOT = 0,
1142 ComplexPattern SrcPat = !if(IsDOT, VOP3PModsDOT, VOP3PMods)> {
1338 let IsDOT = ps.IsDOT;
[all …]
H A DSIInstrFormats.td131 field bit IsDOT = 0;
236 let TSFlags{55} = IsDOT;
H A DAMDGPUInstructionSelector.h186 bool IsDOT = false) const;
H A DAMDGPUISelDAGToDAG.h225 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 {
414 } // End let IsDOT = 1
417 let IsDOT = 1 in
457 let IsDOT = 1;
H A DSIDefines.h154 IsDOT = UINT64_C(1) << 55, enumerator
H A DSIInstrInfo.h806 return MI.getDesc().TSFlags & SIInstrFlags::IsDOT; in isDOT()
830 return get(Opcode).TSFlags & SIInstrFlags::IsDOT; in isDOT()
H A DAMDGPUISelDAGToDAG.cpp2983 SDValue &SrcMods, bool IsDOT) const { in SelectVOP3PMods()
2994 (!IsDOT || !Subtarget->hasDOTOpSelHazard())) { in SelectVOP3PMods()
H A DSIFoldOperands.cpp212 (ST->hasDOTOpSelHazard() && (TSFlags & SIInstrFlags::IsDOT))) in canUseImmWithOpSel()
H A DAMDGPUInstructionSelector.cpp3820 Register Src, const MachineRegisterInfo &MRI, bool IsDOT) const { in selectVOP3PModsImpl()
3836 (void)IsDOT; // DOTs do not use OPSEL on gfx940+, check ST.hasDOTOpSelHazard() in selectVOP3PModsImpl()
H A DVOP3Instructions.td945 let OtherPredicates = [HasDot9Insts], IsDOT=1 in {
H A DSIInstrInfo.td2321 field bit IsDOT = 0;
H A DVOP2Instructions.td1092 IsDOT = 1 in {
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4537 if (isGFX940() && (TSFlags & SIInstrFlags::IsDOT)) { in validateOpSel()
4551 if (isGFX11Plus() && (TSFlags & SIInstrFlags::IsDOT) && in validateOpSel()
4572 if (!(TSFlags & SIInstrFlags::IsDOT) && !(TSFlags & SIInstrFlags::IsWMMA) && in validateNeg()