DySy: Dynamic symbolic execution for invariant inference

Download: PDF.

“DySy: Dynamic symbolic execution for invariant inference” by Christoph Csallner, Nikolai Tillmann, and Yannis Smaragdakis. In ICSE 2008, Proceedings of the 30th International Conference on Software Engineering, (Leipzig, Germany), May 2008, pp. 281-290.

Abstract

Dynamically discovering likely program invariants from concrete test executions has emerged as a highly promising software engineering technique. Dynamic invariant inference has the advantage of succinctly summarizing both “expected” program inputs and the subset of program behaviors that is normal under those inputs. In this paper, we introduce a technique that can drastically increase the relevance of inferred invariants, or reduce the size of the test suite required to obtain good invariants. Instead of falsifying invariants produced by pre-set patterns, we determine likely program invariants by combining the concrete execution of actual test cases with a simultaneous symbolic execution of the same tests. The symbolic execution produces abstract conditions over program variables that the concrete tests satisfy during their execution. In this way, we obtain the benefits of dynamic inference tools like Daikon: the inferred invariants correspond to the observed program behaviors. At the same time, however, our inferred invariants are much more suited to the program at hand than Daikon's hard-coded invariant patterns. The symbolic invariants are literally derived from the program text itself, with appropriate value substitutions as dictated by symbolic execution. We implemented our technique in the DySy tool, which utilizes a powerful symbolic execution and simplification engine. The results confirm the benefits of our approach. In Daikon's prime example benchmark, we infer the majority of the interesting Daikon invariants, while eliminating invariants that a human user is likely to consider irrelevant.

Download: PDF.

BibTeX entry:

@inproceedings{CsallnerTS2008,
   author = {Christoph Csallner and Nikolai Tillmann and Yannis Smaragdakis},
   title = {{DySy}: Dynamic symbolic execution for invariant inference},
   booktitle = {ICSE 2008, Proceedings of the 30th International
	Conference on Software Engineering},
   pages = {281--290},
   address = {Leipzig, Germany},
   month = may,
   year = {2008}
}

Back to Publications whose methodology uses invariant detection.