1 typedef char *pvcontents;
2 typedef char *strconst;
4 typedef char *op_tr_array;
10 EXT int iv_overflows INIT(0);
19 EXT I32 obj_list_fill INIT(-1);
21 #ifdef INDIRECT_BGET_MACROS
22 #define BGET_FREAD(argp, len, nelem) \
23 bs.fread((char*)(argp),(len),(nelem),bs.data)
24 #define BGET_FGETC() bs.fgetc(bs.data)
26 #define BGET_FREAD(argp, len, nelem) PerlIO_read(fp, (argp), (len)*(nelem))
27 #define BGET_FGETC() PerlIO_getc(fp)
28 #endif /* INDIRECT_BGET_MACROS */
30 #define BGET_U32(arg) \
31 BGET_FREAD(&arg, sizeof(U32), 1); arg = PerlSock_ntohl((U32)arg)
32 #define BGET_I32(arg) \
33 BGET_FREAD(&arg, sizeof(I32), 1); arg = (I32)PerlSock_ntohl((U32)arg)
34 #define BGET_U16(arg) \
35 BGET_FREAD(&arg, sizeof(U16), 1); arg = PerlSock_ntohs((U16)arg)
36 #define BGET_U8(arg) arg = BGET_FGETC()
38 #if INDIRECT_BGET_MACROS
39 #define BGET_PV(arg) STMT_START { \
42 bs.freadpv(arg, bs.data); \
50 #define BGET_PV(arg) STMT_START { \
53 New(666, pv.xpv_pv, arg, char); \
54 PerlIO_read(fp, pv.xpv_pv, arg); \
56 pv.xpv_cur = arg - 1; \
63 #endif /* INDIRECT_BGET_MACROS */
65 #define BGET_comment_t(arg) \
66 do { arg = BGET_FGETC(); } while (arg != '\n' && arg != EOF)
69 * In the following, sizeof(IV)*4 is just a way of encoding 32 on 64-bit-IV
70 * machines such that 32-bit machine compilers don't whine about the shift
71 * count being too high even though the code is never reached there.
73 #define BGET_IV64(arg) STMT_START { \
77 if (sizeof(IV) == 8) \
78 arg = (IV) (hi << (sizeof(IV)*4) | lo); \
79 else if (((I32)hi == -1 && (I32)lo < 0) \
80 || ((I32)hi == 0 && (I32)lo >= 0)) { \
89 #define BGET_op_tr_array(arg) do { \
90 unsigned short *ary; \
92 New(666, ary, 256, unsigned short); \
93 BGET_FREAD(ary, 256, 2); \
94 for (i = 0; i < 256; i++) \
95 ary[i] = PerlSock_ntohs(ary[i]); \
99 #define BGET_pvcontents(arg) arg = pv.xpv_pv
100 #define BGET_strconst(arg) STMT_START { \
101 for (arg = tokenbuf; (*arg = BGET_FGETC()); arg++) /* nothing */; \
105 #define BGET_double(arg) STMT_START { \
107 BGET_strconst(str); \
111 #define BGET_objindex(arg, type) STMT_START { \
114 arg = (type)obj_list[ix]; \
116 #define BGET_svindex(arg) BGET_objindex(arg, svindex)
117 #define BGET_opindex(arg) BGET_objindex(arg, opindex)
119 #define BSET_ldspecsv(sv, arg) sv = specialsv_list[arg]
121 #define BSET_sv_refcnt_add(svrefcnt, arg) svrefcnt += arg
122 #define BSET_gp_refcnt_add(gprefcnt, arg) gprefcnt += arg
123 #define BSET_gp_share(sv, arg) STMT_START { \
125 GvGP(sv) = GvGP(arg); \
128 #define BSET_gv_fetchpv(sv, arg) sv = (SV*)gv_fetchpv(arg, TRUE, SVt_PV)
129 #define BSET_gv_stashpv(sv, arg) sv = (SV*)gv_stashpv(arg, TRUE)
130 #define BSET_sv_magic(sv, arg) sv_magic(sv, Nullsv, arg, 0, 0)
131 #define BSET_mg_pv(mg, arg) mg->mg_ptr = arg; mg->mg_len = pv.xpv_cur
132 #define BSET_sv_upgrade(sv, arg) (void)SvUPGRADE(sv, arg)
133 #define BSET_xpv(sv) do { \
134 SvPV_set(sv, pv.xpv_pv); \
135 SvCUR_set(sv, pv.xpv_cur); \
136 SvLEN_set(sv, pv.xpv_len); \
138 #define BSET_av_extend(sv, arg) av_extend((AV*)sv, arg)
140 #define BSET_av_push(sv, arg) av_push((AV*)sv, arg)
141 #define BSET_hv_store(sv, arg) \
142 hv_store((HV*)sv, pv.xpv_pv, pv.xpv_cur, arg, 0)
143 #define BSET_pv_free(pv) Safefree(pv.xpv_pv)
144 #define BSET_pregcomp(o, arg) \
145 ((PMOP*)o)->op_pmregexp = arg ? \
146 CALLREGCOMP(arg, arg + pv.xpv_cur, ((PMOP*)o)) : 0
147 #define BSET_newsv(sv, arg) sv = NEWSV(666,0); SvUPGRADE(sv, arg)
148 #define BSET_newop(o, arg) o = (OP*)safemalloc(optype_size[arg])
149 #define BSET_newopn(o, arg) STMT_START { \
151 BSET_newop(o, arg); \
152 oldop->op_next = o; \
155 #define BSET_ret(foo) return
158 * Kludge special-case workaround for OP_MAPSTART
159 * which needs the ppaddr for OP_GREPSTART. Blech.
161 #define BSET_op_type(o, arg) STMT_START { \
163 if (arg == OP_MAPSTART) \
164 arg = OP_GREPSTART; \
165 o->op_ppaddr = ppaddr[arg]; \
167 #define BSET_op_ppaddr(o, arg) croak("op_ppaddr not yet implemented")
168 #define BSET_curpad(pad, arg) pad = AvARRAY(arg)
170 #define BSET_OBJ_STORE(obj, ix) \
171 (I32)ix > obj_list_fill ? \
172 bset_obj_store(obj, (I32)ix) : (obj_list[ix] = obj)