Opened 11 years ago
Closed 11 years ago
#9775 closed enhancement (fixed)
Switch between source and disassembly
Reported by: | bonefish | Owned by: | anevilyak |
---|---|---|---|
Priority: | normal | Milestone: | Unscheduled |
Component: | Applications/Debugger | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
Sometimes it can be helpful to have a look at the disassembly of the current function, even when the source code is available. An option to switch between source code and disassembly would be nice.
Change History (2)
comment:1 by , 11 years ago
Status: | new → in-progress |
---|
comment:2 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | in-progress → closed |
Implemented in hrev45778.
Note:
See TracTickets
for help on using tickets.
From a quick look, the only real hurdle to implementing this is that FunctionSourceCodeRequested() will always preferentially load the actual source if available and will skip disassembly entirely if that's the case. I'd propose simply adding an optional boolean parameter to the latter to explicitly override that behavior and force loading disassembly, so that SourceView can make use of that to request it if not yet available.