Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nunoplopes/alive
Alive: Automatic LLVM's Instcombine Verifier
https://github.com/nunoplopes/alive
llvm verification
Last synced: 6 days ago
JSON representation
Alive: Automatic LLVM's Instcombine Verifier
- Host: GitHub
- URL: https://github.com/nunoplopes/alive
- Owner: nunoplopes
- License: apache-2.0
- Created: 2014-06-11T09:59:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-16T16:33:37.000Z (over 1 year ago)
- Last Synced: 2024-10-31T06:01:24.030Z (20 days ago)
- Topics: llvm, verification
- Language: Python
- Homepage:
- Size: 1.21 MB
- Stars: 219
- Watchers: 16
- Forks: 22
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Alive: Automatic LLVM's Instcombine Verifier
============================================Alive is a tool that can prove the correctness of InstCombine optimizations
specified in a high-level language.NOTE: Alive is in maintenance mode; no new features are planned. Please try
[Alive2](https://github.com/AliveToolkit/alive2) instead.Requirements
------------
Alive requires Python 2.7.x and Z3 4.3.2 (or later), which can be obtained
from https://github.com/Z3Prover/z3 (use the unstable branch)Usage
-----
./alive.py file.optThe 'tests' directory has multiple examples of optimizations.
More Information
----------------
Please see this paper for more details about Alive:http://www.cs.utah.edu/~regehr/papers/pldi15.pdf
Online Version
--------------
Alive is also available online at: http://rise4fun.com/AliveGenerating Benchmarks
---------------------
Alive will automatically generate benchmarks in SMT-LIB 2 format when the
'bench' directory exists and when python is run in non-optimized mode (the
default).
These benchmarks are over the bit-vector theory and may or may not have
quantifiers.