Analyzers
Talk to fellow users of Intel Analyzer tools (Intel VTune™ Profiler, Intel Advisor)

no call stack information #2

Marián__VooDooMan__M
New Contributor II
1,010 Views

Greetings,

I am running i7 Haswell architecture and I don't see "call stack information" in analysis as I had for Core2 in VTune.

Am I doing something wrong, or this architecture simply doesn't support this in hardware counters?

My config: Win 8.1 x64, project c++0x x64, ICC 14 SP1 update 2, VTune the latest to date.

0 Kudos
15 Replies
Bernard
Valued Contributor I
1,010 Views

 

Maybe your code has inlined functions?

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

iliyapolak wrote:

Maybe your code has inlined functions?

Yes, indeed, and IPO is AFAIK inline-ing functions where it is possible.

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

Though ICC will NOT inline functions if there are inline specifications, when the inlineing will be counter-productive.

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

I mean the case when I use VTuune inside of MSVC 2013 integration. I get for my Haswell few analysis, but in GUI there are no "collect stacks",

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

I mean before running the program.

0 Kudos
Bernard
Valued Contributor I
1,010 Views

 

Try to disable optimization and rerun the VTune.

I do not think if resolving function calls could be dependend on specifc CPU counters.

0 Kudos
Peter_W_Intel
Employee
1,010 Views

My comments are:

1. If you are using general-exploration analysis and want to see call stack info, you have to add option "-knob enable-stack-collect=true". This is not a default enabled option.

2. You can use optimization, but read this article.

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

@Peter Wang (Intel)

re 1. ICC is complaining about "/Qknob enable-stack-collect=true" being obsolete and will be removed in future

re 2. I need IPO optimization

The problem is, when I was on Core2 platform, in IDE's VTune GUI I could hit check box "collect stacks". Now I am on i7 Haswell, and I cannot do such thing. I worked around the problem by copying "advanced hostspots" to "custom analysis", and then I have option to collect stack. Inline'd functions are okay for me (when collecting stack informations).

But this is a bit tricky, I wish I could do it in IDE easily, without creating new custom analysis.

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

Maybe a feature request...?

0 Kudos
Peter_W_Intel
Employee
1,010 Views

There are check boxes for "collect stack" on GUI, my box is Haswell processor. Are you using latest VTune Amplifier XE 2013 Update 16?

 

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

nevermind, I have just noticed it collects stack by default.

Another problem is, "advanced hotspots" analysis stops collecting hardware events after exactly 70 seconds. In the GUI the time counter stops increasing and button to mark timeline is inactive. When the process exits, there is only first 70 seconds to examine.

0 Kudos
Peter_W_Intel
Employee
1,010 Views

Collecting stack is not default option, when you start a new analysis, for example, advanced-hotspots.

Collector will stop if you set Duration. Otherwise Collector will stop only the process exits.

0 Kudos
David_A_Intel1
Employee
1,010 Views

But I do think the option is "sticky."  Once you select stacks in Advanced Hotspots and run a collection, the next time you open up the Advanced Hotspots analysis type, stacks will be selected.  FWIW ;)

0 Kudos
Marián__VooDooMan__M
New Contributor II
1,010 Views

MrAnderson (Intel) wrote:

But I do think the option is "sticky."  Once you select stacks in Advanced Hotspots and run a collection, the next time you open up the Advanced Hotspots analysis type, stacks will be selected.  FWIW ;)

But where I can enable such option? I always do "Advanced Hotspots", whether I  do or not optimization/ilining, I get an error without stack information.

PS:: I am attaching VTune conf.459509459509

0 Kudos
Peter_W_Intel
Employee
1,010 Views

Using option "-knob collection-detail=stack-sampling" for advanced-hotspots analysis.

Using option "-g -O0" to disable inline function, or using "-O2 -g -inline-debug-info" enables inline function and keep symbol info (function name in report).

0 Kudos
Reply