8000 GitHub - statinf-otawa/otawa: OTAWA: An Open Toolbox for Adaptive WCET Analysis. Fork of https://git.renater.fr/anonscm/git/otawa/otawa.git
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

statinf-otawa/otawa

Repository files navigation

OTAWA 2.0, code named "Reloaded"

Information

OTAWA (Open Tool for Adaptive WCET Analysis) is a framework of C++ classes dedicated to static analyses of programs in machine code and to the computation of WCET (Worst Case Execution Time).

OTAWA is freely available (under the LGPL license) and is developed by the TRACES (https://www.irit.fr/TRACES/site/) team at IRIT labs (http://www.irit.fr), université Paul Sabatier, France.

OTAWA provides state-of-art WCET analyses like IPET (Implicit Path Enumeration Technique) and a lot of facilities to work on binary programs (control flow graphs, loop detection and so on).

OTAWA supports successfully many architecture as PowerPC, ARM 32, Sparc, TriCore, etc.

The official website of OTAWA may be found at the URL below: http://www.otawa.fr

You may contact us at otawa@irit.fr.

Installing from sources

Currently, OTAWA has two main requirements:

These libraries has to be built and installed or may be provided, without installation, in the same directory as OTAWA.

Then the procedure is straight-forward:

$ cd otawa
$ cmake .
$ make install

Basically, OTAWA tries to install in your standard file system. To specify a directory, add option --CMAKE_INSTALL_PREFIX=PATH to select a specific installation path.

Developer manual

For help in order to develop an extension for OTAWA, refer to the developer manual.

0