ARM指令尋址方式之: 數(shù)據(jù)處理指令的尋址方式
6.Rm>, LSR Rs>
(1)編碼格式
指令的編碼格式如圖4.7所示。
圖4.7 數(shù)據(jù)處理指令——寄存器邏輯右移尋址編碼格式
此操作將寄存器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)語法格式
opcode> {cond>} {S} Rd>,Rn>,Rm>,LSR Rs>
其中:
· Rm>為指令被移位的寄存器;
· LSR為邏輯右移操作標(biāo)識;
· 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ù)據(jù)處理指令——立即數(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)語法格式
opcode> {cond>} {S} Rd>,Rn>,Rm>,ASR #shift_imm>
其中:
· Rm>為被移位的寄存器;
· ASR為算術(shù)右移操作標(biāo)識;
· 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。
評論