Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ilyasergey/monadic-cfa

Generic implementation of different CFA families based on monadic decomposition
https://github.com/ilyasergey/monadic-cfa

abstract-interpretation haskell k-cfa monads static-analysis

Last synced: 27 days ago
JSON representation

Generic implementation of different CFA families based on monadic decomposition

Awesome Lists containing this project

README

        

Project structure:
------------------

CFA - General modules, shred between different CFA instances and languages
|- AFJ - A family of analyses based on CESK Abstract Machine
| for A-Normal Featherweight Java
|- CESK - A family of analyses based on CESK Abstract Machine
| for direct-style Lambda-calculus
|- CPS - A family of analyses based on CPS Scheme

How to build:
-------------

Build everything:

make all

Build CPS-based analyses:

make cps

Build CESK-based analyses:

make cesk

Build ANF FJ-based analyses:

make afj

Clean:

make clean