刘帅嵌入式系统-ADD加法指令

刘帅嵌入式系统-ADD加法指令_第1张图片
ADD 指令将< shifter_operand > 表示的数据与寄存器< Rn >中的值相加,并把结果保存到目标寄存器< Rd > 中,同时根据操作的结果更新CPSR中相应的条件标志位。

指令的编码格式

在这里插入图片描述

指令的语法格式

ADD{< cond >} {S} < Rd >, < Rn> ,< shifter_operand >

其中:

  • < cond >、S 和Rd的用法同之前介绍的MOV传输指令。
  • < Rn > 寄存器为第一个源操作数所在的寄存器。
  • < shifter_operand >为第2个操作数,其计算方法在之前已经介绍。

指令操作的伪代码

if ConditionPassed<cond> then
	Rd=Rn + shifter_operand
	if S==1 and Rd==R15 then
		CPSR=SPSR
	else if S==1 then
		N Flag=Rd[31]
		Z Flag=if Rd==0 then 1 else 0
		C Flag=CarryFrom(Rn + shifter_operand)
		V Flag=OverflowForm(Rn + shifter_operand)

指令的使用

ADD指令实现两个操作数相加。

示例

典型的用法:

ADD Rx, Rx, #1			;Rx=Rx+1
ADD Rd, Rx, Rx, LSL #n	;Rx=Rx+Rx*(2*n)
ADD Rs, PC, #offset		;生成基于PC的跳转指针

你可能感兴趣的:(ARM,ARM体系结构)