Skip Navigation Links | |
Exit Print View | |
![]() |
Oracle Solaris Studio 12.3: Debugging a Program With dbx Oracle Solaris Studio 12.3 Information Library |
4. Viewing and Navigating To Code
5. Controlling Program Execution
6. Setting Breakpoints and Traces
8. Evaluating and Displaying Data
11. Debugging Multithreaded Applications
16. Debugging Fortran Using dbx
17. Debugging a Java Application With dbx
18. Debugging at the Machine-Instruction Level
19. Using dbx With the Korn Shell
20. Debugging Shared Libraries
The dis command disassembles machine instructions. It is valid only in native mode.
Disassemble count instructions (default is 10), starting at address address.
Disassemble instructions from address1 through address2.
Disassemble 10 instructions, starting at the value of + (see examine Command).
where:
address is the address at which to start disassembling. The default value of address is the address after the last address previously assembled. This value is shared by the examine command (see examine Command).
address1 is the address at which to start disassembling.
address2 is the address at which to stop disassembling.
count is the number of instructions to disassemble. The default value of count is 10.
When used with a function address, disassembles the entire function. When used without parameters, disassembles the remains of the current visiting function, if any.