Abstract
The first Futamura projection enables compilation and high performance code generation of user programs by partial evaluation of language interpreters. Previous work has shown that online partial evaluation can yield the same peak performance as a specialized JIT compiler. However, this comes with the downside of additional compile time: Online partial evaluation of language interpreters has to specialize interpreter code on the fly to the dynamic types used at run time to create efficient target code. As a result, the time spent on partial evaluation itself is a significant contributor to the overall compile time of a method. The second Futamura projection solves this problem by self-applying partial evaluation on the partial evaluation algorithm, effectively generating language-specific compilers from interpreters. This typically reduces compilation time compared to the first projection. Previous work employed the second projection to some extent, however we are not aware of any usage of the generic second Futamura projection in a state-of-the-art language runtime. To solve the problems of self-application and code-size explosion, this paper proposes CompGen, an approach based on code generation of subsets of language interpreters. It is loosely based upon the idea of the second Futamura projection. Our implementation of CompGen for GraalVM shows that our usage of a novel code-generation algorithm allows us to generate efficient compilers that emit fast target programs which easily outperform the first Futamura projection in compilation time. We evaluated our approach with the high-performance JavaScript implementation of GraalVM and standard JavaScript benchmarks, showing that our approach achieves >2X speedups of partial evaluation.
Author supplied keywords
Cite
CITATION STYLE
Latifi, F., Leopoldseder, D., Wimmer, C., & Mössenböck, H. (2021). CompGen: generation of fast JIT compilers in a multi-language VM. In DLS 2021 - Proceedings of the 17th ACM SIGPLAN International Symposium on Dynamic Languages, co-located with SPLASH 2021 (pp. 35–47). Association for Computing Machinery, Inc. https://doi.org/10.1145/3486602.3486930
Register to see more suggestions
Mendeley helps you to discover research relevant for your work.