windbg雙機調試命令使用

F5或在命令輸入g,運行。
F9在代碼光標所在行下斷點。
bl列出所有斷點
bc *刪除所有斷點
bc 0 刪除0號斷點

0n(十進制) 0x(十六進制) 0t(8進制) 0y(2進制) 可以使用n [8|10|16]命令來修改數值進製表示方式(輸入n可查看當前進制,默認爲16進制)

dt - dump symbolic type information.
dt [[-ny] [!][]] [[-ny] ] [

]
[-l ] [-abcdehioprstv]

dt !Ty* Lists all Types, Globals and Statics of prefix Ty in
-v with this also lists symbols without type info.

d, da, db, dc, dd, dD, df, dp, dq, du, dw, dW, dyb, dyd (Display Memory)
The d* commands display the contents of memory in the given range.

Syntax
d{a|b|c|d|D|f|p|q|u|w|W} [Options] [Range]
dy{b|d} [Options] [Range]
d [Options] [Range]

Command Display
dd Double-word values (4 bytes).

The default count is 32 DWORDs (128 bytes).

x (Examine Symbols)
The x command displays the symbols in all contexts that match the specified pattern.

Syntax
x [Options] Module!Symbol
x [Options] *

Parameters
Options
Specifies symbol searching options. You can use one or more of the following options:

/t
Displays the data type of each symbol, if the data type is known.
/v
Displays the symbol type (local, global, parameter, function, or unknown) of each symbol. This option also displays the size of each symbol. The size of a function symbol is the size of the function in memory. The size of other symbols is the size of the data type that the symbol represents. Size is always measured in bytes and displayed in hexadecimal format.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章