Learning Outcomes. System Calls. System Calls. The System Call Interface: A Brief Overview. System Calls. The Structure of a Computer System

Size: px
Start display at page:

Download "Learning Outcomes. System Calls. System Calls. The System Call Interface: A Brief Overview. System Calls. The Structure of a Computer System"

Transcription

1 Learning Outcomes System Calls Interface and Implementation A high-level understanding of System Call interface Mostly from the user s perspective From textbook (section.6) Understanding of how the application-kernel boundary is crossed with system calls in general Including an appreciation of the relationship between a case study (OS/6 system call handling) and the general case. Exposure architectural details of the MIPS R3 Detailed understanding of the of exception handling mechanism From Hardware Guide on class web site Understanding of the existence of compiler function calling conventions Including details of the MIPS C compiler calling convention 2 The Structure of a Computer System System Calls Interface Application System Libraries User Mode Kernel Mode Device OS Device Interaction via System Calls Memory 3 4 System Calls Can be viewed as special function calls Provides for a controlled entry into the kernel While in kernel, they perform a privileged operation Returns to original caller with the result The system call interface represents the abstract machine provided by the operating system. The System Call Interface: A Brief Overview From the user s perspective Process Management File I/O Directories management Some other selected Calls There are many more On Linux, see man syscalls for a list 5 6

2 Some System Calls For Process Management Some System Calls For File Management 7 8 Some System Calls For Directory Management Some System Calls For Miscellaneous Tasks 9 A stripped down shell: System Calls System Calls while (TRUE) { /* repeat forever */ type_prompt( ); /* display prompt */ read_command (command, parameters) /* input from terminal */ if (fork()!= ) { /* fork off child process */ /* Parent code */ waitpid( -, &status, ); /* wait for child to exit */ } else { /* Child code */ execve (command, parameters, ); /* execute command */ } } Some Win32 API calls 2 2

3 System Call Implementation Crossing user-kernel boundary A Simple Model of CPU Computation The fetch-execute cycle Load memory contents from address in program counter () The instruction Execute the instruction Increment Repeat CPU Registers : x3 3 4 A Simple Model of CPU Computation Stack Pointer Register Condition codes Positive result Zero result Negative result General Purpose Registers Holds operands of most instructions Enables programmers (compiler) to minimise memory references. CPU Registers : x3 SP: xcbf3 R Rn Privileged-mode Operation To protect operating system execution, two or more CPU modes of operation exist Privileged mode (system-, kernelmode) All instructions and registers are available User-mode Uses safe subset of the instruction set Only affects the state of the application itself They cannot be used to uncontrollably interfere with OS Only safe registers are accessible CPU Registers Interrupt Mask Exception Type MMU regs Others : x3 SP: xcbf3 R Rn 5 6 Example Unsafe Instruction cli instruction on x86 architecture Disables interrupts Example exploit cli /* disable interrupts */ while (true) /* loop forever */; 7 Privileged-mode Operation The accessibility of addresses within an address space changes depending on operating mode To protect kernel code and data Note: The exact memory ranges are usually configurable, and vary between CPU architectures and/or operating systems. xffffffff x8 x Memory Address Space Accessible only to Kernel-mode Accessible to User- and Kernel-mode 8 3

4 System Call Questions we ll answer User Mode Kernel Mode System call mechanism securely transfers from user execution to kernel execution and back. Application System Call Handler 9 There is only one register set How is register use managed What does an application expect a system call to look like How is the transition to kernel mode triggered Where is the OS entry point (system call handler) How does the OS know what to do 2 System Call Mechanism Overview System call transitions triggered by special processor instructions User to Kernel System call instruction Kernel to User Return from privileged mode instruction System Call Mechanism Overview Processor mode Switched from user-mode to kernel-mode Switched back when returning to user mode SP User-level SP is saved and a kernel SP is initialised User-level SP restored when returning to user-mode User-level is saved and set to kernel entry point User-level restored when returning to user-level Kernel entry via the designated entry point must be strictly enforced 2 22 System Call Mechanism Overview Registers Set at user-level to indicate system call type and its arguments A convention between applications and the kernel Some registers are preserved at user-level or kernellevel in order to restart user-level execution Depends on language calling convention etc. Result of system call placed in registers when returning to user-level Another convention Why do we need system calls Why not simply jump into the kernel via a function call Function calls do not Change from user to kernel mode and eventually back again Restrict possible entry points to secure locations To prevent entering after any security checks

5 Steps in Making a System Call The MIPS R2/R3 Before looking at system call mechanics in some detail, we need a basic understanding of the MIPS R3 There are steps in making the system call read (fd, buffer, nbytes) MIPS R3 Load/store architecture No instructions that operate on memory except load and store Simple load/stores to/from memory from/to registers Store word: sw r4, (r5) Store contents of r4 in memory using address contained in register r5 Load word: lw r3,(r7) Load contents of memory into r3 using address contained in r7 Delay of one instruction after load before data available in destination register» Must always an instruction between a load from memory and the subsequent use of the register. lw, sw, lb, sb, lh, sh,. MIPS R3 Arithmetic and logical operations are register to register operations E.g., add r3, r2, r No arithmetic operations on memory Example add r3, r2, r r3 = r2 + r Some other instructions add, sub, and, or, xor, sll, srl move r2, r r2 = r MIPS R3 All instructions are encoded in 32-bit Some instructions have immediate operands Immediate values are constants encoded in the instruction itself Only 6-bit value Examples Add Immediate: addi r2, r, 248 r2 = r Load Immediate : li r2, 234 r2 = 234 Example code Simple code example: a = a + lw r4,32(r29) li r5, add r4, r4, r5 sw r4,32(r29) // r29 = stack pointer Offset(Address)

6 MIPS Registers User-mode accessible registers 32 general purpose registers r hardwired to zero r3 the link register for jumpand-link (JAL) instruction HI/LO 2 * 32-bits for multiply and divide Not directly visible Modified implicitly by jump and branch instructions Branching and Jumping Branching and jumping have a branch delay slot li r2, sw r,(r3) The instruction li r2, 2 following a branch li r2, 3 or jump is always : sw r2, (r3) executed prior to destination of jump j f 3 32 MIPS R3 RISC architecture 5 stage pipeline Instruction partially through pipeline prior to jmp having an effect Jump and Link Instruction JAL is used to implement function calls r3 = +8 Return Address register (RA) is used to return from function call x x4 x8 : x2a jal f nop lw r4,(r6) sw r2, (r3) 33 x38 x3a jr r3 nop 34 Compiler Register Conventions Compiler Register Conventions Given 32 registers, which registers are used for Local variables Argument passing Function call results Stack Pointer

