Analyzers
Community support for Analyzers (Intel VTune™ Profiler, Intel Advisor, Intel Inspector)
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.

unresolved address

SIRI_U___Intel_
Beginner
280 Views
In my sampling hotspot results, the most active function was listed as . What is this referring to?
0 Kudos
3 Replies
Peter_W_Intel
Employee
280 Views

I heard similar reports before v9.1 - for now, most of such cases are caused by the user, who didn't set compiler/linker options correctly. We suggest the user to use "/Zi", "/DEBUG", "/Fixed:no"fortheir release build.

The user can useVTune Analyzer's "Open Static Module Viewer..." to verify ifexpected functions nameare shown up.

Are you using pure C/C++ programming?

Are you using Large Address space?

Regards, Peter

SIRI_U___Intel_
Beginner
280 Views

Hi Peter,

I used the build options that you suggested and still get the same result. My application has some embedded assembly code as well. what do you mean m=by "large address space" ?

Thanks,

Siri

Peter_W_Intel
Employee
280 Views

Hi Siri,

"Large Address Space" I said last time, I guess your application is big32-bit application, but run it on 64-bit platform to cause out of memory issue (exceed 2 gig). Usually we use "editbin.exe /LARGEADDRESSWARE your_app.exe". Ifyou have no such case, please ignore.

I mentioned to use VTune Analyzer's "Open Static Module Viewer..." to open your app, can you find expected function name (symbols)? (or use "dumpbin.exe /SYMBOLS"?). I want to know if this problem was caused by compiling or VTune Analyzer.

You said that your application has "embedded" assembly code - did you mean "inline" assembly code in C++ code.It should be not the problem!

Regards, Peter

Reply