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 = Xn;

if ConditionHolds(cond) then

result = operand1 + 1;

else

result = operand1;

Xd = 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>

相关推荐
2301_789015627 小时前
Linux基础开发工具一:软件包管理器、vim编辑器
linux·服务器·c语言·汇编·c++·编辑器·vim
是星辰吖~1 天前
X86反汇编_深度学习_基础二叉树
汇编
iCxhust1 天前
汇编返回指令ret iret retf区别
汇编·微机原理·8088单板机
怣疯knight2 天前
ida里打印python版本
汇编
是星辰吖~2 天前
X86反汇编_深度学习_栈反汇编分析
汇编
是星辰吖~2 天前
X86反汇编_深度学习_队列反汇编分析
汇编
say_fall2 天前
半导体存储器_从分类到Cache完全指南
汇编·微机原理·8086
是星辰吖~3 天前
x86反汇编_深度学习_单链表
汇编
是星辰吖~3 天前
x86反汇编_深度学习_链表OJ题反汇编
汇编
乾复道4 天前
k8s使用说明
汇编·程序人生