MIPS Instruction Formats

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which statement accurately describes machine language?

  • It is a high-level language that requires a compiler to translate it into assembly language.
  • It is the lowest level of programming language, using binary code to represent instructions. (correct)
  • It is an interpreted language that runs directly on the operating system without translation.
  • It uses mnemonics to represent instructions, making it easier for humans to read.

What is the primary role of the 'funct' field in the R-Type instruction format?

  • Specifying the source registers.
  • Storing the immediate value used in the instruction.
  • Indicating the destination register for the result.
  • Defining the operation to be performed; works together with the *opcode*. (correct)

In the context of MIPS architecture, what is the significance of the opcode being all 0's?

  • It indicates the instruction is an I-Type instruction.
  • It signifies the instruction is a J-Type instruction.
  • It means the instruction is a system call.
  • It identifies the instruction as an R-Type instruction, where the 'funct' field specifies the exact operation. (correct)

Which instruction format is characterized by having a 26-bit address operand?

<p>J-Type (C)</p> Signup and view all the answers

What is the primary purpose of the immediate value in I-Type instructions?

<p>To provide a constant value or offset that is directly available as part of the instruction. (B)</p> Signup and view all the answers

In MIPS assembly code, what is the order of registers in the add instruction?

<p><code>add rd, rs, rt</code> (B)</p> Signup and view all the answers

In I-Type instructions, which field determines the specific operation to be performed?

<p>op (C)</p> Signup and view all the answers

If rs and rt are source registers, and rd is the destination register, then which instruction format uses all three?

<p>R-Type (D)</p> Signup and view all the answers

What is the bit range for the RS field in I-type instructions?

<p>25-21 (D)</p> Signup and view all the answers

What is the purpose of the andi instruction?

<p>Performing a bitwise AND operation with zero extension. (A)</p> Signup and view all the answers

Which of the listed instruction types uses a 16-bit immediate value?

<p>I-Type. (B)</p> Signup and view all the answers

What is the immediate primarily used for in I-Type instructions?

<p>To provide a constant value. (D)</p> Signup and view all the answers

What is the instruction that is used to set the upper 16 bits of a register?

<p>lui (C)</p> Signup and view all the answers

Which type of instruction is primarily used for implementing control flow mechanisms such as loops and conditional statements?

<p>I-Type (C)</p> Signup and view all the answers

If you need to perform a jump to a distant address in memory, which instruction type would be best suited for the task?

<p>J-Type (B)</p> Signup and view all the answers

How does the nor instruction differ from not?

<p><code>nor</code> requires two registers while <code>not</code> simply inverts a single register. (C)</p> Signup and view all the answers

For the instruction addi $t0, $s1, 5, which register contains the immediate value?

<p>5 (B)</p> Signup and view all the answers

What is the instruction for shift right arithmetic?

<p>sra (D)</p> Signup and view all the answers

In the shift instructions, what is the purpose of shamt field?

<p>Indicates the amount to shift. (B)</p> Signup and view all the answers

Given the instruction 0x2237FFF1, what kind of instruction will it be?

<p>addi (A)</p> Signup and view all the answers

Which of the following is a function of Opcode?

<p>Tells how to parse the remaining bits. (B)</p> Signup and view all the answers

What is the starting memory address of every MIPS program?

<p>0x00400000 (A)</p> Signup and view all the answers

Which is not a common High-Level software construct?

<p>bytes (C)</p> Signup and view all the answers

What is the value of $s3?

<p><code>0100 0110 1010 0001 0000 0000 0000 0000</code> (A)</p> Signup and view all the answers

What is the Immediate value for the store word instruction sw $s1, 4($t1)?

<p>4 (A)</p> Signup and view all the answers

What is the machine code for shift left logical?

<p>sll (B)</p> Signup and view all the answers

Considering the differing order of registers in assembly and machine code for I-Type instructions, which statement is correct for addi rt, rs, imm?

<p>rt is the first register in assembly but last in the register field in machine code. (D)</p> Signup and view all the answers

In the logical instructions, what does zero-extended mean with regard to the immediate value?

<p>It means the 16-bit immediate value is extended to 32 bits by padding with zeros. (D)</p> Signup and view all the answers

What instruction performs a bitwise OR operation with zero extension?

<p>ori (D)</p> Signup and view all the answers

Flashcards

Machine language

Binary representation of instructions that computers understand.

R-Type Instruction

An instruction format that uses register operands and two source registers.

I-Type Instruction

An instruction format with one constant immediately available.

J-Type Instruction

Instruction format used for jumping.

Signup and view all the flashcards

Opcode (R-type)

The operation code in R-type instructions

Signup and view all the flashcards

Funct

The function for R-type instructions

Signup and view all the flashcards

shamt

Used for shift instructions

Signup and view all the flashcards

rd

Register containing the result.

Signup and view all the flashcards

rs, rt

Registers with the source data.

Signup and view all the flashcards

imm

A 16-bit value in I-Type instructions.

Signup and view all the flashcards

addr

The address to jump to.

Signup and view all the flashcards

and

Instruction that performs bitwise AND.

Signup and view all the flashcards

or

Instruction that performs bitwise OR.

Signup and view all the flashcards

xor

Instruction that performs bitwise XOR.

Signup and view all the flashcards

nor

Instruction that performs bitwise NOR.

Signup and view all the flashcards

andi

