IT 251 Computer Organization and Architecture

Slides:



Advertisements
Similar presentations
Chapter 2.
Advertisements

CSE 340 Computer Architecture Spring 2014 MIPS ISA Review
CS 61C L07 MIPS Intro (1) A Carle, Summer 2006 © UCB inst.eecs.berkeley.edu/~cs61c/su06 CS61C : Machine Structures Lecture #6: Intro to MIPS
CS61C L05 Introduction to MIPS Assembly Language : Arithmetic (1) Garcia, Fall 2011 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
COMP3221 lec08-arith.1 Saeid Nooshabadi COMP 3221 Microprocessors and Embedded Systems Lecture 8: C/Assembler Data Processing
CS 61C L06 MIPS Intro (1) A Carle, Summer 2005 © UCB inst.eecs.berkeley.edu/~cs61c/su05 CS61C : Machine Structures Lecture #6: Intro to MIPS
CS61C L08 Introduction to MIPS Assembly Language: Arithmetic (1) Garcia © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61C L6 Intro MIPS ; Load & Store (1) Garcia, Fall 2005 © UCB Hate EMACS? Love EMACS? Richard M. Stallman, a famous proponent of open- source software,
COMP3221: Microprocessors and Embedded Systems Lecture 2: Instruction Set Architecture (ISA) Lecturer: Hui Wu Session.
Normal C Memory Management °A program’s address space contains 4 regions: stack: local variables, grows downward heap: space requested for pointers via.
ECE 15B Computer Organization Spring 2010 Dmitri Strukov Lecture 4: Arithmetic / Data Transfer Instructions Partially adapted from Computer Organization.
RISC By Don Nichols. Contents Introduction History Problems with CISC RISC Philosophy Early RISC Modern RISC.
CIS 314: Introduction to MIPS Assembly Language: Arithmetic Fall 2005 I´ve been getting this a lot lately So, what are you teaching this term? Computer.
CS61C L08 Introduction to MIPS Assembly Language : Arithmetic (1) Garcia, Spring 2008 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
OK, we are now ready to begin Chapter 2 of our text
ECE 15B Computer Organization Spring 2010 Dmitri Strukov Lecture 3: Arithmetic Instructions Partially adapted from Computer Organization and Design, 4.
CS1104 Assembly Language: Part 1
CIS 314 : Computer Organization Lecture 1 – Introduction.
CS 61C L08 Introduction to MIPS Assembly Language: Arithmetic (1) Garcia, Spring 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61C L06 More Memory Management, Intro to MIPS (1) Chae, Summer 2008 © UCB Albert Chae, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures.
From C to Assembly Language Jen-Chang Liu, Spring 2006 Adapted from
CSE378 MIPS ISA1 MIPS History MIPS is a computer family –R2000/R3000 (32-bit); R4000/4400 (64-bit); R8000; R10000 (64-bit) etc. MIPS originated as a Stanford.
CS 61C L2.1.2 MM and MIPS (1) K. Meinz, Summer 2004 © UCB CS61C : Machine Structures Lecture Garbage Collection & Intro to MIPS Kurt Meinz.
IT253: Computer Organization Lecture 4: Instruction Set Architecture Tonga Institute of Higher Education.
Reformatting a Machine 125 Million Miles Away! Mars rover “Opportunity” got its flash drive reformatted 9/8/14, reason: rover keeps rebooting. Happy news:
6.S078 - Computer Architecture: A Constructive Approach Introduction to SMIPS Li-Shiuan Peh Computer Science & Artificial Intelligence Lab. Massachusetts.
Chapter 2 Instructions: Language of the Computer Part I.
CWRU EECS 3221 Language of the Machine EECS 322 Computer Architecture Instructor: Francis G. Wolff Case Western Reserve University.
DR. SIMING LIU SPRING 2016 COMPUTER SCIENCE AND ENGINEERING UNIVERSITY OF NEVADA, RENO Session 7, 8 Instruction Set Architecture.
Lecture 2: Instruction Set Architecture part 1 (Introduction) Mehran Rezaei.
CS 61C: Great Ideas in Computer Architecture Intro to Assembly Language, MIPS Intro 1 Instructors: Vladimir Stojanovic & Nicholas Weaver
CS61C L05 Introduction to MIPS Assembly Language : Arithmetic (1) Garcia, Spring 2014 © UCB TA/Guest Lecturer: Shreyas Chand inst.eecs.berkeley.edu/~cs61c.
Assembly Language Basic job of a CPU: execute lots of instructions. Instructions are the primitive operations that the CPU may execute. Different CPUs.
Instructor: Dr. Mike Turi Department of Computer Science and Computer Engineering Pacific Lutheran University Lecture slides adapted from Part 4, EE 334.
Computers’ Basic Organization
Computer Architecture & Operations I
Computer Architecture & Operations I
IT 251 Computer Organization and Architecture
Lecturer PSOE Dan Garcia
Instructor Paul Pearce
Instruction Set Architecture
Choices in Designing an ISA
Computer Architecture (CS 207 D) Instruction Set Architecture ISA
Instructions - Type and Format
Lecture 4: MIPS Instruction Set
Systems Architecture Lecture 5: MIPS Instruction Set
The University of Adelaide, School of Computer Science
MIPS History MIPS is a computer family
Hello to Jessy VanDivner listening from Ohio!
MIPS History MIPS is a computer family
Computer Architecture
COMS 361 Computer Organization
Evolution of ISA’s ISA’s have changed over computer “generations”.
What is Computer Architecture?
UCSD ECE 111 Prof. Farinaz Koushanfar Fall 2018
COMS 361 Computer Organization
Introduction to Microprocessor Programming
Instructions in Machine Language
What is Computer Architecture?
What is Computer Architecture?
Evolution of ISA’s ISA’s have changed over computer “generations”.
MIPS History MIPS is a computer family
March 2006 Saeid Nooshabadi
Review In last lecture, done with unsigned and signed number representation. Introduced how to represent real numbers in float format.
Evolution of ISA’s ISA’s have changed over computer “generations”.
CPU Structure CPU must:
CS334: MIPS language _Mars simulator Lab 2_1
Evolution of ISA’s ISA’s have changed over computer “generations”.
CSE378 Introduction to Machine Organization
Presentation transcript:

