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>

相关推荐
yoyo_zzm43 分钟前
汇编到PHP:五大编程语言核心特性全解析
开发语言·汇编·php
ComputerInBook2 天前
X64 汇编 MOVSD 的两种用法
汇编·汇编指令·movsd
YangWeiminPHD3 天前
金水32051编译器下的AI8051U单片机入门:从点亮LED到“你好,世界,我来了!”
c语言·汇编·51单片机·编译器
九思十安5 天前
HNU2026-计算机系统-笔记 5 汇编进阶
汇编·笔记
九思十安5 天前
HNU2026-计算机系统-笔记 4 汇编初步
汇编·笔记
这猪好帅6 天前
协程原理与实现
汇编
Byron Loong9 天前
【逆向】AT Hook 与 Inline Hook 对比
c语言·汇编·c++
iCxhust11 天前
微机原理课程设计大综合---计数器
汇编·单片机·嵌入式硬件·课程设计·微机原理
xxjj998a12 天前
PHP与汇编:从Web到硬件的编程差异
开发语言·汇编·php
陈eaten13 天前
汇编使用AES指令集实现AES解密
汇编·python·aes解密·aes指令集