User`s guide
124
Appendix A: dbx Commands
stopi in procedure
Sets an unconditional breakpoint to stop execution upon
entering the speciļ¬ed procedure (for machine-level
debugging).
stopi [expression|variable]
Inspects the value before executing each machine
instruction and stops if the value has changed.
If the expression is of type pointer, look at the data pointed
to and watch until it changes. If the expression is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stopi [expression|variable] at address
Inspects the value when the program is at the given address
and stops if the value has changed (for machine-level
debugging).
If the expression is of type pointer, look at the data pointed
to and watch until it changes. If the expression is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stopi [expression|variable] in procedure
Inspects the value at every machine instruction within a
given procedure and stops if the value has changed.
If the expression is of type pointer, look at the data pointed
to and watch until it changes. If the expression is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stopi if expression
Evaluates the expression before executing each machine
instruction and stops if the expression is true.
stopi at address if expression
Evaluates the expression at the given address and stops if
the expression is true (for machine-level debugging).
stopi in procedure if expression
Evaluates the expression at every machine instruction
within a given procedure and stops if the expression is true.