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

相关推荐
lbb 小魔仙几秒前
Steam Deck OLED 拆解与评测:Valve 对 Linux 掌机的又一次精进
linux·运维·服务器
一枚正在学习的小白5 分钟前
prometheus监控redis
linux·运维·服务器·redis·prometheus
白帽子凯哥哥6 分钟前
Misc题目中图片隐写和流量分析的详细工具使用技巧
linux·运维·web安全·网络安全·docker·渗透测试
lzjava20247 分钟前
Python中的模块和包
linux·开发语言·python
大山同学13 分钟前
薄膜透光度原理
linux·运维·人工智能
lifewange19 分钟前
Linux 日志查看核心命令(动态跟踪 + 文件查阅,全覆盖工作常用)
linux·运维·服务器
JiMoKuangXiangQu23 分钟前
Linux 网络:RPS 简介
linux·网络·rps 和 rfs
Awkwardx30 分钟前
Linux网络编程—五种IO模型与非阻塞IO
linux·服务器·网络
小鹏linux1 小时前
【linux】进程与服务管理命令 - pkill
linux·运维·服务器
ChenXinBest1 小时前
一次firewalld和docker冲突问题排查
linux·docker