2013-10-15 17:25:17 -04:00
|
|
|
// non-local return
|
|
|
|
// exception handling, basically a stack of setjmp/longjmp buffers
|
|
|
|
|
|
|
|
#include <limits.h>
|
2014-04-16 17:16:45 -04:00
|
|
|
#include <setjmp.h>
|
2013-10-15 17:25:17 -04:00
|
|
|
|
|
|
|
typedef struct _nlr_buf_t nlr_buf_t;
|
|
|
|
struct _nlr_buf_t {
|
|
|
|
// the entries here must all be machine word size
|
|
|
|
nlr_buf_t *prev;
|
|
|
|
void *ret_val;
|
2014-04-16 17:16:45 -04:00
|
|
|
#if !MICROPY_NLR_SETJMP
|
2014-02-27 11:01:43 -05:00
|
|
|
#if defined(__i386__)
|
2013-10-15 17:25:17 -04:00
|
|
|
void *regs[6];
|
2014-02-27 11:01:43 -05:00
|
|
|
#elif defined(__x86_64__)
|
2014-04-03 18:51:16 -04:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
void *regs[12];
|
|
|
|
#else
|
2013-10-15 17:25:17 -04:00
|
|
|
void *regs[8];
|
2014-04-03 18:51:16 -04:00
|
|
|
#endif
|
2014-02-27 11:01:43 -05:00
|
|
|
#elif defined(__thumb2__)
|
2013-10-15 19:46:39 -04:00
|
|
|
void *regs[10];
|
2014-02-27 11:01:43 -05:00
|
|
|
#else
|
2014-04-16 17:16:45 -04:00
|
|
|
#define MICROPY_NLR_SETJMP (1)
|
2014-04-29 21:14:31 -04:00
|
|
|
//#warning "No native NLR support for this arch, using setjmp implementation"
|
2014-04-16 17:16:45 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MICROPY_NLR_SETJMP
|
|
|
|
jmp_buf jmpbuf;
|
2013-10-15 17:25:17 -04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2014-04-16 17:16:45 -04:00
|
|
|
#if MICROPY_NLR_SETJMP
|
|
|
|
extern nlr_buf_t *nlr_setjmp_top;
|
2014-04-29 22:35:18 -04:00
|
|
|
NORETURN void nlr_setjmp_jump(void *val);
|
2014-04-16 17:16:45 -04:00
|
|
|
// nlr_push() must be defined as a macro, because "The stack context will be
|
|
|
|
// invalidated if the function which called setjmp() returns."
|
|
|
|
#define nlr_push(buf) ((buf)->prev = nlr_setjmp_top, nlr_setjmp_top = (buf), setjmp((buf)->jmpbuf))
|
|
|
|
#define nlr_pop() { nlr_setjmp_top = nlr_setjmp_top->prev; }
|
|
|
|
#define nlr_jump(val) nlr_setjmp_jump(val)
|
|
|
|
#else
|
2013-10-15 17:25:17 -04:00
|
|
|
unsigned int nlr_push(nlr_buf_t *);
|
2013-10-23 15:20:17 -04:00
|
|
|
void nlr_pop(void);
|
2014-04-29 22:35:18 -04:00
|
|
|
NORETURN void nlr_jump(void *val);
|
2014-04-16 17:16:45 -04:00
|
|
|
#endif
|
2014-04-05 13:32:08 -04:00
|
|
|
|
2014-04-08 10:08:14 -04:00
|
|
|
// This must be implemented by a port. It's called by nlr_jump
|
|
|
|
// if no nlr buf has been pushed. It must not return, but rather
|
|
|
|
// should bail out with a fatal error.
|
|
|
|
void nlr_jump_fail(void *val);
|
|
|
|
|
2014-04-05 13:32:08 -04:00
|
|
|
// use nlr_raise instead of nlr_jump so that debugging is easier
|
|
|
|
#ifndef DEBUG
|
|
|
|
#define nlr_raise(val) nlr_jump(val)
|
|
|
|
#else
|
|
|
|
#define nlr_raise(val) \
|
|
|
|
do { \
|
|
|
|
void *_val = val; \
|
|
|
|
assert(_val != NULL); \
|
|
|
|
assert(mp_obj_is_exception_instance(_val)); \
|
|
|
|
nlr_jump(_val); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|