User`s guide

123
stop at line if expression
Evaluates the expression at the given source line. Stops if
the expression is true.
stop in procedure if expression
Evaluates the expression at every source line within a given
procedure. Stops if the expression is true.
stop [expression1|variable] if expression2
Tests both conditions before executing each source line.
Stops if both conditions are true.
If expression1 is of type pointer, look at the data pointed to
and watch until it changes. If expression1 is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stop [expression1|variable] at line if expression2
Tests both conditions at the given source line. Stops if both
conditions are true.
If expression1 is of type pointer, look at the data pointed to
and watch until it changes. If expression1 is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stop [expression1|variable] in procedure if expression2
Tests both conditions at every source line within a given
procedure. Stops if both conditions are true.
If expression1 is of type pointer, look at the data pointed to
and watch until it changes. If expression1 is not of type
pointer, look at the 32 bits at that address (assume the
expression evaluates to an address).
stopi at Sets an unconditional breakpoint at the current machine
instruction.
stopi at address
Sets an unconditional breakpoint at the specified address
(for machine-level debugging).