In an earlier post I mentioned that one goal of the new introductory curriculum at Carnegie Mellon is to teach parallelism as the general case of computing, rather than an esoteric, specialized subject for advanced students. Many people are incredulous when I tell them this, because it immediately conjures in their mind the myriad complexities…
I recently diagnosed the root cause of a concurrency bug, CR6822370,
and thought it sufficiently interesting to share the details. (CR 6822370 actually represents a
cluster of bugs that are now thought to be related by a common underlying issue).
Briefly, we have a lost wakeup bug in the native C++ Parker::park() platform-specific
infrastructure code that implements java.util.concurrent.LockSupport.park().
The lost wakeup arises from a race that itself arises because of architectural
reordering that in turn occurs because of missing memory barrier instructions.
The lost wakeup may manifest as various 'hangs' or instances of progress failure.
Think writing a compiler is difficult? It is—unless you use Parrot, a complete compiler construction kit. With Parrot, crafting a new programming language is as easy as authoring a new website.
Program performance is always a concern, even in this era of high-performance hardware. This article, the first in a two-part series, guides you around the many pitfalls associated with benchmarking Java code. Part 2 covers the statistics of benchmarking and offers a framework for performing Java benchmarking. Because almost all new languages are virtual machine-based, the general principles the article describes have broad significance for the programming community at large.
H. Burchell, O. Larose, S. Kaleba, and S. Marr. Proceedings of the 20th ACM SIGPLAN International Conference on Managed Programming Languages and Runtimes
, page 1--14. ACM, (October 2023)
A. Georges, L. Eeckhout, and D. Buytaert. Proceedings of the 23rd ACM SIGPLAN conference on Object-oriented programming systems languages and applications
, page 367--384. ACM, (October 2008)
E. Berger, S. Stern, and J. Pizzorno. 17th USENIX Symposium on Operating Systems Design and Implementation (OSDI 23)
, Boston, MA, USENIX Association, (July 2023)
Y. Lin, J. Sun, Y. Xue, Y. Liu, and J. Dong. 2017 IEEE/ACM 39th International Conference on Software Engineering (ICSE)
, page 393--403. IEEE, (May 2017)
Y. Zheng, L. Bulej, and W. Binder. Proceedings of the 2015 ACM SIGPLAN International Conference on Object-Oriented Programming, Systems, Languages, and Applications
, page 433--450. ACM, (October 2015)
T. Mytkowicz, A. Diwan, M. Hauswirth, and P. Sweeney. Proceedings of the 31st ACM SIGPLAN Conference on Programming Language Design and Implementation
, page 187--197. ACM, (June 2010)
G. Bracha, and D. Ungar. Proceedings of the 19th annual ACM SIGPLAN conference on Object-oriented programming, systems, languages, and applications
, ACM, (October 2004)
T. Verwaest, C. Bruni, D. Gurtner, A. Lienhard, and O. Niestrasz. Proceedings of the ACM International Conference on Object-Oriented Programming Systems Languages and Applications
, page 774--789. ACM, (October 2010)