IT 251 Computer Organization and Architecture MIPS Chia-Chi Teng

What’s in an instruction? An instruction tells the CPU the operation to be performed via the OPCODE where to find the operands (source and destination) For a given instruction, the ISA specifies what the OPCODE means (semantics) how many operands are required and their types, sizes etc.(syntax) Operand is either register (integer, floating-point, PC) a memory address a constant 9/14/2018

Assembly Language Basic job of a CPU: execute lots of instructions. Instructions are the primitive operations that the CPU may execute. Different CPUs implement different sets of instructions. The set of instructions a particular CPU implements is an Instruction Set Architecture (ISA). Examples: Intel 80x86 (Pentium 4), IBM/Motorola PowerPC (Macintosh), MIPS, Intel IA64, ...

Instruction Set Architectures Early trend was to add more and more instructions to new CPUs to do elaborate operations VAX architecture had an instruction to multiply polynomials! RISC philosophy (Cocke IBM, Patterson, Hennessy, 1980s) – Reduced Instruction Set Computing Keep the instruction set small and simple, makes it easier to build fast hardware. Let software do complicated operations by composing simpler ones.

MIPS In this class, we’ll use the MIPS instruction set architecture (ISA) to illustrate concepts in assembly language and machine organization Of course, the concepts are not MIPS-specific The MIPS ISA is still used in many places today. Primarily in embedded systems, like: Various routers from Cisco Game machines like the Nintendo 64 and Sony Playstation 2

Why MIPS? Why MIPS instead of Intel 80x86? MIPS is simple, elegant. Don’t want to get bogged down in gritty details. MIPS widely used in embedded apps, x86 little used in embedded, and more embedded computers than PCs

