[PATCH] D133723: [AMDGPU][GFX11] Use VGPR_32_F128 for VOP1,2,C
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 13 05:44:12 PDT 2022
foad added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/SIInstrInfo.cpp:3279-3281
+ assert(Opc != AMDGPU::V_FMAC_F16_T16_e32 &&
+ "V_FMAC_F16_T16_e32 is not supported and not expected to be present "
+ "pre-RA");
----------------
My understanding is that having a _T16_e32 instruction here should work correctly, but it is undesirable because it has more restrictive register classes than the _T16_e64 form. So perhaps we want a more general assertion in (or just before) the register allocator that there are no _T16_e32 instructions present? I'm not sure how or where to implement that.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133723/new/
https://reviews.llvm.org/D133723
More information about the llvm-commits
mailing list