DEBUG SYMBOLIZE — VMS FORTRAN_5.2
Converts a virtual address to a symbolic representation. If the
given address is a static address, the address is symbolized as
the nearest preceding symbol name plus an offset. If it is also
a code address, a line number is included in the symbolization if
a line number can be found which covers the address. If the
address is a register name, the debugger displays symbols in all
SET modules that are bound to that register. If the address is a
stack address, then the debugger tries to symbolize to a variable
in the routine whose call frame contains that address.
Symbolization is now done automatically on EXAMINE commands, so
SYMBOLIZE now has limited usefulness.
Format:
SYMBOLIZE address-expression [,address-expression...]
Additional information available:
Examples
DBG> EVAL/ADDR X
400
DBG> SYMB 400
address 400:
FOO\X
DBG> EXAM 400
FOO\X: 3
DBG> SYMB R0
address %R0:
FOO\Y
FOO\Z
Parameters
address-expression
any address expression which is valid in the currently set
language.