HOME | ENGLISH | IMPRESSUM | KIT

Verified Construction of Static Single Assignment Form

Abstract

Modern compilers use an intermediate representation in static single assignment (SSA) form, which simplifies many optimizations. However, the high implementation complexity of efficient SSA construction algorithms poses a challenge to verified compilers. In this paper, we consider a variant of the recent SSA construction algorithm by Braun et al. that combines simplicity and efficiency, and is therefore a promising candidate to tackle this challenge. We prove the correctness of the algorithm using the theorem prover Isabelle/HOL. Furthermore, we prove that the algorithm constructs pruned SSA form and, in case of a reducible control flow graph, minimal SSA form. To the best of our knowledge, these are the first formal proofs regarding the quality of an SSA construction algorithm. Finally, we replace the unverified SSA construction of the CompCertSSA project with code extracted by Isabelle's code generator to demonstrate the applicability to real world programs.

Resources

  • Bundled version of our Isabelle formalization (last update 2016-03-15): FormalSSA.tar.gz

Requirements

For running the formalization you need

For building the CompCertSSA compiler using our SSA construction algorithm

Build instructions

You can use GNU make to build several targets:

  • compcertSSA: downloads CompCertSSA stable version 2.0 from the CompCertSSA homepage, and applies a patch weaving in some glue code to use the SSA construction from Braun et al. (see ./compcertSSA-Braun.patch for details)

  • FormalSSA: runs the Isabelle formalization and generates the verified SSA construction algorithm. (File ./compcertSSA/midend/SSA/BraunSSA.ml)

  • ccomp: builds the CompCertSSA compiler for the target platform ia32-linux. You can change that by setting the environment variable COMPCERTSSA_TARGET to the target platform of your choice (see Makefile).

  • ifplot: performs measurements on the family of test programs referenced in section 7 of our paper and plots the result via gnuplot. You can change the testing parameters by editing the Makefile.

Veröffentlichungen

2017
M. Wagner, D. Lohner: Minimal Static Single Assignment Form. AFP 2017
2016
S. Ullrich, D. Lohner: Verified Construction of Static Single Assignment Form. AFP 2016
S. Buchwald, D. Lohner, S. Ullrich: Verified Construction of Static Single Assignment Form. CC 2016

Projektbeteiligte

Ehemalige Mitarbeiter
Dr.-Ing. Sebastian Ullrich
Dipl.-Inform. Sebastian Buchwald
Dipl.-Inform. Denis Lohner