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

相关推荐
wa的一声哭了9 分钟前
Webase部署Webase-Web在合约IDE页面一直转圈
linux·运维·服务器·前端·python·区块链·ssh
Aufidius16 分钟前
虚拟机ubuntu存储空间不够如何扩容(扩充根目录)
linux·运维·ubuntu
Warren981 小时前
软件测试常见面试题
linux·python·django·flask·virtualenv·pygame·tornado
tan180°1 小时前
Linux网络IP(上)(15)
linux·网络·tcp/ip
没有名字的鬼2 小时前
RK3399 SSH连接设置
linux·ssh·rk3399·mobaxterm
“αβ”2 小时前
MySQL库的操作
linux·服务器·网络·数据库·c++·mysql·oracle
lhyzws2 小时前
CENTOS上的网络安全工具(二十八)SPARK+NetSA Security Tools容器化部署(4)
linux·spark·centos
岚天start3 小时前
源码编译安装的Nginx增加echo模块过程详解
linux·运维·数据库
胖咕噜的稞达鸭3 小时前
进程状态,孤儿进程僵尸进程,Linux真实调度算法,进程切换
linux·运维·算法
云计算老刘5 小时前
10. Linux 系统启动原理
linux·运维·服务器