Symbol: x86_unexpected_exception
headers/private/kernel/arch/x86/arch_cpu.h
695
void x86_unexpected_exception(iframe* frame);
src/system/kernel/arch/x86/32/descriptors.cpp
585
table[0] = x86_unexpected_exception; // Divide Error Exception (#DE)
src/system/kernel/arch/x86/32/descriptors.cpp
589
table[4] = x86_unexpected_exception; // Overflow Exception (#OF)
src/system/kernel/arch/x86/32/descriptors.cpp
590
table[5] = x86_unexpected_exception; // BOUND Range Exceeded Exception (#BR)
src/system/kernel/arch/x86/32/descriptors.cpp
591
table[6] = x86_unexpected_exception; // Invalid Opcode Exception (#UD)
src/system/kernel/arch/x86/32/descriptors.cpp
598
table[13] = x86_unexpected_exception; // General Protection Exception (#GP)
src/system/kernel/arch/x86/32/descriptors.cpp
600
table[16] = x86_unexpected_exception; // x87 FPU Floating-Point Error (#MF)
src/system/kernel/arch/x86/32/descriptors.cpp
601
table[17] = x86_unexpected_exception; // Alignment Check Exception (#AC)
src/system/kernel/arch/x86/32/descriptors.cpp
603
table[19] = x86_unexpected_exception; // SIMD Floating-Point Exception (#XF)
src/system/kernel/arch/x86/64/descriptors.cpp
364
x86_unexpected_exception(frame);
src/system/kernel/arch/x86/64/descriptors.cpp
437
table[0] = x86_unexpected_exception; // Divide Error Exception (#DE)
src/system/kernel/arch/x86/64/descriptors.cpp
441
table[4] = x86_unexpected_exception; // Overflow Exception (#OF)
src/system/kernel/arch/x86/64/descriptors.cpp
442
table[5] = x86_unexpected_exception; // BOUND Range Exceeded Exception (#BR)
src/system/kernel/arch/x86/64/descriptors.cpp
443
table[6] = x86_unexpected_exception; // Invalid Opcode Exception (#UD)
src/system/kernel/arch/x86/64/descriptors.cpp
452
table[16] = x86_unexpected_exception; // x87 FPU Floating-Point Error (#MF)
src/system/kernel/arch/x86/64/descriptors.cpp
453
table[17] = x86_unexpected_exception; // Alignment Check Exception (#AC)
src/system/kernel/arch/x86/64/descriptors.cpp
455
table[19] = x86_unexpected_exception; // SIMD Floating-Point Exception (#XF)