os: add working stack logic for macOS

This commit is contained in:
Michael Scire 2022-03-10 13:24:15 -08:00 committed by SciresM
parent a3865e721a
commit 7456a77ba9
2 changed files with 41 additions and 13 deletions

View file

@ -0,0 +1,33 @@
/*
* Copyright (c) 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/>.
*/
#include <stratosphere.hpp>
#include "diag_symbol_impl.hpp"
namespace ams::diag::impl {
uintptr_t GetSymbolNameImpl(char *dst, size_t dst_size, uintptr_t address) {
/* TODO: How should we do this on macOS? */
AMS_UNUSED(dst, dst_size, address);
return 0;
}
size_t GetSymbolSizeImpl(uintptr_t address) {
/* TODO: How should we do this on macOS? */
AMS_UNUSED(address);
return 0;
}
}

View file

@ -25,22 +25,17 @@ namespace ams::os::impl {
AMS_ASSERT(out_stack != nullptr); AMS_ASSERT(out_stack != nullptr);
AMS_ASSERT(out_size != nullptr); AMS_ASSERT(out_size != nullptr);
/* Get the current stack by pthread */ /* Get the current pthread. */
pthread_attr_t attr; const auto self = pthread_self();
pthread_attr_init(std::addressof(attr));
ON_SCOPE_EXIT { pthread_attr_destroy(std::addressof(attr)); };
const auto getattr_res = pthread_getattr_np(pthread_self(), std::addressof(attr)); /* Get the thread stack. */
AMS_ABORT_UNLESS(getattr_res == 0); uintptr_t stack_bottom = reinterpret_cast<uintptr_t>(pthread_get_stackaddr_np(self));
size_t stack_size = pthread_get_stacksize_np(self);
/* Get the thread satck. */ uintptr_t stack_top = stack_bottom - stack_size;
void *base = nullptr;
size_t size = 0;
const auto getstack_res = pthread_getattr_np(pthread_self(), std::addressof(attr));
AMS_ABORT_UNLESS(getstack_res == 0);
*out_stack = reinterpret_cast<uintptr_t>(base); *out_stack = stack_top;
*out_size = size; *out_size = stack_size;
} }
static void QueryMemoryInfo(os::MemoryInfo *out) { static void QueryMemoryInfo(os::MemoryInfo *out) {