CISC 360 Instruction Set Architecture

Similar documents
Instruction Set Architecture

Instruction Set Architecture

Instruction Set Architecture

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

Chapter 4! Processor Architecture!

Instruction Set 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

CS429: Computer Organization and Architecture

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

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

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

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

Computer Organization: A Programmer's Perspective

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

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

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

Second Part of the Course

Reading assignment. Chapter 3.1, 3.2 Chapter 4.1, 4.3

Computer Organization Chapter 4. Prof. Qi Tian Fall 2013

Process Layout and Function Calls

Intel x86-64 and Y86-64 Instruction Set Architecture

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

Assembly I: Basic Operations. Jo, Heeseung

Machine-Level Programming II: Control and Arithmetic

ASSEMBLY I: BASIC OPERATIONS. Jo, Heeseung

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

Process Layout, Function Calls, and the Heap

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

CS241 Computer Organization Spring Addresses & Pointers

CS241 Computer Organization Spring 2015 IA

CS61 Section Solutions 3

CS429: Computer Organization and Architecture

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

Sungkyunkwan University

CSE2421 FINAL EXAM SPRING Name KEY. Instructions: Signature

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

Assembly I: Basic Operations. Computer Systems Laboratory Sungkyunkwan University

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

Sequential Implementation

Credits to Randy Bryant & Dave O Hallaron

The Hardware/Software Interface CSE351 Spring 2013

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

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

CISC Fall 2009

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

System Programming and Computer Architecture (Fall 2009)

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

Compiler Construction D7011E

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

Machine-level Programming (3)

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

Chapter 3 Machine-Level Programming II Control Flow

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

ASSEMBLY II: CONTROL FLOW. Jo, Heeseung

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

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

Processor Architecture I. Alexandre David

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

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

CS:APP Guide to Y86 Processor Simulators

CS 31: Intro to Systems Functions and the Stack. Martin Gagne Swarthmore College February 23, 2016

Machine Level Programming II: Arithmetic &Control

ASSEMBLY III: PROCEDURES. Jo, Heeseung

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

Assembly III: Procedures. Jo, Heeseung

CS213. Machine-Level Programming III: Procedures

Assembly III: Procedures. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

The course that gives CMU its Zip! Machine-Level Programming III: Procedures Sept. 17, 2002

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

Assembly Language: Function Calls. Goals of this Lecture. Function Call Problems

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

Giving credit where credit is due

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

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

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

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

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

Handout #2: Machine-Level Programs

Machine Programming 1: Introduction

Systems I. Machine-Level Programming I: Introduction

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

CS:APP Chapter 4 Computer Architecture Sequential Implementation

Procedure Calls. Young W. Lim Sat. Young W. Lim Procedure Calls Sat 1 / 27

Assembly Language: Function Calls

Machine-Level Programming II: Control Flow

Processor Architecture. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Assembly Language: Function Calls" Goals of this Lecture"

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

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

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

2.7 Supporting Procedures in hardware. Why procedures or functions? Procedure calls

Assembly Language: Function Calls" Goals of this Lecture"

CMSC 313 Lecture 12 [draft] How C functions pass parameters

Assembly Language: IA-32 Instructions

Processor Architecture

Instruction Set Architectures

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

CPS104 Recitation: Assembly Programming

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

Transcription:

CISC 360 Instruction Set Architecture Michela Taufer October 9, 2008 Powerpoint Lecture Notes for Computer Systems: A Programmer's Perspective, R. Bryant and D. O'Hallaron, Prentice Hall, 2003

Chapter Outline Background Instruction sets Logic design Sequential Implementation A simple, but not very fast processor design Pipelining Get more things running simultaneously Pipelined Implementation Make it work Advanced Topics Performance analysis High performance processor design 2 CISC 360 Fa08

Instruction Set Architecture Assembly Language View Processor state Registers, memory, Instructions addl, movl, leal, 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 simultaneously Application Program Compiler 3 CISC 360 Fa08 ISA CPU Design Circuit Design Chip Layout OS

Y86 Processor State %eax %ecx %edx %ebx Program registers %esi %edi %esp %ebp Condition codes OF ZF SF PC Memory Program Registers 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 Byte-addressable storage array Words stored in little-endian byte order 4 CISC 360 Fa08

Y86 Instructions 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 5 CISC 360 Fa08

Encoding Registers Each register has 4-bit ID %eax %ecx %edx %ebx 0 1 2 3 %esi %edi %esp %ebp 6 7 4 5 Same encoding as in IA32 Register ID 8 indicates no register Will use this in our hardware design in multiple places 6 CISC 360 Fa08

Instruction Example Addition Instruction Generic Form addl ra, rb 6 0 ra rb Encoded Representation 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 7 CISC 360 Fa08

Arithmetic and Logical Operations Instruction Code Function Code Add addl ra, rb 6 0 ra rb Subtract (ra from rb) subl ra, rb 6 1 ra rb And Refer to generically as OPl Encodings differ only by function code Low-order 4 bytes in first instruction word Set condition codes as side effect andl ra, rb 6 2 ra rb Exclusive-Or xorl ra, rb 6 3 ra rb 8 CISC 360 Fa08

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 9 CISC 360 Fa08

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 %esi,0x41c(%esp) mrmovl -12(%ebp),%ecx rmmovl %esi,0x41c(%esp) 50 15 f4 ff ff ff 40 64 1c 04 00 00 movl $0xabcd, (%eax) movl %eax, 12(%eax,%edx) movl (%ebp,%eax,4),%ecx 10 CISC 360 Fa08

