CoFloCo is a static analysis tool to infer automatically symbolic complexity upper and lower bounds of imperative and recursive programs. CoFloCo's analysis is not binded to any specific programming language, instead it takes an abstract representation of programs as an input. The abstract representation is a set of cost equations that can be generated from source code, bytecode or other intermediate representations.
CoFloCo is intended to be used as a backend. Here are some systems that use CoFloCo:
-
CoFloCo+llvm2kittel: A web interface to analyze programs written in C with the help of llvm2kittel and easyinterface.
NOTE: Unfortunately this web interface is down and it is not coming back up for the time being. If you are interesed in how to analyze programs with llvm2kittel, you might want to take a look at https://github.com/aeflores/easyinterface/blob/master/server/bin/cofloco. However, llvm2kittel is not maintained much and it might not work with recent versions of LLVM (it did work with LLVM 3.8).
-
Saco: Saco contains multiple static analyses for concurrent programs written in the ABS language. CoFloCo can be selected as an alternative backend to PUBS for the resource analysis.
-
SRA: A resource analysis tool for a concurrent language with explicit acquire and release operations for virtual machines.
The main techniques used in CoFloCo are described in the papers:
- Antonio Flores-Montoya, Reiner Hähnle: Resource Analysis of Complex Programs with Cost Equations. APLAS 2014: 275-295
- Antonio Flores-Montoya: Upper and Lower Amortized Cost Bounds of Programs Expressed as Cost Relations. FM 2016
- Antonio Flores-Montoya: Cost Analysis of Programs Based on the Refinement of Cost Relations. PhD thesis
There is a CoFloco docker image that you can use to run CoFloCo:
docker pull afloresmontoya/cofloco
Once you have pulled the image, you can run:
docker run -it afloresmontoya/cofloco
and execute CoFloCo inside it, e.g.:
cofloco -i examples/testing/ex1.ces
-
Linux or Mac: In principle it should be possible to use CoFloCo in Windows but it might require some slight changes.
-
SWI-Prolog (Tried on Versions 6.6.6 and 7.4.2) or YAP-Prolog (Development version 6.3.3)
-
GMP: The GNU Multiple Precision Arithmetic Library (It is required by SWI-Prolog)
-
Parma Polyhedra Library (PPL): CoFloCo uses the latest version available at the moment (1.2)
To install CoFloCo and its dependencies in your machine, you can follow the steps documented in
the docker file Dockerfile
.
See the file ./USAGE.md
for a description of the parameters, input format, explanation of the outputs, etc.
examples/
: Example input filesexamples/evaluation/
: A set of examples used in the evaluation of the toolexamples/testing/
:Small examples to exercise different functionalities of the tool.
src/
: Source files of CoFloCosrc/main_cofloco.pl
: The main module- ...
interfaces
: Scripts to generate cost relations from other languagesstatic_binary
: Makefile to generate a statically linked binarycofloco
: main script for executing CoFloCocofloco_yap
: script for executing CoFloCo with YAPcofloco_mac
: script for executing CoFloCo in a MACREADME
: this fileUSAGE
: basic instructions of how to use CoFloCo
CoFloCo has been compared to other cost analysis tools in several experimental evaluations. The most recent evaluation can be found here.
antoniofloresmontoya@gmail.com
- Antonio Flores-Montoya
- Clemens Danninger (Lisp interface)
CoFloCo uses the stdlib created by the costa team (http://costa.ls.fi.upm.es/) and was in part inspired by PUBS http://costa.ls.fi.upm.es/pubs/pubs.php.