[llvm] [VPlan] Only store RecurKind + FastMathFlags in VPReductionRecipe. NFCI (PR #131300)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 02:41:35 PDT 2025
================
@@ -2301,9 +2300,11 @@ class VPReductionRecipe : public VPRecipeWithIRFlags {
VPSlotTracker &SlotTracker) const override;
#endif
- /// Return the recurrence decriptor for the in-loop reduction.
- const RecurrenceDescriptor &getRecurrenceDescriptor() const {
- return RdxDesc;
+ /// Return the recurrence kind for the in-loop reduction.
+ RecurKind getRecurrenceKind() const { return RdxKind; }
+ /// Return the opcode for the recurrence for the in-loop reduction.
+ unsigned getOpcode() const {
+ return RecurrenceDescriptor::getOpcode(RdxKind);
----------------
david-arm wrote:
If we don't expect `RdxKind` to change during the class lifetime, is it worth just caching the opcode in the class at the time of construction?
https://github.com/llvm/llvm-project/pull/131300
More information about the llvm-commits
mailing list