Today’s Topic Assembler: Basic Functions

Slides:



Advertisements
Similar presentations
寫入 輸出紀錄(output record) 40 J 跳回CLOOP 45 LDA EOF 插入 檔案終結符號 50 STA BUFFER
Advertisements

Loader. Role of Loader Source Program Translator Object Program Loader Object program ready for execution Memory Translator – Assembler/Compiler.
Machine Independent Assembler Features
The assembler is the system program that translate source code written in assembly language to object code( Machine Language) and other information for.
System Software Chih-Shun Hsu
CS2422 Assembly Language and System Programming Loader Department of Computer Science National Tsing Hua University.
Machine-Dependent Assembler Features (SIC/XE Assembler) Instruction Formats, Addressing Modes, and Program Relocation.
System Software by Leland L. Beck chapter 1, pp.1-20.
Assembler design.
CPS4200 System Programming 2007 Spring 1 Systems Programming Chapter 2 Assembler I.
CS2422 Assembly Language and System Programming Linking Loader Department of Computer Science National Tsing Hua University.
Chih-Hung Wang Chapter 2: Assembler (Full) 參考書目 Leland L. Beck, System Software: An Introduction to Systems Programming (3rd), Addison-Wesley,
Chih-Hung Wang Chapter 2: Assembler (Part-1) 參考書目 Leland L. Beck, System Software: An Introduction to Systems Programming (3rd), Addison-Wesley, 1997.
System Software by Leland L. Beck Chapter 2
Assembler – Assembler Design Options. One-Pass Assemblers (1/2) Main problem  Forward references Data items Labels on instructions Solution  Data items:
Chapter 2 Assemblers Assembler Linker Source Program Object Code
CS2422 Assembly Language & System Programming December 22, 2005.
Assemblers Dr. Monther Aldwairi 10/21/20071Dr. Monther Aldwairi.
Assembler – Machine Dependent Features
1 Chapter 2 Assemblers Source Program Assembler Object Code Loader.
An introduction to systems programming
CS2422 Assembly Language and System Programming Machine Dependent Assembler Features Department of Computer Science National Tsing Hua University.
CS2422 Assembly Language & System Programming December 7, 2006.
CS2422 Assembly Language & System Programming November 30, 2006.
CS2422 Assembly Language & System Programming December 26, 2006.
Assembler (Basic Functions)
Assembler – Machine Independent Features. Literals Design idea  Let programmers to be able to write the value of a constant operand as a part of the.
CS2422 Assembly Language & System Programming December 14, 2006.
UNIT II ASSEMBLERS.
A Simple Two-Pass Assembler
First part System Utilities Lecture 3 ASSEMBLER Ştefan Stăncescu 1.
Chapter 4 System Programming and Operating Systems -DM Dhamdhere
Assembler Design Options
What is System Software? -a program that manages and supports the computer resources - manages operations of a computer system while it executes various.
Assemblers.
Chapter 1 Computer architecture Languages: machine, assembly, high
CPS4200 System Programming 2007 Spring 1 Systems Programming Chapter 2 Assembler II.
CS2422 Assembly Language and System Programming Machine Independent Assembler Features Department of Computer Science National Tsing Hua University.
1 Assemblers System Software by Leland L. Beck Chapter 2.
Assemblers System Software by Leland L. Beck Chapter 2.
CS2422 Assembly Language and System Programming Assembler Design Options Department of Computer Science National Tsing Hua University.
1 Assemblers System Programming by Leland L. Beck Chapter 2.
Machine-Independent Assembler Features Literals, Symbol-Defining Statements, Expressions, Program Blocks, Control Sections and Program Linking.
2 : Assembler 1 Chapter II: Assembler Chapter goal: r Introduce the fundamental functions that any assembler must perform. m Assign machine address m Translate.
1 Assemblers System Software by Leland L. Beck Chapter 2.
G.Umamaheswari Lect/IT R.M.D.EC system software
Assemblers System Software by Leland L. Beck Chapter 2.
Loader and Linker.
Assemblers System Software.
COMPILERS CLASS IV Er. Vikram Dhiman M.tech NIT jalandhar.
CC410: System Programming Dr. Manal Helal – Fall 2014 – Lecture 4 - Assembler 1.
CC410: System Programming Dr. Manal Helal – Fall 2014 – Lecture 9 - Assembler 4.
ADHIPARASAKTHI ENGINEERING COLLEGE
김길용 교수 분산처리연구실 시스템 프로그래밍 김길용 교수 분산처리연구실
CC410: System Programming
Machine dependent Assembler Features
CC410: System Programming
System Software by Leland L. Beck Chapter 2
SYSTEM SOFTWARE - UNIT II
Assembler Design Options
Assemblers - 2 CSCI/CMPE 3334 David Egle.
Machine Independent Features
A Simple Two-Pass Assembler
System Programming by Leland L. Beck Chapter 2
Assemblers CSCI/CMPE 3334 David Egle.
Machine Independent Assembler Features
Chapter 1 Computer architecture Languages: machine, assembly, high
Chapter 6 Programming the basic computer
Machine Independent Assembler Features
An introduction to systems programming
Presentation transcript:

