mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
Kernel: Add ThreadRegisters::set_exec_state and use it in execve.cpp
Using this abstraction it is possible to compile this file for aarch64.
This commit is contained in:
parent
171a8ca478
commit
1fbf562e7e
Notes:
sideshowbarker
2024-07-17 01:04:59 +09:00
Author: https://github.com/FireFox317 Commit: https://github.com/SerenityOS/serenity/commit/1fbf562e7e Pull-request: https://github.com/SerenityOS/serenity/pull/17183 Reviewed-by: https://github.com/kleinesfilmroellchen ✅ Reviewed-by: https://github.com/nico ✅
3 changed files with 19 additions and 4 deletions
|
@ -33,6 +33,14 @@ struct ThreadRegisters {
|
|||
set_ip(entry_ip);
|
||||
x[0] = entry_data;
|
||||
}
|
||||
|
||||
void set_exec_state(FlatPtr entry_ip, FlatPtr userspace_sp, Memory::AddressSpace& space)
|
||||
{
|
||||
(void)entry_ip;
|
||||
(void)userspace_sp;
|
||||
(void)space;
|
||||
TODO_AARCH64();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -79,6 +79,14 @@ struct ThreadRegisters {
|
|||
set_ip(entry_ip);
|
||||
rdi = entry_data; // entry function argument is expected to be in regs.rdi
|
||||
}
|
||||
|
||||
void set_exec_state(FlatPtr entry_ip, FlatPtr userspace_sp, Memory::AddressSpace& space)
|
||||
{
|
||||
cs = GDT_SELECTOR_CODE3 | 3;
|
||||
rip = entry_ip;
|
||||
rsp = userspace_sp;
|
||||
cr3 = space.page_directory().cr3();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -685,10 +685,9 @@ ErrorOr<void> Process::do_exec(NonnullLockRefPtr<OpenFileDescription> main_progr
|
|||
new_main_thread->reset_fpu_state();
|
||||
|
||||
auto& regs = new_main_thread->m_regs;
|
||||
regs.cs = GDT_SELECTOR_CODE3 | 3;
|
||||
regs.rip = load_result.entry_eip;
|
||||
regs.rsp = new_userspace_sp;
|
||||
regs.cr3 = address_space().with([](auto& space) { return space->page_directory().cr3(); });
|
||||
address_space().with([&](auto& space) {
|
||||
regs.set_exec_state(load_result.entry_eip, new_userspace_sp, *space);
|
||||
});
|
||||
|
||||
{
|
||||
TemporaryChange profiling_disabler(m_profiling, was_profiling);
|
||||
|
|
Loading…
Add table
Reference in a new issue