Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过 LLVM 计算一个简单的“hello world”程序的加载指令总数?
编写一个遍历模块中所有指令的通道,然后计算完成的指令数isa<LoadInst>(I)。
isa<LoadInst>(I)
有关如何迭代所有指令的信息,请参阅程序员手册。
如果您不确定如何编写通行证,请查看这个方便的指南。