Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 X86 平台上,像 gdb 这样的调试器可以通过寄存器 R0~R3 设置观察点断点,寄存器 R7 存储断点信息。一旦内核命中观察点断点,调试器可以收集观察点断点信息,从寄存器R6读取信息,R6的位[0]~位[3]可以使用dr[指示观察点索引(R0或R1或R2或R3) 6]&0xf .
但是在arm平台上,如何获取这些信息,好像我们没有像X86平台上的R6这样的寄存器。