Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio. How to use search in disassembly window?

I want to find function in disassembly window using Ctrl+F by it's name (from symbols). How can I search through disassembly? Is there any extension?

like image 558
Oleh Nechytailo Avatar asked Mar 03 '14 19:03

Oleh Nechytailo


1 Answers

I don't think searching is possible. However, you can:

1) jump to an address if you know it (e.g. 0x76EC0B28). Enter it in the Address field of the disassembly window.

2) jump to using mangled (decorated) name of the function (e.g. _GetProcAddress@8). Same as above.

3) add a breakpoint using the function name (New->Break at function... in the Breakpoints window), then use "Go to disassembly" from the context menu.

The last one possibly only works in VS2012 and above.

like image 167
Igor Skochinsky Avatar answered Sep 22 '22 07:09

Igor Skochinsky