7 int fact(int n) { int r = ; int i; for (i = ; i < n+; i++) { r = r * i; } return r; } Simple factorial : 88b blez a,3 <fact+x3> 4: 2484 addiu a,a, 8: 243 li v, c: 242 li v, : 438 mult v,v 4: 2463 addiu v,v, 8: 2 mflo v c: nop 2: 464fffc bne v,a,4 <fact+x4> 24: 438 mult v,v 28: 3e8 jr ra 2c: nop 3: 3e8 jr ra 34: 242 li v, Function Stack Frames Each function call allocates a new stack frame for local variables, the return address, previous frame pointer etc. Frame pointer: start of current stack frame Stack pointer: end of current stack frame Example: assume f() calls f2(), which calls f3(). Frame Pointer Stack Pointer Stack f() stack frame Function Stack Frames Each function call allocates a new stack frame for local variables, the return address, previous frame pointer etc. Frame pointer: start of current stack frame Stack pointer: end of current stack frame Example: assume f() calls f2(), which calls f3(). Frame Pointer Stack Pointer Stack f() stack frame f2() stack frame Function Stack Frames Each function call allocates a new stack frame for local variables, the return address, previous frame pointer etc. Frame pointer: start of current stack frame Stack pointer: end of current stack frame Example: assume f() calls f2(), which calls f3(). Frame Pointer Stack Pointer Stack f() stack frame f2() stack frame f3() stack frame 39 4 Stack Frame Example Code MIPS calling convention for gcc Args -4 have space reserved for them main () { int i; } i = sixargs(,2,3,4,5,6); int sixargs(int a, int b, int c, int d, int e, int f) { return a + b + c + d + e + f; }

8 4c <main>: 4c: 27bdffd8 addiu sp,sp,-4 42: afbf24 sw ra,36(sp) 424: afbe2 sw s8,32(sp) 428: 3af2 move s8,sp 42c: 2425 li v,5 43: afa2 sw v,6(sp) 434: 2426 li v,6 438: afa24 sw v,2(sp) 43c: 244 li a, 44: 2452 li a,2 444: 2463 li a2,3 448: c2c jal 4b <sixargs> 44c: 2474 li a3,4 45: afc28 sw v,24(s8) 454: 3ce82 move sp,s8 458: 8fbf24 lw ra,36(sp) 45c: 8fbe2 lw s8,32(sp) 46: 3e8 jr ra 464: 27bd28 addiu sp,sp,4... 4b <sixargs>: 4b: 27bdfff8 addiu sp,sp,-8 4b4: afbe sw s8,(sp) 4b8: 3af2 move s8,sp 4bc: afc48 sw a,8(s8) 4c: afc5c sw a,2(s8) 4c4: afc6 sw a2,6(s8) 4c8: afc74 sw a3,2(s8) 4cc: 8fc38 lw v,8(s8) 4d: 8fc2c lw v,2(s8) 4d4: nop 4d8: 622 addu v,v,v 4dc: 8fc3 lw v,6(s8) 4e: nop 4e4: 432 addu v,v,v 4e8: 8fc34 lw v,2(s8) 4ec: nop 4f: 432 addu v,v,v 4f4: 8fc38 lw v,24(s8) 4f8: nop fc: 432 addu v,v,v 4: 8fc3c lw v,28(s8) 44: nop 48: 432 addu v,v,v 4c: 3ce82 move sp,s8 4: 8fbe lw s8,(sp) 44: 3e8 jr ra 48: 27bd8 addiu sp,sp,8 Coprocessor The processor control registers are located in CP Exception/Interrupt management registers Translation management registers CP is manipulated using mtc (move to) and mfc (move from) instructions mtc/mfc are only accessible in kernel mode. CP CP (floating point) : x3 HI/LO R Rn CP Registers c_status Exception Management c_cause of the recent exception c_status Current status of the CPU c_epc Address of the instruction that caused the exception c_badvaddr Address accessed that caused the exception Miscellaneous c_prid Processor Identifier Memory Management c_index c_random c_entryhi c_entrylo c_context More about these later in course For practical purposes, you can ignore most bits Green background is the focus

9 c_status c_cause IM Individual interrupt mask bits 6 external 2 software KU = kernel = user mode IE = all interrupts masked = interrupts enable Mask determined via IM bits c, p, o = current, previous, old 49 IP Interrupts pending 8 bits indicating current state of interrupt lines CE Coprocessor error Attempt to access disabled Copro. BD If set, the instruction that caused the exception was in a branch delay slot ExcCode The code number of the exception taken 5 Exception Codes Exception Codes 5 52 c_epc Exception Vectors The Exception Program Counter Points to address of where to restart execution after handling the exception or interrupt Example Assume sw r3,(r4) causes a restartable fault exception Aside: We are ignore BD-bit in c_cause which is also used in reality on rare occasions. nop sw r3 (r4) nop C_epc C_cause C_status CP (floating point) : x3 HI/LO R Rn

10 Simple Exception Walk-through Application User Mode Kernel Mode Interrupt Handler 55 Hardware exception handling x Let s now walk through an exception Assume an interrupt occurred as the previous instruction completed Note: We are in user mode with interrupts enabled 56 Hardware exception handling x Instruction address at which to restart after the interrupt is transferred to x Hardware exception handling x Kernel Mode is set, and previous mode shifted along Interrupts disabled and previous x state shifted along Hardware exception handling x Code for the exception placed in. Note Interrupt code = x Hardware exception handling x88 Address of general exception vector placed in x

11 Hardware exception handling x88 CPU is now running in kernel mode at x88, with interrupts disabled All information required to Find out what caused the exception Restart after exception handling is in coprocessor registers Badvaddr x Returning from an exception For now, lets ignore how the exception is actually handled how user-level registers are preserved Let s simply look at how we return from the exception 62 Returning from an exception x8234 This code to return is lw r27, saved_epc nop jr r27 rfe x Load the contents of which is usually moved earlier to somewhere in memory by the exception handler 63 Returning from an exception x This code to return is lw r27, saved_epc nop jr r27 rfe x Store the back in the 64 Returning from an exception x In the branch delay x slot, execute a restore from This code to return is exception instruction lw r27, saved_epc nop jr r27 rfe Returning from an exception x We are now back in the same state we were in when the exception happened x

12 MIPS System Calls System calls are invoked via a syscall instruction. The syscall instruction causes an exception and transfers control to the general exception handler A convention (an agreement between the kernel and applications) is required as to how user-level software indicates Which system call is required Where its arguments are Where the result should go 67 OS/6 Systems Calls OS/6 uses the following conventions Arguments are passed and returned via the normal C function calling convention Additionally Reg v contains the system call number On return, reg a3 contains : if success, v contains successful result not : if failure, v has the errno.» v stored in errno» - returned in v 68 Convention for kernel entry ra fp sp gp k k s7 s t9 t a3 a2 a a v v AT zero Args in Preserved Preserved for C calling convention Preserved SysCall No. Success Result ra fp sp gp k k s7 s t9 t a3 a2 a a v v AT zero Convention for kernel exit 69 Seriously lowlevel code follows This code is not for the faint hearted move a,s3 addiu a,sp,6 jal 468c <read> li a2,24 move s,v blez s,494 <docat+x9 7 User-Level System Call Walk Through Calling read() int read(int filehandle, void *buffer, size_t size) Three arguments, one return value Code fragment calling the read function 424: 2622 move a,s3 428: 27a5 addiu a,sp,6 42c: ca3 jal 468c <read> 43: 2464 li a2,24 434: 482 move s,v 438: a6 blez s,494 <docat+x94> Args are loaded, return value is tested Inside the read() syscall function part 468c <read>: 468c: 89 j 464 < syscall> 469: 2425 li v,5 Appropriate registers are preserved Arguments (a-a3), return address (ra), etc. The syscall number (5) is loaded into v Jump (not jump and link) to the common syscall routine