MIPS History MIPS is a computer family R2000/R3000 (32-bit); R4000/4400 (64-bit); R10000 (64-bit) etc. MIPS originated as a Stanford research project under the direction of John Hennessy Microprocessor without Interlocked Pipe Stages MIPS: semiconductor company that built one of the first commercial RISC architectures MIPS Co. bought by SGI MIPS used in previous generations of DEC (then Compaq, now HP) workstations Now MIPS Technologies is in the embedded systems market MIPS is a RISC 9/14/2018

MIPS is a RISC RISC = Reduced Instruction Set Computer R could also stand for “regular” All arithmetic-logical instructions are of the form MIPS (as all RISC’s) is a Load-Store architecture ALU operates only on operands that are in registers The only instructions accessing memory are load and store 9/14/2018

RISC - Reduced Instruction Set Computer RISC philosophy fixed instruction lengths load-store instruction sets limited addressing modes limited operations MIPS, Sun SPARC, HP PA-RISC, IBM PowerPC, Intel (Compaq) Alpha, … Instruction sets are measured by how well compilers use them as opposed to how well assembly language programmers use them As opposed to CISC – Complicated Instruction Set Architecture (ala the x86) Design goals: speed, cost (design, fabrication, test, packaging), size, power consumption, reliability, memory space (embedded systems)

MIPS = RISC = Load-Store architecture Every operand must be in a register Except for some small integer constants that can be in the instruction itself (see later) Variables have to be loaded in registers Results have to be stored in memory Explicit Load and Store instructions are needed because there are many more variables than the number of registers 9/14/2018

Example The HLL statements a = b + c d = a + b will be “translated” into “pseudo” assembly language as: load b in register rx load c in register ry rz <- rx + ry store rz in a # not destructive; rz still contains the value of a rt <- rz + rx store rt in d 9/14/2018

MIPS R3000 Instruction Set Architecture Registers Instruction Categories Load/Store Computational Jump and Branch Floating Point coprocessor Memory Management Special R0 - R31 PC HI LO 3 Instruction Formats: all 32 bits wide OP rs rt rd sa funct OP rs rt immediate OP jump target

MIPS Information units Data types and size: Byte Half-word (2 bytes) Word (4 bytes) Float (4 bytes; single precision format) Double (8 bytes; double-precision format) Memory is byte-addressable A data type must start at an address evenly divisible by its size (in bytes) In the little-endian environment, the address of a data type is the address of its lowest byte 9/14/2018

SPIM – A MIPS32 Simulator Pre-installed on 365/376 PCs You can install on your own PC Runs MIPS assembly code View registers, machine code Break point, single steps

Administrivia Slow me down Questions & feedback Next lecture Numbers Reading 3.1 – 3.3 C Programming Language Chapters 1-6 (lots, get started now!) HW HW1 due next Monday before class, submit online through blackboard Lab Lab1 is next Thursday 12 noon @ rm 335

Assembly Variables: Registers (1/4) Unlike HLL like C or Java, assembly cannot use variables Why not? Keep Hardware Simple Assembly Operands are registers limited number of special locations built directly into the hardware operations can only be performed on these! Benefit: Since registers are directly in hardware, they are very fast (faster than 1 billionth of a second)

Assembly Variables: Registers (2/4) Drawback: Since registers are in hardware, there are a predetermined number of them Solution: MIPS code must be very carefully put together to efficiently use registers 32 registers in MIPS Why 32? Smaller is faster Program Counter (PC) Each MIPS register is 32 bits wide Groups of 32 bits called a word in MIPS

Assembly Variables: Registers (3/4) Registers are numbered from 0 to 31 Each register can be referred to by number or name Number references: $0, $1, $2, … $30, $31

Assembly Variables: Registers (4/4) By convention, each register also has a name to make it easier to code For now: $16 - $23  $s0 - $s7 (correspond to C variables) $8 - $15  $t0 - $t7 (correspond to temporary variables) Later will explain other 16 register names In general, use names to make your code more readable

MIPS Register names and conventions

C, Java variables vs. registers In C (and most High Level Languages) variables declared first and given a type Example: int fahr, celsius; char a, b, c, d, e; Each variable can ONLY represent a value of the type it was declared as (cannot mix and match int and char variables). In Assembly Language, the registers have no type; operation determines how register contents are treated

