1.ARM的处理器方式
ARM体系结构支撑7种处理器方式,分别是:用户、FIQ、IRQ、办理、间断(abort)、未定义和体系方式。除了用户方式外,其他都称之为特权方式。除了用户和体系方式外,其他都称之为反常方式。
2.ARM的存储器安排
ARM处理器总共有37个寄存器:包含31个通用寄存器、包含程序计数器(PC)、和6个状况寄存器。这些寄存器在不同方式下,不能被一同看到,有些称号是堆叠的。分为三类:不分组寄存器,分组寄存器和程序计数器
1)不分组寄存器R0~R7
一切的处理方式下、它们都是拜访同一个寄存器,因而只要8个不分组寄存器。
2)分组寄存器R8~R14
每一个拜访的物理寄存器取决于当时的处理器方式,有些是共用的,而有些事别离的。详细能够查询相关材料。
R13便是仓库寄存器SP,而R14便是链接寄存器LR
3)程序计数器R15
在ARM状况PC的位[1:0]为0,而在Thumb状况,位[0]为0.
4)程序状况寄存器CPSR和程序状况保存寄存器SPSR
CPSR只要一个,代表了当时的程序状况。而每个反常方式都有独立的一个SPSR,用于保存CPSR的状况。
http://www.CodeHighlighter.com/
–>1
2
3.ARM的常用汇编指令
1)根本寻址办法
包含有寄存器寻址、当即寻址、寄存器移位寻址、寄存器间寻址、变址寻址、多寄存器寻址、仓库寻址、块仿制寻址和相对寻址
2)条件履行
简直一切的ARM指令都能够包含一个可选的条件码,句法中以{cond}来标识。可用的条件码如下面所示。简直一切的ARM数据处理指令均能够依据履行成果来挑选是否更新条件码标志,即在指令中包含后缀S。
http://www.CodeHighlighter.com/
–> 1
2
3
4650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0010 CS/HS C置位 大于或等于(无符号>=)
5650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0011 CC/LO C清零 小于(无符号<)
6650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0100 MI N置位 负
7650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0101 PL N清零 正或零
8650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0110 VS V置位 溢出
9650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />0111 VC V清零 未溢出
10650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1000 HI C置位且Z清零 大于(无符号>)
11650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1001 LS C清零或Z置位 小于或等于(无符号<=)
12650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1010 GE N和V相同 带符号>=
13650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1011 LT N和V不同 带符号<
14650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1100 GT Z清零且N和V相同 带符号>
15650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1101 LE Z置位或N和V不同 带符号<=
16650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />1110 AL 任何 总是(一般省掉)
3)存储器拜访指令
3.1)LDR和STR(字与无符号字节)语法如下
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {B} {T} Rd, [Rn]
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {B} Rd, [Rn, Flexoffset] {!} //前索引偏移
3650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {B} Rd, label
4650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {B} {T} Rd, [Rn], Flexoffset //后索引偏移
其间:
op 是操作码即指令LDR或STR。
cond 便是上面所说的条件码,因而指令能够变成LDREQ或STRNE相似的称号,表明满意某些条件时该条指令才会履行。
B 可选后缀,表明传送Rd的最低有用字节,便是所谓的无符号字节传送,字节加载的时分是用0来扩展到32位的。
T 可选后缀,即便处理器是在特权方式下,存储体系也将拜访看成是处理器在用户方式下。不能和前索引偏移一同运用。
Rd 用于加载或存储的ARM寄存器
Rn 存储器的基址寄存器。若指令是带写回的前索引或后索引(后索引都是写回的),则Rd和Rn不能相同
Flexoffset 加到Rn上的灵敏的偏移量
label 程序相对偏移表达式。label有必要是当时指令的+-4KB规模内
! 可选后缀,前索引写回标志,若Rn是R15,则不能用后缀!
Flexoffset的句法包含下面两种
1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />#expr
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />{-} Rm {, shift}
– 是可选符号,表明从Rn中减去偏移量,不然是加
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />expr 表达式,取值规模-4095~+4095的整数
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />Rm 内含偏移量的寄存器。Rm不允许是R15
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />shift Rm的可选移位办法,能够是下列方式的任何一种
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> ASR n算术右移n位(1<=n<=32)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> LSL n逻辑左移n位(0<=n<=31)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> LSR n逻辑右移n位(1<=n<=32)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> ROR n循环右移n位(1<=n<=31)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> RRX 循环右移1位,带扩展
3.2)LDR和STR(半字和带符号字节)语法如下:
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} type Rd, [Rn]
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} type Rd, [Rn, offset] {!}
3650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} type Rd, label
4650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} type Rd, [Rn], offset
其间:
type 有必要是以下所列其间之一
SH 对带符号半字(仅LDR)
H 对无符号半字
SB 对带符号字节(仅LDR)
label 程序相对偏移表达式。有必要是当时指令+-255字节规模
offset 加在Rn上的偏移量,能够是以下两种方式之一
#expr //值为+-255规模内的整数。
{-} Rm
3.3)LDR和STR(双字)加载两个相邻的存储器和存储两个相邻的寄存器,语法如下:
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} D Rd, [Rn]
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} D Rd, [Rn, offset] {!}
3650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} D Rd, label
4650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} D Rd, [Rn], offset
其间:
Rd 加载或存储寄存器其间一个,另一个是R(d+1)。但Rd有必要是偶数寄存器,且不能是R14。
Rn 除非指令为零偏移,或不带写回的前索引,不然Rn不允许与Rd和R(d+1)相同
offset 加在Rn上的偏移量
label 程序相对偏移表达式。有必要是当时指令+-255字节规模
3.4)LDM和STM 加载多个寄存器或存储多个寄存器,能够传送R0~R15的任何组合
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} mode Rn{!}, reglist{^}
其间:
mode是下列状况中之一:
IA 每次传送后地址加1
IB 每次传送前地址加1
DA 每次传送后地址减1
DB 每次传送前地址减1
FD 满递减仓库
ED 空递减仓库
FA 满递加仓库
EA 空递加仓库
Rn 基址寄存器,传送数据的初始地址。不允许是R15
! 可选后缀。若有!,则最终的地址写回Rn
reglist 加载或存储的寄存器列表 能够写出如下方式
{R0, R2, R9}
{R3-R6, R11, R12}
{R0, R4-R7, LR}
3.4) SWP 在寄存器和存储器之间进行数据交流。
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />SWP {cond} {B} Rd, Rm, [Rn]
其间:
B 可选后缀。若有B,则是交流字节,不然交流字
Rd 数据从存储器加载到Rd
Rm Rm的内容存储到存储器。假如Rm和Rd的相同,则是交流寄存器和存储器的内容
Rn Rn的内容指定要进行数据交流的存储器的地址。 Rn有必要和Rm和Rd不同
4)ARM数据处理指令
4.1)灵敏的第二操作数,在数据处理指令中会经常出现第二操作数,即Operand2,它有如下的两种或许方式。
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /># immed_8r
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />Rm{, shift}
其间:
immed_8r 取值为数字常量的表达式。常量有必要对应8位位图在32位字中被循环移位偶数位(0,2,4,6,…,28,30)后的值
合法的常量有:0xFF,0x104,0xFF0,0xFF000,0xF0000000F等
不合法的常量有:0x101,0x102,0xFF1,0xFF04等
Rm 存储第二操作数数据的寄存器,能够用各种办法对寄存器中的位图进行移位或循环移位,操作成果用于Operand2
但Rm自身不改动。
shift 对Rm的可选移位办法,能够是以下办法的任何一种
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> ASR n算术右移n位(1<=n<=32)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> LSL n逻辑左移n位(0<=n<=31)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> LSR n逻辑右移n位(1<=n<=32)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> ROR n循环右移n位(1<=n<=31)
650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” /> RRX 循环右移1位,带扩展
type Rs 其间type为上面ASR、LSL、LSR、ROR中的一种;Rs为供给移位量的寄存器,仅运用最低有用字节
4.2)ADD、SUB、RSB、ADC、SBC和RSC
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {S} Rd, Rn, Operand2
其间:
op 是上面很多指令中的一个
S 可选后缀,会依据成果来更新条件码标志
Rd 成果寄存器
Rn 保存榜首操作数的寄存器
Operand2 第二操作数
ADD 表明Rn加Operand2的值存到Rd
SUB 表明Rn减去Operand2
RSB 表明Operand2减去Rn
ADC 将Rn和Operand2相加后再加上进位标志
SBC 从Rn的值中减去Operand2的值,若进位标志是清零的,则成果减去1
RSC 从Operand2中减去Rn的值,若进位是清零的,则成果减去1
4.3)AND、ORR、EOR和BIC
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond} {S} Rd, Rn, Operand2
其间:AND是与、ORR是或、EOR是异或和BIC是位清零
都是Rn和Operand2中的值做处理,然后成果保存在Rd中
B%&&&&&% 用于将Rn中的坐落Operand2中相应位的反码,进行与操作。
4.3)MOV和MVN 传送与传送非
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MOV {cond} {S} Rd,Operand2
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MVN {cond} {S} Rd,Operand2
MOV将Operand2中的值拷贝到Rd中
而MVN将Operand2的值进行按位逻辑非之后再传送到Rd
4.4)CMP和CMN 比较与比较反值
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />CMP {cond} Rn, Operand2
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />CMN {cond} Rn, Operand2
CMP比较巨细,从Rn中减去Operand2的值,但丢掉成果,更新标志位,指令的首要意图是更新标志位
CMN是将Rn和Operand2相加,丢掉成果再更新标志位。
4.5)TST和TEQ 测验和测验持平
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />TST {cond} Rn, Operand2
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />TEQ {cond} Rn, Operand2
TST对Rn和Operand2的值进行按位与操作,更新标志位,丢掉成果
TEQ对Rn和Operand2的值进行异或操作,更新标志位,丢掉成果
4.6)CLZ 前导零计数
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />CLZ {cond} Rd, Rm
Rd 成果寄存器,不允许是R15
Rm 操作数寄存器。CLZ对Rm中的前导零的个数进行计数,成果放在Rd中,若Rm全为0,则成果为32
若位[31]是1,则成果为0
4.7)MUL和MLA 乘法和乘加运算
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MUL {cond} {S} Rd,Rm,Rs
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MLA {cond} {S} Rd,Rm,Rs,Rn
其间:
Rd 成果寄存器,不能使R15
Rm,Rs,Rn 操作寄存器,不能是R15,Rd不能和Rm相同
MUL 将Rm和Rs相乘,并将最低有用32位成果放在Rd中
MLA 将Rm和Rs相乘,再加上Rn的值,将最低有用32位成果放在Rd中
4.8)UMULL、UMLAL、SMULL和SMLAL 无符号和带符号长整数乘法和乘加,成果是64位
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />op {cond}{S} RdLo,RdHi,Rm,Rs
其间:
RdLo和RdHi 是成果寄存器
Rm和Rs 是操作数寄存器
UMULL 将Rm和Rs中的值解释为无符号整数。将两数相乘,并将成果的最低32位放RdLo中,高32位放RdHi中
UMLAL 将Rm和Rs中的值解释为无符号整数。将两数相乘,并将成果加回到RdLo和RdHi的64位无符号整数上。
SMULL 将Rm和Rs中的值解释为有符号补码整数。将两数相乘,并将成果的最低32位放RdLo中,高32位放RdHi中
SMLAL 将Rm和Rs中的值解释为有符号补码整数。并将成果加回到RdLo和RdHi的64位无符号整数上。
5)ARM搬运指令
5.1)B和BL 跳转指令
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />B {cond} label
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />BL {cond} label
其间:
label 是程序相对偏移表达式。两条指令都会令程序搬运到label上,而BL还会将本来的下一条指令地址保存在R14上
6)ARM协处理指令
7)其他指令
7.1)SWI 软件中止
7.2)MRS 将CPSR或SPSR的内容保存到寄存器中
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MRS {cond} Rd,psr
其间:
Rd 方针寄存器,Rd不允许为R15
psr CPSR或SPSR
7.3)MSR 将当即数或通用寄存器的内容加载到CPSR或SPSR的指定区域
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MSR {cond}
2650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />MSR {cond}
其间:
psr 便是CPSR或SPSR
fileds是拟定传送区域,能够是
c 操控域屏蔽字节(PSR[7:0])
x 扩展域屏蔽字节(PSR[15:8])
s 状况域屏蔽字节(PSR[23:16])
f 标志域屏蔽字节(PSR[31:24])
8)伪指令
8.1)ADR 将程序的相对偏移或寄存器相对偏移地址加载到寄存器中
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />ADR {cond} register,expr
其间:
register 是加载的寄存器
expr 是程序相对偏移或寄存器相对偏移表达式,取值能够是
非字节对齐地址-255~255
字节对齐地址-1020~1020
请注意,这条指令是用来获取相对偏移地址的。
便是用当时PC的值,去减去某一个恰当的值(编译器主动核算),然后得到expr这个标号的相对地址,将这个标号的相对于当时pc的偏移地址存储到register中。正是由于这样,这条指令才是一条伪指令,这样的优点是能够绕过程序进口地址的影响,而始终能跳转到精确的地址,由于B这样的跳转指令是跳转到肯定地址上的,而ADR能够获取到一个相对于当时PC的地址,所以用途非常大。
8.2)LDR 用常量或地址加载寄存器
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
–>1650) this.width=650;” alt=”” src=”http://www.cnblogs.com/Images/OutliningIndicators/None.gif” align=”top” />LDR {cond} register,=[expr | label-expr]
其间:
register 加载寄存器
expr 赋值成数字常量
label-expr 程序相对偏移或外部表达式
汇编器可主动识别数字常量,然后完成对register赋值的操作。