当前位置:网站首页>ida中交叉引用的解析
ida中交叉引用的解析
2022-06-24 22:30:00 【华为云】
1.代码交叉引用
代码交叉引用的前缀为:CODE XREF如下图显示,箭头方向表示引用位置的相对方向。
每一个交叉引用的最后一位后缀表示引用的类型:
o 普通流 ,表示一条指令到另一条指令的顺序流
p 调用流,表示控制权被转交给目标函数,如BL等命令
j 跳转流,表示分支操作,常见于if等操作
- 数据交叉引用
数据交叉应用的前缀为:DATA XREF如下图所示,数据交叉引用
每一个交叉引用的最后一位后缀表示引用的类型
r 读取交叉引用,表示访问的是某个内存位置的内容
w 写入交叉引用,指出了修改变量内容的程序位置
o 偏移量交叉引用,表示引用的是某个位置的地址(而非内容)
- 交叉引用列表
Jump - Jump to xref 或快捷键X,将光标放在一个交叉引用的目标地址上,通过该快捷键可弹出交叉引用列表。

边栏推荐
- Beescms website penetration test and repair comments "suggestions collection"
- linux上查看mysql的密码_Linux下MySQL忘记密码「建议收藏」
- 云原生数据库VS传统数据库
- 谷歌浏览器控制台 f12怎么设置成中文/英文 切换方法,一定要看到最后!!!
- Exploring the mystery of C language program -- C language program compilation and preprocessing
- Basic layout -qhboxlayout class, qvboxlayout class, qgridlayout class
- 文件系统 -- 磁盘基础知识和FAT32文件系统详细介绍
- Application session coverage solutions with different ports on the same server
- 会自动化—10K,能做自动化—20K,你搞懂自动化测试没有?
- Hashcat 的使用
猜你喜欢
随机推荐
Viewing MySQL password on Linux_ MySQL forgets password "suggestions collection" under Linux
Kaggle 专利匹配比赛赛后总结
如何通过EasyCVR接口监测日志观察平台拉流情况?
Integration of metersphere open source continuous testing platform and Alibaba cloud cloud cloud efficient Devops
华为、阿里等大厂程序员真的好找对象吗?
[leetcode] 11. Container with the most water
中文地址与英文地址
June 24, 2022: golang multiple choice question, what does the following golang code output? A:1; B:3; C:4; D: Compilation failed. package main import ( “f
linux上查看mysql的密码_Linux下MySQL忘记密码「建议收藏」
DDD概念复杂难懂,实际落地如何设计代码实现模型?
内网学习笔记(7)
Build and train your own dataset for pig face recognition
Listen to the markdown file and hot update next JS page
How to get the picture outside the chain - Netease photo album [easy to understand]
基本布局-QHBoxLayout类、QVBoxLayout类、QGridLayout类
Explanation of FTP protocol
(CVPR 2020) Learning Object Bounding Boxes for 3D Instance Segmentation on Point Clouds
Experiment 5 8254 timing / counter application experiment [microcomputer principle] [experiment]
会自动化—10K,能做自动化—20K,你搞懂自动化测试没有?
Convert string array to list collection








