Last active
August 22, 2017 14:02
-
-
Save acepace/4a27ecadedeb7f42826e8ff049166d3d to your computer and use it in GitHub Desktop.
windbg managed cheat sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#psscor4 (superset of sos) | |
Object Inspection Examining code and stacks | |
----------------------------- ----------------------------- | |
DumpObj (do) Threads | |
DumpArray (da) ThreadState | |
DumpStackObjects (dso) IP2MD | |
DumpHeap U | |
DumpVC DumpStack | |
GCRoot EEStack | |
ObjSize CLRStack | |
FinalizeQueue GCInfo | |
PrintException (pe) EHInfo | |
TraverseHeap BPMD | |
DumpField (df) COMState | |
DumpDynamicAssemblies (dda) | |
GCRef | |
DumpColumnNames (dcn) | |
DumpRequestQueues | |
DumpUMService | |
Examining CLR data structures Diagnostic Utilities | |
----------------------------- ----------------------------- | |
DumpDomain VerifyHeap | |
EEHeap VerifyObj | |
Name2EE FindRoots | |
SyncBlk HeapStat | |
DumpMT GCWhere | |
DumpClass ListNearObj (lno) | |
DumpMD GCHandles | |
Token2EE GCHandleLeaks | |
EEVersion FinalizeQueue (fq) | |
DumpModule FindAppDomain | |
ThreadPool SaveModule | |
DumpAssembly ProcInfo | |
DumpSigElem StopOnException (soe) | |
DumpRuntimeTypes DumpLog | |
DumpSig VMMap | |
RCWCleanupList VMStat | |
DumpIL MinidumpMode | |
PrintIPAddress AnalyzeOOM (ao) | |
DumpHttpRuntime FindDebugTrue | |
DumpIL FindDebugModules | |
PrintDateTime Analysis | |
DumpDataTables CLRUsage | |
DumpAssembly CheckCurrentException (cce) | |
RCWCleanupList CurrentExceptionName (cen) | |
DumpHttpContext | |
ASPXPages | |
DumpASPNETCache (dac) | |
ConvertVTDateToDate (cvtdd) | |
ConvertTicksToDate (ctd) | |
DumpRequestTable | |
DumpHistoryTable | |
DumpBuckets | |
GetWorkItems | |
DumpXmlDocument (dxd) | |
DumpCollection (dc) | |
Examining the GC history Other | |
----------------------------- ----------------------------- | |
HistInit FAQ | |
HistRoot | |
HistObj | |
HistObjFind | |
HistClear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SOSEX | |
bhi [filename] BuildHeapIndex - Builds an index file for heap objects. | |
bpsc (Deprecated. Use !mbp instead) | |
chi ClearHeapIndex - Frees all resources used by the heap index and removes it from memory. | |
dlk [-d] Displays deadlocks between SyncBlocks and/or ReaderWriterLocks | |
dumpgen <GenNum> [-free] [-stat] [-type <TYPE_NAME>] Dumps the contents of the specified generation | |
[-nostrings] | |
finq [GenNum] [-stat] Displays objects in the finalization queue | |
frq [-stat] Displays objects in the Freachable queue | |
gcgen <ObjectAddr> Displays the GC generation of the specified object | |
gch [HandleType]... Lists all GCHandles, optionally filtered by specified handle types | |
help [CommandName] Display this screen or details about the specified command | |
lhi [filename] LoadHeapIndex - load the heap index into memory. | |
mbc <SOSEX breakpoint ID | *> Clears the specified or all managed breakpoints | |
mbd <SOSEX bmgureakpoint ID | *> Disables the specified or all managed breakpoints | |
mbe <SOSEX breakpoint ID | *> Enables the specified or all managed breakpoints | |
mbl [SOSEX breakpoint ID] Prints the specified or all managed breakpoints | |
mbm <Type/MethodFilter> [ILOffset] [Options] Sets a managed breakpoint on methods matching the specified filter | |
mbp <SourceFile> <nLineNum> [ColNum] [Options] Sets a managed breakpoint at the specified source code location | |
mdso [Options] Dumps object references on the stack and in CPU registers in the current context | |
mdt [TypeName | VarName | MT] [ADDR] [Options] Displays the fields of an object or type, optionally recursively | |
mdv [nFrameNum] Displays arguments and locals for a managed frame | |
mfrag [-stat] [-mt:<MT>] Reports free blocks, the type of object following the free block, and fragmentation statistics | |
mframe [nFrameNum] Displays or sets the current managed frame for the !mdt and !mdv commands | |
mgu // TODO: Document | |
mk [FrameCount] [-l] [-p] [-a] Prints a stack trace of managed and unmanaged frames | |
mln [expression] Displays the type of managed data located at the specified address or the current instruction pointer | |
mlocks [-d] Lists all managed lock objects and CriticalSections and their owning threads | |
mroot <ObjectAddr> [-all] Displays GC roots for the specified object | |
mt (no parameters) Steps into the managed method at the current position | |
mu [address] [-s] [-il] [-n] Displays a disassembly around the current instruction with interleaved source, IL and asm code | |
muf [MD Address | Code Address] [-s] [-il] [-n] Displays a disassembly with interleaved source, IL and asm code | |
mwaits [-d] Lists all waiting threads and, if known, the locks they are waiting on | |
mx <Filter String> Displays managed type/field/method names matching the specified filter string | |
refs <ObjectAddr> [-target|-source] Displays all references from and to the specified object | |
rwlock [ObjectAddr | -d] Displays all RWLocks or, if provided a RWLock address, details of the specified lock | |
sosexhelp [CommandName] Display this screen or details about the specified command | |
strings [ModuleAddress] [Options] Search the managed heap or a module for strings matching the specified criteria | |
ListGcHandles - See gch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment