https://github.com/petergarnaes/software-analysis-tool
A basic framework software analysis and optmizer written in Haskell
https://github.com/petergarnaes/software-analysis-tool
Last synced: 3 months ago
JSON representation
A basic framework software analysis and optmizer written in Haskell
- Host: GitHub
- URL: https://github.com/petergarnaes/software-analysis-tool
- Owner: petergarnaes
- Created: 2017-09-13T13:11:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-13T13:41:06.000Z (over 7 years ago)
- Last Synced: 2025-01-11T13:28:32.339Z (4 months ago)
- Language: Haskell
- Size: 284 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# software-analysis-tool
A basic framework software analysis and optmizer written in Haskell## Functionality
This framework can perform basic control flow analysis of an AST representing an imperative programming language called "While".## Implementation
Implemented with Monads. User must implement their custom lattice and transfer functions, like the illustration below shows.
# Example use
An example analysis and optimizer for live variable analysis can be found in `LiveVariable.hs`, just load it in `ghci` and call `test1`.