Ejemplo n.º 1
0
        private INode <K, V> inode(MainNode <K, V> cn)
        {
            INode <K, V> nin = new INode <K, V>(gen);

            nin.WRITE(cn);
            return(nin);
        }
Ejemplo n.º 2
0
        // - if the branching factor is 1 for this CNode, and the child
        // is a tombed SNode, returns its tombed version
        // - otherwise, if there is at least one non-null node below,
        // returns the version of this node with at least some null-inodes
        // removed (those existing when the op began)
        // - if there are only null-i-nodes below, returns null
        public MainNode <K, V> toCompressed(ConcurrentTrieDictionary <K, V> ct, int lev, Gen gen)
        {
            int bmp = bitmap;
            int i   = 0;

            BasicNode[] arr      = array;
            BasicNode[] tmparray = new BasicNode[arr.Length];
            while (i < arr.Length)
            { // construct new bitmap
                BasicNode sub = arr[i];
                if (sub is INode <K, V> )
                {
                    INode <K, V>    _in       = (INode <K, V>)sub;
                    MainNode <K, V> inodemain = _in.gcasRead(ct);
                    // assert(inodemain != null);
                    tmparray[i] = resurrect(_in, inodemain);
                }
                else if (sub is SNode <K, V> )
                {
                    tmparray[i] = sub;
                }
                i += 1;
            }

            return(new CNode <K, V>(bmp, tmparray, gen).toContracted(lev));
        }
        private void readin(INode <K, V> _in)
        {
            MainNode <K, V> m = _in.gcasRead(ct);

            if (m is CNode <K, V> )
            {
                CNode <K, V> cn = (CNode <K, V>)m;
                depth          += 1;
                stack[depth]    = cn.array;
                stackpos[depth] = -1;
                advance();
            }
            else if (m is TNode <K, V> )
            {
                current = (TNode <K, V>)m;
            }
            else if (m is LNode <K, V> )
            {
                subiter = ((LNode <K, V>)m).listmap.iterator();
                checkSubiter();
            }
            else if (m == null)
            {
                current = null;
            }
        }
Ejemplo n.º 4
0
        public INode <K, V> copyToGen(Gen ngen, ConcurrentTrieDictionary <K, V> ct)
        {
            INode <K, V>    nin  = new INode <K, V>(ngen);
            MainNode <K, V> main = GCAS_READ(ct);

            nin.WRITE(main);
            return(nin);
        }
Ejemplo n.º 5
0
        private void clean(INode <K, V> nd, ConcurrentTrieDictionary <K, V> ct, int lev)
        {
            MainNode <K, V> m = nd.GCAS_READ(ct);

            if (m is CNode <K, V> )
            {
                CNode <K, V> cn = (CNode <K, V>)m;
                nd.GCAS(cn, cn.toCompressed(ct, lev, gen), ct);
            }
        }
Ejemplo n.º 6
0
 bool GCAS(MainNode <K, V> old, MainNode <K, V> n, ConcurrentTrieDictionary <K, V> ct)
 {
     n.WRITE_PREV(old);
     if (CAS(old, n))
     {
         GCAS_Complete(n, ct);
         return /* READ */ (n.prev == null);
     }
     else
     {
         return(false);
     }
 }
Ejemplo n.º 7
0
        MainNode <K, V> GCAS_READ(ConcurrentTrieDictionary <K, V> ct)
        {
            MainNode <K, V> m       = /* READ */ mainnode;
            MainNode <K, V> prevval = /* READ */ m.prev;

            if (prevval == null)
            {
                return(m);
            }
            else
            {
                return(GCAS_Complete(m, ct));
            }
        }
