2013-12-01 20:42:32 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include "util/exception.h"
|
|
|
|
|
|
|
|
#define LEAN_MIN_STACK_SPACE 128*1024 // 128 Kb
|
|
|
|
|
|
|
|
namespace lean {
|
2013-12-04 16:26:50 +00:00
|
|
|
void throw_get_stack_size_failed() {
|
2013-12-02 15:56:53 +00:00
|
|
|
throw exception("failed to retrieve thread stack size");
|
|
|
|
}
|
|
|
|
|
2013-12-01 20:42:32 +00:00
|
|
|
#ifdef LEAN_WINDOWS
|
2013-12-04 19:32:30 +00:00
|
|
|
size_t get_stack_size(int ) {
|
2013-12-02 05:03:57 +00:00
|
|
|
return LEAN_WIN_STACK_SIZE;
|
2013-12-01 20:42:32 +00:00
|
|
|
}
|
2013-12-02 04:44:58 +00:00
|
|
|
#elif defined (__APPLE__)
|
2013-12-04 16:56:41 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
size_t get_stack_size(int main) {
|
|
|
|
if (main) {
|
|
|
|
// Retrieve stack size of the main thread.
|
|
|
|
struct rlimit curr;
|
|
|
|
if (getrlimit(RLIMIT_STACK, &curr) != 0) {
|
|
|
|
throw_get_stack_size_failed();
|
|
|
|
}
|
|
|
|
return curr.rlim_max;
|
|
|
|
} else {
|
|
|
|
// This branch retrieves the default thread size for pthread threads.
|
|
|
|
// This is *not* the stack size of the main thread.
|
|
|
|
pthread_attr_t attr;
|
|
|
|
memset (&attr, 0, sizeof(attr));
|
|
|
|
pthread_attr_init(&attr);
|
|
|
|
size_t result;
|
|
|
|
if (pthread_attr_getstacksize(&attr, &result) != 0) {
|
|
|
|
throw_get_stack_size_failed();
|
|
|
|
}
|
|
|
|
return result;
|
2013-12-02 03:18:01 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-01 20:42:32 +00:00
|
|
|
#else
|
2013-12-04 16:56:41 +00:00
|
|
|
size_t get_stack_size(int ) {
|
2013-12-01 20:42:32 +00:00
|
|
|
pthread_attr_t attr;
|
|
|
|
memset (&attr, 0, sizeof(attr));
|
2013-12-02 15:56:53 +00:00
|
|
|
if (pthread_getattr_np(pthread_self(), &attr) != 0) {
|
|
|
|
throw_get_stack_size_failed();
|
|
|
|
}
|
2013-12-01 20:42:32 +00:00
|
|
|
void * ptr;
|
|
|
|
size_t result;
|
2013-12-02 15:56:53 +00:00
|
|
|
if (pthread_attr_getstack (&attr, &ptr, &result) != 0) {
|
|
|
|
throw_get_stack_size_failed();
|
|
|
|
}
|
|
|
|
if (pthread_attr_destroy(&attr) != 0) {
|
|
|
|
throw_get_stack_size_failed();
|
|
|
|
}
|
2013-12-01 20:42:32 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static thread_local size_t g_stack_size;
|
|
|
|
static thread_local size_t g_stack_base;
|
|
|
|
|
2013-12-04 16:56:41 +00:00
|
|
|
void save_stack_info(bool main) {
|
|
|
|
g_stack_size = get_stack_size(main);
|
2013-12-01 20:42:32 +00:00
|
|
|
char x;
|
|
|
|
g_stack_base = reinterpret_cast<size_t>(&x);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t get_used_stack_size() {
|
|
|
|
char y;
|
|
|
|
size_t curr_stack = reinterpret_cast<size_t>(&y);
|
|
|
|
return g_stack_base - curr_stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t get_available_stack_size() {
|
|
|
|
size_t sz = get_used_stack_size();
|
|
|
|
if (sz > g_stack_size)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return g_stack_size - sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
void check_stack() {
|
|
|
|
if (get_used_stack_size() + LEAN_MIN_STACK_SPACE > g_stack_size)
|
|
|
|
throw stack_space_exception();
|
|
|
|
}
|
|
|
|
}
|