학술논문

Revisiting Out-of-SSA Translation for Correctness, Code Quality and Efficiency
Document Type
Conference
Source
2009 International Symposium on Code Generation and Optimization Code Generation and Optimization, 2009. CGO 2009. International Symposium on. :114-125 Mar, 2009
Subject
Computing and Processing
Interference
Optimizing compilers
Algorithm design and analysis
Program processors
Constraint optimization
Design optimization
Costs
Code standards
Flow graphs
Tree graphs
SSA form
Compilers
JIT-compilation
Language
Abstract
Static single assignment (SSA) form is an intermediate program representation in which many code optimizations can be performed with fast and easy-to-implement algorithms. However, some of these optimizations create situations where the SSA variables arising from the same original variable now have overlapping live ranges. This complicates the translation out of SSA code into standard code. There are three issues to consider: correctness, code quality (elimination of copies), and algorithm efficiency (speed and memory footprint). Briggs et al. proposed patches to correct the initial approach of Cytron et al. A cleaner and more general approach was proposed by Sreedhar et al., along with techniques to reduce the number of generated copies. We propose a new approach based on coalescing and a precise view of interferences, in which correctness and optimizations are separated. Our approach is provably correct and simpler to implement, with no patches or particular cases as in previous solutions, while reducing the number of generated copies. Also, experiments with SPEC CINT2000 show that it is 2x faster and 10x less memory-consuming than the Method III of Sreedhar et al., which makes it suitable for just-in-time compilation.