Comments in Assembly Another way to make your code more readable: comments! Hash (#) is used for MIPS comments anything from hash mark to end of line is a comment and will be ignored This is just like the C99 or Java // Note: Different from C or Java. C comments have format /* comment */ so they can span many lines

Assembly Instructions In assembly language, each statement (called an Instruction), executes exactly one of a short list of simple commands Unlike in C (and most other High Level Languages), each line of assembly code contains at most 1 instruction Instructions are related to operations (=, +, -, *, /) in C or Java Ok, enough already…gimme my MIPS!

MIPS Addition and Subtraction (1/4) Syntax of Instructions: 1 2,3,4 where: 1) operation by name 2) operand getting result (“destination”) 3) 1st operand for operation (“source1”) 4) 2nd operand for operation (“source2”) Syntax is rigid: 1 operator, 3 operands Why? Keep Hardware simple via regularity

Addition and Subtraction of Integers (2/4) Addition in Assembly Example: add $s0,$s1,$s2 (in MIPS) Equivalent to: a = b + c (in C) where MIPS registers $s0,$s1,$s2 are associated with C variables a, b, c Subtraction in Assembly Example: sub $s3,$s4,$s5 (in MIPS) Equivalent to: d = e - f (in C) where MIPS registers $s3,$s4,$s5 are associated with C variables d, e, f

Addition and Subtraction of Integers (3/4) How do the following C statement? a = b + c + d - e; Break into multiple instructions add $t0, $s1, $s2 # temp = b + c add $t0, $t0, $s3 # temp = temp + d sub $s0, $t0, $s4 # a = temp - e Notice: A single line of C may break up into several lines of MIPS. Notice: Everything after the hash mark on each line is ignored (comments)

Addition and Subtraction of Integers (4/4) How do we do this? f = (g + h) - (i + j); Use intermediate temporary register add $t0,$s1,$s2 # temp0 = g + h add $t1,$s3,$s4 # temp1 = i + j sub $s0,$t0,$t1 # f=(g+h)-(i+j)

Immediates Immediates are numerical constants. They appear often in code, so there are special instructions for them. Add Immediate: addi $s0,$s1,10 (in MIPS) f = g + 10 (in C) where MIPS registers $s0,$s1 are associated with C variables f, g Syntax similar to add instruction, except that last argument is a number instead of a register.

addi $s0,$s1,-10 (in MIPS) Immediates There is no Subtract Immediate in MIPS: Why? Limit types of operations that can be done to absolute minimum if an operation can be decomposed into a simpler operation, don’t include it addi …, -X = subi …, X => so no subi addi $s0,$s1,-10 (in MIPS) f = g - 10 (in C) where MIPS registers $s0,$s1 are associated with C variables f, g

Register Zero One particular immediate, the number zero (0), appears very often in code. So we define register zero ($0 or $zero) to always have the value 0; eg add $s0,$s1,$zero (in MIPS) f = g (+ 0) (in C) where MIPS registers $s0,$s1 are associated with C variables f, g defined in hardware, so an instruction add $zero,$zero,$s0 will not do anything!

Peer Instruction Types are associated with declaration in C (normally), but are associated with instruction (operator) in MIPS. Since there are only 8 local ($s) and 8 temp ($t) variables, we can’t write MIPS for C exprs that contain > 16 vars. If register $pc points to the current instruction, to make it point to the next instruction; we would addi $pc $pc 1 ABC 1: FFF 2: FFT 3: FTF 4: FTT 5: TFF 6: TFT 7: TTF 8: TTT B: F (we saw how to break up longer equations to smaller ones already) A: T (from slide 22) Answer: TFF = 5 C: F (Don’t forget that instructions are 4 bytes wide)

“And in Conclusion…” In MIPS Assembly Language: Registers replace C variables One Instruction (simple operation) per line Simpler is Better Smaller is Faster Instructions: add, addi, sub Registers: C Variables: $s0 - $s7 Temporary Variables: $t0 - $t9 Zero: $zero