arm 汇编技巧

  1. 汇编标号:f表示forward, b表示backward:

Here is an example:

1: branch 1f

2: branch 1b

1: branch 2f

2: branch 1b

Which is the equivalent of:

label_1: branch label_3

label_2: branch label_1

label_3: branch label_4

label_4: branch label_3

The "post-indexed" forms mean that the memory address is the base register value, then base plus

offset is written back to the base register.

先用base,再base= base+offset

• The "pre-indexed" forms mean that the memory address is the base register value plus offset, then the

computed address is written back to the base register.

先base= base+offset, 再用base

相关推荐
SCandL1524 小时前
安全上下文的修改实验
linux
ragnwang4 小时前
Ubuntu /home 分区安全扩容教程
linux·运维·ubuntu
Azure++4 小时前
Centos安装clickhouse
linux·clickhouse·centos
濊繵4 小时前
Linux网络--应用层自定义协议与序列化
linux·服务器·网络
潇凝子潇5 小时前
Linux 服务器实时监控Shell 脚本
linux·服务器·chrome
顾安r5 小时前
11.21 脚本 网页优化
linux·前端·javascript·算法·html
last demo5 小时前
iscsi服务器
linux·运维·服务器·php
qq_282195315 小时前
嵌入式音频USB Audio调试
linux·音视频
Predestination王瀞潞6 小时前
Cuda的安装
linux·人工智能·深度学习