/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func) { asm volatile("cli"); critical_dmesgln("ASSERTION FAILED: {}", msg); critical_dmesgln("{}:{} in {}", file, line, func); abort(); } [[noreturn]] void abort() { // Switch back to the current process's page tables if there are any. // Otherwise stack walking will be a disaster. auto process = Process::current(); if (process) MM.enter_process_paging_scope(*process); PANIC("Aborted"); } [[noreturn]] void _abort() { asm volatile("ud2"); __builtin_unreachable(); }