Previous Topic: Use a Different Module for Assembler StructuresNext Topic: Display Program Code for a Program Not at a Breakpoint


CORE Commands For PL/I Symbolic Programs

If you have purchased the PL/I Symbolic Option and are currently stopped at a breakpoint, use CORE to view storage associated with a symbolic PL/I program. The PL/I Symbolic CORE facilities work just like the COBOL Symbolic facilities of CORE, with the following differences:

Example

See this sample in the following examples.

PROC1:  ...;
     DCL 1    A,
              2 FIELDB  ...,
                3 FIELDC ...;
   SUBPROC:  ...;
     DCL 1   A,
             2 FIELDB  ...,
               3 FIELDC ...;
   END SUBPROC;

To display the variable FIELDB declared in PROC1, enter:

CORE='PROC1:FIELDB'

To display the variable FIELDB declared in SUBPROC, enter:

CORE='SUBPROC:FIELDB'

See the following sample for the next example.

DCL   Q PTR;
DCL   R PTR;
DCL   Z BASED(Q);

To display Z using R as the pointer, code the CORE command as follows:

CORE='R >Z'