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>

相关推荐
秋深枫叶红6 小时前
嵌入式第四十七篇——ARM汇编
汇编·arm开发·学习
jh10_7 小时前
嵌入式硬件DAY5(ARM汇编)
汇编·arm开发·嵌入式硬件
时空自由民.2 天前
I3C协议介绍
汇编·stm32·单片机
浩浩测试一下3 天前
高阶免杀技术掌握概览
汇编·安全·web安全·网络安全·系统安全·安全架构
听情歌落俗6 天前
ARM架构-硬件架构和汇编指令
汇编·arm开发·硬件架构
云qq6 天前
x86操作系统23——进程相关系统调用
linux·c语言·汇编·ubuntu
新鲜感~9 天前
汇编点灯基于SC32440
linux·汇编
fengye20716113 天前
板凳----------(枯藤 )vs2026+win10(第六章-4)
汇编
-曾牛13 天前
【汇编语言入门】从第一个加法程序吃透汇编核心基础
汇编·单片机·嵌入式硬件·汇编语言·病毒分析·lcx·逆向开发
切糕师学AI13 天前
ARM 汇编指令:ROR(循环右移)
汇编·arm开发