opt -dot-callgraph test.ll
时间: 2023-06-20 21:03:51 浏览: 207
这是一个 LLVM 工具命令,用于生成 LLVM IR 文件中的函数调用图。在终端中执行以下命令:
```
opt -dot-callgraph test.ll
```
其中,`test.ll` 是你要生成调用图的 LLVM IR 文件。生成的调用图将以 `.dot` 格式保存在同一目录下,文件名为 `test.dot`。你可以使用 `graphviz` 工具将 `.dot` 文件转换为图片格式,例如:
```
dot -Tpng test.dot -o test.png
```
其中,`-Tpng` 表示要将 `.dot` 文件转换为 `png` 格式的图片,`-o` 表示输出文件名为 `test.png`。
阅读全文