REXX EXEC considerations
The IBM REXX Compiler can generate either a tokenized REXX executable or a load module REXX executable. BMC AMI OpsA does not support the load module REXX executable.
You can expect significant performance gains when you use tokenized REXX EXECs over interpreted EXECs. These gains, however, depend on the number of external calls (such as IMFEXEC commands) or subroutines that are used.
Wherever possible, REXX functions and subroutines should be built into the parent REXX EXEC. This configuration is much more efficient because it eliminates the function or subroutine load time.
After a REXX EXEC has been analyzed for performance and optimized, subroutines that are called many times by using IMFEXEC SELECT EXEC can be copied internally to the parent and called by using REXX CALL.
BBSAMP member AOXCPUST contains the tokenized version of AOXCPUSI.