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

相关推荐
peng_YuJun9 分钟前
openEuler 虚拟机从零到一:完整部署指南
linux·运维·服务器·vmware·openeuler
大志若愚YYZ11 分钟前
野火嵌入式Linux——内核编程模块 (进程)
linux
古月-一个C++方向的小白1 小时前
Linux——进程控制
linux·运维·服务器
文静小土豆1 小时前
CentOS 7 OpenSSH 10.2p1 升级全攻略(含离线安装与回退方案)
linux·运维·centos·ssh
五阿哥永琪1 小时前
进程的调度算法
linux·运维·服务器
小杜的生信筆記2 小时前
生信技能技巧小知识,Linux多线程压缩/解压工具
linux·数据库·redis
nzxzn2 小时前
LVS(Linux virual server)知识点
linux·运维·lvs
菜鸟别浪2 小时前
内存管理-第1章-Linux 内核内存管理概述
linux·运维·云计算·虚拟化·内存管理
nxb5562 小时前
云原生keepalived实验设定
linux·运维·云原生
luoshanxuli20102 小时前
Linux UVC Camera的介绍与实践应用(二)
linux