-
Notifications
You must be signed in to change notification settings - Fork 151
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
- Building PhASAR
- Getting Started:
- Using PhASAR with Docker
- FAQ
- Tutorials
- Contributing
- Reference Material
- Update to Newer LLVM Versions