System Debug Reference Manual (32650-90888)

422 Chapter10
System Debug Standard Functions
func nmpath
Parameters
virtaddr
The NM address of translated code for which the closest NM node point is
to be returned.
virtaddr
can be a short pointer, a long pointer, or a full logical code
pointer.
node
The desired node point, either PREV (closest previous node) or NEXT
(closest next node). The default is PREV.
Examples
$nmdebug > wl nmnode(21.24030)
TRANS $21.24024
Print the NM address of the closest previous (by default) NM node point.
$nmdebug > wl nmnode(21.24030,"next")
TRANS $21.2404c
Print the NM address of the next NM node point.
Limitations, Restrictions
none
func nmpath
Returns the full NM code path name corresponding to the indicated address.
Syntax
nmpath (
virtaddr
[
length
])
The string returned by NMPATH is one of the following two formats:
file_name
/
module_name
:
parent_procname
.
procname
or
file_name
/
module_name
:
procname
Detailed descriptions of each of the above return strings follow:
file_name
The name of the file containing the procedure.
module_name
The name of the module containing the procedure.
parent_procname
The name of the level one procedure containing the nested procedure
at the specified address.
procname
The name of the procedure.