![]() |
System Debug Reference Manual
> Chapter 2 User InterfaceData Types |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Integer TypesThree sizes of signed and unsigned integers are supported:
Boolean TypeData of type BOOL may assume the values TRUE and FALSE. Integer values also are generally accepted where BOOLs are called for, and when this occurs, zero (0) is taken to be FALSE; all other values are TRUE. String TypesThe type STR is used to represent variable-length character (text) data. Strings quoted with single and double quotes (' and ") represent literal text. But strings quoted with the back-quote character (`) are sometimes interpreted as regular expressions, which are used to match other text. Refer to appendix A for a discussion of how patterns and regular expressions can be constructed for use in pattern matching. Pointer TypesSystem Debug supports many different kinds of pointer types, but most are actually variations of the same theme. Pointers come in two sizes, long and short, and both may be interpreted quite differently depending on the current mode of System Debug. The most frequently used pointer types are long pointer (LPTR) and short pointer (SPTR). An LPTR is simply a pair of 32-bit numbers separated by a dot, sometimes called a dotted pair. What the two numbers actually mean is unspecified by the type. Instead, the context in which the LPTR is used determines the meaning. An SPTR is just one 32-bit number, and it is often thought of as being the low-order (rightmost) part of an LPTR. When used in CM, both long and short pointer values are often range-checked to verify that they fit within 16 bits. The remaining pointer types are variations of long pointers (that is, they are all dotted pairs). However, unlike LPTRs, they project an additional meaning on the dotted pair. Since the interpretation of pointers is heavily dependent on the mode of System Debug, the rest of this discussion deals with each mode individually. Compatibility Mode PointersAn LPTR in CM is usually a segment.offset. If a CM LPTR refers to data, then the segment number is the DST number of the addressed data segment, and the offset is the CM word offset from the beginning of the segment. If a CM LPTR refers to code, there are many possible interpretations of the segment number, and without additional information the LPTR is ambiguous. It is for this reason that the additional long pointer types exist. Their purpose is to differentiate LPTRs. Most users who work with CM code are probably familiar with the logical code segment numbers assigned by the Segmenter. The Segmenter's -PREP command assigns logical code segment numbers to program file segments, while the -ADDSL command assigns logical code segment numbers to SL file segments. These segment numbers always begin with zero (0) in each program or SL file. System Debug allows users to refer to loaded CM code using these logical code segment numbers through use of the following logical code pointer types:
Logical Absolute Absolute Logical System Library CST CSTX Program Segments Segments Segments Segments +-------+ +--------+ +--------+ +--------+ | SYS 0 | -----> | CST 1 | | CSTX 1 | <----- | PROG 0 | | | | sys 0 | | prog 0 | | | +-------+ +--------+ +--------+ +--------+ | SYS 1 | --+ | CST 2 | | CSTX 2 | <----- | PROG 1 | | | | | sys 5 | | prog 1 | | | +-------+ | +--------+ +--------+ +--------+ | SYS 2 | | | CST 3 | | CSTX 3 | <----- | PROG 2 | | | | | sys 11 | | prog 2 | | | +-------+ | +--------+ +--------+ +--------+ | | +--> | CST 4 | | CSTX 4 | <----- | PROG 3 | | | | sys 1 | | prog 3 | | | +-------+ +--------+ +--------+ +--------+ | SYS n | | CST 5 | | | | | +-------+ +--------+ | CST 6 | | | +--------+ Logical | | Group Library | | Segments +--------+ +--> | CST 74 | | | grp 0 | +-------+ | +--------+ | GRP 0 | --+ | CST 75 | <-+ | | | grp 3 | | +-------+ +--------+ | | GRP 1 | -----> | CST 76 | | | | | grp 1 | | +-------+ +--------+ | | GRP 2 | | | | | +-------+ | | GRP 3 | -----------------------+ | | +-------+Note that the following pairs specify the same segment: (logical) PROG 1 <--> CSTX 2 (absolute) (logical) SYS 1 <--> CST 4 (absolute) (logical) GRP 3 <--> CST 75 (absolute) Native Mode PointersAn LPTR in NM is usually a sid.offset virtual address. As such, NM LPTRs are unambiguous, even without some context of use. However, it is still useful to tag NM long pointers to code by using a type that expresses the code's logical origin. Thus, the following logical code pointer types are available for NM code addresses:
Extended Address TypesThe extended addres (EADDR) type is available for cases where the 32-bit offset part of a long pointer isn't large enough. An EADDR is a dotted pair, where the offset part to the right of the dot is 64 bits wide. An EADDR is effectively equivalent to an LPTR when it's offset part is representable in 32 bits. The secondary address (SADDR) type is a special form of EADDR, where the dotted pair is interpreted as a disk LDEV and disk byte offset. This is currently the only instance where an extended address is necessary. Type ClassesAll of the elementary data types introduced above are organized into type classes. These classes are particularly useful when defining parameters to functions and macros. By declaring a parameter to be of a particular type class, all actual values passed are automatically checked to be a member of the class. The type tables below give the names of the type classes and show which elementary types belong to them. Table 2-1 Type Table
|