Bitwise AND with immediate value.

Signup and view all the flashcards

ori

Bitwise OR with immediate value.

Signup and view all the flashcards

xori

Bitwise XOR with immediate value.

Signup and view all the flashcards

sll

Shifts left, filling with zeroes.

Signup and view all the flashcards

srl

Shifts right, filling with zeroes.

Signup and view all the flashcards

sra

Shifts right, preserving sign.

Signup and view all the flashcards

Stored program

Instructions and data stored in memory

Signup and view all the flashcards

Program counter (PC)

Keeps track of current instruction.

Signup and view all the flashcards

Study Notes

Machine Language/Machine Instruction

  • Computers operate using 1s and 0s
  • Machine language involves the binary representation of instructions
  • MIPS instructions use a 32-bit format, which ensures simplicity and regularity for both data and instructions

Instruction Formats

  • R-Type: Uses register operands and 2 source registers
  • I-Type: Uses an immediate operand, which includes a constant readily available
  • J-Type: Designed for jumping operations

R-Type Instructions

  • Involves register-type operations
  • Uses 3 register operands
    • Rs and Rt are source registers
    • Rd is the destination register
  • op specifies the operation code or opcode
    • For R-type instructions, the opcode is 0
  • funct specifies the function of the instruction
    • Opcode and function combined tell the computer what operation to perform
  • shamt specifies the shift amount specifically for shift instructions
    • Otherwise its value is 0
  • Instruction format is as follows: op (6 bits), rs (5 bits), rt (5 bits), rd (5 bits), shamt (5 bits), funct (6 bits)
  • In assembly code, the destination register comes first, but in machine code instruction it comes last

R-Type Example

  • For "add $s0, $s1, $s2" in assembly:
    • op is 0, rs is 17, rt is 18, rd is 16, shamt is 0, and funct is 32
  • O in opcode indicates "R type" and 32 in the function field indicates addition

I-Type Instructions

  • Designed for immediate-type operations
  • Uses 3 operands
    • Rs and Rt are register operands
    • Imm is a 16-bit two's complement immediate value
  • op field contains the opcode
    • Operation is completely determined by the opcode
  • Instruction format is as follows: op (6 bits), rs (5 bits), rt (5 bits), imm (16 bits)
  • The rt register is listed first in assembly code, but comes last in the register field in machine code
  • The immediate is used in the processor which involves: instruction memory + ALU + data memory + register

I-Type Example

  • In addi $t0, $s3, -12:
    • op is 8, rs is 19, rt is 8, and imm is -12
  • Branch instructions such as beq, do not include destination registers

J-Type Instructions

  • Used for jump-type instructions
  • 26-bit address operand (addr)
  • Instruction format is: op (6 bits), addr (26 bits)

Instruction Format Review

  • The op field is present in all instruction types (R, I, and J)
  • R-Type includes op, rs, rt, rd, shamt, and funct
  • I-Type includes: op, rs, rt, and imm
  • J-Type includes: op, and addr

Bit Numbers of Different Fields in Instructions

  • The following bit numbers will be used in single-cycle processor design
  • Opcode uses bits 31-26
  • Rs uses bits 25-21
  • Rt uses bits 20-16
  • Rd (R type only) uses bits 15-11
  • Funct (R type) uses bits 5-0
  • Immediate (I type) uses bits 15-0
  • Address (J type) uses bits 25-0

Interpreting Machine Language Code

  • Begin with the opcode
  • Opcode indicates how to parse the remaining bits
  • When the opcode is all zeros, then:
    • R-Type instruction
    • Function bits further specify the instruction
  • Otherwise, the opcode specifies the required instruction

The Power of the Stored Program

  • Both 32-bit instructions and data are stored in memory
  • Applications (like text editors or video games) only differ by sequence of instructions
  • Executing a new program requires:
  • No rewiring
  • Simply storing the new program in memory
  • Processor hardware executes the program using:
  • Instructions fetched/read from memory in sequence
  • Performing the specified operation
  • The program counter (PC) tracks the current instruction
  • In MIPS program execution starts at a memory address of 0x00400000

Common High-Level Software Constructs

  • High-level languages include: C, Java, Python
    • They are written at a higher level of abstraction
  • Include: if/else statements, for loops, while loops, arrays, function calls

Arithmetic/Logical Instructions

  • and, or, xor, nor
    • and is useful for masking bits by isolating specific portions of data
    • or is useful for combining bit fields from multiple sources into one value
    • nor is useful for inverting bits
  • andi, ori, xori
    • Use 16-bit immediate values that are zero-extended
    • nori is not needed

Shift Instructions

  • sll is for shift left logical:
    • Shifts bits to the left, padding with zeros
  • srl is for shift right logical:
    • Shifts bits to the right, padding with zeros
  • sra is for shift right arithmetic:
    • Shifts bits to the right, filling with sign bit (to maintain proper sign for signed numbers)

Generating Constants

  • Uses addi for 16-bit constants
  • Uses load upper immediate (lui) and ori for 32-bit constants

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

MIPS Architecture Overview
5 questions

MIPS Architecture Overview

EnergySavingVuvuzela avatar
EnergySavingVuvuzela
MIPS Instruction Formats
12 questions
MIPS-32 Instruction Set Architecture Quiz
20 questions
MIPS Instruction Set Overview
21 questions
Use Quizgecko on...
Browser
Browser