Department of Computer Science National Tsing Hua University Assembler Basics Department of Computer Science National Tsing Hua University

Today’s Topic Assembler: Basic Functions Section 2.1 of Beck’s “System Software” book. Reading Assignment: pages 43-52.

Role of Assembler Object Source Assembler Code Linker Program Executable Code Loader

Example Program Fig. 2.1 (1/4) Purpose Reads records from input device (code F1) and store in BUFFER Copies them to output device (code 05) At the end of the file, writes an extra EOF on the output device, then RSUB to the operating system Data transfer (RD, WD) End of each record is marked with a null character End of the file is indicated by a zero-length record Subroutines (JSUB, RSUB) RDREC, WRREC Save link register first before nested jump

Example Program Fig. 2.1 (2/4) 5 COPY START 1000 LOAD PROG AT LOC 1000 10 FIRST STL RETADR SAVE RETURN ADDRESS 15 CLOOP JSUB RDREC READ INPUT RECORD 20 LDA LENGTH TEST FOR EOF (LENGTH = 0) 25 COMP ZERO 30 JEQ ENDFIL EXIT IF EOF FOUND 35 JSUB WRREC WRITE OUTPUT RECORD 40 J CLOOP LOOP 45 ENDFIL LDA EOF INSERT END OF FILE MARKER 50 STA BUFFER 55 LDA THREE SET LENGTH = 3 60 STA LENGTH 65 JSUB WRREC WRITE EOF 70 LDL RETADR GET RETURN ADDRESS 75 RSUB RETURN TO CALLER 80 EOF BYTE C’EOF’ 85 THREE WORD 3 90 ZERO WORD 0 95 RETADR RESW 1 100 LENGTH RESW 1 105 BUFFER RESB 4096 4096-BYTE BUFFER AREA

Example Program Fig. 2.1 (3/4) 110 . 115 . SUBROUTINE TO READ RECORD INTO BUFFER 120 . 125 RDREC LDX ZERO CLEAR LOOP COUNTER 130 LDA ZERO CLEAR A TO ZERO 135 RLOOP TD INPUT TEST INPUT DEVICE 140 JEQ RLOOP LOOP UNTIL READY 145 RD INPUT READ CHARACTER INTO A 150 COMP ZERO TEST FOR END OF RECORD 155 JEQ EXIT EXIT LOOP IF EOR 160 STCH BUFFER,X STORE CHAR IN BUFFER 165 TIX MAXLEN LOOP UNLESS MAX LENGTH 170 JLT RLOOP HAS BEEN REACHED 175 EXIT STX LENGTH SAVE RECORD LENGTH 180 RSUB RETURN TO CALLER 185 INPUT BYTE X’F1’ CODE FOR INPUT DEVICE 190 MAXLEN WORD 4096

Example Program Fig. 2.1 (4/4) 195 . 200 . SUBROUTINE TO WRITE RECORD FROM BUFFER 205 . 210 WRREC LDX ZERO CLEAR LOOP COUNTER 215 WLOOP TD OUTPUT TEST OUTPUT DEVICE 220 JEQ WLOOP LOOP UNTIL READY 225 LDCH BUFFER,X GET CHAR FROM BUFFER 230 WD OUTPUT WRITE CHARACTER 235 TIX LENGTH LOOP UNTIL ALL CHAR 240 JLT WLOOP HAVE BEEN WRITTEN 245 RSUB RETURN TO CALLER 250 OUTPUT BYTE X’05’ CODE FOR OUTPUT DEVICE 255 END FIRST

Assembler Directives Pseudo-Instructions Basic assembler directives Not translated into machine instructions Providing information to the assembler Basic assembler directives START END BYTE WORD RESB RESW

Functions of a Basic Assembler Mnemonic code (or instruction name)  opcode Symbolic operands (e.g., variable names)  addresses Choose the proper instruction format and addressing mode Constants  Numbers Output to object files and listing files

Example Program & Object Code (1/3) Line Loc Source statement Object code 5 1000 COPY START 1000 10 1000 FIRST STL RETADR 141033 15 1003 CLOOP JSUB RDREC 482039 20 1006 LDA LENGTH 001036 25 1009 COMP ZERO 281030 30 100C JEQ ENDFIL 301015 35 100F JSUB WRREC 482061 40 1012 J CLOOP 3C1003 45 1015 ENDFIL LDA EOF 00102A 50 1018 STA BUFFER 0C1039 55 101B LDA THREE 00102D 60 101E STA LENGTH 0C1036 65 1021 JSUB WRREC 482061 70 1024 LDL RETADR 081033 75 1027 RSUB 4C0000 80 102A EOF BYTE C’EOF’ 454F46 85 102D THREE WORD 3 000003 90 1030 ZERO WORD 0 000000 95 1033 RETADR RESW 1 100 1036 LENGTH RESW 1 105 1039 BUFFER RESB 4096

Example Program & Object Code (2/3) 110 . 115 . SUB TO READ RECORD INTO BUFFER 120 . 125 2039 RDREC LDX ZERO 041030 130 203C LDA ZERO 001030 135 203F RLOOP TD INPUT E0205D 140 2042 JEQ RLOOP 30203F 145 2045 RD INPUT D8205D 150 2048 COMP ZERO 281030 155 204B JEQ EXIT 302057 160 204E STCH BUFFER,X 549039 165 2051 TIX MAXLEN 2C205E 170 2054 JLT RLOOP 38203F 175 2057 EXIT STX LENGTH 101036 180 205A RSUB 4C0000 185 205D INPUT BYTE X’F1’ F1 190 205E MAXLEN WORD 4096 001000

Example Program & Object Code (3/3) 195 . 200 . SUB TO WRITE RECORD FROM BUFFER 205 . 210 2061 WRREC LDX ZERO 041030 215 2064 WLOOP TD OUTPUT E02079 220 2067 JEQ WLOOP 302064 225 206A LDCH BUFFER,X 509039 230 206D WD OUTPUT DC2079 235 2070 TIX LENGTH 2C1036 240 2073 JLT WLOOP 382064 245 2076 RSUB 4C0000 250 2079 OUTPUT BYTE X’05’ 05 255 END FIRST

Examples Mnemonic code (or instruction name)  opcode Examples: STL 1033  14 10 33 LDA 1036  00 10 36 0001 0100 001 0000 0011 0011 0000 0000 001 0000 0011 0110

Symbolic Operands We are not likely to write memory addresses directly in our code Instead, we will define variable names Other examples of symbolic operands: Labels (for jump instructions) Subroutines Constants

