[llvm] [SLP][NFC] Redesign schedule bundle, separate from schedule data, NFC (PR #131625)

Gaƫtan Bossu via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 07:45:57 PDT 2025


================
@@ -4011,26 +4014,55 @@ class BoUpSLP {
   /// List of hashes of vector of loads, which are known to be non vectorizable.
   DenseSet<size_t> ListOfKnonwnNonVectorizableLoads;
 
+  class ScheduleEntity {
----------------
gbossu wrote:

Could you maybe add a top level comment? It's not clear to me what a `ScheduleEntity` represents. Is it just a wrapper around some `llvm::instruction` to store extra information needed for scheduling?

I would suggest to give a bit more details about the two `ScheduleData` and `ScheduleBundle` variants. That might make it move obvious why the `ScheduleEntity` abstraction makes sense.

https://github.com/llvm/llvm-project/pull/131625


More information about the llvm-commits mailing list