[llvm] [SandboxIR][Region] Implement an auxiliary vector in Region (PR #126376)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 13 12:47:17 PST 2025


================
@@ -87,16 +87,23 @@ class ScoreBoard {
 //  |    |
 //  |Rgn3| -> Transform1 ->  ... -> TransformN -> Check Cost
 //  +----+
+//
+// The region can also hold an ordered sequence of "auxiliary" instructions.
+// This can be used to pass auxiliary information across region passes, like for
+// example the initial seed slice used by the bottom-up vectorizer.
 
 class Region {
   /// All the instructions in the Region. Only new instructions generated during
   /// vectorization are part of the Region.
   SetVector<Instruction *> Insts;
+  /// An auxiliary sequence of Instruction-Index pairs.
+  SmallVector<Instruction *> Aux;
 
   /// MDNode that we'll use to mark instructions as being part of the region.
   MDNode *RegionMDN;
   static constexpr const char *MDKind = "sandboxvec";
   static constexpr const char *RegionStr = "sandboxregion";
+  static constexpr const char *AuxMDKind = "sbaux";
----------------
vporpo wrote:

Good point, yeah we should make this consistent. I will change it to "sandboxaux".

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


More information about the llvm-commits mailing list