Jump Instructions Jump Unconditionally jmp Dest 7 0 Jump When Less or Equal jle Dest 7 1 Jump When Less jl Dest 7 2 Jump When Equal je Dest 7 3 Jump When Not Equal jne Dest 7 4 Jump When Greater or Equal Dest Dest Dest Dest Dest 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 jge Dest 7 5 Dest Jump When Greater jg Dest 7 6 Dest 11 CISC 360 Fa08

Y86 Program Stack Stack Bottom Region of memory holding program data Used in Y86 (and IA32) for supporting procedure calls Stack top indicated by %esp Increasing Addresses Stack Top %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 12 CISC 360 Fa08

Stack Operations pushl ra a 0 ra 8 Decrement %esp by 4 Store word from ra to memory at %esp Like IA32 popl ra b 0 ra 8 Read word from memory at %esp Save in ra Increment %esp by 4 Like IA32 13 CISC 360 Fa08

Subroutine Call and Return call Dest 8 0 Dest Push address of next instruction onto stack Start executing instructions at Dest Like IA32 ret 9 0 Pop value from stack Use as address for next instruction Like IA32 14 CISC 360 Fa08

Miscellaneous Instructions nop 0 0 Donʼt do anything halt 1 0 Stop executing instructions IA32 has comparable instruction, but canʼt execute it in user mode We will use it to stop the simulator 15 CISC 360 Fa08

Writing Y86 Code 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 16 CISC 360 Fa08

Y86 Code Generation Example 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; } Problem Hard to do array indexing on Y86 Since donʼt have scaled addressing modes L18: incl %eax cmpl $0,(%edx,%eax,4) jne L18 Compile with gcc -O2 -S 17 CISC 360 Fa08

Y86 Code Generation Example #2 Second Try Write with pointer code Result Donʼt need to do indexed addressing /* Find number of elements in null-terminated list */ int len2(int a[]) { int len = 0; while (*a++) len++; return len; } L24: movl (%edx),%eax incl %ecx L26: addl $4,%edx testl %eax,%eax jne L24 Compile with gcc -O2 -S 18 CISC 360 Fa08

Y86 Code Generation Example #3 IA32 Code Setup len2: pushl %ebp xorl %ecx,%ecx movl %esp,%ebp movl 8(%ebp),%edx movl (%edx),%eax jmp L26 Y86 Code Setup 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 L26 # Goto entry 19 CISC 360 Fa08

Y86 Code Generation Example #4 IA32 Code Loop + Finish L24: movl (%edx),%eax incl %ecx L26: addl $4,%edx testl %eax,%eax jne L24 movl %ebp,%esp movl %ecx,%eax popl %ebp ret Y86 Code Loop + Finish L24: mrmovl (%edx),%eax # Get *a irmovl $1,%esi addl %esi,%ecx # len++ L26: # Entry: irmovl $4,%esi addl %esi,%edx # a++ andl %eax,%eax # *a == 0? jne L24 # No--Loop rrmovl %ebp,%esp # Pop rrmovl %ecx,%eax # Rtn len popl %ebp ret 20 CISC 360 Fa08

Y86 Program Structure irmovl Stack,%esp rrmovl %esp,%ebp irmovl List,%edx pushl %edx call len2 halt.align 4 List:.long 5043.long 6125.long 7395.long 0 # Set up stack # Set up frame # Push argument # Call Function # Halt # List of elements Program starts at address 0 Must set up stack Make sure donʼt overwrite code! Must initialize data Can use symbolic names # Function len2:... # Allocate space for stack.pos 0x100 Stack: 21 CISC 360 Fa08

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 22 CISC 360 Fa08

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 23 CISC 360 Fa08

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 24 CISC 360 Fa08

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 25 CISC 360 Fa08

MIPS Registers $0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $0 $at $v0 $v1 $a0 $a1 $a2 $a3 $t0 $t1 $t2 $t3 $t4 $t5 $t6 $t7 Constant 0 Reserved Temp. Return Values Procedure arguments Caller Save Temporaries: May be overwritten by called procedures $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 $s0 $s1 $s2 $s3 $s4 $s5 $s6 $s7 $t8 $t9 $k0 $k1 $gp $sp $s8 $ra Callee Save Temporaries: May not be overwritten by called procedures Caller Save Temp Reserved for Operating Sys Global Pointer Stack Pointer Callee Save Temp Return Address 26 CISC 360 Fa08

MIPS Instruction Examples R-R Op Ra Rb Rd 00000 Fn addu $3,$2,$1 # Register add: $3 = $2+$1 R-I Op Ra Rb Immediate addu $3,$2, 3145 # Immediate add: $3 = $2+3145 sll $3,$2,2 # Shift left: $3 = $2 << 2 Branch Op Ra Rb Offset beq $3,$2,dest # Branch when $3 = $2 Load/Store Op Ra Rb Offset lw $3,16($2) # Load Word: $3 = M[$2+16] sw $3,16($2) # Store Word: M[$2+16] = $3 27 CISC 360 Fa08

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 28 CISC 360 Fa08

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 29 CISC 360 Fa08

Deadlines 6 Oct 7 Exam I 6 Oct 9 Lec10 Computer Architecture - Overview 4 3.8-3.16 7 Oct 14 Lec11 Logic Design Lab 2 7 Oct 16 Lec12 Sequential Implementation 8 Oct 21 Lec13 Pipelined Implementation I 8 Oct 23 Lec14 Pipelined Implementation II 8 (*) Oct 24 Exercises in class in preparation to exam 9 Oct 28 Lec15 Computer Architecture Wrapup 9 Oct 30 Exam II 10 Nov 4 No class 10 Nov 6 Lec16 Program Optimization I 5 4 Lab 3 30 CISC 360 Fa08