for a simple pointer-increment allocator (do they have an official name?) I am looking for a lock-free algorithm. It seems trivial, but I'd like to get soem feedback whether my implementaiton is correct.

not threadsafe implementation:

byte * head;  // current head of remaining buffer
byte * end;   // end of remaining buffer

void * Alloc(size_t size)
{
   if (end-head < size)
     return 0; // allocation failure

   void * result = head;
   head += size;
   return head;
}

My attempt at a thread safe implementation:

void * Alloc(size_t size)
{
  byte * current;
  do 
  {
     current = head;
     if (end - current < size)
        return 0;  // allocation failure
  } while (CMPXCHG(&head, current+size, current) != current));
  return current;
}

where CMPXCHG is an interlocked compare exchange with (destination, exchangeValue, comparand) arguments, returning the original value

Looks good to me - if another thread allocates between the get-current and cmpxchg, the loop attempts again. Any comments?

link|improve this question

How do you deallocate? – anon Aug 28 '09 at 21:01
@Neil - I've seen patterns like this before. Quickly allocate memory from an arena like this for different parts of the operation and just free the entire thing when finished. – Michael Aug 28 '09 at 21:04
as Michael said - you only deallocate the chunk (head) as a whole. Perfect for building large, immutable/grow-only data structures. – peterchen Aug 29 '09 at 8:18
This is called linear allocator. – kotlinski Feb 5 '11 at 1:02
@kotlinksi: Never heard that term, but it's at least unambigous. – peterchen Feb 5 '11 at 7:36
feedback

1 Answer

up vote 2 down vote accepted

Your current code appears to work. Your code behaves the same as the below code, which is a simple pattern that you can use for implementing any lock-free algorithm that operates on a single word of data without side-effects

do
{
    original = *data; // Capture.

    result = DoOperation(original); // Attempt operation
} while (CMPXCHG(data, result, original) != original);

EDIT: My original suggestion of interlocked add won't quite work here because you support trying to allocate and failing if not enough space left. You've already modified the pointer and causing subsequent allocs to fail if you used InterlockedAdd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.