2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gbx_stack.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2011-12-31 03:39:20 +01:00
|
|
|
(c) 2000-2012 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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GBX_STACK_H
|
|
|
|
#define __GBX_STACK_H
|
|
|
|
|
|
|
|
#include "gbx_value.h"
|
|
|
|
#include "gb_pcode.h"
|
2011-08-31 04:28:48 +02:00
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
void *cp;
|
|
|
|
void *fp;
|
|
|
|
void *pc;
|
|
|
|
}
|
|
|
|
PACKED
|
|
|
|
STACK_BACKTRACE;
|
|
|
|
|
2012-03-04 00:57:36 +01:00
|
|
|
typedef
|
|
|
|
struct _STACK_GOSUB {
|
2012-03-05 00:43:07 +01:00
|
|
|
ushort pc;
|
|
|
|
VALUE *ctrl;
|
2012-03-04 00:57:36 +01:00
|
|
|
}
|
|
|
|
STACK_GOSUB;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
|
|
|
struct _stack_context {
|
|
|
|
struct _stack_context *next;
|
|
|
|
VALUE *bp; /* local variables */
|
|
|
|
VALUE *pp; /* local parameters */
|
|
|
|
CLASS *cp; /* current class */
|
|
|
|
char *op; /* current object */
|
|
|
|
VALUE *ep; /* error pointer */
|
|
|
|
FUNCTION *fp; /* current function */
|
|
|
|
PCODE *pc; /* instruction */
|
|
|
|
PCODE *ec; /* instruction if error */
|
|
|
|
PCODE *et; /* TRY save */
|
|
|
|
PCODE *tc; /* Last break in the function */
|
|
|
|
VALUE *tp; /* Stack at the last break in the function */
|
2012-03-04 00:57:36 +01:00
|
|
|
STACK_GOSUB *gp; /* GOSUB pointer */
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
PACKED STACK_CONTEXT;
|
|
|
|
|
|
|
|
#ifndef __GBX_STACK_C
|
|
|
|
|
|
|
|
EXTERN char *STACK_base;
|
2008-01-17 22:39:26 +01:00
|
|
|
EXTERN size_t STACK_size;
|
2007-12-30 17:41:49 +01:00
|
|
|
EXTERN char *STACK_limit;
|
2012-03-06 02:50:41 +01:00
|
|
|
//EXTERN size_t STACK_relocate;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
EXTERN int STACK_frame_count;
|
|
|
|
EXTERN STACK_CONTEXT *STACK_frame;
|
|
|
|
|
2010-06-13 14:03:29 +02:00
|
|
|
EXTERN uintptr_t STACK_process_stack_limit;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void STACK_init(void);
|
|
|
|
void STACK_exit(void);
|
2008-03-20 00:50:34 +01:00
|
|
|
|
|
|
|
#if DEBUG_STACK
|
2009-05-27 20:42:48 +02:00
|
|
|
bool STACK_check(int need);
|
2008-03-20 00:50:34 +01:00
|
|
|
#else
|
2012-03-06 02:50:41 +01:00
|
|
|
|
|
|
|
#define STACK_check(_need) \
|
|
|
|
do { \
|
|
|
|
if ((char *)(SP + (_need) + 8) >= STACK_limit) \
|
|
|
|
THROW_STACK(); \
|
|
|
|
} \
|
|
|
|
while (0);
|
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 check);
|
2008-01-17 22:39:26 +01:00
|
|
|
void STACK_pop_frame(STACK_CONTEXT *context);
|
2011-08-31 04:28:48 +02:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
bool STACK_has_error_handler(void);
|
2011-08-31 04:28:48 +02:00
|
|
|
|
|
|
|
STACK_BACKTRACE *STACK_get_backtrace(void);
|
|
|
|
#define STACK_free_backtrace(_backtrace) FREE(_backtrace, "STRACK_free_backtrace")
|
|
|
|
#define STACK_backtrace_is_end(_bt) ((((intptr_t)((_bt)->cp)) & 1) != 0)
|
2011-09-09 00:04:52 +02:00
|
|
|
#define STACK_backtrace_set_end(_bt) ((_bt)->cp = (void *)(((intptr_t)((_bt)->cp)) | 1))
|
|
|
|
#define STACK_backtrace_clear_end(_bt) ((_bt)->cp = (void *)(((intptr_t)((_bt)->cp)) & ~1))
|
2011-08-31 04:28:48 +02:00
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
STACK_CONTEXT *STACK_get_frame(int frame);
|
2008-03-19 15:32:30 +01:00
|
|
|
|
2012-03-04 00:57:36 +01:00
|
|
|
void STACK_free_gosub_stack(STACK_GOSUB *gosub);
|
|
|
|
|
2008-03-19 15:32:30 +01:00
|
|
|
#define STACK_get_previous_pc() ((STACK_frame_count <= 0) ? NULL : STACK_frame->pc)
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define STACK_get_current() ((STACK_frame_count > 0) ? STACK_frame : NULL)
|
|
|
|
|
2010-06-06 22:43:13 +02:00
|
|
|
#define STACK_copy(_dst, _src) *(_dst) = *(_src)
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2010-06-13 14:03:29 +02:00
|
|
|
#define STACK_push_frame(_context, _need) \
|
|
|
|
({ \
|
|
|
|
int stack; \
|
|
|
|
\
|
|
|
|
if ((uintptr_t)&stack < STACK_process_stack_limit) \
|
2012-03-06 02:50:41 +01:00
|
|
|
THROW_STACK(); \
|
2010-06-13 14:03:29 +02:00
|
|
|
\
|
|
|
|
if ((char *)(SP + (_need) + 8 + sizeof(STACK_CONTEXT)) >= STACK_limit) \
|
2012-03-06 02:50:41 +01:00
|
|
|
THROW_STACK(); \
|
2010-06-13 14:03:29 +02:00
|
|
|
\
|
2012-05-19 04:55:05 +02:00
|
|
|
STACK_frame--; \
|
|
|
|
\
|
|
|
|
STACK_copy(STACK_frame, _context); \
|
|
|
|
\
|
|
|
|
STACK_frame_count++; \
|
|
|
|
STACK_limit = (char *)STACK_frame; \
|
2010-06-13 14:03:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
#define STACK_pop_frame(_context) \
|
|
|
|
({ \
|
2012-03-04 00:57:36 +01:00
|
|
|
if ((_context)->gp) STACK_free_gosub_stack((_context)->gp); \
|
2010-06-13 14:03:29 +02:00
|
|
|
STACK_copy(_context, STACK_frame); \
|
|
|
|
STACK_frame++; \
|
|
|
|
STACK_frame_count--; \
|
|
|
|
STACK_limit = (char *)STACK_frame; \
|
|
|
|
})
|
|
|
|
|
2008-03-19 15:32:30 +01:00
|
|
|
#endif
|