Use Windbg Register (register) of the window

CPU registers are located in a small unit in volatile memory. Number of registers dedicated to a particular purpose, can be used for other registers used by user-mode applications. And based on a different set of x86 x64-based processor in the available registers.

How to open a register window

  • By menu View ---> Registers

     

     

  • By shortcut Alt + 4
  • Toolbar

Register window

Window opened by the above manner is as follows:

 

Register window contains two columns. Reg lists register all target processor. Value column shows the current value for each registration. This window also contains a custom button on the toolbar to open the Customize list registration dialog:

 

In the window register, you can perform the following operations:

  • Value column shows the current value for each registration. Recent changes in the value of the register displayed in red text.

    • To enter a new value, double-click the value cell, and then type a new value or edit the old value. (Cut, copy, and paste commands are available for editing.)
    • To save the new value, press ENTER.
    • To discard the new value, press ESC.
    • If you type an invalid value, press ENTER key, the old value will reappear.
  • Register value displayed in the current base, and must be the same type a new value in the base. To change the current base, use the n (Set Number Base) command in the debugger command window.

  • In user mode, the register window display register associated with the current thread. 

  • 在内核模式下,寄存器窗口显示与当前相关联的寄存器注册上下文可以设置寄存器上下文以匹配特定线程、 上下文记录或捕获帧。 实际显示仅指定的寄存器上下文的最重要寄存器;不能更改它们的值。

寄存器窗口已包含一个工具栏自定义按钮和具有带其他命令的快捷菜单。 若要访问菜单,请右键单击标题栏或单击窗口右上角附近的图标 (用于显示寄存器窗口快捷菜单的按钮图标的屏幕截图)。 工具栏和菜单包含以下按钮和命令:

  • (工具栏和菜单)自定义会打开自定义寄存器列表对话框中,在本主题中的以下部分中所述。

  • (仅限菜单)工具栏工具栏,开启和关闭。

  • (仅限菜单)停靠取消停靠将使窗口进入或离开停靠的状态。

  • (仅限菜单)移到新停靠寄存器窗口将关闭,并将其打开新的平台中。

  • (仅限菜单)设置为选项卡形式停靠为窗口中,键入目标不可用于寄存器窗口。 此选项才可用的源或内存窗口。

  • (仅限菜单)始终浮点将使窗口停靠,即使仍拖到停靠位置。

  • (仅限菜单)移动与帧将使窗口移动时移动的 WinDbg 帧,即使在窗口已解除固定。 

  • (仅限菜单)帮助有关 Windows 调试工具文档中打开此主题。

  • (仅限菜单)关闭关闭此窗口。

自定义注册列表对话框

若要更改显示的寄存器的列表,请单击自定义按钮。 自定义寄存器列表对话框将出现。在此对话框中,可以编辑的寄存器,若要更改的寄存器的显示的顺序的列表。 (不能实际从列表中删除寄存器; 如果这样做,它将结束时重新出现。)寄存器名称之间必须留一个空格。如果选择修改显示首次寄存器复选框,其值已更改的寄存器最近显示在顶部。如果选择不会显示 subregisters复选框,subregisters 不会显示。 例如, eax将显示,但不是axah,或者al单击确定以保存所做的更改或取消放弃所做的更改。如果你正在调试多个类型的处理器的多处理器计算机,WinDbg 将单独存储每个处理器类型的自定义设置。 这种分离使您可以同时自定义的每个处理器的寄存器的显示。

Guess you like

Origin www.cnblogs.com/yilang/p/12076065.html