[llvm] Expanding the Histogram Intrinsic (PR #127399)
Graham Hunter via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 02:46:51 PST 2025
================
@@ -1079,34 +1079,41 @@ bool LoopVectorizationLegality::canVectorizeInstrs() {
/// Find histogram operations that match high-level code in loops:
/// \code
-/// buckets[indices[i]]+=step;
+/// buckets[indices[i]] = UpdateOpeartor(buckets[indices[i]], Val);
/// \endcode
+/// When updateOperator can be add, sub, add.sat, umin, umax, sub.
///
/// It matches a pattern starting from \p HSt, which Stores to the 'buckets'
-/// array the computed histogram. It uses a BinOp to sum all counts, storing
-/// them using a loop-variant index Load from the 'indices' input array.
+/// array the computed histogram. It uses a update instruction to update all
+/// counts, storing them using a loop-variant index Load from the 'indices'
+/// input array.
///
/// On successful matches it updates the STATISTIC 'HistogramsDetected',
/// regardless of hardware support. When there is support, it additionally
-/// stores the BinOp/Load pairs in \p HistogramCounts, as well the pointers
+/// stores the UpdateOp/Load pairs in \p HistogramCounts, as well the pointers
/// used to update histogram in \p HistogramPtrs.
static bool findHistogram(LoadInst *LI, StoreInst *HSt, Loop *TheLoop,
const PredicatedScalarEvolution &PSE,
SmallVectorImpl<HistogramInfo> &Histograms) {
- // Store value must come from a Binary Operation.
Instruction *HPtrInstr = nullptr;
- BinaryOperator *HBinOp = nullptr;
- if (!match(HSt, m_Store(m_BinOp(HBinOp), m_Instruction(HPtrInstr))))
+ Instruction *HInstr = nullptr;
----------------
huntergr-arm wrote:
May be worth calling this `HUpdateOp` or similar, matching your comment updates above.
https://github.com/llvm/llvm-project/pull/127399
More information about the llvm-commits
mailing list