gpt4 book ai didi

c++ - 从 llvm pass 打印点文件

转载 作者:行者123 更新时间:2023-11-30 17:34:19 33 4
gpt4 key购买 nike

我知道,从您的 llvm 传递中,您可以调用:viewCFG() 或 viewCFGOnly 来查看函数的 graphviz 表示。它们会创建 .dot 文件并将其存储在 Linux 下\tmp 文件夹中的某个位置。有没有办法指定在哪个文件中保存.dot代码?

最佳答案

摘自: http://llvm.org/docs/doxygen/html/CFGPrinter_8cpp_source.html

   std::string Filename = "cfg." + F.getName().str() + ".dot";
errs() << "Writing '" << Filename << "'...";

std::string ErrorInfo;
raw_fd_ostream File(Filename.c_str(), ErrorInfo, sys::fs::F_Text);

if (ErrorInfo.empty())
WriteGraph(File, (const Function*)&F);
else
errs() << " error opening file for writing!";
errs() << "\n";
return false;

使用GraphWriter.h接口(interface)

关于c++ - 从 llvm pass 打印点文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23410835/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com