news 2026/3/26 21:47:21

HalpClockInterrupt函数调试指南之每次都在call hal!HalBeginSystemInterrupt下断点和开启hal!HalBeginSystemInterrupt断点非常重要

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
HalpClockInterrupt函数调试指南之每次都在call hal!HalBeginSystemInterrupt下断点和开启hal!HalBeginSystemInterrupt断点非常重要

hal!HalpClockInterrupt函数调试指南之每次都在call hal!HalBeginSystemInterrupt下断点和开启hal!HalBeginSystemInterrupt断点

原则是用人家的时候在开启它,进入了函数后立马关闭,否则被优先级为0n29的抢占。

第一次调试记录:

0: kd> g
Breakpoint 20 hit
eax=00000041 ebx=f78cdff8 ecx=8999e620 edx=00001002 esi=00000000 edi=804edc60
eip=804ec714 esp=f78cdf5c ebp=f78cdf6c iopl=0 nv up di pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000046
hal!HalpClockInterrupt:
804ec714 54 push esp
0: kd> g
Breakpoint 26 hit
eax=00000041 ebx=f78cdf6c ecx=8999e620 edx=00001002 esi=00000000 edi=80b00720
eip=804ec7d0 esp=f78cdee0 ebp=f78cdef4 iopl=0 nv up di ng nz ac po nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000092
hal!HalpClockInterrupt+0xbc:
804ec7d0 e85f210000 call hal!HalBeginSystemInterrupt (804ee934)
0: kd> t
Breakpoint 25 hit
eax=00000041 ebx=f78cdf6c ecx=8999e620 edx=00001002 esi=00000000 edi=80b00720
eip=804ee934 esp=f78cdedc ebp=f78cdef4 iopl=0 nv up di ng nz ac po nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000092
hal!HalBeginSystemInterrupt:
804ee934 33c0 xor eax,eax
0: kd> g
Breakpoint 6 hit
eax=0002625a ebx=00000000 ecx=00000100 edx=00001002 esi=00000000 edi=80b00720
eip=80affa28 esp=f78cdeec ebp=f78cdef4 iopl=0 nv up ei pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000246
nt!KeUpdateSystemTime:
80affa28 64803de405000000 cmp byte ptr fs:[5E4h],0 fs:0030:000005e4=01
0: kd> !irql
Debugger saved IRQL for processor 0x0 -- 28 (CLOCK2_LEVEL)
0: kd> be 21
0: kd> g
Breakpoint 21 hit
eax=0002625a ebx=00000000 ecx=00000100 edx=00001002 esi=80affb51 edi=80b00720
eip=804ee8d0 esp=f78cdee8 ebp=f78cdef4 iopl=0 nv up di pl nz na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000006
hal!HalEndSystemInterrupt:
804ee8d0 33c9 xor ecx,ecx
0: kd> bd 21
0: kd> kc 3
#
00 hal!HalEndSystemInterrupt
01 nt!KeUpdateSystemTime
02 nt!KiDispatchInterrupt
0: kd> g
Breakpoint 23 hit
eax=0002625a ebx=00000000 ecx=00000041 edx=00000041 esi=80affb51 edi=80b00720
eip=80affb5d esp=f78cdef4 ebp=f78cdef4 iopl=0 nv up di pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000046
nt!KeUpdateSystemTime+0x135:
80affb5d e926cbffff jmp nt!KiExceptionExit (80afc688)
0: kd> !irql
Debugger saved IRQL for processor 0x0 -- 2 (DISPATCH_LEVEL)

第二次调试记录:

0: kd> g
Breakpoint 20 hit
eax=00000041 ebx=f78cdff8 ecx=8999e620 edx=00001002 esi=00000000 edi=804edc60
eip=804ec714 esp=f78cdf5c ebp=f78cdf6c iopl=0 nv up di pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000046
hal!HalpClockInterrupt:
804ec714 54 push esp
0: kd> bp hal!HalpClockInterrupt+0xbc
breakpoint 26 redefined
0: kd> g
Breakpoint 26 hit
eax=00000041 ebx=f78cdf6c ecx=8999e620 edx=00001002 esi=00000000 edi=80b00720
eip=804ec7d0 esp=f78cdee0 ebp=f78cdef4 iopl=0 nv up di ng nz ac po nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000092
hal!HalpClockInterrupt+0xbc:
804ec7d0 e85f210000 call hal!HalBeginSystemInterrupt (804ee934)
0: kd> be 25
0: kd> t
Breakpoint 25 hit
eax=00000041 ebx=f78cdf6c ecx=8999e620 edx=00001002 esi=00000000 edi=80b00720
eip=804ee934 esp=f78cdedc ebp=f78cdef4 iopl=0 nv up di ng nz ac po nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000092
hal!HalBeginSystemInterrupt:
804ee934 33c0 xor eax,eax
0: kd> kc 4
#
00 hal!HalBeginSystemInterrupt
01 hal!HalpClockInterrupt

02 nt!KiDispatchInterrupt
03 hal!HalpDispatchInterrupt
0: kd> !Irql
Debugger saved IRQL for processor 0x0 -- 2 (DISPATCH_LEVEL)
0: kd> g
Breakpoint 6 hit
eax=0002625a ebx=00000000 ecx=00000100 edx=00001002 esi=00000000 edi=80b00720
eip=80affa28 esp=f78cdeec ebp=f78cdef4 iopl=0 nv up ei pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000246
nt!KeUpdateSystemTime:
80affa28 64803de405000000 cmp byte ptr fs:[5E4h],0 fs:0030:000005e4=01
0: kd> !irql
Debugger saved IRQL for processor 0x0 -- 28 (CLOCK2_LEVEL)
0: kd> kc 3
#
00 nt!KeUpdateSystemTime
01 nt!KiDispatchInterrupt
02 hal!HalpDispatchInterrupt
0: kd> bd 25
0: kd> be 21
0: kd> g
Breakpoint 21 hit
eax=0002625a ebx=00000000 ecx=00000100 edx=00001002 esi=80affb51 edi=80b00720
eip=804ee8d0 esp=f78cdee8 ebp=f78cdef4 iopl=0 nv up di pl nz na po nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000002
hal!HalEndSystemInterrupt:
804ee8d0 33c9 xor ecx,ecx
0: kd> kc 4
#
00 hal!HalEndSystemInterrupt
01 nt!KeUpdateSystemTime

02 nt!KiDispatchInterrupt
03 hal!HalpDispatchInterrupt
0: kd> bd 21
0: kd> !Irql
Debugger saved IRQL for processor 0x0 -- 28 (CLOCK2_LEVEL)
0: kd> g
Breakpoint 23 hit
eax=0002625a ebx=00000000 ecx=00000041 edx=00000041 esi=80affb51 edi=80b00720
eip=80affb5d esp=f78cdef4 ebp=f78cdef4 iopl=0 nv up di pl zr na pe nc
cs=0008 ss=0010 ds=0023 es=0023 fs=0030 gs=0000 efl=00000046
nt!KeUpdateSystemTime+0x135:
80affb5d e926cbffff jmp nt!KiExceptionExit (80afc688)
0: kd> kc 4
#
00 nt!KeUpdateSystemTime
01 nt!KiDispatchInterrupt
02 hal!HalpDispatchInterrupt
03 hal!KfLowerIrql
0: kd> !irql
Debugger saved IRQL for processor 0x0 -- 2 (DISPATCH_LEVEL)

第三部分:hal!HalpClockInterrupt调试指南之调试断点收集

6 e Disable Clear 80affa28 0001 (0001) nt!KeUpdateSystemTime

20 e Disable Clear 804ec714 0001 (0001) hal!HalpClockInterrupt

21 d Enable Clear 804ee8d0 0001 (0001) hal!HalEndSystemInterrupt

23 e Disable Clear 80affb5d 0001 (0001) nt!KeUpdateSystemTime+0x135

25 d Enable Clear 804ee934 0001 (0001) hal!HalBeginSystemInterrupt
26 e Disable Clear 804ec7d0 0001 (0001) hal!HalpClockInterrupt+0xbc

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/3/23 17:53:59

紧急修复农业预测模型漏洞:R语言变量选择三大陷阱你避开了吗?

第一章:农业产量预测中R语言变量选择的核心挑战在农业产量预测建模过程中,变量选择是决定模型性能的关键环节。R语言因其强大的统计分析能力和丰富的扩展包(如caret、glmnet、randomForest)被广泛应用于该领域,但在实际…

作者头像 李华
网站建设 2026/3/26 20:04:21

为什么你的字幕搜索总延迟?,Dify缓存过期策略的3大误配置

第一章:视频字幕检索的 Dify 缓存周期在基于 Dify 构建的智能视频处理系统中,字幕检索功能依赖于高效的缓存机制以提升响应速度和降低重复计算开销。缓存周期的设计直接影响系统的实时性与资源利用率。缓存策略的核心参数 Dify 平台通过配置缓存生存时间…

作者头像 李华
网站建设 2026/3/25 11:41:54

适配体:食品安全检测中的“分子侦察兵”,如何精准揪出隐形威胁?

当我们谈论食品安全时,有一个看不见的战场正备受关注——真菌毒素污染。这些由霉菌产生的有害物质,可能悄悄存在于谷物、坚果等日常食品中。传统检测方法虽精准,但过程繁琐、成本高,难以实现快速筛查。今天,我们要认识…

作者头像 李华
网站建设 2026/3/15 1:07:21

用idea打开第3方Jar包文件,并查看其源代码

问题 遇到了需要用idea打开jar包文件,查看源代码的场景 怎么处理 在原来的 idea打开的java项目中的目录中,添加上 该jar包,然后 重启idea就可以看到 jar包中反编译的内容了 类似下面的效果其他方法 在 IntelliJ IDEA 中查看网上下载的 JAR 包…

作者头像 李华
网站建设 2026/3/24 17:03:23

探索英飞凌电动汽车电机控制器参考方案

电机控制器,英飞凌电动汽车参考方案,包含原理图(pdf版),和代码,基于英飞凌TC27xC平台最近在研究电动汽车相关技术,发现英飞凌基于 TC27xC 平台的电机控制器参考方案真的很有意思,今天就来和大家分享一下。 …

作者头像 李华