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

相关推荐
SongYuLong的博客28 分钟前
Linux开源代码汇总
linux·运维·服务器
JiMoKuangXiangQu29 分钟前
Linux 内存管理 (5):buddy 内存分配简要流程
linux·内存管理·buddy 分配器
铭哥的编程日记32 分钟前
【Linux网络】应用层协议HTTP
linux·运维·http
yolo_guo44 分钟前
opencv 学习: 07 使用迭代器 (iterator) 遍历像素
linux·c++·opencv
子牙老师1 小时前
硬盘第一关:MBR VS GPT
linux·操作系统·文件系统
郝学胜-神的一滴2 小时前
Qt QPushButton 样式完全指南:从基础到高级实现
linux·开发语言·c++·qt·程序人生
傲世(C/C++,Linux)2 小时前
Linux系统编程——进程通信之有名管道
android·linux·运维
权泽谦3 小时前
从 Linux 到 Docker:一条通向 DevOps 的进阶之路
linux·docker·devops
yuanManGan3 小时前
走进Linux的世界:进程优先级
linux·运维·服务器
一叶知秋yyds3 小时前
linux 系统查看进程占用物理内存大小方法
linux·运维·服务器