2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gbx_stack.c
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that 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, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#define __GBX_STACK_C
|
|
|
|
|
2009-08-01 17:13:50 +02:00
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#include "gb_common.h"
|
|
|
|
#include "gb_error.h"
|
|
|
|
#include "gb_alloc.h"
|
|
|
|
#include "gbx_exec.h"
|
|
|
|
#include "gb_error.h"
|
|
|
|
#include "gbx_string.h"
|
|
|
|
|
|
|
|
#include "gbx_stack.h"
|
|
|
|
|
2009-05-27 20:42:48 +02:00
|
|
|
// The stack grows by 4K slot (8K on 64 bits CPU)
|
|
|
|
#define STACK_INC 256 * sizeof(VALUE)
|
|
|
|
|
|
|
|
size_t STACK_size = STACK_INC;
|
2008-01-17 22:39:26 +01:00
|
|
|
char *STACK_base = NULL;
|
|
|
|
char *STACK_limit = NULL;
|
|
|
|
STACK_CONTEXT *STACK_frame;
|
|
|
|
int STACK_frame_count;
|
2009-05-27 20:42:48 +02:00
|
|
|
size_t STACK_relocate = 0;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-01 17:13:50 +02:00
|
|
|
static uintptr_t _process_stack_limit;
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void STACK_init(void)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2009-08-01 17:13:50 +02:00
|
|
|
int stack;
|
|
|
|
struct rlimit limit;
|
|
|
|
uintptr_t max;
|
|
|
|
|
|
|
|
// Get the maximum stack size allowed
|
|
|
|
if (getrlimit(RLIMIT_STACK, &limit))
|
|
|
|
ERROR_panic("Cannot get stack size limit");
|
|
|
|
|
|
|
|
if (limit.rlim_cur == RLIM_INFINITY)
|
|
|
|
max = 128 << 20; // 128 Mb if there is no limit.
|
|
|
|
else
|
|
|
|
max = (uintptr_t)limit.rlim_cur;
|
|
|
|
|
|
|
|
max -= STACK_INC * 8; // 32 Kb security (64 Kb on 64 bits OS)
|
|
|
|
|
|
|
|
_process_stack_limit = (uintptr_t)&stack - max;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
//fprintf(stderr, "STACK_size = %ld\n", STACK_size);
|
|
|
|
ALLOC_ZERO(&STACK_base, STACK_size, "STACK_init");
|
|
|
|
|
|
|
|
STACK_limit = (STACK_base + STACK_size);
|
|
|
|
STACK_frame = (STACK_CONTEXT *)STACK_limit;
|
|
|
|
STACK_frame_count = 0;
|
|
|
|
|
|
|
|
SP = (VALUE *)STACK_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void STACK_exit(void)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (STACK_base)
|
|
|
|
FREE(&STACK_base, "STACK_exit");
|
|
|
|
}
|
|
|
|
|
2008-03-20 00:50:34 +01:00
|
|
|
#if DEBUG_STACK
|
2009-05-27 20:42:48 +02:00
|
|
|
bool STACK_check(int need)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
static VALUE *old = NULL;
|
|
|
|
|
|
|
|
if (SP > old)
|
|
|
|
{
|
|
|
|
printf("STACK = %d bytes\n", ((char *)SP - STACK_base));
|
|
|
|
old = SP;
|
|
|
|
}
|
2009-05-27 20:42:48 +02:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
if ((char *)(SP + need + 8) >= STACK_limit)
|
2009-05-27 20:42:48 +02:00
|
|
|
{
|
|
|
|
STACK_grow();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
2008-03-20 00:50:34 +01:00
|
|
|
#endif
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-10-31 00:32:38 +01:00
|
|
|
void STACK_push_frame(STACK_CONTEXT *context, int need)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2009-08-01 17:13:50 +02:00
|
|
|
int stack;
|
|
|
|
//fprintf(stderr, "current_stack = %u -> %u / %u\n", current_stack, _process_stack_base - current_stack, _process_stack_max);
|
|
|
|
|
|
|
|
if ((uintptr_t)&stack < _process_stack_limit)
|
|
|
|
THROW(E_STACK);
|
|
|
|
|
2008-10-31 00:32:38 +01:00
|
|
|
if ((char *)(SP + need + 8 + sizeof(STACK_CONTEXT)) >= STACK_limit)
|
2009-05-27 20:42:48 +02:00
|
|
|
{
|
|
|
|
//fprintf(stderr, "**** STACK_GROW: STACK_push_frame\n");
|
|
|
|
//THROW(E_STACK);
|
|
|
|
STACK_grow();
|
|
|
|
}
|
2008-10-31 00:32:38 +01:00
|
|
|
|
|
|
|
//if (((char *)SP + sizeof(STACK_CONTEXT) * 2) >= (char *)STACK_frame)
|
|
|
|
// THROW(E_STACK);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
STACK_frame--;
|
2008-03-19 15:32:30 +01:00
|
|
|
|
|
|
|
//*STACK_frame = *context;
|
|
|
|
STACK_copy(STACK_frame, context);
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
STACK_frame_count++;
|
|
|
|
STACK_limit = (char *)STACK_frame;
|
|
|
|
|
|
|
|
//fprintf(stderr, "STACK_push_frame: [%d] PC = %p FP = %p (%s)\n", STACK_frame_count, context->pc, context->fp,
|
|
|
|
// context->fp ? (context->fp->debug ? context->fp->debug->name : 0) : 0);
|
|
|
|
}
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void STACK_pop_frame(STACK_CONTEXT *context)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (STACK_frame_count <= 0)
|
|
|
|
ERROR_panic("STACK_pop_frame: Stack frame is void");
|
|
|
|
|
2008-03-19 15:32:30 +01:00
|
|
|
//*context = *STACK_frame;
|
|
|
|
STACK_copy(context, STACK_frame);
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
STACK_frame++;
|
|
|
|
STACK_frame_count--;
|
|
|
|
STACK_limit = (char *)STACK_frame;
|
|
|
|
|
|
|
|
//fprintf(stderr, "STACK_pop_frame: [%d] PC = %p FP = %p (%s)\n", STACK_frame_count, context->pc, context->fp,
|
|
|
|
// context->fp ? (context->fp->debug ? context->fp->debug->name : 0) : 0);
|
|
|
|
}
|
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
bool STACK_has_error_handler(void)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < STACK_frame_count; i++)
|
|
|
|
if (STACK_frame[i].ec != NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
STACK_CONTEXT *STACK_get_frame(int frame)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (frame >= 0 && frame < STACK_frame_count)
|
|
|
|
return &STACK_frame[frame];
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-05-27 20:42:48 +02:00
|
|
|
|
|
|
|
static void relocate(STACK_CONTEXT *context)
|
|
|
|
{
|
|
|
|
STACK_RELOCATE(context->next);
|
|
|
|
STACK_RELOCATE(context->bp);
|
|
|
|
STACK_RELOCATE(context->pp);
|
|
|
|
STACK_RELOCATE(context->ep);
|
|
|
|
STACK_RELOCATE(context->tp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void STACK_grow(void)
|
|
|
|
{
|
|
|
|
size_t new_size = STACK_size + STACK_INC;
|
|
|
|
char *new_base;
|
|
|
|
size_t size;
|
|
|
|
STACK_CONTEXT *context;
|
|
|
|
#if DEBUG_STACK
|
|
|
|
fprintf(stderr, "STACK_grow: before SP = %d\n", SP - (VALUE *)STACK_base);
|
|
|
|
fprintf(stderr, "STACK_grow: before STACK_limit = %d\n", (VALUE *)STACK_limit - (VALUE *)STACK_base);
|
|
|
|
fprintf(stderr, "STACK_grow: before STACK_frame = %d\n", (STACK_CONTEXT *)STACK_frame - (STACK_CONTEXT *)STACK_base);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ALLOC_ZERO(&new_base, new_size, "STACK_grow");
|
|
|
|
STACK_relocate = new_base - STACK_base;
|
|
|
|
|
|
|
|
// copy the stack data
|
|
|
|
size = (char *)SP - STACK_base;
|
|
|
|
#if DEBUG_STACK
|
|
|
|
fprintf(stderr, "stack size = %d ", size);
|
|
|
|
#endif
|
|
|
|
memcpy(new_base, STACK_base, size);
|
|
|
|
|
|
|
|
// relocate the current context
|
|
|
|
relocate(&EXEC_current);
|
|
|
|
|
|
|
|
// relocate frames
|
|
|
|
for (context = (STACK_CONTEXT *)STACK_limit; context < (STACK_CONTEXT *)(STACK_base + STACK_size); context++)
|
|
|
|
relocate(context);
|
|
|
|
|
|
|
|
// copy the frame data
|
|
|
|
size = STACK_base + STACK_size - STACK_limit;
|
|
|
|
#if DEBUG_STACK
|
|
|
|
fprintf(stderr, "frame size = %d\n", size);
|
|
|
|
#endif
|
|
|
|
memcpy(&new_base[new_size - size], STACK_limit, size);
|
|
|
|
|
|
|
|
// update limit
|
|
|
|
//fprintf(stderr, "STACK_grow: limit = %d -> %d\n", STACK_limit - (char *)STACK_base, new_size - size);
|
|
|
|
STACK_limit = &new_base[new_size - size];
|
|
|
|
|
|
|
|
// free old stack
|
|
|
|
FREE(&STACK_base, "STACK_grow");
|
|
|
|
|
|
|
|
// update stack pointers
|
|
|
|
STACK_frame = (STACK_CONTEXT *)STACK_limit;
|
|
|
|
STACK_RELOCATE(SP);
|
|
|
|
STACK_RELOCATE(EXEC_super);
|
|
|
|
STACK_base = new_base;
|
|
|
|
STACK_size = new_size;
|
|
|
|
|
|
|
|
#if DEBUG_STACK
|
|
|
|
fprintf(stderr, "STACK_grow: new size = %d\n", new_size / sizeof(VALUE));
|
|
|
|
|
|
|
|
fprintf(stderr, "STACK_grow: after SP = %d\n", SP - (VALUE *)STACK_base);
|
|
|
|
fprintf(stderr, "STACK_grow: after STACK_limit = %d\n", (VALUE *)STACK_limit - (VALUE *)STACK_base);
|
|
|
|
fprintf(stderr, "STACK_grow: after STACK_frame = %d\n", (STACK_CONTEXT *)STACK_frame - (STACK_CONTEXT *)STACK_base);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|