开发者

How to put a breakpoint at the end of a function in windbg, so that I dont need to edit it even if some lines have been added/deleted in the source?

开发者 https://www.devze.com 2022-12-25 17:10 出处:网络
I need to log some data when some functions are hit, both at the start of execution and and the end of it. While i have no pro开发者_JAVA百科blem with putting breakpoints at the start of the functions

I need to log some data when some functions are hit, both at the start of execution and and the end of it. While i have no pro开发者_JAVA百科blem with putting breakpoints at the start of the functions(using bu [module]!functionname, I dont know how to put a breakpoint at the end of a function, SUCH THAT i dont need to edit the breakpoint everytime i add/delete somelines from the file/function. I'm sure its a very common scenario, just that I dont know how its done !! Can anyone elucidate ?


You can use the breakpoint at the start of the function to setup the breakpoint at the return address. Like this:

bu [module]!functionname "bp /1 @$ra \".echo Exit functionname ; g\"; .echo Enter functionname; g"

Caveat: this may not work if an exception is thrown in the function.


Here is what you are exactly looking for

Get function return values and profiling information in .NET using Windbg

It is explained how to set a break-point on function return

The same is applicable for native code also.

Hope this helps.


you can use pt command ,which means step to next Return. for example when you hit your function at the begin, enter only pt command will hit the code at wherever return was called.

0

精彩评论

暂无评论...
验证码 换一张
取 消