Commit | Line | Data |
---|---|---|
78102347 | 1 | /* -*- buffer-read-only: t -*- |
37442d52 | 2 | * |
f5e3445d RGS |
3 | * proto.h |
4 | * | |
78102347 NC |
5 | * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
6 | * 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others | |
f5e3445d RGS |
7 | * |
8 | * You may distribute under the terms of either the GNU General Public | |
9 | * License or the Artistic License, as specified in the README file. | |
10 | * | |
11 | * !!!!!!! DO NOT EDIT THIS FILE !!!!!!! | |
d7cb65f2 | 12 | * This file is built by regen/embed.pl from data in embed.fnc, |
78102347 | 13 | * regen/embed.pl, regen/opcodes, intrpvar.h and perlvars.h. |
f5e3445d RGS |
14 | * Any changes made here will be lost! |
15 | * | |
16 | * Edit those files and run 'make regen_headers' to effect changes. | |
17 | */ | |
1d7c1841 | 18 | |
1d7c1841 | 19 | START_EXTERN_C |
3f1866a8 | 20 | #ifndef NO_MATHOMS |
3d81eea6 KW |
21 | PERL_CALLCONV UV ASCII_TO_NEED(const UV enc, const UV ch) |
22 | __attribute__deprecated__ | |
23 | __attribute__warn_unused_result__ | |
24 | __attribute__pure__; | |
2015d234 | 25 | #define PERL_ARGS_ASSERT_ASCII_TO_NEED |
3f1866a8 | 26 | #endif |
3d81eea6 | 27 | |
74804ad1 KW |
28 | #ifndef PERL_NO_INLINE_FUNCTIONS |
29 | PERL_STATIC_INLINE I32 * Perl_CvDEPTH(const CV * const sv); | |
30 | #define PERL_ARGS_ASSERT_CVDEPTH \ | |
31 | assert(sv) | |
32 | #endif | |
33 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
34 | PERL_STATIC_INLINE GV * Perl_CvGV(pTHX_ CV *sv); | |
35 | #define PERL_ARGS_ASSERT_CVGV \ | |
36 | assert(sv) | |
37 | #endif | |
6ba07ce1 | 38 | PERL_CALLCONV int Perl_Gv_AMupdate(pTHX_ HV* stash, bool destructing); |
e8a67806 NC |
39 | #define PERL_ARGS_ASSERT_GV_AMUPDATE \ |
40 | assert(stash) | |
3f1866a8 | 41 | #ifndef NO_MATHOMS |
3d81eea6 KW |
42 | PERL_CALLCONV UV NATIVE_TO_NEED(const UV enc, const UV ch) |
43 | __attribute__deprecated__ | |
44 | __attribute__warn_unused_result__ | |
45 | __attribute__pure__; | |
2015d234 | 46 | #define PERL_ARGS_ASSERT_NATIVE_TO_NEED |
3f1866a8 | 47 | #endif |
3d81eea6 | 48 | |
2ac0ce0e KW |
49 | #ifndef PERL_NO_INLINE_FUNCTIONS |
50 | PERL_STATIC_INLINE I32 Perl_POPMARK(pTHX); | |
51 | #define PERL_ARGS_ASSERT_POPMARK | |
52 | #endif | |
e8a67806 | 53 | PERL_CALLCONV const char * Perl_PerlIO_context_layers(pTHX_ const char *mode); |
2015d234 | 54 | #define PERL_ARGS_ASSERT_PERLIO_CONTEXT_LAYERS |
884fc2d3 | 55 | PERL_CALLCONV int Perl_PerlLIO_dup2_cloexec(pTHX_ int oldfd, int newfd); |
2015d234 | 56 | #define PERL_ARGS_ASSERT_PERLLIO_DUP2_CLOEXEC |
f9821aff Z |
57 | PERL_CALLCONV int Perl_PerlLIO_dup_cloexec(pTHX_ int oldfd) |
58 | __attribute__warn_unused_result__; | |
2015d234 | 59 | #define PERL_ARGS_ASSERT_PERLLIO_DUP_CLOEXEC |
f9821aff Z |
60 | |
61 | PERL_CALLCONV int Perl_PerlLIO_open3_cloexec(pTHX_ const char *file, int flag, int perm) | |
62 | __attribute__warn_unused_result__; | |
63 | #define PERL_ARGS_ASSERT_PERLLIO_OPEN3_CLOEXEC \ | |
64 | assert(file) | |
65 | ||
66 | PERL_CALLCONV int Perl_PerlLIO_open_cloexec(pTHX_ const char *file, int flag) | |
67 | __attribute__warn_unused_result__; | |
68 | #define PERL_ARGS_ASSERT_PERLLIO_OPEN_CLOEXEC \ | |
69 | assert(file) | |
70 | ||
9c10ff02 KW |
71 | /* PERL_CALLCONV const XOP * Perl_custom_op_xop(pTHX_ const OP *o); */ |
72 | #define PERL_ARGS_ASSERT_PERL_CUSTOM_OP_XOP | |
9aac5db8 | 73 | PERL_CALLCONV const char* Perl_setlocale(const int category, const char* locale); |
2015d234 | 74 | #define PERL_ARGS_ASSERT_PERL_SETLOCALE |
bdef45de KW |
75 | #ifndef PERL_NO_INLINE_FUNCTIONS |
76 | PERL_STATIC_INLINE struct regexp * Perl_ReANY(const REGEXP * const re); | |
77 | #define PERL_ARGS_ASSERT_REANY \ | |
78 | assert(re) | |
79 | #endif | |
8be227ab | 80 | PERL_CALLCONV void* Perl_Slab_Alloc(pTHX_ size_t sz) |
8be227ab | 81 | __attribute__warn_unused_result__; |
2015d234 | 82 | #define PERL_ARGS_ASSERT_SLAB_ALLOC |
8be227ab | 83 | |
6ba07ce1 | 84 | PERL_CALLCONV void Perl_Slab_Free(pTHX_ void *op); |
8be227ab FC |
85 | #define PERL_ARGS_ASSERT_SLAB_FREE \ |
86 | assert(op) | |
3f2f854a | 87 | #ifndef PERL_NO_INLINE_FUNCTIONS |
1bd041dc KW |
88 | PERL_STATIC_INLINE void Perl_SvAMAGIC_off(SV *sv); |
89 | #define PERL_ARGS_ASSERT_SVAMAGIC_OFF \ | |
90 | assert(sv) | |
91 | #endif | |
92 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
93 | PERL_STATIC_INLINE void Perl_SvAMAGIC_on(SV *sv); | |
94 | #define PERL_ARGS_ASSERT_SVAMAGIC_ON \ | |
95 | assert(sv) | |
96 | #endif | |
97 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
3f2f854a KW |
98 | PERL_STATIC_INLINE void Perl_SvREFCNT_dec(pTHX_ SV *sv); |
99 | #define PERL_ARGS_ASSERT_SVREFCNT_DEC | |
100 | #endif | |
101 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
102 | PERL_STATIC_INLINE void Perl_SvREFCNT_dec_NN(pTHX_ SV *sv); | |
103 | #define PERL_ARGS_ASSERT_SVREFCNT_DEC_NN \ | |
104 | assert(sv) | |
105 | #endif | |
106 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
107 | PERL_STATIC_INLINE SV * Perl_SvREFCNT_inc(SV *sv); | |
108 | #define PERL_ARGS_ASSERT_SVREFCNT_INC | |
109 | #endif | |
110 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
111 | PERL_STATIC_INLINE SV * Perl_SvREFCNT_inc_NN(SV *sv); | |
112 | #define PERL_ARGS_ASSERT_SVREFCNT_INC_NN \ | |
113 | assert(sv) | |
114 | #endif | |
115 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
116 | PERL_STATIC_INLINE void Perl_SvREFCNT_inc_void(SV *sv); | |
117 | #define PERL_ARGS_ASSERT_SVREFCNT_INC_VOID | |
118 | #endif | |
2ac0ce0e KW |
119 | #ifndef PERL_NO_INLINE_FUNCTIONS |
120 | PERL_STATIC_INLINE I32 Perl_TOPMARK(pTHX); | |
121 | #define PERL_ARGS_ASSERT_TOPMARK | |
122 | #endif | |
63ab03b3 | 123 | PERL_CALLCONV char * Perl__byte_dump_string(pTHX_ const U8 * const start, const STRLEN len, const bool format); |
7e2f38b2 | 124 | #define PERL_ARGS_ASSERT__BYTE_DUMP_STRING \ |
63ab03b3 | 125 | assert(start) |
9cbfb8ab KW |
126 | PERL_CALLCONV void Perl__force_out_malformed_utf8_message(pTHX_ const U8 *const p, const U8 * const e, const U32 flags, const bool die_here); |
127 | #define PERL_ARGS_ASSERT__FORCE_OUT_MALFORMED_UTF8_MESSAGE \ | |
128 | assert(p); assert(e) | |
1b292063 | 129 | PERL_CALLCONV Size_t Perl__inverse_folds(pTHX_ const UV cp, U32 * first_folds_to, const U32 ** remaining_folds_to) |
b74fe592 KW |
130 | __attribute__warn_unused_result__; |
131 | #define PERL_ARGS_ASSERT__INVERSE_FOLDS \ | |
132 | assert(first_folds_to); assert(remaining_folds_to) | |
133 | ||
d6ded950 | 134 | PERL_CALLCONV bool Perl__is_in_locale_category(pTHX_ const bool compiling, const int category); |
2015d234 | 135 | #define PERL_ARGS_ASSERT__IS_IN_LOCALE_CATEGORY |
922e8cb4 KW |
136 | PERL_CALLCONV bool Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c) |
137 | __attribute__warn_unused_result__; | |
2015d234 | 138 | #define PERL_ARGS_ASSERT__IS_UNI_FOO |
922e8cb4 | 139 | |
eba68aa0 KW |
140 | PERL_CALLCONV bool Perl__is_uni_perl_idcont(pTHX_ UV c) |
141 | __attribute__warn_unused_result__; | |
2015d234 | 142 | #define PERL_ARGS_ASSERT__IS_UNI_PERL_IDCONT |
eba68aa0 | 143 | |
f91dcd13 KW |
144 | PERL_CALLCONV bool Perl__is_uni_perl_idstart(pTHX_ UV c) |
145 | __attribute__warn_unused_result__; | |
2015d234 | 146 | #define PERL_ARGS_ASSERT__IS_UNI_PERL_IDSTART |
f91dcd13 | 147 | |
dd1a3ba7 | 148 | PERL_CALLCONV bool Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p, const U8 * const e) |
da8c1a98 | 149 | __attribute__warn_unused_result__; |
dd1a3ba7 | 150 | #define PERL_ARGS_ASSERT__IS_UTF8_FOO \ |
da8c1a98 KW |
151 | assert(p); assert(e) |
152 | ||
dd1a3ba7 | 153 | PERL_CALLCONV bool Perl__is_utf8_perl_idcont(pTHX_ const U8 *p, const U8 * const e) |
6ba07ce1 | 154 | __attribute__warn_unused_result__; |
dd1a3ba7 | 155 | #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT \ |
da8c1a98 KW |
156 | assert(p); assert(e) |
157 | ||
dd1a3ba7 | 158 | PERL_CALLCONV bool Perl__is_utf8_perl_idstart(pTHX_ const U8 *p, const U8 * const e) |
da8c1a98 | 159 | __attribute__warn_unused_result__; |
dd1a3ba7 | 160 | #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART \ |
da8c1a98 KW |
161 | assert(p); assert(e) |
162 | ||
6ba07ce1 | 163 | PERL_CALLCONV UV Perl__to_uni_fold_flags(pTHX_ UV c, U8 *p, STRLEN *lenp, U8 flags); |
36bb2ab6 KW |
164 | #define PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS \ |
165 | assert(p); assert(lenp) | |
059703b0 | 166 | PERL_CALLCONV UV Perl__to_utf8_fold_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, U8 flags); |
36bb2ab6 | 167 | #define PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS \ |
059703b0 KW |
168 | assert(p); assert(ustrp) |
169 | PERL_CALLCONV UV Perl__to_utf8_lower_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 170 | #define PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS \ |
059703b0 KW |
171 | assert(p); assert(ustrp) |
172 | PERL_CALLCONV UV Perl__to_utf8_title_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 173 | #define PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS \ |
059703b0 KW |
174 | assert(p); assert(ustrp) |
175 | PERL_CALLCONV UV Perl__to_utf8_upper_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 176 | #define PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS \ |
059703b0 | 177 | assert(p); assert(ustrp) |
e6a4ffc3 KW |
178 | PERL_CALLCONV UV Perl__utf8n_to_uvchr_msgs_helper(const U8 *s, STRLEN curlen, STRLEN *retlen, const U32 flags, U32 * errors, AV ** msgs); |
179 | #define PERL_ARGS_ASSERT__UTF8N_TO_UVCHR_MSGS_HELPER \ | |
180 | assert(s) | |
2726666d | 181 | PERL_CALLCONV void Perl__warn_problematic_locale(void); |
2015d234 | 182 | #define PERL_ARGS_ASSERT__WARN_PROBLEMATIC_LOCALE |
cc8b45bd AL |
183 | PERL_CALLCONV_NO_RET void Perl_abort_execution(pTHX_ const char * const msg, const char * const name) |
184 | __attribute__noreturn__; | |
c77da5ff KW |
185 | #define PERL_ARGS_ASSERT_ABORT_EXECUTION \ |
186 | assert(msg); assert(name) | |
cc8b45bd | 187 | |
6cb4123e | 188 | PERL_CALLCONV LOGOP* Perl_alloc_LOGOP(pTHX_ I32 type, OP *first, OP *other); |
2015d234 | 189 | #define PERL_ARGS_ASSERT_ALLOC_LOGOP |
6ba07ce1 | 190 | PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags); |
e8a67806 NC |
191 | #define PERL_ARGS_ASSERT_ALLOCMY \ |
192 | assert(name) | |
6ba07ce1 | 193 | PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir); |
7918f24d NC |
194 | #define PERL_ARGS_ASSERT_AMAGIC_CALL \ |
195 | assert(left); assert(right) | |
6ba07ce1 | 196 | PERL_CALLCONV SV * Perl_amagic_deref_call(pTHX_ SV *ref, int method); |
25a9ffce NC |
197 | #define PERL_ARGS_ASSERT_AMAGIC_DEREF_CALL \ |
198 | assert(ref) | |
8d569291 | 199 | PERL_CALLCONV bool Perl_amagic_is_enabled(pTHX_ int method); |
2015d234 | 200 | #define PERL_ARGS_ASSERT_AMAGIC_IS_ENABLED |
a5d565cd | 201 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 202 | PERL_STATIC_INLINE void Perl_append_utf8_from_native_byte(const U8 byte, U8** dest); |
a5d565cd JH |
203 | #define PERL_ARGS_ASSERT_APPEND_UTF8_FROM_NATIVE_BYTE \ |
204 | assert(dest) | |
205 | #endif | |
6ba07ce1 | 206 | PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp); |
7918f24d NC |
207 | #define PERL_ARGS_ASSERT_APPLY \ |
208 | assert(mark); assert(sp) | |
6ba07ce1 | 209 | PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len); |
7918f24d NC |
210 | #define PERL_ARGS_ASSERT_APPLY_ATTRS_STRING \ |
211 | assert(stashpv); assert(cv); assert(attrstr) | |
e8a67806 | 212 | PERL_CALLCONV void Perl_atfork_lock(void); |
2015d234 | 213 | #define PERL_ARGS_ASSERT_ATFORK_LOCK |
e8a67806 | 214 | PERL_CALLCONV void Perl_atfork_unlock(void); |
2015d234 | 215 | #define PERL_ARGS_ASSERT_ATFORK_UNLOCK |
6ba07ce1 | 216 | PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV *av); |
e8a67806 NC |
217 | #define PERL_ARGS_ASSERT_AV_ARYLEN_P \ |
218 | assert(av) | |
6ba07ce1 | 219 | PERL_CALLCONV void Perl_av_clear(pTHX_ AV *av); |
7918f24d NC |
220 | #define PERL_ARGS_ASSERT_AV_CLEAR \ |
221 | assert(av) | |
6ba07ce1 | 222 | PERL_CALLCONV void Perl_av_create_and_push(pTHX_ AV **const avp, SV *const val); |
e8a67806 NC |
223 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_PUSH \ |
224 | assert(avp); assert(val) | |
6ba07ce1 | 225 | PERL_CALLCONV SV** Perl_av_create_and_unshift_one(pTHX_ AV **const avp, SV *const val); |
e8a67806 NC |
226 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_UNSHIFT_ONE \ |
227 | assert(avp); assert(val) | |
6ba07ce1 | 228 | PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV *av, SSize_t key, I32 flags); |
7918f24d NC |
229 | #define PERL_ARGS_ASSERT_AV_DELETE \ |
230 | assert(av) | |
c70927a6 | 231 | PERL_CALLCONV bool Perl_av_exists(pTHX_ AV *av, SSize_t key) |
6ba07ce1 | 232 | __attribute__warn_unused_result__; |
7918f24d NC |
233 | #define PERL_ARGS_ASSERT_AV_EXISTS \ |
234 | assert(av) | |
a3b680e6 | 235 | |
6ba07ce1 | 236 | PERL_CALLCONV void Perl_av_extend(pTHX_ AV *av, SSize_t key); |
7918f24d NC |
237 | #define PERL_ARGS_ASSERT_AV_EXTEND \ |
238 | assert(av) | |
6ba07ce1 | 239 | PERL_CALLCONV void Perl_av_extend_guts(pTHX_ AV *av, SSize_t key, SSize_t *maxp, SV ***allocp, SV ***arrayp); |
7261499d FC |
240 | #define PERL_ARGS_ASSERT_AV_EXTEND_GUTS \ |
241 | assert(maxp); assert(allocp); assert(arrayp) | |
c70927a6 | 242 | PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV *av, SSize_t key, I32 lval) |
6ba07ce1 | 243 | __attribute__warn_unused_result__; |
7918f24d NC |
244 | #define PERL_ARGS_ASSERT_AV_FETCH \ |
245 | assert(av) | |
a3b680e6 | 246 | |
6ba07ce1 | 247 | PERL_CALLCONV void Perl_av_fill(pTHX_ AV *av, SSize_t fill); |
7918f24d NC |
248 | #define PERL_ARGS_ASSERT_AV_FILL \ |
249 | assert(av) | |
6ba07ce1 | 250 | PERL_CALLCONV IV* Perl_av_iter_p(pTHX_ AV *av); |
e8a67806 NC |
251 | #define PERL_ARGS_ASSERT_AV_ITER_P \ |
252 | assert(av) | |
c70927a6 | 253 | PERL_CALLCONV SSize_t Perl_av_len(pTHX_ AV *av) |
6ba07ce1 | 254 | __attribute__warn_unused_result__; |
7918f24d NC |
255 | #define PERL_ARGS_ASSERT_AV_LEN \ |
256 | assert(av) | |
a3b680e6 | 257 | |
c70927a6 | 258 | PERL_CALLCONV AV* Perl_av_make(pTHX_ SSize_t size, SV **strp) |
6ba07ce1 | 259 | __attribute__warn_unused_result__; |
7918f24d NC |
260 | #define PERL_ARGS_ASSERT_AV_MAKE \ |
261 | assert(strp) | |
a3b680e6 | 262 | |
1f1dcfb5 FC |
263 | PERL_CALLCONV SV* Perl_av_nonelem(pTHX_ AV *av, SSize_t ix); |
264 | #define PERL_ARGS_ASSERT_AV_NONELEM \ | |
265 | assert(av) | |
6ba07ce1 | 266 | PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV *av); |
7918f24d NC |
267 | #define PERL_ARGS_ASSERT_AV_POP \ |
268 | assert(av) | |
6ba07ce1 | 269 | PERL_CALLCONV void Perl_av_push(pTHX_ AV *av, SV *val); |
7918f24d | 270 | #define PERL_ARGS_ASSERT_AV_PUSH \ |
06942096 | 271 | assert(av); assert(val) |
6ba07ce1 | 272 | PERL_CALLCONV void Perl_av_reify(pTHX_ AV *av); |
7918f24d NC |
273 | #define PERL_ARGS_ASSERT_AV_REIFY \ |
274 | assert(av) | |
4048f010 | 275 | PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV *av) |
6ba07ce1 | 276 | __attribute__warn_unused_result__; |
7918f24d NC |
277 | #define PERL_ARGS_ASSERT_AV_SHIFT \ |
278 | assert(av) | |
7a5b473e | 279 | |
6ba07ce1 | 280 | PERL_CALLCONV SV** Perl_av_store(pTHX_ AV *av, SSize_t key, SV *val); |
7918f24d NC |
281 | #define PERL_ARGS_ASSERT_AV_STORE \ |
282 | assert(av) | |
ef9e3b4d | 283 | /* PERL_CALLCONV SSize_t av_tindex(pTHX_ AV *av) |
6ba07ce1 | 284 | __attribute__warn_unused_result__; */ |
2015d234 | 285 | #define PERL_ARGS_ASSERT_AV_TINDEX |
12719193 | 286 | |
a5d565cd | 287 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 288 | PERL_STATIC_INLINE SSize_t Perl_av_top_index(pTHX_ AV *av) |
a5d565cd JH |
289 | __attribute__warn_unused_result__; |
290 | #define PERL_ARGS_ASSERT_AV_TOP_INDEX \ | |
291 | assert(av) | |
292 | #endif | |
293 | ||
6ba07ce1 | 294 | PERL_CALLCONV void Perl_av_undef(pTHX_ AV *av); |
7918f24d NC |
295 | #define PERL_ARGS_ASSERT_AV_UNDEF \ |
296 | assert(av) | |
6ba07ce1 | 297 | PERL_CALLCONV void Perl_av_unshift(pTHX_ AV *av, SSize_t num); |
7918f24d NC |
298 | #define PERL_ARGS_ASSERT_AV_UNSHIFT \ |
299 | assert(av) | |
4048f010 | 300 | PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP *left, OP *right) |
6ba07ce1 | 301 | __attribute__warn_unused_result__; |
7918f24d NC |
302 | #define PERL_ARGS_ASSERT_BIND_MATCH \ |
303 | assert(left); assert(right) | |
a3b680e6 AL |
304 | |
305 | PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq) | |
6472dca1 | 306 | __attribute__warn_unused_result__; |
2015d234 | 307 | #define PERL_ARGS_ASSERT_BLOCK_END |
a3b680e6 | 308 | |
1c23e2bd | 309 | PERL_CALLCONV U8 Perl_block_gimme(pTHX) |
abb2c242 | 310 | __attribute__warn_unused_result__; |
2015d234 | 311 | #define PERL_ARGS_ASSERT_BLOCK_GIMME |
a3b680e6 AL |
312 | |
313 | PERL_CALLCONV int Perl_block_start(pTHX_ int full) | |
abb2c242 | 314 | __attribute__warn_unused_result__; |
2015d234 | 315 | #define PERL_ARGS_ASSERT_BLOCK_START |
a3b680e6 | 316 | |
6ba07ce1 | 317 | PERL_CALLCONV void Perl_blockhook_register(pTHX_ BHK *hk); |
bb6c22e7 BM |
318 | #define PERL_ARGS_ASSERT_BLOCKHOOK_REGISTER \ |
319 | assert(hk) | |
36ed5425 | 320 | PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); |
2015d234 | 321 | #define PERL_ARGS_ASSERT_BOOT_CORE_PERLIO |
e8a67806 | 322 | PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX); |
2015d234 | 323 | #define PERL_ARGS_ASSERT_BOOT_CORE_UNIVERSAL |
e8a67806 | 324 | PERL_CALLCONV void Perl_boot_core_mro(pTHX); |
2015d234 | 325 | #define PERL_ARGS_ASSERT_BOOT_CORE_MRO |
6ba07ce1 | 326 | PERL_CALLCONV int Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen); |
fed3ba5d NC |
327 | #define PERL_ARGS_ASSERT_BYTES_CMP_UTF8 \ |
328 | assert(b); assert(u) | |
41ae6089 | 329 | PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *lenp, bool *is_utf8p); |
e8a67806 | 330 | #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8 \ |
41ae6089 | 331 | assert(s); assert(lenp); assert(is_utf8p) |
976c1b08 KW |
332 | PERL_CALLCONV U8* Perl_bytes_from_utf8_loc(const U8 *s, STRLEN *lenp, bool *is_utf8p, const U8 ** first_unconverted); |
333 | #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8_LOC \ | |
334 | assert(s); assert(lenp); assert(is_utf8p) | |
09af0336 | 335 | PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *lenp); |
e8a67806 | 336 | #define PERL_ARGS_ASSERT_BYTES_TO_UTF8 \ |
09af0336 | 337 | assert(s); assert(lenp) |
6ba07ce1 | 338 | PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv); |
e8a67806 NC |
339 | #define PERL_ARGS_ASSERT_CALL_ARGV \ |
340 | assert(sub_name); assert(argv) | |
e8a67806 | 341 | PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr); |
2015d234 | 342 | #define PERL_ARGS_ASSERT_CALL_ATEXIT |
6ba07ce1 | 343 | PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV *paramList); |
7918f24d NC |
344 | #define PERL_ARGS_ASSERT_CALL_LIST \ |
345 | assert(paramList) | |
6ba07ce1 | 346 | PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags); |
e8a67806 NC |
347 | #define PERL_ARGS_ASSERT_CALL_METHOD \ |
348 | assert(methname) | |
6ba07ce1 | 349 | PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags); |
e8a67806 NC |
350 | #define PERL_ARGS_ASSERT_CALL_PV \ |
351 | assert(sub_name) | |
8162b70e | 352 | PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, volatile I32 flags); |
e8a67806 NC |
353 | #define PERL_ARGS_ASSERT_CALL_SV \ |
354 | assert(sv) | |
2fefa6c7 | 355 | PERL_CALLCONV const PERL_CONTEXT * Perl_caller_cx(pTHX_ I32 level, const PERL_CONTEXT **dbcxp); |
2015d234 | 356 | #define PERL_ARGS_ASSERT_CALLER_CX |
e8a67806 NC |
357 | PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size) |
358 | __attribute__malloc__ | |
359 | __attribute__warn_unused_result__; | |
2015d234 | 360 | #define PERL_ARGS_ASSERT_CALLOC |
e8a67806 | 361 | |
ae1951c1 | 362 | PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t* statbufp) |
6ba07ce1 | 363 | __attribute__warn_unused_result__; |
7918f24d NC |
364 | #define PERL_ARGS_ASSERT_CANDO \ |
365 | assert(statbufp) | |
f54cb97a | 366 | |
ddeaf645 | 367 | PERL_CALLCONV I32 Perl_cast_i32(NV f) |
53c1dcc0 | 368 | __attribute__warn_unused_result__; |
2015d234 | 369 | #define PERL_ARGS_ASSERT_CAST_I32 |
53c1dcc0 | 370 | |
ddeaf645 | 371 | PERL_CALLCONV IV Perl_cast_iv(NV f) |
53c1dcc0 | 372 | __attribute__warn_unused_result__; |
2015d234 | 373 | #define PERL_ARGS_ASSERT_CAST_IV |
53c1dcc0 | 374 | |
ddeaf645 | 375 | PERL_CALLCONV U32 Perl_cast_ulong(NV f) |
53c1dcc0 | 376 | __attribute__warn_unused_result__; |
2015d234 | 377 | #define PERL_ARGS_ASSERT_CAST_ULONG |
53c1dcc0 | 378 | |
ddeaf645 | 379 | PERL_CALLCONV UV Perl_cast_uv(NV f) |
53c1dcc0 | 380 | __attribute__warn_unused_result__; |
2015d234 | 381 | #define PERL_ARGS_ASSERT_CAST_UV |
53c1dcc0 | 382 | |
6ba07ce1 | 383 | PERL_CALLCONV bool Perl_check_utf8_print(pTHX_ const U8 *s, const STRLEN len); |
0876b9a0 KW |
384 | #define PERL_ARGS_ASSERT_CHECK_UTF8_PRINT \ |
385 | assert(s) | |
e8a67806 | 386 | PERL_CALLCONV OP * Perl_ck_anoncode(pTHX_ OP *o) |
6ba07ce1 | 387 | __attribute__warn_unused_result__; |
e8a67806 NC |
388 | #define PERL_ARGS_ASSERT_CK_ANONCODE \ |
389 | assert(o) | |
2fefa6c7 | 390 | |
9ce1fb7d | 391 | PERL_CALLCONV OP * Perl_ck_backtick(pTHX_ OP *o) |
6ba07ce1 | 392 | __attribute__warn_unused_result__; |
9ce1fb7d FC |
393 | #define PERL_ARGS_ASSERT_CK_BACKTICK \ |
394 | assert(o) | |
395 | ||
e8a67806 | 396 | PERL_CALLCONV OP * Perl_ck_bitop(pTHX_ OP *o) |
6ba07ce1 | 397 | __attribute__warn_unused_result__; |
e8a67806 NC |
398 | #define PERL_ARGS_ASSERT_CK_BITOP \ |
399 | assert(o) | |
2fefa6c7 | 400 | |
89474f50 | 401 | PERL_CALLCONV OP * Perl_ck_cmp(pTHX_ OP *o) |
6ba07ce1 | 402 | __attribute__warn_unused_result__; |
89474f50 FC |
403 | #define PERL_ARGS_ASSERT_CK_CMP \ |
404 | assert(o) | |
405 | ||
e8a67806 | 406 | PERL_CALLCONV OP * Perl_ck_concat(pTHX_ OP *o) |
6ba07ce1 | 407 | __attribute__warn_unused_result__; |
e8a67806 NC |
408 | #define PERL_ARGS_ASSERT_CK_CONCAT \ |
409 | assert(o) | |
9dcc53ea | 410 | |
e8a67806 | 411 | PERL_CALLCONV OP * Perl_ck_defined(pTHX_ OP *o) |
6ba07ce1 | 412 | __attribute__warn_unused_result__; |
e8a67806 NC |
413 | #define PERL_ARGS_ASSERT_CK_DEFINED \ |
414 | assert(o) | |
f54cb97a | 415 | |
e8a67806 | 416 | PERL_CALLCONV OP * Perl_ck_delete(pTHX_ OP *o) |
6ba07ce1 | 417 | __attribute__warn_unused_result__; |
e8a67806 NC |
418 | #define PERL_ARGS_ASSERT_CK_DELETE \ |
419 | assert(o) | |
f54cb97a | 420 | |
e8a67806 | 421 | PERL_CALLCONV OP * Perl_ck_each(pTHX_ OP *o) |
6ba07ce1 | 422 | __attribute__warn_unused_result__; |
e8a67806 NC |
423 | #define PERL_ARGS_ASSERT_CK_EACH \ |
424 | assert(o) | |
f54cb97a | 425 | |
6ba07ce1 | 426 | PERL_CALLCONV OP* Perl_ck_entersub_args_core(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
4aaa4757 FC |
427 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_CORE \ |
428 | assert(entersubop); assert(namegv); assert(protosv) | |
6ba07ce1 | 429 | PERL_CALLCONV OP* Perl_ck_entersub_args_list(pTHX_ OP *entersubop); |
d9088386 Z |
430 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_LIST \ |
431 | assert(entersubop) | |
6ba07ce1 | 432 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
d9088386 Z |
433 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO \ |
434 | assert(entersubop); assert(namegv); assert(protosv) | |
6ba07ce1 | 435 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto_or_list(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
d9088386 Z |
436 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO_OR_LIST \ |
437 | assert(entersubop); assert(namegv); assert(protosv) | |
e8a67806 | 438 | PERL_CALLCONV OP * Perl_ck_eof(pTHX_ OP *o) |
6ba07ce1 | 439 | __attribute__warn_unused_result__; |
e8a67806 NC |
440 | #define PERL_ARGS_ASSERT_CK_EOF \ |
441 | assert(o) | |
cbf82dd0 | 442 | |
e8a67806 | 443 | PERL_CALLCONV OP * Perl_ck_eval(pTHX_ OP *o) |
6ba07ce1 | 444 | __attribute__warn_unused_result__; |
e8a67806 NC |
445 | #define PERL_ARGS_ASSERT_CK_EVAL \ |
446 | assert(o) | |
f54cb97a | 447 | |
e8a67806 | 448 | PERL_CALLCONV OP * Perl_ck_exec(pTHX_ OP *o) |
6ba07ce1 | 449 | __attribute__warn_unused_result__; |
e8a67806 NC |
450 | #define PERL_ARGS_ASSERT_CK_EXEC \ |
451 | assert(o) | |
62d55b22 | 452 | |
e8a67806 | 453 | PERL_CALLCONV OP * Perl_ck_exists(pTHX_ OP *o) |
6ba07ce1 | 454 | __attribute__warn_unused_result__; |
e8a67806 NC |
455 | #define PERL_ARGS_ASSERT_CK_EXISTS \ |
456 | assert(o) | |
255164ba | 457 | |
e8a67806 | 458 | PERL_CALLCONV OP * Perl_ck_ftst(pTHX_ OP *o) |
6ba07ce1 | 459 | __attribute__warn_unused_result__; |
e8a67806 NC |
460 | #define PERL_ARGS_ASSERT_CK_FTST \ |
461 | assert(o) | |
255164ba | 462 | |
e8a67806 | 463 | PERL_CALLCONV OP * Perl_ck_fun(pTHX_ OP *o) |
6ba07ce1 | 464 | __attribute__warn_unused_result__; |
e8a67806 NC |
465 | #define PERL_ARGS_ASSERT_CK_FUN \ |
466 | assert(o) | |
255164ba | 467 | |
e8a67806 | 468 | PERL_CALLCONV OP * Perl_ck_glob(pTHX_ OP *o) |
6ba07ce1 | 469 | __attribute__warn_unused_result__; |
e8a67806 NC |
470 | #define PERL_ARGS_ASSERT_CK_GLOB \ |
471 | assert(o) | |
255164ba | 472 | |
e8a67806 | 473 | PERL_CALLCONV OP * Perl_ck_grep(pTHX_ OP *o) |
6ba07ce1 | 474 | __attribute__warn_unused_result__; |
e8a67806 NC |
475 | #define PERL_ARGS_ASSERT_CK_GREP \ |
476 | assert(o) | |
255164ba | 477 | |
e8a67806 | 478 | PERL_CALLCONV OP * Perl_ck_index(pTHX_ OP *o) |
6ba07ce1 | 479 | __attribute__warn_unused_result__; |
e8a67806 NC |
480 | #define PERL_ARGS_ASSERT_CK_INDEX \ |
481 | assert(o) | |
f54cb97a | 482 | |
813e85a0 PLE |
483 | PERL_CALLCONV OP * Perl_ck_isa(pTHX_ OP *o) |
484 | __attribute__warn_unused_result__; | |
485 | #define PERL_ARGS_ASSERT_CK_ISA \ | |
486 | assert(o) | |
487 | ||
e8a67806 | 488 | PERL_CALLCONV OP * Perl_ck_join(pTHX_ OP *o) |
6ba07ce1 | 489 | __attribute__warn_unused_result__; |
e8a67806 NC |
490 | #define PERL_ARGS_ASSERT_CK_JOIN \ |
491 | assert(o) | |
f54cb97a | 492 | |
e508c8a4 | 493 | PERL_CALLCONV OP * Perl_ck_length(pTHX_ OP *o) |
6ba07ce1 | 494 | __attribute__warn_unused_result__; |
e508c8a4 MH |
495 | #define PERL_ARGS_ASSERT_CK_LENGTH \ |
496 | assert(o) | |
497 | ||
e8a67806 | 498 | PERL_CALLCONV OP * Perl_ck_lfun(pTHX_ OP *o) |
6ba07ce1 | 499 | __attribute__warn_unused_result__; |
e8a67806 NC |
500 | #define PERL_ARGS_ASSERT_CK_LFUN \ |
501 | assert(o) | |
f54cb97a | 502 | |
e8a67806 | 503 | PERL_CALLCONV OP * Perl_ck_listiob(pTHX_ OP *o) |
6ba07ce1 | 504 | __attribute__warn_unused_result__; |
e8a67806 NC |
505 | #define PERL_ARGS_ASSERT_CK_LISTIOB \ |
506 | assert(o) | |
f54cb97a | 507 | |
e8a67806 | 508 | PERL_CALLCONV OP * Perl_ck_match(pTHX_ OP *o) |
6ba07ce1 | 509 | __attribute__warn_unused_result__; |
e8a67806 NC |
510 | #define PERL_ARGS_ASSERT_CK_MATCH \ |
511 | assert(o) | |
f54cb97a | 512 | |
e8a67806 | 513 | PERL_CALLCONV OP * Perl_ck_method(pTHX_ OP *o) |
6ba07ce1 | 514 | __attribute__warn_unused_result__; |
e8a67806 NC |
515 | #define PERL_ARGS_ASSERT_CK_METHOD \ |
516 | assert(o) | |
a3b680e6 | 517 | |
e8a67806 | 518 | PERL_CALLCONV OP * Perl_ck_null(pTHX_ OP *o) |
6ba07ce1 | 519 | __attribute__warn_unused_result__; |
e8a67806 NC |
520 | #define PERL_ARGS_ASSERT_CK_NULL \ |
521 | assert(o) | |
255164ba | 522 | |
e8a67806 | 523 | PERL_CALLCONV OP * Perl_ck_open(pTHX_ OP *o) |
6ba07ce1 | 524 | __attribute__warn_unused_result__; |
e8a67806 NC |
525 | #define PERL_ARGS_ASSERT_CK_OPEN \ |
526 | assert(o) | |
f54cb97a | 527 | |
eb4ec35b | 528 | PERL_CALLCONV OP * Perl_ck_prototype(pTHX_ OP *o) |
6ba07ce1 | 529 | __attribute__warn_unused_result__; |
eb4ec35b FC |
530 | #define PERL_ARGS_ASSERT_CK_PROTOTYPE \ |
531 | assert(o) | |
532 | ||
e8a67806 | 533 | PERL_CALLCONV OP * Perl_ck_readline(pTHX_ OP *o) |
6ba07ce1 | 534 | __attribute__warn_unused_result__; |
e8a67806 | 535 | #define PERL_ARGS_ASSERT_CK_READLINE \ |
7918f24d | 536 | assert(o) |
f54cb97a | 537 | |
4fec8804 | 538 | PERL_CALLCONV OP * Perl_ck_refassign(pTHX_ OP *o) |
6ba07ce1 | 539 | __attribute__warn_unused_result__; |
4fec8804 FC |
540 | #define PERL_ARGS_ASSERT_CK_REFASSIGN \ |
541 | assert(o) | |
542 | ||
e8a67806 | 543 | PERL_CALLCONV OP * Perl_ck_repeat(pTHX_ OP *o) |
6ba07ce1 | 544 | __attribute__warn_unused_result__; |
e8a67806 NC |
545 | #define PERL_ARGS_ASSERT_CK_REPEAT \ |
546 | assert(o) | |
547 | ||
548 | PERL_CALLCONV OP * Perl_ck_require(pTHX_ OP *o) | |
6ba07ce1 | 549 | __attribute__warn_unused_result__; |
e8a67806 NC |
550 | #define PERL_ARGS_ASSERT_CK_REQUIRE \ |
551 | assert(o) | |
552 | ||
553 | PERL_CALLCONV OP * Perl_ck_return(pTHX_ OP *o) | |
6ba07ce1 | 554 | __attribute__warn_unused_result__; |
e8a67806 NC |
555 | #define PERL_ARGS_ASSERT_CK_RETURN \ |
556 | assert(o) | |
557 | ||
558 | PERL_CALLCONV OP * Perl_ck_rfun(pTHX_ OP *o) | |
6ba07ce1 | 559 | __attribute__warn_unused_result__; |
e8a67806 NC |
560 | #define PERL_ARGS_ASSERT_CK_RFUN \ |
561 | assert(o) | |
562 | ||
563 | PERL_CALLCONV OP * Perl_ck_rvconst(pTHX_ OP *o) | |
6ba07ce1 | 564 | __attribute__warn_unused_result__; |
e8a67806 NC |
565 | #define PERL_ARGS_ASSERT_CK_RVCONST \ |
566 | assert(o) | |
567 | ||
568 | PERL_CALLCONV OP * Perl_ck_sassign(pTHX_ OP *o) | |
6ba07ce1 | 569 | __attribute__warn_unused_result__; |
e8a67806 NC |
570 | #define PERL_ARGS_ASSERT_CK_SASSIGN \ |
571 | assert(o) | |
572 | ||
573 | PERL_CALLCONV OP * Perl_ck_select(pTHX_ OP *o) | |
6ba07ce1 | 574 | __attribute__warn_unused_result__; |
e8a67806 NC |
575 | #define PERL_ARGS_ASSERT_CK_SELECT \ |
576 | assert(o) | |
577 | ||
578 | PERL_CALLCONV OP * Perl_ck_shift(pTHX_ OP *o) | |
6ba07ce1 | 579 | __attribute__warn_unused_result__; |
e8a67806 NC |
580 | #define PERL_ARGS_ASSERT_CK_SHIFT \ |
581 | assert(o) | |
582 | ||
7896dde7 Z |
583 | PERL_CALLCONV OP * Perl_ck_smartmatch(pTHX_ OP *o) |
584 | __attribute__warn_unused_result__; | |
585 | #define PERL_ARGS_ASSERT_CK_SMARTMATCH \ | |
586 | assert(o) | |
587 | ||
e8a67806 | 588 | PERL_CALLCONV OP * Perl_ck_sort(pTHX_ OP *o) |
6ba07ce1 | 589 | __attribute__warn_unused_result__; |
e8a67806 NC |
590 | #define PERL_ARGS_ASSERT_CK_SORT \ |
591 | assert(o) | |
592 | ||
593 | PERL_CALLCONV OP * Perl_ck_spair(pTHX_ OP *o) | |
6ba07ce1 | 594 | __attribute__warn_unused_result__; |
e8a67806 NC |
595 | #define PERL_ARGS_ASSERT_CK_SPAIR \ |
596 | assert(o) | |
597 | ||
598 | PERL_CALLCONV OP * Perl_ck_split(pTHX_ OP *o) | |
6ba07ce1 | 599 | __attribute__warn_unused_result__; |
e8a67806 NC |
600 | #define PERL_ARGS_ASSERT_CK_SPLIT \ |
601 | assert(o) | |
602 | ||
73f4c4fe | 603 | PERL_CALLCONV OP * Perl_ck_stringify(pTHX_ OP *o) |
6ba07ce1 | 604 | __attribute__warn_unused_result__; |
73f4c4fe FC |
605 | #define PERL_ARGS_ASSERT_CK_STRINGIFY \ |
606 | assert(o) | |
607 | ||
e8a67806 | 608 | PERL_CALLCONV OP * Perl_ck_subr(pTHX_ OP *o) |
6ba07ce1 | 609 | __attribute__warn_unused_result__; |
e8a67806 NC |
610 | #define PERL_ARGS_ASSERT_CK_SUBR \ |
611 | assert(o) | |
612 | ||
613 | PERL_CALLCONV OP * Perl_ck_substr(pTHX_ OP *o) | |
6ba07ce1 | 614 | __attribute__warn_unused_result__; |
e8a67806 NC |
615 | #define PERL_ARGS_ASSERT_CK_SUBSTR \ |
616 | assert(o) | |
617 | ||
618 | PERL_CALLCONV OP * Perl_ck_svconst(pTHX_ OP *o) | |
6ba07ce1 | 619 | __attribute__warn_unused_result__; |
e8a67806 NC |
620 | #define PERL_ARGS_ASSERT_CK_SVCONST \ |
621 | assert(o) | |
622 | ||
8dc99089 | 623 | PERL_CALLCONV OP * Perl_ck_tell(pTHX_ OP *o) |
6ba07ce1 | 624 | __attribute__warn_unused_result__; |
8dc99089 FC |
625 | #define PERL_ARGS_ASSERT_CK_TELL \ |
626 | assert(o) | |
627 | ||
e8a67806 | 628 | PERL_CALLCONV OP * Perl_ck_trunc(pTHX_ OP *o) |
6ba07ce1 | 629 | __attribute__warn_unused_result__; |
e8a67806 NC |
630 | #define PERL_ARGS_ASSERT_CK_TRUNC \ |
631 | assert(o) | |
632 | ||
e8a67806 | 633 | PERL_CALLCONV void Perl_ck_warner(pTHX_ U32 err, const char* pat, ...) |
6ba07ce1 | 634 | __attribute__format__(__printf__,pTHX_2,pTHX_3); |
e8a67806 NC |
635 | #define PERL_ARGS_ASSERT_CK_WARNER \ |
636 | assert(pat) | |
637 | ||
638 | PERL_CALLCONV void Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...) | |
6ba07ce1 | 639 | __attribute__format__(__printf__,pTHX_2,pTHX_3); |
e8a67806 NC |
640 | #define PERL_ARGS_ASSERT_CK_WARNER_D \ |
641 | assert(pat) | |
642 | ||
ca0c6e8c KW |
643 | PERL_CALLCONV bool Perl_ckwarn(pTHX_ U32 w) |
644 | __attribute__warn_unused_result__ | |
645 | __attribute__pure__; | |
2015d234 | 646 | #define PERL_ARGS_ASSERT_CKWARN |
ca0c6e8c KW |
647 | |
648 | PERL_CALLCONV bool Perl_ckwarn_d(pTHX_ U32 w) | |
649 | __attribute__warn_unused_result__ | |
650 | __attribute__pure__; | |
2015d234 | 651 | #define PERL_ARGS_ASSERT_CKWARN_D |
ca0c6e8c | 652 | |
6e45d846 DM |
653 | PERL_CALLCONV void Perl_clear_defarray(pTHX_ AV* av, bool abandon); |
654 | #define PERL_ARGS_ASSERT_CLEAR_DEFARRAY \ | |
655 | assert(av) | |
6ba07ce1 | 656 | PERL_CALLCONV const COP* Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop, bool opnext); |
25502127 FC |
657 | #define PERL_ARGS_ASSERT_CLOSEST_COP \ |
658 | assert(cop) | |
6b32f57d | 659 | PERL_CALLCONV OP* Perl_cmpchain_extend(pTHX_ I32 type, OP* ch, OP* right) |
02b85d3d Z |
660 | __attribute__warn_unused_result__; |
661 | #define PERL_ARGS_ASSERT_CMPCHAIN_EXTEND \ | |
662 | assert(ch) | |
663 | ||
664 | PERL_CALLCONV OP* Perl_cmpchain_finish(pTHX_ OP* ch) | |
665 | __attribute__warn_unused_result__; | |
666 | #define PERL_ARGS_ASSERT_CMPCHAIN_FINISH \ | |
667 | assert(ch) | |
668 | ||
6b32f57d | 669 | PERL_CALLCONV OP* Perl_cmpchain_start(pTHX_ I32 type, OP* left, OP* right) |
02b85d3d Z |
670 | __attribute__warn_unused_result__; |
671 | #define PERL_ARGS_ASSERT_CMPCHAIN_START | |
672 | ||
5e6ebb12 KW |
673 | PERL_CALLCONV const char * Perl_cntrl_to_mnemonic(const U8 c) |
674 | __attribute__warn_unused_result__; | |
675 | #define PERL_ARGS_ASSERT_CNTRL_TO_MNEMONIC | |
676 | ||
6ba07ce1 | 677 | PERL_CALLCONV const char * Perl_cop_fetch_label(pTHX_ COP *const cop, STRLEN *len, U32 *flags); |
aebc0cbe FC |
678 | #define PERL_ARGS_ASSERT_COP_FETCH_LABEL \ |
679 | assert(cop) | |
6ba07ce1 | 680 | PERL_CALLCONV void Perl_cop_store_label(pTHX_ COP *const cop, const char *label, STRLEN len, U32 flags); |
aebc0cbe FC |
681 | #define PERL_ARGS_ASSERT_COP_STORE_LABEL \ |
682 | assert(cop); assert(label) | |
6ba07ce1 | 683 | PERL_CALLCONV SV * Perl_core_prototype(pTHX_ SV *sv, const char *name, const int code, int * const opnum); |
b8c38f0a FC |
684 | #define PERL_ARGS_ASSERT_CORE_PROTOTYPE \ |
685 | assert(name) | |
6ba07ce1 | 686 | PERL_CALLCONV OP * Perl_coresub_op(pTHX_ SV *const coreargssv, const int code, const int opnum); |
1e4b6aa1 FC |
687 | #define PERL_ARGS_ASSERT_CORESUB_OP \ |
688 | assert(coreargssv) | |
274ed8ae | 689 | PERL_CALLCONV void Perl_create_eval_scope(pTHX_ OP *retop, U32 flags); |
2015d234 | 690 | #define PERL_ARGS_ASSERT_CREATE_EVAL_SCOPE |
12a2785c | 691 | PERL_CALLCONV_NO_RET void Perl_croak(pTHX_ const char* pat, ...) |
e8a67806 NC |
692 | __attribute__noreturn__ |
693 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
2015d234 | 694 | #define PERL_ARGS_ASSERT_CROAK |
e8a67806 | 695 | |
4fa06845 DM |
696 | PERL_CALLCONV_NO_RET void Perl_croak_caller(const char* pat, ...) |
697 | __attribute__noreturn__ | |
698 | __attribute__format__null_ok__(__printf__,1,2); | |
2015d234 | 699 | #define PERL_ARGS_ASSERT_CROAK_CALLER |
4fa06845 | 700 | |
d68c938a | 701 | PERL_CALLCONV_NO_RET void Perl_croak_memory_wrap(void) |
d1decf2b | 702 | __attribute__noreturn__; |
2015d234 | 703 | #define PERL_ARGS_ASSERT_CROAK_MEMORY_WRAP |
d1decf2b | 704 | |
4cbe3a7d DD |
705 | PERL_CALLCONV_NO_RET void Perl_croak_no_mem(void) |
706 | __attribute__noreturn__; | |
2015d234 | 707 | #define PERL_ARGS_ASSERT_CROAK_NO_MEM |
4cbe3a7d | 708 | |
cb077ed2 | 709 | PERL_CALLCONV_NO_RET void Perl_croak_no_modify(void) |
e8a67806 | 710 | __attribute__noreturn__; |
2015d234 | 711 | #define PERL_ARGS_ASSERT_CROAK_NO_MODIFY |
e8a67806 | 712 | |
3d04513d DD |
713 | PERL_CALLCONV_NO_RET void Perl_croak_popstack(void) |
714 | __attribute__noreturn__; | |
2015d234 | 715 | #define PERL_ARGS_ASSERT_CROAK_POPSTACK |
3d04513d | 716 | |
12a2785c | 717 | PERL_CALLCONV_NO_RET void Perl_croak_sv(pTHX_ SV *baseex) |
6ba07ce1 | 718 | __attribute__noreturn__; |
e8a67806 NC |
719 | #define PERL_ARGS_ASSERT_CROAK_SV \ |
720 | assert(baseex) | |
721 | ||
cb077ed2 | 722 | PERL_CALLCONV_NO_RET void Perl_croak_xs_usage(const CV *const cv, const char *const params) |
6ba07ce1 | 723 | __attribute__noreturn__; |
e8a67806 NC |
724 | #define PERL_ARGS_ASSERT_CROAK_XS_USAGE \ |
725 | assert(cv); assert(params) | |
726 | ||
dc37125b DM |
727 | PERL_CALLCONV Signal_t Perl_csighandler1(int sig); |
728 | #define PERL_ARGS_ASSERT_CSIGHANDLER1 | |
729 | PERL_CALLCONV Signal_t Perl_csighandler3(int sig, Siginfo_t *info, void *uap); | |
730 | #define PERL_ARGS_ASSERT_CSIGHANDLER3 | |
3c13cae6 | 731 | PERL_CALLCONV regexp_engine const * Perl_current_re_engine(pTHX); |
2015d234 | 732 | #define PERL_ARGS_ASSERT_CURRENT_RE_ENGINE |
1545ba5b | 733 | #ifndef NO_MATHOMS |
e8a67806 | 734 | PERL_CALLCONV const char * Perl_custom_op_desc(pTHX_ const OP *o) |
57f51a64 | 735 | __attribute__deprecated__ |
6ba07ce1 | 736 | __attribute__warn_unused_result__; |
e8a67806 NC |
737 | #define PERL_ARGS_ASSERT_CUSTOM_OP_DESC \ |
738 | assert(o) | |
1545ba5b | 739 | #endif |
e8a67806 | 740 | |
ae103e09 | 741 | PERL_CALLCONV XOPRETANY Perl_custom_op_get_field(pTHX_ const OP *o, const xop_flags_enum field) |
6ba07ce1 | 742 | __attribute__warn_unused_result__; |
ae103e09 DD |
743 | #define PERL_ARGS_ASSERT_CUSTOM_OP_GET_FIELD \ |
744 | assert(o) | |
745 | ||
1545ba5b | 746 | #ifndef NO_MATHOMS |
e8a67806 | 747 | PERL_CALLCONV const char * Perl_custom_op_name(pTHX_ const OP *o) |
57f51a64 | 748 | __attribute__deprecated__ |
6ba07ce1 | 749 | __attribute__warn_unused_result__; |
e8a67806 NC |
750 | #define PERL_ARGS_ASSERT_CUSTOM_OP_NAME \ |
751 | assert(o) | |
1545ba5b | 752 | #endif |
e8a67806 | 753 | |
6ba07ce1 | 754 | PERL_CALLCONV void Perl_custom_op_register(pTHX_ Perl_ppaddr_t ppaddr, const XOP *xop); |
1830b3d9 BM |
755 | #define PERL_ARGS_ASSERT_CUSTOM_OP_REGISTER \ |
756 | assert(ppaddr); assert(xop) | |
6ba07ce1 | 757 | PERL_CALLCONV void Perl_cv_ckproto_len_flags(pTHX_ const CV* cv, const GV* gv, const char* p, const STRLEN len, const U32 flags); |
dab1c735 BF |
758 | #define PERL_ARGS_ASSERT_CV_CKPROTO_LEN_FLAGS \ |
759 | assert(cv) | |
6ba07ce1 | 760 | PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto); |
e8a67806 NC |
761 | #define PERL_ARGS_ASSERT_CV_CLONE \ |
762 | assert(proto) | |
6ba07ce1 | 763 | PERL_CALLCONV CV* Perl_cv_clone_into(pTHX_ CV* proto, CV *target); |
6d5c2147 FC |
764 | #define PERL_ARGS_ASSERT_CV_CLONE_INTO \ |
765 | assert(proto); assert(target) | |
ddeaf645 | 766 | PERL_CALLCONV SV* Perl_cv_const_sv(const CV *const cv) |
e8a67806 | 767 | __attribute__warn_unused_result__; |
2015d234 | 768 | #define PERL_ARGS_ASSERT_CV_CONST_SV |
e8a67806 | 769 | |
ddeaf645 | 770 | PERL_CALLCONV SV* Perl_cv_const_sv_or_av(const CV *const cv) |
f815dc14 | 771 | __attribute__warn_unused_result__; |
2015d234 | 772 | #define PERL_ARGS_ASSERT_CV_CONST_SV_OR_AV |
f815dc14 | 773 | |
de0885da | 774 | PERL_CALLCONV void Perl_cv_forget_slab(pTHX_ CV *cv); |
2015d234 | 775 | #define PERL_ARGS_ASSERT_CV_FORGET_SLAB |
6ba07ce1 | 776 | PERL_CALLCONV void Perl_cv_get_call_checker(pTHX_ CV *cv, Perl_call_checker *ckfun_p, SV **ckobj_p); |
d9088386 Z |
777 | #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER \ |
778 | assert(cv); assert(ckfun_p); assert(ckobj_p) | |
71c697de Z |
779 | PERL_CALLCONV void Perl_cv_get_call_checker_flags(pTHX_ CV *cv, U32 gflags, Perl_call_checker *ckfun_p, SV **ckobj_p, U32 *ckflags_p); |
780 | #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER_FLAGS \ | |
781 | assert(cv); assert(ckfun_p); assert(ckobj_p); assert(ckflags_p) | |
6ba07ce1 | 782 | PERL_CALLCONV SV * Perl_cv_name(pTHX_ CV *cv, SV *sv, U32 flags); |
c5569a55 FC |
783 | #define PERL_ARGS_ASSERT_CV_NAME \ |
784 | assert(cv) | |
6ba07ce1 | 785 | PERL_CALLCONV void Perl_cv_set_call_checker(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj); |
d9088386 Z |
786 | #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER \ |
787 | assert(cv); assert(ckfun); assert(ckobj) | |
71c697de | 788 | PERL_CALLCONV void Perl_cv_set_call_checker_flags(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj, U32 ckflags); |
aa38f4b1 FC |
789 | #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER_FLAGS \ |
790 | assert(cv); assert(ckfun); assert(ckobj) | |
6ba07ce1 | 791 | PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv); |
e8a67806 NC |
792 | #define PERL_ARGS_ASSERT_CV_UNDEF \ |
793 | assert(cv) | |
6ba07ce1 | 794 | PERL_CALLCONV void Perl_cv_undef_flags(pTHX_ CV* cv, U32 flags); |
b7acb0a3 FC |
795 | #define PERL_ARGS_ASSERT_CV_UNDEF_FLAGS \ |
796 | assert(cv) | |
6ba07ce1 | 797 | PERL_CALLCONV GV * Perl_cvgv_from_hek(pTHX_ CV* cv); |
ae77754a FC |
798 | #define PERL_ARGS_ASSERT_CVGV_FROM_HEK \ |
799 | assert(cv) | |
6ba07ce1 | 800 | PERL_CALLCONV void Perl_cvgv_set(pTHX_ CV* cv, GV* gv); |
e8a67806 NC |
801 | #define PERL_ARGS_ASSERT_CVGV_SET \ |
802 | assert(cv) | |
6ba07ce1 | 803 | PERL_CALLCONV void Perl_cvstash_set(pTHX_ CV* cv, HV* stash); |
c68d9564 Z |
804 | #define PERL_ARGS_ASSERT_CVSTASH_SET \ |
805 | assert(cv) | |
6ba07ce1 | 806 | PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cx); |
e8a67806 NC |
807 | #define PERL_ARGS_ASSERT_CX_DUMP \ |
808 | assert(cx) | |
e8a67806 NC |
809 | PERL_CALLCONV I32 Perl_cxinc(pTHX) |
810 | __attribute__warn_unused_result__; | |
2015d234 | 811 | #define PERL_ARGS_ASSERT_CXINC |
e8a67806 NC |
812 | |
813 | PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...) | |
6ba07ce1 | 814 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
e8a67806 NC |
815 | #define PERL_ARGS_ASSERT_DEB \ |
816 | assert(pat) | |
817 | ||
818 | PERL_CALLCONV void Perl_deb_stack_all(pTHX); | |
2015d234 | 819 | #define PERL_ARGS_ASSERT_DEB_STACK_ALL |
6ba07ce1 | 820 | PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o); |
e8a67806 NC |
821 | #define PERL_ARGS_ASSERT_DEBOP \ |
822 | assert(o) | |
e8a67806 | 823 | PERL_CALLCONV void Perl_debprofdump(pTHX); |
2015d234 | 824 | #define PERL_ARGS_ASSERT_DEBPROFDUMP |
e8a67806 | 825 | PERL_CALLCONV I32 Perl_debstack(pTHX); |
2015d234 | 826 | #define PERL_ARGS_ASSERT_DEBSTACK |
e8a67806 | 827 | PERL_CALLCONV I32 Perl_debstackptrs(pTHX); |
2015d234 | 828 | #define PERL_ARGS_ASSERT_DEBSTACKPTRS |
13733cde | 829 | PERL_CALLCONV SV * Perl_defelem_target(pTHX_ SV *sv, MAGIC *mg) |
6ba07ce1 | 830 | __attribute__warn_unused_result__; |
13733cde FC |
831 | #define PERL_ARGS_ASSERT_DEFELEM_TARGET \ |
832 | assert(sv) | |
833 | ||
e8a67806 | 834 | PERL_CALLCONV void Perl_delete_eval_scope(pTHX); |
2015d234 | 835 | #define PERL_ARGS_ASSERT_DELETE_EVAL_SCOPE |
6ba07ce1 | 836 | PERL_CALLCONV char* Perl_delimcpy(char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen); |
7918f24d NC |
837 | #define PERL_ARGS_ASSERT_DELIMCPY \ |
838 | assert(to); assert(toend); assert(from); assert(fromend); assert(retlen) | |
ba0a4150 FC |
839 | PERL_CALLCONV char* Perl_delimcpy_no_escape(char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen); |
840 | #define PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE \ | |
841 | assert(to); assert(toend); assert(from); assert(fromend); assert(retlen) | |
e8a67806 | 842 | PERL_CALLCONV void Perl_despatch_signals(pTHX); |
2015d234 | 843 | #define PERL_ARGS_ASSERT_DESPATCH_SIGNALS |
f8d5a522 DD |
844 | PERL_CALLCONV_NO_RET OP* Perl_die(pTHX_ const char* pat, ...) |
845 | __attribute__noreturn__ | |
846 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
2015d234 | 847 | #define PERL_ARGS_ASSERT_DIE |
f8d5a522 DD |
848 | |
849 | PERL_CALLCONV_NO_RET OP* Perl_die_sv(pTHX_ SV *baseex) | |
6ba07ce1 | 850 | __attribute__noreturn__; |
f8d5a522 DD |
851 | #define PERL_ARGS_ASSERT_DIE_SV \ |
852 | assert(baseex) | |
853 | ||
12a2785c | 854 | PERL_CALLCONV_NO_RET void Perl_die_unwind(pTHX_ SV* msv) |
6ba07ce1 | 855 | __attribute__noreturn__; |
c5df3096 | 856 | #define PERL_ARGS_ASSERT_DIE_UNWIND \ |
62705b21 | 857 | assert(msv) |
bb4c52e0 | 858 | |
3f1866a8 KW |
859 | #ifndef NO_MATHOMS |
860 | PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp); | |
7918f24d NC |
861 | #define PERL_ARGS_ASSERT_DO_AEXEC \ |
862 | assert(mark); assert(sp) | |
3f1866a8 | 863 | #endif |
738ab09f | 864 | PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int do_report); |
7918f24d NC |
865 | #define PERL_ARGS_ASSERT_DO_AEXEC5 \ |
866 | assert(mark); assert(sp) | |
1545ba5b | 867 | #ifndef NO_MATHOMS |
57f51a64 KW |
868 | PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
869 | __attribute__deprecated__; | |
7918f24d NC |
870 | #define PERL_ARGS_ASSERT_DO_BINMODE \ |
871 | assert(fp) | |
1545ba5b | 872 | #endif |
57f51a64 | 873 | |
063df69c | 874 | PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit); |
2015d234 | 875 | #define PERL_ARGS_ASSERT_DO_CLOSE |
6ba07ce1 | 876 | PERL_CALLCONV void Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full); |
e8a67806 NC |
877 | #define PERL_ARGS_ASSERT_DO_DUMP_PAD \ |
878 | assert(file) | |
6ba07ce1 | 879 | PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv); |
7918f24d NC |
880 | #define PERL_ARGS_ASSERT_DO_EOF \ |
881 | assert(gv) | |
6ba07ce1 | 882 | PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv); |
e8a67806 NC |
883 | #define PERL_ARGS_ASSERT_DO_GV_DUMP \ |
884 | assert(file); assert(name) | |
6ba07ce1 | 885 | PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv); |
e8a67806 NC |
886 | #define PERL_ARGS_ASSERT_DO_GVGV_DUMP \ |
887 | assert(file); assert(name) | |
6ba07ce1 | 888 | PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv); |
e8a67806 NC |
889 | #define PERL_ARGS_ASSERT_DO_HV_DUMP \ |
890 | assert(file); assert(name) | |
6ba07ce1 | 891 | PERL_CALLCONV void Perl_do_join(pTHX_ SV *sv, SV *delim, SV **mark, SV **sp); |
7918f24d NC |
892 | #define PERL_ARGS_ASSERT_DO_JOIN \ |
893 | assert(sv); assert(delim); assert(mark); assert(sp) | |
6ba07ce1 | 894 | PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim); |
e8a67806 | 895 | #define PERL_ARGS_ASSERT_DO_MAGIC_DUMP \ |
3dc78631 | 896 | assert(file) |
33efebe6 | 897 | PERL_CALLCONV I32 Perl_do_ncmp(pTHX_ SV *const left, SV *const right) |
6ba07ce1 | 898 | __attribute__warn_unused_result__; |
33efebe6 DM |
899 | #define PERL_ARGS_ASSERT_DO_NCMP \ |
900 | assert(left); assert(right) | |
901 | ||
6ba07ce1 | 902 | PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o); |
e8a67806 NC |
903 | #define PERL_ARGS_ASSERT_DO_OP_DUMP \ |
904 | assert(file) | |
3f1866a8 KW |
905 | #ifndef NO_MATHOMS |
906 | PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp); | |
7918f24d NC |
907 | #define PERL_ARGS_ASSERT_DO_OPEN \ |
908 | assert(gv); assert(name) | |
3f1866a8 | 909 | #endif |
6ba07ce1 | 910 | PERL_CALLCONV bool Perl_do_open6(pTHX_ GV *gv, const char *oname, STRLEN len, PerlIO *supplied_fp, SV **svp, U32 num); |
4b451737 NC |
911 | #define PERL_ARGS_ASSERT_DO_OPEN6 \ |
912 | assert(gv); assert(oname) | |
1545ba5b | 913 | #ifndef NO_MATHOMS |
57f51a64 KW |
914 | PERL_CALLCONV bool Perl_do_open9(pTHX_ GV *gv, const char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, I32 num) |
915 | __attribute__deprecated__; | |
7918f24d NC |
916 | #define PERL_ARGS_ASSERT_DO_OPEN9 \ |
917 | assert(gv); assert(name); assert(svs) | |
1545ba5b | 918 | #endif |
57f51a64 | 919 | |
7e30e49f | 920 | PERL_CALLCONV bool Perl_do_open_raw(pTHX_ GV *gv, const char *oname, STRLEN len, int rawmode, int rawperm, Stat_t *statbufp); |
4b451737 NC |
921 | #define PERL_ARGS_ASSERT_DO_OPEN_RAW \ |
922 | assert(gv); assert(oname) | |
6ba07ce1 | 923 | PERL_CALLCONV bool Perl_do_openn(pTHX_ GV *gv, const char *oname, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, I32 num); |
7918f24d NC |
924 | #define PERL_ARGS_ASSERT_DO_OPENN \ |
925 | assert(gv); assert(oname) | |
6ba07ce1 | 926 | PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm); |
e8a67806 NC |
927 | #define PERL_ARGS_ASSERT_DO_PMOP_DUMP \ |
928 | assert(file) | |
6ba07ce1 | 929 | PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp); |
7918f24d NC |
930 | #define PERL_ARGS_ASSERT_DO_PRINT \ |
931 | assert(fp) | |
255164ba DM |
932 | PERL_CALLCONV OP* Perl_do_readline(pTHX) |
933 | __attribute__warn_unused_result__; | |
2015d234 | 934 | #define PERL_ARGS_ASSERT_DO_READLINE |
255164ba | 935 | |
1d7c1841 | 936 | PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence); |
2015d234 | 937 | #define PERL_ARGS_ASSERT_DO_SEEK |
03a22d83 | 938 | PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, SSize_t len, SV** sarg); |
7918f24d NC |
939 | #define PERL_ARGS_ASSERT_DO_SPRINTF \ |
940 | assert(sv); assert(sarg) | |
6ba07ce1 | 941 | PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim); |
e8a67806 NC |
942 | #define PERL_ARGS_ASSERT_DO_SV_DUMP \ |
943 | assert(file) | |
6ba07ce1 | 944 | PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence); |
7918f24d NC |
945 | #define PERL_ARGS_ASSERT_DO_SYSSEEK \ |
946 | assert(gv) | |
255164ba | 947 | PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv) |
6ba07ce1 | 948 | __attribute__warn_unused_result__; |
7918f24d NC |
949 | #define PERL_ARGS_ASSERT_DO_TELL \ |
950 | assert(gv) | |
255164ba | 951 | |
f0fd0980 | 952 | PERL_CALLCONV Size_t Perl_do_trans(pTHX_ SV* sv); |
7918f24d NC |
953 | #define PERL_ARGS_ASSERT_DO_TRANS \ |
954 | assert(sv) | |
be879013 KW |
955 | PERL_CALLCONV I16 Perl_do_uniprop_match(const char * const key, const U16 key_len) |
956 | __attribute__warn_unused_result__; | |
957 | #define PERL_ARGS_ASSERT_DO_UNIPROP_MATCH \ | |
958 | assert(key) | |
959 | ||
d69c4304 | 960 | PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, STRLEN offset, int size); |
7918f24d NC |
961 | #define PERL_ARGS_ASSERT_DO_VECGET \ |
962 | assert(sv) | |
6ba07ce1 | 963 | PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv); |
7918f24d NC |
964 | #define PERL_ARGS_ASSERT_DO_VECSET \ |
965 | assert(sv) | |
6ba07ce1 | 966 | PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right); |
7918f24d NC |
967 | #define PERL_ARGS_ASSERT_DO_VOP \ |
968 | assert(sv); assert(left); assert(right) | |
6ba07ce1 | 969 | PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term, I32 force_builtin); |
7918f24d NC |
970 | #define PERL_ARGS_ASSERT_DOFILE \ |
971 | assert(term) | |
e8a67806 NC |
972 | PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env) |
973 | __attribute__warn_unused_result__; | |
2015d234 | 974 | #define PERL_ARGS_ASSERT_DOING_TAINT |
e8a67806 | 975 | |
6ba07ce1 | 976 | PERL_CALLCONV OP * Perl_doref(pTHX_ OP *o, I32 type, bool set_op_ref); |
e8a67806 NC |
977 | #define PERL_ARGS_ASSERT_DOREF \ |
978 | assert(o) | |
e8a67806 | 979 | PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); |
2015d234 | 980 | #define PERL_ARGS_ASSERT_DOUNWIND |
1c23e2bd | 981 | PERL_CALLCONV U8 Perl_dowantarray(pTHX) |
255164ba | 982 | __attribute__warn_unused_result__; |
2015d234 | 983 | #define PERL_ARGS_ASSERT_DOWANTARRAY |
255164ba | 984 | |
6ba07ce1 | 985 | PERL_CALLCONV void Perl_drand48_init_r(perl_drand48_t *random_state, U32 seed); |
3be8f094 TC |
986 | #define PERL_ARGS_ASSERT_DRAND48_INIT_R \ |
987 | assert(random_state) | |
6ba07ce1 | 988 | PERL_CALLCONV double Perl_drand48_r(perl_drand48_t *random_state); |
3be8f094 TC |
989 | #define PERL_ARGS_ASSERT_DRAND48_R \ |
990 | assert(random_state) | |
1d7c1841 | 991 | PERL_CALLCONV void Perl_dump_all(pTHX); |
2015d234 | 992 | #define PERL_ARGS_ASSERT_DUMP_ALL |
f0e3f042 | 993 | PERL_CALLCONV void Perl_dump_all_perl(pTHX_ bool justperl); |
2015d234 | 994 | #define PERL_ARGS_ASSERT_DUMP_ALL_PERL |
1d7c1841 | 995 | PERL_CALLCONV void Perl_dump_eval(pTHX); |
2015d234 | 996 | #define PERL_ARGS_ASSERT_DUMP_EVAL |
6ba07ce1 | 997 | PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv); |
7918f24d NC |
998 | #define PERL_ARGS_ASSERT_DUMP_FORM \ |
999 | assert(gv) | |
e8a67806 | 1000 | PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) |
6ba07ce1 | 1001 | __attribute__format__(__printf__,pTHX_3,pTHX_4); |
e8a67806 NC |
1002 | #define PERL_ARGS_ASSERT_DUMP_INDENT \ |
1003 | assert(file); assert(pat) | |
255164ba | 1004 | |
6ba07ce1 | 1005 | PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash); |
7918f24d NC |
1006 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS \ |
1007 | assert(stash) | |
6ba07ce1 | 1008 | PERL_CALLCONV void Perl_dump_packsubs_perl(pTHX_ const HV* stash, bool justperl); |
f0e3f042 CS |
1009 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS_PERL \ |
1010 | assert(stash) | |
6ba07ce1 | 1011 | PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv); |
7918f24d NC |
1012 | #define PERL_ARGS_ASSERT_DUMP_SUB \ |
1013 | assert(gv) | |
6ba07ce1 | 1014 | PERL_CALLCONV void Perl_dump_sub_perl(pTHX_ const GV* gv, bool justperl); |
f0e3f042 CS |
1015 | #define PERL_ARGS_ASSERT_DUMP_SUB_PERL \ |
1016 | assert(gv) | |
6ba07ce1 | 1017 | PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args); |
e8a67806 NC |
1018 | #define PERL_ARGS_ASSERT_DUMP_VINDENT \ |
1019 | assert(file); assert(pat) | |
c1e47bad | 1020 | PERL_CALLCONV STRLEN* Perl_dup_warnings(pTHX_ STRLEN* warnings); |
2015d234 | 1021 | #define PERL_ARGS_ASSERT_DUP_WARNINGS |
6ba07ce1 | 1022 | PERL_CALLCONV void Perl_emulate_cop_io(pTHX_ const COP *const c, SV *const sv); |
e8a67806 NC |
1023 | #define PERL_ARGS_ASSERT_EMULATE_COP_IO \ |
1024 | assert(c); assert(sv) | |
6ba07ce1 | 1025 | PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error); |
e8a67806 NC |
1026 | #define PERL_ARGS_ASSERT_EVAL_PV \ |
1027 | assert(p) | |
6ba07ce1 | 1028 | PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags); |
e8a67806 NC |
1029 | #define PERL_ARGS_ASSERT_EVAL_SV \ |
1030 | assert(sv) | |
6ba07ce1 | 1031 | PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags); |
7918f24d NC |
1032 | #define PERL_ARGS_ASSERT_FBM_COMPILE \ |
1033 | assert(sv) | |
9f6cc744 | 1034 | PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlestr, U32 flags) |
6ba07ce1 | 1035 | __attribute__warn_unused_result__; |
7918f24d NC |
1036 | #define PERL_ARGS_ASSERT_FBM_INSTR \ |
1037 | assert(big); assert(bigend); assert(littlestr) | |
255164ba | 1038 | |
e8a67806 | 1039 | PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv); |
2015d234 | 1040 | #define PERL_ARGS_ASSERT_FILTER_ADD |
6ba07ce1 | 1041 | PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp); |
e8a67806 NC |
1042 | #define PERL_ARGS_ASSERT_FILTER_DEL \ |
1043 | assert(funcp) | |
e8a67806 | 1044 | PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen) |
6ba07ce1 | 1045 | __attribute__warn_unused_result__; |
e8a67806 NC |
1046 | #define PERL_ARGS_ASSERT_FILTER_READ \ |
1047 | assert(buf_sv) | |
1048 | ||
6ba07ce1 | 1049 | PERL_CALLCONV void Perl_finalize_optree(pTHX_ OP* o); |
d164302a GG |
1050 | #define PERL_ARGS_ASSERT_FINALIZE_OPTREE \ |
1051 | assert(o) | |
9a5e6f3c | 1052 | PERL_CALLCONV CV * Perl_find_lexical_cv(pTHX_ PADOFFSET off); |
2015d234 | 1053 | #define PERL_ARGS_ASSERT_FIND_LEXICAL_CV |
e8a67806 NC |
1054 | PERL_CALLCONV CV* Perl_find_runcv(pTHX_ U32 *db_seqp) |
1055 | __attribute__warn_unused_result__; | |
2015d234 | 1056 | #define PERL_ARGS_ASSERT_FIND_RUNCV |
e8a67806 | 1057 | |
db4cf31d | 1058 | PERL_CALLCONV CV* Perl_find_runcv_where(pTHX_ U8 cond, IV arg, U32 *db_seqp) |
70794f7b | 1059 | __attribute__warn_unused_result__; |
2015d234 | 1060 | #define PERL_ARGS_ASSERT_FIND_RUNCV_WHERE |
70794f7b | 1061 | |
e8a67806 | 1062 | PERL_CALLCONV SV* Perl_find_rundefsv(pTHX); |
2015d234 | 1063 | #define PERL_ARGS_ASSERT_FIND_RUNDEFSV |
e8a67806 NC |
1064 | PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX) |
1065 | __attribute__deprecated__; | |
2015d234 | 1066 | #define PERL_ARGS_ASSERT_FIND_RUNDEFSVOFFSET |
e8a67806 | 1067 | |
6ba07ce1 | 1068 | PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char *const *const search_ext, I32 flags); |
7918f24d NC |
1069 | #define PERL_ARGS_ASSERT_FIND_SCRIPT \ |
1070 | assert(scriptname) | |
a5d565cd | 1071 | #ifndef PERL_NO_INLINE_FUNCTIONS |
ec2c235b | 1072 | PERL_STATIC_INLINE I32 Perl_foldEQ(const char* a, const char* b, I32 len); |
e8a67806 NC |
1073 | #define PERL_ARGS_ASSERT_FOLDEQ \ |
1074 | assert(a); assert(b) | |
a5d565cd JH |
1075 | #endif |
1076 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
ec2c235b | 1077 | PERL_STATIC_INLINE I32 Perl_foldEQ_latin1(const char* a, const char* b, I32 len); |
1b9f127b KW |
1078 | #define PERL_ARGS_ASSERT_FOLDEQ_LATIN1 \ |
1079 | assert(a); assert(b) | |
a5d565cd JH |
1080 | #endif |
1081 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
ec2c235b | 1082 | PERL_STATIC_INLINE I32 Perl_foldEQ_locale(const char* a, const char* b, I32 len); |
e8a67806 NC |
1083 | #define PERL_ARGS_ASSERT_FOLDEQ_LOCALE \ |
1084 | assert(a); assert(b) | |
a5d565cd | 1085 | #endif |
6ba07ce1 | 1086 | /* PERL_CALLCONV I32 foldEQ_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */ |
2015d234 | 1087 | #define PERL_ARGS_ASSERT_FOLDEQ_UTF8 |
6ba07ce1 | 1088 | PERL_CALLCONV I32 Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2, U32 flags); |
eda9cac1 | 1089 | #define PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS \ |
e8a67806 | 1090 | assert(s1); assert(s2) |
894356b3 | 1091 | PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...) |
6ba07ce1 | 1092 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
7918f24d NC |
1093 | #define PERL_ARGS_ASSERT_FORM \ |
1094 | assert(pat) | |
aec46f14 | 1095 | |
e8a67806 | 1096 | PERL_CALLCONV void Perl_free_tied_hv_pool(pTHX); |
2015d234 | 1097 | #define PERL_ARGS_ASSERT_FREE_TIED_HV_POOL |
e8a67806 | 1098 | PERL_CALLCONV void Perl_free_tmps(pTHX); |
2015d234 | 1099 | #define PERL_ARGS_ASSERT_FREE_TMPS |
25c7fb78 KW |
1100 | PERL_CALLCONV SV* Perl_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e, const bool is_utf8, const char** error_msg) |
1101 | __attribute__warn_unused_result__; | |
1102 | #define PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME \ | |
1103 | assert(s); assert(e); assert(error_msg) | |
1104 | ||
6ba07ce1 | 1105 | PERL_CALLCONV AV* Perl_get_av(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1106 | #define PERL_ARGS_ASSERT_GET_AV \ |
1107 | assert(name) | |
e8a67806 NC |
1108 | PERL_CALLCONV void* Perl_get_context(void) |
1109 | __attribute__warn_unused_result__; | |
2015d234 | 1110 | #define PERL_ARGS_ASSERT_GET_CONTEXT |
e8a67806 | 1111 | |
6ba07ce1 | 1112 | PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 flags); |
e8a67806 NC |
1113 | #define PERL_ARGS_ASSERT_GET_CV \ |
1114 | assert(name) | |
6ba07ce1 | 1115 | PERL_CALLCONV CV* Perl_get_cvn_flags(pTHX_ const char* name, STRLEN len, I32 flags); |
e8a67806 NC |
1116 | #define PERL_ARGS_ASSERT_GET_CVN_FLAGS \ |
1117 | assert(name) | |
6ba07ce1 | 1118 | PERL_CALLCONV void Perl_get_db_sub(pTHX_ SV **svp, CV *cv); |
7918f24d NC |
1119 | #define PERL_ARGS_ASSERT_GET_DB_SUB \ |
1120 | assert(cv) | |
be879013 KW |
1121 | PERL_CALLCONV const char * Perl_get_deprecated_property_msg(const Size_t warning_offset) |
1122 | __attribute__warn_unused_result__; | |
1123 | #define PERL_ARGS_ASSERT_GET_DEPRECATED_PROPERTY_MSG | |
1124 | ||
6ba07ce1 | 1125 | PERL_CALLCONV void Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer); |
7dc86639 YO |
1126 | #define PERL_ARGS_ASSERT_GET_HASH_SEED \ |
1127 | assert(seed_buffer) | |
6ba07ce1 | 1128 | PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1129 | #define PERL_ARGS_ASSERT_GET_HV \ |
1130 | assert(name) | |
e8a67806 NC |
1131 | PERL_CALLCONV const char* Perl_get_no_modify(pTHX) |
1132 | __attribute__warn_unused_result__ | |
1133 | __attribute__pure__; | |
2015d234 | 1134 | #define PERL_ARGS_ASSERT_GET_NO_MODIFY |
e8a67806 NC |
1135 | |
1136 | PERL_CALLCONV char** Perl_get_op_descs(pTHX) | |
1137 | __attribute__warn_unused_result__ | |
1138 | __attribute__pure__; | |
2015d234 | 1139 | #define PERL_ARGS_ASSERT_GET_OP_DESCS |
e8a67806 NC |
1140 | |
1141 | PERL_CALLCONV char** Perl_get_op_names(pTHX) | |
1142 | __attribute__warn_unused_result__ | |
1143 | __attribute__pure__; | |
2015d234 | 1144 | #define PERL_ARGS_ASSERT_GET_OP_NAMES |
e8a67806 NC |
1145 | |
1146 | PERL_CALLCONV U32* Perl_get_opargs(pTHX) | |
1147 | __attribute__warn_unused_result__ | |
1148 | __attribute__pure__; | |
2015d234 | 1149 | #define PERL_ARGS_ASSERT_GET_OPARGS |
e8a67806 NC |
1150 | |
1151 | PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX) | |
1152 | __attribute__warn_unused_result__ | |
1153 | __attribute__pure__; | |
2015d234 | 1154 | #define PERL_ARGS_ASSERT_GET_PPADDR |
e8a67806 | 1155 | |
be879013 KW |
1156 | PERL_CALLCONV SV * Perl_get_prop_definition(pTHX_ const int table_index) |
1157 | __attribute__warn_unused_result__; | |
1158 | #define PERL_ARGS_ASSERT_GET_PROP_DEFINITION | |
1159 | ||
1160 | PERL_CALLCONV const char * const * Perl_get_prop_values(const int table_index) | |
1161 | __attribute__warn_unused_result__; | |
1162 | #define PERL_ARGS_ASSERT_GET_PROP_VALUES | |
1163 | ||
e8a67806 | 1164 | PERL_CALLCONV REGEXP * Perl_get_re_arg(pTHX_ SV *sv); |
2015d234 | 1165 | #define PERL_ARGS_ASSERT_GET_RE_ARG |
6ba07ce1 | 1166 | PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1167 | #define PERL_ARGS_ASSERT_GET_SV \ |
1168 | assert(name) | |
e8a67806 NC |
1169 | PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id) |
1170 | __attribute__warn_unused_result__; | |
2015d234 | 1171 | #define PERL_ARGS_ASSERT_GET_VTBL |
e8a67806 | 1172 | |
6ba07ce1 | 1173 | PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv); |
e8a67806 NC |
1174 | #define PERL_ARGS_ASSERT_GETCWD_SV \ |
1175 | assert(sv) | |
e8a67806 | 1176 | PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv); |
2015d234 | 1177 | #define PERL_ARGS_ASSERT_GP_FREE |
e8a67806 | 1178 | PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp); |
2015d234 | 1179 | #define PERL_ARGS_ASSERT_GP_REF |
6ba07ce1 | 1180 | PERL_CALLCONV bool Perl_grok_atoUV(const char* pv, UV* valptr, const char** endptr); |
22ff3130 HS |
1181 | #define PERL_ARGS_ASSERT_GROK_ATOUV \ |
1182 | assert(pv); assert(valptr) | |
6ba07ce1 | 1183 | PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1184 | #define PERL_ARGS_ASSERT_GROK_BIN \ |
1185 | assert(start); assert(len_p); assert(flags) | |
c969ff22 | 1186 | PERL_CALLCONV UV Perl_grok_bin_oct_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result, const unsigned shift, const U8 lookup_bit, const char prefix); |
bcfb98ec KW |
1187 | #define PERL_ARGS_ASSERT_GROK_BIN_OCT_HEX \ |
1188 | assert(start); assert(len_p); assert(flags) | |
6ba07ce1 | 1189 | PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1190 | #define PERL_ARGS_ASSERT_GROK_HEX \ |
1191 | assert(start); assert(len_p); assert(flags) | |
6ba07ce1 | 1192 | PERL_CALLCONV int Perl_grok_infnan(pTHX_ const char** sp, const char *send); |
ff4eb398 JH |
1193 | #define PERL_ARGS_ASSERT_GROK_INFNAN \ |
1194 | assert(sp); assert(send) | |
6ba07ce1 | 1195 | PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep); |
e8a67806 NC |
1196 | #define PERL_ARGS_ASSERT_GROK_NUMBER \ |
1197 | assert(pv) | |
6ba07ce1 | 1198 | PERL_CALLCONV int Perl_grok_number_flags(pTHX_ const char *pv, STRLEN len, UV *valuep, U32 flags); |
3f7602fa TC |
1199 | #define PERL_ARGS_ASSERT_GROK_NUMBER_FLAGS \ |
1200 | assert(pv) | |
e8a67806 | 1201 | PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) |
6ba07ce1 | 1202 | __attribute__warn_unused_result__; |
e8a67806 NC |
1203 | #define PERL_ARGS_ASSERT_GROK_NUMERIC_RADIX \ |
1204 | assert(sp); assert(send) | |
1205 | ||
6ba07ce1 | 1206 | PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1207 | #define PERL_ARGS_ASSERT_GROK_OCT \ |
1208 | assert(start); assert(len_p); assert(flags) | |
3f1866a8 KW |
1209 | #ifndef NO_MATHOMS |
1210 | PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV *gv); | |
2015d234 | 1211 | #define PERL_ARGS_ASSERT_GV_AVADD |
3f1866a8 KW |
1212 | #endif |
1213 | #ifndef NO_MATHOMS | |
1214 | PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV *gv); | |
2015d234 | 1215 | #define PERL_ARGS_ASSERT_GV_HVADD |
3f1866a8 KW |
1216 | #endif |
1217 | #ifndef NO_MATHOMS | |
1218 | PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv); | |
2015d234 | 1219 | #define PERL_ARGS_ASSERT_GV_IOADD |
3f1866a8 | 1220 | #endif |
13c59d41 | 1221 | PERL_CALLCONV GV* Perl_gv_add_by_type(pTHX_ GV *gv, svtype type); |
2015d234 | 1222 | #define PERL_ARGS_ASSERT_GV_ADD_BY_TYPE |
aa1e761e | 1223 | /* PERL_CALLCONV GV* gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method) |
6ba07ce1 | 1224 | __attribute__warn_unused_result__; */ |
2015d234 | 1225 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD4 |
aa1e761e | 1226 | |
0eeb01b9 | 1227 | PERL_CALLCONV GV* Perl_gv_autoload_pv(pTHX_ HV* stash, const char* namepv, U32 flags) |
6ba07ce1 | 1228 | __attribute__warn_unused_result__; |
0fe84f7c | 1229 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PV \ |
5fba3c91 BF |
1230 | assert(namepv) |
1231 | ||
0eeb01b9 | 1232 | PERL_CALLCONV GV* Perl_gv_autoload_pvn(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags) |
6ba07ce1 | 1233 | __attribute__warn_unused_result__; |
0fe84f7c | 1234 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PVN \ |
e8a67806 NC |
1235 | assert(name) |
1236 | ||
0eeb01b9 | 1237 | PERL_CALLCONV GV* Perl_gv_autoload_sv(pTHX_ HV* stash, SV* namesv, U32 flags) |
6ba07ce1 | 1238 | __attribute__warn_unused_result__; |
0fe84f7c | 1239 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_SV \ |
5fba3c91 BF |
1240 | assert(namesv) |
1241 | ||
6ba07ce1 | 1242 | PERL_CALLCONV void Perl_gv_check(pTHX_ HV* stash); |
e8a67806 NC |
1243 | #define PERL_ARGS_ASSERT_GV_CHECK \ |
1244 | assert(stash) | |
e8a67806 | 1245 | PERL_CALLCONV SV* Perl_gv_const_sv(pTHX_ GV* gv) |
6ba07ce1 | 1246 | __attribute__warn_unused_result__; |
e8a67806 NC |
1247 | #define PERL_ARGS_ASSERT_GV_CONST_SV \ |
1248 | assert(gv) | |
1249 | ||
3dc78631 | 1250 | PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv); |
2015d234 | 1251 | #define PERL_ARGS_ASSERT_GV_DUMP |
1545ba5b | 1252 | #ifndef NO_MATHOMS |
57f51a64 KW |
1253 | PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv) |
1254 | __attribute__deprecated__; | |
7918f24d NC |
1255 | #define PERL_ARGS_ASSERT_GV_EFULLNAME \ |
1256 | assert(sv); assert(gv) | |
1545ba5b | 1257 | #endif |
57f51a64 | 1258 | |
3f1866a8 KW |
1259 | #ifndef NO_MATHOMS |
1260 | PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); | |
7918f24d NC |
1261 | #define PERL_ARGS_ASSERT_GV_EFULLNAME3 \ |
1262 | assert(sv); assert(gv) | |
3f1866a8 | 1263 | #endif |
6ba07ce1 | 1264 | PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain); |
7918f24d NC |
1265 | #define PERL_ARGS_ASSERT_GV_EFULLNAME4 \ |
1266 | assert(sv); assert(gv) | |
6ba07ce1 | 1267 | PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name); |
7918f24d NC |
1268 | #define PERL_ARGS_ASSERT_GV_FETCHFILE \ |
1269 | assert(name) | |
6ba07ce1 | 1270 | PERL_CALLCONV GV* Perl_gv_fetchfile_flags(pTHX_ const char *const name, const STRLEN len, const U32 flags); |
7918f24d NC |
1271 | #define PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS \ |
1272 | assert(name) | |
6ba07ce1 | 1273 | /* PERL_CALLCONV GV* gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */ |
2015d234 | 1274 | #define PERL_ARGS_ASSERT_GV_FETCHMETH |
6ba07ce1 | 1275 | /* PERL_CALLCONV GV* gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */ |
2015d234 | 1276 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_AUTOLOAD |
6ba07ce1 | 1277 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pv(pTHX_ HV* stash, const char* name, I32 level, U32 flags); |
d21989ed | 1278 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV \ |
7918f24d | 1279 | assert(name) |
6ba07ce1 | 1280 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pv_autoload(pTHX_ HV* stash, const char* name, I32 level, U32 flags); |
d21989ed | 1281 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV_AUTOLOAD \ |
7918f24d | 1282 | assert(name) |
6ba07ce1 | 1283 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pvn(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags); |
e6919483 BF |
1284 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN \ |
1285 | assert(name) | |
6ba07ce1 | 1286 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pvn_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags); |
d21989ed BF |
1287 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN_AUTOLOAD \ |
1288 | assert(name) | |
6ba07ce1 | 1289 | PERL_CALLCONV GV* Perl_gv_fetchmeth_sv(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags); |
e6919483 BF |
1290 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV \ |
1291 | assert(namesv) | |
6ba07ce1 | 1292 | PERL_CALLCONV GV* Perl_gv_fetchmeth_sv_autoload(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags); |
d21989ed BF |
1293 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV_AUTOLOAD \ |
1294 | assert(namesv) | |
3f1866a8 KW |
1295 | #ifndef NO_MATHOMS |
1296 | PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name); | |
7918f24d | 1297 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD \ |
eff494dd | 1298 | assert(stash); assert(name) |
3f1866a8 | 1299 | #endif |
6ba07ce1 | 1300 | PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload); |
7918f24d | 1301 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD \ |
eff494dd | 1302 | assert(stash); assert(name) |
6ba07ce1 | 1303 | PERL_CALLCONV GV* Perl_gv_fetchmethod_pv_flags(pTHX_ HV* stash, const char* name, U32 flags); |
44130a26 | 1304 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PV_FLAGS \ |
eff494dd | 1305 | assert(stash); assert(name) |
6ba07ce1 | 1306 | PERL_CALLCONV GV* Perl_gv_fetchmethod_pvn_flags(pTHX_ HV* stash, const char* name, const STRLEN len, U32 flags); |
44130a26 BF |
1307 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PVN_FLAGS \ |
1308 | assert(stash); assert(name) | |
6ba07ce1 | 1309 | PERL_CALLCONV GV* Perl_gv_fetchmethod_sv_flags(pTHX_ HV* stash, SV* namesv, U32 flags); |
44130a26 BF |
1310 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_SV_FLAGS \ |
1311 | assert(stash); assert(namesv) | |
6ba07ce1 | 1312 | PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type); |
7918f24d NC |
1313 | #define PERL_ARGS_ASSERT_GV_FETCHPV \ |
1314 | assert(nambeg) | |
6ba07ce1 | 1315 | PERL_CALLCONV GV* Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, const svtype sv_type); |
e8a67806 NC |
1316 | #define PERL_ARGS_ASSERT_GV_FETCHPVN_FLAGS \ |
1317 | assert(name) | |
6ba07ce1 | 1318 | PERL_CALLCONV GV* Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, const svtype sv_type); |
e8a67806 NC |
1319 | #define PERL_ARGS_ASSERT_GV_FETCHSV \ |
1320 | assert(name) | |
1545ba5b | 1321 | #ifndef NO_MATHOMS |
57f51a64 KW |
1322 | PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv) |
1323 | __attribute__deprecated__; | |
7918f24d NC |
1324 | #define PERL_ARGS_ASSERT_GV_FULLNAME \ |
1325 | assert(sv); assert(gv) | |
1545ba5b | 1326 | #endif |
57f51a64 | 1327 | |
3f1866a8 KW |
1328 | #ifndef NO_MATHOMS |
1329 | PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); | |
7918f24d NC |
1330 | #define PERL_ARGS_ASSERT_GV_FULLNAME3 \ |
1331 | assert(sv); assert(gv) | |
3f1866a8 | 1332 | #endif |
6ba07ce1 | 1333 | PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain); |
7918f24d NC |
1334 | #define PERL_ARGS_ASSERT_GV_FULLNAME4 \ |
1335 | assert(sv); assert(gv) | |
e8a67806 NC |
1336 | PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id) |
1337 | __attribute__warn_unused_result__; | |
2015d234 | 1338 | #define PERL_ARGS_ASSERT_GV_HANDLER |
803f2748 | 1339 | |
6ba07ce1 | 1340 | /* PERL_CALLCONV void gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi); */ |
2015d234 | 1341 | #define PERL_ARGS_ASSERT_GV_INIT |
6ba07ce1 | 1342 | PERL_CALLCONV void Perl_gv_init_pv(pTHX_ GV* gv, HV* stash, const char* name, U32 flags); |
e6066781 | 1343 | #define PERL_ARGS_ASSERT_GV_INIT_PV \ |
7918f24d | 1344 | assert(gv); assert(name) |
6ba07ce1 | 1345 | PERL_CALLCONV void Perl_gv_init_pvn(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, U32 flags); |
e6066781 BF |
1346 | #define PERL_ARGS_ASSERT_GV_INIT_PVN \ |
1347 | assert(gv); assert(name) | |
6ba07ce1 | 1348 | PERL_CALLCONV void Perl_gv_init_sv(pTHX_ GV* gv, HV* stash, SV* namesv, U32 flags); |
e6066781 BF |
1349 | #define PERL_ARGS_ASSERT_GV_INIT_SV \ |
1350 | assert(gv); assert(namesv) | |
6ba07ce1 | 1351 | PERL_CALLCONV void Perl_gv_name_set(pTHX_ GV* gv, const char *name, U32 len, U32 flags); |
7918f24d NC |
1352 | #define PERL_ARGS_ASSERT_GV_NAME_SET \ |
1353 | assert(gv); assert(name) | |
6ba07ce1 | 1354 | PERL_CALLCONV GV * Perl_gv_override(pTHX_ const char * const name, const STRLEN len); |
9e3fb20c FC |
1355 | #define PERL_ARGS_ASSERT_GV_OVERRIDE \ |
1356 | assert(name) | |
6ba07ce1 | 1357 | PERL_CALLCONV void Perl_gv_setref(pTHX_ SV *const dstr, SV *const sstr); |
d8a875d9 FC |
1358 | #define PERL_ARGS_ASSERT_GV_SETREF \ |
1359 | assert(dstr); assert(sstr) | |
6ba07ce1 | 1360 | PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 flags); |
7918f24d NC |
1361 | #define PERL_ARGS_ASSERT_GV_STASHPV \ |
1362 | assert(name) | |
6ba07ce1 | 1363 | PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 flags); |
7918f24d NC |
1364 | #define PERL_ARGS_ASSERT_GV_STASHPVN \ |
1365 | assert(name) | |
6ba07ce1 | 1366 | PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 flags); |
7918f24d NC |
1367 | #define PERL_ARGS_ASSERT_GV_STASHSV \ |
1368 | assert(sv) | |
6ba07ce1 | 1369 | PERL_CALLCONV void Perl_gv_try_downgrade(pTHX_ GV* gv); |
e8a67806 NC |
1370 | #define PERL_ARGS_ASSERT_GV_TRY_DOWNGRADE \ |
1371 | assert(gv) | |
6ba07ce1 | 1372 | PERL_CALLCONV AV** Perl_hv_backreferences_p(pTHX_ HV *hv); |
e8a67806 NC |
1373 | #define PERL_ARGS_ASSERT_HV_BACKREFERENCES_P \ |
1374 | assert(hv) | |
8bf4c401 | 1375 | PERL_CALLCONV SV* Perl_hv_bucket_ratio(pTHX_ HV *hv) |
8bf4c401 YO |
1376 | __attribute__warn_unused_result__; |
1377 | #define PERL_ARGS_ASSERT_HV_BUCKET_RATIO \ | |
1378 | assert(hv) | |
1379 | ||
4048f010 | 1380 | PERL_CALLCONV void Perl_hv_clear(pTHX_ HV *hv); |
2015d234 | 1381 | #define PERL_ARGS_ASSERT_HV_CLEAR |
6ba07ce1 | 1382 | PERL_CALLCONV void Perl_hv_clear_placeholders(pTHX_ HV *hv); |
e8a67806 NC |
1383 | #define PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS \ |
1384 | assert(hv) | |
e8a67806 | 1385 | PERL_CALLCONV void* Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char* key, STRLEN klen, int flags, int action, SV *val, U32 hash); |
2015d234 | 1386 | #define PERL_ARGS_ASSERT_HV_COMMON |
6ba07ce1 | 1387 | PERL_CALLCONV void* Perl_hv_common_key_len(pTHX_ HV *hv, const char *key, I32 klen_i32, const int action, SV *val, const U32 hash); |
e8a67806 NC |
1388 | #define PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN \ |
1389 | assert(key) | |
defdfed5 Z |
1390 | PERL_CALLCONV HV * Perl_hv_copy_hints_hv(pTHX_ HV *const ohv) |
1391 | __attribute__warn_unused_result__; | |
2015d234 | 1392 | #define PERL_ARGS_ASSERT_HV_COPY_HINTS_HV |
defdfed5 | 1393 | |
6ba07ce1 | 1394 | PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV *hv, HE *entry); |
7918f24d NC |
1395 | #define PERL_ARGS_ASSERT_HV_DELAYFREE_ENT \ |
1396 | assert(hv) | |
3f1866a8 KW |
1397 | #ifndef NO_MATHOMS |
1398 | PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen, I32 flags); | |
7918f24d NC |
1399 | #define PERL_ARGS_ASSERT_HV_DELETE \ |
1400 | assert(key) | |
3f1866a8 KW |
1401 | #endif |
1402 | #ifndef NO_MATHOMS | |
1403 | PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash); | |
7918f24d NC |
1404 | #define PERL_ARGS_ASSERT_HV_DELETE_ENT \ |
1405 | assert(keysv) | |
3f1866a8 | 1406 | #endif |
e8a67806 | 1407 | PERL_CALLCONV HE** Perl_hv_eiter_p(pTHX_ HV *hv) |
6ba07ce1 | 1408 | __attribute__warn_unused_result__; |
e8a67806 NC |
1409 | #define PERL_ARGS_ASSERT_HV_EITER_P \ |
1410 | assert(hv) | |
1411 | ||
6ba07ce1 | 1412 | PERL_CALLCONV void Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter); |
e8a67806 NC |
1413 | #define PERL_ARGS_ASSERT_HV_EITER_SET \ |
1414 | assert(hv) | |
6ba07ce1 | 1415 | PERL_CALLCONV void Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
78b79c77 FC |
1416 | #define PERL_ARGS_ASSERT_HV_ENAME_ADD \ |
1417 | assert(hv); assert(name) | |
6ba07ce1 | 1418 | PERL_CALLCONV void Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
78b79c77 FC |
1419 | #define PERL_ARGS_ASSERT_HV_ENAME_DELETE \ |
1420 | assert(hv); assert(name) | |
3f1866a8 KW |
1421 | #ifndef NO_MATHOMS |
1422 | PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen) | |
1423 | __attribute__warn_unused_result__; | |
7918f24d NC |
1424 | #define PERL_ARGS_ASSERT_HV_EXISTS \ |
1425 | assert(key) | |
3f1866a8 | 1426 | #endif |
901017d6 | 1427 | |
3f1866a8 KW |
1428 | #ifndef NO_MATHOMS |
1429 | PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash) | |
1430 | __attribute__warn_unused_result__; | |
7918f24d NC |
1431 | #define PERL_ARGS_ASSERT_HV_EXISTS_ENT \ |
1432 | assert(keysv) | |
3f1866a8 | 1433 | #endif |
aa924a5a | 1434 | |
3f1866a8 KW |
1435 | #ifndef NO_MATHOMS |
1436 | PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen, I32 lval); | |
7918f24d NC |
1437 | #define PERL_ARGS_ASSERT_HV_FETCH \ |
1438 | assert(key) | |
3f1866a8 KW |
1439 | #endif |
1440 | #ifndef NO_MATHOMS | |
1441 | PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash); | |
7918f24d NC |
1442 | #define PERL_ARGS_ASSERT_HV_FETCH_ENT \ |
1443 | assert(keysv) | |
3f1866a8 | 1444 | #endif |
6ba07ce1 | 1445 | PERL_CALLCONV STRLEN Perl_hv_fill(pTHX_ HV *const hv); |
4d0fbddd NC |
1446 | #define PERL_ARGS_ASSERT_HV_FILL \ |
1447 | assert(hv) | |
6ba07ce1 | 1448 | PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV *hv, HE *entry); |
7918f24d NC |
1449 | #define PERL_ARGS_ASSERT_HV_FREE_ENT \ |
1450 | assert(hv) | |
6ba07ce1 | 1451 | PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV *hv); |
7918f24d NC |
1452 | #define PERL_ARGS_ASSERT_HV_ITERINIT \ |
1453 | assert(hv) | |
a3b680e6 | 1454 | PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen) |
6ba07ce1 | 1455 | __attribute__warn_unused_result__; |
7918f24d NC |
1456 | #define PERL_ARGS_ASSERT_HV_ITERKEY \ |
1457 | assert(entry); assert(retlen) | |
a3b680e6 AL |
1458 | |
1459 | PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry) | |
6ba07ce1 | 1460 | __attribute__warn_unused_result__; |
7918f24d NC |
1461 | #define PERL_ARGS_ASSERT_HV_ITERKEYSV \ |
1462 | assert(entry) | |
a3b680e6 | 1463 | |
3f1866a8 KW |
1464 | #ifndef NO_MATHOMS |
1465 | PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV *hv) | |
1466 | __attribute__warn_unused_result__; | |
7918f24d NC |
1467 | #define PERL_ARGS_ASSERT_HV_ITERNEXT \ |
1468 | assert(hv) | |
3f1866a8 | 1469 | #endif |
a3b680e6 | 1470 | |
e8a67806 | 1471 | PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags) |
6ba07ce1 | 1472 | __attribute__warn_unused_result__; |
e8a67806 NC |
1473 | #define PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS \ |
1474 | assert(hv) | |
1475 | ||
4048f010 | 1476 | PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen) |
6ba07ce1 | 1477 | __attribute__warn_unused_result__; |
7918f24d NC |
1478 | #define PERL_ARGS_ASSERT_HV_ITERNEXTSV \ |
1479 | assert(hv); assert(key); assert(retlen) | |
a3b680e6 | 1480 | |
4048f010 | 1481 | PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV *hv, HE *entry) |
6ba07ce1 | 1482 | __attribute__warn_unused_result__; |
7918f24d NC |
1483 | #define PERL_ARGS_ASSERT_HV_ITERVAL \ |
1484 | assert(hv); assert(entry) | |
a3b680e6 | 1485 | |
6ba07ce1 | 1486 | PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV *hv, IV newmax); |
7918f24d NC |
1487 | #define PERL_ARGS_ASSERT_HV_KSPLIT \ |
1488 | assert(hv) | |
3f1866a8 KW |
1489 | #ifndef NO_MATHOMS |
1490 | PERL_CALLCONV void Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how); | |
7918f24d NC |
1491 | #define PERL_ARGS_ASSERT_HV_MAGIC \ |
1492 | assert(hv) | |
3f1866a8 | 1493 | #endif |
6ba07ce1 | 1494 | PERL_CALLCONV void Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
e8a67806 NC |
1495 | #define PERL_ARGS_ASSERT_HV_NAME_SET \ |
1496 | assert(hv) | |
e8a67806 | 1497 | PERL_CALLCONV I32 Perl_hv_placeholders_get(pTHX_ const HV *hv) |
6ba07ce1 | 1498 | __attribute__warn_unused_result__; |
e8a67806 NC |
1499 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET \ |
1500 | assert(hv) | |
1501 | ||
6174b39a | 1502 | PERL_CALLCONV SSize_t* Perl_hv_placeholders_p(pTHX_ HV *hv) |
6ba07ce1 | 1503 | __attribute__warn_unused_result__; |
e8a67806 NC |
1504 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P \ |
1505 | assert(hv) | |
1506 | ||
6ba07ce1 | 1507 | PERL_CALLCONV void Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph); |
e8a67806 NC |
1508 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET \ |
1509 | assert(hv) | |
8dc9003f | 1510 | PERL_CALLCONV void Perl_hv_pushkv(pTHX_ HV *hv, U32 flags); |
af3b1cba DM |
1511 | #define PERL_ARGS_ASSERT_HV_PUSHKV \ |
1512 | assert(hv) | |
6ba07ce1 | 1513 | PERL_CALLCONV void Perl_hv_rand_set(pTHX_ HV *hv, U32 new_xhv_rand); |
6a5b4183 YO |
1514 | #define PERL_ARGS_ASSERT_HV_RAND_SET \ |
1515 | assert(hv) | |
e8a67806 | 1516 | PERL_CALLCONV I32* Perl_hv_riter_p(pTHX_ HV *hv) |
6ba07ce1 | 1517 | __attribute__warn_unused_result__; |
e8a67806 NC |
1518 | #define PERL_ARGS_ASSERT_HV_RITER_P \ |
1519 | assert(hv) | |
1520 | ||
6ba07ce1 | 1521 | PERL_CALLCONV void Perl_hv_riter_set(pTHX_ HV *hv, I32 riter); |
e8a67806 NC |
1522 | #define PERL_ARGS_ASSERT_HV_RITER_SET \ |
1523 | assert(hv) | |
e8a67806 | 1524 | PERL_CALLCONV SV* Perl_hv_scalar(pTHX_ HV *hv) |
6ba07ce1 | 1525 | __attribute__warn_unused_result__; |
e8a67806 NC |
1526 | #define PERL_ARGS_ASSERT_HV_SCALAR \ |
1527 | assert(hv) | |
012da8e5 | 1528 | |
3f1866a8 KW |
1529 | #ifndef NO_MATHOMS |
1530 | PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash); | |
2015d234 | 1531 | #define PERL_ARGS_ASSERT_HV_STORE |
3f1866a8 KW |
1532 | #endif |
1533 | #ifndef NO_MATHOMS | |
1534 | PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV *hv, SV *key, SV *val, U32 hash); | |
2015d234 | 1535 | #define PERL_ARGS_ASSERT_HV_STORE_ENT |
3f1866a8 KW |
1536 | #endif |
1537 | #ifndef NO_MATHOMS | |
1538 | PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash, int flags); | |
2015d234 | 1539 | #define PERL_ARGS_ASSERT_HV_STORE_FLAGS |
3f1866a8 | 1540 | #endif |
8581adba | 1541 | /* PERL_CALLCONV void hv_undef(pTHX_ HV *hv); */ |
2015d234 | 1542 | #define PERL_ARGS_ASSERT_HV_UNDEF |
8581adba | 1543 | PERL_CALLCONV void Perl_hv_undef_flags(pTHX_ HV *hv, U32 flags); |
2015d234 | 1544 | #define PERL_ARGS_ASSERT_HV_UNDEF_FLAGS |
ca0c6e8c KW |
1545 | /* PERL_CALLCONV I32 ibcmp(pTHX_ const char* a, const char* b, I32 len) |
1546 | __attribute__warn_unused_result__ | |
1547 | __attribute__pure__; */ | |
2015d234 | 1548 | #define PERL_ARGS_ASSERT_IBCMP |
ca0c6e8c KW |
1549 | |
1550 | /* PERL_CALLCONV I32 ibcmp_locale(pTHX_ const char* a, const char* b, I32 len) | |
1551 | __attribute__warn_unused_result__ | |
1552 | __attribute__pure__; */ | |
2015d234 | 1553 | #define PERL_ARGS_ASSERT_IBCMP_LOCALE |
ca0c6e8c | 1554 | |
6ba07ce1 | 1555 | /* PERL_CALLCONV I32 ibcmp_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */ |
2015d234 | 1556 | #define PERL_ARGS_ASSERT_IBCMP_UTF8 |
6ba07ce1 | 1557 | PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv); |
7918f24d NC |
1558 | #define PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS \ |
1559 | assert(argv) | |
0d96b528 | 1560 | PERL_CALLCONV void Perl_init_constants(pTHX); |
2015d234 | 1561 | #define PERL_ARGS_ASSERT_INIT_CONSTANTS |
8af6f985 | 1562 | PERL_CALLCONV void Perl_init_dbargs(pTHX); |
2015d234 | 1563 | #define PERL_ARGS_ASSERT_INIT_DBARGS |
1d7c1841 | 1564 | PERL_CALLCONV void Perl_init_debugger(pTHX); |
2015d234 | 1565 | #define PERL_ARGS_ASSERT_INIT_DEBUGGER |
e8a67806 | 1566 | PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |
2015d234 | 1567 | #define PERL_ARGS_ASSERT_INIT_I18NL10N |
1545ba5b | 1568 | #ifndef NO_MATHOMS |
57f51a64 KW |
1569 | PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn) |
1570 | __attribute__deprecated__; | |
2015d234 | 1571 | #define PERL_ARGS_ASSERT_INIT_I18NL14N |
1545ba5b | 1572 | #endif |
57f51a64 | 1573 | |
50333c97 DM |
1574 | PERL_CALLCONV void Perl_init_named_cv(pTHX_ CV *cv, OP *nameop); |
1575 | #define PERL_ARGS_ASSERT_INIT_NAMED_CV \ | |
1576 | assert(cv); assert(nameop) | |
1d7c1841 | 1577 | PERL_CALLCONV void Perl_init_stacks(pTHX); |
2015d234 | 1578 | #define PERL_ARGS_ASSERT_INIT_STACKS |
6ba07ce1 | 1579 | PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm); |
7918f24d NC |
1580 | #define PERL_ARGS_ASSERT_INIT_TM \ |
1581 | assert(ptm) | |
95e064d9 | 1582 | PERL_CALLCONV void Perl_init_uniprops(pTHX); |
2015d234 | 1583 | #define PERL_ARGS_ASSERT_INIT_UNIPROPS |
3f1866a8 KW |
1584 | #ifndef NO_MATHOMS |
1585 | PERL_CALLCONV char* Perl_instr(const char* big, const char* little) | |
b464bac0 | 1586 | __attribute__warn_unused_result__ |
3f1866a8 | 1587 | __attribute__pure__; |
7918f24d NC |
1588 | #define PERL_ARGS_ASSERT_INSTR \ |
1589 | assert(big); assert(little) | |
3f1866a8 | 1590 | #endif |
f54cb97a | 1591 | |
e8a67806 | 1592 | PERL_CALLCONV U32 Perl_intro_my(pTHX); |
2015d234 | 1593 | #define PERL_ARGS_ASSERT_INTRO_MY |
e8a67806 NC |
1594 | PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd) |
1595 | __attribute__warn_unused_result__; | |
2015d234 | 1596 | #define PERL_ARGS_ASSERT_INVERT |
e8a67806 | 1597 | |
58a0d047 KW |
1598 | PERL_CALLCONV void Perl_invmap_dump(pTHX_ SV* invlist, UV * map); |
1599 | #define PERL_ARGS_ASSERT_INVMAP_DUMP \ | |
1600 | assert(invlist); assert(map) | |
6ba07ce1 | 1601 | PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, GV *gv, bool not_implicit, bool warn_on_fail); |
7918f24d NC |
1602 | #define PERL_ARGS_ASSERT_IO_CLOSE \ |
1603 | assert(io) | |
8ed185f9 | 1604 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1605 | PERL_STATIC_INLINE Size_t Perl_isC9_STRICT_UTF8_CHAR(const U8 * const s0, const U8 * const e) |
c5bfbb64 KW |
1606 | __attribute__warn_unused_result__; |
1607 | #define PERL_ARGS_ASSERT_ISC9_STRICT_UTF8_CHAR \ | |
1608 | assert(s0); assert(e) | |
1609 | #endif | |
1610 | ||
1611 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1612 | PERL_STATIC_INLINE Size_t Perl_isSTRICT_UTF8_CHAR(const U8 * const s0, const U8 * const e) |
67049a5f KW |
1613 | __attribute__warn_unused_result__; |
1614 | #define PERL_ARGS_ASSERT_ISSTRICT_UTF8_CHAR \ | |
1615 | assert(s0); assert(e) | |
1616 | #endif | |
1617 | ||
1618 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1619 | PERL_STATIC_INLINE Size_t Perl_isUTF8_CHAR(const U8 * const s0, const U8 * const e) |
8ed185f9 KW |
1620 | __attribute__warn_unused_result__; |
1621 | #define PERL_ARGS_ASSERT_ISUTF8_CHAR \ | |
1622 | assert(s0); assert(e) | |
1623 | #endif | |
1624 | ||
ef9e3b4d | 1625 | /* PERL_CALLCONV bool is_ascii_string(const U8* const s, STRLEN len) |
a4c56e8a KW |
1626 | __attribute__warn_unused_result__ |
1627 | __attribute__pure__; */ | |
2015d234 | 1628 | #define PERL_ARGS_ASSERT_IS_ASCII_STRING |
7bbfa158 | 1629 | |
ef9e3b4d | 1630 | /* PERL_CALLCONV bool is_c9strict_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1631 | __attribute__warn_unused_result__; */ |
2015d234 | 1632 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING |
9f2abfde | 1633 | |
33756530 | 1634 | /* PERL_CALLCONV bool is_c9strict_utf8_string_loc(const U8 *s, STRLEN len, const U8 **ep); */ |
2015d234 | 1635 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING_LOC |
a5d565cd | 1636 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1637 | PERL_STATIC_INLINE bool Perl_is_c9strict_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
9f2abfde KW |
1638 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING_LOCLEN \ |
1639 | assert(s) | |
a5d565cd | 1640 | #endif |
ef9e3b4d | 1641 | /* PERL_CALLCONV bool is_invariant_string(const U8* const s, STRLEN len) |
a4c56e8a KW |
1642 | __attribute__warn_unused_result__ |
1643 | __attribute__pure__; */ | |
2015d234 | 1644 | #define PERL_ARGS_ASSERT_IS_INVARIANT_STRING |
f54cb97a | 1645 | |
e8a67806 NC |
1646 | PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX) |
1647 | __attribute__warn_unused_result__; | |
2015d234 | 1648 | #define PERL_ARGS_ASSERT_IS_LVALUE_SUB |
f54cb97a | 1649 | |
a5d565cd | 1650 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1651 | PERL_STATIC_INLINE bool Perl_is_safe_syscall(pTHX_ const char *pv, STRLEN len, const char *what, const char *op_name) |
a5d565cd JH |
1652 | __attribute__warn_unused_result__; |
1653 | #define PERL_ARGS_ASSERT_IS_SAFE_SYSCALL \ | |
1654 | assert(pv); assert(what); assert(op_name) | |
1655 | #endif | |
1656 | ||
ef9e3b4d | 1657 | /* PERL_CALLCONV bool is_strict_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1658 | __attribute__warn_unused_result__; */ |
2015d234 | 1659 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING |
9f2abfde | 1660 | |
33756530 | 1661 | /* PERL_CALLCONV bool is_strict_utf8_string_loc(const U8 *s, STRLEN len, const U8 **ep); */ |
2015d234 | 1662 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING_LOC |
a5d565cd | 1663 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1664 | PERL_STATIC_INLINE bool Perl_is_strict_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
9f2abfde KW |
1665 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING_LOCLEN \ |
1666 | assert(s) | |
a5d565cd | 1667 | #endif |
1545ba5b | 1668 | #ifndef NO_MATHOMS |
e8a67806 | 1669 | PERL_CALLCONV STRLEN Perl_is_utf8_char(const U8 *s) |
6ba07ce1 | 1670 | __attribute__deprecated__; |
e8a67806 NC |
1671 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR \ |
1672 | assert(s) | |
1545ba5b | 1673 | #endif |
e8a67806 | 1674 | |
3f1866a8 KW |
1675 | #ifndef NO_MATHOMS |
1676 | PERL_CALLCONV STRLEN Perl_is_utf8_char_buf(const U8 *buf, const U8 *buf_end); | |
492a624f KW |
1677 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF \ |
1678 | assert(buf); assert(buf_end) | |
3f1866a8 | 1679 | #endif |
1376b35c KW |
1680 | PERL_CALLCONV STRLEN Perl_is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags) |
1681 | __attribute__warn_unused_result__ | |
1682 | __attribute__pure__; | |
1683 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR_HELPER \ | |
1684 | assert(s); assert(e) | |
1685 | ||
33756530 | 1686 | /* PERL_CALLCONV bool is_utf8_fixed_width_buf_flags(const U8 * const s, STRLEN len, const U32 flags); */ |
2015d234 | 1687 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_FLAGS |
33756530 | 1688 | /* PERL_CALLCONV bool is_utf8_fixed_width_buf_loc_flags(const U8 * const s, STRLEN len, const U8 **ep, const U32 flags); */ |
2015d234 | 1689 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_LOC_FLAGS |
a5d565cd | 1690 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1691 | PERL_STATIC_INLINE bool Perl_is_utf8_fixed_width_buf_loclen_flags(const U8 * const s, STRLEN len, const U8 **ep, STRLEN *el, const U32 flags); |
8bc127bf KW |
1692 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_LOCLEN_FLAGS \ |
1693 | assert(s) | |
a5d565cd | 1694 | #endif |
e17544a6 | 1695 | /* PERL_CALLCONV bool is_utf8_invariant_string(const U8* const s, STRLEN len) |
0cbf5865 | 1696 | __attribute__warn_unused_result__; */ |
2015d234 | 1697 | #define PERL_ARGS_ASSERT_IS_UTF8_INVARIANT_STRING |
0cbf5865 | 1698 | |
a5d565cd | 1699 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1700 | PERL_STATIC_INLINE bool Perl_is_utf8_invariant_string_loc(const U8* const s, STRLEN len, const U8 ** ep) |
cfe24c19 | 1701 | __attribute__warn_unused_result__; |
0cbf5865 | 1702 | #define PERL_ARGS_ASSERT_IS_UTF8_INVARIANT_STRING_LOC \ |
8871a094 | 1703 | assert(s) |
a5d565cd | 1704 | #endif |
8871a094 | 1705 | |
ef9e3b4d | 1706 | /* PERL_CALLCONV bool is_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1707 | __attribute__warn_unused_result__; */ |
2015d234 | 1708 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING |
35936d22 | 1709 | |
a5d565cd | 1710 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1711 | PERL_STATIC_INLINE bool Perl_is_utf8_string_flags(const U8 *s, STRLEN len, const U32 flags) |
cfe24c19 | 1712 | __attribute__warn_unused_result__; |
9f2abfde KW |
1713 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_FLAGS \ |
1714 | assert(s) | |
a5d565cd | 1715 | #endif |
9f2abfde | 1716 | |
3f1866a8 | 1717 | #ifndef NO_MATHOMS |
8d1c5bf7 | 1718 | PERL_CALLCONV bool Perl_is_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep); |
e8a67806 | 1719 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC \ |
55c5b58b | 1720 | assert(s); assert(ep) |
3f1866a8 | 1721 | #endif |
f60f61fd | 1722 | /* PERL_CALLCONV bool is_utf8_string_loc_flags(const U8 *s, STRLEN len, const U8 **ep, const U32 flags); */ |
2015d234 | 1723 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC_FLAGS |
a5d565cd | 1724 | #ifndef PERL_NO_INLINE_FUNCTIONS |
f60f61fd | 1725 | PERL_STATIC_INLINE bool Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
e8a67806 NC |
1726 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN \ |
1727 | assert(s) | |
a5d565cd JH |
1728 | #endif |
1729 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1730 | PERL_STATIC_INLINE bool Perl_is_utf8_string_loclen_flags(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el, const U32 flags); |
9f2abfde KW |
1731 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN_FLAGS \ |
1732 | assert(s) | |
a5d565cd | 1733 | #endif |
f1c999a7 | 1734 | /* PERL_CALLCONV bool is_utf8_valid_partial_char(const U8 * const s, const U8 * const e) |
b289a0bd | 1735 | __attribute__warn_unused_result__ |
f1c999a7 | 1736 | __attribute__pure__; */ |
2015d234 | 1737 | #define PERL_ARGS_ASSERT_IS_UTF8_VALID_PARTIAL_CHAR |
f1c999a7 | 1738 | |
a5d565cd | 1739 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1740 | PERL_STATIC_INLINE bool Perl_is_utf8_valid_partial_char_flags(const U8 * const s, const U8 * const e, const U32 flags) |
cfe24c19 | 1741 | __attribute__warn_unused_result__; |
f1c999a7 | 1742 | #define PERL_ARGS_ASSERT_IS_UTF8_VALID_PARTIAL_CHAR_FLAGS \ |
4dab108f | 1743 | assert(s); assert(e) |
a5d565cd | 1744 | #endif |
4dab108f | 1745 | |
ca0c6e8c KW |
1746 | PERL_CALLCONV bool Perl_isinfnan(NV nv) |
1747 | __attribute__warn_unused_result__ | |
1748 | __attribute__pure__; | |
2015d234 | 1749 | #define PERL_ARGS_ASSERT_ISINFNAN |
ca0c6e8c | 1750 | |
6ba07ce1 | 1751 | PERL_CALLCONV bool Perl_isinfnansv(pTHX_ SV *sv); |
354b74ae FC |
1752 | #define PERL_ARGS_ASSERT_ISINFNANSV \ |
1753 | assert(sv) | |
6ba07ce1 | 1754 | PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP *o); |
7918f24d NC |
1755 | #define PERL_ARGS_ASSERT_JMAYBE \ |
1756 | assert(o) | |
4048f010 | 1757 | PERL_CALLCONV I32 Perl_keyword(pTHX_ const char *name, I32 len, bool all_keywords) |
b289a0bd | 1758 | __attribute__warn_unused_result__ |
6ba07ce1 | 1759 | __attribute__pure__; |
7918f24d NC |
1760 | #define PERL_ARGS_ASSERT_KEYWORD \ |
1761 | assert(name) | |
f54cb97a | 1762 | |
6ba07ce1 | 1763 | PERL_CALLCONV int Perl_keyword_plugin_standard(pTHX_ char* keyword_ptr, STRLEN keyword_len, OP** op_ptr); |
e8a67806 NC |
1764 | #define PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD \ |
1765 | assert(keyword_ptr); assert(op_ptr) | |
1c23e2bd | 1766 | PERL_CALLCONV void Perl_leave_adjust_stacks(pTHX_ SV **from_sp, SV **to_sp, U8 gimme, int filter); |
799da9d7 | 1767 | #define PERL_ARGS_ASSERT_LEAVE_ADJUST_STACKS \ |
e02ce34b | 1768 | assert(from_sp); assert(to_sp) |
e8a67806 | 1769 | PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base); |
2015d234 | 1770 | #define PERL_ARGS_ASSERT_LEAVE_SCOPE |
e8a67806 | 1771 | PERL_CALLCONV bool Perl_lex_bufutf8(pTHX); |
2015d234 | 1772 | #define PERL_ARGS_ASSERT_LEX_BUFUTF8 |
6ba07ce1 | 1773 | PERL_CALLCONV void Perl_lex_discard_to(pTHX_ char* ptr); |
e8a67806 NC |
1774 | #define PERL_ARGS_ASSERT_LEX_DISCARD_TO \ |
1775 | assert(ptr) | |
f0e67a1d | 1776 | PERL_CALLCONV char* Perl_lex_grow_linestr(pTHX_ STRLEN len); |
2015d234 | 1777 | #define PERL_ARGS_ASSERT_LEX_GROW_LINESTR |
e8a67806 | 1778 | PERL_CALLCONV bool Perl_lex_next_chunk(pTHX_ U32 flags); |
2015d234 | 1779 | #define PERL_ARGS_ASSERT_LEX_NEXT_CHUNK |
e8a67806 | 1780 | PERL_CALLCONV I32 Perl_lex_peek_unichar(pTHX_ U32 flags); |
2015d234 | 1781 | #define PERL_ARGS_ASSERT_LEX_PEEK_UNICHAR |
e8a67806 | 1782 | PERL_CALLCONV void Perl_lex_read_space(pTHX_ U32 flags); |
2015d234 | 1783 | #define PERL_ARGS_ASSERT_LEX_READ_SPACE |
6ba07ce1 | 1784 | PERL_CALLCONV void Perl_lex_read_to(pTHX_ char* ptr); |
e8a67806 NC |
1785 | #define PERL_ARGS_ASSERT_LEX_READ_TO \ |
1786 | assert(ptr) | |
e8a67806 | 1787 | PERL_CALLCONV I32 Perl_lex_read_unichar(pTHX_ U32 flags); |
2015d234 | 1788 | #define PERL_ARGS_ASSERT_LEX_READ_UNICHAR |
8eaa0acf | 1789 | PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp, U32 flags); |
2015d234 | 1790 | #define PERL_ARGS_ASSERT_LEX_START |
6ba07ce1 | 1791 | PERL_CALLCONV void Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags); |
9dcc53ea Z |
1792 | #define PERL_ARGS_ASSERT_LEX_STUFF_PV \ |
1793 | assert(pv) | |
6ba07ce1 | 1794 | PERL_CALLCONV void Perl_lex_stuff_pvn(pTHX_ const char* pv, STRLEN len, U32 flags); |
e8a67806 NC |
1795 | #define PERL_ARGS_ASSERT_LEX_STUFF_PVN \ |
1796 | assert(pv) | |
6ba07ce1 | 1797 | PERL_CALLCONV void Perl_lex_stuff_sv(pTHX_ SV* sv, U32 flags); |
f0e67a1d Z |
1798 | #define PERL_ARGS_ASSERT_LEX_STUFF_SV \ |
1799 | assert(sv) | |
6ba07ce1 | 1800 | PERL_CALLCONV void Perl_lex_unstuff(pTHX_ char* ptr); |
f0e67a1d Z |
1801 | #define PERL_ARGS_ASSERT_LEX_UNSTUFF \ |
1802 | assert(ptr) | |
1d7c1841 | 1803 | PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); |
2015d234 | 1804 | #define PERL_ARGS_ASSERT_LIST |
4e8ee35f KW |
1805 | PERL_CALLCONV HV* Perl_load_charnames(pTHX_ SV * char_name, const char * context, const STRLEN context_len, const char ** error_msg) |
1806 | __attribute__warn_unused_result__; | |
1807 | #define PERL_ARGS_ASSERT_LOAD_CHARNAMES \ | |
1808 | assert(char_name); assert(context); assert(error_msg) | |
1809 | ||
6ba07ce1 | 1810 | PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...); |
7918f24d NC |
1811 | #define PERL_ARGS_ASSERT_LOAD_MODULE \ |
1812 | assert(name) | |
6ba07ce1 | 1813 | PERL_CALLCONV OP* Perl_localize(pTHX_ OP *o, I32 lex); |
7918f24d NC |
1814 | #define PERL_ARGS_ASSERT_LOCALIZE \ |
1815 | assert(o) | |
aad570aa | 1816 | PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV *const sv) |
6ba07ce1 | 1817 | __attribute__warn_unused_result__; |
7918f24d NC |
1818 | #define PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER \ |
1819 | assert(sv) | |
f54cb97a | 1820 | |
6ba07ce1 | 1821 | PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 NC |
1822 | #define PERL_ARGS_ASSERT_MAGIC_CLEAR_ALL_ENV \ |
1823 | assert(sv); assert(mg) | |
6ba07ce1 | 1824 | PERL_CALLCONV int Perl_magic_cleararylen_p(pTHX_ SV* sv, MAGIC* mg); |
83f29afa VP |
1825 | #define PERL_ARGS_ASSERT_MAGIC_CLEARARYLEN_P \ |
1826 | assert(sv); assert(mg) | |
6ba07ce1 | 1827 | PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1828 | #define PERL_ARGS_ASSERT_MAGIC_CLEARENV \ |
1829 | assert(sv); assert(mg) | |
6ba07ce1 | 1830 | PERL_CALLCONV int Perl_magic_clearhint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1831 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINT \ |
1832 | assert(sv); assert(mg) | |
6ba07ce1 | 1833 | PERL_CALLCONV int Perl_magic_clearhints(pTHX_ SV* sv, MAGIC* mg); |
f747ebd6 Z |
1834 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINTS \ |
1835 | assert(sv); assert(mg) | |
6ba07ce1 | 1836 | PERL_CALLCONV int Perl_magic_clearisa(pTHX_ SV* sv, MAGIC* mg); |
7918f24d | 1837 | #define PERL_ARGS_ASSERT_MAGIC_CLEARISA \ |
0e446081 | 1838 | assert(mg) |
6ba07ce1 | 1839 | PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1840 | #define PERL_ARGS_ASSERT_MAGIC_CLEARPACK \ |
1841 | assert(sv); assert(mg) | |
6ba07ce1 | 1842 | PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1843 | #define PERL_ARGS_ASSERT_MAGIC_CLEARSIG \ |
1844 | assert(sv); assert(mg) | |
6ba07ce1 | 1845 | PERL_CALLCONV int Perl_magic_copycallchecker(pTHX_ SV* sv, MAGIC *mg, SV *nsv, const char *name, I32 namlen); |
09fb282d FC |
1846 | #define PERL_ARGS_ASSERT_MAGIC_COPYCALLCHECKER \ |
1847 | assert(sv); assert(mg); assert(nsv) | |
e8a67806 | 1848 | PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg); |
2015d234 | 1849 | #define PERL_ARGS_ASSERT_MAGIC_DUMP |
6ba07ce1 | 1850 | PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, const MAGIC* mg); |
7918f24d NC |
1851 | #define PERL_ARGS_ASSERT_MAGIC_EXISTSPACK \ |
1852 | assert(sv); assert(mg) | |
6ba07ce1 | 1853 | PERL_CALLCONV int Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 NC |
1854 | #define PERL_ARGS_ASSERT_MAGIC_FREEARYLEN_P \ |
1855 | assert(sv); assert(mg) | |
6ba07ce1 | 1856 | PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1857 | #define PERL_ARGS_ASSERT_MAGIC_FREEOVRLD \ |
1858 | assert(sv); assert(mg) | |
6ba07ce1 | 1859 | PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1860 | #define PERL_ARGS_ASSERT_MAGIC_GET \ |
1861 | assert(sv); assert(mg) | |
6ba07ce1 | 1862 | PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg); |
7918f24d NC |
1863 | #define PERL_ARGS_ASSERT_MAGIC_GETARYLEN \ |
1864 | assert(sv); assert(mg) | |
6ba07ce1 | 1865 | PERL_CALLCONV int Perl_magic_getdebugvar(pTHX_ SV* sv, MAGIC* mg); |
a6d69523 TC |
1866 | #define PERL_ARGS_ASSERT_MAGIC_GETDEBUGVAR \ |
1867 | assert(sv); assert(mg) | |
6ba07ce1 | 1868 | PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1869 | #define PERL_ARGS_ASSERT_MAGIC_GETDEFELEM \ |
1870 | assert(sv); assert(mg) | |
6ba07ce1 | 1871 | PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1872 | #define PERL_ARGS_ASSERT_MAGIC_GETNKEYS \ |
1873 | assert(sv); assert(mg) | |
6ba07ce1 | 1874 | PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1875 | #define PERL_ARGS_ASSERT_MAGIC_GETPACK \ |
1876 | assert(sv); assert(mg) | |
6ba07ce1 | 1877 | PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1878 | #define PERL_ARGS_ASSERT_MAGIC_GETPOS \ |
1879 | assert(sv); assert(mg) | |
6ba07ce1 | 1880 | PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1881 | #define PERL_ARGS_ASSERT_MAGIC_GETSIG \ |
1882 | assert(sv); assert(mg) | |
6ba07ce1 | 1883 | PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1884 | #define PERL_ARGS_ASSERT_MAGIC_GETSUBSTR \ |
1885 | assert(sv); assert(mg) | |
6ba07ce1 | 1886 | PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1887 | #define PERL_ARGS_ASSERT_MAGIC_GETTAINT \ |
1888 | assert(sv); assert(mg) | |
6ba07ce1 | 1889 | PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1890 | #define PERL_ARGS_ASSERT_MAGIC_GETUVAR \ |
1891 | assert(sv); assert(mg) | |
6ba07ce1 | 1892 | PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1893 | #define PERL_ARGS_ASSERT_MAGIC_GETVEC \ |
1894 | assert(sv); assert(mg) | |
6ba07ce1 | 1895 | PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg); |
e8a67806 NC |
1896 | #define PERL_ARGS_ASSERT_MAGIC_KILLBACKREFS \ |
1897 | assert(sv); assert(mg) | |
6ba07ce1 | 1898 | PERL_CALLCONV SV* Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, SV *meth, U32 flags, U32 argc, ...); |
e8a67806 NC |
1899 | #define PERL_ARGS_ASSERT_MAGIC_METHCALL \ |
1900 | assert(sv); assert(mg); assert(meth) | |
6ba07ce1 | 1901 | PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV *sv, MAGIC *mg, SV *key); |
7918f24d NC |
1902 | #define PERL_ARGS_ASSERT_MAGIC_NEXTPACK \ |
1903 | assert(sv); assert(mg); assert(key) | |
6ba07ce1 | 1904 | PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1905 | #define PERL_ARGS_ASSERT_MAGIC_REGDATA_CNT \ |
1906 | assert(sv); assert(mg) | |
6ba07ce1 | 1907 | PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1908 | #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_GET \ |
1909 | assert(sv); assert(mg) | |
6ba07ce1 | 1910 | PERL_CALLCONV SV* Perl_magic_scalarpack(pTHX_ HV *hv, MAGIC *mg); |
e8a67806 NC |
1911 | #define PERL_ARGS_ASSERT_MAGIC_SCALARPACK \ |
1912 | assert(hv); assert(mg) | |
6ba07ce1 | 1913 | PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1914 | #define PERL_ARGS_ASSERT_MAGIC_SET \ |
1915 | assert(sv); assert(mg) | |
6ba07ce1 | 1916 | PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1917 | #define PERL_ARGS_ASSERT_MAGIC_SET_ALL_ENV \ |
7918f24d | 1918 | assert(sv); assert(mg) |
6ba07ce1 | 1919 | PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1920 | #define PERL_ARGS_ASSERT_MAGIC_SETARYLEN \ |
7918f24d | 1921 | assert(sv); assert(mg) |
6ba07ce1 | 1922 | PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1923 | #define PERL_ARGS_ASSERT_MAGIC_SETDBLINE \ |
1924 | assert(sv); assert(mg) | |
6ba07ce1 | 1925 | PERL_CALLCONV int Perl_magic_setdebugvar(pTHX_ SV* sv, MAGIC* mg); |
a6d69523 TC |
1926 | #define PERL_ARGS_ASSERT_MAGIC_SETDEBUGVAR \ |
1927 | assert(sv); assert(mg) | |
6ba07ce1 | 1928 | PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1929 | #define PERL_ARGS_ASSERT_MAGIC_SETDEFELEM \ |
1930 | assert(sv); assert(mg) | |
6ba07ce1 | 1931 | PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1932 | #define PERL_ARGS_ASSERT_MAGIC_SETENV \ |
1933 | assert(sv); assert(mg) | |
6ba07ce1 | 1934 | PERL_CALLCONV int Perl_magic_sethint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1935 | #define PERL_ARGS_ASSERT_MAGIC_SETHINT \ |
1936 | assert(sv); assert(mg) | |
6ba07ce1 | 1937 | PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1938 | #define PERL_ARGS_ASSERT_MAGIC_SETISA \ |
1939 | assert(sv); assert(mg) | |
6ba07ce1 | 1940 | PERL_CALLCONV int Perl_magic_setlvref(pTHX_ SV* sv, MAGIC* mg); |
9cce4f9a FC |
1941 | #define PERL_ARGS_ASSERT_MAGIC_SETLVREF \ |
1942 | assert(sv); assert(mg) | |
6ba07ce1 | 1943 | PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1944 | #define PERL_ARGS_ASSERT_MAGIC_SETMGLOB \ |
1945 | assert(sv); assert(mg) | |
6ba07ce1 | 1946 | PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1947 | #define PERL_ARGS_ASSERT_MAGIC_SETNKEYS \ |
1948 | assert(sv); assert(mg) | |
1f1dcfb5 FC |
1949 | PERL_CALLCONV int Perl_magic_setnonelem(pTHX_ SV* sv, MAGIC* mg); |
1950 | #define PERL_ARGS_ASSERT_MAGIC_SETNONELEM \ | |
1951 | assert(sv); assert(mg) | |
6ba07ce1 | 1952 | PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1953 | #define PERL_ARGS_ASSERT_MAGIC_SETPACK \ |
1954 | assert(sv); assert(mg) | |
6ba07ce1 | 1955 | PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1956 | #define PERL_ARGS_ASSERT_MAGIC_SETPOS \ |
1957 | assert(sv); assert(mg) | |
6ba07ce1 | 1958 | PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1959 | #define PERL_ARGS_ASSERT_MAGIC_SETREGEXP \ |
1960 | assert(sv); assert(mg) | |
6ba07ce1 | 1961 | PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d | 1962 | #define PERL_ARGS_ASSERT_MAGIC_SETSIG \ |
38a124f0 | 1963 | assert(mg) |
6ba07ce1 | 1964 | PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1965 | #define PERL_ARGS_ASSERT_MAGIC_SETSUBSTR \ |
1966 | assert(sv); assert(mg) | |
6ba07ce1 | 1967 | PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1968 | #define PERL_ARGS_ASSERT_MAGIC_SETTAINT \ |
1969 | assert(sv); assert(mg) | |
6ba07ce1 | 1970 | PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1971 | #define PERL_ARGS_ASSERT_MAGIC_SETUTF8 \ |
7918f24d | 1972 | assert(sv); assert(mg) |
6ba07ce1 | 1973 | PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1974 | #define PERL_ARGS_ASSERT_MAGIC_SETUVAR \ |
7918f24d | 1975 | assert(sv); assert(mg) |
6ba07ce1 | 1976 | PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1977 | #define PERL_ARGS_ASSERT_MAGIC_SETVEC \ |
7918f24d | 1978 | assert(sv); assert(mg) |
6ba07ce1 | 1979 | PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1980 | #define PERL_ARGS_ASSERT_MAGIC_SIZEPACK \ |
1981 | assert(sv); assert(mg) | |
6ba07ce1 | 1982 | PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1983 | #define PERL_ARGS_ASSERT_MAGIC_WIPEPACK \ |
1984 | assert(sv); assert(mg) | |
e8a67806 NC |
1985 | PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes) |
1986 | __attribute__malloc__ | |
1987 | __attribute__warn_unused_result__; | |
2015d234 | 1988 | #define PERL_ARGS_ASSERT_MALLOC |
efaf3674 | 1989 | |
ba5248fc | 1990 | PERL_CALLCONV I32 * Perl_markstack_grow(pTHX); |
2015d234 | 1991 | #define PERL_ARGS_ASSERT_MARKSTACK_GROW |
894356b3 | 1992 | PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...) |
6ba07ce1 | 1993 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
7918f24d NC |
1994 | #define PERL_ARGS_ASSERT_MESS \ |
1995 | assert(pat) | |
aec46f14 | 1996 | |
6ba07ce1 | 1997 | PERL_CALLCONV SV* Perl_mess_sv(pTHX_ SV* basemsg, bool consume); |
c5df3096 Z |
1998 | #define PERL_ARGS_ASSERT_MESS_SV \ |
1999 | assert(basemsg) | |
e8a67806 | 2000 | PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); |
2015d234 | 2001 | #define PERL_ARGS_ASSERT_MFREE |
6ba07ce1 | 2002 | PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv); |
7918f24d NC |
2003 | #define PERL_ARGS_ASSERT_MG_CLEAR \ |
2004 | assert(sv) | |
6ba07ce1 | 2005 | PERL_CALLCONV int Perl_mg_copy(pTHX_ SV *sv, SV *nsv, const char *key, I32 klen); |
7918f24d NC |
2006 | #define PERL_ARGS_ASSERT_MG_COPY \ |
2007 | assert(sv); assert(nsv) | |
ddeaf645 | 2008 | PERL_CALLCONV MAGIC* Perl_mg_find(const SV* sv, int type) |
255164ba | 2009 | __attribute__warn_unused_result__; |
2015d234 | 2010 | #define PERL_ARGS_ASSERT_MG_FIND |
255164ba | 2011 | |
96c2a8ff | 2012 | PERL_CALLCONV MAGIC* Perl_mg_find_mglob(pTHX_ SV* sv) |
6ba07ce1 | 2013 | __attribute__warn_unused_result__; |
96c2a8ff FC |
2014 | #define PERL_ARGS_ASSERT_MG_FIND_MGLOB \ |
2015 | assert(sv) | |
2016 | ||
ddeaf645 | 2017 | PERL_CALLCONV MAGIC* Perl_mg_findext(const SV* sv, int type, const MGVTBL *vtbl) |
39de7f53 | 2018 | __attribute__warn_unused_result__; |
2015d234 | 2019 | #define PERL_ARGS_ASSERT_MG_FINDEXT |
39de7f53 | 2020 | |
6ba07ce1 | 2021 | PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv); |
7918f24d NC |
2022 | #define PERL_ARGS_ASSERT_MG_FREE \ |
2023 | assert(sv) | |
6ba07ce1 | 2024 | PERL_CALLCONV void Perl_mg_free_type(pTHX_ SV* sv, int how); |
d9088386 Z |
2025 | #define PERL_ARGS_ASSERT_MG_FREE_TYPE \ |
2026 | assert(sv) | |
e0d4aead TC |
2027 | PERL_CALLCONV void Perl_mg_freeext(pTHX_ SV* sv, int how, const MGVTBL *vtbl); |
2028 | #define PERL_ARGS_ASSERT_MG_FREEEXT \ | |
2029 | assert(sv) | |
6ba07ce1 | 2030 | PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv); |
7918f24d NC |
2031 | #define PERL_ARGS_ASSERT_MG_GET \ |
2032 | assert(sv) | |
9a957fbc | 2033 | PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv) |
6ba07ce1 | 2034 | __attribute__deprecated__; |
7918f24d NC |
2035 | #define PERL_ARGS_ASSERT_MG_LENGTH \ |
2036 | assert(sv) | |
9a957fbc | 2037 | |
6ba07ce1 | 2038 | PERL_CALLCONV void Perl_mg_localize(pTHX_ SV* sv, SV* nsv, bool setmagic); |
e8a67806 NC |
2039 | #define PERL_ARGS_ASSERT_MG_LOCALIZE \ |
2040 | assert(sv); assert(nsv) | |
6ba07ce1 | 2041 | PERL_CALLCONV void Perl_mg_magical(SV* sv); |
7918f24d NC |
2042 | #define PERL_ARGS_ASSERT_MG_MAGICAL \ |
2043 | assert(sv) | |
6ba07ce1 | 2044 | PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv); |
7918f24d NC |
2045 | #define PERL_ARGS_ASSERT_MG_SET \ |
2046 | assert(sv) | |
6ba07ce1 | 2047 | PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv); |
7918f24d NC |
2048 | #define PERL_ARGS_ASSERT_MG_SIZE \ |
2049 | assert(sv) | |
6ba07ce1 | 2050 | PERL_CALLCONV void Perl_mini_mktime(struct tm *ptm); |
7918f24d NC |
2051 | #define PERL_ARGS_ASSERT_MINI_MKTIME \ |
2052 | assert(ptm) | |
a79b25b7 | 2053 | PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ const char* s, STRLEN len); |
2015d234 | 2054 | #define PERL_ARGS_ASSERT_MODE_FROM_DISCIPLINE |
e8a67806 | 2055 | PERL_CALLCONV void * Perl_more_bodies(pTHX_ const svtype sv_type, const size_t body_size, const size_t arena_size); |
2015d234 | 2056 | #define PERL_ARGS_ASSERT_MORE_BODIES |
6ba07ce1 | 2057 | PERL_CALLCONV const char* Perl_moreswitches(pTHX_ const char* s); |
7918f24d NC |
2058 | #define PERL_ARGS_ASSERT_MORESWITCHES \ |
2059 | assert(s) | |
24f3e849 KW |
2060 | #ifndef PERL_NO_INLINE_FUNCTIONS |
2061 | PERL_STATIC_INLINE char * Perl_mortal_getenv(const char * str) | |
2062 | __attribute__warn_unused_result__; | |
2063 | #define PERL_ARGS_ASSERT_MORTAL_GETENV \ | |
2064 | assert(str) | |
2065 | #endif | |
2066 | ||
6ba07ce1 | 2067 | PERL_CALLCONV const struct mro_alg * Perl_mro_get_from_name(pTHX_ SV *name); |
e8a67806 NC |
2068 | #define PERL_ARGS_ASSERT_MRO_GET_FROM_NAME \ |
2069 | assert(name) | |
6ba07ce1 | 2070 | PERL_CALLCONV AV* Perl_mro_get_linear_isa(pTHX_ HV* stash); |
e8a67806 NC |
2071 | #define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA \ |
2072 | assert(stash) | |
6ba07ce1 | 2073 | PERL_CALLCONV SV* Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which); |
e8a67806 NC |
2074 | #define PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA \ |
2075 | assert(smeta); assert(which) | |
6ba07ce1 | 2076 | PERL_CALLCONV void Perl_mro_isa_changed_in(pTHX_ HV* stash); |
4df35a07 FC |
2077 | #define PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN \ |
2078 | assert(stash) | |
6ba07ce1 | 2079 | PERL_CALLCONV struct mro_meta* Perl_mro_meta_init(pTHX_ HV* stash); |
e8a67806 NC |
2080 | #define PERL_ARGS_ASSERT_MRO_META_INIT \ |
2081 | assert(stash) | |
6ba07ce1 | 2082 | PERL_CALLCONV void Perl_mro_method_changed_in(pTHX_ HV* stash); |
e8a67806 NC |
2083 | #define PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN \ |
2084 | assert(stash) | |
6ba07ce1 | 2085 | PERL_CALLCONV void Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV * const gv, U32 flags); |
afdbe55d FC |
2086 | #define PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED \ |
2087 | assert(gv) | |
6ba07ce1 | 2088 | PERL_CALLCONV void Perl_mro_register(pTHX_ const struct mro_alg *mro); |
e8a67806 NC |
2089 | #define PERL_ARGS_ASSERT_MRO_REGISTER \ |
2090 | assert(mro) | |
6ba07ce1 | 2091 | PERL_CALLCONV void Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name); |
e8a67806 NC |
2092 | #define PERL_ARGS_ASSERT_MRO_SET_MRO \ |
2093 | assert(meta); assert(name) | |
6ba07ce1 | 2094 | PERL_CALLCONV SV* Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which, SV *const data); |
e8a67806 NC |
2095 | #define PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA \ |
2096 | assert(smeta); assert(which); assert(data) | |
e839e6ed DM |
2097 | PERL_CALLCONV SV* Perl_multiconcat_stringify(pTHX_ const OP* o); |
2098 | #define PERL_ARGS_ASSERT_MULTICONCAT_STRINGIFY \ | |
2099 | assert(o) | |
6ba07ce1 | 2100 | PERL_CALLCONV SV* Perl_multideref_stringify(pTHX_ const OP* o, CV *cv); |
48ee9c0e | 2101 | #define PERL_ARGS_ASSERT_MULTIDEREF_STRINGIFY \ |
dc3c1c70 | 2102 | assert(o) |
6ba07ce1 | 2103 | PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s); |
e8a67806 NC |
2104 | #define PERL_ARGS_ASSERT_MY_ATOF \ |
2105 | assert(s) | |
808ea3ad | 2106 | PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *orig, NV* value); |
e8a67806 | 2107 | #define PERL_ARGS_ASSERT_MY_ATOF2 \ |
808ea3ad | 2108 | assert(orig); assert(value) |
6928bedc KW |
2109 | PERL_CALLCONV char* Perl_my_atof3(pTHX_ const char *orig, NV* value, const STRLEN len); |
2110 | #define PERL_ARGS_ASSERT_MY_ATOF3 \ | |
2111 | assert(orig); assert(value) | |
6ba07ce1 | 2112 | PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs); |
e8a67806 NC |
2113 | #define PERL_ARGS_ASSERT_MY_ATTRS \ |
2114 | assert(o) | |
e8a67806 | 2115 | PERL_CALLCONV void Perl_my_clearenv(pTHX); |
2015d234 | 2116 | #define PERL_ARGS_ASSERT_MY_CLEARENV |
ddeaf645 | 2117 | PERL_CALLCONV int Perl_my_dirfd(DIR* dir); |
2015d234 | 2118 | #define PERL_ARGS_ASSERT_MY_DIRFD |
12a2785c | 2119 | PERL_CALLCONV_NO_RET void Perl_my_exit(pTHX_ U32 status) |
abb2c242 | 2120 | __attribute__noreturn__; |
2015d234 | 2121 | #define PERL_ARGS_ASSERT_MY_EXIT |
f54cb97a | 2122 | |
12a2785c | 2123 | PERL_CALLCONV_NO_RET void Perl_my_failure_exit(pTHX) |
abb2c242 | 2124 | __attribute__noreturn__; |
2015d234 | 2125 | #define PERL_ARGS_ASSERT_MY_FAILURE_EXIT |
f54cb97a | 2126 | |
1d7c1841 | 2127 | PERL_CALLCONV I32 Perl_my_fflush_all(pTHX); |
2015d234 | 2128 | #define PERL_ARGS_ASSERT_MY_FFLUSH_ALL |
52e18b1f | 2129 | PERL_CALLCONV Pid_t Perl_my_fork(void); |
2015d234 | 2130 | #define PERL_ARGS_ASSERT_MY_FORK |
3f1866a8 KW |
2131 | #ifndef NO_MATHOMS |
2132 | PERL_CALLCONV I32 Perl_my_lstat(pTHX); | |
2015d234 | 2133 | #define PERL_ARGS_ASSERT_MY_LSTAT |
3f1866a8 | 2134 | #endif |
0d7d409d | 2135 | PERL_CALLCONV I32 Perl_my_lstat_flags(pTHX_ const U32 flags); |
2015d234 | 2136 | #define PERL_ARGS_ASSERT_MY_LSTAT_FLAGS |
ae73d7ec TC |
2137 | PERL_CALLCONV int Perl_my_mkostemp_cloexec(char *templte, int flags) |
2138 | __attribute__warn_unused_result__; | |
2139 | #define PERL_ARGS_ASSERT_MY_MKOSTEMP_CLOEXEC \ | |
2140 | assert(templte) | |
2141 | ||
1cdb2692 Z |
2142 | PERL_CALLCONV int Perl_my_mkstemp_cloexec(char *templte) |
2143 | __attribute__warn_unused_result__; | |
2144 | #define PERL_ARGS_ASSERT_MY_MKSTEMP_CLOEXEC \ | |
2145 | assert(templte) | |
2146 | ||
6ba07ce1 | 2147 | PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ const char* mode, int n, SV ** args); |
7918f24d NC |
2148 | #define PERL_ARGS_ASSERT_MY_POPEN_LIST \ |
2149 | assert(mode); assert(args) | |
e1ec3a88 | 2150 | PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val); |
2015d234 | 2151 | #define PERL_ARGS_ASSERT_MY_SETENV |
e8a67806 | 2152 | PERL_CALLCONV int Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) |
6ba07ce1 | 2153 | __attribute__format__(__printf__,3,4); |
e8a67806 NC |
2154 | #define PERL_ARGS_ASSERT_MY_SNPRINTF \ |
2155 | assert(buffer); assert(format) | |
2156 | ||
2157 | PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]); | |
2015d234 | 2158 | #define PERL_ARGS_ASSERT_MY_SOCKETPAIR |
3f1866a8 KW |
2159 | #ifndef NO_MATHOMS |
2160 | PERL_CALLCONV I32 Perl_my_stat(pTHX); | |
2015d234 | 2161 | #define PERL_ARGS_ASSERT_MY_STAT |
3f1866a8 | 2162 | #endif |
0d7d409d | 2163 | PERL_CALLCONV I32 Perl_my_stat_flags(pTHX_ const U32 flags); |
2015d234 | 2164 | #define PERL_ARGS_ASSERT_MY_STAT_FLAGS |
2c6ee1a7 | 2165 | PERL_CALLCONV char* Perl_my_strerror(pTHX_ const int errnum); |
2015d234 | 2166 | #define PERL_ARGS_ASSERT_MY_STRERROR |
bfce84ec | 2167 | PERL_CALLCONV char * Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst) |
6ba07ce1 | 2168 | __attribute__format__(__strftime__,pTHX_1,0); |
7918f24d NC |
2169 | #define PERL_ARGS_ASSERT_MY_STRFTIME \ |
2170 | assert(fmt) | |
bfce84ec | 2171 | |
9ec8aea5 KW |
2172 | PERL_CALLCONV NV Perl_my_strtod(const char * const s, char ** e) |
2173 | __attribute__warn_unused_result__; | |
2174 | #define PERL_ARGS_ASSERT_MY_STRTOD \ | |
2175 | assert(s) | |
2176 | ||
e8a67806 | 2177 | PERL_CALLCONV void Perl_my_unexec(pTHX); |
2015d234 | 2178 | #define PERL_ARGS_ASSERT_MY_UNEXEC |
6ba07ce1 | 2179 | PERL_CALLCONV int Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap); |
e8a67806 NC |
2180 | #define PERL_ARGS_ASSERT_MY_VSNPRINTF \ |
2181 | assert(buffer); assert(format) | |
e8a67806 | 2182 | PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block); |
2015d234 | 2183 | #define PERL_ARGS_ASSERT_NEWANONATTRSUB |
e8a67806 | 2184 | PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o) |
e8a67806 | 2185 | __attribute__warn_unused_result__; |
2015d234 | 2186 | #define PERL_ARGS_ASSERT_NEWANONHASH |
f54cb97a | 2187 | |
f54cb97a | 2188 | PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o) |
abb2c242 | 2189 | __attribute__warn_unused_result__; |
2015d234 | 2190 | #define PERL_ARGS_ASSERT_NEWANONLIST |
f54cb97a | 2191 | |
e8a67806 | 2192 | PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block); |
2015d234 | 2193 | #define PERL_ARGS_ASSERT_NEWANONSUB |
e8a67806 | 2194 | PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right) |
abb2c242 | 2195 | __attribute__warn_unused_result__; |
2015d234 | 2196 | #define PERL_ARGS_ASSERT_NEWASSIGNOP |
f54cb97a | 2197 | |
e8f91c91 | 2198 | /* PERL_CALLCONV CV* newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); */ |
2015d234 | 2199 | #define PERL_ARGS_ASSERT_NEWATTRSUB |
e8f91c91 | 2200 | PERL_CALLCONV CV* Perl_newATTRSUB_x(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block, bool o_is_gv); |
2015d234 | 2201 | #define PERL_ARGS_ASSERT_NEWATTRSUB_X |
3f1866a8 KW |
2202 | #ifndef NO_MATHOMS |
2203 | PERL_CALLCONV AV* Perl_newAV(pTHX) | |
2204 | __attribute__warn_unused_result__; | |
2015d234 | 2205 | #define PERL_ARGS_ASSERT_NEWAV |
3f1866a8 | 2206 | #endif |
e8a67806 NC |
2207 | |
2208 | PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o) | |
6ba07ce1 | 2209 | __attribute__warn_unused_result__; |
e8a67806 NC |
2210 | #define PERL_ARGS_ASSERT_NEWAVREF \ |
2211 | assert(o) | |
2212 | ||
2213 | PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 | 2214 | __attribute__warn_unused_result__; |
2015d234 | 2215 | #define PERL_ARGS_ASSERT_NEWBINOP |
f54cb97a | 2216 | |
aec46f14 | 2217 | PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop) |
6ba07ce1 | 2218 | __attribute__warn_unused_result__; |
7918f24d NC |
2219 | #define PERL_ARGS_ASSERT_NEWCONDOP \ |
2220 | assert(first) | |
aec46f14 | 2221 | |
99ab892b | 2222 | PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv); |
2015d234 | 2223 | #define PERL_ARGS_ASSERT_NEWCONSTSUB |
9c0a6090 | 2224 | PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags, SV* sv); |
2015d234 | 2225 | #define PERL_ARGS_ASSERT_NEWCONSTSUB_FLAGS |
e8a67806 | 2226 | PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) |
e8a67806 | 2227 | __attribute__warn_unused_result__; |
2015d234 | 2228 | #define PERL_ARGS_ASSERT_NEWCVREF |
e8a67806 | 2229 | |
ce409cc8 LM |
2230 | PERL_CALLCONV OP* Perl_newDEFSVOP(pTHX) |
2231 | __attribute__warn_unused_result__; | |
2015d234 | 2232 | #define PERL_ARGS_ASSERT_NEWDEFSVOP |
ce409cc8 | 2233 | |
b5bbe64a | 2234 | PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block); |
2015d234 | 2235 | #define PERL_ARGS_ASSERT_NEWFORM |
94bf0465 | 2236 | PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, OP* sv, OP* expr, OP* block, OP* cont) |
6ba07ce1 | 2237 | __attribute__warn_unused_result__; |
7918f24d NC |
2238 | #define PERL_ARGS_ASSERT_NEWFOROP \ |
2239 | assert(expr) | |
f54cb97a | 2240 | |
7896dde7 | 2241 | PERL_CALLCONV OP* Perl_newGIVENOP(pTHX_ OP* cond, OP* block, PADOFFSET defsv_off) |
6ba07ce1 | 2242 | __attribute__warn_unused_result__; |
7918f24d | 2243 | #define PERL_ARGS_ASSERT_NEWGIVENOP \ |
7896dde7 | 2244 | assert(cond); assert(block) |
0d863452 | 2245 | |
6ba07ce1 | 2246 | PERL_CALLCONV GP * Perl_newGP(pTHX_ GV *const gv); |
e8a67806 NC |
2247 | #define PERL_ARGS_ASSERT_NEWGP \ |
2248 | assert(gv) | |
e8a67806 | 2249 | PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv) |
6ba07ce1 | 2250 | __attribute__warn_unused_result__; |
e8a67806 NC |
2251 | #define PERL_ARGS_ASSERT_NEWGVOP \ |
2252 | assert(gv) | |
2253 | ||
2254 | PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) | |
e8a67806 | 2255 | __attribute__warn_unused_result__; |
2015d234 | 2256 | #define PERL_ARGS_ASSERT_NEWGVREF |
e8a67806 | 2257 | |
6ba07ce1 | 2258 | /* PERL_CALLCONV GV* newGVgen(pTHX_ const char* pack); */ |
2015d234 | 2259 | #define PERL_ARGS_ASSERT_NEWGVGEN |
9cc50d5b | 2260 | PERL_CALLCONV GV* Perl_newGVgen_flags(pTHX_ const char* pack, U32 flags) |
6ba07ce1 | 2261 | __attribute__warn_unused_result__; |
9cc50d5b | 2262 | #define PERL_ARGS_ASSERT_NEWGVGEN_FLAGS \ |
e8a67806 NC |
2263 | assert(pack) |
2264 | ||
3f1866a8 KW |
2265 | #ifndef NO_MATHOMS |
2266 | PERL_CALLCONV HV* Perl_newHV(pTHX) | |
2267 | __attribute__warn_unused_result__; | |
2015d234 | 2268 | #define PERL_ARGS_ASSERT_NEWHV |
3f1866a8 | 2269 | #endif |
e8a67806 NC |
2270 | |
2271 | PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o) | |
6ba07ce1 | 2272 | __attribute__warn_unused_result__; |
e8a67806 NC |
2273 | #define PERL_ARGS_ASSERT_NEWHVREF \ |
2274 | assert(o) | |
2275 | ||
2276 | PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV *hv) | |
e8a67806 | 2277 | __attribute__warn_unused_result__; |
2015d234 | 2278 | #define PERL_ARGS_ASSERT_NEWHVHV |
e8a67806 | 2279 | |
3f1866a8 KW |
2280 | #ifndef NO_MATHOMS |
2281 | PERL_CALLCONV IO* Perl_newIO(pTHX) | |
3f1866a8 | 2282 | __attribute__warn_unused_result__; |
2015d234 | 2283 | #define PERL_ARGS_ASSERT_NEWIO |
3f1866a8 | 2284 | #endif |
e8a67806 NC |
2285 | |
2286 | PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
e8a67806 | 2287 | __attribute__warn_unused_result__; |
2015d234 | 2288 | #define PERL_ARGS_ASSERT_NEWLISTOP |
e8a67806 | 2289 | |
4048f010 | 2290 | PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP *first, OP *other) |
6ba07ce1 | 2291 | __attribute__warn_unused_result__; |
7918f24d NC |
2292 | #define PERL_ARGS_ASSERT_NEWLOGOP \ |
2293 | assert(first); assert(other) | |
f54cb97a AL |
2294 | |
2295 | PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label) | |
6ba07ce1 | 2296 | __attribute__warn_unused_result__; |
7918f24d NC |
2297 | #define PERL_ARGS_ASSERT_NEWLOOPEX \ |
2298 | assert(label) | |
f54cb97a AL |
2299 | |
2300 | PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block) | |
abb2c242 | 2301 | __attribute__warn_unused_result__; |
2015d234 | 2302 | #define PERL_ARGS_ASSERT_NEWLOOPOP |
f54cb97a | 2303 | |
b46e009d | 2304 | PERL_CALLCONV OP* Perl_newMETHOP(pTHX_ I32 type, I32 flags, OP* dynamic_meth) |
6ba07ce1 | 2305 | __attribute__warn_unused_result__; |
b46e009d | 2306 | #define PERL_ARGS_ASSERT_NEWMETHOP \ |
2307 | assert(dynamic_meth) | |
2308 | ||
2309 | PERL_CALLCONV OP* Perl_newMETHOP_named(pTHX_ I32 type, I32 flags, SV* const_meth) | |
6ba07ce1 | 2310 | __attribute__warn_unused_result__; |
b46e009d | 2311 | #define PERL_ARGS_ASSERT_NEWMETHOP_NAMED \ |
2312 | assert(const_meth) | |
2313 | ||
6ba07ce1 | 2314 | PERL_CALLCONV CV * Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); |
50278755 FC |
2315 | #define PERL_ARGS_ASSERT_NEWMYSUB \ |
2316 | assert(o) | |
4373e329 | 2317 | PERL_CALLCONV OP* Perl_newNULLLIST(pTHX) |
abb2c242 | 2318 | __attribute__warn_unused_result__; |
2015d234 | 2319 | #define PERL_ARGS_ASSERT_NEWNULLLIST |
f54cb97a AL |
2320 | |
2321 | PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags) | |
abb2c242 | 2322 | __attribute__warn_unused_result__; |
2015d234 | 2323 | #define PERL_ARGS_ASSERT_NEWOP |
f54cb97a | 2324 | |
a0e9f837 | 2325 | PERL_CALLCONV PADNAMELIST * Perl_newPADNAMELIST(size_t max) |
9b7476d7 | 2326 | __attribute__warn_unused_result__; |
2015d234 | 2327 | #define PERL_ARGS_ASSERT_NEWPADNAMELIST |
9b7476d7 | 2328 | |
a0e9f837 | 2329 | PERL_CALLCONV PADNAME * Perl_newPADNAMEouter(PADNAME *outer) |
6ba07ce1 | 2330 | __attribute__warn_unused_result__; |
0f94cb1f FC |
2331 | #define PERL_ARGS_ASSERT_NEWPADNAMEOUTER \ |
2332 | assert(outer) | |
2333 | ||
a0e9f837 | 2334 | PERL_CALLCONV PADNAME * Perl_newPADNAMEpvn(const char *s, STRLEN len) |
6ba07ce1 | 2335 | __attribute__warn_unused_result__; |
0f94cb1f FC |
2336 | #define PERL_ARGS_ASSERT_NEWPADNAMEPVN \ |
2337 | assert(s) | |
2338 | ||
e8a67806 | 2339 | PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) |
e8a67806 | 2340 | __attribute__warn_unused_result__; |
2015d234 | 2341 | #define PERL_ARGS_ASSERT_NEWPMOP |
e8a67806 | 2342 | |
6ba07ce1 | 2343 | PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o); |
7918f24d NC |
2344 | #define PERL_ARGS_ASSERT_NEWPROG \ |
2345 | assert(o) | |
e8a67806 | 2346 | PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv) |
e8a67806 | 2347 | __attribute__warn_unused_result__; |
2015d234 | 2348 | #define PERL_ARGS_ASSERT_NEWPVOP |
e8a67806 | 2349 | |
f54cb97a | 2350 | PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right) |
6ba07ce1 | 2351 | __attribute__warn_unused_result__; |
7918f24d NC |
2352 | #define PERL_ARGS_ASSERT_NEWRANGE \ |
2353 | assert(left); assert(right) | |
f54cb97a | 2354 | |
e8a67806 | 2355 | PERL_CALLCONV SV* Perl_newRV(pTHX_ SV *const sv) |
6ba07ce1 | 2356 | __attribute__warn_unused_result__; |
e8a67806 NC |
2357 | #define PERL_ARGS_ASSERT_NEWRV \ |
2358 | assert(sv) | |
2359 | ||
38ee6910 | 2360 | PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *const tmpRef) |
6ba07ce1 | 2361 | __attribute__warn_unused_result__; |
e8a67806 | 2362 | #define PERL_ARGS_ASSERT_NEWRV_NOINC \ |
38ee6910 | 2363 | assert(tmpRef) |
e8a67806 | 2364 | |
f54cb97a | 2365 | PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop) |
abb2c242 | 2366 | __attribute__warn_unused_result__; |
2015d234 | 2367 | #define PERL_ARGS_ASSERT_NEWSLICEOP |
f54cb97a AL |
2368 | |
2369 | PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o) | |
abb2c242 | 2370 | __attribute__warn_unused_result__; |
2015d234 | 2371 | #define PERL_ARGS_ASSERT_NEWSTATEOP |
f54cb97a | 2372 | |
6ba07ce1 | 2373 | PERL_CALLCONV CV* Perl_newSTUB(pTHX_ GV *gv, bool fake); |
186a5ba8 FC |
2374 | #define PERL_ARGS_ASSERT_NEWSTUB \ |
2375 | assert(gv) | |
3f1866a8 KW |
2376 | #ifndef NO_MATHOMS |
2377 | PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block); | |
2015d234 | 2378 | #define PERL_ARGS_ASSERT_NEWSUB |
3f1866a8 | 2379 | #endif |
e8a67806 | 2380 | PERL_CALLCONV SV* Perl_newSV(pTHX_ const STRLEN len) |
e8a67806 | 2381 | __attribute__warn_unused_result__; |
2015d234 | 2382 | #define PERL_ARGS_ASSERT_NEWSV |
77004dee | 2383 | |
e8a67806 | 2384 | PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv) |
6ba07ce1 | 2385 | __attribute__warn_unused_result__; |
e8a67806 NC |
2386 | #define PERL_ARGS_ASSERT_NEWSVOP \ |
2387 | assert(sv) | |
f54cb97a | 2388 | |
e8a67806 | 2389 | PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o) |
6ba07ce1 | 2390 | __attribute__warn_unused_result__; |
e8a67806 | 2391 | #define PERL_ARGS_ASSERT_NEWSVREF \ |
7918f24d | 2392 | assert(o) |
f54cb97a | 2393 | |
e8a67806 | 2394 | PERL_CALLCONV SV* Perl_newSV_type(pTHX_ const svtype type) |
abb2c242 | 2395 | __attribute__warn_unused_result__; |
2015d234 | 2396 | #define PERL_ARGS_ASSERT_NEWSV_TYPE |
f54cb97a | 2397 | |
199f858d | 2398 | PERL_CALLCONV SV* Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible) |
6ba07ce1 | 2399 | __attribute__warn_unused_result__; |
199f858d FC |
2400 | #define PERL_ARGS_ASSERT_NEWSVAVDEFELEM \ |
2401 | assert(av) | |
2402 | ||
e8a67806 | 2403 | PERL_CALLCONV SV* Perl_newSVhek(pTHX_ const HEK *const hek) |
abb2c242 | 2404 | __attribute__warn_unused_result__; |
2015d234 | 2405 | #define PERL_ARGS_ASSERT_NEWSVHEK |
f54cb97a | 2406 | |
e8a67806 | 2407 | PERL_CALLCONV SV* Perl_newSViv(pTHX_ const IV i) |
e8a67806 | 2408 | __attribute__warn_unused_result__; |
2015d234 | 2409 | #define PERL_ARGS_ASSERT_NEWSVIV |
f54cb97a | 2410 | |
e8a67806 | 2411 | PERL_CALLCONV SV* Perl_newSVnv(pTHX_ const NV n) |
abb2c242 | 2412 | __attribute__warn_unused_result__; |
2015d234 | 2413 | #define PERL_ARGS_ASSERT_NEWSVNV |
f54cb97a | 2414 | |
e8a67806 | 2415 | PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char *const s, const STRLEN len) |
abb2c242 | 2416 | __attribute__warn_unused_result__; |
2015d234 | 2417 | #define PERL_ARGS_ASSERT_NEWSVPV |
f54cb97a | 2418 | |
e8a67806 | 2419 | PERL_CALLCONV SV* Perl_newSVpv_share(pTHX_ const char* s, U32 hash) |
abb2c242 | 2420 | __attribute__warn_unused_result__; |
2015d234 | 2421 | #define PERL_ARGS_ASSERT_NEWSVPV_SHARE |
f54cb97a | 2422 | |
e8a67806 | 2423 | PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char *const pat, ...) |
abb2c242 | 2424 | __attribute__warn_unused_result__ |
6ba07ce1 | 2425 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
e8a67806 NC |
2426 | #define PERL_ARGS_ASSERT_NEWSVPVF \ |
2427 | assert(pat) | |
f54cb97a | 2428 | |
a5ba2527 | 2429 | PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len) |
abb2c242 | 2430 | __attribute__warn_unused_result__; |
2015d234 | 2431 | #define PERL_ARGS_ASSERT_NEWSVPVN |
f54cb97a | 2432 | |
23f13727 | 2433 | PERL_CALLCONV SV* Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags) |
740cce10 | 2434 | __attribute__warn_unused_result__; |
2015d234 | 2435 | #define PERL_ARGS_ASSERT_NEWSVPVN_FLAGS |
740cce10 | 2436 | |
f54cb97a | 2437 | PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash) |
abb2c242 | 2438 | __attribute__warn_unused_result__; |
2015d234 | 2439 | #define PERL_ARGS_ASSERT_NEWSVPVN_SHARE |
f54cb97a | 2440 | |
6ba07ce1 | 2441 | PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV *const rv, const char *const classname); |
7918f24d NC |
2442 | #define PERL_ARGS_ASSERT_NEWSVRV \ |
2443 | assert(rv) | |
238f2c13 | 2444 | #ifndef NO_MATHOMS |
23f13727 | 2445 | PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV *const old) |
abb2c242 | 2446 | __attribute__warn_unused_result__; |
2015d234 | 2447 | #define PERL_ARGS_ASSERT_NEWSVSV |
238f2c13 P |
2448 | #endif |
2449 | ||
2450 | PERL_CALLCONV SV* Perl_newSVsv_flags(pTHX_ SV *const old, I32 flags) | |
2451 | __attribute__warn_unused_result__; | |
2015d234 | 2452 | #define PERL_ARGS_ASSERT_NEWSVSV_FLAGS |
238f2c13 | 2453 | |
ef9e3b4d | 2454 | /* PERL_CALLCONV SV* newSVsv_nomg(pTHX_ SV *const old) |
238f2c13 | 2455 | __attribute__warn_unused_result__; */ |
2015d234 | 2456 | #define PERL_ARGS_ASSERT_NEWSVSV_NOMG |
f54cb97a | 2457 | |
e8a67806 | 2458 | PERL_CALLCONV SV* Perl_newSVuv(pTHX_ const UV u) |
b9f83d2f | 2459 | __attribute__warn_unused_result__; |
2015d234 | 2460 | #define PERL_ARGS_ASSERT_NEWSVUV |
b9f83d2f | 2461 | |
f54cb97a | 2462 | PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first) |
abb2c242 | 2463 | __attribute__warn_unused_result__; |
2015d234 | 2464 | #define PERL_ARGS_ASSERT_NEWUNOP |
f54cb97a | 2465 | |
2f7c6295 | 2466 | PERL_CALLCONV OP* Perl_newUNOP_AUX(pTHX_ I32 type, I32 flags, OP* first, UNOP_AUX_item *aux) |
2f7c6295 | 2467 | __attribute__warn_unused_result__; |
2015d234 | 2468 | #define PERL_ARGS_ASSERT_NEWUNOP_AUX |
2f7c6295 | 2469 | |
7896dde7 | 2470 | PERL_CALLCONV OP* Perl_newWHENOP(pTHX_ OP* cond, OP* block) |
6ba07ce1 | 2471 | __attribute__warn_unused_result__; |
7896dde7 Z |
2472 | #define PERL_ARGS_ASSERT_NEWWHENOP \ |
2473 | assert(block) | |
0d863452 | 2474 | |
94bf0465 | 2475 | PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, OP* expr, OP* block, OP* cont, I32 has_my) |
abb2c242 | 2476 | __attribute__warn_unused_result__; |
2015d234 | 2477 | #define PERL_ARGS_ASSERT_NEWWHILEOP |
f54cb97a | 2478 | |
6ba07ce1 | 2479 | PERL_CALLCONV CV* Perl_newXS(pTHX_ const char *name, XSUBADDR_t subaddr, const char *filename); |
e8a67806 NC |
2480 | #define PERL_ARGS_ASSERT_NEWXS \ |
2481 | assert(subaddr); assert(filename) | |
6ba07ce1 | 2482 | PERL_CALLCONV CV * Perl_newXS_deffile(pTHX_ const char *name, XSUBADDR_t subaddr); |
9a189793 DD |
2483 | #define PERL_ARGS_ASSERT_NEWXS_DEFFILE \ |
2484 | assert(name); assert(subaddr) | |
6ba07ce1 | 2485 | PERL_CALLCONV CV * Perl_newXS_flags(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags); |
e8a67806 NC |
2486 | #define PERL_ARGS_ASSERT_NEWXS_FLAGS \ |
2487 | assert(subaddr); assert(filename) | |
6ba07ce1 | 2488 | PERL_CALLCONV CV * Perl_newXS_len_flags(pTHX_ const char *name, STRLEN len, XSUBADDR_t subaddr, const char *const filename, const char *const proto, SV **const_svp, U32 flags); |
032a0447 | 2489 | #define PERL_ARGS_ASSERT_NEWXS_LEN_FLAGS \ |
9a189793 | 2490 | assert(subaddr) |
e8a67806 | 2491 | PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) |
e8a67806 | 2492 | __attribute__warn_unused_result__; |
2015d234 | 2493 | #define PERL_ARGS_ASSERT_NEW_STACKINFO |
91152fc1 | 2494 | |
6ba07ce1 | 2495 | PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver); |
7918f24d NC |
2496 | #define PERL_ARGS_ASSERT_NEW_VERSION \ |
2497 | assert(ver) | |
e8a67806 | 2498 | PERL_CALLCONV STRLEN * Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits, STRLEN size) |
6ba07ce1 | 2499 | __attribute__warn_unused_result__; |
e8a67806 NC |
2500 | #define PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD \ |
2501 | assert(bits) | |
f54cb97a | 2502 | |
6ba07ce1 | 2503 | PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv, bool nomagicopen); |
7918f24d NC |
2504 | #define PERL_ARGS_ASSERT_NEXTARGV \ |
2505 | assert(gv) | |
54c193ae KW |
2506 | PERL_CALLCONV char* Perl_ninstr(const char* big, const char* bigend, const char* little, const char* lend) |
2507 | __attribute__warn_unused_result__ | |
2508 | __attribute__pure__; | |
2509 | #define PERL_ARGS_ASSERT_NINSTR \ | |
2510 | assert(big); assert(bigend); assert(little); assert(lend) | |
2511 | ||
db6e00bd DD |
2512 | PERL_CALLCONV_NO_RET void Perl_noperl_die(const char* pat, ...) |
2513 | __attribute__noreturn__ | |
6ba07ce1 | 2514 | __attribute__format__(__printf__,1,2); |
db6e00bd DD |
2515 | #define PERL_ARGS_ASSERT_NOPERL_DIE \ |
2516 | assert(pat) | |
2517 | ||
e8a67806 | 2518 | PERL_CALLCONV int Perl_nothreadhook(pTHX); |
2015d234 | 2519 | #define PERL_ARGS_ASSERT_NOTHREADHOOK |
efa571ab | 2520 | PERL_CALLCONV void Perl_notify_parser_that_changed_to_utf8(pTHX); |
2015d234 | 2521 | #define PERL_ARGS_ASSERT_NOTIFY_PARSER_THAT_CHANGED_TO_UTF8 |
e8a67806 | 2522 | PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o) |
6ba07ce1 | 2523 | __attribute__warn_unused_result__; |
e8a67806 | 2524 | #define PERL_ARGS_ASSERT_OOPSAV \ |
7918f24d | 2525 | assert(o) |
eb8433b7 | 2526 | |
e8a67806 | 2527 | PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o) |
6ba07ce1 | 2528 | __attribute__warn_unused_result__; |
e8a67806 | 2529 | #define PERL_ARGS_ASSERT_OOPSHV \ |
7918f24d | 2530 | assert(o) |
f54cb97a | 2531 | |
2fcb4757 | 2532 | PERL_CALLCONV OP* Perl_op_append_elem(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2533 | #define PERL_ARGS_ASSERT_OP_APPEND_ELEM |
2fcb4757 | 2534 | PERL_CALLCONV OP* Perl_op_append_list(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2535 | #define PERL_ARGS_ASSERT_OP_APPEND_LIST |
1e85b658 | 2536 | PERL_CALLCONV OPclass Perl_op_class(pTHX_ const OP *o); |
2015d234 | 2537 | #define PERL_ARGS_ASSERT_OP_CLASS |
6ba07ce1 | 2538 | PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o); |
e8a67806 NC |
2539 | #define PERL_ARGS_ASSERT_OP_CLEAR \ |
2540 | assert(o) | |
6ba07ce1 | 2541 | PERL_CALLCONV OP* Perl_op_contextualize(pTHX_ OP* o, I32 context); |
d9088386 Z |
2542 | #define PERL_ARGS_ASSERT_OP_CONTEXTUALIZE \ |
2543 | assert(o) | |
03d05f6e LM |
2544 | PERL_CALLCONV OP* Perl_op_convert_list(pTHX_ I32 optype, I32 flags, OP* o) |
2545 | __attribute__warn_unused_result__; | |
2015d234 | 2546 | #define PERL_ARGS_ASSERT_OP_CONVERT_LIST |
03d05f6e | 2547 | |
6ba07ce1 | 2548 | PERL_CALLCONV void Perl_op_dump(pTHX_ const OP *o); |
e8a67806 NC |
2549 | #define PERL_ARGS_ASSERT_OP_DUMP \ |
2550 | assert(o) | |
e8a67806 | 2551 | PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg); |
2015d234 | 2552 | #define PERL_ARGS_ASSERT_OP_FREE |
6ba07ce1 | 2553 | PERL_CALLCONV OP* Perl_op_linklist(pTHX_ OP *o); |
5983a79d BM |
2554 | #define PERL_ARGS_ASSERT_OP_LINKLIST \ |
2555 | assert(o) | |
d3d7d28f | 2556 | /* PERL_CALLCONV OP* op_lvalue(pTHX_ OP* o, I32 type); */ |
2015d234 | 2557 | #define PERL_ARGS_ASSERT_OP_LVALUE |
d3d7d28f | 2558 | PERL_CALLCONV OP* Perl_op_lvalue_flags(pTHX_ OP* o, I32 type, U32 flags); |
2015d234 | 2559 | #define PERL_ARGS_ASSERT_OP_LVALUE_FLAGS |
6ba07ce1 | 2560 | PERL_CALLCONV void Perl_op_null(pTHX_ OP* o); |
e8a67806 NC |
2561 | #define PERL_ARGS_ASSERT_OP_NULL \ |
2562 | assert(o) | |
0f9a6232 TC |
2563 | PERL_CALLCONV OP* Perl_op_parent(OP *o); |
2564 | #define PERL_ARGS_ASSERT_OP_PARENT \ | |
2565 | assert(o) | |
2fcb4757 | 2566 | PERL_CALLCONV OP* Perl_op_prepend_elem(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2567 | #define PERL_ARGS_ASSERT_OP_PREPEND_ELEM |
e8a67806 | 2568 | PERL_CALLCONV void Perl_op_refcnt_lock(pTHX); |
2015d234 | 2569 | #define PERL_ARGS_ASSERT_OP_REFCNT_LOCK |
e8a67806 | 2570 | PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX); |
2015d234 | 2571 | #define PERL_ARGS_ASSERT_OP_REFCNT_UNLOCK |
3ad73efd | 2572 | PERL_CALLCONV OP* Perl_op_scope(pTHX_ OP* o); |
2015d234 | 2573 | #define PERL_ARGS_ASSERT_OP_SCOPE |
3269ea41 | 2574 | PERL_CALLCONV OP* Perl_op_sibling_splice(OP *parent, OP *start, int del_count, OP* insert); |
2015d234 | 2575 | #define PERL_ARGS_ASSERT_OP_SIBLING_SPLICE |
705fe0e5 | 2576 | PERL_CALLCONV OP* Perl_op_unscope(pTHX_ OP* o); |
2015d234 | 2577 | #define PERL_ARGS_ASSERT_OP_UNSCOPE |
d2905138 DM |
2578 | PERL_CALLCONV void Perl_optimize_optree(pTHX_ OP* o); |
2579 | #define PERL_ARGS_ASSERT_OPTIMIZE_OPTREE \ | |
2580 | assert(o) | |
1545ba5b | 2581 | #ifndef NO_MATHOMS |
6ba07ce1 | 2582 | PERL_CALLCONV void Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags); |
e8a67806 NC |
2583 | #define PERL_ARGS_ASSERT_PACK_CAT \ |
2584 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist); assert(next_in_list) | |
1545ba5b | 2585 | #endif |
6ba07ce1 | 2586 | PERL_CALLCONV void Perl_package(pTHX_ OP* o); |
b5bbe64a JH |
2587 | #define PERL_ARGS_ASSERT_PACKAGE \ |
2588 | assert(o) | |
6ba07ce1 | 2589 | PERL_CALLCONV void Perl_package_version(pTHX_ OP* v); |
6fa4d285 DG |
2590 | #define PERL_ARGS_ASSERT_PACKAGE_VERSION \ |
2591 | assert(v) | |
6ba07ce1 | 2592 | PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist); |
e8a67806 NC |
2593 | #define PERL_ARGS_ASSERT_PACKLIST \ |
2594 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist) | |
6ba07ce1 | 2595 | PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ CV* func, I32 optype); |
e8a67806 | 2596 | #define PERL_ARGS_ASSERT_PAD_ADD_ANON \ |
cc76b5cc | 2597 | assert(func) |
6ba07ce1 | 2598 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_pv(pTHX_ const char *name, const U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc Z |
2599 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PV \ |
2600 | assert(name) | |
6ba07ce1 | 2601 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_pvn(pTHX_ const char *namepv, STRLEN namelen, U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc Z |
2602 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PVN \ |
2603 | assert(namepv) | |
6ba07ce1 | 2604 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_sv(pTHX_ SV *name, U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc | 2605 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_SV \ |
7918f24d | 2606 | assert(name) |
6ba07ce1 | 2607 | PERL_CALLCONV void Perl_pad_add_weakref(pTHX_ CV* func); |
a70f21d0 FC |
2608 | #define PERL_ARGS_ASSERT_PAD_ADD_WEAKREF \ |
2609 | assert(func) | |
e8a67806 | 2610 | PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype); |
2015d234 | 2611 | #define PERL_ARGS_ASSERT_PAD_ALLOC |
e8a67806 | 2612 | PERL_CALLCONV void Perl_pad_block_start(pTHX_ int full); |
2015d234 | 2613 | #define PERL_ARGS_ASSERT_PAD_BLOCK_START |
3f1866a8 | 2614 | #ifndef NO_MATHOMS |
e8a67806 NC |
2615 | PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po) |
2616 | __attribute__warn_unused_result__; | |
2015d234 | 2617 | #define PERL_ARGS_ASSERT_PAD_COMPNAME_TYPE |
3f1866a8 | 2618 | #endif |
e8a67806 | 2619 | |
6ba07ce1 | 2620 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_pv(pTHX_ const char* name, U32 flags); |
cc76b5cc Z |
2621 | #define PERL_ARGS_ASSERT_PAD_FINDMY_PV \ |
2622 | assert(name) | |
6ba07ce1 | 2623 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_pvn(pTHX_ const char* namepv, STRLEN namelen, U32 flags); |
cc76b5cc Z |
2624 | #define PERL_ARGS_ASSERT_PAD_FINDMY_PVN \ |
2625 | assert(namepv) | |
6ba07ce1 | 2626 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_sv(pTHX_ SV* name, U32 flags); |
cc76b5cc | 2627 | #define PERL_ARGS_ASSERT_PAD_FINDMY_SV \ |
7918f24d | 2628 | assert(name) |
6ba07ce1 | 2629 | PERL_CALLCONV void Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv); |
e8a67806 NC |
2630 | #define PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS \ |
2631 | assert(padlist); assert(old_cv); assert(new_cv) | |
e8a67806 | 2632 | PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po); |
2015d234 | 2633 | #define PERL_ARGS_ASSERT_PAD_FREE |
6d5c2147 | 2634 | PERL_CALLCONV OP * Perl_pad_leavemy(pTHX); |
2015d234 | 2635 | #define PERL_ARGS_ASSERT_PAD_LEAVEMY |
e8a67806 | 2636 | PERL_CALLCONV PADLIST* Perl_pad_new(pTHX_ int flags) |
e8a67806 | 2637 | __attribute__warn_unused_result__; |
2015d234 | 2638 | #define PERL_ARGS_ASSERT_PAD_NEW |
f54cb97a | 2639 | |
6ba07ce1 | 2640 | PERL_CALLCONV void Perl_pad_push(pTHX_ PADLIST *padlist, int depth); |
e8a67806 NC |
2641 | #define PERL_ARGS_ASSERT_PAD_PUSH \ |
2642 | assert(padlist) | |
e8a67806 | 2643 | PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust); |
2015d234 | 2644 | #define PERL_ARGS_ASSERT_PAD_SWIPE |
e8a67806 | 2645 | PERL_CALLCONV void Perl_pad_tidy(pTHX_ padtidy_type type); |
2015d234 | 2646 | #define PERL_ARGS_ASSERT_PAD_TIDY |
6ba07ce1 | 2647 | PERL_CALLCONV PAD ** Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val); |
7261499d FC |
2648 | #define PERL_ARGS_ASSERT_PADLIST_STORE \ |
2649 | assert(padlist) | |
6ba07ce1 | 2650 | PERL_CALLCONV void Perl_padname_free(pTHX_ PADNAME *pn); |
0f94cb1f FC |
2651 | #define PERL_ARGS_ASSERT_PADNAME_FREE \ |
2652 | assert(pn) | |
a0e9f837 | 2653 | PERL_CALLCONV PADNAME * Perl_padnamelist_fetch(PADNAMELIST *pnl, SSize_t key) |
6ba07ce1 | 2654 | __attribute__warn_unused_result__; |
9b7476d7 FC |
2655 | #define PERL_ARGS_ASSERT_PADNAMELIST_FETCH \ |
2656 | assert(pnl) | |
2657 | ||
6ba07ce1 | 2658 | PERL_CALLCONV void Perl_padnamelist_free(pTHX_ PADNAMELIST *pnl); |
9b7476d7 FC |
2659 | #define PERL_ARGS_ASSERT_PADNAMELIST_FREE \ |
2660 | assert(pnl) | |
6ba07ce1 | 2661 | PERL_CALLCONV PADNAME ** Perl_padnamelist_store(pTHX_ PADNAMELIST *pnl, SSize_t key, PADNAME *val); |
9b7476d7 FC |
2662 | #define PERL_ARGS_ASSERT_PADNAMELIST_STORE \ |
2663 | assert(pnl) | |
78cdf107 | 2664 | PERL_CALLCONV OP* Perl_parse_arithexpr(pTHX_ U32 flags); |
2015d234 | 2665 | #define PERL_ARGS_ASSERT_PARSE_ARITHEXPR |
8359b381 | 2666 | PERL_CALLCONV OP* Perl_parse_barestmt(pTHX_ U32 flags); |
2015d234 | 2667 | #define PERL_ARGS_ASSERT_PARSE_BARESTMT |
e53d8f76 | 2668 | PERL_CALLCONV OP* Perl_parse_block(pTHX_ U32 flags); |
2015d234 | 2669 | #define PERL_ARGS_ASSERT_PARSE_BLOCK |
78cdf107 | 2670 | PERL_CALLCONV OP* Perl_parse_fullexpr(pTHX_ U32 flags); |
2015d234 | 2671 | #define PERL_ARGS_ASSERT_PARSE_FULLEXPR |
e8a67806 | 2672 | PERL_CALLCONV OP* Perl_parse_fullstmt(pTHX_ U32 flags); |
2015d234 | 2673 | #define PERL_ARGS_ASSERT_PARSE_FULLSTMT |
361d9b55 | 2674 | PERL_CALLCONV SV* Perl_parse_label(pTHX_ U32 flags); |
2015d234 | 2675 | #define PERL_ARGS_ASSERT_PARSE_LABEL |
78cdf107 | 2676 | PERL_CALLCONV OP* Perl_parse_listexpr(pTHX_ U32 flags); |
2015d234 | 2677 | #define PERL_ARGS_ASSERT_PARSE_LISTEXPR |
07ffcb73 | 2678 | PERL_CALLCONV OP* Perl_parse_stmtseq(pTHX_ U32 flags); |
2015d234 | 2679 | #define PERL_ARGS_ASSERT_PARSE_STMTSEQ |
996b0cb8 | 2680 | PERL_CALLCONV OP* Perl_parse_subsignature(pTHX_ U32 flags); |
2015d234 | 2681 | #define PERL_ARGS_ASSERT_PARSE_SUBSIGNATURE |
78cdf107 | 2682 | PERL_CALLCONV OP* Perl_parse_termexpr(pTHX_ U32 flags); |
2015d234 | 2683 | #define PERL_ARGS_ASSERT_PARSE_TERMEXPR |
6ba07ce1 | 2684 | PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt); |
e8a67806 NC |
2685 | #define PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS \ |
2686 | assert(popt) | |
6ba07ce1 | 2687 | PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser); |
e8a67806 NC |
2688 | #define PERL_ARGS_ASSERT_PARSER_FREE \ |
2689 | assert(parser) | |
e8a67806 | 2690 | PERL_CALLCONV void Perl_peep(pTHX_ OP* o); |
2015d234 | 2691 | #define PERL_ARGS_ASSERT_PEEP |
e8a67806 | 2692 | PERL_CALLCONV PerlInterpreter* perl_alloc(void); |
2015d234 | 2693 | #define PERL_ARGS_ASSERT_PERL_ALLOC |
6ba07ce1 | 2694 | PERL_CALLCONV void perl_construct(PerlInterpreter *my_perl); |
e8a67806 NC |
2695 | #define PERL_ARGS_ASSERT_PERL_CONSTRUCT \ |
2696 | assert(my_perl) | |
6ba07ce1 | 2697 | PERL_CALLCONV int perl_destruct(PerlInterpreter *my_perl); |
e8a67806 NC |
2698 | #define PERL_ARGS_ASSERT_PERL_DESTRUCT \ |
2699 | assert(my_perl) | |
6ba07ce1 | 2700 | PERL_CALLCONV void perl_free(PerlInterpreter *my_perl); |
e8a67806 NC |
2701 | #define PERL_ARGS_ASSERT_PERL_FREE \ |
2702 | assert(my_perl) | |
6ba07ce1 | 2703 | PERL_CALLCONV int perl_parse(PerlInterpreter *my_perl, XSINIT_t xsinit, int argc, char** argv, char** env); |
e8a67806 NC |
2704 | #define PERL_ARGS_ASSERT_PERL_PARSE \ |
2705 | assert(my_perl) | |
6ba07ce1 | 2706 | PERL_CALLCONV int perl_run(PerlInterpreter *my_perl); |
e8a67806 NC |
2707 | #define PERL_ARGS_ASSERT_PERL_RUN \ |
2708 | assert(my_perl) | |
8a5e470b DM |
2709 | PERL_CALLCONV Signal_t Perl_perly_sighandler(int sig, Siginfo_t *info, void *uap, bool safe); |
2710 | #define PERL_ARGS_ASSERT_PERLY_SIGHANDLER | |
e8a67806 | 2711 | PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm); |
2015d234 | 2712 | #define PERL_ARGS_ASSERT_PMOP_DUMP |
5012eebe | 2713 | PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP *o, OP *expr, OP *repl, UV flags, I32 floor); |
7918f24d NC |
2714 | #define PERL_ARGS_ASSERT_PMRUNTIME \ |
2715 | assert(o); assert(expr) | |
1d7c1841 | 2716 | PERL_CALLCONV void Perl_pop_scope(pTHX); |
2015d234 | 2717 | #define PERL_ARGS_ASSERT_POP_SCOPE |
6ba07ce1 | 2718 | PERL_CALLCONV void Perl_populate_isa(pTHX_ const char *name, STRLEN len, ...); |
74e8ce34 NC |
2719 | #define PERL_ARGS_ASSERT_POPULATE_ISA \ |
2720 | assert(name) | |
6ba07ce1 | 2721 | PERL_CALLCONV REGEXP* Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags); |
e8a67806 NC |
2722 | #define PERL_ARGS_ASSERT_PREGCOMP \ |
2723 | assert(pattern) | |
6ba07ce1 | 2724 | PERL_CALLCONV I32 Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, SSize_t minend, SV* screamer, U32 nosave); |
e8a67806 NC |
2725 | #define PERL_ARGS_ASSERT_PREGEXEC \ |
2726 | assert(prog); assert(stringarg); assert(strend); assert(strbeg); assert(screamer) | |
e8a67806 | 2727 | PERL_CALLCONV void Perl_pregfree(pTHX_ REGEXP* r); |
2015d234 | 2728 | #define PERL_ARGS_ASSERT_PREGFREE |
6ba07ce1 | 2729 | PERL_CALLCONV void Perl_pregfree2(pTHX_ REGEXP *rx); |
e8a67806 NC |
2730 | #define PERL_ARGS_ASSERT_PREGFREE2 \ |
2731 | assert(rx) | |
6ba07ce1 | 2732 | PERL_CALLCONV const char* Perl_prescan_version(pTHX_ const char *s, bool strict, const char** errstr, bool *sqv, int *ssaw_decimal, int *swidth, bool *salpha); |
e8a67806 NC |
2733 | #define PERL_ARGS_ASSERT_PRESCAN_VERSION \ |
2734 | assert(s) | |
e8a67806 NC |
2735 | PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl) |
2736 | __attribute__deprecated__; | |
2015d234 | 2737 | #define PERL_ARGS_ASSERT_PTR_TABLE_CLEAR |
e8a67806 NC |
2738 | |
2739 | PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv) | |
6ba07ce1 | 2740 | __attribute__warn_unused_result__; |
e8a67806 NC |
2741 | #define PERL_ARGS_ASSERT_PTR_TABLE_FETCH \ |
2742 | assert(tbl) | |
2743 | ||
2744 | PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl); | |
2015d234 | 2745 | #define PERL_ARGS_ASSERT_PTR_TABLE_FREE |
e8a67806 | 2746 | PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX) |
e8a67806 | 2747 | __attribute__warn_unused_result__; |
2015d234 | 2748 | #define PERL_ARGS_ASSERT_PTR_TABLE_NEW |
e8a67806 | 2749 | |
6ba07ce1 | 2750 | PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl); |
e8a67806 NC |
2751 | #define PERL_ARGS_ASSERT_PTR_TABLE_SPLIT \ |
2752 | assert(tbl) | |
6ba07ce1 | 2753 | PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv); |
e8a67806 NC |
2754 | #define PERL_ARGS_ASSERT_PTR_TABLE_STORE \ |
2755 | assert(tbl); assert(newsv) | |
e8a67806 | 2756 | PERL_CALLCONV void Perl_push_scope(pTHX); |
2015d234 | 2757 | #define PERL_ARGS_ASSERT_PUSH_SCOPE |
6ba07ce1 | 2758 | PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim); |
e8a67806 NC |
2759 | #define PERL_ARGS_ASSERT_PV_DISPLAY \ |
2760 | assert(dsv); assert(pv) | |
6ba07ce1 | 2761 | PERL_CALLCONV char* Perl_pv_escape(pTHX_ SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags); |
e8a67806 | 2762 | #define PERL_ARGS_ASSERT_PV_ESCAPE \ |
4420a417 | 2763 | assert(str) |
6ba07ce1 | 2764 | PERL_CALLCONV char* Perl_pv_pretty(pTHX_ SV *dsv, char const * const str, const STRLEN count, const STRLEN max, char const * const start_color, char const * const end_color, const U32 flags); |
e8a67806 NC |
2765 | #define PERL_ARGS_ASSERT_PV_PRETTY \ |
2766 | assert(dsv); assert(str) | |
6ba07ce1 | 2767 | PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags); |
e8a67806 NC |
2768 | #define PERL_ARGS_ASSERT_PV_UNI_DISPLAY \ |
2769 | assert(dsv); assert(spv) | |
6ba07ce1 | 2770 | PERL_CALLCONV void Perl_qerror(pTHX_ SV* err); |
e8a67806 NC |
2771 | #define PERL_ARGS_ASSERT_QERROR \ |
2772 | assert(err) | |
6ba07ce1 | 2773 | PERL_CALLCONV REGEXP* Perl_re_compile(pTHX_ SV * const pattern, U32 orig_rx_flags); |
e8a67806 NC |
2774 | #define PERL_ARGS_ASSERT_RE_COMPILE \ |
2775 | assert(pattern) | |
6ba07ce1 | 2776 | PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV* sv, const char* const strbeg, char* strpos, char* strend, const U32 flags, re_scream_pos_data *data); |
e8a67806 | 2777 | #define PERL_ARGS_ASSERT_RE_INTUIT_START \ |
52a21eb3 | 2778 | assert(rx); assert(strbeg); assert(strpos); assert(strend) |
6ba07ce1 | 2779 | PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ REGEXP *const r); |
e8a67806 NC |
2780 | #define PERL_ARGS_ASSERT_RE_INTUIT_STRING \ |
2781 | assert(r) | |
fb1ab119 | 2782 | PERL_CALLCONV REGEXP* Perl_re_op_compile(pTHX_ SV ** const patternp, int pat_count, OP *expr, const regexp_engine* eng, REGEXP *old_re, bool *is_bare_re, const U32 rx_flags, const U32 pm_flags); |
3c13cae6 DM |
2783 | #define PERL_ARGS_ASSERT_RE_OP_COMPILE \ |
2784 | assert(eng) | |
e8a67806 | 2785 | PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes) |
e8a67806 | 2786 | __attribute__warn_unused_result__; |
2015d234 | 2787 | #define PERL_ARGS_ASSERT_REALLOC |
e8a67806 | 2788 | |
f59c1a32 | 2789 | PERL_CALLCONV void Perl_reentrant_free(pTHX); |
2015d234 | 2790 | #define PERL_ARGS_ASSERT_REENTRANT_FREE |
f59c1a32 | 2791 | PERL_CALLCONV void Perl_reentrant_init(pTHX); |
2015d234 | 2792 | #define PERL_ARGS_ASSERT_REENTRANT_INIT |
6ba07ce1 | 2793 | PERL_CALLCONV void* Perl_reentrant_retry(const char *f, ...); |
f59c1a32 CB |
2794 | #define PERL_ARGS_ASSERT_REENTRANT_RETRY \ |
2795 | assert(f) | |
f59c1a32 | 2796 | PERL_CALLCONV void Perl_reentrant_size(pTHX); |
2015d234 | 2797 | #define PERL_ARGS_ASSERT_REENTRANT_SIZE |
20439bc7 | 2798 | PERL_CALLCONV HV * Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *c, U32 flags); |
2015d234 | 2799 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_CHAIN_2HV |
6ba07ce1 | 2800 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pv(pTHX_ const struct refcounted_he *chain, const char *key, U32 hash, U32 flags); |
20439bc7 Z |
2801 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PV \ |
2802 | assert(key) | |
6ba07ce1 | 2803 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pvn(pTHX_ const struct refcounted_he *chain, const char *keypv, STRLEN keylen, U32 hash, U32 flags); |
20439bc7 Z |
2804 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PVN \ |
2805 | assert(keypv) | |
6ba07ce1 | 2806 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_sv(pTHX_ const struct refcounted_he *chain, SV *key, U32 hash, U32 flags); |
20439bc7 Z |
2807 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_SV \ |
2808 | assert(key) | |
e8a67806 | 2809 | PERL_CALLCONV void Perl_refcounted_he_free(pTHX_ struct refcounted_he *he); |
2015d234 | 2810 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FREE |
20439bc7 | 2811 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he); |
2015d234 | 2812 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_INC |
6ba07ce1 | 2813 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_pv(pTHX_ struct refcounted_he *parent, const char *key, U32 hash, SV *value, U32 flags); |
20439bc7 Z |
2814 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PV \ |
2815 | assert(key) | |
6ba07ce1 | 2816 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_pvn(pTHX_ struct refcounted_he *parent, const char *keypv, STRLEN keylen, U32 hash, SV *value, U32 flags); |
20439bc7 Z |
2817 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PVN \ |
2818 | assert(keypv) | |
6ba07ce1 | 2819 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_sv(pTHX_ struct refcounted_he *parent, SV *key, U32 hash, SV *value, U32 flags); |
20439bc7 Z |
2820 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_SV \ |
2821 | assert(key) | |
6ba07ce1 | 2822 | PERL_CALLCONV SV* Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value, const U32 flags); |
e8a67806 NC |
2823 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF \ |
2824 | assert(rx) | |
6ba07ce1 | 2825 | PERL_CALLCONV SV* Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2826 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL \ |
2827 | assert(rx) | |
6ba07ce1 | 2828 | PERL_CALLCONV bool Perl_reg_named_buff_exists(pTHX_ REGEXP * const rx, SV * const key, const U32 flags); |
e8a67806 NC |
2829 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS \ |
2830 | assert(rx); assert(key) | |
6ba07ce1 | 2831 | PERL_CALLCONV SV* Perl_reg_named_buff_fetch(pTHX_ REGEXP * const rx, SV * const namesv, const U32 flags); |
e8a67806 NC |
2832 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH \ |
2833 | assert(rx); assert(namesv) | |
6ba07ce1 | 2834 | PERL_CALLCONV SV* Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2835 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY \ |
2836 | assert(rx) | |
6ba07ce1 | 2837 | PERL_CALLCONV SV* Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey, const U32 flags); |
e8a67806 NC |
2838 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER \ |
2839 | assert(rx) | |
6ba07ce1 | 2840 | PERL_CALLCONV SV* Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2841 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY \ |
2842 | assert(rx) | |
6ba07ce1 | 2843 | PERL_CALLCONV SV* Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2844 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR \ |
2845 | assert(rx) | |
6ba07ce1 | 2846 | PERL_CALLCONV void Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv); |
e8a67806 NC |
2847 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH \ |
2848 | assert(rx) | |
6ba07ce1 | 2849 | PERL_CALLCONV I32 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv, const I32 paren); |
e8a67806 NC |
2850 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH \ |
2851 | assert(rx); assert(sv) | |
6ba07ce1 | 2852 | PERL_CALLCONV void Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren, SV const * const value); |
e8a67806 NC |
2853 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE \ |
2854 | assert(rx) | |
6ba07ce1 | 2855 | PERL_CALLCONV SV* Perl_reg_qr_package(pTHX_ REGEXP * const rx); |
e8a67806 NC |
2856 | #define PERL_ARGS_ASSERT_REG_QR_PACKAGE \ |
2857 | assert(rx) | |
89699a04 | 2858 | PERL_CALLCONV REGEXP* Perl_reg_temp_copy(pTHX_ REGEXP* dsv, REGEXP* ssv); |
e8a67806 | 2859 | #define PERL_ARGS_ASSERT_REG_TEMP_COPY \ |
89699a04 | 2860 | assert(ssv) |
6ba07ce1 | 2861 | PERL_CALLCONV void Perl_regdump(pTHX_ const regexp* r); |
e8a67806 NC |
2862 | #define PERL_ARGS_ASSERT_REGDUMP \ |
2863 | assert(r) | |
6ba07ce1 | 2864 | PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ REGEXP *const rx, char *stringarg, char *strend, char *strbeg, SSize_t minend, SV *sv, void *data, U32 flags); |
e8a67806 NC |
2865 | #define PERL_ARGS_ASSERT_REGEXEC_FLAGS \ |
2866 | assert(rx); assert(stringarg); assert(strend); assert(strbeg); assert(sv) | |
6ba07ce1 | 2867 | PERL_CALLCONV void Perl_regfree_internal(pTHX_ REGEXP *const rx); |
e8a67806 NC |
2868 | #define PERL_ARGS_ASSERT_REGFREE_INTERNAL \ |
2869 | assert(rx) | |
e8a67806 | 2870 | PERL_CALLCONV void Perl_reginitcolors(pTHX); |
2015d234 | 2871 | #define PERL_ARGS_ASSERT_REGINITCOLORS |
e8a67806 NC |
2872 | PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) |
2873 | __attribute__warn_unused_result__; | |
2015d234 | 2874 | #define PERL_ARGS_ASSERT_REGNEXT |
e8a67806 | 2875 | |
6ba07ce1 | 2876 | PERL_CALLCONV void Perl_repeatcpy(char* to, const char* from, I32 len, IV count); |
e8a67806 NC |
2877 | #define PERL_ARGS_ASSERT_REPEATCPY \ |
2878 | assert(to); assert(from) | |
831e4cc3 | 2879 | PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv); |
2015d234 | 2880 | #define PERL_ARGS_ASSERT_REPORT_EVIL_FH |
e8a67806 | 2881 | PERL_CALLCONV void Perl_report_uninit(pTHX_ const SV *uninit_sv); |
2015d234 | 2882 | #define PERL_ARGS_ASSERT_REPORT_UNINIT |
a5390457 | 2883 | PERL_CALLCONV void Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have); |
2015d234 | 2884 | #define PERL_ARGS_ASSERT_REPORT_WRONGWAY_FH |
6ba07ce1 | 2885 | PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv); |
e8a67806 NC |
2886 | #define PERL_ARGS_ASSERT_REQUIRE_PV \ |
2887 | assert(pv) | |
e8a67806 | 2888 | PERL_CALLCONV char* Perl_rninstr(const char* big, const char* bigend, const char* little, const char* lend) |
b289a0bd | 2889 | __attribute__warn_unused_result__ |
6ba07ce1 | 2890 | __attribute__pure__; |
e8a67806 NC |
2891 | #define PERL_ARGS_ASSERT_RNINSTR \ |
2892 | assert(big); assert(bigend); assert(little); assert(lend) | |
2893 | ||
2894 | PERL_CALLCONV void Perl_rpeep(pTHX_ OP* o); | |
2015d234 | 2895 | #define PERL_ARGS_ASSERT_RPEEP |
e8a67806 | 2896 | PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t); |
2015d234 | 2897 | #define PERL_ARGS_ASSERT_RSIGNAL |
e8a67806 | 2898 | PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t); |
2015d234 | 2899 | #define PERL_ARGS_ASSERT_RSIGNAL_RESTORE |
6ba07ce1 | 2900 | PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* save); |
e8a67806 NC |
2901 | #define PERL_ARGS_ASSERT_RSIGNAL_SAVE \ |
2902 | assert(save) | |
e8a67806 | 2903 | PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i); |
2015d234 | 2904 | #define PERL_ARGS_ASSERT_RSIGNAL_STATE |
e8a67806 | 2905 | PERL_CALLCONV int Perl_runops_debug(pTHX); |
2015d234 | 2906 | #define PERL_ARGS_ASSERT_RUNOPS_DEBUG |
e8a67806 | 2907 | PERL_CALLCONV int Perl_runops_standard(pTHX); |
2015d234 | 2908 | #define PERL_ARGS_ASSERT_RUNOPS_STANDARD |
6ba07ce1 | 2909 | PERL_CALLCONV CV* Perl_rv2cv_op_cv(pTHX_ OP *cvop, U32 flags); |
d9088386 Z |
2910 | #define PERL_ARGS_ASSERT_RV2CV_OP_CV \ |
2911 | assert(cvop) | |
6ba07ce1 | 2912 | PERL_CALLCONV void Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx); |
e8a67806 NC |
2913 | #define PERL_ARGS_ASSERT_RXRES_SAVE \ |
2914 | assert(rsp); assert(rx) | |
e8a67806 NC |
2915 | PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size) |
2916 | __attribute__malloc__ | |
2917 | __attribute__warn_unused_result__; | |
2015d234 | 2918 | #define PERL_ARGS_ASSERT_SAFESYSCALLOC |
e8a67806 NC |
2919 | |
2920 | PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); | |
2015d234 | 2921 | #define PERL_ARGS_ASSERT_SAFESYSFREE |
e8a67806 NC |
2922 | PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes) |
2923 | __attribute__malloc__ | |
2924 | __attribute__warn_unused_result__; | |
2015d234 | 2925 | #define PERL_ARGS_ASSERT_SAFESYSMALLOC |
e8a67806 NC |
2926 | |
2927 | PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes) | |
e8a67806 | 2928 | __attribute__warn_unused_result__; |
2015d234 | 2929 | #define PERL_ARGS_ASSERT_SAFESYSREALLOC |
e8a67806 | 2930 | |
6ba07ce1 | 2931 | PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp); |
e8a67806 NC |
2932 | #define PERL_ARGS_ASSERT_SAVE_I16 \ |
2933 | assert(intp) | |
6ba07ce1 | 2934 | PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp); |
e8a67806 NC |
2935 | #define PERL_ARGS_ASSERT_SAVE_I32 \ |
2936 | assert(intp) | |
6ba07ce1 | 2937 | PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep); |
e8a67806 NC |
2938 | #define PERL_ARGS_ASSERT_SAVE_I8 \ |
2939 | assert(bytep) | |
6ba07ce1 | 2940 | PERL_CALLCONV void Perl_save_adelete(pTHX_ AV *av, SSize_t key); |
e8a67806 NC |
2941 | #define PERL_ARGS_ASSERT_SAVE_ADELETE \ |
2942 | assert(av) | |
5178f485 | 2943 | /* PERL_CALLCONV void save_aelem(pTHX_ AV* av, SSize_t idx, SV **sptr); */ |
2015d234 | 2944 | #define PERL_ARGS_ASSERT_SAVE_AELEM |
6ba07ce1 | 2945 | PERL_CALLCONV void Perl_save_aelem_flags(pTHX_ AV* av, SSize_t idx, SV **sptr, const U32 flags); |
e8a67806 NC |
2946 | #define PERL_ARGS_ASSERT_SAVE_AELEM_FLAGS \ |
2947 | assert(av); assert(sptr) | |
e8a67806 | 2948 | PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad); |
2015d234 | 2949 | #define PERL_ARGS_ASSERT_SAVE_ALLOC |
6ba07ce1 | 2950 | PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr); |
e8a67806 NC |
2951 | #define PERL_ARGS_ASSERT_SAVE_APTR \ |
2952 | assert(aptr) | |
6ba07ce1 | 2953 | PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv); |
e8a67806 NC |
2954 | #define PERL_ARGS_ASSERT_SAVE_ARY \ |
2955 | assert(gv) | |
6ba07ce1 | 2956 | PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp); |
e8a67806 NC |
2957 | #define PERL_ARGS_ASSERT_SAVE_BOOL \ |
2958 | assert(boolp) | |
6ba07ce1 | 2959 | PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp); |
e8a67806 NC |
2960 | #define PERL_ARGS_ASSERT_SAVE_CLEARSV \ |
2961 | assert(svp) | |
6ba07ce1 | 2962 | PERL_CALLCONV void Perl_save_delete(pTHX_ HV *hv, char *key, I32 klen); |
e8a67806 NC |
2963 | #define PERL_ARGS_ASSERT_SAVE_DELETE \ |
2964 | assert(hv); assert(key) | |
6ba07ce1 | 2965 | PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p); |
e8a67806 NC |
2966 | #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR \ |
2967 | assert(p) | |
e8a67806 | 2968 | PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p); |
2015d234 | 2969 | #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR_X |
3f1866a8 KW |
2970 | #ifndef NO_MATHOMS |
2971 | PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o); | |
2015d234 | 2972 | #define PERL_ARGS_ASSERT_SAVE_FREEOP |
3f1866a8 KW |
2973 | #endif |
2974 | #ifndef NO_MATHOMS | |
2975 | PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv); | |
2015d234 | 2976 | #define PERL_ARGS_ASSERT_SAVE_FREEPV |
3f1866a8 KW |
2977 | #endif |
2978 | #ifndef NO_MATHOMS | |
2979 | PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv); | |
2015d234 | 2980 | #define PERL_ARGS_ASSERT_SAVE_FREESV |
3f1866a8 | 2981 | #endif |
6ba07ce1 | 2982 | PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str); |
e8a67806 NC |
2983 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_PVREF \ |
2984 | assert(str) | |
6ba07ce1 | 2985 | PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr); |
e8a67806 NC |
2986 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_SVREF \ |
2987 | assert(sptr) | |
6ba07ce1 | 2988 | PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty); |
e8a67806 NC |
2989 | #define PERL_ARGS_ASSERT_SAVE_GP \ |
2990 | assert(gv) | |
6ba07ce1 | 2991 | PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv); |
e8a67806 NC |
2992 | #define PERL_ARGS_ASSERT_SAVE_HASH \ |
2993 | assert(gv) | |
6ba07ce1 | 2994 | PERL_CALLCONV void Perl_save_hdelete(pTHX_ HV *hv, SV *keysv); |
e8a67806 NC |
2995 | #define PERL_ARGS_ASSERT_SAVE_HDELETE \ |
2996 | assert(hv); assert(keysv) | |
5178f485 | 2997 | /* PERL_CALLCONV void save_helem(pTHX_ HV *hv, SV *key, SV **sptr); */ |
2015d234 | 2998 | #define PERL_ARGS_ASSERT_SAVE_HELEM |
6ba07ce1 | 2999 | PERL_CALLCONV void Perl_save_helem_flags(pTHX_ HV *hv, SV *key, SV **sptr, const U32 flags); |
e8a67806 NC |
3000 | #define PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS \ |
3001 | assert(hv); assert(key); assert(sptr) | |
e8a67806 | 3002 | PERL_CALLCONV void Perl_save_hints(pTHX); |
2015d234 | 3003 | #define PERL_ARGS_ASSERT_SAVE_HINTS |
6ba07ce1 | 3004 | PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr); |
e8a67806 NC |
3005 | #define PERL_ARGS_ASSERT_SAVE_HPTR \ |
3006 | assert(hptr) | |
6ba07ce1 | 3007 | PERL_CALLCONV void Perl_save_int(pTHX_ int* intp); |
e8a67806 NC |
3008 | #define PERL_ARGS_ASSERT_SAVE_INT \ |
3009 | assert(intp) | |
6ba07ce1 | 3010 | PERL_CALLCONV void Perl_save_item(pTHX_ SV* item); |
e8a67806 NC |
3011 | #define PERL_ARGS_ASSERT_SAVE_ITEM \ |
3012 | assert(item) | |
6ba07ce1 | 3013 | PERL_CALLCONV void Perl_save_iv(pTHX_ IV *ivp); |
e8a67806 NC |
3014 | #define PERL_ARGS_ASSERT_SAVE_IV \ |
3015 | assert(ivp) | |
1545ba5b | 3016 | #ifndef NO_MATHOMS |
57f51a64 KW |
3017 | PERL_CALLCONV void Perl_save_list(pTHX_ SV** sarg, I32 maxsarg) |
3018 | __attribute__deprecated__; | |
e8a67806 NC |
3019 | #define PERL_ARGS_ASSERT_SAVE_LIST \ |
3020 | assert(sarg) | |
1545ba5b | 3021 | #endif |
57f51a64 | 3022 | |
1545ba5b | 3023 | #ifndef NO_MATHOMS |
57f51a64 KW |
3024 | PERL_CALLCONV void Perl_save_long(pTHX_ long* longp) |
3025 | __attribute__deprecated__; | |
e8a67806 NC |
3026 | #define PERL_ARGS_ASSERT_SAVE_LONG \ |
3027 | assert(longp) | |
1545ba5b | 3028 | #endif |
57f51a64 |