Multithreaded paranoia - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:13:28Z http://stackoverflow.com/feeds/question/409688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409688/multithreaded-paranoia 18 Multithreaded paranoia Caspin 2009-01-03T19:42:32Z 2009-01-05T16:09:36Z <p>This is a complex question, please consider carefully before answering.</p> <p>Consider this situation. Two threads (a reader and a writer) access a single global int. Is this safe? Normally, I would respond without thought, yes!</p> <p>However, it seems to me that Herb Sutter doesn't think so. In his articles on effective concurrency he discusses a <a href="http://www.ddj.com/cpp/210600279" rel="nofollow">flawed lock-free queue</a> and a <a href="http://www.ddj.com/hpc-high-performance-computing/210604448" rel="nofollow">corrected version</a>.</p> <p>In the end of the first article and the beginning of the second he discusses a rarely considered trait of variables, write ordering. Int's are atomic, good, but ints aren't necessarily ordered which could foobar any lock-free algorithm, including my above scenario. I fully agree that the only way to <strong><em>guarantee</em></strong> correct multithreaded behavior on all platforms present and future is to use atomics or mutexes.</p> <p>My question is, is this ever a problem on real hardware? Or is this just being pedantic? What about uniprocessor systems? Embedded power pc processors?</p> <p>Clarification: I'm more interested in what Mr. Sutter said about the processor or the cache reordering writes. I can always bust open the assembly for my program to ensure the optimizer isn't screwing me, or just turn it of for one file.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409703#409703 4 Answer by Chris Jester-Young for Multithreaded paranoia Chris Jester-Young 2009-01-03T19:51:13Z 2009-01-03T19:51:13Z <p>Like you said, because of reordering done at cache or processor level, you actually do need some sort of memory barrier to ensure proper synchronisation, especially for multi-processors (and especially on non-x86 platforms). (I am given to believe that single-processor systems don't have these issues, but don't quote me on this---I'm certainly more inclined to play safe and do the synchronised access anyway.)</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409711#409711 7 Answer by Eclipse for Multithreaded paranoia Eclipse 2009-01-03T19:56:55Z 2009-01-03T19:56:55Z <p>Yup - use memory barriers to prevent instruction reordering where needed. In some C++ compilers, the volatile keyword has been expanded to insert implicit memory barriers for every read and write - but this isn't a portable solution. (Likewise with the Interlocked* win32 APIs). Vista even adds some new finer-grained Interlocked APIs which let you specify read or write semantics.</p> <p>Unfortunately, C++ has such a loose memory model that any kind of code like this is going to be non-portable to some extent and you'll have to write different versions for different platforms.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409715#409715 15 Answer by Jason Cohen for Multithreaded paranoia Jason Cohen 2009-01-03T19:59:07Z 2009-01-03T19:59:07Z <p>Your idea of inspecting the assembly is not good enough; the reordering can happen at the hardware level.</p> <p>To answer your question "is this ever a problem on read hardware:" <strong>Yes!</strong> In fact I've run into that problem myself.</p> <p>Is it OK to skirt the issue with uniprocessor systems or other special-case situations? I would argue "no" because five years from now you might need to run on multi-core after all, and then finding all these locations will be tricky (impossible?).</p> <p>One exception: Software designed for embedded hardware applications where indeed you have completely control over the hardware. In fact I have "cheated" like this in those situations on e.g. an ARM processor.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409735#409735 2 Answer by Norman Ramsey for Multithreaded paranoia Norman Ramsey 2009-01-03T20:08:40Z 2009-01-03T20:08:40Z <p>It is a problem on real hardware. A friend of mine works for IBM and makes his living primarily by sussing out this kind of problem in customers' codes.</p> <p>If you want to see how bad things can get, search for academic papers on the Java Memory Model (and also now the C++ memory model). Given the reordering that real hardware can do, trying to figure out what's safe in a high-level language is a nightmare.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409749#409749 2 Answer by Henk for Multithreaded paranoia Henk 2009-01-03T20:16:37Z 2009-01-03T20:16:37Z <blockquote> <p>is this ever a problem on real hardware?</p> </blockquote> <p>Absolutely, particularly now with the move to multiple cores for current and future CPUs. If you're dependent on ordered atomicity to implement features in your application and you are unable to guarantee this requirement via your chosen platform or the use of synchronization primitives, under <em>all</em> conditions i.e. customer moves from a single-core CPU to multi-core CPU, then you are just waiting for a problem to occur.</p> <p>Quoting from the referred to Herb Sutter article (second one)</p> <blockquote> <p>Ordered atomic variables are spelled in different ways on popular platforms and environments. For example:</p> <ul> <li><code>volatile</code> in C#/.NET, as in <code>volatile int</code>.</li> <li><code>volatile</code> or * Atomic* in Java, as in <code>volatile int</code>, <code>AtomicInteger</code>.</li> <li><code>atomic&lt;T&gt;</code> in C++0x, the forthcoming ISO C++ Standard, as in <code>atomic&lt;int&gt;</code>.</li> </ul> </blockquote> <p>I have not seen how C++0x implements ordered atomicity so I'm unable to specify whether the upcoming language feature is a pure library implementation or relies on changes to the language also. You could review the proposal to see if it can be incorporated as a non-standard extension to your current tool chain until the new standard is available, it may even be available already for your situation.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/409750#409750 2 Answer by Rob Walker for Multithreaded paranoia Rob Walker 2009-01-03T20:16:50Z 2009-01-03T20:16:50Z <p>We have run into the problem, albeit on Itanium processors where the instruction reordering is more aggressive than x86/x64.</p> <p>The fix was to use an Interlocked instruction since there was (at the time) no way of telling the compiler to simply but a write barrier after the assignment.</p> <p>We really need language extension to deal with this cleanly. Use of volatile (if supported by the compiler) is too coarse grained for the cases where you are trying to squeeze as much performance out of a piece of code as possible.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/412688#412688 0 Answer by MSalters for Multithreaded paranoia MSalters 2009-01-05T09:55:04Z 2009-01-05T09:55:04Z <p>The answer to the question" is it safe" is inherently ambiguous.</p> <p>It's always safe, even for doubles, in the sense that your computer won't catch fire. It's safe, in the sense that you always will get a value that the int held at some time in the past, It's not safe, in the sense that you may get a value which is/will be updated by another thread.</p> <p>"Atomic" means that you get the second guarantee. Since double usually is not atomic, you could get 32 old and 32 new bits. That's clearly unsafe.</p> http://stackoverflow.com/questions/409688/multithreaded-paranoia/413613#413613 0 Answer by Caspin for Multithreaded paranoia Caspin 2009-01-05T16:09:36Z 2009-01-05T16:09:36Z <p>When I asked the question I most interested in uniprocessor powerpc. In one of the comments <a href="http://stackoverflow.com/users/1553/inscitek-jeff">InSciTek Jeff</a> mentioned the powerpc SYNC and ISYNC instructions. Those where the key to a definitive answer. I found it <a href="http://www.ibm.com/developerworks/eserver/articles/powerpc.html" rel="nofollow">here</a> on IBM's site.</p> <p>The article is large and pretty dense, but the take away is No, it is not safe. On older powerpc's the memory optimizers where not sophisticated enough to cause problems on a uniprocessor. However, the newer ones are much more aggressive, and can break even simple access to a global int.</p>