Replies: 1 comment
-
@brianrob I did a quick research and it looks like PDB contains inlining information. Could we maybe use that information here? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's say that in C++ I have function A in fileA.cpp which calls function B in fileB.cpp. Let's say function B is inlined into A by the compiler/linker.
When investigating a CPU sampling profile I can use alt+D or right click->goto source and it will show me line attribution for CPU usage of function A by opening fileA.cpp. In my case a lot of the CPU usage comes from function B. How can I see line attribution from perfview for the inlined function B in fileB.cpp? I don't seem to find a way to make perfview open fileB.cpp when function A is defined in fileA.cpp
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions