Y86 Processor State. Instruction Example. Encoding Registers. Lecture 7A. Computer Architecture I Instruction Set Architecture Assembly Language View

Similar documents
Instruction Set Architecture

Instruction Set Architecture

Instruction Set Architecture

CISC 360 Instruction Set Architecture

Instruction Set Architecture

Chapter 4! Processor Architecture!

cmovxx ra, rb 2 fn ra rb irmovl V, rb rb V rmmovl ra, D(rB) 4 0 ra rb D mrmovl D(rB), ra 5 0 ra rb D OPl ra, rb 6 fn ra rb jxx Dest 7 fn Dest

Processor Architecture

Background: Sequential processor design. Computer Architecture and Systems Programming , Herbstsemester 2013 Timothy Roscoe

CS429: Computer Organization and Architecture

Computer Science 104:! Y86 & Single Cycle Processor Design!

Computer Science 104:! Y86 & Single Cycle Processor Design!

Computer Architecture I: Outline and Instruction Set Architecture. CENG331 - Computer Organization. Murat Manguoglu

Chapter 4 Processor Architecture: Y86 (Sections 4.1 & 4.3) with material from Dr. Bin Ren, College of William & Mary

cmovxx ra, rb 2 fn ra rb irmovq V, rb 3 0 F rb V rmmovq ra, D(rB) 4 0 ra rb mrmovq D(rB), ra 5 0 ra rb OPq ra, rb 6 fn ra rb jxx Dest 7 fn Dest

Second Part of the Course

Reading assignment. Chapter 3.1, 3.2 Chapter 4.1, 4.3

Computer Organization: A Programmer's Perspective

Computer Organization Chapter 4. Prof. Qi Tian Fall 2013

Process Layout and Function Calls

