Operações atômicas para lista duplamente vinculada sem bloqueio

Estou escrevendo uma lista duplamente vinculada sem bloqueio com base nesses documentos:

"Reclamação de Memória Livre de Bloqueio Eficiente e Confiável Baseada na Contagem de Referência" Anders Gidenstam, Membro, IEEE, Marina Papatriantafilou, Håkan Sundell e Philippas Tsigas

"Bloqueios livres e listas duplamente ligadas" Håkan Sundell, Philippas Tsigas

Para esta questão podemos colocar de lado o primeiro artigo.

Neste artigo, eles usam uma maneira inteligente de armazenar um sinalizador de exclusão e um ponteiro em uma palavra. (Mais informaçõesAqui)

Pseudo código para esta seção no artigo:

union Link
    : word
    (p,d): {pointer to Node, boolean} 

structure Node
    value: pointer to word
    prev: union Link
    next: union Link

E meu código para o pseudo código acima:

template< typename NodeT >
struct LockFreeLink
{
public:
    typedef NodeT NodeType;

private:

protected:
    std::atomic< NodeT* > mPointer;

public:
    bcLockFreeLink()
    {
        std::atomic_init(&mPointer, nullptr);
    }
    ~bcLockFreeLink() {}

    inline NodeType* getNode() const throw()
    {
        return std::atomic_load(&mPointer, std::memory_order_relaxed);
    }
    inline std::atomic< NodeT* >* getAtomicNode() const throw()
    {
        return &mPointer;
    }
};

struct Node : public LockFreeNode
{
    struct Link : protected LockFreeLink< Node >
    {
        static const int dMask = 1;
        static const int ptrMask = ~dMask;

        Link() { } throw()
        Link(const Node* pPointer, bcBOOL pDel = bcFALSE) throw()
        { 
            std::atomic_init(&mPointer, (reinterpret_cast<int>(pPointer) | (int)pDel)); 
        }

        Node* pointer() const throw() 
        { 
            return reinterpret_cast<Node*>(
                std::atomic_load(&data, std::memory_order_relaxed) & ptrMask); 
        }
        bool del() const throw() 
        { 
            return std::atomic_load(&data, std::memory_order_relaxed) & dMask; 
        }
        bool compareAndSwap(const Link& pExpected, const Link& pNew) throw() 
        { 
            Node* lExpected = std::atomic_load(&pExpected.mPointer, std::memory_order_relaxed);
            Node* lNew = std::atomic_load(&pNew.mPointer, std::memory_order_relaxed);

            return std::atomic_compare_exchange_strong_explicit(
                &mPointer,
                &lExpected,
                lNew,
                std::memory_order_relaxed,
                std::memory_order_relaxed); 
        }

        bool operator==(const Link& pOther) throw() 
        { 
            return std::atomic_load(data, std::memory_order_relaxed) == 
                std::atomic_load(pOther.data, std::memory_order_relaxed); 
        }
        bool operator!=(const Link& pOther) throw() 
        { 
            return !operator==(pOther); 
        }
    };

    Link mPrev;
    Link mNext;
    Type mData;

    Node() {};
    Node(const Type& pValue) : mData(pValue) {};
};

Neste documento existe esta função para definir a marca de exclusão do link como true:

procedure SetMark(link: pointer to pointer to Node)
    while true do
       node = *link;
       if node.d = true or CAS(link, node, (node.p, true)) then break;

E meu código para esta função:

void _setMark(Link* pLink)
{
    while (bcTRUE)
    {
        Link lOld = *pLink;
        if(pLink->del() || pLink->compareAndSwap(lOld, Link(pLink->pointer(), bcTRUE)))
            break;
    }
}

Mas meu problema está emcompareAndSwap função onde devo comparar e trocar três variáveis ​​atômicas. Informações sobre o problema éAqui

(Na realidadenew variável na função compare e swap não é importante porque é thread local)

Agora minha pergunta: como posso escrever a função compareAndSwap para comparar e trocar três varialbe atômica ou onde estou cometer erros?

(Desculpe-me por longa pergunta)

Editar:

problema semelhante está no papel do gerenciador de memória:

function CompareAndSwapRef(link:pointer to pointer toNode,
old:pointer toNode, new:pointer toNode):boolean
    if CAS(link,old,new) then
        if new=NULL then
            FAA(&new.mmref,1);
            new.mmtrace:=false;
    if old=NULLthen FAA(&old.mmref,-1);
    return true;
return false; 

aqui novamente eu devo comparar e trocar três variáveis ​​atômicas. (Note que meus argumentos são do tipoLink e devo comparar e trocarmPointer doLink)

questionAnswers(3)

yourAnswerToTheQuestion