4

Is there any online tool/software(open-source preferred) that makes data flow graph of a C code and also gives p-use and c-use variables in it.

user3522401
  • 229
  • 2
  • 10

1 Answers1

0

Given a tool that provides def-use chains (and vice versa) you can compute c-use and p-use pretty easily.

I know of 3 tools that can do this for C:

  • GCC
  • Clang
  • DMS Software Reengineering Toolkit

(What do you mean "online"?)

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341