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 somexs[i]may be updated; - ABA problem with
c >= MAX_Candc = 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)?