2020-03-01 15:38:09 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-01 15:38:09 +01:00
|
|
|
*/
|
|
|
|
|
|
2022-05-16 14:42:49 +02:00
|
|
|
#include <Kernel/Arch/InterruptDisabler.h>
|
2021-08-06 10:45:34 +02:00
|
|
|
#include <Kernel/Memory/MemoryManager.h>
|
2021-09-06 17:22:36 +02:00
|
|
|
#include <Kernel/Memory/ScopedAddressSpaceSwitcher.h>
|
2020-03-01 15:38:09 +01:00
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-09-06 17:22:36 +02:00
|
|
|
ScopedAddressSpaceSwitcher::ScopedAddressSpaceSwitcher(Process& process)
|
2020-03-01 15:38:09 +01:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(Thread::current() != nullptr);
|
2020-03-01 15:38:09 +01:00
|
|
|
m_previous_cr3 = read_cr3();
|
2021-10-01 23:45:15 -07:00
|
|
|
Memory::MemoryManager::enter_process_address_space(process);
|
2020-03-01 15:38:09 +01:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 17:22:36 +02:00
|
|
|
ScopedAddressSpaceSwitcher::~ScopedAddressSpaceSwitcher()
|
2020-03-01 15:38:09 +01:00
|
|
|
{
|
|
|
|
|
InterruptDisabler disabler;
|
2021-06-26 19:57:16 +02:00
|
|
|
Thread::current()->regs().cr3 = m_previous_cr3;
|
2020-03-01 15:38:09 +01:00
|
|
|
write_cr3(m_previous_cr3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|