【无标题】蓝屏事件 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导致的蓝屏 堆栈没有对齐

相关推荐
开开心心就好36 分钟前
微软官方出品:免费数据恢复工具推荐
网络·笔记·microsoft·pdf·word·音视频·symfony
散峰而望2 小时前
基本魔法语言函数(一)(C语言)
c语言·开发语言·编辑器·github
蒙奇D索大3 小时前
【算法】递归算法实战:汉诺塔问题详解与代码实现
c语言·考研·算法·面试·改行学it
Yue丶越4 小时前
【C语言】深入理解指针(二)
c语言·开发语言·数据结构·算法·排序算法
奔跑吧邓邓子6 小时前
【C语言实战(77)】STM32实战:解锁传感器数据采集的C语言奥秘
c语言·stm32·开发实战·传感器数据采集
小刘爱玩单片机6 小时前
【stm32简单外设篇】- 土壤湿度传感器
c语言·stm32·单片机·嵌入式硬件
alphaTao6 小时前
LeetCode 每日一题 2025/11/3-2025/11/9
windows·leetcode
小龙报7 小时前
算法通关指南:数据结构和算法篇 --- 队列相关算法题》--- 1. 【模板】队列,2. 机器翻译
c语言·开发语言·数据结构·c++·算法·学习方法·visual studio
晨非辰7 小时前
【数据结构初阶】--从排序算法原理分析到代码实现操作,参透插入排序的奥秘!
c语言·开发语言·数据结构·c++·算法·面试·排序算法
2301_7951672011 小时前
玩转Rust高级应用 如何避免对空指针做“解引用”操作,在C/C++ 里面就是未定义行为
c语言·c++·rust