13 The read() syscall function part 2 Generate a syscall exception 464 < syscall>: 464: c syscall 4644: e5 beqz a3,465c < syscall+xc> 4648: nop 464c: 3c lui at,x 465: ac22 sw v,(at) 4654: 243ffff li v,- 4658: 242ffff li v,- 465c: 3e8 jr ra 466: nop The read() syscall function part 2 Test success, if yes, branch to return from function 464 < syscall>: 464: c syscall 4644: e5 beqz a3,465c < syscall+xc> 4648: nop 464c: 3c lui at,x 465: ac22 sw v,(at) 4654: 243ffff li v,- 4658: 242ffff li v,- 465c: 3e8 jr ra 466: nop The read() syscall function part < syscall>: If failure, store code 464: c syscall in errno 4644: e5 beqz a3,465c < syscall+xc> 4648: nop 464c: 3c lui at,x 465: ac22 sw v,(at) 4654: 243ffff li v,- 4658: 242ffff li v,- 465c: 3e8 jr ra 466: nop The read() syscall function part < syscall>: Set read() result to 464: c syscall : e5 beqz a3,465c < syscall+xc> 4648: nop 464c: 3c lui at,x 465: ac22 sw v,(at) 4654: 243ffff li v,- 4658: 242ffff li v,- 465c: 3e8 jr ra 466: nop The read() syscall function part < syscall>: 464: c syscall Return to location after where read() was called 4644: e5 beqz a3,465c < syscall+xc> 4648: nop 464c: 3c lui at,x 465: ac22 sw v,(at) 4654: 243ffff li v,- 4658: 242ffff li v,- 465c: 3e8 jr ra 466: nop Summary From the caller s perspective, the read() system call behaves like a normal function call It preserves the calling convention of the language However, the actual function implements its own convention by agreement with the kernel Our OS/6 example assumes the kernel preserves appropriate registers(s-s8, sp, gp, ra). Most languages have similar libraries that interface with the operating system

14 System Calls - Kernel Side OS/6 Exception Handling Things left to do Change to kernel stack Preserve registers by saving to memory (on the kernel stack) Leave saved registers somewhere accessible to Read arguments Store return values Do the read() Restore registers Switch back to user stack Return to application 79 Note: The following code is from the uniprocessor variant of OS6 (v.x). Simpler, but broadly similar. 8 exception: move k, sp /* Save previous stack pointer in k */ mfc k, c_status /* Get status register */ andi k, k, CST_Kup /* Check the we-were-in-user-mode bit */ beq k, $, f /* If clear, from kernel, already have stack */ nop /* delay slot */ /* Coming from user mode - load kernel stack into sp */ la k, curkstack /* get address of "curkstack" */ lw sp, (k) /* get its value */ nop /* delay slot for the load */ Note k, k registers : available for mfc k, c_cause /* Now, load the exception cause. */ j common_exception /* kernel Skip to use common code */ nop /* delay slot */ exception: move k, sp /* Save previous stack pointer in k */ mfc k, c_status /* Get status register */ andi k, k, CST_Kup /* Check the we-were-in-user-mode bit */ beq k, $, f /* If clear, from kernel, already have stack */ nop /* delay slot */ : /* Coming from user mode - load kernel stack into sp */ la k, curkstack /* get address of "curkstack" */ lw sp, (k) /* get its value */ nop /* delay slot for the load */ mfc k, c_cause /* Now, load the exception cause. */ j common_exception /* Skip to common code */ nop /* delay slot */ 8 82 common_exception: /* * At this point: * Interrupts are off. (The processor did this for us.) * k contains the exception cause value. * k contains the old stack pointer. * sp points into the kernel stack. * All other registers are untouched. */ /* * Allocate stack space for 37 words to hold the trap frame, * plus four more words for a minimal argument block. */ addi sp, sp, -64 /* The order here must match mips/include/trapframe.h. */ sw ra, 6(sp) /* dummy for gdb */ sw s8, 56(sp) /* save s8 */ sw sp, 52(sp) /* dummy for gdb */ sw gp, 48(sp) /* save gp */ sw k, 44(sp) /* dummy for gdb */ sw k, 4(sp) /* dummy for gdb */ These six stores are a hack to avoid sw k, 52(sp) /* real saved sp */ confusing GDB nop /* delay slot for store */ You can ignore the details of why and mfc k, c_epc /* Copr. reg 3 == for exception */ sw k, 6(sp) /* real saved */ how

