Instruction Sets and Processors Flashcards
What is the basic setup of von Neumann architecture?
memory and a CPU with registers for PC, IR, and general purpose registers
What is the basic setup of Harvard architecture?
data memory, program memory and a CPU with registers for PC, IR, and general purpose registers
What is the main difference between von Neumann and Harvard architectures?
harvard can’t use self-modifying code, von Neumann can, Harvard allows 2 simultaneous memory fetches, von Neumann doesn’t, Harvard has greater and more predictable memory bandwidth
What is RISC?
reduced instruction set computer, allows load/store, piplinable instructions
What is CISC?
complex instruction set computer, many addressing modes and operations
What are the characteristics of instruction sets?
fixed vs. variable length, addressing modes, number of operands, and types of operands
What is the programming model?
The registers visible to the programmer
What is an example of a register that is not visible to the programmer?
Instruction register (IR)
What are some characteristics that can vary between architecture implementations?
clock speeds, bus widths, cache sizes
True or false: all assembly languages are not one-to-one?
false
What are some basic features of an assembly language?
one instruction per line, labels provide names for addresses, instructions are in later columns, and columns run to end of line
What are pseudo-ops?
assembler directives that don’t correspond directly to instructions
What can pseudo ops usually do?
define current address, reserve storage, hold constants
True or false: there are many versions of the ARM architecture/assembly language?
true
What is the meaning if the N flag is logical one for both logical instructions and arithmetic instructions?
logical: no meaning, arithmetic: bit 31 is 1 meaning it is a neg number
What is the meaning if the Z flag is logical one for both logical instructions and arithmetic instructions?
logical: result is all zeroes, arithmetic: result of op was zero
What is the meaning if the C flag is logical one for both logical instructions and arithmetic instructions?
logical: after shift op, ‘1’ was left in carry flag, arithmetic: result is > 32 bits
What is the meaning if the V flag is logical one for both logical instructions and arithmetic instructions?
logical: no meaning, arithmetic: result is > 31 bits, possible corruption of signed bit
What is endianness?
relationship between bit and byte/word ordering
How is little endian set up?
Bit 31 is MSB, Byte 3 is MSByte
How is big endian set up?
Bit 31 is MSB, Byte 0 is MSByte
How big is a word in ARM?
32-bits
How many bytes can a word be divided into?
4 8-bit bytes
How long can ARM addresses be?
32-bits
What does Address refer to?
byte
True or false: ARM is always big endian?
false, endianness can be set up at power-up
What does ADD/ADC do?
add/add with carry ex: ADD r0, r2, #3 (r0=r2+3)
What does SUB/SBC do?
subtract/subtract with carry ex: SUB r3, r4, r1 (r3=r4-r1)
What does RSB/RSC do?
reverse subtract/reverse subtract with carry ex: RSC r3, r4, r1 (r3=r1-r4)
What does MUL/MLA do?
multiply/multiply and accumulate ex:
MUL r0, r1, r2, r3 (r0=r1*r2+r3)
What do AND, ORR, and EOR do?
bitwise AND, OR and XOR
What does BIC do?
bit clear
What does LSL/LSR do?
logical shift left/right (fills with zeroes) ex: LSL r0, r0, #10
What does ASL/ASR do?
arithmetic shift left/right (fills with ones) ex: ASR r0, r0, #10
What does ROR do?
rotate right ex: ROR r0, r0, #2
What does RRX do?
rotate right extended with C (33 bit rotate including the C bit) ex: RRX r0, r0
What does CMP do?
compare ex: CMP r1, #3 (does r1-3 and sets condition flags NZCV, does not save arithmetic result)
What does CMN do?
negated compare ex: CMN r1, #3 (does r1+3 and sets condition flags NZCV, does not save arithmetic result)
What does TST do?
bit-wise test (AND) (only sets NZCV flags doesn’t save result) ex: TST r1, r2 (r1 & r2)
What does TEQ do?
bit-wise negated test (XOR) (only sets NZCV flags doesn’t save result) ex: TEQ r1, r2 (r1 XOR r2)
What does MOV do?
move ex: MOV r1, r0 sets r1 to r0
What does MVN do?
bitwise NOT ex: MVN r0, r1 does a bitwise NOT of r1 and places it in r0
What do LDR, LDRH, and LDRB do?
load (half-word, byte) ex: LDR r0, [r1] loads the value stored at the memory address in r1 into r0
What do STR, STRH, and STRB do?
store (half-word, byte) ex: STR r0, [r1] storess the value in r0 to the memory location of the address stored in r1
True or false: You can refer to an address directly in an instruction.
false
What does ADR do?
retrieves the adress specified by the label and stores it in the register ex: ADR r0, FOO
What is the difference between ARM and C55x architecture?
ARM is load/store architecture, C55x is accumulator architecture
What is the difference between ARM and C55x language?
C55x is an algebraic assembly language
What are some key parts of C55x assembly language?
there are intrinsic functions like int_sadd which performs saturating addition
What kind of data types does C55x have?
word (16 bits) and longword (32 bits)
True or false: C55x instructions never operate on register bits?
false, some instructions do
Fill in the blank: Most registers in C55x are _________.
memory-mapped
How can you refer to registers in the C55x assembly language?
mnemonic name, memory address
What are some extra counters that the C55x architecture has?
in addition to the PC there is also the XPC (program counter extension(allows for multiple pages to run code at once)) and RETA (subroutine return address)
What are some other special features of C55x architecture?
there’s 4 40-bit accumulators, and multiple status registers
What is the SP?
keeps track of user stack pointer
What is the SSP?
keeps track of the system stack pointer
What is SPH?
extended data page pointer for both SP and SSP
What is a prominent auxiliary register in C55x?
CDP for coefficients for polynomial evaluation instructions
Which registers are used for circular buffer operations?
BK47, AR4-7
What are block repeat registers useful for?
for looping and repeating certain blocks of code
What are the 3 addressing modes of C55x?
absolute addressing, direct addressing, indirect addressing
What is absolute addressing?
supplying an address in the instruction
What is direct addressing?
using an offset
What is indirect addressing?
using a register as a pointer
What are 2 stacks of C55x?
data and system
How many different stack configurations does C55x have?
3
Which stack configuration has independent data and system stacks?
Dual 16-bit stack
What is the difference between fast and slow return for the dual 16-bit stacks
slow return does not use RETA and CFCT while fast does
Which stack configuration modifies SP and SSP by the same amount?
32-bit stack with slow return
What are some tips for efficient loops?
no function calls, small loop body, use unsigned int for loop counter, use <= to test LC, make use of compiler (global optimization, software pipelining)