我有一些獲取基本塊索引的問題。LLVM getBasicBlockIndex()或等效的
for (Function::iterator II = F.begin(), EE = F.end(); II != EE; ++II, ++ii)
{ BasicBlock* BB=II;
我有segfaults或不能使用LLVM中找到的幾種方法的複雜結構。你知道如何簡單地用盡可能在發現的方法:
http://llvm.org/doxygen/Instructions_8h_source.html#l02136
http://llvm.org/doxygen/EdgeBundles_8cpp_source.html#l00078
或者等價的東西?我只想得到一個基本塊的ID。
謝謝!
你心目中的基本塊「索引」或「身份證」是什麼? –