instruction set architectures part ii x86 risc and cisc
play

Instruction Set Architectures Part II: x86, RISC, and CISC - PowerPoint PPT Presentation

Instruction Set Architectures Part II: x86, RISC, and CISC Readings: 2.16-2.18 1 Goals for this Class Understand how CPUs run programs How do we express the computation the CPU? How does the CPU execute it? How does the


  1. Instruction Set Architectures Part II: x86, RISC, and CISC Readings: 2.16-2.18 1

  2. Goals for this Class • Understand how CPUs run programs • How do we express the computation the CPU? • How does the CPU execute it? • How does the CPU support other system components (e.g., the OS)? • What techniques and technologies are involved and how do they work? • Understand why CPU performance varies • How does CPU design impact performance? • What trade-offs are involved in designing a CPU? • How can we meaningfully measure and compare computer performance? • Understand why program performance varies • How do program characteristics affect performance? • How can we improve a programs performance by considering the CPU running it? • How do other system components impact program performance? 2

  3. Goals • Start learning to read x86 assembly • Understand the design trade-offs involved in crafting an ISA • Understand RISC and CISC • Motivations • Origins • Learn something about other current ISAs • Very long instruction word (VLIW) • Arm and Thumb 3

  4. The Stack Frame • Example A function’s “stack frame” holds main: • It’s local variables � addiu � $sp,$sp,-32 • Copies of callee-saved registers (if � sw � � $fp,24($sp) needs to used them) � move � $fp,$sp • Copies of caller-saved registers � sw � � $0,8($fp) (when it makes function calls). � li � � $v0,1 � • The frame pointer ($fp) points to the � sw � � $v0,12($fp) base of the frame stack frame. � li � � $v0,2 � • The frame pointer in action. � sw � � $v0,16($fp) • Adjust the stack pointer to allocate � lw � � $3,12($fp) the frame � lw � � $v0,16($fp) • Save the $fp into the frame (it’s � addu � $v0,$3,$v0 callee-saved) � sw � � $v0,8($fp) • Copy from the $sp to the $fp � lw � � $v0,8($fp) • � move � $sp,$fp Use the $sp as needed for function � lw � � $fp,24($sp) calls. • � addiu � $sp,$sp,32 Refer to local variables relative to � j � � $ra $fp. • Clean up when you’re done. 4

  5. The Stack Frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  6. The Stack Frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp sp-> 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  7. The Stack Frame main: PC-> � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp sp-> 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  8. The Stack Frame main: PC-> � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  9. The Stack Frame main: � addiu � $sp,$sp,-32 PC-> ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  10. The Stack Frame main: � addiu � $sp,$sp,-32 PC-> ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  11. The Stack Frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) PC-> � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  12. The Stack Frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) PC-> � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> fp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  13. The Stack Frame The stack frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) PC-> � move � $fp,$sp 0x1020 � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> fp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  14. The Stack Frame The stack frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 PC-> � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> fp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

  15. The Stack Frame The stack frame main: � addiu � $sp,$sp,-32 ... value fp-relative � sw � � $fp,24($sp) � move � $fp,$sp 0x1020 PC-> � sw � � $0,8($fp) 0x101C +32 � li � � $v0,1 � old fp � sw � � $v0,12($fp) 0x1018 +24 � li � � $v0,2 � 0x1014 +20 � sw � � $v0,16($fp) 0x1010 +16 � lw � � $3,12($fp) � lw � � $v0,16($fp) 0x100C +12 � addu � $v0,$3,$v0 0 0x1008 +8 � sw � � $v0,8($fp) � lw � � $v0,8($fp) 0x1004 +4 � move � $sp,$fp sp-> fp-> 0x1000 +0 � lw � � $fp,24($sp) 0x0FFC � addiu � $sp,$sp,32 � j � � $ra 5

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend