Arm Inst
Arm Inst
Arm Inst
Processor Modes
* The ARM has six operating modes:
User (unprivileged mode under which most tasks run)
FIQ (entered when a high priority (fast) interrupt is raised)
IRQ (entered when a low priority (normal) interrupt is raised)
Supervisor (entered on reset and when a Software Interrupt instruction
is executed)
Abort (used to handle memory access violations)
Undef (used to handle undefined instructions)
* ARM Architecture Version 4 adds a seventh mode:
System (privileged mode using the same registers as user mode)
The Registers
* ARM has 37 registers in total, all of which are 32-bits long.
1 dedicated program counter
1 dedicated current program status register
5 dedicated saved program status registers
30 general purpose registers
* However these are arranged into several banks, with the accessible
bank being governed by the processor mode. Each mode can
access
a particular set of r0-r12 registers
a particular r13 (the stack pointer) and r14 (link register)
r15 (the program counter)
cpsr (the current program status register)
and privileged modes can also access
a particular spsr (saved program status register)
Register Organisation
General registers and Program Counter
User32 / System
FIQ32
Supervisor32
Abort32
IRQ32
Undefined32
r0
r1
r2
r0
r1
r2
r0
r1
r2
r0
r1
r2
r0
r1
r2
r0
r1
r2
r3
r3
r3
r3
r3
r3
r4
r5
r6
r7
r4
r5
r6
r7
r4
r5
r6
r7
r4
r5
r6
r7
r4
r5
r6
r7
r4
r5
r6
r7
r8
r9
r8_fiq
r9_fiq
r8
r9
r8
r9
r8
r9
r8
r9
r10
r10_fiq
r10
r10
r10
r10
r11
r12
r13 (sp)
r14 (lr)
r11_fiq
r12_fiq
r13_fiq
r14_fiq
r11
r12
r13_svc
r14_svc
r11
r12
r13_abt
r14_abt
r11
r12
r13_irq
r14_irq
r11
r12
r13_undef
r14_undef
r15 (pc)
r15 (pc)
r15 (pc)
r15 (pc)
r15 (pc)
r15 (pc)
cpsr
spsr_irq
sprsr_fiq
cpsr
spsr_undef
sprsr_fiq
cpsr
spsr_fiq
sprsr_fiq
cpsr
spsr_svc
cpsr
spsr_abt
Register Example:
User to FIQ Mode
Registers in use
r0
r1
r2
Registers in use
User Mode
FIQ Mode
r3
r4
r5
r6
r7
r8
r9
r10
r3
r4
r5
r6
r7
r8_fiq
r9_fiq
r10_fiq
r11_fiq
r11
r11_fiq
r12_fiq
r13_fiq
r14_fiq
r12
r13 (sp)
r14 (lr)
r12_fiq
r13_fiq
r14_fiq
r8
r9
r10
r8_fiq
r9_fiq
r10_fiq
r11
r12
r13 (sp)
r14 (lr)
EXCEPTION
r15 (pc)
r15 (pc)
cpsr
r0
r1
r2
cpsr
spsr_fiq
28
I F T
N Z CV
Mode
T Bit
(Architecture v4T
only)
T = 0, Processor in ARM state
T = 1, Processor in Thumb
state
Condition Flags
Logical Instruction
Arithmetic Instruction
Negative
(N=1)
No meaning
Zero
(Z=1)
Carry
(C=1)
oVerflow
(V=1)
No meaning
Flag
Exception Handling
and the Vector Table
* When an exception occurs, the
core: Copies CPSR into SPSR_<mode>
0x00000000
0x00000004
0x00000008
0x0000000C
0x00000010
0x00000014
0x00000018
0x0000001C
Reset
Undefined Instruction
Software Interrupt
Prefetch Abort
Data Abort
Reserved
IRQ
FIQ
PC - 4
PC - 8
FETCH
DECODE
11
Quiz #1 - Verbal
* What registers are used to store the program counter and link
register?
* What is r13 often used to
store?
* Which mode, or modes has the fewest available number of
registers available? How many and why?
12
2827
1615
87
Cond
0 0 I Opcode
Rn
Rd
Cond
0 0 0 0 0 0 A S
Rd
Rn
Rs
1 0 0 1
Rm
Cond
0 0 0 0 1 U A S
RdHi
RdLo
Rs
1 0 0 1
Rm
Cond
0 0 0 1 0 B 0 0
Rn
Rd
0 0 0 0 1 0 0 1
Rm
Cond
0 1 I P U B W L
Rn
Rd
Cond
1 0 0 P U S W L
Rn
Cond
0 0 0 P U 1 W L
Rn
Rd
Offset1 1 S H 1 Offset2
Rn
Rd
0 0 0 0 1 S H 1
Cond
Cond
Cond
0 0 0
P U 0 W L
1 0 1 L
0 0 0 1
Operand2
1 1 0 P U N W L
Cond
1 1 1 0
Cond
1 1 1 0
Cond
1 1 1 1
Op1
Op1
Long Multiply
only)
(v3M / v4
Load/Store Multiple
Rm
Offset
Cond
Multiply
Swap
Load/Store Byte/Word
Offset
Register List
0 0 1 0 1 1 1 1 1 1 1 1
Instruction type
Branch
1 1 1 1 0 0 0 1
Rn
(v4T
Rn
CRd
CPNum
CRn
CRd
CPNum
Op2
CRm
CRn
Rd
CPNum
Op2
CRm
SWI Number
Offset
Branch Exchange
Software interrupt
13
Conditional Execution
* Most instruction sets only allow branches to be executed conditionally.
* However by reusing the condition evaluation hardware,
ARM
effectively increases number of instructions.
All instructions contain a condition field which determines whether
the CPU will execute them.
Non-executed instructions soak up 1 cycle.
Still have to complete cycle so as to allow fetching and decoding
of following instructions.
* This removes the need for many branches, which stall the pipeline
(3 cycles to refill).
Allows very dense in-line code, without branches.
The Time penalty of not executing several conditional instructions
is frequently less than overhead of the branch
or subroutine call that would otherwise be needed.
14
28
24
20
16
12
Cond
0000 = EQ - Z set (equal)
0001 = NE - Z clear (not equal)
1110 = AL - always
1111 = NV - reserved.
15
28 27
B{<cond>} label
BL{<cond>}
sub_routine_label
25 24 23
L
Cond
Link bit
Offset
0 = Branch
1 = Branch with link
Condition field
* The offset for branch instructions is calculated by the
assembler:
By taking the difference between the branch instruction and
the target address minus 8 (to allow for the pipeline).
This gives a 26 bit offset which is right shifted 2 bits (as
the bottom two bits are always zero as instructions are
word aligned) and stored into the instruction encoding.
gives a Program
range of
32 Mbytes.
The ARM Instruction Set -This
ARM University
- V1.0
17
18
Arithmetic Operations
* Operations
are: ADD
operand1 + operand2
operand1 + operand2 +
carry operand1 - operand2
operand1 - operand2 + carry
-1 operand2 - operand1
operand2 - operand1 + carry 1
ADC
SUB
SBC
RSB
RSC
* Syntax:
<Operation>{<cond>}{S} Rd, Rn,
Operand2
* Examples
ADD r0, r1, r2
SUBGT r3, r3, #1
RSBLES r4, r5, #5
20
Comparisons
* The only effect of the comparisons is to
UPDATE THE CONDITION FLAGS. Thus no need to set S
bit.
* Operations
CMP are:operand1 - operand2, but result not written
operand1 + operand2, but result not written
CMN
operand1 AND operand2, but result not
TST
written operand1 EOR operand2, but result not
TEQ
written
* Syntax:
<Operation>{<cond>} Rn,
Operand2
* Examples:
r0, r1
CMP
r2, #5
TSTEQ
21
Logical Operations
* Operations
are: AND
EOR
ORR
BIC
* Syntax:
<Operation>{<cond>}{S} Rd, Rn,
Operand2
* Examples:
r0, r1, r2
AND
r2, r3,
BICEQ
#7
EORS
r1,r3,r0
22
Data Movement
* Operations
are: MOV
operand2
MVN
NOT operand2
Note that these make no use of operand1.
* Syntax:
<Operation>{<cond>}{S} Rd,
Operand2
* Examples:
r0, r1
MOV
r2, #10
MOVS
MVNEQ r1,#0
23
Quiz #2
Start
r0 = r1
?
Yes
Stop
N
o
Yes
r0 = r0 - r1
r0 > r1
?
No
r1 = r1 - r0
cmp r0, r1
beq stop
blt less
;if r0 > r1
;subtract r1 from r0
bal gcd
less
;subtract r0 from r1
stop
ARM Conditional
Assembler
gcd
cmp
r0, r1
;if r0 > r1
;subtract r1 from r0
bne
gcd
25
26
CF
Destination
27
Destination
CF
Destination
CF
ASR #5 = divide by 32
28
Rotate Right
Destination
CF
e.g. ROR #5
Note the last bit rotated is
also used as the Carry Out.
Rotate Right Extended
(RRX)
This operation uses the
CPSR C flag as a 33rd
bit.
Rotates right by 1
bit. Encoded as ROR
#0.
Destination
CF
29
Operand
1
Operand
2
Barrel
Shifter
ALU
Result
30
Second Operand :
Shifted Register
* The amount by which the register is to be shifted is contained
in either:
the immediate 5-bit field in the instruction
NO OVERHEAD
Shift is done for free - executes in single cycle.
the bottom byte of a register (not PC)
Then takes extra cycle to execute
ARM doesnt have enough read ports to read 3 registers
at once.
Then same as on other processors where shift
is separate instruction.
* If no shift is specified then a default shift is applied:
LSL #0
i.e. barrel shifter has no effect on value in register.
31
Second Operand :
Using a Shifted Register
* Using a multiplication instruction to multiply by a constant means
first loading the constant into a register and then waiting a number of
internal cycles for the instruction to complete.
* A more optimum solution can often be found by using some
combination of MOVs, ADDs, SUBs and RSBs with shifts.
Multiplications by a constant equal to a ((power of 2) 1) can be done
in one cycle.
* Example: r0 = r1 * 5
Example: r0 = r1 + (r1 *
4)
ADD
RSBr0,
r2, r3, r3, LSL
r1, r1,
#4
RSB r2, r2, r2, LSL
LSL #2
#3
* Example: r2 = r3 * 105
Example: r2 = r3 * 15 *
; r2 = r3 * 15
; r2 = r2 * 7
32
Second Operand :
Immediate Value (1)
* There is no single instruction which will load a 32 bit immediate
constant into a register without performing a data load from memory.
All ARM instructions are 32 bits long
ARM instructions do not use the instruction stream as data.
* The data processing instruction format has 12 bits available
for operand2
If used directly this would only give a range of 4096.
* Instead it is used to store 8 bit constants, giving a range of 0 255.
* These 8 bits can then be rotated right through an even number
of positions (ie RORs by 0, 2, 4,..30).
This gives a much larger range of constants that can be directly
loaded, though some constants will still need to be loaded
from memory.
33
Second Operand :
Immediate Value (2)
* This gives
us: 0 - 255
256,260,264,..,1020
1024,1040,1056,..,4080
4096,4160, 4224,..,16320
[0 - 0xff]
[0x100-0x3fc, step 4, 0x40-0xff ror 30]
[0x400-0xff0, step 16, 0x40-0xff ror 28]
[0x1000-0x3fc0, step 64, 0x40-0xff ror 26]
34
35
Multiplication Instructions
* The Basic ARM provides two multiplication instructions.
* Multiply
MUL{<cond>}{S} Rd, Rm, Rs
; Rd = Rm * Rs
* Multiply Accumulate
- does addition for free
MLA{<cond>}{S} Rd, Rm, Rs,Rn
; Rd = (Rm * Rs) +
Rn
* Restrictions on use:
Rd and Rm cannot be the same register
Can be avoid by swapping Rm and Rs around. This works
because multiplication is commutative.
Cannot use PC.
These will be picked up by the assembler if overlooked.
* Operands can be considered signed or unsigned
Up to user to interpret correctly.
36
Multiplication Implementation
* The ARM makes use of Booths Algorithm to perform
integer multiplication.
* On non-M ARMs this operates on 2 bits of Rs at a time.
For each pair of bits this takes 1 cycle (plus 1 cycle to start
with).
However when there are no more 1s left in Rs, the multiplication
will early-terminate.
* Example: Multiply 18 and -1 : Rd = Rm * Rs
Rm
18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 18
Rs
Rs
-1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1
Rm
17 cycles
4 cycles
38
Multiply-Long and
Multiply-Accumulate Long
* Instructions are
MULL which gives RdHi,RdLo:=Rm*Rs
MLAL which gives RdHi,RdLo:=(Rm*Rs)+RdHi,RdLo
* However the full 64 bit of the result now matter (lower
precision multiply instructions simply throws top 32bits away)
Need to specify whether operands are signed or unsigned
* Therefore syntax of new instructions are:
UMULL{<cond>}{S} RdLo,RdHi,Rm,Rs
UMLAL{<cond>}{S} RdLo,RdHi,Rm,Rs
SMULL{<cond>}{S} RdLo, RdHi, Rm, Rs
SMLAL{<cond>}{S} RdLo, RdHi, Rm, Rs
* Not generated by the compiler.
Quiz #3
1. Specify instructions which will implement the
following:
b) r1 = r0 *
a) r0 = 16
c) r0 = r1 / 16 ( r1 signed 2's
comp.)
2. What will the following instructions
do?
a) ADDS r0, r1, r1, LSL #2
4 d) r1 = r2
*7
b) RSB r2, r1,
#0
40
41
Memory
r0
0x5
r1
Base
Register
0x200
r2
0x200
0x5
0x5
Destination
Register
for LDR
43
Memory
Offset
12
0x20c
r0
0x5
Source
Register
for STR
0x5
r1
Base
Register
0x200
0x200
Original
Base
Register
r1
Offset
0x20c
12
r1
r0
0x5
0x20c
0x200
Source
Register
for STR
0x5
0x200
47
Example Usage of
Addressing Modes
* Imagine an array, the first element of which is pointed to by the
contents of r0.
element
* If we want to access a particular
element, then we can use pre-indexed
r1 is element we want.
addressing:
3
LDR r2, [r0, r1, LSL
2
#2]
Pointer to
start of array
1
* If we want to step through every
0
r0
element of the array, for instance
to produce sum of elements in
array, then we can use post-indexed addressing within a
the
loop:
r1 is address of current element (initially equal to r0).
LDR r2, [r1], #4
Use a further register to store the address of final
element, so that the loop can be correctly terminated.
Memory
Offset
12
8
4
0
48
49
Effect of endianess
* The ARM can be set up to access its data in either little or
big endian format.
* Little endian:
Least significant byte of a word is stored in bits 0-7 of an
addressed word.
* Big endian:
Least significant byte of a word is stored in bits 24-31 of
an addressed word.
* This has no real relevance unless data is stored as words and
then accessed in smaller sized quantities (halfwords or bytes).
Which byte / halfword is accessed will depend on the endianess
of the system involved.
50
Endianess Example
r0 =
0x11223344
31
24 23
11
22
16 15
87
33
44
r1 = 0x100
31
23
24
11
16 15
22
87
33
Memory
44
Little-endian
31
23
24
44
33
16 15
7
22
11
r1 = 0x100
Big-endian
24
00
00
16 15
7
00
44
r2 = 0x44
31
23
24
00
00
16 15
7
00
11
r2 = 0x11
51
Quiz #4
* Write a segment of code that add together elements x to x+(n-1) of
an array, where the element x=0 is the first element of the array.
* Each element of the array is word sized (ie. 32 bits).
* The segment should use post-indexed addressing.
* At the start of your segments, you should assume that:
r0 points to the start of the array.
Elements
r1 = x
r2 = n
n elements
r0
x + (n -
1)
x+1
x
52
r3, [r0], #4
r1, r1, r3
r0, r2
loop
;
;
;
;
;
; on exit sum contained in r1
53
24 23 22 21 20
19 U S W L
P
28 27
Cond
1
0
Condition field
Up/Down bit
16
15
Rn
Base register
Load/Store bit
0 = Store to memory
1 = Load from memory
0 = no write-back
1 = write address into base
Register list
Each bit corresponds to a particular
register. For example:
Bit 0 set causes r0 to be transferred.
Bit 0 unset causes r0 not to be transferred.
54
Stacks
* A stack is an area of memory which grows as new data is pushed
onto the top of it, and shrinks as data is popped off the top.
* Two pointers define the current limits of the stack.
A base pointer
used to point to the bottom of the stack (the first location).
A stack pointer
used to point the current top of the stack.
PUSH
{1,2,3}
SP
POP
3
2
SP
BASE
SP
1
BASE
Result of
pop = 3
1
BASE
56
Stack Operation
* Traditionally, a stack grows down in memory, with the last pushed
value at the lowest address. The ARM also supports ascending
stacks, where the stack structure grows up through memory.
* The value of the stack pointer can either:
Point to the last occupied address (Full stack)
and so needs pre-decrementing (ie before the push)
Point to the next occupied address (Empty stack)
and so needs post-decrementing (ie after the push)
* The stack type to be used is given by the postfix to the
instruction:
STMFD / LDMFD : Full Descending stack
STMFA / LDMFA : Full Ascending stack.
STMED / LDMED : Empty Descending stack
* Note:
ARM Compiler
always
use a Full
descending
STMEA
/ LDMEA will
: Empty
Ascending
stack
stack.
57
Stack Examples
STMFD sp!,
{r0,r1,r3-r5}
STMED sp!,
{r0,r1,r3-r5}
STMFA sp!,
{r0,r1,r3-r5}
STMEA sp!,
{r0,r1,r3-r5}
0x418
SP
Old SP
Old SP
SP
r5
r4
r3
r1
r0
SP
Old SP
r5
r4
r3
r1
r0
SP
r5
r4
r3
r1
r0
Old SP
0x400
r5
r4
r3
r1
r0
0x3e8
58
........
LDMFD sp!,{r0-r12, pc}
Direct functionality of
Block Data Transfer
* When LDM / STM are not being used to implement stacks, it is clearer
to specify exactly what functionality of the instruction is:
i.e. specify whether to increment / decrement the base pointer, before
or after the memory access.
* In order to do this, LDM / STM support a further syntax in addition
to the stack one:
STMIA / LDMIA : Increment After
STMIB / LDMIB : Increment Before
STMDA / LDMDA : Decrement After
STMDB / LDMDB : Decrement Before
60
Increasing
Memory
r12
61
Quiz #5
* The contents of registers r0 to r6 need to be swapped around thus:
r0 moved into r3
r1 moved into r4
r2 moved into r6
r3 moved into r5
r4 moved into r0
r5 moved into r1
r6 moved into r2
* Write a segment of code that uses full descending stack operations
to carry this out, and hence requires no use of any other registers
for temporary storage.
62
LDMFD sp!,
{r3,r4,r6}
LDMFD sp!,
{r5}
Old SP
SP
LDMFD sp!,
{r0-r2}
SP
r6
r5
r4
r3
r2
r1
r0
SP
r6
r5
r4
r3
r3 = r0
r4 = r1
r6 = r2
SP
r5
r6
r4
r5 = r3
r0 = r4
r1 = r5
r2 = r6
63
Rn
temp
2
3
Memory
Rm
Rd
28 27
Cond
24
23
1 1 1
Condition Field
* In effect, a SWI is a user-defined
instruction.
* It causes an exception trap to the SWI hardware vector (thus causing a
change to supervisor mode, plus the associated state saving), thus
causing the SWI exception handler to be called.
* The handler can then examine the comment field of the instruction
to decide what operation has been requested.
* By making use of the SWI mechansim, an operating system can
implement a set of privileged operations which applications running
in user mode can request.
* See Exception Handling Module for further details.
65
I F T
Mode
67
Coprocessors
* The ARM architecture supports 16 coprocessors
* Each coprocessor instruction set occupies part of the ARM
instruction set.
* There are three types of coprocessor instruction
Coprocessor data processing
Coprocessor (to/from ARM) register transfers
Coprocessor memory transfers (load and store to/from memory)
* Assembler macros can be used to transform custom coprocessor
mneumonics into the generic mneumonics understood by the
processor.
* A coprocessor may be implemented
in hardware
in software (via the undefined instruction exception)
in both (common cases in hardware, the rest in software)
68
CDP{<cond>} <cp_num>,<opc_1>,CRd,CRn,CRm,{<opc_2>}
31
28 27 26 25 24 23
Cond
1 1 1 0
20 19
opc_1
16 15
CRn
12 11
CRd
cp_num
opc_2 0
Destination Register
Opcode
CRm
Opcode
Source Registers
69
Coprocessor Register
Transfers
* These two instructions move data between ARM registers
and coprocessor registers
MRC : Move to Register from Coprocessor
MCR : Move to Coprocessor from Register
* An operation may also be performed on the data as it is
transferred
For example a Floating Point Convert to Integer instruction can be
implemented as a register transfer to ARM that also converts the
data from floating point format to integer format.
<MRC|MCR>{<cond>}
* 31
Syntax
<cp_num>,<opc_1>,Rd,CRn,CRm,<opc_2>
Cond
opc_1
L 19
28 1
27 1
26 1
25 0
24 23
22 21 20
CRn
Rd15
16
0
cp_num
12 11
opc_2
8 7 1
CRm
4 3
Coprocessor Memory
Transfers (1)
* Load from memory to coprocessor registers
* Store to memory from coprocessor
registers.
31
28 27 26 25 24 23 22 21 20 19
Cond
1 1 0 P U N W L
16 15
Rn
12 11
CRd
cp_num
Source/Dest Register
Base Register
Load/Store
Base Register Writeback
Transfer Length
Add/Subtract Offset
Pre/Post Increment
Offset
Address Offset
71
Coprocessor Memory
Transfers (2)
* Syntax of these is similar to word transfers between ARM and
memory:
<LDC|STC>{<cond>}{<L>} <cp_num>,CRd,<address>
Post-indexed form
where
<L> when present causes a long transfer to be performed (N=1)
else causes a short transfer to be performed (N=0).
Effect of this is coprocessor dependant.
72
Quiz #6
* Write a short code segment that performs a mode change by
modifying the contents of the CPSR
The mode you should change to is user mode which has the value
0x10.
This assumes that the current mode is a priveleged mode such
as supervisor mode.
This would happen for instance when the processor is reset - reset
code would be run in supervisor mode which would then need to
switch to user mode before calling the main routine in your
application.
31 You will
need to use MSR and MRS, plus 2 logical
operations.
28
8
4
0
N Z CV
I F TM
o
de
73
EQU
0x1f
userm
EQU
0x10
r0,r0,#mmask
r0,r0,#userm
cpsr, r0
74