Inspect Manual
High-Level Inspect Commands
Inspect Manual—429164-006
6-176
Default Value
LINE[S] [ FILE [ ALL ] ] [ OFFSET ]
directs Inspect to display the scope path for a code location followed by the
EDIT line number corresponding to the location:
scope-path.#line-number
The FILE clause directs Inspect to add the eight-character name of the source
file; ALL directs Inspect to use the fully qualified file name:
scope-path.#line-number (source-file)
The OFFSET clause directs Inspect to add the octal instruction offset of a
location from the start of its containing statement:
scope-path.#line-number + %octal-numI
The OFFSET clause is useful when execution has been suspended in the
middle of a statement; this often happens with data breakpoints.
STATEMENT[S] [ OFFSET ]
directs Inspect to display the scope path for a code location followed by the
location's statement number within its containing scope unit:
scope-path.statement-number
Additionally, the STATEMENT clause is used to determine if statement
numbers or labels will be used for FORTRAN code locations. If the location
format is STATEMENTS, then the location by statement-number is used. If the
location format does not include STATEMENT, then statement-label is used.
For more information, see Section 11, Using Inspect With FORTRAN.
The OFFSET clause directs Inspect to add the octal instruction offset of a
location from the start of its containing statement:
scope-path.statement-number + %octal-numI
Default Value
The default INSPLOCL file sets the location format as follows:
SET LOCATION FORMAT HIGH = LINES FILE OFFSET
SET LOCATION FORMAT LOW = INSTRUCTIONS