- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I am using VTune 6.0 and Intel C Compiler 8.0 (MS Visual Studio 6.0, Win XP). Why can't I see all functions in VTune's Call Graph? Many functions are missing, some are shown with TotalTime=0... When I compile program with Microsoft's C compiler all functions are there, everything always works fine. I have set all Visual Studio Project/Settings like the VTune User's Manual says.
Please help.
コピーされたリンク
2 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
This could be because the compiler is inlining the functions. What optimization settings are you setting when you use the Intel compiler?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Yes, you were right, I have excluded inlining (Ob0) and it works fine. I also had to exclude /fast option since it probably includes inlining as an option. Helped me very much, thanx.
