Processor Architecture: The Y86 Instruction Set Architecture

Slides:



Advertisements
Similar presentations
1 Seoul National University Wrap-Up. 2 Overview Seoul National University Wrap-Up of PIPE Design  Exception conditions  Performance analysis Modern.
Advertisements

Pipeline Enhancements for the Y86 Architecture
1/1/ / faculty of Electrical Engineering eindhoven university of technology Introduction Part 1: Bits, bytes and a simple processor dr.ir. A.C. Verschueren.
Randal E. Bryant Carnegie Mellon University CS:APP2e CS:APP Chapter 4 Computer Architecture SequentialImplementation CS:APP Chapter 4 Computer Architecture.
Machine-Level Programming III: Procedures Apr. 17, 2006 Topics IA32 stack discipline Register saving conventions Creating pointers to local variables CS213.
1 ICS 51 Introductory Computer Organization Fall 2006 updated: Oct. 2, 2006.
1 Function Calls Professor Jennifer Rexford COS 217 Reading: Chapter 4 of “Programming From the Ground Up” (available online from the course Web site)
Accessing parameters from the stack and calling functions.
Lecture Notes from Randal E. Bryant, CMU CS:APP Chapter 4 Computer Architecture Instruction Set Architecture CS:APP Chapter 4 Computer Architecture Instruction.
– 1 – , F’02 ICS05 Instructor: Peter A. Dinda TA: Bin Lin Recitation 4.
Instruction Set Architecture CSC 333. – 2 – Instruction Set Architecture Assembly Language View Processor state Registers, memory, … Instructions addl,
Assembly תרגול 8 פונקציות והתקפת buffer.. Procedures (Functions) A procedure call involves passing both data and control from one part of the code to.
4/6/08Prof. Hilfinger CS164 Lecture 291 Code Generation Lecture 29 (based on slides by R. Bodik)
Stack Activation Records Topics IA32 stack discipline Register saving conventions Creating pointers to local variables February 6, 2003 CSCE 212H Computer.
Computer ArchitectureFall 2008 © Sep 3 rd, 2008 Majd F. Sakr CS-447– Computer Architecture.
Computer Organization Chapter 4
Y86 Processor State Program Registers
CS:APP2e CS:APP Chapter 4 Computer Architecture Instruction Set Architecture.
Linked Lists in MIPS Let’s see how singly linked lists are implemented in MIPS on MP2, we have a special type of doubly linked list Each node consists.
Randal E. Bryant adapted by Jason Fritts CS:APP2e CS:APP Chapter 4 Computer Architecture Instruction Set Architecture CS:APP Chapter 4 Computer Architecture.
Fabián E. Bustamante, Spring 2007 Machine-Level Programming III - Procedures Today IA32 stack discipline Register saving conventions Creating pointers.
Chapter 4: Processor Architecture How does the hardware execute the instructions? We’ll see by studying an example system  Based on simple instruction.
Computer Architecture and Organization
Randal E. Bryant Carnegie Mellon University CS:APP CS:APP Chapter 4 Computer Architecture SequentialImplementation CS:APP Chapter 4 Computer Architecture.
Randal E. Bryant adapted by Jason Fritts CS:APP2e CS:APP Chapter 4 Computer Architecture SequentialImplementation CS:APP Chapter 4 Computer Architecture.
Datapath Design I Topics Sequential instruction execution cycle Instruction mapping to hardware Instruction decoding Systems I.
1 ICS 51 Introductory Computer Organization Fall 2009.
Based on slides by Patrice Belleville CPSC 121: Models of Computation Unit 10: A Working Computer.
Oct. 25, 2000Systems Architecture I1 Systems Architecture I (CS ) Lecture 9: Alternative Instruction Sets * Jeremy R. Johnson Wed. Oct. 25, 2000.
Architecture (I) Processor Architecture. – 2 – Processor Goal Understand basic computer organization Instruction set architecture Deeply explore the CPU.
1 Sequential CPU Implementation. 2 Outline Logic design Organizing Processing into Stages SEQ timing Suggested Reading 4.2,4.3.1 ~
Machine-level Programming III: Procedures Topics –IA32 stack discipline –Register saving conventions –Creating pointers to local variables.
Computer Architecture I: Outline and Instruction Set Architecture
1 Processor Architecture. Coverage Our Approach –Work through designs for particular instruction set Y86---a simplified version of the Intel IA32 (a.k.a.
Chapter 4: Processor Architecture
Computer Architecture
1 Assembly Language: Function Calls Jennifer Rexford.
IA32 Stack –Region of memory managed with stack discipline –Grows toward lower addresses –Register %esp indicates lowest stack address address of top element.
1 Seoul National University Sequential Implementation.
CPSC 121: Models of Computation
A job ad at a game programming company
CPSC 121: Models of Computation
Reading Condition Codes (Cont.)
IA32 Processors Evolutionary Design
ISA's, Compilers, and Assembly
Module 10: A Working Computer
Computer Architecture
Aaron Miller David Cohen Spring 2011
Machine-Level Programming II: Arithmetic & Control
Computer Architecture adapted by Jason Fritts then by David Ferry
asum.ys A Y86 Programming Example
Y86 Processor State Program Registers
Machine-Level Programming 4 Procedures
Processor Architecture: The Y86-64 Instruction Set Architecture
Seoul National University
Lecture 30 (based on slides by R. Bodik)
Fundamentals of Computer Organisation & Architecture
Machine-Level Programming 2 Control Flow
Processor Architecture: The Y86-64 Instruction Set Architecture
Machine-Level Programming III: Procedures Sept 18, 2001
MIPS Procedure Calls CSE 378 – Section 3.
Recap: Performance Comparison
Machine-Level Programming: Introduction
X86 Assembly Review.
Disassembly תרגול 7 ניתוח קוד.
Computer Architecture I: Outline and Instruction Set Architecture
CS-447– Computer Architecture M,W 10-11:20am Lecture 5 Instruction Set Architecture Sep 12th, 2007 Majd F. Sakr
Sequential Design תרגול 10.
Presentation transcript:

Processor Architecture: The Y86 Instruction Set Architecture Seoul National University Processor Architecture: The Y86 Instruction Set Architecture

Y86 Processor State Program Registers Seoul National University Y86 Processor State RF: Program registers CC: Condition codes Stat: Program status %eax %esi ZF SF OF DMEM: Memory %ecx %edi %edx %esp PC Program Registers Same 8 as with IA32. Each 32 bits Condition Codes Single-bit flags set by arithmetic or logical instructions ZF : Zero SF : Negative OF : Overflow Program Counter Indicates address of next instruction Program Status Indicates either normal operation or some error condition Memory Byte-addressable storage array Words stored in little-endian byte order %ebx %ebp

Y86 Instruction Set #1 Byte 1 2 3 4 5 halt nop 1 cmovXX rA, rB 2 fn rA Seoul National University Y86 Instruction Set #1 Byte 1 2 3 4 5 halt nop 1 cmovXX rA, rB 2 fn rA rB irmovl V, rB 3 8 rB V rmmovl rA, D(rB) 4 rA rB D mrmovl D(rB), rA 5 rA rB D OPl rA, rB 6 fn rA rB jXX Dest 7 fn Dest call Dest 8 Dest ret 9 pushl rA A rA 8 popl rA B rA 8

Y86 Instructions Format 1–6 bytes of information read from memory Seoul National University 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

Y86 Instruction Set #2 Byte rrmovl 2 cmovle 2 1 1 2 3 4 5 cmovl 2 halt Seoul National University Y86 Instruction Set #2 rrmovl 2 cmovle 2 1 Byte 1 2 3 4 5 cmovl 2 halt cmove 2 3 nop 1 cmovne 2 4 cmovXX rA, rB 2 fn rA rB cmovge 2 5 irmovl V, rB 3 8 rB V cmovg 2 6 rmmovl rA, D(rB) 4 rA rB D mrmovl D(rB), rA 5 rA rB D OPl rA, rB 6 fn rA rB jXX Dest 7 fn Dest call Dest 8 Dest ret 9 pushl rA A rA 8 popl rA B rA 8

Y86 Instruction Set #3 Byte 1 2 3 4 5 addl 6 subl 1 andl 2 xorl 3 halt Seoul National University Y86 Instruction Set #3 Byte 1 2 3 4 5 addl 6 subl 1 andl 2 xorl 3 halt nop 1 cmovXX rA, rB 2 fn rA rB irmovl V, rB 3 8 rB V rmmovl rA, D(rB) 4 rA rB D mrmovl D(rB), rA 5 rA rB D OPl rA, rB 6 fn rA rB jXX Dest 7 fn Dest call Dest 8 Dest ret 9 pushl rA A rA 8 popl rA B rA 8

Y86 Instruction Set #4 Byte 1 2 3 4 5 halt nop 1 cmovXX rA, rB 2 fn rA Seoul National University Y86 Instruction Set #4 Byte 1 2 3 4 5 halt nop 1 cmovXX rA, rB 2 fn rA rB irmovl V, rB 3 8 rB V rmmovl rA, D(rB) 4 rA rB D jmp 7 jle 1 jl 2 je 3 jne 4 jge 5 jg 6 mrmovl D(rB), rA 5 rA rB D OPl rA, rB 6 fn rA rB jXX Dest 7 fn Dest call Dest 8 Dest ret 9 pushl rA A rA 8 popl rA B rA 8

Encoding Registers Each register has 4-bit ID Seoul National University Encoding Registers Each register has 4-bit ID Same encoding as in IA32 Register ID 15 (0xF) indicates “no register” Will use this in our hardware design in multiple places %eax %ecx %edx %ebx %esp %ebp %esi %edi 1 2 3 4 5 6 7

Instruction Example Addition Instruction Seoul National University Instruction Example Addition Instruction 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 Generic Form Encoded Representation addl rA, rB 6 rA rB

Arithmetic and Logical Operations Seoul National University Arithmetic and Logical Operations Instruction Code Function Code Add Refer to generically as “OPl” Encodings differ only by “function code” Set condition codes as side effect addl rA, rB 6 rA rB Subtract (rA from rB) subl rA, rB 6 1 rA rB And andl rA, rB 6 2 rA rB Exclusive-Or xorl rA, rB 6 3 rA rB

Move Operations Like the IA32 movl instruction Seoul National University Move Operations Register → Register rrmovl rA, rB 2 rA rB Immediate → Register irmovl V, rB 3 8 rB V Register → Memory rmmovl rA, D(rB) 4 rA rB D Memory → Register mrmovl D(rB), rA 5 rA rB D Like the IA32 movl instruction Simpler format for memory addresses Give different names to keep them distinct

Move Instruction Examples Seoul National University 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 mrmovl -12(%ebp),%ecx 50 15 f4 ff ff ff movl %esi,0x41c(%esp) rmmovl %esi,0x41c(%esp) 40 64 1c 04 00 00 movl $0xabcd, (%eax) — movl %eax, 12(%eax,%edx) — movl (%ebp,%eax,4),%ecx —

Conditional Move Instructions Seoul National University Conditional Move Instructions Move Unconditionally Refer to generically as “cmovXX” Encodings differ only by “function code” Based on values of condition codes Variants of rrmovl instruction (Conditionally) copy value from source to destination register rrmovl rA, rB 2 rA rB Move When Less or Equal cmovle rA, rB 2 1 rA rB Move When Less cmovl rA, rB 2 rA rB Move When Equal cmove rA, rB 2 3 rA rB Move When Not Equal cmovne rA, rB 2 4 rA rB Move When Greater or Equal cmovge rA, rB 2 5 rA rB Move When Greater cmovg rA, rB 2 6 rA rB

Jump Instructions Refer to generically as “jXX” Seoul National University Jump Instructions Jump Unconditionally 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 jmp Dest 7 Dest Jump When Less or Equal jle Dest 7 1 Dest Jump When Less jl Dest 7 2 Dest Jump When Equal je Dest 7 3 Dest Jump When Not Equal jne Dest 7 4 Dest Jump When Greater or Equal jge Dest 7 5 Dest Jump When Greater jg Dest 7 6 Dest

Y86 Program Stack Region of memory holding program data Seoul National University 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 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 After popping, increment stack pointer • Increasing Addresses %esp Stack “Top”

Stack Operations Decrement %esp by 4 Seoul National University Stack Operations pushl rA A rA F Decrement %esp by 4 Store word from rA to memory at %esp Like IA32 Read word from memory at %esp Save in rA Increment %esp by 4 popl rA B rA F

Subroutine Call and Return Seoul National University Subroutine Call and Return call Dest 8 Dest Push address of next instruction onto stack Start executing instructions at Dest Like IA32 Pop value from stack Use as address for next instruction ret 9

Miscellaneous Instructions Seoul National University Miscellaneous Instructions nop 1 Don’t do anything Stop executing instructions IA32 has comparable instruction, but can’t execute it in user mode We will use it to stop the simulator Encoding ensures that program hitting memory initialized to zero will halt halt

Status Conditions Desired Behavior → Normal operation Seoul National University Status Conditions Mnemonic Code AOK 1 → Normal operation → Halt instruction encountered → Bad address (either instruction or data) encountered → Invalid instruction encountered Desired Behavior If AOK, keep going Otherwise, stop program execution Mnemonic Code HLT 2 Mnemonic Code ADR 3 Mnemonic Code INS 4

CISC Instruction Sets Stack-oriented instruction set Seoul National University 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

RISC Instruction Sets Fewer, simpler instructions Seoul National University 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

Seoul National University MIPS Registers

MIPS Instruction Examples Seoul National University MIPS Instruction Examples Op Ra Rb Rd Fn 00000 R-R addu $3,$2,$1 # Register add: $3 = $2+$1 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 Branch Op Ra Rb Offset beq $3,$2,dest # Branch when $3 = $2 Op Dest Jump jmp Dest # Jump to dest

CISC vs. RISC Original Debate Current Status Strong opinions! Seoul National University CISC vs. RISC Original Debate Strong opinions! CISC proponents---easy (?) for compilers, fewer code bytes RISC proponents---easy (?) for 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 Installed base / code compatibility more important For embedded processors, RISC makes sense Smaller, cheaper, less power Most cell phones use ARM processor

Summary Y86 Instruction Set Architecture How Important is ISA Design? Seoul National University 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 has evolved from IA32 to x86-64 Uses 64-bit words (including addresses) Adopted some features found in RISC More registers (16) Less reliance on stack