CALL

                       +-,--------------+
                       V                |
>>-CALL--+-+-name- -+----+------------+-+-------------------+--;-->
         | +-(expr)-+    +-expression-+                     |
         +-OFF--+-ANY-----------------+--------------------+
         |      +-ERROR---------------+                    |
         |      +-FAILURE-------------+                    |
         |      +-HALT----------------+                    |
         |      +-NOTREADY------------+                    |
         |      +-USER--usercondition-+                    |
         +-ON--+-ANY-----------------+--+----------------+-+
               +-ERROR---------------+  +-NAME--trapname-+
               +-FAILURE-------------+
               +-HALT----------------+
               +-NOTREADY------------+
               +-USER--usercondition-+

CALL calls a routine (if you specify name) or controls the trapping of certain conditions (if you specify ON or OFF).

To control trapping, you specify OFF or ON and the condition you want to trap. OFF turns off the specified condition trap. ON turns on the specified condition trap. All information on condition traps is contained in Conditions and Condition Traps.

To call a routine, specify name, which must be a literal string or symbol that is taken as a constant. The usercondition is a single symbol that is taken as a constant. The trapname is a symbol or string taken as a constant. The routine called can be:

An internal routine

A function or subroutine that is in the same program as the CALL instruction or function call that calls it.

A built-in routine

A function or subroutine that is defined as part of the Rexx language.

An external routine

A function or subroutine that is neither built-in nor in the same program as the CALL instruction or function call that calls it.

If name is a string in which case you specify it in quotation marks, the search for internal routines is bypassed, and only a built-in function or an external routine is called. Note that the names of built-in functions are in uppercase. Therefore, write the name in the literal string in uppercase characters.

For Windows, file names can be in uppercase, lowercase, or mixed case. The search for files is case-insensitive to case. Therefore, when using CALL to run a Rexx subroutine contained on a disk file (external routine), the case does not matter.

For Unix, file names can be in uppercase, lowercase, or mixed case. The search for files uses the following rules:

  1. If the name is a quoted string then no conversion of the name is performed prior to the search for the file.

  2. If the name is unquoted then it is first converted to all uppercase and then the search is performed. If the name is not found then it is converted to all lowercase and searched for again. A mixed case name search is NOT performed.

You can also specify (expr), any valid expression enclosed in parentheses. The expression is evaluated before any of the argument expressions, and the value is the target of the CALL instruction. The language processor does not translate the expression value into uppercase, so the evaluated name must exactly match any label name. (See Labels for a description of label names.)

The called routine can optionally return a result. In this case, the CALL instruction is functionally identical with the clause:

                 +-,--------------+
                 V                |
>>-result=name(----+------------+-+--)--;----------------------><
                   +-expression-+

If the called routine does not return a result, you get an error if you call it as a function.

You can use any number of expressions, separated by commas. The expressions are evaluated from left to right and form the arguments during execution of the routine. Any ARG, PARSE ARG, or USE ARG instruction or ARG built-in function in the called routine accesses these objects while the called routine is running. You can omit expressions, if appropriate, by including extra commas.

The CALL then branches to the routine called name, using exactly the same mechanism as function calls. See Functions. The search order is as follows:

Internal routines

These are sequences of instructions inside the same program, starting at the label that matches name in the CALL instruction. If you specify the routine name in quotation marks, then an internal routine is not considered for that search order. The RETURN instruction completes the execution of an internal routine.

Built-in routines

These are routines built into the language processor for providing various functions. They always return an object that is the result of the routine. (See ARG (Argument).)

Note: You can call any built-in function as a subroutine. Any result is stored in RESULT. Simply specify CALL, the function name (with no parenthesis) and any arguments:

call length "string"   /* Same as length("string") */
say result             /* Produces: 6              */

However, if you include a trailing comma, you must include the semicolon to prevent the interpretation of the last comma as a continuation character.

External routines

Users can write or use routines that are external to the language processor and the calling program. You can code an external routine in Rexx or in any language that supports the system-dependent interfaces. If the CALL instruction calls an external routine written in Rexx as a subroutine, you can retrieve any argument strings with the ARG, PARSE ARG, or USE ARG instructions or the ARG built-in function.

For more information on the search order, see Search Order.

During execution of an internal routine, all variables previously known are generally accessible. However, the PROCEDURE instruction can set up a local variables environment to protect the subroutine and caller from each other. The EXPOSE option on the PROCEDURE instruction can expose selected variables to a routine.

Calling an external program as a subroutine is similar to calling an internal routine. The external routine, however, is an implicit PROCEDURE in that all the caller's variables are always hidden. The status of internal values, for example NUMERIC settings, start with their defaults (rather than inheriting those of the caller). In addition, you can use EXIT to return from the routine.

When control reaches an internal routine but not a built-in function or external routine, the line number of the CALL instruction is available in the variable SIGL (in the caller's variable environment). This can be used as a debug aid because it is possible to find out how control reached a routine. Note that if the internal routine uses the PROCEDURE instruction, it needs to EXPOSE SIGL to get access to the line number of the CALL.

After the subroutine processed the RETURN instruction, control returns to the clause following the original CALL. If the RETURN instruction specified an expression, the variable RESULT is set to the value of that expression. Otherwise, the variable RESULT is dropped (becomes uninitialized).

An internal routine can include calls to other internal routines, as well as recursive calls to itself.

Example:

/* Recursive subroutine execution... */
arg z
call factorial z
say z"! =" result
exit
factorial: procedure     /* Calculate factorial by  */
  arg n                  /*  recursive invocation.  */
  if n=0 then return 1
  call factorial n-1
  return  result * n
  

During internal subroutine (and function) execution, all important pieces of information are automatically saved and then restored upon return from the routine. These are: