Debug tool 学习笔记
GDB调试命令大全
gdb --pid 1235
gdb core.1234
where (bt) //where the segmentation fault occurred
f 1 //切换栈帧
info locals //打印内存
WinDBG调试技巧 . ybao@microsoft.com baoyunduan
.ecxr command displays the context record
kb display call stack with first 3 params
.hh --help
.sympath+ srv*c:\symsrv*http://msdl.microsoft.com/download/symbols
.sympath+ C:\training\Labfiles
.srcpath C:\training\Labfiles\ErrorCheck\FileCopy
srv*c:\symsrv*http://msdl.microsoft.com/download/symbols;C:\training\Labfiles
./realod /f
lm -----check the symbol file
Noninvasive -----only view, can't modify memory data
.detach
command line: c:/windbg /?
dash y == -y
slash ? == /?
process -p PID
service -pn name/global
k --- call stack
kn ---- show frame number
kf ---- show memory ocupy
~*k
~4k ---- show thread 4
~ --- show all thread
~S5 --- jump to thread 5
.frame 2 -- jump to frame
? --- convert hex to Decimal
.formats -- show all formats of a number
g --- continure run debugger
r --- list all the registers
rm ff
r@eax --- specific a registers
syspath
ft
tasklist svc
.hh ---help
.hh reload
.reload --- reload symboal
.reload /f
!chain
!ext analyze
c:/debuggers/winext
.load usbkd
unload usbkd
.kframes
logfile
logopen d:\log.txt
logclose
logappend d:\log.txt
d ---- display memory
dd* point ---- display data in the address store in the point
dv ----display local variable
dt ----display type
dt ps
dt ps -r1
e ---- edit data in memory
!grep
n 10
.formats -118
x---- list the function name/global variable
x notepad!*
x notepad!*file
------------------------mex debugging extension for windebug
c:/debugers/winext
!mex.help
.load mex
.unload mexextpath
!us
bl ----list break point
bp ----set break point
bm ----set multiple point
bm notepad!*file
bd ----disable break point
bc ----clear specific break point
|
||
vertarget ----Shows target computer version
? Evaluate expression
?? Evaluate an expression according to c++ expression rules
.dump
/f complete dump
/ma mini dump
.reload
/f
/u
lm ---- list all dlls, can be used to check if the symbol file was loaded
lmvm combase
.effmach x86 | amd64
t
p
pc
g
gu
gu; echo "hello"; gu; gu
u ---- show assembly code
u L30
uf ----The uf command displays an assembly translation of the specified function in memory
----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
eventvwr
!analyze -v
!dh badapp
dps +image base address + offset address
!error errorcode
!error 3
!gle
----GetLastError() in code
!teb
.unload ext ---- Load Extension DLL
.load ext
BOOL SafeDiv(INT32 dividend, INT32 divisor, INT32 *pResult)
{
__try
{
*pResult = dividend / divisor;
}
__except(GetExceptionCode() == EXCEPTION_INT_DIVIDE_BY_ZERO ?
EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH)
{
return FALSE;
}
return TRUE;
}
sx ---set exception
prodump.exe -----create dump file when some rules was trigger
-ma --very important
-i
-e
-c
-cl
-h
-n
---- show dump info
!peb -- !peb extension displays a formatted view of the information in the process environment block (PEB).
!teb -- !teb extension displays a formatted view of the information in the thread environment block (TEB).
!runway ---- show run time of thread
!runway f
stack:
1M
two pages
c++函数调用方法
32 bit 4种不同的调用方法
64bit 只有一种调用方法
STDCALL 从右往左压栈,适用于有固定参数个数,由调用函数来处理
CDECL
THISCALL
FASTCALL
----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
E:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin
dumpbin
editbin /LARGEADORESSAWARE[:NO] 可在不重新编译的情况下,将用户可用内存空间大于2G
或者在VS--链接--系统--启用大地址中修改选项,然后重新编译
You can use /userva with /3Gb to further tune user VA space
!address -summary
Performance Monitor -- 1. 打开:Administrative Tools->Performance,或在运行中输入"perfmon"
C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\
1. Windows Performance recorder
WPRUI.exe
2. Windows Performance Analyzer
wpa.exe
C:\Program Files (x86)\Windows Resource Kits\Tools\consume 可以用来模拟系统资源占用比较严重的情况,我被弄死机了,差点笔记也没有了
consume -cpu-time
!address summary
!address analyze
!heap -s
!heap /?
!help -stat -h HANDLE
!heap -p -a ADDR
gflags -i heap_overrun_demo.exe +hpa
--------------------------------------------------------------------------------------------------------------------
check deadlock ----step
!locks, !cs, ~*k
children process -- command line
Semaphore -- multiple owner
CS/Mute -- One owner
WaitForMultipleObject() ---- 等多个条件齐了才能开始
!handle f
TLS 线程本地存储 ----- http://blog.csdn.net/xiaoliangsky/article/details/43158713
用ProcDump 来取dump是比较准确的
.reload /i C:\Users\admin\Downloads\wme4train_x64\mediaengine\maps\x64\Release
.reload /i wseclient.dll
.effmach x86
.load wow64exts
!analyze -v
!wow64exts k
Debug tool 学习笔记的更多相关文章
- ansible debug模块学习笔记
- name: Print debug infomation eg hosts: test2 gather_facts: F tasks: - name: Command run line shell ...
- Spring MVC 学习笔记2 - 利用Spring Tool Suite创建一个web 项目
Spring MVC 学习笔记2 - 利用Spring Tool Suite创建一个web 项目 Spring Tool Suite 是一个带有全套的Spring相关支持功能的Eclipse插件包. ...
- 【转】 C#学习笔记14——Trace、Debug和TraceSource的使用以及日志设计
[转] C#学习笔记14——Trace.Debug和TraceSource的使用以及日志设计 Trace.Debug和TraceSource的使用以及日志设计 .NET Framework 命名空 ...
- 学习笔记之Coding / Design / Tool
CODING 学习笔记之代码大全2 - 浩然119 - 博客园 https://www.cnblogs.com/pegasus923/p/5301123.html 学习笔记之编程珠玑 Programm ...
- Xcode 8 的 Debug 新特性 —- WWDC 2016 Session 410 & 412 学习笔记
Contents OverView Static Analyzer Localizability Instance Cleanup Nullablility Runtime Issue View De ...
- DirectX 总结和DirectX 9.0 学习笔记
转自:http://www.cnblogs.com/graphics/archive/2009/11/25/1583682.html DirectX 总结 DDS DirectXDraw Surfac ...
- DBus学习笔记
摘要:DBus作为一个轻量级的IPC被越来越多的平台接受,在MeeGo中DBus也是主要的进程间通信方式,这个笔记将从基本概念开始记录笔者学习DBus的过程 [1] DBus学习笔记一:DBus学习的 ...
- Oracle RAC学习笔记02-RAC维护工具集
Oracle RAC学习笔记02-RAC维护工具集 RAC维护工具集 1.节点层 2.网络层 3.集群层 4.应用层 本文实验环境: 10.2.0.5 Clusterware + RAC 11.2.0 ...
- Hibernate 马士兵 学习笔记 (转)
目录(?)[+] 第2课 Hibernate UML图 第3课 风格 第4课 资源 第5课 环境准备 第6课 第一个示例Hibernate HelloWorld 第7课 建立Annotation版本的 ...
随机推荐
- 基于bootstrsp的jquery富文本编辑器的手冊说明
重点:当在页面插入文本编辑器后.无法用js/jq的方式去将某些值写入到文本编辑器.如:$("textarea").val("111");$("text ...
- myeclipse svn安装
安装subclipse, SVN 插件 1.从官网下载site-1.6.9.zip文件,网址是:subclipse.tigris.org, 2.从中解压出features与plugins文件夹,复制到 ...
- Sequence contains no matching element
1.linq查询Single方法出错 var c = DbCache.UserRoles.Single(ur => ur.RoleId == roleId); 2.使用方法System.Linq ...
- 摘录 LDAP
1.LDAP就是 light DAP, 轻量级目录访问协议 LDAP是轻量目录访问协议(Lightweight Directory Access Protocol)的缩写 LDAP标准 ...
- 计算机网络11--OSI參考模型
本页内容 1.OSI參考模型简单介绍 2.OSI參考模型通信过程 3.OSI參考模型的数据封装 4.数据封装的意义 5.物理层 6.数据链路层 7.网络层 8.传输层 9.会话层 10.表示层 11. ...
- 获取、增加、修改、删除sqlserver字段描述及快速查看表字段与描述
先看添加与删除字段描述 EXEC sys.sp_addextendedproperty @name = N'MS_Description', --添加Type字段说明 @value = N'屏蔽类型对 ...
- maven依赖json-lib失败
© 版权声明:本文为博主原创文章,转载请注明出处 项目中需要使用到JSONArray,因此到将json-lib的依赖加入pom.xml中,但是一直下载失败 <dependency> < ...
- cocos2dx3.0戳青蛙游戏(打地鼠)
1戳青蛙项目描写叙述 1.1功能描写叙述 实现类似打地鼠游戏.青蛙随机出如今屏幕左边5*3的格子中,并会向屏幕右边移动,在青蛙逃离之前,手指点击实现戳灭青蛙的效果.随着分数添加,青蛙越来越多,当青蛙逃 ...
- iOS开发之提交App中断出现:Cannot proceed with delivery: an existing transporter instance is currently uploading this package
iOS开发之提交App中断出现:Cannot proceed with delivery: an existing transporter instance is currently uploadin ...
- Android源码下载之----内核需要另外下载
用repo sync下载的android源码默认不包含kernel目录,需要自己另外下载. 下载命令:$ git clone https://android.googlesource.com/kern ...