【无标题】蓝屏事件 139

复制代码
KERNEL_SECURITY_CHECK_FAILURE (139)
A kernel component has corrupted a critical data structure.  The corruption
could potentially allow a malicious user to gain control of this machine.
Arguments:
Arg1: 0000000000000004, The thread's stack pointer was outside the legal stack
	extents for the thread.
Arg2: fffff80227a744f0, Address of the trap frame for the exception that caused the BugCheck
Arg3: fffff80227a74448, Address of the exception record for the exception that caused the BugCheck
Arg4: 0000000000000000, Reserved
复制代码
rax=ffff87884e4f6000 rbx=0000000000000000 rcx=0000000000000004
rdx=ffff87884e4fc000 rsi=0000000000000000 rdi=0000000000000000
rip=fffff8022ac4f1df rsp=fffff80227a74680 rbp=fffff80227a746f0
 r8=ffff87884e4fc000  r9=fffff80227a74701 r10=ffffbd0b27ac7040
r11=ffffbd0b26d1df18 r12=0000000000000000 r13=0000000000000000
r14=0000000000000000 r15=0000000000000000
复制代码
FAULTING_SOURCE_CODE:  
    36:     push rdx
    37:     push rcx
    38:     push rax	
    39:      sub     rsp ,60h
>   40:     movdqa  xmmword ptr [rsp], xmm0
    41:     movdqa  xmmword ptr [rsp+10h], xmm1
    42:     movdqa  xmmword ptr [rsp+20h], xmm2
    43:     movdqa  xmmword ptr [rsp+30h], xmm3
    44:     movdqa  xmmword ptr [rsp+40h], xmm4
    45:     movdqa  xmmword ptr [rsp+50h], xmm5

movdqa导致的蓝屏 堆栈没有对齐

相关推荐
阿巴~阿巴~1 小时前
冒泡排序算法
c语言·开发语言·算法·排序算法
前路不黑暗@5 小时前
C语言:操作符详解(二)
c语言·开发语言·经验分享·笔记·学习·学习方法·visual studio
西工程小巴7 小时前
实践笔记-VSCode与IDE同步问题解决指南;程序总是进入中断服务程序。
c语言·算法·嵌入式
张人玉7 小时前
C#读取文件, IO 类属性及使用示例
microsoft·c#
Nuyoah11klay7 小时前
华清远见25072班C语言学习day11
c语言·指针·回调函数
许泽宇的技术分享8 小时前
Windows桌面自动化的革命性突破:深度解析Windows-MCP.Net Desktop模块的技术奥秘
windows·自动化·.net
Despacito0o9 小时前
C语言基础:变量与进制详解
java·c语言·开发语言
科大饭桶11 小时前
C++入门自学Day11-- String, Vector, List 复习
c语言·开发语言·数据结构·c++·容器
Felven11 小时前
C. Game of Mathletes
c语言·开发语言
Cx330❀13 小时前
【数据结构初阶】--排序(四):归并排序
c语言·开发语言·数据结构·算法·排序算法