Re: [ID 20010815.012] Unfortunate interaction between -0 cmd line arg ...
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / bytecode.h
1 typedef char *pvcontents;
2 typedef char *strconst;
3 typedef U32 PV;
4 typedef char *op_tr_array;
5 typedef int comment_t;
6 typedef SV *svindex;
7 typedef OP *opindex;
8 typedef char *pvindex;
9 typedef IV IV64;
10
11 #define BGET_FREAD(argp, len, nelem)    \
12          bl_read(bstate->bs_fdata,(char*)(argp),(len),(nelem))
13 #define BGET_FGETC() bl_getc(bstate->bs_fdata)
14
15 #define BGET_U32(arg)   \
16         BGET_FREAD(&arg, sizeof(U32), 1)
17 #define BGET_I32(arg)   \
18         BGET_FREAD(&arg, sizeof(I32), 1)
19 #define BGET_U16(arg)   \
20         BGET_FREAD(&arg, sizeof(U16), 1)
21 #define BGET_U8(arg)    arg = BGET_FGETC()
22
23 #define BGET_PV(arg)    STMT_START {                                    \
24         BGET_U32(arg);                                                  \
25         if (arg) {                                                      \
26             New(666, bstate->bs_pv.xpv_pv, arg, char);                  \
27             bl_read(bstate->bs_fdata, (void*)bstate->bs_pv.xpv_pv, arg, 1);     \
28             bstate->bs_pv.xpv_len = arg;                                \
29             bstate->bs_pv.xpv_cur = arg - 1;                            \
30         } else {                                                        \
31             bstate->bs_pv.xpv_pv = 0;                                   \
32             bstate->bs_pv.xpv_len = 0;                                  \
33             bstate->bs_pv.xpv_cur = 0;                                  \
34         }                                                               \
35     } STMT_END
36
37 #ifdef BYTELOADER_LOG_COMMENTS
38 #  define BGET_comment_t(arg) \
39     STMT_START {                                                        \
40         char buf[1024];                                                 \
41         int i = 0;                                                      \
42         do {                                                            \
43             arg = BGET_FGETC();                                         \
44             buf[i++] = (char)arg;                                       \
45         } while (arg != '\n' && arg != EOF);                            \
46         buf[i] = '\0';                                                  \
47         PerlIO_printf(PerlIO_stderr(), "%s", buf);                      \
48     } STMT_END
49 #else
50 #  define BGET_comment_t(arg) \
51         do { arg = BGET_FGETC(); } while (arg != '\n' && arg != EOF)
52 #endif
53
54 /*
55  * In the following, sizeof(IV)*4 is just a way of encoding 32 on 64-bit-IV
56  * machines such that 32-bit machine compilers don't whine about the shift
57  * count being too high even though the code is never reached there.
58  */
59 #define BGET_IV64(arg) STMT_START {                     \
60         U32 hi, lo;                                     \
61         BGET_U32(hi);                                   \
62         BGET_U32(lo);                                   \
63         if (sizeof(IV) == 8)                            \
64             arg = ((IV)hi << (sizeof(IV)*4) | (IV)lo);  \
65         else if (((I32)hi == -1 && (I32)lo < 0)         \
66                  || ((I32)hi == 0 && (I32)lo >= 0)) {   \
67             arg = (I32)lo;                              \
68         }                                               \
69         else {                                          \
70             bstate->bs_iv_overflows++;                  \
71             arg = 0;                                    \
72         }                                               \
73     } STMT_END
74
75 #define BGET_op_tr_array(arg) do {                      \
76         unsigned short *ary;                            \
77         New(666, ary, 256, unsigned short);             \
78         BGET_FREAD(ary, sizeof(unsigned short), 256);   \
79         arg = (char *) ary;                             \
80     } while (0)
81
82 #define BGET_pvcontents(arg)    arg = bstate->bs_pv.xpv_pv
83 #define BGET_strconst(arg) STMT_START { \
84         for (arg = PL_tokenbuf; (*arg = BGET_FGETC()); arg++) /* nothing */; \
85         arg = PL_tokenbuf;                      \
86     } STMT_END
87
88 #define BGET_NV(arg) STMT_START {       \
89         char *str;                      \
90         BGET_strconst(str);             \
91         arg = Atof(str);                \
92     } STMT_END
93
94 #define BGET_objindex(arg, type) STMT_START {   \
95         BGET_U32(ix);                           \
96         arg = (type)bstate->bs_obj_list[ix];    \
97     } STMT_END
98 #define BGET_svindex(arg) BGET_objindex(arg, svindex)
99 #define BGET_opindex(arg) BGET_objindex(arg, opindex)
100 #define BGET_pvindex(arg) STMT_START {                  \
101         BGET_objindex(arg, pvindex);                    \
102         arg = arg ? savepv(arg) : arg;                  \
103     } STMT_END
104
105 #define BSET_ldspecsv(sv, arg) sv = specialsv_list[arg]
106 #define BSET_stpv(pv, arg) STMT_START {         \
107         BSET_OBJ_STORE(pv, arg);                \
108         SAVEFREEPV(pv);                         \
109     } STMT_END
110                                     
111 #define BSET_sv_refcnt_add(svrefcnt, arg)       svrefcnt += arg
112 #define BSET_gp_refcnt_add(gprefcnt, arg)       gprefcnt += arg
113 #define BSET_gp_share(sv, arg) STMT_START {     \
114         gp_free((GV*)sv);                       \
115         GvGP(sv) = GvGP(arg);                   \
116     } STMT_END
117
118 #define BSET_gv_fetchpv(sv, arg)        sv = (SV*)gv_fetchpv(arg, TRUE, SVt_PV)
119 #define BSET_gv_stashpv(sv, arg)        sv = (SV*)gv_stashpv(arg, TRUE)
120 #define BSET_sv_magic(sv, arg)          sv_magic(sv, Nullsv, arg, 0, 0)
121 #define BSET_mg_pv(mg, arg)     mg->mg_ptr = arg; mg->mg_len = bstate->bs_pv.xpv_cur
122 #define BSET_sv_upgrade(sv, arg)        (void)SvUPGRADE(sv, arg)
123 #define BSET_xpv(sv)    do {    \
124         SvPV_set(sv, bstate->bs_pv.xpv_pv);     \
125         SvCUR_set(sv, bstate->bs_pv.xpv_cur);   \
126         SvLEN_set(sv, bstate->bs_pv.xpv_len);   \
127     } while (0)
128 #define BSET_av_extend(sv, arg) av_extend((AV*)sv, arg)
129
130 #define BSET_av_push(sv, arg)   av_push((AV*)sv, arg)
131 #define BSET_hv_store(sv, arg)  \
132         hv_store((HV*)sv, bstate->bs_pv.xpv_pv, bstate->bs_pv.xpv_cur, arg, 0)
133 #define BSET_pv_free(pv)        Safefree(pv.xpv_pv)
134 #define BSET_pregcomp(o, arg) \
135         (PM_SETRE(((PMOP*)o), (arg ? \
136                 CALLREGCOMP(aTHX_ arg, arg + bstate->bs_pv.xpv_cur, ((PMOP*)o)) : 0)))
137 #define BSET_newsv(sv, arg)                             \
138         STMT_START {                                    \
139             sv = (arg == SVt_PVAV ? (SV*)newAV() :      \
140                   arg == SVt_PVHV ? (SV*)newHV() :      \
141                   NEWSV(666,0));                        \
142             SvUPGRADE(sv, arg);                         \
143         } STMT_END
144 #define BSET_newop(o, arg)      ((o = (OP*)safemalloc(optype_size[arg])), \
145                                  memzero((char*)o,optype_size[arg]))
146 #define BSET_newopn(o, arg) STMT_START {        \
147         OP *oldop = o;                          \
148         BSET_newop(o, arg);                     \
149         oldop->op_next = o;                     \
150     } STMT_END
151
152 #define BSET_ret(foo) STMT_START {                      \
153         Safefree(bstate->bs_obj_list);                  \
154         return;                                         \
155     } STMT_END
156
157 /*
158  * Kludge special-case workaround for OP_MAPSTART
159  * which needs the ppaddr for OP_GREPSTART. Blech.
160  */
161 #define BSET_op_type(o, arg) STMT_START {       \
162         o->op_type = arg;                       \
163         if (arg == OP_MAPSTART)                 \
164             arg = OP_GREPSTART;                 \
165         o->op_ppaddr = PL_ppaddr[arg];          \
166     } STMT_END
167 #define BSET_op_ppaddr(o, arg) Perl_croak(aTHX_ "op_ppaddr not yet implemented")
168 #define BSET_curpad(pad, arg) STMT_START {      \
169         PL_comppad = (AV *)arg;                 \
170         pad = AvARRAY(arg);                     \
171     } STMT_END
172 /* this works now that Sarathy's changed the CopFILE_set macro to do the SvREFCNT_inc()
173         -- BKS 6-2-2000 */
174 #define BSET_cop_file(cop, arg)         CopFILE_set(cop,arg)
175 #define BSET_cop_line(cop, arg)         CopLINE_set(cop,arg)
176 #define BSET_cop_stashpv(cop, arg)      CopSTASHPV_set(cop,arg)
177
178 /* this is simply stolen from the code in newATTRSUB() */
179 #define BSET_push_begin(ary,cv)                         \
180         STMT_START {                                    \
181             I32 oldscope = PL_scopestack_ix;            \
182             ENTER;                                      \
183             SAVECOPFILE(&PL_compiling);                 \
184             SAVECOPLINE(&PL_compiling);                 \
185             if (!PL_beginav)                            \
186                 PL_beginav = newAV();                   \
187             av_push(PL_beginav, cv);                    \
188             call_list(oldscope, PL_beginav);            \
189             PL_curcop = &PL_compiling;                  \
190             PL_compiling.op_private = PL_hints;         \
191             LEAVE;                                      \
192         } STMT_END
193 #define BSET_push_init(ary,cv)                                                          \
194         STMT_START {                                                                    \
195             av_unshift((PL_initav ? PL_initav : (PL_initav = newAV(), PL_initav)), 1);  \
196             av_store(PL_initav, 0, cv);                                                 \
197         } STMT_END
198 #define BSET_push_end(ary,cv)                                                                   \
199         STMT_START {                                                                    \
200             av_unshift((PL_endav ? PL_endav : (PL_endav = newAV(), PL_endav)), 1);      \
201             av_store(PL_endav, 0, cv);                                                  \
202         } STMT_END
203 #define BSET_OBJ_STORE(obj, ix)                 \
204         (I32)ix > bstate->bs_obj_list_fill ?    \
205         bset_obj_store(aTHX_ bstate, obj, (I32)ix) : (bstate->bs_obj_list[ix] = obj)
206
207 /* NOTE: the bytecode header only sanity-checks the bytecode. If a script cares about
208  * what version of Perl it's being called under, it should do a 'require 5.6.0' or
209  * equivalent. However, since the header includes checks requiring an exact match in
210  * ByteLoader versions (we can't guarantee forward compatibility), you don't 
211  * need to specify one:
212  *      use ByteLoader;
213  * is all you need.
214  *      -- BKS, June 2000
215 */
216
217 #define HEADER_FAIL(f)  \
218         Perl_croak(aTHX_ "Invalid bytecode for this architecture: " f)
219 #define HEADER_FAIL1(f, arg1)   \
220         Perl_croak(aTHX_ "Invalid bytecode for this architecture: " f, arg1)
221 #define HEADER_FAIL2(f, arg1, arg2)     \
222         Perl_croak(aTHX_ "Invalid bytecode for this architecture: " f, arg1, arg2)
223
224 #define BYTECODE_HEADER_CHECK                                   \
225         STMT_START {                                            \
226             U32 sz = 0;                                         \
227             strconst str;                                       \
228                                                                 \
229             BGET_U32(sz); /* Magic: 'PLBC' */                   \
230             if (sz != 0x43424c50) {                             \
231                 HEADER_FAIL1("bad magic (want 0x43424c50, got %#x)", (int)sz);          \
232             }                                                   \
233             BGET_strconst(str); /* archname */                  \
234             if (strNE(str, ARCHNAME)) {                         \
235                 HEADER_FAIL2("wrong architecture (want %s, you have %s)",str,ARCHNAME); \
236             }                                                   \
237             BGET_strconst(str); /* ByteLoader version */        \
238             if (strNE(str, VERSION)) {                          \
239                 HEADER_FAIL2("mismatched ByteLoader versions (want %s, you have %s)",   \
240                         str, VERSION);                          \
241             }                                                   \
242             BGET_U32(sz); /* ivsize */                          \
243             if (sz != IVSIZE) {                                 \
244                 HEADER_FAIL("different IVSIZE");                \
245             }                                                   \
246             BGET_U32(sz); /* ptrsize */                         \
247             if (sz != PTRSIZE) {                                \
248                 HEADER_FAIL("different PTRSIZE");               \
249             }                                                   \
250             BGET_strconst(str); /* byteorder */                 \
251             if (strNE(str, STRINGIFY(BYTEORDER))) {             \
252                 HEADER_FAIL("different byteorder");     \
253             }                                                   \
254         } STMT_END