15 /* The order here must match mips/include/trapframe.h. */ sw ra, 6(sp) /* dummy for gdb */ sw s8, 56(sp) /* save s8 */ sw sp, 52(sp) /* dummy for gdb */ sw gp, 48(sp) /* save gp */ sw k, 44(sp) /* dummy for gdb */ sw k, 4(sp) /* dummy for gdb */ sw k, 52(sp) /* real saved sp */ nop /* delay slot for store */ The real work starts here mfc k, c_epc /* Copr. reg 3 == for exception */ sw k, 6(sp) /* real saved */ 85 sw t9, 36(sp) sw t8, 32(sp) sw s7, 28(sp) sw s6, 24(sp) sw s5, 2(sp) sw s4, 6(sp) sw s3, 2(sp) sw s2, 8(sp) sw s, 4(sp) sw s, (sp) sw t7, 96(sp) sw t6, 92(sp) sw t5, 88(sp) sw t4, 84(sp) sw t3, 8(sp) sw t2, 76(sp) sw t, 72(sp) sw t, 68(sp) sw a3, 64(sp) sw a2, 6(sp) sw a, 56(sp) sw a, 52(sp) sw v, 48(sp) sw v, 44(sp) sw AT, 4(sp) sw ra, 36(sp) Save all the registers on the kernel stack 86 /* * Save special registers. */ mfhi t mflo t sw t, 32(sp) sw t, 28(sp) /* * Save remaining exception context information. */ sw k, 24(sp) /* k was loaded with cause earlier */ mfc t, c_status /* Copr. reg == status */ sw t, 2(sp) mfc t2, c_vaddr /* Copr. reg 8 == faulting vaddr */ sw t2, 6(sp) /* * Pretend to save $ for gdb's benefit. */ sw $, 2(sp) We can now use the other registers (t, t) that we have preserved on the stack 87 /* * Prepare to call mips_trap(struct trapframe *) */ addiu a, sp, 6 /* set argument */ jal mips_trap /* call it */ nop /* delay slot */ Create a pointer to the base of the saved registers and state in the first argument register 88 struct trapframe { }; u_int32_t tf_vaddr; /* vaddr register */ u_int32_t tf_status; /* status register */ u_int32_t tf_cause; /* cause register */ u_int32_t tf_lo; u_int32_t tf_hi; u_int32_t tf_ra;/* Saved register 3 */ u_int32_t tf_at;/* Saved register (AT) */ u_int32_t tf_v;/* Saved register 2 (v) */ u_int32_t tf_v;/* etc. */ u_int32_t tf_a; u_int32_t tf_a; u_int32_t tf_a2; u_int32_t tf_a3; u_int32_t tf_t; u_int32_t tf_t7; u_int32_t tf_s; u_int32_t tf_s7; u_int32_t tf_t8; u_int32_t tf_t9; u_int32_t tf_k;/* dummy (see exception.s comments) */ u_int32_t tf_k;/* dummy */ u_int32_t tf_gp; u_int32_t tf_sp; u_int32_t tf_s8; u_int32_t tf_epc; */ By creating a pointer to here of type struct trapframe *, we can access the user s saved registers as normal variables within C /* coprocessor epc register Kernel Stack epc s8 sp gp k k t9 t8 at ra hi lo cause status vaddr 89 Now we arrive in the C kernel /* * General trap (exception) handling function for mips. * This is called by the assembly-language exception handler once * the trapframe has been set up. */ void mips_trap(struct trapframe *tf) { u_int32_t code, isutlb, iskern; int savespl; /* The trap frame is supposed to be 37 registers long. */ assert(sizeof(struct trapframe)==(37*4)); /* Save the value of curspl, which belongs to the old context. */ savespl = curspl; /* Right now, interrupts should be off. */ curspl = SPL_HIGH; 9 5

16 What happens next The kernel deals with whatever caused the exception Syscall Interrupt Page fault It potentially modifies the trapframe, etc E.g., Store return code in v, zero in a3 mips_trap eventually returns exception_return: /* 6(sp) no need to restore tf_vaddr */ lw t, 2(sp) /* load status register value into t */ nop /* load delay slot */ mtc t, c_status /* store it back to coprocessor */ /* 24(sp) no need to restore tf_cause */ /* restore special registers */ lw t, 28(sp) lw t, 32(sp) mtlo t mthi t /* load the general registers */ lw ra, 36(sp) lw AT, 4(sp) lw v, 44(sp) lw v, 48(sp) lw a, 52(sp) lw a, 56(sp) lw a2, 6(sp) lw a3, 64(sp) 9 92 lw t, 68(sp) lw t, 72(sp) lw t2, 76(sp) lw t3, 8(sp) lw t4, 84(sp) lw t5, 88(sp) lw t6, 92(sp) lw t7, 96(sp) lw s, (sp) lw s, 4(sp) lw s2, 8(sp) lw s3, 2(sp) lw s4, 6(sp) lw s5, 2(sp) lw s6, 24(sp) lw s7, 28(sp) lw t8, 32(sp) lw t9, 36(sp) /* 4(sp) "saved" k was dummy garbage anyway */ /* 44(sp) "saved" k was dummy garbage anyway */ lw gp, 48(sp) /* restore gp */ /* 52(sp) stack pointer - below */ lw s8, 56(sp) /* restore s8 */ lw k, 6(sp) /* fetch exception return into k */ lw sp, 52(sp) /* fetch saved sp (must be last) */ /* done */ jr k /* jump back */ rfe /* in delay slot */.end common_exception Note again that only k, k have been trashed

Learning Outcomes. A high-level understanding of System Calls Mostly from the user s perspective From textbook (section 1.6)

Learning Outcomes. A high-level understanding of System Calls Mostly from the user s perspective From textbook (section 1.6) System Calls 1 Learning Outcomes A high-level understanding of System Calls Mostly from the user s perspective From textbook (section 1.6) Exposure architectural details of the MIPS R3000 Detailed understanding

More information

Learning Outcomes. Understanding of the existence of compiler function calling conventions Including details of the MIPS C compiler calling convention

Learning Outcomes. Understanding of the existence of compiler function calling conventions Including details of the MIPS C compiler calling convention System Calls 1 Learning Outcomes Exposure architectural details of the MIPS R3000 Detailed understanding of the of exception handling mechanism From Hardware Guide on class web site Understanding of the

More information

System Calls. Interface and Implementation

System Calls. Interface and Implementation System Calls Interface and Implementation 1 Learning Outcomes A high-level understanding of System Call interface Mostly from the user s perspective From textbook (section 1.6) Understanding of how the

More information

Learning Outcomes. Understanding of the existence of compiler function calling conventions Including details of the MIPS C compiler calling convention

Learning Outcomes. Understanding of the existence of compiler function calling conventions Including details of the MIPS C compiler calling convention System Calls 1 Learning Outcomes A high-level understanding of System Calls Mostly from the user s perspective From textbook (section 1.6) Exposure architectural details of the MIPS R3000 Detailed understanding

More information

System Calls. COMP s1

System Calls. COMP s1 System Calls 1 Contents A high-level view of System Calls Mostly from the user s perspective From textbook (section 1.6) A look at the R3000 A brief overview Mostly focused on exception handling From Hardware

More information

The Operating System and the Kernel

The Operating System and the Kernel The Kernel and System Calls 1 The Operating System and the Kernel We will use the following terminology: kernel: The operating system kernel is the part of the operating system that responds to system

More information

What is a Process? Answer 1: a process is an abstraction of a program in execution

What is a Process? Answer 1: a process is an abstraction of a program in execution Processes and the Kernel 1 What is a Process? Answer 1: a process is an abstraction of a program in execution Answer 2: a process consists of an address space, which represents the memory that holds the

More information

What is a Process? Answer 1: a process is an abstraction of a program in execution

What is a Process? Answer 1: a process is an abstraction of a program in execution Processes and the Kernel 1 What is a Process? Answer 1: a process is an abstraction of a program in execution Answer 2: a process consists of an address space, which represents the memory that holds the

More information

What is a Process? Answer 1: a process is an abstraction of a program in execution

What is a Process? Answer 1: a process is an abstraction of a program in execution Processes and the Kernel 1 What is a Process? Answer 1: a process is an abstraction of a program in execution Answer 2: a process consists of an address space, which represents the memory that holds the

More information

µ-kernel Construction

µ-kernel Construction µ-kernel Construction Fundamental Abstractions Thread Address Space What is a thread? How to implement? What conclusions can we draw from our analysis with respect to µk construction? Processor? IP SP

More information

19/09/2008. µ-kernel Construction. Fundamental Abstractions. user mode A kernel. user mode A kernel. user mode A kernel. user mode A kernel

19/09/2008. µ-kernel Construction. Fundamental Abstractions. user mode A kernel. user mode A kernel. user mode A kernel. user mode A kernel Fundamental Abstractions µ- Construction Thread Address Space What is a thread? How to implement? What conclusions can we draw from our analysis with rect to µk construction? Processor? A Processor code

More information

Overview. Introduction to the MIPS ISA. MIPS ISA Overview. Overview (2)

Overview. Introduction to the MIPS ISA. MIPS ISA Overview. Overview (2) Introduction to the MIPS ISA Overview Remember that the machine only understands very basic instructions (machine instructions) It is the compiler s job to translate your high-level (e.g. C program) into

More information

Computer Architecture. The Language of the Machine

Computer Architecture. The Language of the Machine Computer Architecture The Language of the Machine Instruction Sets Basic ISA Classes, Addressing, Format Administrative Matters Operations, Branching, Calling conventions Break Organization All computers

More information

ECE232: Hardware Organization and Design. Computer Organization - Previously covered

ECE232: Hardware Organization and Design. Computer Organization - Previously covered ECE232: Hardware Organization and Design Part 6: MIPS Instructions II http://www.ecs.umass.edu/ece/ece232/ Adapted from Computer Organization and Design, Patterson & Hennessy, UCB Computer Organization

More information

SPIM Instruction Set

SPIM Instruction Set SPIM Instruction Set This document gives an overview of the more common instructions used in the SPIM simulator. Overview The SPIM simulator implements the full MIPS instruction set, as well as a large

More information

MIPS Instruction Set

MIPS Instruction Set MIPS Instruction Set Prof. James L. Frankel Harvard University Version of 7:12 PM 3-Apr-2018 Copyright 2018, 2017, 2016, 201 James L. Frankel. All rights reserved. CPU Overview CPU is an acronym for Central

More information

Lecture 2. Instructions: Language of the Computer (Chapter 2 of the textbook)

Lecture 2. Instructions: Language of the Computer (Chapter 2 of the textbook) Lecture 2 Instructions: Language of the Computer (Chapter 2 of the textbook) Instructions: tell computers what to do Chapter 2 Instructions: Language of the Computer 2 Introduction Chapter 2.1 Chapter

More information

Lec 10: Assembler. Announcements

Lec 10: Assembler. Announcements Lec 10: Assembler Kavita Bala CS 3410, Fall 2008 Computer Science Cornell University Announcements HW 2 is out Due Wed after Fall Break Robot-wide paths PA 1 is due next Wed Don t use incrementor 4 times

More information

Reduced Instruction Set Computer (RISC)

Reduced Instruction Set Computer (RISC) Reduced Instruction Set Computer (RISC) Reduced Instruction Set Computer (RISC) Focuses on reducing the number and complexity of instructions of the machine. Reduced number of cycles needed per instruction.

More information

Instruction Set Architecture part 1 (Introduction) Mehran Rezaei

Instruction Set Architecture part 1 (Introduction) Mehran Rezaei Instruction Set Architecture part 1 (Introduction) Mehran Rezaei Overview Last Lecture s Review Execution Cycle Levels of Computer Languages Stored Program Computer/Instruction Execution Cycle SPIM, a

More information

ECE 2035 Programming HW/SW Systems Fall problems, 7 pages Exam Two 23 October 2013

ECE 2035 Programming HW/SW Systems Fall problems, 7 pages Exam Two 23 October 2013 Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate

More information

Compiling Techniques

Compiling Techniques Lecture 10: An Introduction to MIPS assembly 18 October 2016 Table of contents 1 Overview 2 3 Assembly program template.data Data segment: constant and variable definitions go here (including statically

More information

Today s topics. MIPS operations and operands. MIPS arithmetic. CS/COE1541: Introduction to Computer Architecture. A Review of MIPS ISA.

Today s topics. MIPS operations and operands. MIPS arithmetic. CS/COE1541: Introduction to Computer Architecture. A Review of MIPS ISA. Today s topics CS/COE1541: Introduction to Computer Architecture MIPS operations and operands MIPS registers Memory view Instruction encoding A Review of MIPS ISA Sangyeun Cho Arithmetic operations Logic

More information

Computer Architecture. Chapter 2-2. Instructions: Language of the Computer

Computer Architecture. Chapter 2-2. Instructions: Language of the Computer Computer Architecture Chapter 2-2 Instructions: Language of the Computer 1 Procedures A major program structuring mechanism Calling & returning from a procedure requires a protocol. The protocol is a sequence

More information

Reduced Instruction Set Computer (RISC)

Reduced Instruction Set Computer (RISC) Reduced Instruction Set Computer (RISC) Focuses on reducing the number and complexity of instructions of the ISA. RISC Goals RISC: Simplify ISA Simplify CPU Design Better CPU Performance Motivated by simplifying

More information

ECE468 Computer Organization & Architecture. MIPS Instruction Set Architecture

ECE468 Computer Organization & Architecture. MIPS Instruction Set Architecture ECE468 Computer Organization & Architecture MIPS Instruction Set Architecture ECE468 Lec4.1 MIPS R2000 / R3000 Registers 32-bit machine --> Programmable storage 2^32 x bytes 31 x 32-bit GPRs (R0 = 0) 32

More information

M2 Instruction Set Architecture

M2 Instruction Set Architecture M2 Instruction Set Architecture Module Outline Addressing modes. Instruction classes. MIPS-I ISA. High level languages, Assembly languages and object code. Translating and starting a program. Subroutine

More information

Programming the processor

Programming the processor CSC258 Week 9 Logistics This week: Lab 7 is the last Logisim DE2 lab. Next week: Lab 8 will be assembly. For assembly labs you can work individually or in pairs. No matter how you do it, the important

More information

CPS311 - COMPUTER ORGANIZATION. A bit of history

CPS311 - COMPUTER ORGANIZATION. A bit of history CPS311 - COMPUTER ORGANIZATION A Brief Introduction to the MIPS Architecture A bit of history The MIPS architecture grows out of an early 1980's research project at Stanford University. In 1984, MIPS computer

More information

MIPS Reference Guide

MIPS Reference Guide MIPS Reference Guide Free at PushingButtons.net 2 Table of Contents I. Data Registers 3 II. Instruction Register Formats 4 III. MIPS Instruction Set 5 IV. MIPS Instruction Set (Extended) 6 V. SPIM Programming

More information

MIPS ISA. 1. Data and Address Size 8-, 16-, 32-, 64-bit 2. Which instructions does the processor support

MIPS ISA. 1. Data and Address Size 8-, 16-, 32-, 64-bit 2. Which instructions does the processor support Components of an ISA EE 357 Unit 11 MIPS ISA 1. Data and Address Size 8-, 16-, 32-, 64-bit 2. Which instructions does the processor support SUBtract instruc. vs. NEGate + ADD instrucs. 3. Registers accessible

More information

ECE Exam I February 19 th, :00 pm 4:25pm

ECE Exam I February 19 th, :00 pm 4:25pm ECE 3056 Exam I February 19 th, 2015 3:00 pm 4:25pm 1. The exam is closed, notes, closed text, and no calculators. 2. The Georgia Tech Honor Code governs this examination. 3. There are 4 questions and

More information

ECE232: Hardware Organization and Design

ECE232: Hardware Organization and Design ECE232: Hardware Organization and Design Lecture 6: Procedures Adapted from Computer Organization and Design, Patterson & Hennessy, UCB Overview Procedures have different names in different languages Java:

More information

Recap from Last Time. CSE 2021: Computer Organization. Levels of Programming. The RISC Philosophy 5/19/2011

Recap from Last Time. CSE 2021: Computer Organization. Levels of Programming. The RISC Philosophy 5/19/2011 CSE 2021: Computer Organization Recap from Last Time load from disk High-Level Program Lecture-3 Code Translation-1 Registers, Arithmetic, logical, jump, and branch instructions MIPS to machine language

More information

The MIPS Instruction Set Architecture

The MIPS Instruction Set Architecture The MIPS Set Architecture CPS 14 Lecture 5 Today s Lecture Admin HW #1 is due HW #2 assigned Outline Review A specific ISA, we ll use it throughout semester, very similar to the NiosII ISA (we will use

More information

Instruction Set Architecture of. MIPS Processor. MIPS Processor. MIPS Registers (continued) MIPS Registers

Instruction Set Architecture of. MIPS Processor. MIPS Processor. MIPS Registers (continued) MIPS Registers CSE 675.02: Introduction to Computer Architecture MIPS Processor Memory Instruction Set Architecture of MIPS Processor CPU Arithmetic Logic unit Registers $0 $31 Multiply divide Coprocessor 1 (FPU) Registers

More information

5/17/2012. Recap from Last Time. CSE 2021: Computer Organization. The RISC Philosophy. Levels of Programming. Stored Program Computers

5/17/2012. Recap from Last Time. CSE 2021: Computer Organization. The RISC Philosophy. Levels of Programming. Stored Program Computers CSE 2021: Computer Organization Recap from Last Time load from disk High-Level Program Lecture-2 Code Translation-1 Registers, Arithmetic, logical, jump, and branch instructions MIPS to machine language

More information

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA CISC 662 Graduate Computer Architecture Lecture 4 - ISA Michela Taufer http://www.cis.udel.edu/~taufer/courses Powerpoint Lecture Notes from John Hennessy and David Patterson s: Computer Architecture,

More information

Mark Redekopp, All rights reserved. EE 357 Unit 11 MIPS ISA

Mark Redekopp, All rights reserved. EE 357 Unit 11 MIPS ISA EE 357 Unit 11 MIPS ISA Components of an ISA 1. Data and Address Size 8-, 16-, 32-, 64-bit 2. Which instructions does the processor support SUBtract instruc. vs. NEGate + ADD instrucs. 3. Registers accessible

More information

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA MIPS ISA. In a CPU. (vonneumann) Processor Organization

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA MIPS ISA. In a CPU. (vonneumann) Processor Organization CISC 662 Graduate Computer Architecture Lecture 4 - ISA MIPS ISA Michela Taufer http://www.cis.udel.edu/~taufer/courses Powerpoint Lecture Notes from John Hennessy and David Patterson s: Computer Architecture,

More information

CSc 256 Midterm (green) Fall 2018

CSc 256 Midterm (green) Fall 2018 CSc 256 Midterm (green) Fall 2018 NAME: Problem 1 (5 points): Suppose we are tracing a C/C++ program using a debugger such as gdb. The code showing all function calls looks like this: main() { bat(5);

More information

MIPS Instruction Format

MIPS Instruction Format MIPS Instruction Format MIPS uses a 32-bit fixed-length instruction format. only three different instruction word formats: There are Register format Op-code Rs Rt Rd Function code 000000 sssss ttttt ddddd

More information

Chapter 2A Instructions: Language of the Computer

Chapter 2A Instructions: Language of the Computer Chapter 2A Instructions: Language of the Computer Copyright 2009 Elsevier, Inc. All rights reserved. Instruction Set The repertoire of instructions of a computer Different computers have different instruction

More information

We will study the MIPS assembly language as an exemplar of the concept.

We will study the MIPS assembly language as an exemplar of the concept. MIPS Assembly Language 1 We will study the MIPS assembly language as an exemplar of the concept. MIPS assembly instructions each consist of a single token specifying the command to be carried out, and

More information

Calling Conventions. Hakim Weatherspoon CS 3410, Spring 2012 Computer Science Cornell University. See P&H 2.8 and 2.12

Calling Conventions. Hakim Weatherspoon CS 3410, Spring 2012 Computer Science Cornell University. See P&H 2.8 and 2.12 Calling Conventions Hakim Weatherspoon CS 3410, Spring 2012 Computer Science Cornell University See P&H 2.8 and 2.12 Goals for Today Calling Convention for Procedure Calls Enable code to be reused by allowing

More information

Lecture 5: Procedure Calls

Lecture 5: Procedure Calls Lecture 5: Procedure Calls Today s topics: Procedure calls and register saving conventions 1 Example Convert to assembly: while (save[i] == k) i += 1; i and k are in $s3 and $s5 and base of array save[]

More information

ECE 15B Computer Organization Spring 2010

ECE 15B Computer Organization Spring 2010 ECE 15B Computer Organization Spring 2010 Dmitri Strukov Lecture 7: Procedures I Partially adapted from Computer Organization and Design, 4 th edition, Patterson and Hennessy, and classes taught by and

More information

The Operating System (OS) MicroComputer Engineering OperatingSystem slide 1!

The Operating System (OS) MicroComputer Engineering OperatingSystem slide 1! The Operating System (OS) MicroComputer Engineering OperatingSystem slide 1! The Operating System (OS) P1:! Editor! P2: Compiler! P3:! Quake! Arena! Operating System! MIPS! At any one time the processor

More information

Computer Organization and Structure. Bing-Yu Chen National Taiwan University

Computer Organization and Structure. Bing-Yu Chen National Taiwan University Computer Organization and Structure Bing-Yu Chen National Taiwan University Instructions: Language of the Computer Operations and Operands of the Computer Hardware Signed and Unsigned Numbers Representing

More information

MIPS Assembly Language. Today s Lecture

MIPS Assembly Language. Today s Lecture MIPS Assembly Language Computer Science 104 Lecture 6 Homework #2 Midterm I Feb 22 (in class closed book) Outline Assembly Programming Reading Chapter 2, Appendix B Today s Lecture 2 Review: A Program

More information

MIPS Assembly Language

MIPS Assembly Language MIPS Assembly Language Chapter 15 S. Dandamudi Outline MIPS architecture Registers Addressing modes MIPS instruction set Instruction format Data transfer instructions Arithmetic instructions Logical/shift/rotate/compare

More information

Computer Architecture. MIPS Instruction Set Architecture

Computer Architecture. MIPS Instruction Set Architecture Computer Architecture MIPS Instruction Set Architecture Instruction Set Architecture An Abstract Data Type Objects Registers & Memory Operations Instructions Goal of Instruction Set Architecture Design

More information

Exceptions and Interrupts

Exceptions and Interrupts Exceptions and Interrupts Unexpected events (asynchronous interrupt) requiring change in flow of control (different ISAs use the terms differently) exception Arises within the CPU e.g., undefined opcode,

More information

Chapter 2. Instructions: Language of the Computer. Adapted by Paulo Lopes

Chapter 2. Instructions: Language of the Computer. Adapted by Paulo Lopes Chapter 2 Instructions: Language of the Computer Adapted by Paulo Lopes Instruction Set The repertoire of instructions of a computer Different computers have different instruction sets But with many aspects

More information

Question 0. Do not turn this page until you have received the signal to start. (Please fill out the identification section above) Good Luck!

Question 0. Do not turn this page until you have received the signal to start. (Please fill out the identification section above) Good Luck! CSC B58 Winter 2017 Final Examination Duration 2 hours and 50 minutes Aids allowed: none Last Name: Student Number: UTORid: First Name: Question 0. [1 mark] Read and follow all instructions on this page,

More information

Computer Architecture Instruction Set Architecture part 2. Mehran Rezaei

Computer Architecture Instruction Set Architecture part 2. Mehran Rezaei Computer Architecture Instruction Set Architecture part 2 Mehran Rezaei Review Execution Cycle Levels of Computer Languages Stored Program Computer/Instruction Execution Cycle SPIM, a MIPS Interpreter

More information

Lecture 7: Examples, MARS, Arithmetic

Lecture 7: Examples, MARS, Arithmetic Lecture 7: Examples, MARS, Arithmetic Today s topics: More examples MARS intro Numerical representations 1 Dealing with Characters Instructions are also provided to deal with byte-sized and half-word quantities:

More information

CS 61c: Great Ideas in Computer Architecture

CS 61c: Great Ideas in Computer Architecture MIPS Functions July 1, 2014 Review I RISC Design Principles Smaller is faster: 32 registers, fewer instructions Keep it simple: rigid syntax, fixed instruction length MIPS Registers: $s0-$s7,$t0-$t9, $0

More information

Prof. Kavita Bala and Prof. Hakim Weatherspoon CS 3410, Spring 2014 Computer Science Cornell University. See P&H 2.8 and 2.12, and A.

Prof. Kavita Bala and Prof. Hakim Weatherspoon CS 3410, Spring 2014 Computer Science Cornell University. See P&H 2.8 and 2.12, and A. Prof. Kavita Bala and Prof. Hakim Weatherspoon CS 3410, Spring 2014 Computer Science Cornell University See P&H 2.8 and 2.12, and A.5 6 compute jump/branch targets memory PC +4 new pc Instruction Fetch

More information

Kernel Registers 0 1. Global Data Pointer. Stack Pointer. Frame Pointer. Return Address.

Kernel Registers 0 1. Global Data Pointer. Stack Pointer. Frame Pointer. Return Address. The MIPS Register Set The MIPS R2000 CPU has 32 registers. 31 of these are general-purpose registers that can be used in any of the instructions. The last one, denoted register zero, is defined to contain

More information

Computer Architecture

Computer Architecture Computer Architecture Chapter 2 Instructions: Language of the Computer Fall 2005 Department of Computer Science Kent State University Assembly Language Encodes machine instructions using symbols and numbers

More information

Today s Lecture. MIPS Assembly Language. Review: What Must be Specified? Review: A Program. Review: MIPS Instruction Formats

Today s Lecture. MIPS Assembly Language. Review: What Must be Specified? Review: A Program. Review: MIPS Instruction Formats Today s Lecture Homework #2 Midterm I Feb 22 (in class closed book) MIPS Assembly Language Computer Science 14 Lecture 6 Outline Assembly Programming Reading Chapter 2, Appendix B 2 Review: A Program Review:

More information

ECE 2035 Programming HW/SW Systems Fall problems, 6 pages Exam One 19 September 2012

ECE 2035 Programming HW/SW Systems Fall problems, 6 pages Exam One 19 September 2012 Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate

More information

MIPS ISA and MIPS Assembly. CS301 Prof. Szajda

MIPS ISA and MIPS Assembly. CS301 Prof. Szajda MIPS ISA and MIPS Assembly CS301 Prof. Szajda Administrative HW #2 due Wednesday (9/11) at 5pm Lab #2 due Friday (9/13) 1:30pm Read Appendix B5, B6, B.9 and Chapter 2.5-2.9 (if you have not already done

More information

MIPS R-format Instructions. Representing Instructions. Hexadecimal. R-format Example. MIPS I-format Example. MIPS I-format Instructions

MIPS R-format Instructions. Representing Instructions. Hexadecimal. R-format Example. MIPS I-format Example. MIPS I-format Instructions Representing Instructions Instructions are encoded in binary Called machine code MIPS instructions Encoded as 32-bit instruction words Small number of formats encoding operation code (opcode), register

More information

ECE 2035 Programming HW/SW Systems Fall problems, 6 pages Exam Two 23 October Your Name (please print clearly) Signed.

ECE 2035 Programming HW/SW Systems Fall problems, 6 pages Exam Two 23 October Your Name (please print clearly) Signed. Your Name (please print clearly) This exam will be conducted according to the Georgia Tech Honor Code. I pledge to neither give nor receive unauthorized assistance on this exam and to abide by all provisions

More information

ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design

ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design Professor Sherief Reda http://scale.engin.brown.edu School of Engineering Brown University Spring 2014 Sources: Computer

More information

Examples of branch instructions

Examples of branch instructions Examples of branch instructions Beq rs,rt,target #go to target if rs = rt Beqz rs, target #go to target if rs = 0 Bne rs,rt,target #go to target if rs!= rt Bltz rs, target #go to target if rs < 0 etc.

More information

Traps, Exceptions, System Calls, & Privileged Mode

Traps, Exceptions, System Calls, & Privileged Mode Traps, Exceptions, System Calls, & Privileged Mode Kevin Walsh CS 3410, Spring 2010 Computer Science Cornell University P&H Chapter 4.9, pages 509 515, appendix B.7 Operating Systems 2 Control Transfers

More information

Computer Science 2500 Computer Organization Rensselaer Polytechnic Institute Spring Topic Notes: MIPS Programming

Computer Science 2500 Computer Organization Rensselaer Polytechnic Institute Spring Topic Notes: MIPS Programming Computer Science 2500 Computer Organization Rensselaer Polytechnic Institute Spring 2009 Topic Notes: MIPS Programming We spent some time looking at the MIPS Instruction Set Architecture. We will now consider

More information

EEC 581 Computer Architecture Lecture 1 Review MIPS

EEC 581 Computer Architecture Lecture 1 Review MIPS EEC 581 Computer Architecture Lecture 1 Review MIPS 1 Supercomputing: Suddenly Fancy 2 1 Instructions: Language of the Machine More primitive than higher level languages e.g., no sophisticated control

More information

Introduction to MIPS Processor

Introduction to MIPS Processor Introduction to MIPS Processor The processor we will be considering in this tutorial is the MIPS processor. The MIPS processor, designed in 1984 by researchers at Stanford University, is a RISC (Reduced

More information

Lectures 3-4: MIPS instructions

Lectures 3-4: MIPS instructions Lectures 3-4: MIPS instructions Motivation Learn how a processor s native language looks like Discover the most important software-hardware interface MIPS Microprocessor without Interlocked Pipeline Stages

More information

EE 109 Unit 15 Subroutines and Stacks

EE 109 Unit 15 Subroutines and Stacks 1 EE 109 Unit 15 Subroutines and Stacks 2 Program Counter and GPRs (especially $sp, $ra, and $fp) REVIEW OF RELEVANT CONCEPTS 3 Review of Program Counter PC is used to fetch an instruction PC contains

More information

Do-While Example. In C++ In assembly language. do { z--; while (a == b); z = b; loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero

Do-While Example. In C++ In assembly language. do { z--; while (a == b); z = b; loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero Do-While Example In C++ do { z--; while (a == b); z = b; In assembly language loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero 25 Comparisons Set on less than (slt) compares its source registers

More information

EE 457 Unit 8. Exceptions What Happens When Things Go Wrong

EE 457 Unit 8. Exceptions What Happens When Things Go Wrong 1 EE 457 Unit 8 Exceptions What Happens When Things Go Wrong 2 What are Exceptions? Exceptions are rare events triggered by the hardware and forcing the processor to execute a software handler HW Interrupts

More information

Week 10: Assembly Programming

Week 10: Assembly Programming Week 10: Assembly Programming Arithmetic instructions Instruction Opcode/Function Syntax Operation add 100000 $d, $s, $t $d = $s + $t addu 100001 $d, $s, $t $d = $s + $t addi 001000 $t, $s, i $t = $s +

More information

Chapter 2. Computer Abstractions and Technology. Lesson 4: MIPS (cont )

Chapter 2. Computer Abstractions and Technology. Lesson 4: MIPS (cont ) Chapter 2 Computer Abstractions and Technology Lesson 4: MIPS (cont ) Logical Operations Instructions for bitwise manipulation Operation C Java MIPS Shift left >>> srl Bitwise

More information

ECE 2035 Programming HW/SW Systems Spring problems, 6 pages Exam Two 11 March Your Name (please print) total

ECE 2035 Programming HW/SW Systems Spring problems, 6 pages Exam Two 11 March Your Name (please print) total Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate

More information

Lecture 6: Assembly Programs

Lecture 6: Assembly Programs Lecture 6: Assembly Programs Today s topics: Procedures Examples Large constants The compilation process A full example 1 Procedures Local variables, AR, $fp, $sp Scratchpad and saves/restores, $fp Arguments

More information

ENCM 369 Winter 2013: Reference Material for Midterm #2 page 1 of 5

ENCM 369 Winter 2013: Reference Material for Midterm #2 page 1 of 5 ENCM 369 Winter 2013: Reference Material for Midterm #2 page 1 of 5 MIPS/SPIM General Purpose Registers Powers of Two 0 $zero all bits are zero 16 $s0 local variable 1 $at assembler temporary 17 $s1 local

More information

Stored Program Concept. Instructions: Characteristics of Instruction Set. Architecture Specification. Example of multiple operands

Stored Program Concept. Instructions: Characteristics of Instruction Set. Architecture Specification. Example of multiple operands Stored Program Concept Instructions: Instructions are bits Programs are stored in memory to be read or written just like data Processor Memory memory for data, programs, compilers, editors, etc. Fetch

More information

Flow of Control -- Conditional branch instructions

Flow of Control -- Conditional branch instructions Flow of Control -- Conditional branch instructions You can compare directly Equality or inequality of two registers One register with 0 (>,

More information

CENG3420 Lecture 03 Review

CENG3420 Lecture 03 Review CENG3420 Lecture 03 Review Bei Yu byu@cse.cuhk.edu.hk 2017 Spring 1 / 38 CISC vs. RISC Complex Instruction Set Computer (CISC) Lots of instructions of variable size, very memory optimal, typically less

More information

CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions

CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions Instructors: John Wawrzynek & Vladimir Stojanovic http://inst.eecs.berkeley.edu/~cs61c/fa15 1 Machine Interpretation Levels of Representation/Interpretation

More information

EEM 486: Computer Architecture. Lecture 2. MIPS Instruction Set Architecture

EEM 486: Computer Architecture. Lecture 2. MIPS Instruction Set Architecture EEM 486: Computer Architecture Lecture 2 MIPS Instruction Set Architecture EEM 486 Overview Instruction Representation Big idea: stored program consequences of stored program Instructions as numbers Instruction

More information

CS 316: Procedure Calls/Pipelining

CS 316: Procedure Calls/Pipelining CS 316: Procedure Calls/Pipelining Kavita Bala Fall 2007 Computer Science Cornell University Announcements PA 3 IS out today Lectures on it this Fri and next Tue/Thu Due on the Friday after Fall break

More information

COE608: Computer Organization and Architecture

COE608: Computer Organization and Architecture Add on Instruction Set Architecture COE608: Computer Organization and Architecture Dr. Gul N. Khan http://www.ee.ryerson.ca/~gnkhan Electrical and Computer Engineering Ryerson University Overview More

More information

Exceptions, MIPS-Style

Exceptions, MIPS-Style Exceptions, MIPS-Style Reminder: MIPS CPU deals with exceptions. Interrupts are just a special case of exceptions. The MIPS Architecture has no interrupt-vector table! All exceptions trigger a jump to

More information

101 Assembly. ENGR 3410 Computer Architecture Mark L. Chang Fall 2009

101 Assembly. ENGR 3410 Computer Architecture Mark L. Chang Fall 2009 101 Assembly ENGR 3410 Computer Architecture Mark L. Chang Fall 2009 What is assembly? 79 Why are we learning assembly now? 80 Assembly Language Readings: Chapter 2 (2.1-2.6, 2.8, 2.9, 2.13, 2.15), Appendix

More information

What are Exceptions? EE 457 Unit 8. Exception Processing. Exception Examples 1. Exceptions What Happens When Things Go Wrong

What are Exceptions? EE 457 Unit 8. Exception Processing. Exception Examples 1. Exceptions What Happens When Things Go Wrong 8. 8.2 What are Exceptions? EE 457 Unit 8 Exceptions What Happens When Things Go Wrong Exceptions are rare events triggered by the hardware and forcing the processor to execute a software handler Similar

More information

Five classic components

Five classic components CS/COE0447: Computer Organization and Assembly Language Chapter 2 modified by Bruce Childers original slides by Sangyeun Cho Dept. of Computer Science Five classic components I am like a control tower

More information

Thomas Polzer Institut für Technische Informatik

Thomas Polzer Institut für Technische Informatik Thomas Polzer tpolzer@ecs.tuwien.ac.at Institut für Technische Informatik Branch to a labeled instruction if a condition is true Otherwise, continue sequentially beq rs, rt, L1 if (rs == rt) branch to

More information

Lectures 5. Announcements: Today: Oops in Strings/pointers (example from last time) Functions in MIPS

Lectures 5. Announcements: Today: Oops in Strings/pointers (example from last time) Functions in MIPS Lectures 5 Announcements: Today: Oops in Strings/pointers (example from last time) Functions in MIPS 1 OOPS - What does this C code do? int foo(char *s) { int L = 0; while (*s++) { ++L; } return L; } 2

More information

MIPS Instruction Reference

MIPS Instruction Reference Page 1 of 9 MIPS Instruction Reference This is a description of the MIPS instruction set, their meanings, syntax, semantics, and bit encodings. The syntax given for each instruction refers to the assembly

More information

ECE 30 Introduction to Computer Engineering

ECE 30 Introduction to Computer Engineering ECE 30 Introduction to Computer Engineering Study Problems, Set #3 Spring 2015 Use the MIPS assembly instructions listed below to solve the following problems. arithmetic add add sub subtract addi add

More information

ECE 331 Hardware Organization and Design. Professor Jay Taneja UMass ECE - Discussion 3 2/8/2018

ECE 331 Hardware Organization and Design. Professor Jay Taneja UMass ECE - Discussion 3 2/8/2018 ECE 331 Hardware Organization and Design Professor Jay Taneja UMass ECE - jtaneja@umass.edu Discussion 3 2/8/2018 Study Jams Leader: Chris Bartoli Tuesday 5:30-6:45pm Elab 325 Wednesday 8:30-9:45pm Elab

More information

Instructions: Language of the Computer

Instructions: Language of the Computer Instructions: Language of the Computer Tuesday 22 September 15 Many slides adapted from: and Design, Patterson & Hennessy 5th Edition, 2014, MK and from Prof. Mary Jane Irwin, PSU Summary Previous Class

More information

Shift and Rotate Instructions

Shift and Rotate Instructions Shift and Rotate Instructions Shift and rotate instructions facilitate manipulations of data (that is, modifying part of a 32-bit data word). Such operations might include: Re-arrangement of bytes in a

More information

CSc 256 Midterm 1 Fall 2011

CSc 256 Midterm 1 Fall 2011 CSc 256 Midterm 1 Fall 2011 NAME: Problem 1a: Given the C++ function prototype and variable declarations: int func(int arg0, int *arg1, int *arg2); int *ptr, n, arr[10]; which of the following statements

More information