Tagged Questions
'Very Sleepy' is a non-invasive profiler for the Windows platform that allows statistical profiling of C++ applications through sampling the instruction pointer register based off the original 'Sleepy' version.
6
votes
2answers
190 views
Why would our software run so much slower under virtualization?
I'm trying to figure out why our software runs so much slower when run under virtualization. Most of the stats I've seen, say it should be only a 10% performance penalty in the worst case, but on a ...
4
votes
2answers
4k views
Using the “Very Sleepy” profiler to profile DLLs
I have a DLL that I want to profile.. I tried to use Very Sleepy, but I can't seem to get the source file column to display which source file the functions came from, all it displays is "unknown".. ...
3
votes
2answers
2k views
C++ Profiling: KiFastSystemCallRet
I searched for this after seeing it's the top rated item when profiling using Very Sleepy, and it seems everyone gets the answer "it's a system function, ignore it". But Sleepy's hint for the ...
2
votes
1answer
383 views
How does Very Sleepy find symbol files?
Has anyone figured out how the Very Sleepy profiler finds PDB files? It seems like it doesn't use the _NT_SYMBOL_PATH env variable.. I've had success by putting PDBs in the same directory as the ...
1
vote
0answers
81 views
How can I get Very Sleepy profiler to recognize function names in C++ binary?
I have a tool that is mixed C#/managed C++/unmanaged C++ built with Visual Studio 2010. Code is actually spread across an .exe (I'll call it mybinary.exe) and a .dll (mylib.dll.)
I've set the build ...
1
vote
6answers
402 views
C++ while profiling found performance problem in ntdll - how to get rid of it?
I'm working on a little rigidbody simulation. I use the Irrlicht engine for display and openMesh to work with the meshes.
Now I profiled my app using VerySleepy and noticed that most of the time is ...
0
votes
0answers
59 views
What do the time measurements presented near curly braces in Very Sleepy profiler represent?
I'm using Very Sleepy to profile some C++ code, and I notice that in the Source view, where it shows the red line-by-lime time-spent measurements, there are always measurement on the lines that only ...
0
votes
0answers
75 views
What permissions/rights for Very Sleepy profiling?
I would like allow a user to use of Very Sleepy, without give him administrators rights.
Without admin' rights, he can launch Very Sleepy then launch an application with the software to profile it. ...
0
votes
2answers
365 views
RtlpNtMakeTemporaryKey - VerySleepy indicates that this takes a lot of time
I'm profiling some computationally intensive code of mine, and was surprised to see that the function RtlpNtMakeTemporaryKey takes up a huge chunk of time. It's module is ntdll and the source file is ...