[llvm] [GC] Use `MapVector` for `GCStrategyMap` (PR #132729)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 20:45:55 PDT 2025


================
@@ -151,15 +152,47 @@ class GCFunctionInfo {
   size_t live_size(const iterator &p) const { return roots_size(); }
 };
 
-struct GCStrategyMap {
-  StringMap<std::unique_ptr<GCStrategy>> StrategyMap;
+class GCStrategyMap {
+  using MapT =
+      MapVector<std::string, std::unique_ptr<GCStrategy>, StringMap<unsigned>>;
----------------
arsenm wrote:

Where do these names come from? Can this use StringRef? Cursory search seems to suggest these are already live in the LLVMContext 

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


More information about the llvm-commits mailing list