Assembly Flashcards
What is an instruction set?
An instruction set is a series of commands typically written in machine code which a CPU is programmed to recognise and respond to. An instruction set can refer to all the instructions for a particular CPU or a subset.
-WhatIs.com
Features of the MIPS Processor
The MIPS (Microprocessor without Interlocked Pipelined Stages) is a processor with 32 general registers.
It uses 32-bit instructions to form its instruction set.
32 bit represents a word in MIPS.
Notable for a small number of formats encoding opcodes
It uses a 32x32 bit register file for frequently accessed data.

What does MIPS stand for?
Microprocessor without Interlocked Pipelined Stages
How are instructions represented in an instruction set?
They are encoded in binary or machine code.
How are instructions encoded in MIPS?
They are encoded as 32-bit instruction words.
What instruction formats are part of MIPS?
MIPS has three instruction formats,
The I Format: I for immediate
The J Format for Jump Instructions
The R Format for arithmetic or register-based instructions.
Define Register.
A register is a small amount of memory in the CPU, it is quickly accessible and used to primarily to perform arithmetic operations in the CPU, storing the results of operations, the numbers on which the calculation is performed with etc. Registers may also have specific functions where some registers cannot be written to and only read from.
What are the purposes of registers?
Registers are the fastest and primary form of memory in the computer. They are most often used to perform arithmetic operations as accessing main memory is far slower. Certain register s may have special functions such as the $zero register in MIPS which cannot be rewritten and is always zero.
How many general-purpose registers does the MIPS processor have?
32 general registers.
What is a register operand?
An operand, in general, refers to the piece of an instruction that specifies what data can be manipulated. As such the term register operand in the context of MIPS means that registers act as operands and the data stored on them
What is the MIPS regsiter file?
A register file is an array of the processor registers on a CPU. MIPS uses a 32x32 bit register file.
It is numbered 0 to 31, with 32-bit words.
When is the MIPS register file used?
The register file is used for frequently accessed data.
What register operand names are used for the assembler?
Assembler names include:
$s0 to $s7 for the saved variables
$t0 to $t7 for the temporary values.
What is the MIPS design principle?
Smaller is faster, maximise design with millions of memory locations
What are the MIPS general registers?

What is register r0?
r0 has the assembly name $zero. It represents 0 and is a read-only register.
It is always zero.
What is register r30?
Register r30 has the assembly name $fp, it is the frame pointer.
What is register r31?
Register r31 has the assembly name $ra, it is the return address
What is register r29?
Register r29 has the assembly name $sp, it is the stack pointer.
What is register r28?
Register r1 has the assembly name $gp, it is the global pointer.
What is register r1?
Register r1 has the assembly name $at, it is reserved for pseudoinstructions.
What are registers r4to r7?
These registers have the names $a0, $a1, etc.. They store arguments
What are registers r2 to r3?
These registers have the names $v0, $v1. They store results.
What are registers r26 to r27?
These registers have the names $k0, $k1.. They are reserved by the operating system
What are registers r23 to r25?
These registers have the names $t8, $t9.. They store temporary which are not saved
What are registers r16 to r23?
These registers have the names $s0, $s1, etc.. They store values to be saved for future use.
What are registers r8 to r15?
These registers have the names $t0, $t1, etc.. They store temporary values which are not saved.
Define assembly language
Assembly language is a programming tool designed to be closer to machine code. The instructions available in assembly are dependent on the machine’s instruction set.
It has an almost 1:1 mapping with machine code
Why was assembly used, and why is it used today?
Assembly was designed to make code a bit easy to understand in early systems, however, small resources meant that the instruction set had to be as efficient as possible.
Today, assembly is used each time a compiler is run, used in the inner core of operating systems and to optimise a system. It provides process control overtime cost. Suitable for low-level interactions such as a microcontroller, it helps with performance analysis as to allows observation of the compiler and where the program spending most of its time.
What is the format for Arithmetic Operations?
Arithmetic Operations use the R-Format, the instructions require three operands. Operands are a destination, and two sources:
add a, b, c # a = b+c
Here the design principle is simplicity favours regularity
• Regularity makes implementation simpler
• Simplicity enables higher performance at lower cost
Registers Vs Memory
Registers are faster to use than memory, this is in part because using memory requires loads and stores. These are slow instructions.
As such compilers should use registers as much as possible, only enter memory for rarely used variables.
What is the main memory mostly used for?
Used for composite data.
Arrays, structures, dynamic data.
How are arithmetic operators applied to memory?
- Load values from memory into registers
- Store result from register to memory
How is memory addressed?
Memory is byte addressed, i.e. 8-bits.
Words in memory?
Words are aligned in memory,
this means an address must be a multiple of 4 for 32 bit words.
Format for R-Type Instructions
Instruction fields
- op: operation code (opcode) – for R-type instructions this is always zero
- rs: first source register number
- rt: second source register number
- rd: destination register number
- shamt: shift amount (only used in shift operations)
- funct: function code (extends opcode) – defines what operation should be run.

Format for I (Immediate)-Type Instruction
Immediate arithmetic and load, store instructions
- op: this time, identifies the instruction
- rt: destination or source register number
- Constant: –215 to +215 – 1
- Address: offset added to the base address in rs

