Native Inspect Manual (H06.13+, J06.03+)
NOTE:
• In a paragraph number, the leading zero is significant.
• If locspec consists entirely of digits, and that string of digits matches both a paragraph name
and a line number in the program unit, Native Inspect uses the paragraph name. To specify
the line number in this case, use the filename:line-number notation.
• COBOL paragraph names need not be unique within a program unit. To differentiate among
paragraphs with the same name, specify a qualified paragraph name using the
section.paragraph or paragraph [[in\of] section] notation. If you specify a
paragraph name that is not unique within a program unit, Native Inspect issues an error
indicating that the name is ambiguous and that further qualification is required.
• Native inspect does not support the program-unit.label, or
program-unit.line-number notation.
• Native Inspect does not support setting breakpoints on statement ordinals.
Syntax of native-address
native-address
A 32-bit or 64-bit address. You can specify a native-address by using the following formats:
• Hexadecimal (for example, 0x120001DC0)
• Decimal (for example, 48331845824)
• Octal (for example, 044000016700)
If the address is in the range of 0 through 0xFFFFFFFF, it is sign-extended to form a 64-bit
address.
Example 1 Examples of native-address
Consider the following examples:
• 0x80000 & 0x72000000
If the address is greater than 0xFFFFFFFF, it is treated as a 64-bit address, and no sign
extension is done.
• 0xFFFFC5000000
The output format for native-address is 0xnnnnnnnnnnnnnnnn with leading zeros
included.
Syntax of llce
llce
A low-level conditional expression, used for setting conditional breakpoints with the break(see
break (tbreak) Command (page 67)) and mab command (see mab Command (page 97)).
Low-level conditional expressions are evaluated by the operating system rather than the
debugger, yielding faster conditional breakpoint performance. Their capabilities are more
limited, however, than those of high-level conditions, which you can use with the condition
command (seecondition Command (page 71)).
The syntax is:
-e native-address[& mask] operator value
Where:
Syntax of Common Command Elements 61










