Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code with to_be_called_at_any_time being called millions times a second.

static int_t xs[MAX_C];
static size_t c = 0;

void to_be_called_at_any_time()
{
  if (c >= MAX_C)
  {
    c = 0;
    print_xs(xs);
  }

  xs[++c] = rand();
}

with xs and c being a "per-core" pieces of data. This version is obviously not thread-safe though:

  • while some thread is print_xsing, it may be preempted on the same core and some xs[i] may be updated;
  • ABA problem with c >= MAX_C and c = 0;

I could use OS synchronization primitives, but I'm afraid of high overhead (which I should minimize at all costs) since they use lock prefix locking memory bus (seems to be unacceptable).

I think I may fix the second problem by introducing the following function (x64 assembly language using Intel syntax; Windows x64 calling conventions):

uint64 compare_exchange(uint64 comparand, uint64 *dest, uint64 newdest);
/*
{
  if (comparand == *dest)
    *dest = newdest;
  return *dest;
}
*/

compare_exchange proc
    ; rcx contains comparand
    ; rdx contains dest
    ; r8 contains newdest
    mov rax, rcx
    cmpxchg [rdx], r8
    ret
compare_exchange endp

and updating the if in to_be_called_at_any_time to:

if (compare_exchange(MAX_C, &c, 0) == MAX_C)
  print_xs(xs);

But what can I do with the first one? I think I can fix it in a similar manner (using while compare_exchange and some flag variable) but wouldn't it bring higher overhead (since waiting threads would be just looping wasting their quantums and blocking execution)?

Is there any kind of pattern for dealing with situations like this? Or should I just try both solutions and compare the results (overhead values) (feel like I'll do it anyway)?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.