2020-02-06 09:05:35 +00:00
|
|
|
/*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesosphere/kern_common.hpp>
|
2020-02-15 03:58:57 +00:00
|
|
|
#include <mesosphere/kern_select_system_control.hpp>
|
2020-02-06 09:05:35 +00:00
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
|
|
|
class KTargetSystem {
|
|
|
|
private:
|
|
|
|
friend class KSystemControl;
|
|
|
|
private:
|
|
|
|
static inline bool s_is_debug_mode;
|
|
|
|
static inline bool s_enable_debug_logging;
|
|
|
|
static inline bool s_enable_user_exception_handlers;
|
|
|
|
static inline bool s_enable_debug_memory_fill;
|
|
|
|
static inline bool s_enable_user_pmu_access;
|
|
|
|
static inline bool s_enable_kernel_debugging;
|
|
|
|
private:
|
|
|
|
static ALWAYS_INLINE void SetIsDebugMode(bool en) { s_is_debug_mode = en; }
|
|
|
|
static ALWAYS_INLINE void EnableDebugLogging(bool en) { s_enable_debug_logging = en; }
|
|
|
|
static ALWAYS_INLINE void EnableUserExceptionHandlers(bool en) { s_enable_user_exception_handlers = en; }
|
|
|
|
static ALWAYS_INLINE void EnableDebugMemoryFill(bool en) { s_enable_debug_memory_fill = en; }
|
|
|
|
static ALWAYS_INLINE void EnableUserPmuAccess(bool en) { s_enable_user_pmu_access = en; }
|
|
|
|
static ALWAYS_INLINE void EnableKernelDebugging(bool en) { s_enable_kernel_debugging = en; }
|
|
|
|
public:
|
|
|
|
static ALWAYS_INLINE bool IsDebugMode() { return s_is_debug_mode; }
|
|
|
|
static ALWAYS_INLINE bool IsDebugLoggingEnabled() { return s_enable_debug_logging; }
|
|
|
|
static ALWAYS_INLINE bool IsUserExceptionHandlersEnabled() { return s_enable_user_exception_handlers; }
|
|
|
|
static ALWAYS_INLINE bool IsDebugMemoryFillEnabled() { return s_enable_debug_memory_fill; }
|
|
|
|
static ALWAYS_INLINE bool IsUserPmuAccessEnabled() { return s_enable_user_pmu_access; }
|
|
|
|
static ALWAYS_INLINE bool IsKernelDebuggingEnabled() { return s_enable_kernel_debugging; }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|