[llvm-commits] Patch: SparseMultiSet

Owen Anderson resistor at mac.com
Wed Jan 16 13:49:00 PST 2013


FWIW,  this could also be useful for GVN's value table struct, which is currently a hashtable-to-linked-list.

--Owen

On Jan 16, 2013, at 10:39 AM, Michael Ilseman <milseman at apple.com> wrote:

> Attached is a patch introducing a new data structure, the SparseMultiSet, and changes to the MI scheduler to use it.
> 
> A SparseMultiSet adds multiset behavior to SparseSet, while retaining SparseSet's desirable properties. Essentially, SparseMultiSet provides multiset behavior by storing its dense data in doubly linked lists that are inlined into the dense vector. This allows it to provide good data locality as well as vector-like constant-time clear() and fast constant time find(), insert(), and erase(). It also allows SparseMultiSet to have a builtin recycler rather than keeping SparseSet's behavior of always swapping upon removal, which allows it to preserve more iterators. It's often a better alternative to a SparseSet of a growable container or vector-of-vector.
> 
> Unit tests included in patch.
> 
> <sparseMultiSet.patch>_______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list