backedge checks

Edward Nevill ed at camswl.com
Thu Feb 19 17:46:59 PST 2009


> 
> I knew this wasn't right, and I just realized why.  Every processor has its own
> data cache, and these caches may not be coherent.  You could potentially wait
> for ever before a processor would read the changed dispatch table.
> 
> I think this could probably be solved by sending a signal to every thread that
> is supposed to move to a safepoint.  If there's any additional processing needed
> the signal handler can do it.
> 
> Also, the thread updating the table would have to flush its own caches/write buffers/etc.
> 
> Finally, unless the table itself is marked as volatile there's no guarantee that
> it would be written before the flush.

If you seriously think any of this code is MP safe at the thread level
then I suspect you have been doing some recreational pharmaceuticals:-)

Think about is, any update to the thread list needs to be MP safe.
Even the setting of the _state variable needs to me MP safe and its isn't
it just does

	_state = _synchronizing;

Exactly the same problems apply to this, it may not be updated in the cache
of another processor.

Even the kernels user level atomic compare and swap is not MP safe (it may
be MP safe on some implementations but it is not guaranteed so), and you
are going to have a hard job making your program MP safe if your atomic
operations are not MP safe.

Regards,
Ed.



More information about the zero-dev mailing list