Converting Symbols to Numbers Isn’t it straightforward? Isn’t it simply the sequential processing of the source program, one line at a time? Not so, if we have forward references  we don’t know the value of the symbol, because it is defined later in the code COPY START 1000 … LDA LEN LEN RESW 1

Two-Pass Assembler Pass 1 Pass 2 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 by translating opcode and symbolic operands 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

Two-Pass Assembler From input line: LABEL, OPCODE, OPERAND Operation Code Table (OPTAB) Symbol Table (SYMTAB) Location Counter (LOCCTR) Source program Intermediate file Object code Pass 1 Pass 2 OPTAB SYMTAB SYMTAB

OPTAB (Operation Code Table) Content Mnemonic, machine code (instruction format, length) etc. Characteristic Static table Implementation Array or hash table, easy for search

SYMTAB (Symbol Table) Content Characteristic Implementation Label name, value, flag, (type, length) etc. Characteristic Dynamic table (insert, delete, search) Implementation Hash table, non-random keys, hashing function COPY 1000 FIRST 1000 CLOOP 1003 ENDFIL 1015 EOF 1024 THREE 102D ZERO 1030 RETADR 1033 LENGTH 1036 BUFFER 1039 RDREC 2039

Two Pass Assembler – Pass 1 read first input line if OPCODE = ‘START’ then save #[OPERAND] as starting address initialize LOCCTR to starting address write line to intermediate file read next input line else initialize LOCCTR to 0 while OPCODE  ‘END’ do if this is not a comment line then if there is a symbol in the LABEL field then search SYMTAB for LABEL if found then set error flag (duplicate symbol) else insert (LABEL, LOCCTR) into SYMTAB

Two Pass Assembler – Pass 1 search OPTAB for OPCODE if found then add 3 (instruction length) to LOCCTR else if OPCODE = ‘WORD’ then add 3 to LOCCTR else if OPCODE = ‘RESW’ then add 3 * #[OPERAND] to LOCCTR else if OPCODE = ‘RESB’ then add #[OPERAND] to LOCCTR else if OPCODE = ‘BYTE’ then find length of constant in bytes add length to LOCCTR else set error flag (invalid op code) write line to intermediate file read next input line // end while write last line to intermediate file save (LOCCTR – starting address) as program length

Two Pass Assembler – Pass 2 read first input line from intermediate file if OPCODE = ‘START’ then write listing line read next input line write Header record to object program initialize first Text record while OPCODE  ‘END’ do if this is not a comment line then search OPTAB for OPCODE if found then if there is a symbol in OPERAND field then search SYMTAB for OPERAND if found then store symbol value as operand address else store 0 as operand address and set error flag (undefined symbol)

Two Pass Assembler – Pass 2 else store 0 as operand address assemble the object code instructions else if OPCODE = ‘BYTE’ or ‘WORD’ then convert constant to object code if object code will not fit into the current Text record then write Text record to object file initialize new Text record add object code to Text record write listing line read next input line write last Text record to object file write End record to object program write last listing line

Object Program Header Text End 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 E Col.2~7 Address of first executable instruction (hex) (END program_name)

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 starting address

1036 xxxxxx BYTE C’EOF’ WORD 3 WORD 0 RESW 1 1033 xxxxxx 1030 000000 STL RETADR JSUB RDREC LDA LENGTH COMP ZERO JEQ ENDFIL LDL RETADR RSUB ‘E’ ‘O’ ‘F’ 3 102D 000003 102A 454F46 1027 4C0000 1024 081033 … 100C 301015 1009 281030 1006 001036 1003 482039 1000 141033 …

One-Pass Assemblers Forward references can be resolved in One-Pass Assemblers too! Add a linked list to the Symbol Table to keep track of unresolved references. (See p.95) We will discuss 1-pass assembler again (Section 2.4.1)