/* * Copyright (c) 2018-2020 Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include #include namespace ams::kern { class KThread; } namespace ams::kern::arch::arm64 { class KThreadContext { public: static constexpr size_t NumCalleeSavedRegisters = (29 - 19) + 1; static constexpr size_t NumFpuRegisters = 32; private: union { u64 registers[NumCalleeSavedRegisters]; struct { u64 x19; u64 x20; u64 x21; u64 x22; u64 x23; u64 x24; u64 x25; u64 x26; u64 x27; u64 x28; u64 x29; }; } callee_saved; u64 lr; u64 sp; u64 cpacr; u64 fpcr; u64 fpsr; alignas(0x10) u128 fpu_registers[NumFpuRegisters]; bool locked; private: static void RestoreFpuRegisters64(const KThreadContext &); static void RestoreFpuRegisters32(const KThreadContext &); public: constexpr explicit KThreadContext() : callee_saved(), lr(), sp(), cpacr(), fpcr(), fpsr(), fpu_registers(), locked() { /* ... */ } Result Initialize(KVirtualAddress u_pc, KVirtualAddress k_sp, KVirtualAddress u_sp, uintptr_t arg, bool is_user, bool is_64_bit, bool is_main); Result Finalize(); void SetArguments(uintptr_t arg0, uintptr_t arg1); static void FpuContextSwitchHandler(KThread *thread); /* TODO: More methods (especially FPU management) */ }; }