Below you will find pages that utilize the taxonomy term “fxsave”
Blog | October 22, 2020
How Debuggers Work: Getting and Setting x86 Registers, Part 1
By Michał Górny
In this article, I would like to shortly describe the methods used to dump and restore the different kinds of registers on 32-bit and 64-bit x86 CPUs. The first part will focus on General Purpose Registers, Debug Registers and Floating-Point Registers up to the XMM registers provided by the SSE extension. I will explain how their values can be obtained via the
read more
ptrace(2)
interface.