Controls the "tracing" of macro execution.
Examples |
 |
$nmdat > macl @ all
macro driver
machelp = 'This macro calls macros "triple", "min", and "inc" in order' +
'to demonstrate the MACECHO, MACREF, and MACTRACE commands'
{ loc one 1;
loc two 2;
wl min ( triple(two) inc(one) )
}
macro inc
( num : ANY )
machelp = 'returns the increment of "num"'
{ loc temp num;
loc temp temp + 1;
return temp
}
macro min
( parm1 : ANY ,
parm2 : ANY )
machelp = 'returns the min of "parm1" or "parm2"'
{ if parm1 < parm2
then return parm1
else return parm2
}
macro triple
( input : ANY )
machelp = 'triples the parameter "input"'
{ return input *3
}
|
Assume that the macros listed above have been defined. A few of the macros use local variables inefficiently, for the purpose of demonstration.
Macros normally execute silently, as they invoke commands, and often other macros. In this example, macro driver is invoked, and this macro calls several other macros. Since macro tracing is not enabled for any of these macros, execution proceeds silently.
$nmdat > mactrace inc 3
$nmdat > driver
--> enter macro: inc
--> parms macro: inc
( num : ANY = $1 )
<-- exit macro: inc : U16 = $2
$2
|
The MACTRACE command is used to enable macro tracing for macro inc at trace level 3. Now, every time macro inc is invoked, trace information is displayed. Since the trace level for this macro is
set to level 3, entry into the macro is displayed, along with the
parameter value(s) at entry, and exit from the macro is displayed,
along with the function return value.
$nmdat > macl @ trace
macro inc trace = 3
|
The MACLIST command is used to display all macros that have
tracing enabled (level >= 1). Macro inc is shown to have tracing
enabled at level 3.
$nmdat > mactrace @ 3
$nmdat > driver
--> enter macro: driver
--> enter macro: min
--> enter macro: triple
--> parms macro: triple
( input : ANY = $2 )
<-- exit macro: triple : U16 = $6
--> enter macro: inc
--> parms macro: inc
( num : ANY = $1 )
<-- exit macro: inc : U16 = $2
--> parms macro: min
( parm1 : ANY = $6 ,
parm2 : ANY = $2 )
<-- exit macro: min : U16 = $2
$2
<-- exit macro: driver
|
In this example, macro tracing is set to level 3 for all macros.
Tracing is disabled for all macros.