[PATCH] D90296: [AMDGPU] Allow some modifiers on VOP3B instructions
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 28 06:56:04 PDT 2020
foad added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp:3312-3317
+ case V_DIV_SCALE_F32_gfx6_gfx7:
+ case V_DIV_SCALE_F32_vi:
+ case V_DIV_SCALE_F32_gfx10:
+ case V_DIV_SCALE_F64_gfx6_gfx7:
+ case V_DIV_SCALE_F64_vi:
+ case V_DIV_SCALE_F64_gfx10:
----------------
arsenm wrote:
> foad wrote:
> > Is there a better way than listing all the real opcodes for all architectures?
> Probably not right now, other than burning a bit for IsDivScale which is probably not worth it.
Could we get TableGen to emit a real-to-pseudo opcode mapping table, like it generates pseudo-to-real tables?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90296/new/
https://reviews.llvm.org/D90296
More information about the llvm-commits
mailing list