ARM base instruction -- cinc

Conditional Increment returns, in the destination register, the value of the source register incremented by 1 if the condition is TRUE, and otherwise returns the value of the source register.

如果条件为TRUE,则条件增量在目标寄存器中返回源寄存器的值加1,否则返回源寄存器。

32-bit variant

Applies when sf == 0.

CINC <Wd>, <Wn>, <cond>

64-bit variant

Applies when sf == 1.

CINC <Xd>, <Xn>, <cond>

Decode for all variants of this encoding

integer d = UInt(Rd);

integer n = UInt(Rn);

integer datasize = if sf == '1' then 64 else 32;

Operation

bits(datasize) result;

bits(datasize) operand1 = X[n];

if ConditionHolds(cond) then

result = operand1 + 1;

else

result = operand1;

X[d] = result;

404288: 710002ff cmp w23, #0x0 // w23=0

40428c: aa1b03fc mov x28, x27 // x28=x27=walk->next

404290: 110006f7 add w23, w23, #0x1 // w23=w23+1 count++

404294: 1a94069b cinc w27, w20, ne // w27=0, w20=0; if ConditionHolds(cond) then w27=w20+1=1

404298: 17ffffd2 b 4041e0 <ferror@plt+0x2300>

相关推荐
leluckys15 小时前
逆向-ARM64汇编二
汇编
小麦嵌入式16 小时前
Linux驱动开发实战(九):Linux内核pinctrl_map详解与优势分析
linux·c语言·汇编·驱动开发·stm32·嵌入式硬件·硬件工程
淬渊阁19 小时前
汇编学习之《指针寄存器&大小端学习》
汇编·学习
淬渊阁19 小时前
汇编学习之《段寄存器》
汇编·学习
淬渊阁21 小时前
汇编学习之《数据传输指令》
汇编·学习
二年级程序员2 天前
51单片机的五类指令(一)——数据传送类指令
汇编·单片机·嵌入式硬件·51单片机
ok0603 天前
汇编(六)——汇编语言程序格式及MASM
汇编·asm
re1ife7 天前
32位汇编:MASM32环境搭建与汇编窗口程序
汇编·c++·windows·开源软件
Amy.com9 天前
STM32-汇编2、外设
汇编
satadriver10 天前
汇编移位指令
汇编