While profiling my application in Visual Studio 2013 (probably applies to other versions as well), I noticed the application consumes cycles upon enter/exit of a method. Where do these cycles come from, and how can I eliminate them eventually?
Below is an example of a profiling session I did recently. While the percentages are rather low (0.9% and <0.1%) in this screenshot, I experienced it fluctuates between 0% and 25% per method.
Or
These cycles can come from calling the constructors/destructors of local objects.
To test this theory you could create a class, that runs a computational loop in the destructor and make sure the compiler does not optimize it away. Then in your function code, create an object of that class on the stack (without allocating it dynamically). When the function exits, the destructor of the local object will be called, thus - your loop. You should see a consistent cycle count.
Also passing/extracting arguments and saving stack according to calling conventions might add some more cycles upon enter and exit.
If you get 25% values that's probably because you have low amount of work in the function's body.