-
Notifications
You must be signed in to change notification settings - Fork 142
Writing an Intra Procedural Monotone Framework Analysis
Fabian Schiebel edited this page Jul 8, 2023
·
2 revisions
This is probably the easiest analysis one can write and as a beginner, you may want to start here.
Using the (intra-procedural) monotone framework, a data-flow analysis problem can be described within a single function (caution: function calls within the function under analysis are not followed, but the call-sites are still in the code and trigger a callback, of course).
In order to formulate such an analysis, just implement the IntraMonotoneProblem
interface.
The implementation is then handed over to the corresponding IntraMonotoneSolver
which solves the analysis problem.
- Home
- Reference Material
- Getting Started:
- Building PhASAR
- Using PhASAR with Docker
- A few uses of PhASAR
- Coding Conventions
- Contributing to PhASAR
- Errors and bug reporting
- Update to Newer LLVM Versions
- OS Support