Commit | Line | Data |
79072805 |
1 | #define SAVEt_ITEM 0 |
2 | #define SAVEt_SV 1 |
3 | #define SAVEt_AV 2 |
4 | #define SAVEt_HV 3 |
5 | #define SAVEt_INT 4 |
85e6fe83 |
6 | #define SAVEt_LONG 5 |
7 | #define SAVEt_I32 6 |
a0d0e21e |
8 | #define SAVEt_IV 7 |
9 | #define SAVEt_SPTR 8 |
10 | #define SAVEt_APTR 9 |
11 | #define SAVEt_HPTR 10 |
12 | #define SAVEt_PPTR 11 |
13 | #define SAVEt_NSTAB 12 |
14 | #define SAVEt_SVREF 13 |
15 | #define SAVEt_GP 14 |
16 | #define SAVEt_FREESV 15 |
17 | #define SAVEt_FREEOP 16 |
18 | #define SAVEt_FREEPV 17 |
19 | #define SAVEt_CLEARSV 18 |
20 | #define SAVEt_DELETE 19 |
21 | #define SAVEt_DESTRUCTOR 20 |
22 | #define SAVEt_REGCONTEXT 21 |
55497cff |
23 | #define SAVEt_STACK_POS 22 |
24 | #define SAVEt_I16 23 |
161b7d16 |
25 | #define SAVEt_AELEM 24 |
26 | #define SAVEt_HELEM 25 |
5d863698 |
27 | #define SAVEt_OP 26 |
79072805 |
28 | |
29 | #define SSCHECK(need) if (savestack_ix + need > savestack_max) savestack_grow() |
30 | #define SSPUSHINT(i) (savestack[savestack_ix++].any_i32 = (I32)(i)) |
85e6fe83 |
31 | #define SSPUSHLONG(i) (savestack[savestack_ix++].any_long = (long)(i)) |
a0d0e21e |
32 | #define SSPUSHIV(i) (savestack[savestack_ix++].any_iv = (IV)(i)) |
79072805 |
33 | #define SSPUSHPTR(p) (savestack[savestack_ix++].any_ptr = (void*)(p)) |
a0d0e21e |
34 | #define SSPUSHDPTR(p) (savestack[savestack_ix++].any_dptr = (p)) |
79072805 |
35 | #define SSPOPINT (savestack[--savestack_ix].any_i32) |
85e6fe83 |
36 | #define SSPOPLONG (savestack[--savestack_ix].any_long) |
a0d0e21e |
37 | #define SSPOPIV (savestack[--savestack_ix].any_iv) |
79072805 |
38 | #define SSPOPPTR (savestack[--savestack_ix].any_ptr) |
a0d0e21e |
39 | #define SSPOPDPTR (savestack[--savestack_ix].any_dptr) |
8990e307 |
40 | |
a0d0e21e |
41 | #define SAVETMPS save_int((int*)&tmps_floor), tmps_floor = tmps_ix |
42 | #define FREETMPS if (tmps_ix > tmps_floor) free_tmps() |
a0d0e21e |
43 | |
f46d017c |
44 | #ifdef DEBUGGING |
45 | #define ENTER \ |
46 | STMT_START { \ |
47 | push_scope(); \ |
f3dc24a5 |
48 | DEBUG_l(WITH_THR(deb("ENTER scope %ld at %s:%d\n", \ |
49 | scopestack_ix, __FILE__, __LINE__))); \ |
f46d017c |
50 | } STMT_END |
51 | #define LEAVE \ |
52 | STMT_START { \ |
f3dc24a5 |
53 | DEBUG_l(WITH_THR(deb("LEAVE scope %ld at %s:%d\n", \ |
54 | scopestack_ix, __FILE__, __LINE__))); \ |
f46d017c |
55 | pop_scope(); \ |
56 | } STMT_END |
57 | #else |
a0d0e21e |
58 | #define ENTER push_scope() |
59 | #define LEAVE pop_scope() |
f46d017c |
60 | #endif |
8990e307 |
61 | #define LEAVE_SCOPE(old) if (savestack_ix > old) leave_scope(old) |
a0d0e21e |
62 | |
55497cff |
63 | /* |
64 | * Not using SOFT_CAST on SAVEFREESV and SAVEFREESV |
65 | * because these are used for several kinds of pointer values |
66 | */ |
4fdae800 |
67 | #define SAVEI16(i) save_I16(SOFT_CAST(I16*)&(i)) |
68 | #define SAVEI32(i) save_I32(SOFT_CAST(I32*)&(i)) |
69 | #define SAVEINT(i) save_int(SOFT_CAST(int*)&(i)) |
70 | #define SAVEIV(i) save_iv(SOFT_CAST(IV*)&(i)) |
71 | #define SAVELONG(l) save_long(SOFT_CAST(long*)&(l)) |
55497cff |
72 | #define SAVESPTR(s) save_sptr((SV**)&(s)) |
73 | #define SAVEPPTR(s) save_pptr(SOFT_CAST(char**)&(s)) |
74 | #define SAVEFREESV(s) save_freesv((SV*)(s)) |
75 | #define SAVEFREEOP(o) save_freeop(SOFT_CAST(OP*)(o)) |
76 | #define SAVEFREEPV(p) save_freepv(SOFT_CAST(char*)(p)) |
77 | #define SAVECLEARSV(sv) save_clearsv(SOFT_CAST(SV**)&(sv)) |
78 | #define SAVEDELETE(h,k,l) \ |
79 | save_delete(SOFT_CAST(HV*)(h), SOFT_CAST(char*)(k), (I32)(l)) |
76e3520e |
80 | #ifdef PERL_OBJECT |
565764a8 |
81 | #define CALLDESTRUCTOR this->*SSPOPDPTR |
76e3520e |
82 | #define SAVEDESTRUCTOR(f,p) \ |
ac4c12e7 |
83 | save_destructor((DESTRUCTORFUNC)(FUNC_NAME_TO_PTR(f)), \ |
84 | SOFT_CAST(void*)(p)) |
76e3520e |
85 | #else |
565764a8 |
86 | #define CALLDESTRUCTOR *SSPOPDPTR |
55497cff |
87 | #define SAVEDESTRUCTOR(f,p) \ |
ac4c12e7 |
88 | save_destructor(SOFT_CAST(void(*)_((void*)))(FUNC_NAME_TO_PTR(f)), \ |
89 | SOFT_CAST(void*)(p)) |
76e3520e |
90 | #endif |
55497cff |
91 | #define SAVESTACK_POS() STMT_START { \ |
92 | SSCHECK(2); \ |
93 | SSPUSHINT(stack_sp - stack_base); \ |
94 | SSPUSHINT(SAVEt_STACK_POS); \ |
95 | } STMT_END |
462e5cf6 |
96 | #define SAVEOP() save_op() |
54310121 |
97 | |
98 | /* A jmpenv packages the state required to perform a proper non-local jump. |
99 | * Note that there is a start_env initialized when perl starts, and top_env |
100 | * points to this initially, so top_env should always be non-null. |
101 | * |
102 | * Existence of a non-null top_env->je_prev implies it is valid to call |
103 | * longjmp() at that runlevel (we make sure start_env.je_prev is always |
104 | * null to ensure this). |
105 | * |
106 | * je_mustcatch, when set at any runlevel to TRUE, means eval ops must |
107 | * establish a local jmpenv to handle exception traps. Care must be taken |
108 | * to restore the previous value of je_mustcatch before exiting the |
109 | * stack frame iff JMPENV_PUSH was not called in that stack frame. |
110 | * GSAR 97-03-27 |
111 | */ |
112 | |
113 | struct jmpenv { |
114 | struct jmpenv * je_prev; |
115 | Sigjmp_buf je_buf; |
116 | int je_ret; /* return value of last setjmp() */ |
117 | bool je_mustcatch; /* longjmp()s must be caught locally */ |
118 | }; |
119 | |
120 | typedef struct jmpenv JMPENV; |
121 | |
462e5cf6 |
122 | #ifdef OP_IN_REGISTER |
123 | #define OP_REG_TO_MEM opsave = op |
124 | #define OP_MEM_TO_REG op = opsave |
125 | #else |
126 | #define OP_REG_TO_MEM NOOP |
127 | #define OP_MEM_TO_REG NOOP |
128 | #endif |
129 | |
54310121 |
130 | #define dJMPENV JMPENV cur_env |
22921e25 |
131 | #define JMPENV_PUSH(v) \ |
132 | STMT_START { \ |
133 | cur_env.je_prev = top_env; \ |
462e5cf6 |
134 | OP_REG_TO_MEM; \ |
6ad3d225 |
135 | cur_env.je_ret = PerlProc_setjmp(cur_env.je_buf, 1); \ |
462e5cf6 |
136 | OP_MEM_TO_REG; \ |
22921e25 |
137 | top_env = &cur_env; \ |
138 | cur_env.je_mustcatch = FALSE; \ |
139 | (v) = cur_env.je_ret; \ |
140 | } STMT_END |
141 | #define JMPENV_POP \ |
142 | STMT_START { top_env = cur_env.je_prev; } STMT_END |
143 | #define JMPENV_JUMP(v) \ |
144 | STMT_START { \ |
462e5cf6 |
145 | OP_REG_TO_MEM; \ |
22921e25 |
146 | if (top_env->je_prev) \ |
6ad3d225 |
147 | PerlProc_longjmp(top_env->je_buf, (v)); \ |
22921e25 |
148 | if ((v) == 2) \ |
6ad3d225 |
149 | PerlProc_exit(STATUS_NATIVE_EXPORT); \ |
22921e25 |
150 | PerlIO_printf(PerlIO_stderr(), "panic: top_env\n"); \ |
6ad3d225 |
151 | PerlProc_exit(1); \ |
22921e25 |
152 | } STMT_END |
54310121 |
153 | |
154 | #define CATCH_GET (top_env->je_mustcatch) |
155 | #define CATCH_SET(v) (top_env->je_mustcatch = (v)) |
156 | |