Instruc(on Set Architecture. Computer Architecture Instruc(on Set Architecture Y86. Y86-64 Processor State. Assembly Programmer s View

Intel x86-64 and Y86-64 Instruction Set Architecture

CS429: Computer Organization and Architecture

Process Layout, Function Calls, and the Heap

Topics of this Slideset. CS429: Computer Organization and Architecture. Instruction Set Architecture. Why Y86? Instruction Set Architecture

CS241 Computer Organization Spring Addresses & Pointers

Machine-Level Programming II: Control and Arithmetic

Sungkyunkwan University

Assembly I: Basic Operations. Jo, Heeseung

ASSEMBLY I: BASIC OPERATIONS. Jo, Heeseung

administrivia today start assembly probably won t finish all these slides Assignment 4 due tomorrow any questions?

Turning C into Object Code Code in files p1.c p2.c Compile with command: gcc -O p1.c p2.c -o p Use optimizations (-O) Put resulting binary in file p

CSE2421 FINAL EXAM SPRING Name KEY. Instructions: Signature

CPSC 121: Models of Computation. Module 10: A Working Computer

Assembly I: Basic Operations. Computer Systems Laboratory Sungkyunkwan University

Questions about last homework? (Would more feedback be useful?) New reading assignment up: due next Monday

CPSC 121: Models of Computation. Module 10: A Working Computer

CS61 Section Solutions 3

The Hardware/Software Interface CSE351 Spring 2013

CPSC 313, Summer 2013 Final Exam Date: June 24, 2013; Instructor: Mike Feeley

Sequential Implementation

Credits to Randy Bryant & Dave O Hallaron

Machine-Level Programming II: Arithmetic & Control. Complete Memory Addressing Modes

Chapter 3 Machine-Level Programming II Control Flow

CS 31: Intro to Systems ISAs and Assembly. Kevin Webb Swarthmore College February 9, 2016

CPSC 313, Winter 2016 Term 1 Sample Date: October 2016; Instructor: Mike Feeley

Machine-Level Programming II: Arithmetic & Control /18-243: Introduction to Computer Systems 6th Lecture, 5 June 2012

CS 31: Intro to Systems ISAs and Assembly. Kevin Webb Swarthmore College September 25, 2018

CISC: Stack-intensive procedure linkage. [Early] RISC: Register-intensive procedure linkage.

Assembly Programmer s View Lecture 4A Machine-Level Programming I: Introduction

1 /* file cpuid2.s */ 4.asciz "The processor Vendor ID is %s \n" 5.section.bss. 6.lcomm buffer, section.text. 8.globl _start.

Compiler Construction D7011E

CMSC 313 Lecture 12. Project 3 Questions. How C functions pass parameters. UMBC, CMSC313, Richard Chang

ASSEMBLY II: CONTROL FLOW. Jo, Heeseung

Machine-Level Programming I: Introduction Jan. 30, 2001

Assembly II: Control Flow. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

What is a Compiler? Compiler Construction SMD163. Why Translation is Needed: Know your Target: Lecture 8: Introduction to code generation

CS:APP Guide to Y86 Processor Simulators

CS241 Computer Organization Spring 2015 IA

Machine-level Programming (3)

CISC 360. Machine-Level Programming I: Introduction Sept. 18, 2008

Processor Architecture I. Alexandre David

Condition Codes. Lecture 4B Machine-Level Programming II: Control Flow. Setting Condition Codes (cont.) Setting Condition Codes (cont.

System Programming and Computer Architecture (Fall 2009)

Machine-Level Programming II: Control Flow

Handout #2: Machine-Level Programs

CF Carry Flag SF Sign Flag ZF Zero Flag OF Overflow Flag. ! CF set if carry out from most significant bit. "Used to detect unsigned overflow

Machine Level Programming II: Arithmetic &Control

CSC 8400: Computer Systems. Machine-Level Representation of Programs

Function Calls COS 217. Reading: Chapter 4 of Programming From the Ground Up (available online from the course Web site)

Giving credit where credit is due

Machine Programming 1: Introduction

Control flow. Condition codes Conditional and unconditional jumps Loops Switch statements

CSC 2400: Computer Systems. Towards the Hardware: Machine-Level Representation of Programs

Machine-level Representation of Programs. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

CS , Fall 2001 Exam 1

Homework. In-line Assembly Code Machine Language Program Efficiency Tricks Reading PAL, pp 3-6, Practice Exam 1

Assembly Language: Function Calls

Program Exploitation Intro

CS 31: Intro to Systems ISAs and Assembly. Martin Gagné Swarthmore College February 7, 2017

CS:APP Chapter 4 Computer Architecture Sequential Implementation

Assembly Language: IA-32 Instructions

X86 Addressing Modes Chapter 3" Review: Instructions to Recognize"

Assembly Language: Function Calls" Goals of this Lecture"

Instruction Set Architectures

Question 4.2 2: (Solution, p 5) Suppose that the HYMN CPU begins with the following in memory. addr data (translation) LOAD 11110

Condition Codes The course that gives CMU its Zip! Machine-Level Programming II Control Flow Sept. 13, 2001 Topics

Systems I. Machine-Level Programming I: Introduction

Assembly Language: Function Calls" Goals of this Lecture"

CISC 360. Machine-Level Programming II: Control Flow Sep 23, 2008

Where Have We Been? Logic Design in HCL. Assembly Language Instruction Set Architecture (Y86) Finite State Machines

Page # CISC 360. Machine-Level Programming II: Control Flow Sep 23, Condition Codes. Setting Condition Codes (cont.)

CS213. Machine-Level Programming III: Procedures

CMSC 313 Fall2009 Midterm Exam 2 Section 01 Nov 11, 2009

CPS104 Recitation: Assembly Programming

CS 33: Week 3 Discussion. x86 Assembly (v1.0) Section 1G

Giving credit where credit is due

COMP 210 Example Question Exam 2 (Solutions at the bottom)

Machine Programming 3: Procedures

Computer Science 104:! Y86 & Single Cycle Processor Design!

Transcription:

Computer Architecture I Instruction Set Architecture Assembly Language View Processor state Registers, memory, Instructions addl, movl, andl, How instructions are encoded as bytes Layer of Abstraction Above: how to program machine Processor executes instructions in a sequence Below: what needs to be built Use variety of tricks to make it run fast E.g., execute multiple instructions Lecture 7A Application Program Compiler F7A 1 simultaneously Datorarkitektur 2007 ISA CPU Design Circuit Design Chip Layout OS Y86 Processor State %eax %ecx %edx %ebx Program Registers %esi %edi %esp %ebp Same 8 as with IA32. Each 32 bits Condition Codes Single-bit flags set by arithmetic or logical instructions» OF: Overflow ZF: Zero SF:Negative Program Counter Indicates address of instruction Memory Program registers Byte-addressable storage array Condition codes OF ZF SF PC Words stored in little-endian byte order Memory F7A 2 Datorarkitektur 2007 Format 1--6 bytes of information read from memory» Can determine instruction length from first byte» Not as many instruction types, and simpler encoding than with IA32 Each accesses and modifies some part(s) of the program state Encoding Registers Each register has 4-bit ID Y86 Instructions %eax 0 %esi 6 %ecx 1 %edi 7 %edx 2 %esp 4 %ebx 3 %ebp 5 Same encoding as in IA32 Register ID 8 indicates no register Will use this in our hardware design in multiple places F7A 3 Datorarkitektur 2007 Instruction Example Addition Instruction Generic Form Encoded Representation addl ra, rb 6 0 ra rb Add value in register ra to that in register rb Store result in register rb Note that Y86 only allows addition to be applied to register data Set condition codes based on result e.g., addl %eax,%esi Encoding: 60 06 Two-byte encoding First indicates instruction type Second gives source and destination registers F7A 4 Datorarkitektur 2007

Arithmetic and Logical Operations Instruction Code Function Code Add Refer to generically as OPl addl ra, rb 6 0 ra rb Encodings differ only by Subtract (ra from rb) subl ra, rb 6 1 ra rb function code Low-order 4 bytes in first instruction word And andl ra, rb 6 2 ra rb Set condition codes as side effect Exclusive-Or xorl ra, rb 6 3 ra rb Move Operations rrmovl ra, rb 2 0 ra rb Register --> Register irmovl V, rb 3 0 8 rb V Immediate --> Register rmmovl ra, D(rB) 4 0 ra rb D Register --> Memory mrmovl D(rB), ra 5 0 ra rb D Memory --> Register Like the IA32 movl instruction Simpler format for memory addresses Give different names to keep them distinct F7A 5 Datorarkitektur 2007 F7A 6 Datorarkitektur 2007 Move Instruction Examples IA32 Y86 Encoding movl $0xabcd, %edx irmovl $0xabcd, %edx 30 82 cd ab 00 00 movl %esp, %ebx rrmovl %esp, %ebx 20 43 movl -12(%ebp),%ecx movl $0xabcd, (%eax) movl %eax, 12(%eax,%edx) movl (%ebp,%eax,4),%ecx mrmovl -12(%ebp),%ecx Little endian 50 15 f4 ff ff ff movl %esi,0x41c(%esp) rmmovl %esi,0x41c(%esp) 40 64 1c 04 00 00 Jump Instructions Jump Unconditionally jmp 7 0 Jump When Less or Equal jle 7 1 Jump When Less jl 7 2 Jump When Equal je 7 3 Jump When Not Equal jne 7 4 Jump When Greater or Equal jge 7 5 Jump When Greater jg 7 6 Refer to generically as jxx Encodings differ only by function code Based on values of condition codes Same as IA32 counterparts Encode full destination address Unlike PC-relative addressing seen in IA32 F7A 7 Datorarkitektur 2007 F7A 8 Datorarkitektur 2007

Y86 Program Stack Increasing Addresses Stack Bottom Stack Top %esp Region of memory holding program data Used in Y86 (and IA32) for supporting procedure calls Stack top indicated by %esp Address of top stack element Stack grows toward lower addresses Top element is at highest address in the stack When pushing, must first decrement stack pointer When popping, increment stack pointer F7A 9 Datorarkitektur 2007 Stack Operations pushl ra a 0 ra 8 Decrement %esp by 4 Store word from ra to memory at %esp popl ra b 0 ra 8 Read word from memory at %esp Save in ra Increment %esp by 4 F7A 10 Datorarkitektur 2007 Subroutine Call and Return Miscellaneous Instructions call 8 0 Push address of next instruction onto stack nop 0 0 Don t do anything Start executing instructions at halt 1 0 ret 9 0 Pop value from stack Use as address for next instruction Stop executing instructions IA32 has comparable instruction, but can t execute it in user mode We will use it to stop the simulator F7A 11 Datorarkitektur 2007 F7A 12 Datorarkitektur 2007

Writing Y86 Code Y86 Code Generation Example Try to Use C Compiler as Much as Possible Write code in C Compile for IA32 with gcc -S Transliterate into Y86 Coding Example Find number of elements in null-terminated list int len1(int a[]); a 5043 6125 7395 0 3 First Try Write typical array code /* Find number of elements in null-terminated list */ int len1(int a[]) { int len; for (len = 0; a[len]; len++) ; return len; } Compile with gcc -O2 -S Problem Hard to do array indexing on Y86 Since don t have scaled addressing modes Similar to SPARC incl %eax cmpl $0,(%edx,%eax,4) jne L18 F7A 13 Datorarkitektur 2007 F7A 14 Datorarkitektur 2007 Y86 Code Generation Example #2 Y86 Code Generation Example #3 Second Try Write with pointer code Result Don t need to do indexed IA32 Code Setup Y86 Code Setup /* Find number of elements in null-terminated list */ int len2(int a[]) { int len = 0; while (*a++) len++; return len; } addressing movl (%edx),%eax incl %ecx addl $4,%edx testl %eax,%eax jne loop len2: pushl %ebp xorl %ecx,%ecx movl %esp,%ebp movl 8(%ebp),%edx movl (%edx),%eax jmp entry len2: pushl %ebp # Save %ebp xorl %ecx,%ecx # len = 0 rrmovl %esp,%ebp # Set frame mrmovl 8(%ebp),%edx# Get a mrmovl (%edx),%eax # Get *a jmp entry # Goto entry Compile with gcc -O2 -S F7A 15 Datorarkitektur 2007 F7A 16 Datorarkitektur 2007

Y86 Code Generation Example #4 IA32 Code Loop + Finish movl (%edx),%eax incl %ecx addl $4,%edx testl %eax,%eax jne loop movl %ebp,%esp movl %ecx,%eax popl %ebp ret Y86 Code Loop + Finish mrmovl (%edx),%eax # Get *a irmovl $1,%esi addl %esi,%ecx # len++ irmovl $4,%esi addl %esi,%edx # a++ andl %eax,%eax # *a == 0? jne loop # No--Loop rrmovl %ebp,%esp # Pop rrmovl %ecx,%eax # Rtn len popl %ebp ret F7A 17 Datorarkitektur 2007 Y86 Program Structure irmovl Stack,%esp # Set up stack rrmovl %esp,%ebp # Set up frame irmovl List,%edx pushl %edx # Push argument call len2 # Call Function halt # Halt.align 4 List: # List of elements.long 5043.long 6125.long 7395.long 0 # Function len2:... # Allocate space for stack.pos 0x100 Stack: Program starts at address 0 Must set up stack Make sure don t overwrite code! Must initialize data Can use symbolic names F7A 18 Datorarkitektur 2007 Assembling Y86 Program unix> yas eg.ys Generates object code file eg.yo Actually looks like disassembler output 0x000: 308400010000 irmovl Stack,%esp # Set up stack 0x006: 2045 rrmovl %esp,%ebp # Set up frame 0x008: 308218000000 irmovl List,%edx 0x00e: a028 pushl %edx # Push argument 0x010: 8028000000 call len2 # Call Function 0x015: 10 halt # Halt 0x018:.align 4 0x018: List: # List of elements 0x018: b3130000.long 5043 0x01c: ed170000.long 6125 0x020: e31c0000.long 7395 0x024: 00000000.long 0 F7A 19 Datorarkitektur 2007 Simulating Y86 Program unix> yis eg.yo Instruction set simulator Computes effect of each instruction on processor state Prints changes in state from original Stopped in 41 steps at PC = 0x16. Exception 'HLT', CC Z=1 S=0 O=0 Changes to registers: %eax: 0x00000000 0x00000003 %ecx: 0x00000000 0x00000003 %edx: 0x00000000 0x00000028 %esp: 0x00000000 0x000000fc %ebp: 0x00000000 0x00000100 %esi: 0x00000000 0x00000004 Changes to memory: 0x00f4: 0x00000000 0x00000100 0x00f8: 0x00000000 0x00000015 0x00fc: 0x00000000 0x00000018 F7A 20 Datorarkitektur 2007

CISC Instruction Sets Complex Instruction Set Computer Dominant style through mid-80 s Stack-oriented instruction set Use stack to pass arguments, save program counter Explicit push and pop instructions Arithmetic instructions can access memory addl %eax, 12(%ebx,%ecx,4) requires memory read and write Complex address calculation Condition codes Set as side effect of arithmetic and logical instructions Philosophy Add instructions to perform typical programming tasks F7A 21 Datorarkitektur 2007 RISC Instruction Sets Reduced Instruction Set Computer Internal project at IBM, later popularized by Hennessy (Stanford) and Patterson (Berkeley) Fewer, simpler instructions Might take more to get given task done Can execute them with small and fast hardware Register-oriented instruction set Many more (typically 32) registers Use for arguments, return pointer, temporaries Only load and store instructions can access memory Similar to Y86 mrmovl and rmmovl No Condition codes Test instructions return 0/1 in register SPARC has condition codes F7A 22 Datorarkitektur 2007 CISC vs. RISC Original Debate Strong opinions! CISC proponents---easy for compiler, fewer code bytes RISC proponents---better for optimizing compilers, can make run fast with simple chip design Current Status For desktop processors, choice of ISA not a technical issue With enough hardware, can make anything run fast Code compatibility more important For embedded processors, RISC makes sense Smaller, cheaper, less power F7A 23 Datorarkitektur 2007 Summary Y86 Instruction Set Architecture Similar state and instructions as IA32 Simpler encodings Somewhere between CISC and RISC How Important is ISA Design? Less now than before With enough hardware, can make almost anything go fast Intel is moving away from IA32 Does not allow enough parallel execution Introduced IA64» 64-bit word sizes (overcome address space limitations)» Radically different style of instruction set with explicit parallelism» Requires sophisticated compilers F7A 24 Datorarkitektur 2007