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>

相关推荐
SCBAiotAigc6 小时前
2026.3.18:汇编之字符串反转
汇编·具身智能
BigDark的笔记2 天前
【ARM汇编】0x01_ARM和C混合编程实现基本运算
c语言·汇编·arm开发
老鱼说AI3 天前
《深入理解计算机系统》(CSAPP)2.2:整数数据类型与底层机器级表示
开发语言·汇编·算法·c#
kang0x03 天前
汇编基础知识练习题
汇编
leluckys6 天前
swift- Swift中常见的面试题
开发语言·汇编·swift
bcbobo21cn7 天前
学习DOS汇编显示系统日期时间程序
汇编·dos中断21h·2ah功能·2ch功能
职豚求职小程序8 天前
东软集团题库笔试测评系统练习笔试2026新版
大数据·汇编·人工智能
我在人间贩卖青春22 天前
汇编之伪指令
汇编·伪指令
我在人间贩卖青春23 天前
汇编之伪操作
汇编·伪操作
济61723 天前
FreeRTOS基础--堆栈概念与汇编指令实战解析
汇编·嵌入式·freertos