[llvm] [SelectionDAG] Stop storing EVTs in a function scoped static std::set. (PR #118715)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 08:43:55 PST 2024


================
@@ -247,6 +248,9 @@ class SelectionDAG {
   BlockFrequencyInfo *BFI = nullptr;
   MachineModuleInfo *MMI = nullptr;
 
+  /// Extended EVTs used for single value VTLists.
+  std::set<EVT, EVT::compareRawBits> EVTs;
----------------
topperc wrote:

I didn't try DenseSEt. Looks like we would need to add a DenseMapInfo for EVT including defining Empty and Tombstone values?

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


More information about the llvm-commits mailing list