[all-commits] [llvm/llvm-project] c083c8: [AMDGPU] Move V_FMA_MIX pattern matching into tabl...
Justin Bogner via All-commits
all-commits at lists.llvm.org
Thu Feb 23 10:24:18 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: c083c8974400bcc665d7736cd0e2b653180026ff
https://github.com/llvm/llvm-project/commit/c083c8974400bcc665d7736cd0e2b653180026ff
Author: Justin Bogner <mail at justinbogner.com>
Date: 2023-02-23 (Thu, 23 Feb 2023)
Changed paths:
M llvm/lib/Target/AMDGPU/AMDGPUGISel.td
M llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
M llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.h
M llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
M llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
M llvm/lib/Target/AMDGPU/SIInstrInfo.td
M llvm/lib/Target/AMDGPU/VOP3PInstructions.td
Log Message:
-----------
[AMDGPU] Move V_FMA_MIX pattern matching into tablegen. NFC
The matching for V_FMA_MIX was partially implemented with a C++
matcher (for fmas with 32 bit results and 16 bit inputs) and partially
in tablegen (for fmas with 16 bit results). Move the C++ matcher logic
into tablegen to make this more consistent and so we can remove the
duplication between SDAG and GISel.
Differential Revision: https://reviews.llvm.org/D144612
More information about the All-commits
mailing list