新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > ARM指令尋址方式之: 數(shù)據(jù)處理指令的尋址方式

ARM指令尋址方式之: 數(shù)據(jù)處理指令的尋址方式

作者: 時(shí)間:2013-09-13 來源:網(wǎng)絡(luò) 收藏

本文引用地址:http://2s4d.com/article/257084.htm

6.Rm>, LSR Rs>

(1)編碼格式

指令的編碼格式如圖4.7所示。

圖4.7 ——寄存器邏輯右移尋址編碼格式

此操作將寄存器Rm的數(shù)值邏輯右移一定的位數(shù)。移位的位數(shù)由Rs的最低8位bit[7∶0]決定。移出的位由0補(bǔ)齊。當(dāng)Rs[7∶0]大于0而小于32時(shí),進(jìn)位標(biāo)志C由最后移出的位決定,當(dāng)Rs[7∶0]大于32時(shí),進(jìn)位標(biāo)志位為0,當(dāng)Rs[7∶0]等于0時(shí),進(jìn)位標(biāo)志不變。

(2)語(yǔ)法格式

opcode> {cond>} {S} Rd>,Rn>,Rm>,LSR Rs>

其中:

· Rm>為指令被移位的寄存器;

· LSR為邏輯右移操作標(biāo)識(shí);

· Rs>為包含邏輯右移位數(shù)的寄存器。

(3)操作偽代碼

if Rs[7:0] = = 0 then

shifter_operand = Rm

shifter_carry_out = C flag

else if Rs[7:0] 32 then

shifter_operand = Rm logical_shift_Right Rs[7:0]

shifter_carry_out = Rm[Rs[7:0] - 1]

else if Rs[7:0] = = 32 then

shifter_operand = 0

shifter_carry_out = Rm[31]

else /*Rs的后8位大于零*/

shifter_operand = 0

shifter_carry_out = 0

(4)說明

如果程序計(jì)數(shù)器r15被用作Rd、Rm、Rn或Rs中的任意一個(gè),則指令的執(zhí)行結(jié)果不可預(yù)知。

7.Rm>, ASR #shift_imm>

(1)編碼格式

指令的編碼格式如圖4.8所示。

圖4.8 ——立即數(shù)算術(shù)右移尋址編碼格式

指令的操作數(shù)為寄存器Rm的數(shù)值邏輯右移shift_imm>位。shift_imm>的值范圍為0~31,當(dāng)shift_imm>等于0時(shí),移位位數(shù)為32,所以移位位數(shù)范圍為1~32位。進(jìn)位移位操作后,空出的位添Rm的最高位Rm[31]。進(jìn)位標(biāo)志為Rm最后被移出的數(shù)值。

(2)語(yǔ)法格式

opcode> {cond>} {S} Rd>,Rn>,Rm>,ASR #shift_imm>

其中:

· Rm>為被移位的寄存器;

· ASR為算術(shù)右移操作標(biāo)識(shí);

· shift_imm>為算術(shù)右移位數(shù),范圍為1~32,當(dāng)shift_imm等于0時(shí)移位位數(shù)為32。

(3)操作偽代碼

if shift_imm == 0 then /*執(zhí)行寄存器操作*/

if Rm[31] = = 0 then

shifter_operand = 0

shifter_carry_out = Rm[31]

else /*Rm[31] = = 1*/

shifter_operand = 0xffffffff

shifter_carry_out = Rm[31]

else /*shift_imm > 0*/

shifter_operand = Rm Arithmetic_shift_Right shift_imm>

shifter_carry_out = Rm[shift_imm - 1]

(4)說明

① 如果指令中的Rm或Rn指定為程序計(jì)數(shù)器r15,則操作數(shù)的值為當(dāng)前指令地址加8。



評(píng)論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