Home
last modified time | relevance | path

Searched refs:BLGP (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp1646 uint64_t BLGP = cast<ConstantInt>(II.getArgOperand(4))->getZExtValue(); in instCombineIntrinsic() local
1667 unsigned Src1NumElts = getFormatNumRegs(BLGP); in instCombineIntrinsic()
H A DSIInstrInfo.td1271 def blgp : CustomOperand<i32, 1, "BLGP">;
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h618 unsigned BLGP,
H A DAMDGPUBaseInfo.cpp588 unsigned BLGP, in getMFMA_F8F6F4_WithFormatArgs() argument
591 uint8_t SrcBNumRegs = mfmaScaleF8F6F4FormatToNumRegs(BLGP); in getMFMA_F8F6F4_WithFormatArgs()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp999 unsigned BLGP = MI.getOperand(BlgpIdx).getImm(); in convertMAIInst() local
1002 AMDGPU::getMFMA_F8F6F4_WithFormatArgs(CBSZ, BLGP, MI.getOpcode()); in convertMAIInst()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp6600 uint64_t BLGP = cast<ConstantInt>(Call.getArgOperand(4))->getZExtValue(); in visitIntrinsicCall() local
6603 Check(BLGP <= 4, "invalid value for blgp format", Call, in visitIntrinsicCall()
6639 Check(Src1Ty->getNumElements() >= getFormatNumRegs(BLGP), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4426 unsigned BLGP = Inst.getOperand(BlgpIdx).getImm(); in validateMFMA() local
4440 if (Info->NumRegsSrcB != mfmaScaleF8F6F4FormatToNumRegs(BLGP)) { in validateMFMA()
4444 "wrong register tuple size for blgp value " + Twine(BLGP)); in validateMFMA()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsAMDGPU.td3340 // Note: in gfx942 BLGP argument is replaced by NEG bitfield in the DGEMM MFMA.