HLASM Language Reference

HLASM Language Reference HLASM Language Reference

faculty.cs.niu.edu
from faculty.cs.niu.edu More from this publisher
22.02.2015 Views

DSECT Instruction DSECT Instruction The DSECT instruction identifies the beginning or continuation of a dummy control section. One or more dummy sections can be defined in a source module. ►►──┬────────┬──DSECT──────────────────────────────────────────────►◄ └─symbol─┘ symbol is one of the following: An ordinary symbol A variable symbol that has been assigned a character string with a value that is valid for an ordinary symbol A sequence symbol The DSECT instruction can be used anywhere in a source module after the ICTL instruction. If symbol denotes an ordinary symbol, the ordinary symbol identifies the dummy section. If several DSECT instructions within a source module have the same symbol in the name field, the first occurrence initiates the dummy section and the rest indicate the continuation of the dummy section. The ordinary symbol denoted by symbol represents the address of the first byte in the dummy section, and has a length attribute value of 1. If symbol is not specified, or if name is a sequence symbol, the DSECT instruction initiates or indicates the continuation of the unnamed control section. The location counter for a dummy section is always set to an initial value of 0. However, when an interrupted dummy control section is continued using the DSECT instruction, the location counter last specified in that control section is continued. The source statements that follow a DSECT instruction belong to the dummy section identified by that DSECT instruction. Notes: 1. The assembler language statements that appear in a dummy section are not assembled into object code. 2. When establishing the addressability of a dummy section, the symbol in the name field of the DSECT instruction, or any symbol defined in the dummy section can be specified in a USING instruction. 3. A symbol defined in a dummy section can be specified in an address constant only if the symbol is paired with another symbol from the same dummy section, and if the symbols have opposite signs. To effect references to the storage area defined by a dummy section, do the following: Provide either: 178 HLASM V1R5 Language Reference

DSECT Instruction – An ordinary or labeled USING statement that specifies both a general register that the assembler can use as a base register for the dummy section, and a value from the dummy section that the assembler may assume the register contains, or – A dependent or labeled dependent USING statement that specifies a supporting base address (for which there is a corresponding ordinary USING statement) that lets the assembler determine a base register and displacement for the dummy section, and a value from the dummy section that the assembler may assume is the same as the supporting base address Ensure that the base register is loaded with either: – The actual address of the storage area if an ordinary USING statement or a labeled USING statement was specified, or – The base address specified in the corresponding ordinary USING statement if a dependent or labeled dependent USING statement was specified. The values assigned to symbols defined in a dummy section are relative to the initial statement of the section. Thus, all machine instructions that refer to names defined in the dummy section refer, at execution time, to storage locations relative to the address loaded into the register. Figure 54 shows an example of how to code the DSECT instruction. The sample code is referred to as “Assembly-2.” Assume that two independent assemblies (Assembly-1 and Assembly-2) have been loaded and are to be run as a single overall program. Assembly-1 is a routine that 1. Places a record in an area of storage 2. Places the address of the storage area in general register 3 3. Branches to Assembly-2 to process the record The storage area from Assembly-1 is identified in Assembly-2 by the dummy control section (DSECT) named INAREA. Parts of the storage area that you want to work with are named INCODE, OUTPUTA, and OUTPUTB. The statement USING INAREA,3 assigns general register 3 as the base register for the INAREA DSECT. General register 3 contains the address of the storage area. Because the symbols in the DSECT are defined relative to the beginning of the DSECT, the address values they represent are, at the time of program execution, the actual storage locations of the storage area that general register 3 addresses. Chapter 5. Assembler Instruction Statements 179

DSECT Instruction<br />

– An ordinary or labeled USING statement that specifies both a general<br />

register that the assembler can use as a base register for the dummy<br />

section, and a value from the dummy section that the assembler may<br />

assume the register contains, or<br />

– A dependent or labeled dependent USING statement that specifies a<br />

supporting base address (for which there is a corresponding ordinary<br />

USING statement) that lets the assembler determine a base register and<br />

displacement for the dummy section, and a value from the dummy section<br />

that the assembler may assume is the same as the supporting base<br />

address<br />

Ensure that the base register is loaded with either:<br />

– The actual address of the storage area if an ordinary USING statement or a<br />

labeled USING statement was specified, or<br />

– The base address specified in the corresponding ordinary USING statement<br />

if a dependent or labeled dependent USING statement was specified.<br />

The values assigned to symbols defined in a dummy section are relative to the<br />

initial statement of the section. Thus, all machine instructions that refer to names<br />

defined in the dummy section refer, at execution time, to storage locations relative<br />

to the address loaded into the register.<br />

Figure 54 shows an example of how to code the DSECT instruction. The sample<br />

code is referred to as “Assembly-2.”<br />

Assume that two independent assemblies (Assembly-1 and Assembly-2) have been<br />

loaded and are to be run as a single overall program. Assembly-1 is a routine that<br />

1. Places a record in an area of storage<br />

2. Places the address of the storage area in general register 3<br />

3. Branches to Assembly-2 to process the record<br />

The storage area from Assembly-1 is identified in Assembly-2 by the dummy<br />

control section (DSECT) named INAREA. Parts of the storage area that you want<br />

to work with are named INCODE, OUTPUTA, and OUTPUTB. The statement<br />

USING INAREA,3 assigns general register 3 as the base register for the INAREA<br />

DSECT. General register 3 contains the address of the storage area. Because the<br />

symbols in the DSECT are defined relative to the beginning of the DSECT, the<br />

address values they represent are, at the time of program execution, the actual<br />

storage locations of the storage area that general register 3 addresses.<br />

Chapter 5. Assembler Instruction Statements 179

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!