Assemblers: System Software by Leland L. Beck
Assemblers: System Software by Leland L. Beck
System Software
by Leland L. Beck
Chapter 2
Role of Assembler
Source
Program
Object
Assembler
Code
Linker
Executable
Code
Loader
Chap 2
Chapter 2 -- Outline
Chap 2
Introduction to Assemblers
Fundamental functions
translating
Machine dependency
different
Chap 2
Purpose
reads
Chap 2
WRREC
save link register first before nested jump
Chap 2
Assembler Directives
Pseudo-Instructions
Not translated into machine instructions
Providing information to the assembler
Object Program
Header
Col. 1
H
Col. 2~7 Program name
Col. 8~13 Starting address (hex)
Col. 14-19 Length of object program in bytes (hex)
Text
Col.1
T
Col.2~7 Starting address in this record (hex)
Col. 8~9 Length of object code in this record in bytes (hex)
Col. 10~69 Object code (69-10+1)/6=10 instructions
End
Col.1
Col.2~7
E
Address of first executable instruction (hex)
(END program_name)
Chap 2
Fig. 2.3
H COPY 001000 00107A
T 001000 1E 141033 482039 001036 281030 301015 482061 ...
T 00101E 15 0C1036 482061 081044 4C0000 454F46 000003 000000
T 002039 1E 041030 001030 E0205D 30203F D8205D 281030
T 002057 1C 101036 4C0000 F1 001000 041030 E02079 302064
T 002073 07 382064 4C0000 05
E 001000
Chap 2
Chap 2
EOR:
character x00
clear A, X register to 0;
rloop: read character from input device to A register
if not EOR {
store character into buffer[X];
X++;
if X < maximum length
goto rloop;
}
store X to length(record);
return
}
Chap 2
Chap 2
Assemblers functions
(54)16
BUFFER,X
1
x
1 (001)2
549039
15
address
m
(039)16
Forward reference
Chap 2
Label
Operator
Operand
1000
FIRST
STL
RETADR
1003
1012
CLOOP
JSUB
RDREC
CLOOP
1033
RETADR
RESW
Chap 2
Pass 1
Assign addresses to all statements in the program
Save the values assigned to all labels for use in Pass 2
Perform some processing of assembler directives
Pass 2
Assemble instructions
Generate data values defined by BYTE, WORD
Perform processing of assembler directives not done in
Pass 1
Write the object program and the assembly listing
Chap 2
OPCODE, OPERAND
Source
program
Intermediate
file
Pass 1
OPTAB
SYMTAB
Pass 2
Object
codes
SYMTAB
Chap 2
Data Structures
Chap 2
Content
menmonic,
length) etc.
Characteristic
static
table
Implementation
array
Chap 2
Content
COPY
1000
label name, value, flag, (type,FIRST
length) etc.1000
CLOOP
1003
ENDFIL
1015
Characteristic
EOF
1024
dynamic table (insert, delete,THREE
search)
102D
ZERO
1030
Implementation
RETADR
1033
hash table, non-random keys,
hashing function
LENGTH
1036
BUFFER
1039
RDREC
2039
Chap 2
Homework #3
SUM
FIRST
LOOP
TABLE
COUNT
ZERO
TOTAL
START
LDX
LDA
ADD
TIX
JLT
STA
RSUB
RESW
RESW
WORD
RESW
END
4000
ZERO
ZERO
TABLE,X
COUNT
LOOP
TOTAL
2000
1
0
1
FIRST
Chap 2
Assembler Design
Chap 2
Machine-dependent
Assembler Features
Sec. 2-2
SIC/XE
PC-relative or Base-relative addressing:
op m
Indirect addressing:
op @m
Immediate addressing:
op #c
Extended format:
+op m
Index addressing:
op m,x
register-to-register instructions
larger memory -> multi-programming (program allocation)
Example program
Chap 2
Translation
Register translation
register name (A, X, L, B, S, T, F, PC, SW) and their
values (0,1, 2, 3, 4, 5, 6, 8, 9)
preloaded in SYMTAB
Address translation
Most register-memory instructions use program
counter relative or base relative addressing
Format 3: 12-bit address field
base-relative: 0~4095
pc-relative: -2048~2047
Chap 2
PC-relative
10
0000
op(6)
(14)16
FIRST STL
n I xbp e
110010
displacement=
40
0017
op(6)
RETADR
17202D
disp(12)
(02D) 16
RETADR - PC = 30-3 = 2D
J
n I xbp e
CLOOP
3F2FEC
disp(12)
(3C)16
1 1 0 0 1 0 (FEC) 16
displacement= CLOOP-PC= 6 - 1A= -14= FEC
Chap 2
Base-relative
base register is under the control of the programmer
12
LDB #LENGTH
13
BASE LENGTH
160
104E
STCH BUFFER, X 57C003
op(6)
( 54 )16
(54)
n I xbp e
111100
111010
displacement=
disp(12)
( 003 ) 16
0036-1051= -101B16
Immediate addressing
55
133
0020
op(6)
( 00 )16
LDA
n I xbp e
010000
#3
010003
disp(12)
103C
op(6)
( 74 )16
+LDT #4096
75101000
n I xbp e
disp(20)
0 1 0 0 0 1 ( 01000 ) 16
( 003 ) 16
Chap 2
Immediate addressing
12
0003
LDB #LENGTH
op(6)
n I xbp e
disp(12)
( 68)16
0 1 0 0 1 0 ( 02D ) 16
( 68)16
010000
( 033)16
69202D
690033
the
Indirect addressing
target
relative or BASE-relative)
only
70
( 3C )16
@RETADR
n I xbp e
100010
3E2003
disp(12)
( 003 ) 16
TA=RETADR=0030
TA=(PC)+disp=002D+0003
Chap 2
Program Relocation
e.g. 55 101B
Relocate
THREE
00102D
e.g. 55 101B
Each
LDA
LDA
THREE
00202D
Example
Chap 2
Relocatable Program
Modification record
Col
1 M
Col 2-7 Starting location of the address field to be
modified, relative to the beginning of the program
Col
Chap 2
Object Code
Chap 2
Machine-Independent Assembler
Features
Literals
Symbol Defining Statement
Expressions
Program Blocks
Control Sections and Program
Linking
Literals
Design idea
Let
Example
e.g. 45
001A
93
002D
=CEOF
ENDFIL
LDA
LTORG
=CEOF
WLOOP
TD
=X05
032010
454F46
E32011
Chap 2
Immediate Operands
The
e.g. 55 0020
LDA
#3
010003
Literals
The
e.g. 45
001A
ENDFIL LDA
=CEOF
032010
80 002D EOF
Literal pools
Normally
In
directive LTORG
reason: keep the literal operand close to the
instruction
Chap 2
Duplicate literals
215
1062 WLOOP
TD =X05
e.g. 230
106B
WD =X05
The assemblers should recognize duplicate
literals and store only one copy of the specified
data value
e.g.
Comparison
Chap 2
LITTAB
Pass 1
build LITTAB with literal name, operand value and length,
leaving the address unassigned
when LTORG statement is encountered, assign an address to
each literal not yet assigned an address
Pass 2
search LITTAB for each literal operand encountered
generate data values using BYTE or WORD statements
generate modification record for literals that represent an
address in the program
Chap 2
Symbol-Defining Statements
Defining symbols
symbol EQU
value
value can be: constant, other symbol,
expression
making the source program easier to
understand
no forward reference
Chap 2
Symbol-Defining Statements
Example 1
MAXLEN
+LDT
#4096
EQU 4096
+LDT #MAXLEN
R1
R2
R3
Example 3
MAXLEN
EQU
BUFEND-BUFFER
Chap 2
ORG (origin)
ORG value
6bytes
VALUE: 1word
STAB
FLAGS: 2bytes (100 entries)
LDA
SYMBOL
VALUE FLAGS
VALUE, X
.
.
.
.
.
.
.
.
.
Chap 2
ORG Example
RESB
EQU
EQU
EQU
1100
STAB
STAB+6
STAB+9
STAB
SYMBOL
VALUE
FLAGS
RESB 1100
ORG STAB
RESB 6
RESW 1
RESB 2
ORG STAB+1100
Chap 2
Expressions
Chap 2
SYMTAB
R
R
R
A
30
36
1036
1000
Chap 2
Example 2.9
SYMTAB
Name
COPY
FIRST
CLOOP
ENDFIL
RETADR
LENGTH
BUFFER
BUFEND
MAXLEN
RDREC
RLOOP
EXIT
INPUT
WREC
WLOOP
Value
0
0
6
1A
30
33
36
1036
1000
1036
1040
1056
105C
105D
1062
LITTAB
C'EOF'
X'05'
454F46
05
3
1
002D
1076
Chap 2
Program Blocks
Program blocks
refer
Chap 2
Pass 1
each program block has a separate location counter
each label is assigned an address that is relative to the
start of the block that contains it
at the end of Pass 1, the latest value of the location
counter for each block indicates the length of that block
the assembler can then assign to each block a starting
address in the object program
Pass 2
Figure 2.12
Length
0066
000B
1000
Address
0000
0066
0071
107
Example
20
0006 0
LDA LENGTH
032060
LENGTH=(Block 1)+0003= 0066+0003= 0069
LOCCTR=(Block 0)+0009= 0009
Chap 2
Program Readability
Program readability
No extended format instructions on lines 15, 35, 65
No needs for base relative addressing (line 13, 14)
LTORG is used to make sure the literals are placed
ahead of any large data areas (line 253)
Object code
It
Chap 2
Chap 2
Control Sections
are
Chap 2
External definition
EXTDEF
name [, name]
EXTDEF names symbols that are defined in this
control section and may be used by other sections
External reference
EXTREF
name [,name]
EXTREF names symbols that are used in this
control section and are defined elsewhere
Example
15 0003 CLOOP
160 0017
190 0028 MAXLEN
+JSUB RDREC
4B100000
+STCH BUFFER,X
57900000
WORD BUFEND-BUFFER 000000
Chap 2
Implementation
Refer record
Col. 1 D
Col. 2-7 Name of external symbol referred to in this control section
Col. 8-73 Name of other external reference symbols
Chap 2
Modification Record
Modification record
Col. 1 M
Col. 2-7 Starting address of the field to be modified
(hexiadecimal)
Col. 8-9 Length of the field to be modified, in half-bytes
(hexadeccimal)
Col.11-16 External symbol whose value is to be added to or
subtracted from the indicated field
Note: control section name is automatically an external symbol,
i.e. it is available for use in Modification records.
Example
Figure 2.17
M00000405+RDREC
M00000705+COPY
Chap 2
Earlier definitions
required
New restriction
Both
Ex: BUFEND-BUFFER
Ex: RDREC-COPY
Chap 2
One-pass assemblers
Multi-pass assemblers
Two-pass assembler with overlay
structure
structure
overlay program
Chap 2
One-Pass Assemblers
Main problem
forward
references
data
items
labels on instructions
Solution
data
Chap 2
One-Pass Assemblers
Main Problem
forward
reference
data
items
labels on instructions
the
other
produces
execution
Chap 2
Load-and-go Assembler
Characteristics
Useful
Chap 2
Multi-Pass Assemblers
Example
Use
Figure 2.21
Chap 2