Ejemplo n.º 8
0
        private bool RDCSS_ROOT(INode <K, V> ov, MainNode <K, V> expectedmain, INode <K, V> nv)
        {
            RDCSS_Descriptor <K, V> desc = new RDCSS_Descriptor <K, V>(ov, expectedmain, nv);

            if (CAS_ROOT(ov, desc))
            {
                RDCSS_Complete(false);
                return /* READ */ (desc.committed);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 9
0
 void cleanParent(Object nonlive, INode <K, V> parent, ConcurrentTrieDictionary <K, V> ct, int hc, int lev, Gen startgen)
 {
     while (true)
     {
         MainNode <K, V> pm = parent.GCAS_READ(ct);
         if (pm is CNode <K, V> )
         {
             CNode <K, V> cn   = (CNode <K, V>)pm;
             int          idx  = (int)((uint)hc >> (lev - 5)) & 0x1f;
             int          bmp  = cn.bitmap;
             int          flag = 1 << idx;
             if ((bmp & flag) == 0)
             {
             } // somebody already removed this i-node, we're done
             else
             {
                 int       pos = JavaCompat.SparseBitcount(bmp & (flag - 1));
                 BasicNode sub = cn.array[pos];
                 if (sub == this)
                 {
                     if (nonlive is TNode <K, V> )
                     {
                         TNode <K, V>    tn  = (TNode <K, V>)nonlive;
                         MainNode <K, V> ncn = cn.updatedAt(pos, tn.copyUntombed(), gen).toContracted(lev - 5);
                         if (!parent.GCAS(cn, ncn, ct))
                         {
                             if (ct.readRoot().gen == startgen)
                             {
                                 // cleanParent (nonlive, parent, ct, hc,
                                 // lev, startgen);
                                 // tailrec
                                 continue;
                             }
                         }
                     }
                 }
             }
         }
         else
         {
             // parent is no longer a cnode, we're done
         }
         break;
     }
 }
Ejemplo n.º 10
0
        /**
         * Returns a snapshot of this ConcurrentTrieDictionary. This operation is lock-free and
         * linearizable.
         *
         * The snapshot is lazily updated - the first time some branch in the
         * snapshot or this ConcurrentTrieDictionary are accessed, they are rewritten. This means
         * that the work of rebuilding both the snapshot and this ConcurrentTrieDictionary is
         * distributed across all the threads doing updates or accesses subsequent
         * to the snapshot creation.
         */

        public ConcurrentTrieDictionary <K, V> snapshot()
        {
            while (true)
            {
                INode <K, V>    r       = RDCSS_READ_ROOT();
                MainNode <K, V> expmain = r.gcasRead(this);
                if (RDCSS_ROOT(r, expmain, r.copyToGen(new Gen(), this)))
                {
                    return(new ConcurrentTrieDictionary <K, V>(r.copyToGen(new Gen(), this), hashing(), equality(), readOnly));
                }
                else
                {
                    // return snapshot ();
                    // tailrec
                    continue;
                }
            }
        }
Ejemplo n.º 11
0
        /**
         * Returns a read-only snapshot of this ConcurrentTrieDictionary. This operation is lock-free
         * and linearizable.
         *
         * The snapshot is lazily updated - the first time some branch of this
         * ConcurrentTrieDictionary are accessed, it is rewritten. The work of creating the snapshot
         * is thus distributed across subsequent updates and accesses on this
         * ConcurrentTrieDictionary by all threads. Note that the snapshot itself is never rewritten
         * unlike when calling the `snapshot` method, but the obtained snapshot
         * cannot be modified.
         *
         * This method is used by other methods such as `size` and `iterator`.
         */
        public ConcurrentTrieDictionary <K, V> readOnlySnapshot()
        {
            // Is it a snapshot of a read-only snapshot?
            if (!nonReadOnly())
            {
                return(this);
            }

            while (true)
            {
                INode <K, V>    r       = RDCSS_READ_ROOT();
                MainNode <K, V> expmain = r.gcasRead(this);
                if (RDCSS_ROOT(r, expmain, r.copyToGen(new Gen(), this)))
                {
                    return(new ConcurrentTrieDictionary <K, V>(r, hashing(), equality(), true));
                }
                else
                {
                    // return readOnlySnapshot ();
                    continue;
                }
            }
        }
Ejemplo n.º 12
0
        private INode <K, V> RDCSS_Complete(bool abort)
        {
            while (true)
            {
                Object v = /* READ */ root;
                if (v is INode <K, V> )
                {
                    return((INode <K, V>)v);
                }
                else if (v is RDCSS_Descriptor <K, V> )
                {
                    RDCSS_Descriptor <K, V> desc = (RDCSS_Descriptor <K, V>)v;
                    INode <K, V>            ov   = desc.old;
                    MainNode <K, V>         exp  = desc.expectedmain;
                    INode <K, V>            nv   = desc.nv;

                    if (abort)
                    {
                        if (CAS_ROOT(desc, ov))
                        {
                            return(ov);
                        }
                        else
                        {
                            // return RDCSS_Complete (abort);
                            // tailrec
                            continue;
                        }
                    }
                    else
                    {
                        MainNode <K, V> oldmain = ov.gcasRead(this);
                        if (oldmain == exp)
                        {
                            if (CAS_ROOT(desc, nv))
                            {
                                desc.committed = true;
                                return(nv);
                            }
                            else
                            {
                                // return RDCSS_Complete (abort);
                                // tailrec
                                continue;
                            }
                        }
                        else
                        {
                            if (CAS_ROOT(desc, ov))
                            {
                                return(ov);
                            }
                            else
                            {
                                // return RDCSS_Complete (abort);
                                // tailrec
                                continue;
                            }
                        }
                    }
                }

                throw new RuntimeException("Should not happen");
            }
        }
Ejemplo n.º 13
0
        public int cachedSize(ConcurrentTrieDictionary <K, V> ct)
        {
            MainNode <K, V> m = GCAS_READ(ct);

            return(m.cachedSize(ct));
        }
Ejemplo n.º 14
0
        /**
         * Inserts a key value pair, overwriting the old pair if the keys match.
         *
         * @return true if successful, false otherwise
         */
        public bool rec_insert(K k, V v, int hc, int lev, INode <K, V> parent, Gen startgen, ConcurrentTrieDictionary <K, V> ct)
        {
            while (true)
            {
                MainNode <K, V> m = GCAS_READ(ct); // use -Yinline!

                if (m is CNode <K, V> )
                {
                    // 1) a multiway node
                    CNode <K, V> cn   = (CNode <K, V>)m;
                    int          idx  = (int)((uint)hc >> lev) & 0x1f;
                    int          flag = 1 << idx;
                    int          bmp  = cn.bitmap;
                    int          mask = flag - 1;
                    int          pos  = JavaCompat.SparseBitcount(bmp & mask);
                    if ((bmp & flag) != 0)
                    {
                        // 1a) insert below
                        BasicNode cnAtPos = cn.array[pos];
                        if (cnAtPos is INode <K, V> )
                        {
                            INode <K, V> _in = (INode <K, V>)cnAtPos;
                            if (startgen == _in.gen)
                            {
                                return(_in.rec_insert(k, v, hc, lev + 5, this, startgen, ct));
                            }
                            else
                            {
                                if (GCAS(cn, cn.renewed(startgen, ct), ct))
                                {
                                    // return rec_insert (k, v, hc, lev, parent,
                                    // startgen, ct);
                                    // tailrec
                                    continue;
                                }
                                else
                                {
                                    return(false);
                                }
                            }
                        }
                        else if (cnAtPos is SNode <K, V> )
                        {
                            SNode <K, V> sn = (SNode <K, V>)cnAtPos;
                            if (sn.hc == hc && equal((K)sn.k, k, ct))
                            {
                                return(GCAS(cn, cn.updatedAt(pos, new SNode <K, V>(k, v, hc), gen), ct));
                            }
                            else
                            {
                                CNode <K, V>    rn = (cn.gen == gen) ? cn : cn.renewed(gen, ct);
                                MainNode <K, V> nn = rn.updatedAt(pos, inode(CNode <K, V> .dual(sn, sn.hc, new SNode <K, V>(k, v, hc), hc, lev + 5, gen)), gen);
                                return(GCAS(cn, nn, ct));
                            }
                        }
                    }
                    else
                    {
                        CNode <K, V>    rn     = (cn.gen == gen) ? cn : cn.renewed(gen, ct);
                        MainNode <K, V> ncnode = rn.insertedAt(pos, flag, new SNode <K, V>(k, v, hc), gen);
                        return(GCAS(cn, ncnode, ct));
                    }
                }
                else if (m is TNode <K, V> )
                {
                    clean(parent, ct, lev - 5);
                    return(false);
                }
                else if (m is LNode <K, V> )
                {
                    LNode <K, V>    ln = (LNode <K, V>)m;
                    MainNode <K, V> nn = ln.inserted(k, v);
                    return(GCAS(ln, nn, ct));
                }
                throw new RuntimeException("Should not happen");
            }
        }
Ejemplo n.º 15
0
 public INode(MainNode <K, V> bn, Gen g) : base(g)
 {
     WRITE(bn);
 }
Ejemplo n.º 16
0
        private MainNode <K, V> GCAS_Complete(MainNode <K, V> m, ConcurrentTrieDictionary <K, V> ct)
        {
            while (true)
            {
                if (m == null)
                {
                    return(null);
                }
                else
                {
                    // complete the GCAS
                    MainNode <K, V> prev = /* READ */ m.prev;
                    INode <K, V>    ctr  = ct.readRoot(true);

                    if (prev == null)
                    {
                        return(m);
                    }

                    if (prev is FailedNode <K, V> )
                    {
                        // try to commit to previous value
                        FailedNode <K, V> fn = (FailedNode <K, V>)prev;
                        if (CAS(m, fn.prev))
                        {
                            return(fn.prev);
                        }
                        else
                        {
                            // Tailrec
                            // return GCAS_Complete (/* READ */mainnode, ct);
                            m = /* READ */ mainnode;
                            continue;
                        }
                    }
                    else if (prev is MainNode <K, V> )
                    {
                        // Assume that you've read the root from the generation
                        // G.
                        // Assume that the snapshot algorithm is correct.
                        // ==> you can only reach nodes in generations <= G.
                        // ==> `gen` is <= G.
                        // We know that `ctr.gen` is >= G.
                        // ==> if `ctr.gen` = `gen` then they are both equal to
                        // G.
                        // ==> otherwise, we know that either `ctr.gen` > G,
                        // `gen` <
                        // G,
                        // or both
                        if ((ctr.gen == gen) && ct.nonReadOnly())
                        {
                            // try to commit
                            if (m.CAS_PREV(prev, null))
                            {
                                return(m);
                            }
                            else
                            {
                                // return GCAS_Complete (m, ct);
                                // tailrec
                                continue;
                            }
                        }
                        else
                        {
                            // try to abort
                            m.CAS_PREV(prev, new FailedNode <K, V>(prev));
                            return(GCAS_Complete(/* READ */ mainnode, ct));
                        }
                    }
                }
                throw new RuntimeException("Should not happen");
            }
        }
Ejemplo n.º 17
0
        /**
         * Removes the key associated with the given value.
         *
         * @param v
         *            if null, will remove the key irregardless of the value;
         *            otherwise removes only if binding contains that exact key
         *            and value
         * @return null if not successful, an Option[V] indicating the previous
         *         value otherwise
         */
        public Option <V> rec_remove(K k, V v, int hc, int lev, INode <K, V> parent, Gen startgen, ConcurrentTrieDictionary <K, V> ct)
        {
            MainNode <K, V> m = GCAS_READ(ct); // use -Yinline!

            if (m is CNode <K, V> )
            {
                CNode <K, V> cn   = (CNode <K, V>)m;
                int          idx  = (int)((uint)hc >> lev) & 0x1f;
                int          bmp  = cn.bitmap;
                int          flag = 1 << idx;
                if ((bmp & flag) == 0)
                {
                    return(Option <V> .makeOption());
                }
                else
                {
                    int        pos = JavaCompat.SparseBitcount(bmp & (flag - 1));
                    BasicNode  sub = cn.array[pos];
                    Option <V> res = null;
                    if (sub is INode <K, V> )
                    {
                        INode <K, V> _in = (INode <K, V>)sub;
                        if (startgen == _in.gen)
                        {
                            res = _in.rec_remove(k, v, hc, lev + 5, this, startgen, ct);
                        }
                        else
                        {
                            if (GCAS(cn, cn.renewed(startgen, ct), ct))
                            {
                                res = rec_remove(k, v, hc, lev, parent, startgen, ct);
                            }
                            else
                            {
                                res = null;
                            }
                        }
                    }
                    else if (sub is SNode <K, V> )
                    {
                        SNode <K, V> sn = (SNode <K, V>)sub;
                        if (sn.hc == hc && equal(sn.k, k, ct) && (v == null || v.Equals(sn.v)))
                        {
                            MainNode <K, V> ncn = cn.removedAt(pos, flag, gen).toContracted(lev);
                            if (GCAS(cn, ncn, ct))
                            {
                                res = Option <V> .makeOption(sn.v);
                            }
                            else
                            {
                                res = null;
                            }
                        }
                        else
                        {
                            res = Option <V> .makeOption();
                        }
                    }

                    if (res is None <V> || (res == null))
                    {
                        return(res);
                    }
                    else
                    {
                        if (parent != null)
                        { // never tomb at root
                            MainNode <K, V> n = GCAS_READ(ct);
                            if (n is TNode <K, V> )
                            {
                                cleanParent(n, parent, ct, hc, lev, startgen);
                            }
                        }

                        return(res);
                    }
                }
            }
            else if (m is TNode <K, V> )
            {
                clean(parent, ct, lev - 5);
                return(null);
            }
            else if (m is LNode <K, V> )
            {
                LNode <K, V> ln = (LNode <K, V>)m;
                if (v == null)
                {
                    Option <V>      optv = ln.get(k);
                    MainNode <K, V> nn   = ln.removed(k, ct);
                    if (GCAS(ln, nn, ct))
                    {
                        return(optv);
                    }
                    else
                    {
                        return(null);
                    }
                }
                else
                {
                    Option <V> tmp = ln.get(k);
                    if (tmp is Some <V> )
                    {
                        Some <V> tmp1 = (Some <V>)tmp;
                        if (tmp1.Equals(v))
                        {
                            MainNode <K, V> nn = ln.removed(k, ct);
                            if (GCAS(ln, nn, ct))
                            {
                                return(tmp);
                            }
                            else
                            {
                                return(null);
                            }
                        }
                    }
                }
            }
            throw new RuntimeException("Should not happen");
        }
Ejemplo n.º 18
0
        public bool CAS_PREV(MainNode <K, V> oldval, MainNode <K, V> nval)
        {
            var prev_val = Interlocked.CompareExchange(ref prev, nval, oldval);

            return(prev == nval);
        }
Ejemplo n.º 19
0
        /**
         * Looks up the value associated with the key.
         *
         * @return null if no value has been found, RESTART if the operation
         *         wasn't successful, or any other value otherwise
         */
        public Object rec_lookup(K k, int hc, int lev, INode <K, V> parent, Gen startgen, ConcurrentTrieDictionary <K, V> ct)
        {
            while (true)
            {
                MainNode <K, V> m = GCAS_READ(ct); // use -Yinline!

                if (m is CNode <K, V> )
                {
                    // 1) a multinode
                    CNode <K, V> cn   = (CNode <K, V>)m;
                    int          idx  = (int)((uint)hc >> lev) & 0x1f;
                    int          flag = 1 << idx;
                    int          bmp  = cn.bitmap;
                    if ((bmp & flag) == 0)
                    {
                        return(null); // 1a) bitmap shows no binding
                    }
                    else
                    { // 1b) bitmap contains a value - descend
                        int       pos = ((uint)bmp == 0xffffffff) ? idx : JavaCompat.SparseBitcount(bmp & (flag - 1));
                        BasicNode sub = cn.array[pos];
                        if (sub is INode <K, V> )
                        {
                            INode <K, V> _in = (INode <K, V>)sub;
                            if (ct.isReadOnly() || (startgen == ((INodeBase <K, V>)sub).gen))
                            {
                                return(_in.rec_lookup(k, hc, lev + 5, this, startgen, ct));
                            }
                            else
                            {
                                if (GCAS(cn, cn.renewed(startgen, ct), ct))
                                {
                                    // return rec_lookup (k, hc, lev, parent,
                                    // startgen, ct);
                                    // Tailrec
                                    continue;
                                }
                                else
                                {
                                    return(RESTART); // used to be throw
                                }
                                // RestartException
                            }
                        }
                        else if (sub is SNode <K, V> )
                        {
                            // 2) singleton node
                            SNode <K, V> sn = (SNode <K, V>)sub;
                            if (((SNode <K, V>)sub).hc == hc && equal(sn.k, k, ct))
                            {
                                return(sn.v);
                            }
                            else
                            {
                                return(null);
                            }
                        }
                    }
                }
                else if (m is TNode <K, V> )
                {
                    // 3) non-live node
                    return(cleanReadOnly((TNode <K, V>)m, lev, parent, ct, k, hc));
                }
                else if (m is LNode <K, V> )
                {
                    // 5) an l-node
                    Option <V> tmp = ((LNode <K, V>)m).get(k);
                    return((tmp is Option <V>) ? tmp : null);
                }
                throw new RuntimeException("Should not happen");
            }
        }
Ejemplo n.º 20
0
 bool CAS(MainNode <K, V> old, MainNode <K, V> n)
 {
     Interlocked.CompareExchange(ref mainnode, n, old);
     return(mainnode == n);
 }
Ejemplo n.º 21
0
 private void WRITE(MainNode <K, V> nval)
 {
     mainnode = nval;
 }
Ejemplo n.º 22
0
 public void WRITE_PREV(MainNode <K, V> nval)
 {
     prev = nval;
 }
Ejemplo n.º 23
0
 public FailedNode(MainNode <K, V> p)
 {
     this.p = p;
     WRITE_PREV(p);
 }
Ejemplo n.º 24
0
        /**
         * Inserts a new key value pair, given that a specific condition is met.
         *
         * @param cond
         *            null - don't care if the key was there
         *            KEY_ABSENT - key wasn't there
         *            KEY_PRESENT - key was there
         *            other value `v` - key must be bound to `v`
         * @return null if unsuccessful, Option[V] otherwise (indicating
         *         previous value bound to the key)
         */
        public Option <V> rec_insertif(K k, V v, int hc, Object cond, int lev, INode <K, V> parent, Gen startgen, ConcurrentTrieDictionary <K, V> ct)
        {
            while (true)
            {
                MainNode <K, V> m = GCAS_READ(ct); // use -Yinline!

                if (m is CNode <K, V> )
                {
                    // 1) a multiway node
                    CNode <K, V> cn   = (CNode <K, V>)m;
                    int          idx  = (int)((uint)hc >> lev) & 0x1f;
                    int          flag = 1 << idx;
                    int          bmp  = cn.bitmap;
                    int          mask = flag - 1;
                    int          pos  = JavaCompat.SparseBitcount(bmp & mask);

                    if ((bmp & flag) != 0)
                    {
                        // 1a) insert below
                        BasicNode cnAtPos = cn.array[pos];
                        if (cnAtPos is INode <K, V> )
                        {
                            INode <K, V> _in = (INode <K, V>)cnAtPos;
                            if (startgen == _in.gen)
                            {
                                return(_in.rec_insertif(k, v, hc, cond, lev + 5, this, startgen, ct));
                            }
                            else
                            {
                                if (GCAS(cn, cn.renewed(startgen, ct), ct))
                                {
                                    // return rec_insertif (k, v, hc, cond, lev,
                                    // parent, startgen, ct);
                                    // tailrec
                                    continue;
                                }
                                else
                                {
                                    return(null);
                                }
                            }
                        }
                        else if (cnAtPos is SNode <K, V> )
                        {
                            SNode <K, V> sn = (SNode <K, V>)cnAtPos;
                            if (cond == null)
                            {
                                if (sn.hc == hc && equal(sn.k, k, ct))
                                {
                                    if (GCAS(cn, cn.updatedAt(pos, new SNode <K, V>(k, v, hc), gen), ct))
                                    {
                                        return(Option <V> .makeOption(sn.v));
                                    }
                                    else
                                    {
                                        return(null);
                                    }
                                }
                                else
                                {
                                    CNode <K, V>    rn = (cn.gen == gen) ? cn : cn.renewed(gen, ct);
                                    MainNode <K, V> nn = rn.updatedAt(pos, inode(CNode <K, V> .dual(sn, sn.hc, new SNode <K, V>(k, v, hc), hc, lev + 5, gen)), gen);
                                    if (GCAS(cn, nn, ct))
                                    {
                                        return(Option <V> .makeOption()); // None;
                                    }
                                    else
                                    {
                                        return(null);
                                    }
                                }
                            }
                            else if (cond == INode <K, V> .KEY_ABSENT)
                            {
                                if (sn.hc == hc && equal(sn.k, k, ct))
                                {
                                    return(Option <V> .makeOption(sn.v));
                                }
                                else
                                {
                                    CNode <K, V>    rn = (cn.gen == gen) ? cn : cn.renewed(gen, ct);
                                    MainNode <K, V> nn = rn.updatedAt(pos, inode(CNode <K, V> .dual(sn, sn.hc, new SNode <K, V>(k, v, hc), hc, lev + 5, gen)), gen);
                                    if (GCAS(cn, nn, ct))
                                    {
                                        return(Option <V> .makeOption()); // None
                                    }
                                    else
                                    {
                                        return(null);
                                    }
                                }
                            }
                            else if (cond == INode <K, V> .KEY_PRESENT)
                            {
                                if (sn.hc == hc && equal(sn.k, k, ct))
                                {
                                    if (GCAS(cn, cn.updatedAt(pos, new SNode <K, V>(k, v, hc), gen), ct))
                                    {
                                        return(Option <V> .makeOption(sn.v));
                                    }
                                    else
                                    {
                                        return(null);
                                    }
                                }
                                else
                                {
                                    return(Option <V> .makeOption());// None;
                                }
                            }
                            else
                            {
                                if (sn.hc == hc && equal(sn.k, k, ct) && sn.v.Equals(cond))
                                {
                                    if (GCAS(cn, cn.updatedAt(pos, new SNode <K, V>(k, v, hc), gen), ct))
                                    {
                                        return(Option <V> .makeOption(sn.v));
                                    }
                                    else
                                    {
                                        return(null);
                                    }
                                }
                                else
                                {
                                    return(Option <V> .makeOption()); // None
                                }
                            }
                        }
                    }
                    else if (cond == null || cond == INode <K, V> .KEY_ABSENT)
                    {
                        CNode <K, V> rn     = (cn.gen == gen) ? cn : cn.renewed(gen, ct);
                        CNode <K, V> ncnode = rn.insertedAt(pos, flag, new SNode <K, V>(k, v, hc), gen);
                        if (GCAS(cn, ncnode, ct))
                        {
                            return(Option <V> .makeOption());// None
                        }
                        else
                        {
                            return(null);
                        }
                    }
                    else if (cond == INode <K, V> .KEY_PRESENT)
                    {
                        return(Option <V> .makeOption());// None;
                    }
                    else
                    {
                        return(Option <V> .makeOption()); // None
                    }
                }
                else if (m is TNode <K, V> )
                {
                    clean(parent, ct, lev - 5);
                    return(null);
                }
                else if (m is LNode <K, V> )
                {
                    // 3) an l-node
                    LNode <K, V> ln = (LNode <K, V>)m;
                    if (cond == null)
                    {
                        Option <V> optv = ln.get(k);
                        if (insertln(ln, k, v, ct))
                        {
                            return(optv);
                        }
                        else
                        {
                            return(null);
                        }
                    }
                    else if (cond == INode <K, V> .KEY_ABSENT)
                    {
                        Option <V> t = ln.get(k);
                        if (t == null)
                        {
                            if (insertln(ln, k, v, ct))
                            {
                                return(Option <V> .makeOption());// None
                            }
                            else
                            {
                                return(null);
                            }
                        }
                        else
                        {
                            return(t);
                        }
                    }
                    else if (cond == INode <K, V> .KEY_PRESENT)
                    {
                        Option <V> t = ln.get(k);
                        if (t != null)
                        {
                            if (insertln(ln, k, v, ct))
                            {
                                return(t);
                            }
                            else
                            {
                                return(null);
                            }
                        }
                        else
                        {
                            return(null); // None
                        }
                    }
                    else
                    {
                        Option <V> t = ln.get(k);
                        if (t != null)
                        {
                            if (((Some <V>)t).get().Equals(cond))
                            {
                                if (insertln(ln, k, v, ct))
                                {
                                    return(new Some <V>((V)cond));
                                }
                                else
                                {
                                    return(null);
                                }
                            }
                            else
                            {
                                return(Option <V> .makeOption());
                            }
                        }
                    }
                }
                //                throw new RuntimeException ("Should not happen");
            }
        }