Program Dependency Charts (PDG)

I am new to LLVM and I need to analyze the program (control flow and data flow analysis). I could not find a PDG or task schedule in LLVM. How can i do this?

+3
source share
2 answers

The developer implemented the creation of PDG using LLVM for his project:

https://github.com/DengMinghua/LLVM-Program-Dependency-Graph-Generator

+2
source
-1

Source: https://habr.com/ru/post/1794350/


All Articles