Sturdy is a library to create sound static analyses in Haskell.
Static analyses are tools that produce information about computer programs without actually running the program.
Examples of static analyses are type checkers, bug finders (e.g. Java FindBugs), analyses for security (e.g. taint analyses), and analyses that are used for compiler optimizations.
A static analysis is sound if the results of the analysis reflect the actual runtime behavior of the program and users can rely on the results.
For example, if a static analysis used for compiler optimizations were unsound, the optimization might change the semantics of the program, which leads to unexpected behavior at runtime.
To this end, Sturdy follows the theory of _Compositional Soundness Proofs of Abstract Interpreters_ to simplify soundness proofs of static analyses.
To this end, Sturdy follows the theory of _Compositional Soundness Proofs of Abstract Interpreters_ and _Sound and Reusable Components for Abstract Interpretation_ to simplify soundness proofs of static analyses.
In short, Sturdy factorizes the concrete interpreter and abstract interpreter (the static analysis) into a _generic interpreter_.
Sturdy factorizes the concrete interpreter and abstract interpreter (the static analysis) into a _generic interpreter_.
This generic interpreter is parameterized by interfaces that contain primitive operations that describe the semantics of the language, such as `try`, `catch` and `finally` for exceptions.
The concrete and abstract interpreter then instantiate the generic interpreter by implementing these interfaces.
This reorganization not only decouples different concerns in the implementation of the static analysis, but also in the its soundness proof.
More details can be found in the [paper](https://dl.acm.org/citation.cfm?id=3236767).
This reorganization not only decouples different concerns in the implementation of the static analysis, but also simplifies its soundness proof.
More details can be found in our [ICFP paper](https://dl.acm.org/citation.cfm?id=3236767).
Sturdy allows to construct static analyses modularly from reusable analysis components.
Each analysis component encapsulates a single analysis concern and can be proven sound independently from the analysis where it is used.
Furthermore, the theory of analysis components guarantees that a static analysis is sound, if all its analysis components are sound.
This means that analysis developers do not have to worry about soundness as long as they reuse sound analysis components.
More details can be found in our [OOPSLA paper](https://svenkeidel.de/papers/analysis-components.pdf).