cs 31 intro to systems isas and assembly
play

CS 31: Intro to Systems ISAs and Assembly Martin Gagn Swarthmore - PowerPoint PPT Presentation

CS 31: Intro to Systems ISAs and Assembly Martin Gagn Swarthmore College February 7, 2017 ANNOUNCEMENT All labs will meet in SCI 252 (the robot lab) tomorrow. Overview How to directly interact with hardware Instruction set


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

  2. ANNOUNCEMENT All labs will meet in SCI 252 (the robot lab) tomorrow.

  3. Overview • How to directly interact with hardware • Instruction set architecture (ISA) • Interface between programmer and CPU • Established instruction format (assembly lang) • Assembly programming (IA-32)

  4. Abstraction User / Programmer Wants low complexity Applications Specific functionality Software library Reusable functionality Operating system Manage resources Complex devices Compute & I/O

  5. Abstraction Applications Specific functionality This week: Machine Interface Operating system Manage resources Complex devices Last week: Circuits, Hardware Compute & I/O Implementation

  6. Compilation Steps (.c to a.out) C program ( p1.c ) text Usually compile to a.out in a single step: gcc –m32 p1.c -m32 tells gcc to compile for 32-bit Intel machines Compiler ( gcc –m32 ) Reality is more complex: there are intermediate steps! executable Executable code ( a.out ) binary

  7. Compilation Steps (.c to a.out) C program ( p1.c ) text You can see the results of intermediate compilation steps using different gcc flags CS75 Compiler ( gcc –m32 -S ) Assembly program ( p1.s ) text executable Executable code ( a.out ) binary

  8. Assembly Code Human-readable form of CPU instructions • Almost a 1-to-1 mapping to Machine Code • Hides some details: • Registers have names rather than numbers • Instructions have names rather than variable-size codes We’re going to use IA32 (x86) assembly • CS lab machines are 64 bit version of this ISA, but they can also run the 32-bit version (IA32) • Can compile C to IA32 assembly on our system: gcc –m32 -S code.c # open code.s in vim to view

  9. Compilation Steps (.c to a.out) C program ( p1.c ) text You can see the results of intermediate compilation steps using different gcc flags Compiler ( gcc –m32 -S ) Assembly program ( p1.s ) text Assembler ( gcc -c ( or as )) Other object files Object code ( p1.o ) binary (p2.o, p3.o, …) Linker ( gcc (or ld) ) Library obj. code ( libc.a ) executable Executable code ( a.out ) binary

  10. Object / Executable / Machine Code int main() { Assembly Machine Code (Hexadecimal) push %ebp 55 int a = 10; mov %esp, %ebp 89 E5 int b = 20; sub $16, %esp 83 EC 10 movl $10, -8(%ebp) C7 45 F8 0A 00 00 00 movl $20, -4(%ebp) C7 45 FC 14 00 00 00 a = a + b; movl -4(%ebp), %eax 8B 45 FC addl %eax, -8(%ebp) 01 45 F8 return a; movl -8(%ebp), %eax B8 45 F } leave

  11. Compilation Steps (.c to a.out) C program ( p1.c ) text High-level language Compiler ( gcc –m32 -S ) Interface for speaking to CPU Assembly program ( p1.s ) text CPU-specific format (011010 … ) Assembler ( gcc -c ( or as )) Other object files Object code ( p1.o ) binary (p2.o, p3.o, …) Linker ( gcc (or ld) ) Library obj. code ( libc.a ) executable Executable code ( a.out ) binary

  12. Instruction Set Architecture (ISA) • ISA (or simply architecture): Interface between lowest software level and the hardware. • Defines specification of the language for controlling CPU state: • Provides a set of instructions • Makes CPU registers available • Allows access to main memory • Exports control flow (change what executes next)

  13. Instruction Set Architecture (ISA) • The agreed-upon interface between all software that runs on the machine and the hardware that executes it. Application / Program Operating System Compiler Instruction Set Architecture CPU / Processor I/O system Digital Circuits Logic Gates

  14. ISA Examples • Intel IA-32 (80x86) • Intel IA-64 (Itanium) • ARM • VAX • MIPS • SPARC • PowerPC • Alpha • IBM Cell • IBM 360 • Motorola 68k How many of these have you used?

  15. High-level language ISA ISA Characteristics Hardware Implementation • Above ISA: High-level language (C, Python, … ) • Hides ISA from users • Allows a program to run on any machine (after translation by human and/or compiler) • Below ISA: Hardware implementing ISA can change (faster, smaller, … ) • ISA is like a CPU “family”

  16. Instruction Translation sum.c (High-level C) int sum(int x, int y) sum.s from sum.c: { gcc –m32 –S sum.c int res; res = x+y; return res; } sum.s (Assembly) sum: Instructions to set up the stack pushl %ebp frame and get argument values movl %esp,%ebp subl $24, %esp movl -12(%ebp),%eax An add instruction to compute sum addl -8(%ebp),%eax movl %eax, -12(%ebp) leave Instructions to return from function ret

  17. ISA Design Questions sum.c (High-level C) int sum(int x, int y) sum.s from sum.c: { gcc –m32 –S sum.c int res; res = x+y; return res; } sum.s (Assembly) sum: What should these instructions do? pushl %ebp movl %esp,%ebp What is/isn’t allowed by hardware? subl $24, %esp movl -12(%ebp),%eax How complex should they be? addl -8(%ebp),%eax movl %eax, -12(%ebp) leave Example: supporting multiplication. ret

  18. C statement: A = A*B Simple instructions: Powerful instructions: LOAD A, eax MULT B, A LOAD B, ebx PROD eax, ebx STORE ebx, A Translation: Load the values ‘A’ and ‘B’ from memory into registers, compute the product, store the result in memory where ‘A’ was.

  19. Which would you use if you were designing an ISA for your CPU? (Why?) Powerful instructions: Simple instructions: MULT B, A LOAD A, eax LOAD B, ebx PROD eax, ebx STORE ebx, A A. Simple B. Powerful C. Something else

  20. RISC versus CISC (Historically) • Complex Instruction Set Computing (CISC) • Large, rich instruction set • More complicated instructions built into hardware • Multiple clock cycles per instruction • Easier for humans to reason about • Reduced Instruction Set Computing (RISC) • Small, highly optimized set of instructions • Memory accesses are specific instructions • One instruction per clock cycle • Compiler: more work, more potential optimization

  21. So . . . Which System “Won”? • Most ISAs (after mid/late 1980’s) are RISC • The ubiquitous Intel x86 is CISC • Tablets and smartphones (ARM) taking over? • x86 breaks down CISC assembly into multiple, RISC-like, machine language instructions • Distinction between RISC and CISC is less clear • Some RISC instruction sets have more instructions than some CISC sets

  22. Intel x86 Family (IA-32) Intel i386 (1985) Intel Core i7 4770k (2013) • 12 MHz - 40 MHz • 3,500 MHz • ~300,000 transistors • ~1,400,000,000 transistors • Component size: 1.5 µm • Component size: 22 nm Everything in this family uses the same ISA (Same instructions)!

  23. Assembly Programmer’s View of State 32-bit Registers CPU Memory name value %eax BUS address value %ecx 0x00000000 Addresses %edx 0x00000001 %ebx … %esi Data Program: %edi Instructions %esp data %ebp instrs % eip next instr stack addr (PC) % EFLAGS cond. codes 0xffffffff Registers: Memory: • Byte addressable array PC : Program counter ( %eip ) • Program code and data Condition codes ( %EFLAGS ) • Execution stack General Purpose ( %eax - %ebp )

  24. Processor State in Registers • Information about %eax currently executing %ecx program %edx General purpose registers • Temporary data %ebx ( %eax - %edi ) %esi • Location of runtime stack %edi ( %ebp , %esp ) Current stack top %esp • Location of current code Current stack frame %ebp control point ( %eip , … ) • Status of recent tests Instruction pointer %eip %EFLAGS (PC) ( CF , ZF , SF , OF ) Condition codes CF ZF SF OF

  25. General purpose Registers • Remaining Six are for instruction operands • Can store 4 byte data or address value (ex. 3 + 5) Register Register The low-order 2 bytes and two low-order 1 bytes of name value some of these can be named. %ax is the low-order 16 bits of %eax %eax 3 %al is the low-order 8 bits of %eax May see their use in ops involving shorts or chars %ecx 5 %edx 8 31 16 15 8 7 0 %ebx %eax %ax %ah %al %esi %ecx %cx %ch %cl %edi %edx %dx %dh %dl %ebx %bx %bh %bl %esp %esi %si %ebp %eip %edi %di %EFLAGS %esp %sp %ebp %bp

  26. Types of IA32 Instructions • Data movement – Move values between registers and memory – Example: movl • Load: move data from memory to register • Store: move data from register to memory

  27. Data Movement Move values between memory and registers or between two registers. (Memory) Program Counter (PC): Memory address of next instr 0: 1: Instruction Register (IR): Instruction contents (bits) 2: 3: 4: … Data in N-1: 32-bit Register #0 WE MUX Data in 32-bit Register #1 A WE L Data in 32-bit Register #2 U WE MUX Data in … 32-bit Register #3 WE Register File

  28. Types of IA32 Instructions • Data movement – Move values between registers and memory • Arithmetic – Uses ALU to compute a value – Example: addl

  29. Arithmetic Use ALU to compute a value, store result in register / memory. (Memory) Program Counter (PC): Memory address of next instr 0: 1: Instruction Register (IR): Instruction contents (bits) 2: 3: 4: … Data in N-1: 32-bit Register #0 WE MUX Data in 32-bit Register #1 A WE L Data in 32-bit Register #2 U WE MUX Data in … 32-bit Register #3 WE Register File

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