diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-23 20:42:32 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-23 20:56:54 +0100 |
commit | 5d180d1f996ead27f9c5cb3db7f91e293de34d9d (patch) | |
tree | e881854dac5d749518562970d6194a0ef65736ec /Kernel/VM/PageDirectory.cpp | |
parent | b33a6a443e700cd80325d312f21c985b0687bb97 (diff) | |
download | serenity-5d180d1f996ead27f9c5cb3db7f91e293de34d9d.zip |
Everywhere: Rename ASSERT => VERIFY
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED)
Since all of these checks are done in release builds as well,
let's rename them to VERIFY to prevent confusion, as everyone is
used to assertions being compiled out in release.
We can introduce a new ASSERT macro that is specifically for debug
checks, but I'm doing this wholesale conversion first since we've
accumulated thousands of these already, and it's not immediately
obvious which ones are suitable for ASSERT.
Diffstat (limited to 'Kernel/VM/PageDirectory.cpp')
-rw-r--r-- | Kernel/VM/PageDirectory.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Kernel/VM/PageDirectory.cpp b/Kernel/VM/PageDirectory.cpp index 5bc207c761..83d59ddb58 100644 --- a/Kernel/VM/PageDirectory.cpp +++ b/Kernel/VM/PageDirectory.cpp @@ -40,7 +40,7 @@ static AK::Singleton<HashMap<u32, PageDirectory*>> s_cr3_map; static HashMap<u32, PageDirectory*>& cr3_map() { - ASSERT_INTERRUPTS_DISABLED(); + VERIFY_INTERRUPTS_DISABLED(); return *s_cr3_map; } @@ -125,10 +125,10 @@ PageDirectory::PageDirectory(const RangeAllocator* parent_range_allocator) // when writing out the PDPT pointer to CR3. // The reason we're not checking the page directory's physical address directly is because // we're checking for sign extension when putting it into a PDPTE. See issue #4584. - ASSERT((table.raw[0] & ~pdpte_bit_flags) <= max_physical_address); - ASSERT((table.raw[1] & ~pdpte_bit_flags) <= max_physical_address); - ASSERT((table.raw[2] & ~pdpte_bit_flags) <= max_physical_address); - ASSERT((table.raw[3] & ~pdpte_bit_flags) <= max_physical_address); + VERIFY((table.raw[0] & ~pdpte_bit_flags) <= max_physical_address); + VERIFY((table.raw[1] & ~pdpte_bit_flags) <= max_physical_address); + VERIFY((table.raw[2] & ~pdpte_bit_flags) <= max_physical_address); + VERIFY((table.raw[3] & ~pdpte_bit_flags) <= max_physical_address); MM.unquickmap_page(); } |