Features of Immediate Instructions
Constant data is specified in the instruction. As no subtraction immediate instruction, negative numbers are used for subtractions.
When designing immediate instructions, make the common case fast.
Small constants are common, and immediate operands avoid the load instruction.
Format for Jump Instructions
Jump (j and jal) targets could be anywhere in the text segment
- Encode full address in the instruction
(Pseudo)Direct jump addressing
- Target address = PC31…28 : (address × 4)

How do jump instructions work?
The jump instructions load a new value into the PC register, which stores the value of the instruction being executed. This causes the next instruction read from memory to be retrieved from a new location.
How do shift operations work in MIPS?
Uses the shamt operand in R-type insructions to specify the number of positions to shift.
For shift left operations, shift left and fill with 0 bits, effectively multiplied by 2i where i the number of positions shifted.
For shift right operations, shift right and fill with 0 bits.
Divides by 2<strong>i </strong>unsigned only
When should an AND operation be used?
Can be useful to mask bits, select some and erase the rest.

Why use OR operations
Can be useful for including bits into a word.

How to implement NOT operations.
MIPS doesn’t have a NOT instruction but does have a nor instruction. NOR = NOT(OR(a,b)))
As such to implement not, nor a word with zero.

How are conditional instructions implemented?
There are three instructions used to implement conditional statements, the beq, bne.
The beq instruction compares two operands:
beq rs, rt, L1
if (rs == rt) branch to instruction labeled L1;
Then the program jumps to instruction L1.
The bne instruction works similarly except
if (rs != rt) branch to instruction labeled L1;
then unconditional jump.
How are loops implemented in MIPS?
Loops are implemented using j instructions and the beq and bne instructions to end loops.

What are the Addressing Modes?
There are 5 addressing modes, Immediate addressing, register addressing, base addressing, PC relative addressing and pseudo-direct addressing.
Describe Immediate Addressing
The operand is a constant within the instruction

Describe Register Addressing
Where the operand is a register.

Describe Base/Displacement Addressing
Where the operand is at the memory location which is the sum of a register and a constant included in the instruction.

Describe PC- Relative Addressing
Where the branch address is the sum of the PC and a constant in the instruction

Describe Pseudo-direct Addressing
Where the jump address is the 26 bits in the instruction concatenated with the upper bits of the PC.
What is the slt instruction?
The slt instruction is a conditional operator. It has three operands, the destination register, and 2 sources.
Example:
slt, rd, rs, rt # if rs < rt then rd = 1
Often used in conjunction with branch instructions, beq and bne.
What is sign extension?
To increase the size of a data item by
replicating the high-order sign bit of the original data item in the high order bits of the larger, destination data item.
Where is sign extension often used?
Sign extension is used in many applications, in essence whenever a constant is needs to be expanded to a 32-bit word. Most often used in addresses.
Requirements for load byte and load halfword
lb rt, offset(rs); lh rt, offset(rs)
• Sign extend to 32 bits in rt
Requirements for load byte unsigned and load halfword unsigned?
lbu rt, offset(rs) lhu rt, offset(rs)
• Zero extend to 32 bits in rt
How does store byte and store halfword work?
sb rt, offset(rs) sh rt, offset(rs)
• Store just rightmost byte/halfword
Why use lui instruction and how
Used to for constants greater than 16 bits.
For the occasional 32-bit constant
lui rt, constant
• Copies 16-bit constant to left 16 bits of rt
• Clears right 16 bits of rt to 0

Whyt are there no blt, bge etc instructions?
This is because beq and bne are the most common cases, and the hardware is slower for less than comparisons compared to equality so beq and be are used.
What are pseudo instructions?
Pseudoinstructions unlike most assembler instruction do not represent machine code in a one to one conversion.
They are more similar to macros, at assembly are substituted for real instructions.

How is memory structured in MIPS?
Memory is divided into several sections. The lowest level is memory reserved by the OS. Above that is text memory, then static data, then above that is dynamic data and the stack.

What is static data?
Static data are global variables, such as:
e.g., static variables in C, constant arrays
and strings
The global pointer is initialized to address allowing
±offsets into this segment
What is dynamic data?
Dynamic data is the heap, where user-created memory is stored e.g. malloc in C, new in C++
What is the stack, how is it used?
The stack ia automatic (static) data storage. It is used via the following:
Local data allocated by callee
• e.g. C automatic variables.
• Procedure frame $fp (activation record) is used by some compilers to manage stack storage.

What is procedure calling?
Procedure calling is simply the act of executing an instruction.
What are the steps required for a procedure call?
Steps required:
- Place parameters in registers
- Transfer control to procedure (callee)
- Acquire storage for procedure
- Perform procedure’s operations
- Place result in register for caller
- Return to place of call
What is a basic block
A basic block is a sequence of instructions with
• No embedded branches (except at the end)
• No branch targets (except at the beginning)

Why are basic blocks important?
These are important because:
• A compiler identifies basic blocks for optimization
• An advanced processor can accelerate
execution of basic blocks
What are the procedure call instructions and how are they used?
Procedure call: jump and link
jal ProcedureLabel
• Address of the following instruction put in $ra
• Jumps to target address
• Procedure return: jump register
jr $ra
• Copies $ra to program counter
• Can also be used for computed jumps
• e.g., for case/switch statements
What is a leaf procedure
A leaf procedure is one that doesn’t call any other procedures.
What are non-leaf procedures?
Procedures that call other procedures
• For nested call, caller needs to save stuff on the stack:
• Its return address
• Any arguments and temporaries needed after the call
• Restore from the stack after the call
