This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix release schedule
[perl5.git] / proto.h
1 /* -*- buffer-read-only: t -*-
2  *
3  *    proto.h
4  *
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
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   !!!!!!!
12  * This file is built by regen/embed.pl from data in embed.fnc,
13  * regen/embed.pl, regen/opcodes, intrpvar.h and perlvars.h.
14  * Any changes made here will be lost!
15  *
16  * Edit those files and run 'make regen_headers' to effect changes.
17  */
18
19 START_EXTERN_C
20 #ifndef NO_MATHOMS
21 PERL_CALLCONV UV        ASCII_TO_NEED(const UV enc, const UV ch)
22                         __attribute__deprecated__
23                         __attribute__warn_unused_result__
24                         __attribute__pure__;
25 #endif
26
27 PERL_CALLCONV int       Perl_Gv_AMupdate(pTHX_ HV* stash, bool destructing);
28 #define PERL_ARGS_ASSERT_GV_AMUPDATE    \
29         assert(stash)
30 #ifndef NO_MATHOMS
31 PERL_CALLCONV UV        NATIVE_TO_NEED(const UV enc, const UV ch)
32                         __attribute__deprecated__
33                         __attribute__warn_unused_result__
34                         __attribute__pure__;
35 #endif
36
37 PERL_CALLCONV const char *      Perl_PerlIO_context_layers(pTHX_ const char *mode);
38 PERL_CALLCONV void*     Perl_Slab_Alloc(pTHX_ size_t sz)
39                         __attribute__warn_unused_result__;
40
41 PERL_CALLCONV void      Perl_Slab_Free(pTHX_ void *op);
42 #define PERL_ARGS_ASSERT_SLAB_FREE      \
43         assert(op)
44 PERL_CALLCONV char *    Perl__byte_dump_string(pTHX_ const U8 * const start, const STRLEN len, const bool format);
45 #define PERL_ARGS_ASSERT__BYTE_DUMP_STRING      \
46         assert(start)
47 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);
48 #define PERL_ARGS_ASSERT__FORCE_OUT_MALFORMED_UTF8_MESSAGE      \
49         assert(p); assert(e)
50 PERL_CALLCONV bool      Perl__is_in_locale_category(pTHX_ const bool compiling, const int category);
51 PERL_CALLCONV bool      Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
52                         __attribute__warn_unused_result__;
53
54 PERL_CALLCONV bool      Perl__is_uni_perl_idcont(pTHX_ UV c)
55                         __attribute__warn_unused_result__;
56
57 PERL_CALLCONV bool      Perl__is_uni_perl_idstart(pTHX_ UV c)
58                         __attribute__warn_unused_result__;
59
60 PERL_CALLCONV bool      Perl__is_utf8_FOO(pTHX_ U8 classnum, const U8 * const p, const char * const name, const char * const alternative, const bool use_utf8, const bool use_locale, const char * const file, const unsigned line)
61                         __attribute__warn_unused_result__;
62 #define PERL_ARGS_ASSERT__IS_UTF8_FOO   \
63         assert(p); assert(name); assert(alternative); assert(file)
64
65 PERL_CALLCONV bool      Perl__is_utf8_FOO_with_len(pTHX_ const U8 classnum, const U8 *p, const U8 * const e)
66                         __attribute__warn_unused_result__;
67 #define PERL_ARGS_ASSERT__IS_UTF8_FOO_WITH_LEN  \
68         assert(p); assert(e)
69
70 PERL_CALLCONV STRLEN    Perl__is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags)
71                         __attribute__warn_unused_result__
72                         __attribute__pure__;
73 #define PERL_ARGS_ASSERT__IS_UTF8_CHAR_HELPER   \
74         assert(s); assert(e)
75
76 PERL_CALLCONV bool      Perl__is_utf8_idcont(pTHX_ const U8 *p)
77                         __attribute__warn_unused_result__;
78 #define PERL_ARGS_ASSERT__IS_UTF8_IDCONT        \
79         assert(p)
80
81 PERL_CALLCONV bool      Perl__is_utf8_idstart(pTHX_ const U8 *p)
82                         __attribute__warn_unused_result__;
83 #define PERL_ARGS_ASSERT__IS_UTF8_IDSTART       \
84         assert(p)
85
86 PERL_CALLCONV bool      Perl__is_utf8_mark(pTHX_ const U8 *p)
87                         __attribute__warn_unused_result__;
88 #define PERL_ARGS_ASSERT__IS_UTF8_MARK  \
89         assert(p)
90
91 PERL_CALLCONV bool      Perl__is_utf8_perl_idcont_with_len(pTHX_ const U8 *p, const U8 * const e)
92                         __attribute__warn_unused_result__;
93 #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT_WITH_LEN  \
94         assert(p); assert(e)
95
96 PERL_CALLCONV bool      Perl__is_utf8_perl_idstart_with_len(pTHX_ const U8 *p, const U8 * const e)
97                         __attribute__warn_unused_result__;
98 #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART_WITH_LEN \
99         assert(p); assert(e)
100
101 PERL_CALLCONV bool      Perl__is_utf8_xidcont(pTHX_ const U8 *p)
102                         __attribute__warn_unused_result__;
103 #define PERL_ARGS_ASSERT__IS_UTF8_XIDCONT       \
104         assert(p)
105
106 PERL_CALLCONV bool      Perl__is_utf8_xidstart(pTHX_ const U8 *p)
107                         __attribute__warn_unused_result__;
108 #define PERL_ARGS_ASSERT__IS_UTF8_XIDSTART      \
109         assert(p)
110
111 PERL_CALLCONV UV        Perl__to_uni_fold_flags(pTHX_ UV c, U8 *p, STRLEN *lenp, U8 flags);
112 #define PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS     \
113         assert(p); assert(lenp)
114 PERL_CALLCONV UV        Perl__to_utf8_fold_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, U8 flags, const char * const file, const int line);
115 #define PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS    \
116         assert(p); assert(ustrp); assert(file)
117 PERL_CALLCONV UV        Perl__to_utf8_lower_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags, const char * const file, const int line);
118 #define PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS   \
119         assert(p); assert(ustrp); assert(file)
120 PERL_CALLCONV UV        Perl__to_utf8_title_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags, const char * const file, const int line);
121 #define PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS   \
122         assert(p); assert(ustrp); assert(file)
123 PERL_CALLCONV UV        Perl__to_utf8_upper_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, bool flags, const char * const file, const int line);
124 #define PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS   \
125         assert(p); assert(ustrp); assert(file)
126 PERL_CALLCONV void      Perl__warn_problematic_locale(void);
127 PERL_CALLCONV_NO_RET void       Perl_abort_execution(pTHX_ const char * const msg, const char * const name)
128                         __attribute__noreturn__;
129 #define PERL_ARGS_ASSERT_ABORT_EXECUTION        \
130         assert(msg); assert(name)
131
132 PERL_CALLCONV LOGOP*    Perl_alloc_LOGOP(pTHX_ I32 type, OP *first, OP *other);
133 PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags);
134 #define PERL_ARGS_ASSERT_ALLOCMY        \
135         assert(name)
136 PERL_CALLCONV SV*       Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir);
137 #define PERL_ARGS_ASSERT_AMAGIC_CALL    \
138         assert(left); assert(right)
139 PERL_CALLCONV SV *      Perl_amagic_deref_call(pTHX_ SV *ref, int method);
140 #define PERL_ARGS_ASSERT_AMAGIC_DEREF_CALL      \
141         assert(ref)
142 PERL_CALLCONV bool      Perl_amagic_is_enabled(pTHX_ int method);
143 #ifndef PERL_NO_INLINE_FUNCTIONS
144 PERL_STATIC_INLINE void S_append_utf8_from_native_byte(const U8 byte, U8** dest);
145 #define PERL_ARGS_ASSERT_APPEND_UTF8_FROM_NATIVE_BYTE   \
146         assert(dest)
147 #endif
148 PERL_CALLCONV I32       Perl_apply(pTHX_ I32 type, SV** mark, SV** sp);
149 #define PERL_ARGS_ASSERT_APPLY  \
150         assert(mark); assert(sp)
151 PERL_CALLCONV void      Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len);
152 #define PERL_ARGS_ASSERT_APPLY_ATTRS_STRING     \
153         assert(stashpv); assert(cv); assert(attrstr)
154 PERL_CALLCONV void      Perl_atfork_lock(void);
155 PERL_CALLCONV void      Perl_atfork_unlock(void);
156 PERL_CALLCONV SV**      Perl_av_arylen_p(pTHX_ AV *av);
157 #define PERL_ARGS_ASSERT_AV_ARYLEN_P    \
158         assert(av)
159 PERL_CALLCONV void      Perl_av_clear(pTHX_ AV *av);
160 #define PERL_ARGS_ASSERT_AV_CLEAR       \
161         assert(av)
162 PERL_CALLCONV void      Perl_av_create_and_push(pTHX_ AV **const avp, SV *const val);
163 #define PERL_ARGS_ASSERT_AV_CREATE_AND_PUSH     \
164         assert(avp); assert(val)
165 PERL_CALLCONV SV**      Perl_av_create_and_unshift_one(pTHX_ AV **const avp, SV *const val);
166 #define PERL_ARGS_ASSERT_AV_CREATE_AND_UNSHIFT_ONE      \
167         assert(avp); assert(val)
168 PERL_CALLCONV SV*       Perl_av_delete(pTHX_ AV *av, SSize_t key, I32 flags);
169 #define PERL_ARGS_ASSERT_AV_DELETE      \
170         assert(av)
171 PERL_CALLCONV bool      Perl_av_exists(pTHX_ AV *av, SSize_t key)
172                         __attribute__warn_unused_result__;
173 #define PERL_ARGS_ASSERT_AV_EXISTS      \
174         assert(av)
175
176 PERL_CALLCONV void      Perl_av_extend(pTHX_ AV *av, SSize_t key);
177 #define PERL_ARGS_ASSERT_AV_EXTEND      \
178         assert(av)
179 PERL_CALLCONV void      Perl_av_extend_guts(pTHX_ AV *av, SSize_t key, SSize_t *maxp, SV ***allocp, SV ***arrayp);
180 #define PERL_ARGS_ASSERT_AV_EXTEND_GUTS \
181         assert(maxp); assert(allocp); assert(arrayp)
182 PERL_CALLCONV SV**      Perl_av_fetch(pTHX_ AV *av, SSize_t key, I32 lval)
183                         __attribute__warn_unused_result__;
184 #define PERL_ARGS_ASSERT_AV_FETCH       \
185         assert(av)
186
187 PERL_CALLCONV void      Perl_av_fill(pTHX_ AV *av, SSize_t fill);
188 #define PERL_ARGS_ASSERT_AV_FILL        \
189         assert(av)
190 PERL_CALLCONV IV*       Perl_av_iter_p(pTHX_ AV *av);
191 #define PERL_ARGS_ASSERT_AV_ITER_P      \
192         assert(av)
193 PERL_CALLCONV SSize_t   Perl_av_len(pTHX_ AV *av)
194                         __attribute__warn_unused_result__;
195 #define PERL_ARGS_ASSERT_AV_LEN \
196         assert(av)
197
198 PERL_CALLCONV AV*       Perl_av_make(pTHX_ SSize_t size, SV **strp)
199                         __attribute__warn_unused_result__;
200 #define PERL_ARGS_ASSERT_AV_MAKE        \
201         assert(strp)
202
203 PERL_CALLCONV SV*       Perl_av_pop(pTHX_ AV *av);
204 #define PERL_ARGS_ASSERT_AV_POP \
205         assert(av)
206 PERL_CALLCONV void      Perl_av_push(pTHX_ AV *av, SV *val);
207 #define PERL_ARGS_ASSERT_AV_PUSH        \
208         assert(av); assert(val)
209 PERL_CALLCONV void      Perl_av_reify(pTHX_ AV *av);
210 #define PERL_ARGS_ASSERT_AV_REIFY       \
211         assert(av)
212 PERL_CALLCONV SV*       Perl_av_shift(pTHX_ AV *av)
213                         __attribute__warn_unused_result__;
214 #define PERL_ARGS_ASSERT_AV_SHIFT       \
215         assert(av)
216
217 PERL_CALLCONV SV**      Perl_av_store(pTHX_ AV *av, SSize_t key, SV *val);
218 #define PERL_ARGS_ASSERT_AV_STORE       \
219         assert(av)
220 /* PERL_CALLCONV SSize_t        Perl_av_tindex(pTHX_ AV *av)
221                         __attribute__warn_unused_result__; */
222
223 #ifndef PERL_NO_INLINE_FUNCTIONS
224 PERL_STATIC_INLINE SSize_t      S_av_top_index(pTHX_ AV *av)
225                         __attribute__warn_unused_result__;
226 #define PERL_ARGS_ASSERT_AV_TOP_INDEX   \
227         assert(av)
228 #endif
229
230 PERL_CALLCONV void      Perl_av_undef(pTHX_ AV *av);
231 #define PERL_ARGS_ASSERT_AV_UNDEF       \
232         assert(av)
233 PERL_CALLCONV void      Perl_av_unshift(pTHX_ AV *av, SSize_t num);
234 #define PERL_ARGS_ASSERT_AV_UNSHIFT     \
235         assert(av)
236 PERL_CALLCONV OP*       Perl_bind_match(pTHX_ I32 type, OP *left, OP *right)
237                         __attribute__warn_unused_result__;
238 #define PERL_ARGS_ASSERT_BIND_MATCH     \
239         assert(left); assert(right)
240
241 PERL_CALLCONV OP*       Perl_block_end(pTHX_ I32 floor, OP* seq)
242                         __attribute__warn_unused_result__;
243
244 PERL_CALLCONV U8        Perl_block_gimme(pTHX)
245                         __attribute__warn_unused_result__;
246
247 PERL_CALLCONV int       Perl_block_start(pTHX_ int full)
248                         __attribute__warn_unused_result__;
249
250 PERL_CALLCONV void      Perl_blockhook_register(pTHX_ BHK *hk);
251 #define PERL_ARGS_ASSERT_BLOCKHOOK_REGISTER     \
252         assert(hk)
253 PERL_CALLCONV void      Perl_boot_core_PerlIO(pTHX);
254 PERL_CALLCONV void      Perl_boot_core_UNIVERSAL(pTHX);
255 PERL_CALLCONV void      Perl_boot_core_mro(pTHX);
256 PERL_CALLCONV int       Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen);
257 #define PERL_ARGS_ASSERT_BYTES_CMP_UTF8 \
258         assert(b); assert(u)
259 PERL_CALLCONV U8*       Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *lenp, bool *is_utf8p);
260 #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8        \
261         assert(s); assert(lenp); assert(is_utf8p)
262 PERL_CALLCONV U8*       Perl_bytes_from_utf8_loc(const U8 *s, STRLEN *lenp, bool *is_utf8p, const U8 ** first_unconverted);
263 #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8_LOC    \
264         assert(s); assert(lenp); assert(is_utf8p)
265 PERL_CALLCONV U8*       Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *lenp);
266 #define PERL_ARGS_ASSERT_BYTES_TO_UTF8  \
267         assert(s); assert(lenp)
268 PERL_CALLCONV I32       Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv);
269 #define PERL_ARGS_ASSERT_CALL_ARGV      \
270         assert(sub_name); assert(argv)
271 PERL_CALLCONV void      Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr);
272 PERL_CALLCONV void      Perl_call_list(pTHX_ I32 oldscope, AV *paramList);
273 #define PERL_ARGS_ASSERT_CALL_LIST      \
274         assert(paramList)
275 PERL_CALLCONV I32       Perl_call_method(pTHX_ const char* methname, I32 flags);
276 #define PERL_ARGS_ASSERT_CALL_METHOD    \
277         assert(methname)
278 PERL_CALLCONV I32       Perl_call_pv(pTHX_ const char* sub_name, I32 flags);
279 #define PERL_ARGS_ASSERT_CALL_PV        \
280         assert(sub_name)
281 PERL_CALLCONV I32       Perl_call_sv(pTHX_ SV* sv, volatile I32 flags);
282 #define PERL_ARGS_ASSERT_CALL_SV        \
283         assert(sv)
284 PERL_CALLCONV const PERL_CONTEXT *      Perl_caller_cx(pTHX_ I32 level, const PERL_CONTEXT **dbcxp);
285 PERL_CALLCONV Malloc_t  Perl_calloc(MEM_SIZE elements, MEM_SIZE size)
286                         __attribute__malloc__
287                         __attribute__warn_unused_result__;
288
289 PERL_CALLCONV bool      Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t* statbufp)
290                         __attribute__warn_unused_result__;
291 #define PERL_ARGS_ASSERT_CANDO  \
292         assert(statbufp)
293
294 PERL_CALLCONV I32       Perl_cast_i32(NV f)
295                         __attribute__warn_unused_result__;
296
297 PERL_CALLCONV IV        Perl_cast_iv(NV f)
298                         __attribute__warn_unused_result__;
299
300 PERL_CALLCONV U32       Perl_cast_ulong(NV f)
301                         __attribute__warn_unused_result__;
302
303 PERL_CALLCONV UV        Perl_cast_uv(NV f)
304                         __attribute__warn_unused_result__;
305
306 PERL_CALLCONV bool      Perl_check_utf8_print(pTHX_ const U8 *s, const STRLEN len);
307 #define PERL_ARGS_ASSERT_CHECK_UTF8_PRINT       \
308         assert(s)
309 PERL_CALLCONV OP *      Perl_ck_anoncode(pTHX_ OP *o)
310                         __attribute__warn_unused_result__;
311 #define PERL_ARGS_ASSERT_CK_ANONCODE    \
312         assert(o)
313
314 PERL_CALLCONV OP *      Perl_ck_backtick(pTHX_ OP *o)
315                         __attribute__warn_unused_result__;
316 #define PERL_ARGS_ASSERT_CK_BACKTICK    \
317         assert(o)
318
319 PERL_CALLCONV OP *      Perl_ck_bitop(pTHX_ OP *o)
320                         __attribute__warn_unused_result__;
321 #define PERL_ARGS_ASSERT_CK_BITOP       \
322         assert(o)
323
324 PERL_CALLCONV OP *      Perl_ck_cmp(pTHX_ OP *o)
325                         __attribute__warn_unused_result__;
326 #define PERL_ARGS_ASSERT_CK_CMP \
327         assert(o)
328
329 PERL_CALLCONV OP *      Perl_ck_concat(pTHX_ OP *o)
330                         __attribute__warn_unused_result__;
331 #define PERL_ARGS_ASSERT_CK_CONCAT      \
332         assert(o)
333
334 PERL_CALLCONV OP *      Perl_ck_defined(pTHX_ OP *o)
335                         __attribute__warn_unused_result__;
336 #define PERL_ARGS_ASSERT_CK_DEFINED     \
337         assert(o)
338
339 PERL_CALLCONV OP *      Perl_ck_delete(pTHX_ OP *o)
340                         __attribute__warn_unused_result__;
341 #define PERL_ARGS_ASSERT_CK_DELETE      \
342         assert(o)
343
344 PERL_CALLCONV OP *      Perl_ck_each(pTHX_ OP *o)
345                         __attribute__warn_unused_result__;
346 #define PERL_ARGS_ASSERT_CK_EACH        \
347         assert(o)
348
349 PERL_CALLCONV OP*       Perl_ck_entersub_args_core(pTHX_ OP *entersubop, GV *namegv, SV *protosv);
350 #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_CORE  \
351         assert(entersubop); assert(namegv); assert(protosv)
352 PERL_CALLCONV OP*       Perl_ck_entersub_args_list(pTHX_ OP *entersubop);
353 #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_LIST  \
354         assert(entersubop)
355 PERL_CALLCONV OP*       Perl_ck_entersub_args_proto(pTHX_ OP *entersubop, GV *namegv, SV *protosv);
356 #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO \
357         assert(entersubop); assert(namegv); assert(protosv)
358 PERL_CALLCONV OP*       Perl_ck_entersub_args_proto_or_list(pTHX_ OP *entersubop, GV *namegv, SV *protosv);
359 #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO_OR_LIST \
360         assert(entersubop); assert(namegv); assert(protosv)
361 PERL_CALLCONV OP *      Perl_ck_eof(pTHX_ OP *o)
362                         __attribute__warn_unused_result__;
363 #define PERL_ARGS_ASSERT_CK_EOF \
364         assert(o)
365
366 PERL_CALLCONV OP *      Perl_ck_eval(pTHX_ OP *o)
367                         __attribute__warn_unused_result__;
368 #define PERL_ARGS_ASSERT_CK_EVAL        \
369         assert(o)
370
371 PERL_CALLCONV OP *      Perl_ck_exec(pTHX_ OP *o)
372                         __attribute__warn_unused_result__;
373 #define PERL_ARGS_ASSERT_CK_EXEC        \
374         assert(o)
375
376 PERL_CALLCONV OP *      Perl_ck_exists(pTHX_ OP *o)
377                         __attribute__warn_unused_result__;
378 #define PERL_ARGS_ASSERT_CK_EXISTS      \
379         assert(o)
380
381 PERL_CALLCONV OP *      Perl_ck_ftst(pTHX_ OP *o)
382                         __attribute__warn_unused_result__;
383 #define PERL_ARGS_ASSERT_CK_FTST        \
384         assert(o)
385
386 PERL_CALLCONV OP *      Perl_ck_fun(pTHX_ OP *o)
387                         __attribute__warn_unused_result__;
388 #define PERL_ARGS_ASSERT_CK_FUN \
389         assert(o)
390
391 PERL_CALLCONV OP *      Perl_ck_glob(pTHX_ OP *o)
392                         __attribute__warn_unused_result__;
393 #define PERL_ARGS_ASSERT_CK_GLOB        \
394         assert(o)
395
396 PERL_CALLCONV OP *      Perl_ck_grep(pTHX_ OP *o)
397                         __attribute__warn_unused_result__;
398 #define PERL_ARGS_ASSERT_CK_GREP        \
399         assert(o)
400
401 PERL_CALLCONV OP *      Perl_ck_index(pTHX_ OP *o)
402                         __attribute__warn_unused_result__;
403 #define PERL_ARGS_ASSERT_CK_INDEX       \
404         assert(o)
405
406 PERL_CALLCONV OP *      Perl_ck_join(pTHX_ OP *o)
407                         __attribute__warn_unused_result__;
408 #define PERL_ARGS_ASSERT_CK_JOIN        \
409         assert(o)
410
411 PERL_CALLCONV OP *      Perl_ck_length(pTHX_ OP *o)
412                         __attribute__warn_unused_result__;
413 #define PERL_ARGS_ASSERT_CK_LENGTH      \
414         assert(o)
415
416 PERL_CALLCONV OP *      Perl_ck_lfun(pTHX_ OP *o)
417                         __attribute__warn_unused_result__;
418 #define PERL_ARGS_ASSERT_CK_LFUN        \
419         assert(o)
420
421 PERL_CALLCONV OP *      Perl_ck_listiob(pTHX_ OP *o)
422                         __attribute__warn_unused_result__;
423 #define PERL_ARGS_ASSERT_CK_LISTIOB     \
424         assert(o)
425
426 PERL_CALLCONV OP *      Perl_ck_match(pTHX_ OP *o)
427                         __attribute__warn_unused_result__;
428 #define PERL_ARGS_ASSERT_CK_MATCH       \
429         assert(o)
430
431 PERL_CALLCONV OP *      Perl_ck_method(pTHX_ OP *o)
432                         __attribute__warn_unused_result__;
433 #define PERL_ARGS_ASSERT_CK_METHOD      \
434         assert(o)
435
436 PERL_CALLCONV OP *      Perl_ck_null(pTHX_ OP *o)
437                         __attribute__warn_unused_result__;
438 #define PERL_ARGS_ASSERT_CK_NULL        \
439         assert(o)
440
441 PERL_CALLCONV OP *      Perl_ck_open(pTHX_ OP *o)
442                         __attribute__warn_unused_result__;
443 #define PERL_ARGS_ASSERT_CK_OPEN        \
444         assert(o)
445
446 PERL_CALLCONV OP *      Perl_ck_prototype(pTHX_ OP *o)
447                         __attribute__warn_unused_result__;
448 #define PERL_ARGS_ASSERT_CK_PROTOTYPE   \
449         assert(o)
450
451 PERL_CALLCONV OP *      Perl_ck_readline(pTHX_ OP *o)
452                         __attribute__warn_unused_result__;
453 #define PERL_ARGS_ASSERT_CK_READLINE    \
454         assert(o)
455
456 PERL_CALLCONV OP *      Perl_ck_refassign(pTHX_ OP *o)
457                         __attribute__warn_unused_result__;
458 #define PERL_ARGS_ASSERT_CK_REFASSIGN   \
459         assert(o)
460
461 PERL_CALLCONV OP *      Perl_ck_repeat(pTHX_ OP *o)
462                         __attribute__warn_unused_result__;
463 #define PERL_ARGS_ASSERT_CK_REPEAT      \
464         assert(o)
465
466 PERL_CALLCONV OP *      Perl_ck_require(pTHX_ OP *o)
467                         __attribute__warn_unused_result__;
468 #define PERL_ARGS_ASSERT_CK_REQUIRE     \
469         assert(o)
470
471 PERL_CALLCONV OP *      Perl_ck_return(pTHX_ OP *o)
472                         __attribute__warn_unused_result__;
473 #define PERL_ARGS_ASSERT_CK_RETURN      \
474         assert(o)
475
476 PERL_CALLCONV OP *      Perl_ck_rfun(pTHX_ OP *o)
477                         __attribute__warn_unused_result__;
478 #define PERL_ARGS_ASSERT_CK_RFUN        \
479         assert(o)
480
481 PERL_CALLCONV OP *      Perl_ck_rvconst(pTHX_ OP *o)
482                         __attribute__warn_unused_result__;
483 #define PERL_ARGS_ASSERT_CK_RVCONST     \
484         assert(o)
485
486 PERL_CALLCONV OP *      Perl_ck_sassign(pTHX_ OP *o)
487                         __attribute__warn_unused_result__;
488 #define PERL_ARGS_ASSERT_CK_SASSIGN     \
489         assert(o)
490
491 PERL_CALLCONV OP *      Perl_ck_select(pTHX_ OP *o)
492                         __attribute__warn_unused_result__;
493 #define PERL_ARGS_ASSERT_CK_SELECT      \
494         assert(o)
495
496 PERL_CALLCONV OP *      Perl_ck_shift(pTHX_ OP *o)
497                         __attribute__warn_unused_result__;
498 #define PERL_ARGS_ASSERT_CK_SHIFT       \
499         assert(o)
500
501 PERL_CALLCONV OP *      Perl_ck_smartmatch(pTHX_ OP *o)
502                         __attribute__warn_unused_result__;
503 #define PERL_ARGS_ASSERT_CK_SMARTMATCH  \
504         assert(o)
505
506 PERL_CALLCONV OP *      Perl_ck_sort(pTHX_ OP *o)
507                         __attribute__warn_unused_result__;
508 #define PERL_ARGS_ASSERT_CK_SORT        \
509         assert(o)
510
511 PERL_CALLCONV OP *      Perl_ck_spair(pTHX_ OP *o)
512                         __attribute__warn_unused_result__;
513 #define PERL_ARGS_ASSERT_CK_SPAIR       \
514         assert(o)
515
516 PERL_CALLCONV OP *      Perl_ck_split(pTHX_ OP *o)
517                         __attribute__warn_unused_result__;
518 #define PERL_ARGS_ASSERT_CK_SPLIT       \
519         assert(o)
520
521 PERL_CALLCONV OP *      Perl_ck_stringify(pTHX_ OP *o)
522                         __attribute__warn_unused_result__;
523 #define PERL_ARGS_ASSERT_CK_STRINGIFY   \
524         assert(o)
525
526 PERL_CALLCONV OP *      Perl_ck_subr(pTHX_ OP *o)
527                         __attribute__warn_unused_result__;
528 #define PERL_ARGS_ASSERT_CK_SUBR        \
529         assert(o)
530
531 PERL_CALLCONV OP *      Perl_ck_substr(pTHX_ OP *o)
532                         __attribute__warn_unused_result__;
533 #define PERL_ARGS_ASSERT_CK_SUBSTR      \
534         assert(o)
535
536 PERL_CALLCONV OP *      Perl_ck_svconst(pTHX_ OP *o)
537                         __attribute__warn_unused_result__;
538 #define PERL_ARGS_ASSERT_CK_SVCONST     \
539         assert(o)
540
541 PERL_CALLCONV OP *      Perl_ck_tell(pTHX_ OP *o)
542                         __attribute__warn_unused_result__;
543 #define PERL_ARGS_ASSERT_CK_TELL        \
544         assert(o)
545
546 PERL_CALLCONV OP *      Perl_ck_trunc(pTHX_ OP *o)
547                         __attribute__warn_unused_result__;
548 #define PERL_ARGS_ASSERT_CK_TRUNC       \
549         assert(o)
550
551 PERL_CALLCONV void      Perl_ck_warner(pTHX_ U32 err, const char* pat, ...)
552                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
553 #define PERL_ARGS_ASSERT_CK_WARNER      \
554         assert(pat)
555
556 PERL_CALLCONV void      Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...)
557                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
558 #define PERL_ARGS_ASSERT_CK_WARNER_D    \
559         assert(pat)
560
561 PERL_CALLCONV bool      Perl_ckwarn(pTHX_ U32 w)
562                         __attribute__warn_unused_result__
563                         __attribute__pure__;
564
565 PERL_CALLCONV bool      Perl_ckwarn_d(pTHX_ U32 w)
566                         __attribute__warn_unused_result__
567                         __attribute__pure__;
568
569 PERL_CALLCONV void      Perl_clear_defarray(pTHX_ AV* av, bool abandon);
570 #define PERL_ARGS_ASSERT_CLEAR_DEFARRAY \
571         assert(av)
572 PERL_CALLCONV const COP*        Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop, bool opnext);
573 #define PERL_ARGS_ASSERT_CLOSEST_COP    \
574         assert(cop)
575 PERL_CALLCONV const char *      Perl_cop_fetch_label(pTHX_ COP *const cop, STRLEN *len, U32 *flags);
576 #define PERL_ARGS_ASSERT_COP_FETCH_LABEL        \
577         assert(cop)
578 PERL_CALLCONV void      Perl_cop_store_label(pTHX_ COP *const cop, const char *label, STRLEN len, U32 flags);
579 #define PERL_ARGS_ASSERT_COP_STORE_LABEL        \
580         assert(cop); assert(label)
581 PERL_CALLCONV SV *      Perl_core_prototype(pTHX_ SV *sv, const char *name, const int code, int * const opnum);
582 #define PERL_ARGS_ASSERT_CORE_PROTOTYPE \
583         assert(name)
584 PERL_CALLCONV OP *      Perl_coresub_op(pTHX_ SV *const coreargssv, const int code, const int opnum);
585 #define PERL_ARGS_ASSERT_CORESUB_OP     \
586         assert(coreargssv)
587 PERL_CALLCONV void      Perl_create_eval_scope(pTHX_ OP *retop, U32 flags);
588 PERL_CALLCONV_NO_RET void       Perl_croak(pTHX_ const char* pat, ...)
589                         __attribute__noreturn__
590                         __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2);
591
592 PERL_CALLCONV_NO_RET void       Perl_croak_caller(const char* pat, ...)
593                         __attribute__noreturn__
594                         __attribute__format__null_ok__(__printf__,1,2);
595
596 PERL_STATIC_NO_RET void S_croak_memory_wrap(void)
597                         __attribute__noreturn__;
598
599 PERL_CALLCONV_NO_RET void       Perl_croak_no_mem(void)
600                         __attribute__noreturn__;
601
602 PERL_CALLCONV_NO_RET void       Perl_croak_no_modify(void)
603                         __attribute__noreturn__;
604
605 PERL_CALLCONV_NO_RET void       Perl_croak_popstack(void)
606                         __attribute__noreturn__;
607
608 PERL_CALLCONV_NO_RET void       Perl_croak_sv(pTHX_ SV *baseex)
609                         __attribute__noreturn__;
610 #define PERL_ARGS_ASSERT_CROAK_SV       \
611         assert(baseex)
612
613 PERL_CALLCONV_NO_RET void       Perl_croak_xs_usage(const CV *const cv, const char *const params)
614                         __attribute__noreturn__;
615 #define PERL_ARGS_ASSERT_CROAK_XS_USAGE \
616         assert(cv); assert(params)
617
618 PERL_CALLCONV regexp_engine const *     Perl_current_re_engine(pTHX);
619 PERL_CALLCONV const char *      Perl_custom_op_desc(pTHX_ const OP *o)
620                         __attribute__warn_unused_result__;
621 #define PERL_ARGS_ASSERT_CUSTOM_OP_DESC \
622         assert(o)
623
624 PERL_CALLCONV XOPRETANY Perl_custom_op_get_field(pTHX_ const OP *o, const xop_flags_enum field)
625                         __attribute__warn_unused_result__;
626 #define PERL_ARGS_ASSERT_CUSTOM_OP_GET_FIELD    \
627         assert(o)
628
629 PERL_CALLCONV const char *      Perl_custom_op_name(pTHX_ const OP *o)
630                         __attribute__warn_unused_result__;
631 #define PERL_ARGS_ASSERT_CUSTOM_OP_NAME \
632         assert(o)
633
634 PERL_CALLCONV void      Perl_custom_op_register(pTHX_ Perl_ppaddr_t ppaddr, const XOP *xop);
635 #define PERL_ARGS_ASSERT_CUSTOM_OP_REGISTER     \
636         assert(ppaddr); assert(xop)
637 /* PERL_CALLCONV const XOP *    Perl_custom_op_xop(pTHX_ const OP *o); */
638 PERL_CALLCONV void      Perl_cv_ckproto_len_flags(pTHX_ const CV* cv, const GV* gv, const char* p, const STRLEN len, const U32 flags);
639 #define PERL_ARGS_ASSERT_CV_CKPROTO_LEN_FLAGS   \
640         assert(cv)
641 PERL_CALLCONV CV*       Perl_cv_clone(pTHX_ CV* proto);
642 #define PERL_ARGS_ASSERT_CV_CLONE       \
643         assert(proto)
644 PERL_CALLCONV CV*       Perl_cv_clone_into(pTHX_ CV* proto, CV *target);
645 #define PERL_ARGS_ASSERT_CV_CLONE_INTO  \
646         assert(proto); assert(target)
647 PERL_CALLCONV SV*       Perl_cv_const_sv(const CV *const cv)
648                         __attribute__warn_unused_result__;
649
650 PERL_CALLCONV SV*       Perl_cv_const_sv_or_av(const CV *const cv)
651                         __attribute__warn_unused_result__;
652
653 PERL_CALLCONV void      Perl_cv_forget_slab(pTHX_ CV *cv);
654 PERL_CALLCONV void      Perl_cv_get_call_checker(pTHX_ CV *cv, Perl_call_checker *ckfun_p, SV **ckobj_p);
655 #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER    \
656         assert(cv); assert(ckfun_p); assert(ckobj_p)
657 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);
658 #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER_FLAGS      \
659         assert(cv); assert(ckfun_p); assert(ckobj_p); assert(ckflags_p)
660 PERL_CALLCONV SV *      Perl_cv_name(pTHX_ CV *cv, SV *sv, U32 flags);
661 #define PERL_ARGS_ASSERT_CV_NAME        \
662         assert(cv)
663 PERL_CALLCONV void      Perl_cv_set_call_checker(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj);
664 #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER    \
665         assert(cv); assert(ckfun); assert(ckobj)
666 PERL_CALLCONV void      Perl_cv_set_call_checker_flags(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj, U32 ckflags);
667 #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER_FLAGS      \
668         assert(cv); assert(ckfun); assert(ckobj)
669 PERL_CALLCONV void      Perl_cv_undef(pTHX_ CV* cv);
670 #define PERL_ARGS_ASSERT_CV_UNDEF       \
671         assert(cv)
672 PERL_CALLCONV void      Perl_cv_undef_flags(pTHX_ CV* cv, U32 flags);
673 #define PERL_ARGS_ASSERT_CV_UNDEF_FLAGS \
674         assert(cv)
675 PERL_CALLCONV GV *      Perl_cvgv_from_hek(pTHX_ CV* cv);
676 #define PERL_ARGS_ASSERT_CVGV_FROM_HEK  \
677         assert(cv)
678 PERL_CALLCONV void      Perl_cvgv_set(pTHX_ CV* cv, GV* gv);
679 #define PERL_ARGS_ASSERT_CVGV_SET       \
680         assert(cv)
681 PERL_CALLCONV void      Perl_cvstash_set(pTHX_ CV* cv, HV* stash);
682 #define PERL_ARGS_ASSERT_CVSTASH_SET    \
683         assert(cv)
684 PERL_CALLCONV void      Perl_cx_dump(pTHX_ PERL_CONTEXT* cx);
685 #define PERL_ARGS_ASSERT_CX_DUMP        \
686         assert(cx)
687 PERL_CALLCONV I32       Perl_cxinc(pTHX)
688                         __attribute__warn_unused_result__;
689
690 PERL_CALLCONV void      Perl_deb(pTHX_ const char* pat, ...)
691                         __attribute__format__(__printf__,pTHX_1,pTHX_2);
692 #define PERL_ARGS_ASSERT_DEB    \
693         assert(pat)
694
695 PERL_CALLCONV void      Perl_deb_stack_all(pTHX);
696 PERL_CALLCONV I32       Perl_debop(pTHX_ const OP* o);
697 #define PERL_ARGS_ASSERT_DEBOP  \
698         assert(o)
699 PERL_CALLCONV void      Perl_debprofdump(pTHX);
700 PERL_CALLCONV I32       Perl_debstack(pTHX);
701 PERL_CALLCONV I32       Perl_debstackptrs(pTHX);
702 PERL_CALLCONV SV *      Perl_defelem_target(pTHX_ SV *sv, MAGIC *mg)
703                         __attribute__warn_unused_result__;
704 #define PERL_ARGS_ASSERT_DEFELEM_TARGET \
705         assert(sv)
706
707 PERL_CALLCONV void      Perl_delete_eval_scope(pTHX);
708 PERL_CALLCONV char*     Perl_delimcpy(char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen);
709 #define PERL_ARGS_ASSERT_DELIMCPY       \
710         assert(to); assert(toend); assert(from); assert(fromend); assert(retlen)
711 PERL_CALLCONV char*     Perl_delimcpy_no_escape(char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen);
712 #define PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE     \
713         assert(to); assert(toend); assert(from); assert(fromend); assert(retlen)
714 PERL_CALLCONV void      Perl_despatch_signals(pTHX);
715 PERL_CALLCONV_NO_RET OP*        Perl_die(pTHX_ const char* pat, ...)
716                         __attribute__noreturn__
717                         __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2);
718
719 PERL_CALLCONV_NO_RET OP*        Perl_die_sv(pTHX_ SV *baseex)
720                         __attribute__noreturn__;
721 #define PERL_ARGS_ASSERT_DIE_SV \
722         assert(baseex)
723
724 PERL_CALLCONV_NO_RET void       Perl_die_unwind(pTHX_ SV* msv)
725                         __attribute__noreturn__;
726 #define PERL_ARGS_ASSERT_DIE_UNWIND     \
727         assert(msv)
728
729 #ifndef NO_MATHOMS
730 PERL_CALLCONV bool      Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp);
731 #define PERL_ARGS_ASSERT_DO_AEXEC       \
732         assert(mark); assert(sp)
733 #endif
734 PERL_CALLCONV bool      Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int do_report);
735 #define PERL_ARGS_ASSERT_DO_AEXEC5      \
736         assert(mark); assert(sp)
737 PERL_CALLCONV int       Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode);
738 #define PERL_ARGS_ASSERT_DO_BINMODE     \
739         assert(fp)
740 PERL_CALLCONV bool      Perl_do_close(pTHX_ GV* gv, bool not_implicit);
741 PERL_CALLCONV void      Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full);
742 #define PERL_ARGS_ASSERT_DO_DUMP_PAD    \
743         assert(file)
744 PERL_CALLCONV bool      Perl_do_eof(pTHX_ GV* gv);
745 #define PERL_ARGS_ASSERT_DO_EOF \
746         assert(gv)
747 PERL_CALLCONV void      Perl_do_execfree(pTHX);
748 PERL_CALLCONV void      Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv);
749 #define PERL_ARGS_ASSERT_DO_GV_DUMP     \
750         assert(file); assert(name)
751 PERL_CALLCONV void      Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv);
752 #define PERL_ARGS_ASSERT_DO_GVGV_DUMP   \
753         assert(file); assert(name)
754 PERL_CALLCONV void      Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv);
755 #define PERL_ARGS_ASSERT_DO_HV_DUMP     \
756         assert(file); assert(name)
757 PERL_CALLCONV void      Perl_do_join(pTHX_ SV *sv, SV *delim, SV **mark, SV **sp);
758 #define PERL_ARGS_ASSERT_DO_JOIN        \
759         assert(sv); assert(delim); assert(mark); assert(sp)
760 PERL_CALLCONV void      Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim);
761 #define PERL_ARGS_ASSERT_DO_MAGIC_DUMP  \
762         assert(file)
763 PERL_CALLCONV I32       Perl_do_ncmp(pTHX_ SV *const left, SV *const right)
764                         __attribute__warn_unused_result__;
765 #define PERL_ARGS_ASSERT_DO_NCMP        \
766         assert(left); assert(right)
767
768 PERL_CALLCONV void      Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o);
769 #define PERL_ARGS_ASSERT_DO_OP_DUMP     \
770         assert(file)
771 #ifndef NO_MATHOMS
772 PERL_CALLCONV bool      Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp);
773 #define PERL_ARGS_ASSERT_DO_OPEN        \
774         assert(gv); assert(name)
775 #endif
776 PERL_CALLCONV bool      Perl_do_open6(pTHX_ GV *gv, const char *oname, STRLEN len, PerlIO *supplied_fp, SV **svp, U32 num);
777 #define PERL_ARGS_ASSERT_DO_OPEN6       \
778         assert(gv); assert(oname)
779 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);
780 #define PERL_ARGS_ASSERT_DO_OPEN9       \
781         assert(gv); assert(name); assert(svs)
782 PERL_CALLCONV bool      Perl_do_open_raw(pTHX_ GV *gv, const char *oname, STRLEN len, int rawmode, int rawperm, Stat_t *statbufp);
783 #define PERL_ARGS_ASSERT_DO_OPEN_RAW    \
784         assert(gv); assert(oname)
785 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);
786 #define PERL_ARGS_ASSERT_DO_OPENN       \
787         assert(gv); assert(oname)
788 PERL_CALLCONV void      Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm);
789 #define PERL_ARGS_ASSERT_DO_PMOP_DUMP   \
790         assert(file)
791 PERL_CALLCONV bool      Perl_do_print(pTHX_ SV* sv, PerlIO* fp);
792 #define PERL_ARGS_ASSERT_DO_PRINT       \
793         assert(fp)
794 PERL_CALLCONV OP*       Perl_do_readline(pTHX)
795                         __attribute__warn_unused_result__;
796
797 PERL_CALLCONV bool      Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence);
798 PERL_CALLCONV void      Perl_do_sprintf(pTHX_ SV* sv, SSize_t len, SV** sarg);
799 #define PERL_ARGS_ASSERT_DO_SPRINTF     \
800         assert(sv); assert(sarg)
801 PERL_CALLCONV void      Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim);
802 #define PERL_ARGS_ASSERT_DO_SV_DUMP     \
803         assert(file)
804 PERL_CALLCONV Off_t     Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence);
805 #define PERL_ARGS_ASSERT_DO_SYSSEEK     \
806         assert(gv)
807 PERL_CALLCONV Off_t     Perl_do_tell(pTHX_ GV* gv)
808                         __attribute__warn_unused_result__;
809 #define PERL_ARGS_ASSERT_DO_TELL        \
810         assert(gv)
811
812 PERL_CALLCONV I32       Perl_do_trans(pTHX_ SV* sv);
813 #define PERL_ARGS_ASSERT_DO_TRANS       \
814         assert(sv)
815 PERL_CALLCONV UV        Perl_do_vecget(pTHX_ SV* sv, STRLEN offset, int size);
816 #define PERL_ARGS_ASSERT_DO_VECGET      \
817         assert(sv)
818 PERL_CALLCONV void      Perl_do_vecset(pTHX_ SV* sv);
819 #define PERL_ARGS_ASSERT_DO_VECSET      \
820         assert(sv)
821 PERL_CALLCONV void      Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right);
822 #define PERL_ARGS_ASSERT_DO_VOP \
823         assert(sv); assert(left); assert(right)
824 PERL_CALLCONV OP*       Perl_dofile(pTHX_ OP* term, I32 force_builtin);
825 #define PERL_ARGS_ASSERT_DOFILE \
826         assert(term)
827 PERL_CALLCONV bool      Perl_doing_taint(int argc, char** argv, char** env)
828                         __attribute__warn_unused_result__;
829
830 PERL_CALLCONV OP *      Perl_doref(pTHX_ OP *o, I32 type, bool set_op_ref);
831 #define PERL_ARGS_ASSERT_DOREF  \
832         assert(o)
833 PERL_CALLCONV void      Perl_dounwind(pTHX_ I32 cxix);
834 PERL_CALLCONV U8        Perl_dowantarray(pTHX)
835                         __attribute__warn_unused_result__;
836
837 PERL_CALLCONV void      Perl_drand48_init_r(perl_drand48_t *random_state, U32 seed);
838 #define PERL_ARGS_ASSERT_DRAND48_INIT_R \
839         assert(random_state)
840 PERL_CALLCONV double    Perl_drand48_r(perl_drand48_t *random_state);
841 #define PERL_ARGS_ASSERT_DRAND48_R      \
842         assert(random_state)
843 PERL_CALLCONV void      Perl_dump_all(pTHX);
844 PERL_CALLCONV void      Perl_dump_all_perl(pTHX_ bool justperl);
845 PERL_CALLCONV void      Perl_dump_eval(pTHX);
846 PERL_CALLCONV void      Perl_dump_form(pTHX_ const GV* gv);
847 #define PERL_ARGS_ASSERT_DUMP_FORM      \
848         assert(gv)
849 PERL_CALLCONV void      Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...)
850                         __attribute__format__(__printf__,pTHX_3,pTHX_4);
851 #define PERL_ARGS_ASSERT_DUMP_INDENT    \
852         assert(file); assert(pat)
853
854 PERL_CALLCONV void      Perl_dump_packsubs(pTHX_ const HV* stash);
855 #define PERL_ARGS_ASSERT_DUMP_PACKSUBS  \
856         assert(stash)
857 PERL_CALLCONV void      Perl_dump_packsubs_perl(pTHX_ const HV* stash, bool justperl);
858 #define PERL_ARGS_ASSERT_DUMP_PACKSUBS_PERL     \
859         assert(stash)
860 PERL_CALLCONV void      Perl_dump_sub(pTHX_ const GV* gv);
861 #define PERL_ARGS_ASSERT_DUMP_SUB       \
862         assert(gv)
863 PERL_CALLCONV void      Perl_dump_sub_perl(pTHX_ const GV* gv, bool justperl);
864 #define PERL_ARGS_ASSERT_DUMP_SUB_PERL  \
865         assert(gv)
866 PERL_CALLCONV void      Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args);
867 #define PERL_ARGS_ASSERT_DUMP_VINDENT   \
868         assert(file); assert(pat)
869 PERL_CALLCONV void      Perl_emulate_cop_io(pTHX_ const COP *const c, SV *const sv);
870 #define PERL_ARGS_ASSERT_EMULATE_COP_IO \
871         assert(c); assert(sv)
872 PERL_CALLCONV SV*       Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error);
873 #define PERL_ARGS_ASSERT_EVAL_PV        \
874         assert(p)
875 PERL_CALLCONV I32       Perl_eval_sv(pTHX_ SV* sv, I32 flags);
876 #define PERL_ARGS_ASSERT_EVAL_SV        \
877         assert(sv)
878 PERL_CALLCONV void      Perl_fbm_compile(pTHX_ SV* sv, U32 flags);
879 #define PERL_ARGS_ASSERT_FBM_COMPILE    \
880         assert(sv)
881 PERL_CALLCONV char*     Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlestr, U32 flags)
882                         __attribute__warn_unused_result__;
883 #define PERL_ARGS_ASSERT_FBM_INSTR      \
884         assert(big); assert(bigend); assert(littlestr)
885
886 PERL_CALLCONV bool      Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen);
887 #define PERL_ARGS_ASSERT_FEATURE_IS_ENABLED     \
888         assert(name)
889 PERL_CALLCONV SV*       Perl_filter_add(pTHX_ filter_t funcp, SV* datasv);
890 PERL_CALLCONV void      Perl_filter_del(pTHX_ filter_t funcp);
891 #define PERL_ARGS_ASSERT_FILTER_DEL     \
892         assert(funcp)
893 PERL_CALLCONV I32       Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
894                         __attribute__warn_unused_result__;
895 #define PERL_ARGS_ASSERT_FILTER_READ    \
896         assert(buf_sv)
897
898 PERL_CALLCONV void      Perl_finalize_optree(pTHX_ OP* o);
899 #define PERL_ARGS_ASSERT_FINALIZE_OPTREE        \
900         assert(o)
901 PERL_CALLCONV CV *      Perl_find_lexical_cv(pTHX_ PADOFFSET off);
902 PERL_CALLCONV CV*       Perl_find_runcv(pTHX_ U32 *db_seqp)
903                         __attribute__warn_unused_result__;
904
905 PERL_CALLCONV CV*       Perl_find_runcv_where(pTHX_ U8 cond, IV arg, U32 *db_seqp)
906                         __attribute__warn_unused_result__;
907
908 PERL_CALLCONV SV*       Perl_find_rundefsv(pTHX);
909 PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX)
910                         __attribute__deprecated__;
911
912 PERL_CALLCONV char*     Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char *const *const search_ext, I32 flags);
913 #define PERL_ARGS_ASSERT_FIND_SCRIPT    \
914         assert(scriptname)
915 #ifndef PERL_NO_INLINE_FUNCTIONS
916 PERL_STATIC_INLINE I32  Perl_foldEQ(const char* a, const char* b, I32 len);
917 #define PERL_ARGS_ASSERT_FOLDEQ \
918         assert(a); assert(b)
919 #endif
920 #ifndef PERL_NO_INLINE_FUNCTIONS
921 PERL_STATIC_INLINE I32  Perl_foldEQ_latin1(const char* a, const char* b, I32 len);
922 #define PERL_ARGS_ASSERT_FOLDEQ_LATIN1  \
923         assert(a); assert(b)
924 #endif
925 #ifndef PERL_NO_INLINE_FUNCTIONS
926 PERL_STATIC_INLINE I32  Perl_foldEQ_locale(const char* a, const char* b, I32 len);
927 #define PERL_ARGS_ASSERT_FOLDEQ_LOCALE  \
928         assert(a); assert(b)
929 #endif
930 /* PERL_CALLCONV I32    foldEQ_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */
931 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);
932 #define PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS      \
933         assert(s1); assert(s2)
934 PERL_CALLCONV char*     Perl_form(pTHX_ const char* pat, ...)
935                         __attribute__format__(__printf__,pTHX_1,pTHX_2);
936 #define PERL_ARGS_ASSERT_FORM   \
937         assert(pat)
938
939 PERL_CALLCONV void      Perl_free_tied_hv_pool(pTHX);
940 PERL_CALLCONV void      Perl_free_tmps(pTHX);
941 PERL_CALLCONV AV*       Perl_get_av(pTHX_ const char *name, I32 flags);
942 #define PERL_ARGS_ASSERT_GET_AV \
943         assert(name)
944 PERL_CALLCONV void*     Perl_get_context(void)
945                         __attribute__warn_unused_result__;
946
947 PERL_CALLCONV CV*       Perl_get_cv(pTHX_ const char* name, I32 flags);
948 #define PERL_ARGS_ASSERT_GET_CV \
949         assert(name)
950 PERL_CALLCONV CV*       Perl_get_cvn_flags(pTHX_ const char* name, STRLEN len, I32 flags);
951 #define PERL_ARGS_ASSERT_GET_CVN_FLAGS  \
952         assert(name)
953 PERL_CALLCONV void      Perl_get_db_sub(pTHX_ SV **svp, CV *cv);
954 #define PERL_ARGS_ASSERT_GET_DB_SUB     \
955         assert(cv)
956 PERL_CALLCONV void      Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer);
957 #define PERL_ARGS_ASSERT_GET_HASH_SEED  \
958         assert(seed_buffer)
959 PERL_CALLCONV HV*       Perl_get_hv(pTHX_ const char *name, I32 flags);
960 #define PERL_ARGS_ASSERT_GET_HV \
961         assert(name)
962 PERL_CALLCONV const char*       Perl_get_no_modify(pTHX)
963                         __attribute__warn_unused_result__
964                         __attribute__pure__;
965
966 PERL_CALLCONV char**    Perl_get_op_descs(pTHX)
967                         __attribute__warn_unused_result__
968                         __attribute__pure__;
969
970 PERL_CALLCONV char**    Perl_get_op_names(pTHX)
971                         __attribute__warn_unused_result__
972                         __attribute__pure__;
973
974 PERL_CALLCONV U32*      Perl_get_opargs(pTHX)
975                         __attribute__warn_unused_result__
976                         __attribute__pure__;
977
978 PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX)
979                         __attribute__warn_unused_result__
980                         __attribute__pure__;
981
982 PERL_CALLCONV REGEXP *  Perl_get_re_arg(pTHX_ SV *sv);
983 PERL_CALLCONV SV*       Perl_get_sv(pTHX_ const char *name, I32 flags);
984 #define PERL_ARGS_ASSERT_GET_SV \
985         assert(name)
986 PERL_CALLCONV MGVTBL*   Perl_get_vtbl(pTHX_ int vtbl_id)
987                         __attribute__warn_unused_result__;
988
989 PERL_CALLCONV int       Perl_getcwd_sv(pTHX_ SV* sv);
990 #define PERL_ARGS_ASSERT_GETCWD_SV      \
991         assert(sv)
992 PERL_CALLCONV void      Perl_gp_free(pTHX_ GV* gv);
993 PERL_CALLCONV GP*       Perl_gp_ref(pTHX_ GP* gp);
994 PERL_CALLCONV bool      Perl_grok_atoUV(const char* pv, UV* valptr, const char** endptr);
995 #define PERL_ARGS_ASSERT_GROK_ATOUV     \
996         assert(pv); assert(valptr)
997 PERL_CALLCONV UV        Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result);
998 #define PERL_ARGS_ASSERT_GROK_BIN       \
999         assert(start); assert(len_p); assert(flags)
1000 PERL_CALLCONV UV        Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result);
1001 #define PERL_ARGS_ASSERT_GROK_HEX       \
1002         assert(start); assert(len_p); assert(flags)
1003 PERL_CALLCONV int       Perl_grok_infnan(pTHX_ const char** sp, const char *send);
1004 #define PERL_ARGS_ASSERT_GROK_INFNAN    \
1005         assert(sp); assert(send)
1006 PERL_CALLCONV int       Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep);
1007 #define PERL_ARGS_ASSERT_GROK_NUMBER    \
1008         assert(pv)
1009 PERL_CALLCONV int       Perl_grok_number_flags(pTHX_ const char *pv, STRLEN len, UV *valuep, U32 flags);
1010 #define PERL_ARGS_ASSERT_GROK_NUMBER_FLAGS      \
1011         assert(pv)
1012 PERL_CALLCONV bool      Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send)
1013                         __attribute__warn_unused_result__;
1014 #define PERL_ARGS_ASSERT_GROK_NUMERIC_RADIX     \
1015         assert(sp); assert(send)
1016
1017 PERL_CALLCONV UV        Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result);
1018 #define PERL_ARGS_ASSERT_GROK_OCT       \
1019         assert(start); assert(len_p); assert(flags)
1020 #ifndef NO_MATHOMS
1021 PERL_CALLCONV GV*       Perl_gv_AVadd(pTHX_ GV *gv);
1022 #endif
1023 #ifndef NO_MATHOMS
1024 PERL_CALLCONV GV*       Perl_gv_HVadd(pTHX_ GV *gv);
1025 #endif
1026 #ifndef NO_MATHOMS
1027 PERL_CALLCONV GV*       Perl_gv_IOadd(pTHX_ GV* gv);
1028 #endif
1029 PERL_CALLCONV GV*       Perl_gv_add_by_type(pTHX_ GV *gv, svtype type);
1030 /* PERL_CALLCONV GV*    gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method)
1031                         __attribute__warn_unused_result__; */
1032
1033 PERL_CALLCONV GV*       Perl_gv_autoload_pv(pTHX_ HV* stash, const char* namepv, U32 flags)
1034                         __attribute__warn_unused_result__;
1035 #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PV \
1036         assert(namepv)
1037
1038 PERL_CALLCONV GV*       Perl_gv_autoload_pvn(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags)
1039                         __attribute__warn_unused_result__;
1040 #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PVN        \
1041         assert(name)
1042
1043 PERL_CALLCONV GV*       Perl_gv_autoload_sv(pTHX_ HV* stash, SV* namesv, U32 flags)
1044                         __attribute__warn_unused_result__;
1045 #define PERL_ARGS_ASSERT_GV_AUTOLOAD_SV \
1046         assert(namesv)
1047
1048 PERL_CALLCONV void      Perl_gv_check(pTHX_ HV* stash);
1049 #define PERL_ARGS_ASSERT_GV_CHECK       \
1050         assert(stash)
1051 PERL_CALLCONV SV*       Perl_gv_const_sv(pTHX_ GV* gv)
1052                         __attribute__warn_unused_result__;
1053 #define PERL_ARGS_ASSERT_GV_CONST_SV    \
1054         assert(gv)
1055
1056 PERL_CALLCONV void      Perl_gv_dump(pTHX_ GV* gv);
1057 PERL_CALLCONV void      Perl_gv_efullname(pTHX_ SV* sv, const GV* gv);
1058 #define PERL_ARGS_ASSERT_GV_EFULLNAME   \
1059         assert(sv); assert(gv)
1060 #ifndef NO_MATHOMS
1061 PERL_CALLCONV void      Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix);
1062 #define PERL_ARGS_ASSERT_GV_EFULLNAME3  \
1063         assert(sv); assert(gv)
1064 #endif
1065 PERL_CALLCONV void      Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain);
1066 #define PERL_ARGS_ASSERT_GV_EFULLNAME4  \
1067         assert(sv); assert(gv)
1068 PERL_CALLCONV GV*       Perl_gv_fetchfile(pTHX_ const char* name);
1069 #define PERL_ARGS_ASSERT_GV_FETCHFILE   \
1070         assert(name)
1071 PERL_CALLCONV GV*       Perl_gv_fetchfile_flags(pTHX_ const char *const name, const STRLEN len, const U32 flags);
1072 #define PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS     \
1073         assert(name)
1074 /* PERL_CALLCONV GV*    gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */
1075 /* PERL_CALLCONV GV*    gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */
1076 PERL_CALLCONV GV*       Perl_gv_fetchmeth_pv(pTHX_ HV* stash, const char* name, I32 level, U32 flags);
1077 #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV        \
1078         assert(name)
1079 PERL_CALLCONV GV*       Perl_gv_fetchmeth_pv_autoload(pTHX_ HV* stash, const char* name, I32 level, U32 flags);
1080 #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV_AUTOLOAD       \
1081         assert(name)
1082 PERL_CALLCONV GV*       Perl_gv_fetchmeth_pvn(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags);
1083 #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN       \
1084         assert(name)
1085 PERL_CALLCONV GV*       Perl_gv_fetchmeth_pvn_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags);
1086 #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN_AUTOLOAD      \
1087         assert(name)
1088 PERL_CALLCONV GV*       Perl_gv_fetchmeth_sv(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags);
1089 #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV        \
1090         assert(namesv)
1091 PERL_CALLCONV GV*       Perl_gv_fetchmeth_sv_autoload(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags);
1092 #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV_AUTOLOAD       \
1093         assert(namesv)
1094 #ifndef NO_MATHOMS
1095 PERL_CALLCONV GV*       Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name);
1096 #define PERL_ARGS_ASSERT_GV_FETCHMETHOD \
1097         assert(stash); assert(name)
1098 #endif
1099 PERL_CALLCONV GV*       Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload);
1100 #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD        \
1101         assert(stash); assert(name)
1102 PERL_CALLCONV GV*       Perl_gv_fetchmethod_pv_flags(pTHX_ HV* stash, const char* name, U32 flags);
1103 #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PV_FLAGS        \
1104         assert(stash); assert(name)
1105 PERL_CALLCONV GV*       Perl_gv_fetchmethod_pvn_flags(pTHX_ HV* stash, const char* name, const STRLEN len, U32 flags);
1106 #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PVN_FLAGS       \
1107         assert(stash); assert(name)
1108 PERL_CALLCONV GV*       Perl_gv_fetchmethod_sv_flags(pTHX_ HV* stash, SV* namesv, U32 flags);
1109 #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_SV_FLAGS        \
1110         assert(stash); assert(namesv)
1111 PERL_CALLCONV GV*       Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type);
1112 #define PERL_ARGS_ASSERT_GV_FETCHPV     \
1113         assert(nambeg)
1114 PERL_CALLCONV GV*       Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, const svtype sv_type);
1115 #define PERL_ARGS_ASSERT_GV_FETCHPVN_FLAGS      \
1116         assert(name)
1117 PERL_CALLCONV GV*       Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, const svtype sv_type);
1118 #define PERL_ARGS_ASSERT_GV_FETCHSV     \
1119         assert(name)
1120 PERL_CALLCONV void      Perl_gv_fullname(pTHX_ SV* sv, const GV* gv);
1121 #define PERL_ARGS_ASSERT_GV_FULLNAME    \
1122         assert(sv); assert(gv)
1123 #ifndef NO_MATHOMS
1124 PERL_CALLCONV void      Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix);
1125 #define PERL_ARGS_ASSERT_GV_FULLNAME3   \
1126         assert(sv); assert(gv)
1127 #endif
1128 PERL_CALLCONV void      Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain);
1129 #define PERL_ARGS_ASSERT_GV_FULLNAME4   \
1130         assert(sv); assert(gv)
1131 PERL_CALLCONV CV*       Perl_gv_handler(pTHX_ HV* stash, I32 id)
1132                         __attribute__warn_unused_result__;
1133
1134 /* PERL_CALLCONV void   gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi); */
1135 PERL_CALLCONV void      Perl_gv_init_pv(pTHX_ GV* gv, HV* stash, const char* name, U32 flags);
1136 #define PERL_ARGS_ASSERT_GV_INIT_PV     \
1137         assert(gv); assert(name)
1138 PERL_CALLCONV void      Perl_gv_init_pvn(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, U32 flags);
1139 #define PERL_ARGS_ASSERT_GV_INIT_PVN    \
1140         assert(gv); assert(name)
1141 PERL_CALLCONV void      Perl_gv_init_sv(pTHX_ GV* gv, HV* stash, SV* namesv, U32 flags);
1142 #define PERL_ARGS_ASSERT_GV_INIT_SV     \
1143         assert(gv); assert(namesv)
1144 PERL_CALLCONV void      Perl_gv_name_set(pTHX_ GV* gv, const char *name, U32 len, U32 flags);
1145 #define PERL_ARGS_ASSERT_GV_NAME_SET    \
1146         assert(gv); assert(name)
1147 PERL_CALLCONV GV *      Perl_gv_override(pTHX_ const char * const name, const STRLEN len);
1148 #define PERL_ARGS_ASSERT_GV_OVERRIDE    \
1149         assert(name)
1150 PERL_CALLCONV void      Perl_gv_setref(pTHX_ SV *const dstr, SV *const sstr);
1151 #define PERL_ARGS_ASSERT_GV_SETREF      \
1152         assert(dstr); assert(sstr)
1153 PERL_CALLCONV HV*       Perl_gv_stashpv(pTHX_ const char* name, I32 flags);
1154 #define PERL_ARGS_ASSERT_GV_STASHPV     \
1155         assert(name)
1156 PERL_CALLCONV HV*       Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 flags);
1157 #define PERL_ARGS_ASSERT_GV_STASHPVN    \
1158         assert(name)
1159 PERL_CALLCONV HV*       Perl_gv_stashsv(pTHX_ SV* sv, I32 flags);
1160 #define PERL_ARGS_ASSERT_GV_STASHSV     \
1161         assert(sv)
1162 PERL_CALLCONV void      Perl_gv_try_downgrade(pTHX_ GV* gv);
1163 #define PERL_ARGS_ASSERT_GV_TRY_DOWNGRADE       \
1164         assert(gv)
1165 PERL_CALLCONV AV**      Perl_hv_backreferences_p(pTHX_ HV *hv);
1166 #define PERL_ARGS_ASSERT_HV_BACKREFERENCES_P    \
1167         assert(hv)
1168 PERL_CALLCONV SV*       Perl_hv_bucket_ratio(pTHX_ HV *hv)
1169                         __attribute__warn_unused_result__;
1170 #define PERL_ARGS_ASSERT_HV_BUCKET_RATIO        \
1171         assert(hv)
1172
1173 PERL_CALLCONV void      Perl_hv_clear(pTHX_ HV *hv);
1174 PERL_CALLCONV void      Perl_hv_clear_placeholders(pTHX_ HV *hv);
1175 #define PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS  \
1176         assert(hv)
1177 PERL_CALLCONV void*     Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char* key, STRLEN klen, int flags, int action, SV *val, U32 hash);
1178 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);
1179 #define PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN      \
1180         assert(key)
1181 PERL_CALLCONV HV *      Perl_hv_copy_hints_hv(pTHX_ HV *const ohv)
1182                         __attribute__warn_unused_result__;
1183
1184 PERL_CALLCONV void      Perl_hv_delayfree_ent(pTHX_ HV *hv, HE *entry);
1185 #define PERL_ARGS_ASSERT_HV_DELAYFREE_ENT       \
1186         assert(hv)
1187 #ifndef NO_MATHOMS
1188 PERL_CALLCONV SV*       Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen, I32 flags);
1189 #define PERL_ARGS_ASSERT_HV_DELETE      \
1190         assert(key)
1191 #endif
1192 #ifndef NO_MATHOMS
1193 PERL_CALLCONV SV*       Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash);
1194 #define PERL_ARGS_ASSERT_HV_DELETE_ENT  \
1195         assert(keysv)
1196 #endif
1197 PERL_CALLCONV HE**      Perl_hv_eiter_p(pTHX_ HV *hv)
1198                         __attribute__warn_unused_result__;
1199 #define PERL_ARGS_ASSERT_HV_EITER_P     \
1200         assert(hv)
1201
1202 PERL_CALLCONV void      Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter);
1203 #define PERL_ARGS_ASSERT_HV_EITER_SET   \
1204         assert(hv)
1205 PERL_CALLCONV void      Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len, U32 flags);
1206 #define PERL_ARGS_ASSERT_HV_ENAME_ADD   \
1207         assert(hv); assert(name)
1208 PERL_CALLCONV void      Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len, U32 flags);
1209 #define PERL_ARGS_ASSERT_HV_ENAME_DELETE        \
1210         assert(hv); assert(name)
1211 #ifndef NO_MATHOMS
1212 PERL_CALLCONV bool      Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen)
1213                         __attribute__warn_unused_result__;
1214 #define PERL_ARGS_ASSERT_HV_EXISTS      \
1215         assert(key)
1216 #endif
1217
1218 #ifndef NO_MATHOMS
1219 PERL_CALLCONV bool      Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash)
1220                         __attribute__warn_unused_result__;
1221 #define PERL_ARGS_ASSERT_HV_EXISTS_ENT  \
1222         assert(keysv)
1223 #endif
1224
1225 #ifndef NO_MATHOMS
1226 PERL_CALLCONV SV**      Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen, I32 lval);
1227 #define PERL_ARGS_ASSERT_HV_FETCH       \
1228         assert(key)
1229 #endif
1230 #ifndef NO_MATHOMS
1231 PERL_CALLCONV HE*       Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash);
1232 #define PERL_ARGS_ASSERT_HV_FETCH_ENT   \
1233         assert(keysv)
1234 #endif
1235 PERL_CALLCONV STRLEN    Perl_hv_fill(pTHX_ HV *const hv);
1236 #define PERL_ARGS_ASSERT_HV_FILL        \
1237         assert(hv)
1238 PERL_CALLCONV void      Perl_hv_free_ent(pTHX_ HV *hv, HE *entry);
1239 #define PERL_ARGS_ASSERT_HV_FREE_ENT    \
1240         assert(hv)
1241 PERL_CALLCONV I32       Perl_hv_iterinit(pTHX_ HV *hv);
1242 #define PERL_ARGS_ASSERT_HV_ITERINIT    \
1243         assert(hv)
1244 PERL_CALLCONV char*     Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen)
1245                         __attribute__warn_unused_result__;
1246 #define PERL_ARGS_ASSERT_HV_ITERKEY     \
1247         assert(entry); assert(retlen)
1248
1249 PERL_CALLCONV SV*       Perl_hv_iterkeysv(pTHX_ HE* entry)
1250                         __attribute__warn_unused_result__;
1251 #define PERL_ARGS_ASSERT_HV_ITERKEYSV   \
1252         assert(entry)
1253
1254 #ifndef NO_MATHOMS
1255 PERL_CALLCONV HE*       Perl_hv_iternext(pTHX_ HV *hv)
1256                         __attribute__warn_unused_result__;
1257 #define PERL_ARGS_ASSERT_HV_ITERNEXT    \
1258         assert(hv)
1259 #endif
1260
1261 PERL_CALLCONV HE*       Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
1262                         __attribute__warn_unused_result__;
1263 #define PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS      \
1264         assert(hv)
1265
1266 PERL_CALLCONV SV*       Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
1267                         __attribute__warn_unused_result__;
1268 #define PERL_ARGS_ASSERT_HV_ITERNEXTSV  \
1269         assert(hv); assert(key); assert(retlen)
1270
1271 PERL_CALLCONV SV*       Perl_hv_iterval(pTHX_ HV *hv, HE *entry)
1272                         __attribute__warn_unused_result__;
1273 #define PERL_ARGS_ASSERT_HV_ITERVAL     \
1274         assert(hv); assert(entry)
1275
1276 PERL_CALLCONV void      Perl_hv_ksplit(pTHX_ HV *hv, IV newmax);
1277 #define PERL_ARGS_ASSERT_HV_KSPLIT      \
1278         assert(hv)
1279 #ifndef NO_MATHOMS
1280 PERL_CALLCONV void      Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how);
1281 #define PERL_ARGS_ASSERT_HV_MAGIC       \
1282         assert(hv)
1283 #endif
1284 PERL_CALLCONV void      Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags);
1285 #define PERL_ARGS_ASSERT_HV_NAME_SET    \
1286         assert(hv)
1287 PERL_CALLCONV I32       Perl_hv_placeholders_get(pTHX_ const HV *hv)
1288                         __attribute__warn_unused_result__;
1289 #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET    \
1290         assert(hv)
1291
1292 PERL_CALLCONV SSize_t*  Perl_hv_placeholders_p(pTHX_ HV *hv)
1293                         __attribute__warn_unused_result__;
1294 #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P      \
1295         assert(hv)
1296
1297 PERL_CALLCONV void      Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph);
1298 #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET    \
1299         assert(hv)
1300 PERL_CALLCONV void      Perl_hv_pushkv(pTHX_ HV *hv, U32 flags);
1301 #define PERL_ARGS_ASSERT_HV_PUSHKV      \
1302         assert(hv)
1303 PERL_CALLCONV void      Perl_hv_rand_set(pTHX_ HV *hv, U32 new_xhv_rand);
1304 #define PERL_ARGS_ASSERT_HV_RAND_SET    \
1305         assert(hv)
1306 PERL_CALLCONV I32*      Perl_hv_riter_p(pTHX_ HV *hv)
1307                         __attribute__warn_unused_result__;
1308 #define PERL_ARGS_ASSERT_HV_RITER_P     \
1309         assert(hv)
1310
1311 PERL_CALLCONV void      Perl_hv_riter_set(pTHX_ HV *hv, I32 riter);
1312 #define PERL_ARGS_ASSERT_HV_RITER_SET   \
1313         assert(hv)
1314 PERL_CALLCONV SV*       Perl_hv_scalar(pTHX_ HV *hv)
1315                         __attribute__warn_unused_result__;
1316 #define PERL_ARGS_ASSERT_HV_SCALAR      \
1317         assert(hv)
1318
1319 #ifndef NO_MATHOMS
1320 PERL_CALLCONV SV**      Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash);
1321 #endif
1322 #ifndef NO_MATHOMS
1323 PERL_CALLCONV HE*       Perl_hv_store_ent(pTHX_ HV *hv, SV *key, SV *val, U32 hash);
1324 #endif
1325 #ifndef NO_MATHOMS
1326 PERL_CALLCONV SV**      Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash, int flags);
1327 #endif
1328 /* PERL_CALLCONV void   hv_undef(pTHX_ HV *hv); */
1329 PERL_CALLCONV void      Perl_hv_undef_flags(pTHX_ HV *hv, U32 flags);
1330 /* PERL_CALLCONV I32    ibcmp(pTHX_ const char* a, const char* b, I32 len)
1331                         __attribute__warn_unused_result__
1332                         __attribute__pure__; */
1333
1334 /* PERL_CALLCONV I32    ibcmp_locale(pTHX_ const char* a, const char* b, I32 len)
1335                         __attribute__warn_unused_result__
1336                         __attribute__pure__; */
1337
1338 /* PERL_CALLCONV I32    ibcmp_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */
1339 PERL_CALLCONV void      Perl_init_argv_symbols(pTHX_ int argc, char **argv);
1340 #define PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS      \
1341         assert(argv)
1342 PERL_CALLCONV void      Perl_init_constants(pTHX);
1343 PERL_CALLCONV void      Perl_init_dbargs(pTHX);
1344 PERL_CALLCONV void      Perl_init_debugger(pTHX);
1345 PERL_CALLCONV int       Perl_init_i18nl10n(pTHX_ int printwarn);
1346 PERL_CALLCONV int       Perl_init_i18nl14n(pTHX_ int printwarn);
1347 PERL_CALLCONV void      Perl_init_stacks(pTHX);
1348 PERL_CALLCONV void      Perl_init_tm(pTHX_ struct tm *ptm);
1349 #define PERL_ARGS_ASSERT_INIT_TM        \
1350         assert(ptm)
1351 #ifndef NO_MATHOMS
1352 PERL_CALLCONV char*     Perl_instr(const char* big, const char* little)
1353                         __attribute__warn_unused_result__
1354                         __attribute__pure__;
1355 #define PERL_ARGS_ASSERT_INSTR  \
1356         assert(big); assert(little)
1357 #endif
1358
1359 PERL_CALLCONV U32       Perl_intro_my(pTHX);
1360 PERL_CALLCONV OP*       Perl_invert(pTHX_ OP* cmd)
1361                         __attribute__warn_unused_result__;
1362
1363 PERL_CALLCONV bool      Perl_io_close(pTHX_ IO* io, GV *gv, bool not_implicit, bool warn_on_fail);
1364 #define PERL_ARGS_ASSERT_IO_CLOSE       \
1365         assert(io)
1366 PERL_CALLCONV bool      Perl_isALNUM_lazy(pTHX_ const char* p)
1367                         __attribute__deprecated__
1368                         __attribute__warn_unused_result__;
1369 #define PERL_ARGS_ASSERT_ISALNUM_LAZY   \
1370         assert(p)
1371
1372 PERL_CALLCONV bool      Perl_isIDFIRST_lazy(pTHX_ const char* p)
1373                         __attribute__deprecated__
1374                         __attribute__warn_unused_result__;
1375 #define PERL_ARGS_ASSERT_ISIDFIRST_LAZY \
1376         assert(p)
1377
1378 /* PERL_CALLCONV bool   Perl_is_ascii_string(const U8* const s, const STRLEN len)
1379                         __attribute__warn_unused_result__
1380                         __attribute__pure__; */
1381
1382 #ifndef PERL_NO_INLINE_FUNCTIONS
1383 PERL_STATIC_INLINE bool S_is_c9strict_utf8_string(const U8 *s, const STRLEN len)
1384                         __attribute__warn_unused_result__;
1385 #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING        \
1386         assert(s)
1387 #endif
1388
1389 /* PERL_CALLCONV bool   is_c9strict_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep); */
1390 #ifndef PERL_NO_INLINE_FUNCTIONS
1391 PERL_STATIC_INLINE bool S_is_c9strict_utf8_string_loclen(const U8 *s, const STRLEN len, const U8 **ep, STRLEN *el);
1392 #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING_LOCLEN \
1393         assert(s)
1394 #endif
1395 /* PERL_CALLCONV bool   Perl_is_invariant_string(const U8* const s, const STRLEN len)
1396                         __attribute__warn_unused_result__
1397                         __attribute__pure__; */
1398
1399 PERL_CALLCONV I32       Perl_is_lvalue_sub(pTHX)
1400                         __attribute__warn_unused_result__;
1401
1402 #ifndef PERL_NO_INLINE_FUNCTIONS
1403 PERL_STATIC_INLINE bool S_is_safe_syscall(pTHX_ const char *pv, STRLEN len, const char *what, const char *op_name)
1404                         __attribute__warn_unused_result__;
1405 #define PERL_ARGS_ASSERT_IS_SAFE_SYSCALL        \
1406         assert(pv); assert(what); assert(op_name)
1407 #endif
1408
1409 #ifndef PERL_NO_INLINE_FUNCTIONS
1410 PERL_STATIC_INLINE bool S_is_strict_utf8_string(const U8 *s, const STRLEN len)
1411                         __attribute__warn_unused_result__;
1412 #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING  \
1413         assert(s)
1414 #endif
1415
1416 /* PERL_CALLCONV bool   is_strict_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep); */
1417 #ifndef PERL_NO_INLINE_FUNCTIONS
1418 PERL_STATIC_INLINE bool S_is_strict_utf8_string_loclen(const U8 *s, const STRLEN len, const U8 **ep, STRLEN *el);
1419 #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING_LOCLEN   \
1420         assert(s)
1421 #endif
1422 PERL_CALLCONV bool      Perl_is_uni_alnum(pTHX_ UV c)
1423                         __attribute__deprecated__
1424                         __attribute__warn_unused_result__;
1425
1426 PERL_CALLCONV bool      Perl_is_uni_alnum_lc(pTHX_ UV c)
1427                         __attribute__deprecated__
1428                         __attribute__warn_unused_result__;
1429
1430 PERL_CALLCONV bool      Perl_is_uni_alnumc(pTHX_ UV c)
1431                         __attribute__deprecated__
1432                         __attribute__warn_unused_result__;
1433
1434 PERL_CALLCONV bool      Perl_is_uni_alnumc_lc(pTHX_ UV c)
1435                         __attribute__deprecated__
1436                         __attribute__warn_unused_result__;
1437
1438 PERL_CALLCONV bool      Perl_is_uni_alpha(pTHX_ UV c)
1439                         __attribute__deprecated__
1440                         __attribute__warn_unused_result__;
1441
1442 PERL_CALLCONV bool      Perl_is_uni_alpha_lc(pTHX_ UV c)
1443                         __attribute__deprecated__
1444                         __attribute__warn_unused_result__;
1445
1446 PERL_CALLCONV bool      Perl_is_uni_ascii(pTHX_ UV c)
1447                         __attribute__deprecated__
1448                         __attribute__warn_unused_result__
1449                         __attribute__pure__;
1450
1451 PERL_CALLCONV bool      Perl_is_uni_ascii_lc(pTHX_ UV c)
1452                         __attribute__deprecated__
1453                         __attribute__warn_unused_result__
1454                         __attribute__pure__;
1455
1456 PERL_CALLCONV bool      Perl_is_uni_blank(pTHX_ UV c)
1457                         __attribute__deprecated__
1458                         __attribute__warn_unused_result__
1459                         __attribute__pure__;
1460
1461 PERL_CALLCONV bool      Perl_is_uni_blank_lc(pTHX_ UV c)
1462                         __attribute__deprecated__
1463                         __attribute__warn_unused_result__
1464                         __attribute__pure__;
1465
1466 PERL_CALLCONV bool      Perl_is_uni_cntrl(pTHX_ UV c)
1467                         __attribute__deprecated__
1468                         __attribute__warn_unused_result__
1469                         __attribute__pure__;
1470
1471 PERL_CALLCONV bool      Perl_is_uni_cntrl_lc(pTHX_ UV c)
1472                         __attribute__deprecated__
1473                         __attribute__warn_unused_result__
1474                         __attribute__pure__;
1475
1476 PERL_CALLCONV bool      Perl_is_uni_digit(pTHX_ UV c)
1477                         __attribute__deprecated__
1478                         __attribute__warn_unused_result__;
1479
1480 PERL_CALLCONV bool      Perl_is_uni_digit_lc(pTHX_ UV c)
1481                         __attribute__deprecated__
1482                         __attribute__warn_unused_result__;
1483
1484 PERL_CALLCONV bool      Perl_is_uni_graph(pTHX_ UV c)
1485                         __attribute__deprecated__
1486                         __attribute__warn_unused_result__;
1487
1488 PERL_CALLCONV bool      Perl_is_uni_graph_lc(pTHX_ UV c)
1489                         __attribute__deprecated__
1490                         __attribute__warn_unused_result__;
1491
1492 PERL_CALLCONV bool      Perl_is_uni_idfirst(pTHX_ UV c)
1493                         __attribute__deprecated__
1494                         __attribute__warn_unused_result__;
1495
1496 PERL_CALLCONV bool      Perl_is_uni_idfirst_lc(pTHX_ UV c)
1497                         __attribute__deprecated__
1498                         __attribute__warn_unused_result__;
1499
1500 PERL_CALLCONV bool      Perl_is_uni_lower(pTHX_ UV c)
1501                         __attribute__deprecated__
1502                         __attribute__warn_unused_result__;
1503
1504 PERL_CALLCONV bool      Perl_is_uni_lower_lc(pTHX_ UV c)
1505                         __attribute__deprecated__
1506                         __attribute__warn_unused_result__;
1507
1508 PERL_CALLCONV bool      Perl_is_uni_print(pTHX_ UV c)
1509                         __attribute__deprecated__
1510                         __attribute__warn_unused_result__;
1511
1512 PERL_CALLCONV bool      Perl_is_uni_print_lc(pTHX_ UV c)
1513                         __attribute__deprecated__
1514                         __attribute__warn_unused_result__;
1515
1516 PERL_CALLCONV bool      Perl_is_uni_punct(pTHX_ UV c)
1517                         __attribute__deprecated__
1518                         __attribute__warn_unused_result__;
1519
1520 PERL_CALLCONV bool      Perl_is_uni_punct_lc(pTHX_ UV c)
1521                         __attribute__deprecated__
1522                         __attribute__warn_unused_result__;
1523
1524 PERL_CALLCONV bool      Perl_is_uni_space(pTHX_ UV c)
1525                         __attribute__deprecated__
1526                         __attribute__warn_unused_result__
1527                         __attribute__pure__;
1528
1529 PERL_CALLCONV bool      Perl_is_uni_space_lc(pTHX_ UV c)
1530                         __attribute__deprecated__
1531                         __attribute__warn_unused_result__
1532                         __attribute__pure__;
1533
1534 PERL_CALLCONV bool      Perl_is_uni_upper(pTHX_ UV c)
1535                         __attribute__deprecated__
1536                         __attribute__warn_unused_result__;
1537
1538 PERL_CALLCONV bool      Perl_is_uni_upper_lc(pTHX_ UV c)
1539                         __attribute__deprecated__
1540                         __attribute__warn_unused_result__;
1541
1542 PERL_CALLCONV bool      Perl_is_uni_xdigit(pTHX_ UV c)
1543                         __attribute__deprecated__
1544                         __attribute__warn_unused_result__
1545                         __attribute__pure__;
1546
1547 PERL_CALLCONV bool      Perl_is_uni_xdigit_lc(pTHX_ UV c)
1548                         __attribute__deprecated__
1549                         __attribute__warn_unused_result__
1550                         __attribute__pure__;
1551
1552 PERL_CALLCONV bool      Perl_is_utf8_alnum(pTHX_ const U8 *p)
1553                         __attribute__deprecated__
1554                         __attribute__warn_unused_result__;
1555 #define PERL_ARGS_ASSERT_IS_UTF8_ALNUM  \
1556         assert(p)
1557
1558 PERL_CALLCONV bool      Perl_is_utf8_alnumc(pTHX_ const U8 *p)
1559                         __attribute__deprecated__
1560                         __attribute__warn_unused_result__;
1561 #define PERL_ARGS_ASSERT_IS_UTF8_ALNUMC \
1562         assert(p)
1563
1564 PERL_CALLCONV bool      Perl_is_utf8_alpha(pTHX_ const U8 *p)
1565                         __attribute__deprecated__
1566                         __attribute__warn_unused_result__;
1567 #define PERL_ARGS_ASSERT_IS_UTF8_ALPHA  \
1568         assert(p)
1569
1570 PERL_CALLCONV bool      Perl_is_utf8_ascii(pTHX_ const U8 *p)
1571                         __attribute__deprecated__
1572                         __attribute__warn_unused_result__;
1573 #define PERL_ARGS_ASSERT_IS_UTF8_ASCII  \
1574         assert(p)
1575
1576 PERL_CALLCONV bool      Perl_is_utf8_blank(pTHX_ const U8 *p)
1577                         __attribute__deprecated__
1578                         __attribute__warn_unused_result__;
1579 #define PERL_ARGS_ASSERT_IS_UTF8_BLANK  \
1580         assert(p)
1581
1582 PERL_CALLCONV STRLEN    Perl_is_utf8_char(const U8 *s)
1583                         __attribute__deprecated__;
1584 #define PERL_ARGS_ASSERT_IS_UTF8_CHAR   \
1585         assert(s)
1586
1587 #ifndef NO_MATHOMS
1588 PERL_CALLCONV STRLEN    Perl_is_utf8_char_buf(const U8 *buf, const U8 *buf_end);
1589 #define PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF       \
1590         assert(buf); assert(buf_end)
1591 #endif
1592 PERL_CALLCONV bool      Perl_is_utf8_cntrl(pTHX_ const U8 *p)
1593                         __attribute__deprecated__
1594                         __attribute__warn_unused_result__;
1595 #define PERL_ARGS_ASSERT_IS_UTF8_CNTRL  \
1596         assert(p)
1597
1598 PERL_CALLCONV bool      Perl_is_utf8_digit(pTHX_ const U8 *p)
1599                         __attribute__deprecated__
1600                         __attribute__warn_unused_result__;
1601 #define PERL_ARGS_ASSERT_IS_UTF8_DIGIT  \
1602         assert(p)
1603
1604 /* PERL_CALLCONV bool   is_utf8_fixed_width_buf_flags(const U8 * const s, const STRLEN len, const U32 flags); */
1605 /* PERL_CALLCONV bool   is_utf8_fixed_width_buf_loc_flags(const U8 * const s, const STRLEN len, const U8 **ep, const U32 flags); */
1606 #ifndef PERL_NO_INLINE_FUNCTIONS
1607 PERL_STATIC_INLINE bool S_is_utf8_fixed_width_buf_loclen_flags(const U8 * const s, const STRLEN len, const U8 **ep, STRLEN *el, const U32 flags);
1608 #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_LOCLEN_FLAGS   \
1609         assert(s)
1610 #endif
1611 PERL_CALLCONV bool      Perl_is_utf8_graph(pTHX_ const U8 *p)
1612                         __attribute__deprecated__
1613                         __attribute__warn_unused_result__;
1614 #define PERL_ARGS_ASSERT_IS_UTF8_GRAPH  \
1615         assert(p)
1616
1617 PERL_CALLCONV bool      Perl_is_utf8_idcont(pTHX_ const U8 *p)
1618                         __attribute__deprecated__
1619                         __attribute__warn_unused_result__;
1620 #define PERL_ARGS_ASSERT_IS_UTF8_IDCONT \
1621         assert(p)
1622
1623 PERL_CALLCONV bool      Perl_is_utf8_idfirst(pTHX_ const U8 *p)
1624                         __attribute__deprecated__
1625                         __attribute__warn_unused_result__;
1626 #define PERL_ARGS_ASSERT_IS_UTF8_IDFIRST        \
1627         assert(p)
1628
1629 /* PERL_CALLCONV bool   is_utf8_invariant_string(const U8* const s, STRLEN const len)
1630                         __attribute__warn_unused_result__; */
1631
1632 #ifndef PERL_NO_INLINE_FUNCTIONS
1633 PERL_STATIC_INLINE bool S_is_utf8_invariant_string_loc(const U8* const s, STRLEN const len, const U8 ** ep)
1634                         __attribute__warn_unused_result__;
1635 #define PERL_ARGS_ASSERT_IS_UTF8_INVARIANT_STRING_LOC   \
1636         assert(s)
1637 #endif
1638
1639 PERL_CALLCONV bool      Perl_is_utf8_lower(pTHX_ const U8 *p)
1640                         __attribute__deprecated__
1641                         __attribute__warn_unused_result__;
1642 #define PERL_ARGS_ASSERT_IS_UTF8_LOWER  \
1643         assert(p)
1644
1645 PERL_CALLCONV bool      Perl_is_utf8_mark(pTHX_ const U8 *p)
1646                         __attribute__deprecated__
1647                         __attribute__warn_unused_result__;
1648 #define PERL_ARGS_ASSERT_IS_UTF8_MARK   \
1649         assert(p)
1650
1651 PERL_CALLCONV bool      Perl_is_utf8_perl_space(pTHX_ const U8 *p)
1652                         __attribute__deprecated__
1653                         __attribute__warn_unused_result__;
1654 #define PERL_ARGS_ASSERT_IS_UTF8_PERL_SPACE     \
1655         assert(p)
1656
1657 PERL_CALLCONV bool      Perl_is_utf8_perl_word(pTHX_ const U8 *p)
1658                         __attribute__deprecated__
1659                         __attribute__warn_unused_result__;
1660 #define PERL_ARGS_ASSERT_IS_UTF8_PERL_WORD      \
1661         assert(p)
1662
1663 PERL_CALLCONV bool      Perl_is_utf8_posix_digit(pTHX_ const U8 *p)
1664                         __attribute__deprecated__
1665                         __attribute__warn_unused_result__;
1666 #define PERL_ARGS_ASSERT_IS_UTF8_POSIX_DIGIT    \
1667         assert(p)
1668
1669 PERL_CALLCONV bool      Perl_is_utf8_print(pTHX_ const U8 *p)
1670                         __attribute__deprecated__
1671                         __attribute__warn_unused_result__;
1672 #define PERL_ARGS_ASSERT_IS_UTF8_PRINT  \
1673         assert(p)
1674
1675 PERL_CALLCONV bool      Perl_is_utf8_punct(pTHX_ const U8 *p)
1676                         __attribute__deprecated__
1677                         __attribute__warn_unused_result__;
1678 #define PERL_ARGS_ASSERT_IS_UTF8_PUNCT  \
1679         assert(p)
1680
1681 PERL_CALLCONV bool      Perl_is_utf8_space(pTHX_ const U8 *p)
1682                         __attribute__deprecated__
1683                         __attribute__warn_unused_result__;
1684 #define PERL_ARGS_ASSERT_IS_UTF8_SPACE  \
1685         assert(p)
1686
1687 #ifndef PERL_NO_INLINE_FUNCTIONS
1688 PERL_STATIC_INLINE bool Perl_is_utf8_string(const U8 *s, const STRLEN len)
1689                         __attribute__warn_unused_result__;
1690 #define PERL_ARGS_ASSERT_IS_UTF8_STRING \
1691         assert(s)
1692 #endif
1693
1694 #ifndef PERL_NO_INLINE_FUNCTIONS
1695 PERL_STATIC_INLINE bool S_is_utf8_string_flags(const U8 *s, const STRLEN len, const U32 flags)
1696                         __attribute__warn_unused_result__;
1697 #define PERL_ARGS_ASSERT_IS_UTF8_STRING_FLAGS   \
1698         assert(s)
1699 #endif
1700
1701 #ifndef NO_MATHOMS
1702 PERL_CALLCONV bool      Perl_is_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep);
1703 #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC     \
1704         assert(s); assert(ep)
1705 #endif
1706 /* PERL_CALLCONV bool   is_utf8_string_loc_flags(const U8 *s, const STRLEN len, const U8 **ep, const U32 flags); */
1707 #ifndef PERL_NO_INLINE_FUNCTIONS
1708 PERL_STATIC_INLINE bool Perl_is_utf8_string_loclen(const U8 *s, const STRLEN len, const U8 **ep, STRLEN *el);
1709 #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN  \
1710         assert(s)
1711 #endif
1712 #ifndef PERL_NO_INLINE_FUNCTIONS
1713 PERL_STATIC_INLINE bool S_is_utf8_string_loclen_flags(const U8 *s, const STRLEN len, const U8 **ep, STRLEN *el, const U32 flags);
1714 #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN_FLAGS    \
1715         assert(s)
1716 #endif
1717 PERL_CALLCONV bool      Perl_is_utf8_upper(pTHX_ const U8 *p)
1718                         __attribute__deprecated__
1719                         __attribute__warn_unused_result__;
1720 #define PERL_ARGS_ASSERT_IS_UTF8_UPPER  \
1721         assert(p)
1722
1723 /* PERL_CALLCONV bool   is_utf8_valid_partial_char(const U8 * const s, const U8 * const e)
1724                         __attribute__warn_unused_result__
1725                         __attribute__pure__; */
1726
1727 #ifndef PERL_NO_INLINE_FUNCTIONS
1728 PERL_STATIC_INLINE bool S_is_utf8_valid_partial_char_flags(const U8 * const s, const U8 * const e, const U32 flags)
1729                         __attribute__warn_unused_result__;
1730 #define PERL_ARGS_ASSERT_IS_UTF8_VALID_PARTIAL_CHAR_FLAGS       \
1731         assert(s); assert(e)
1732 #endif
1733
1734 PERL_CALLCONV bool      Perl_is_utf8_xdigit(pTHX_ const U8 *p)
1735                         __attribute__deprecated__
1736                         __attribute__warn_unused_result__;
1737 #define PERL_ARGS_ASSERT_IS_UTF8_XDIGIT \
1738         assert(p)
1739
1740 PERL_CALLCONV bool      Perl_is_utf8_xidcont(pTHX_ const U8 *p)
1741                         __attribute__deprecated__
1742                         __attribute__warn_unused_result__;
1743 #define PERL_ARGS_ASSERT_IS_UTF8_XIDCONT        \
1744         assert(p)
1745
1746 PERL_CALLCONV bool      Perl_is_utf8_xidfirst(pTHX_ const U8 *p)
1747                         __attribute__deprecated__
1748                         __attribute__warn_unused_result__;
1749 #define PERL_ARGS_ASSERT_IS_UTF8_XIDFIRST       \
1750         assert(p)
1751
1752 PERL_CALLCONV bool      Perl_isinfnan(NV nv)
1753                         __attribute__warn_unused_result__
1754                         __attribute__pure__;
1755
1756 PERL_CALLCONV bool      Perl_isinfnansv(pTHX_ SV *sv);
1757 #define PERL_ARGS_ASSERT_ISINFNANSV     \
1758         assert(sv)
1759 PERL_CALLCONV OP*       Perl_jmaybe(pTHX_ OP *o);
1760 #define PERL_ARGS_ASSERT_JMAYBE \
1761         assert(o)
1762 PERL_CALLCONV I32       Perl_keyword(pTHX_ const char *name, I32 len, bool all_keywords)
1763                         __attribute__warn_unused_result__
1764                         __attribute__pure__;
1765 #define PERL_ARGS_ASSERT_KEYWORD        \
1766         assert(name)
1767
1768 PERL_CALLCONV int       Perl_keyword_plugin_standard(pTHX_ char* keyword_ptr, STRLEN keyword_len, OP** op_ptr);
1769 #define PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD        \
1770         assert(keyword_ptr); assert(op_ptr)
1771 PERL_CALLCONV void      Perl_leave_adjust_stacks(pTHX_ SV **from_sp, SV **to_sp, U8 gimme, int filter);
1772 #define PERL_ARGS_ASSERT_LEAVE_ADJUST_STACKS    \
1773         assert(from_sp); assert(to_sp)
1774 PERL_CALLCONV void      Perl_leave_scope(pTHX_ I32 base);
1775 PERL_CALLCONV bool      Perl_lex_bufutf8(pTHX);
1776 PERL_CALLCONV void      Perl_lex_discard_to(pTHX_ char* ptr);
1777 #define PERL_ARGS_ASSERT_LEX_DISCARD_TO \
1778         assert(ptr)
1779 PERL_CALLCONV char*     Perl_lex_grow_linestr(pTHX_ STRLEN len);
1780 PERL_CALLCONV bool      Perl_lex_next_chunk(pTHX_ U32 flags);
1781 PERL_CALLCONV I32       Perl_lex_peek_unichar(pTHX_ U32 flags);
1782 PERL_CALLCONV void      Perl_lex_read_space(pTHX_ U32 flags);
1783 PERL_CALLCONV void      Perl_lex_read_to(pTHX_ char* ptr);
1784 #define PERL_ARGS_ASSERT_LEX_READ_TO    \
1785         assert(ptr)
1786 PERL_CALLCONV I32       Perl_lex_read_unichar(pTHX_ U32 flags);
1787 PERL_CALLCONV void      Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp, U32 flags);
1788 PERL_CALLCONV void      Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags);
1789 #define PERL_ARGS_ASSERT_LEX_STUFF_PV   \
1790         assert(pv)
1791 PERL_CALLCONV void      Perl_lex_stuff_pvn(pTHX_ const char* pv, STRLEN len, U32 flags);
1792 #define PERL_ARGS_ASSERT_LEX_STUFF_PVN  \
1793         assert(pv)
1794 PERL_CALLCONV void      Perl_lex_stuff_sv(pTHX_ SV* sv, U32 flags);
1795 #define PERL_ARGS_ASSERT_LEX_STUFF_SV   \
1796         assert(sv)
1797 PERL_CALLCONV void      Perl_lex_unstuff(pTHX_ char* ptr);
1798 #define PERL_ARGS_ASSERT_LEX_UNSTUFF    \
1799         assert(ptr)
1800 PERL_CALLCONV OP*       Perl_list(pTHX_ OP* o);
1801 PERL_CALLCONV void      Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...);
1802 #define PERL_ARGS_ASSERT_LOAD_MODULE    \
1803         assert(name)
1804 PERL_CALLCONV OP*       Perl_localize(pTHX_ OP *o, I32 lex);
1805 #define PERL_ARGS_ASSERT_LOCALIZE       \
1806         assert(o)
1807 PERL_CALLCONV I32       Perl_looks_like_number(pTHX_ SV *const sv)
1808                         __attribute__warn_unused_result__;
1809 #define PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER      \
1810         assert(sv)
1811
1812 PERL_CALLCONV int       Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg);
1813 #define PERL_ARGS_ASSERT_MAGIC_CLEAR_ALL_ENV    \
1814         assert(sv); assert(mg)
1815 PERL_CALLCONV int       Perl_magic_cleararylen_p(pTHX_ SV* sv, MAGIC* mg);
1816 #define PERL_ARGS_ASSERT_MAGIC_CLEARARYLEN_P    \
1817         assert(sv); assert(mg)
1818 PERL_CALLCONV int       Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg);
1819 #define PERL_ARGS_ASSERT_MAGIC_CLEARENV \
1820         assert(sv); assert(mg)
1821 PERL_CALLCONV int       Perl_magic_clearhint(pTHX_ SV* sv, MAGIC* mg);
1822 #define PERL_ARGS_ASSERT_MAGIC_CLEARHINT        \
1823         assert(sv); assert(mg)
1824 PERL_CALLCONV int       Perl_magic_clearhints(pTHX_ SV* sv, MAGIC* mg);
1825 #define PERL_ARGS_ASSERT_MAGIC_CLEARHINTS       \
1826         assert(sv); assert(mg)
1827 PERL_CALLCONV int       Perl_magic_clearisa(pTHX_ SV* sv, MAGIC* mg);
1828 #define PERL_ARGS_ASSERT_MAGIC_CLEARISA \
1829         assert(mg)
1830 PERL_CALLCONV int       Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg);
1831 #define PERL_ARGS_ASSERT_MAGIC_CLEARPACK        \
1832         assert(sv); assert(mg)
1833 PERL_CALLCONV int       Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg);
1834 #define PERL_ARGS_ASSERT_MAGIC_CLEARSIG \
1835         assert(sv); assert(mg)
1836 PERL_CALLCONV int       Perl_magic_copycallchecker(pTHX_ SV* sv, MAGIC *mg, SV *nsv, const char *name, I32 namlen);
1837 #define PERL_ARGS_ASSERT_MAGIC_COPYCALLCHECKER  \
1838         assert(sv); assert(mg); assert(nsv)
1839 PERL_CALLCONV void      Perl_magic_dump(pTHX_ const MAGIC *mg);
1840 PERL_CALLCONV int       Perl_magic_existspack(pTHX_ SV* sv, const MAGIC* mg);
1841 #define PERL_ARGS_ASSERT_MAGIC_EXISTSPACK       \
1842         assert(sv); assert(mg)
1843 PERL_CALLCONV int       Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg);
1844 #define PERL_ARGS_ASSERT_MAGIC_FREEARYLEN_P     \
1845         assert(sv); assert(mg)
1846 PERL_CALLCONV int       Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg);
1847 #define PERL_ARGS_ASSERT_MAGIC_FREEOVRLD        \
1848         assert(sv); assert(mg)
1849 PERL_CALLCONV int       Perl_magic_get(pTHX_ SV* sv, MAGIC* mg);
1850 #define PERL_ARGS_ASSERT_MAGIC_GET      \
1851         assert(sv); assert(mg)
1852 PERL_CALLCONV int       Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg);
1853 #define PERL_ARGS_ASSERT_MAGIC_GETARYLEN        \
1854         assert(sv); assert(mg)
1855 PERL_CALLCONV int       Perl_magic_getdebugvar(pTHX_ SV* sv, MAGIC* mg);
1856 #define PERL_ARGS_ASSERT_MAGIC_GETDEBUGVAR      \
1857         assert(sv); assert(mg)
1858 PERL_CALLCONV int       Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg);
1859 #define PERL_ARGS_ASSERT_MAGIC_GETDEFELEM       \
1860         assert(sv); assert(mg)
1861 PERL_CALLCONV int       Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg);
1862 #define PERL_ARGS_ASSERT_MAGIC_GETNKEYS \
1863         assert(sv); assert(mg)
1864 PERL_CALLCONV int       Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg);
1865 #define PERL_ARGS_ASSERT_MAGIC_GETPACK  \
1866         assert(sv); assert(mg)
1867 PERL_CALLCONV int       Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg);
1868 #define PERL_ARGS_ASSERT_MAGIC_GETPOS   \
1869         assert(sv); assert(mg)
1870 PERL_CALLCONV int       Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg);
1871 #define PERL_ARGS_ASSERT_MAGIC_GETSIG   \
1872         assert(sv); assert(mg)
1873 PERL_CALLCONV int       Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg);
1874 #define PERL_ARGS_ASSERT_MAGIC_GETSUBSTR        \
1875         assert(sv); assert(mg)
1876 PERL_CALLCONV int       Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg);
1877 #define PERL_ARGS_ASSERT_MAGIC_GETTAINT \
1878         assert(sv); assert(mg)
1879 PERL_CALLCONV int       Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg);
1880 #define PERL_ARGS_ASSERT_MAGIC_GETUVAR  \
1881         assert(sv); assert(mg)
1882 PERL_CALLCONV int       Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg);
1883 #define PERL_ARGS_ASSERT_MAGIC_GETVEC   \
1884         assert(sv); assert(mg)
1885 PERL_CALLCONV int       Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg);
1886 #define PERL_ARGS_ASSERT_MAGIC_KILLBACKREFS     \
1887         assert(sv); assert(mg)
1888 PERL_CALLCONV SV*       Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, SV *meth, U32 flags, U32 argc, ...);
1889 #define PERL_ARGS_ASSERT_MAGIC_METHCALL \
1890         assert(sv); assert(mg); assert(meth)
1891 PERL_CALLCONV int       Perl_magic_nextpack(pTHX_ SV *sv, MAGIC *mg, SV *key);
1892 #define PERL_ARGS_ASSERT_MAGIC_NEXTPACK \
1893         assert(sv); assert(mg); assert(key)
1894 PERL_CALLCONV U32       Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg);
1895 #define PERL_ARGS_ASSERT_MAGIC_REGDATA_CNT      \
1896         assert(sv); assert(mg)
1897 PERL_CALLCONV int       Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg);
1898 #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_GET     \
1899         assert(sv); assert(mg)
1900 PERL_CALLCONV SV*       Perl_magic_scalarpack(pTHX_ HV *hv, MAGIC *mg);
1901 #define PERL_ARGS_ASSERT_MAGIC_SCALARPACK       \
1902         assert(hv); assert(mg)
1903 PERL_CALLCONV int       Perl_magic_set(pTHX_ SV* sv, MAGIC* mg);
1904 #define PERL_ARGS_ASSERT_MAGIC_SET      \
1905         assert(sv); assert(mg)
1906 PERL_CALLCONV int       Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg);
1907 #define PERL_ARGS_ASSERT_MAGIC_SET_ALL_ENV      \
1908         assert(sv); assert(mg)
1909 PERL_CALLCONV int       Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg);
1910 #define PERL_ARGS_ASSERT_MAGIC_SETARYLEN        \
1911         assert(sv); assert(mg)
1912 PERL_CALLCONV int       Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg);
1913 #define PERL_ARGS_ASSERT_MAGIC_SETDBLINE        \
1914         assert(sv); assert(mg)
1915 PERL_CALLCONV int       Perl_magic_setdebugvar(pTHX_ SV* sv, MAGIC* mg);
1916 #define PERL_ARGS_ASSERT_MAGIC_SETDEBUGVAR      \
1917         assert(sv); assert(mg)
1918 PERL_CALLCONV int       Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg);
1919 #define PERL_ARGS_ASSERT_MAGIC_SETDEFELEM       \
1920         assert(sv); assert(mg)
1921 PERL_CALLCONV int       Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg);
1922 #define PERL_ARGS_ASSERT_MAGIC_SETENV   \
1923         assert(sv); assert(mg)
1924 PERL_CALLCONV int       Perl_magic_sethint(pTHX_ SV* sv, MAGIC* mg);
1925 #define PERL_ARGS_ASSERT_MAGIC_SETHINT  \
1926         assert(sv); assert(mg)
1927 PERL_CALLCONV int       Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg);
1928 #define PERL_ARGS_ASSERT_MAGIC_SETISA   \
1929         assert(sv); assert(mg)
1930 PERL_CALLCONV int       Perl_magic_setlvref(pTHX_ SV* sv, MAGIC* mg);
1931 #define PERL_ARGS_ASSERT_MAGIC_SETLVREF \
1932         assert(sv); assert(mg)
1933 PERL_CALLCONV int       Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg);
1934 #define PERL_ARGS_ASSERT_MAGIC_SETMGLOB \
1935         assert(sv); assert(mg)
1936 PERL_CALLCONV int       Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg);
1937 #define PERL_ARGS_ASSERT_MAGIC_SETNKEYS \
1938         assert(sv); assert(mg)
1939 PERL_CALLCONV int       Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg);
1940 #define PERL_ARGS_ASSERT_MAGIC_SETPACK  \
1941         assert(sv); assert(mg)
1942 PERL_CALLCONV int       Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg);
1943 #define PERL_ARGS_ASSERT_MAGIC_SETPOS   \
1944         assert(sv); assert(mg)
1945 PERL_CALLCONV int       Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg);
1946 #define PERL_ARGS_ASSERT_MAGIC_SETREGEXP        \
1947         assert(sv); assert(mg)
1948 PERL_CALLCONV int       Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg);
1949 #define PERL_ARGS_ASSERT_MAGIC_SETSIG   \
1950         assert(mg)
1951 PERL_CALLCONV int       Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg);
1952 #define PERL_ARGS_ASSERT_MAGIC_SETSUBSTR        \
1953         assert(sv); assert(mg)
1954 PERL_CALLCONV int       Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg);
1955 #define PERL_ARGS_ASSERT_MAGIC_SETTAINT \
1956         assert(sv); assert(mg)
1957 PERL_CALLCONV int       Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg);
1958 #define PERL_ARGS_ASSERT_MAGIC_SETUTF8  \
1959         assert(sv); assert(mg)
1960 PERL_CALLCONV int       Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg);
1961 #define PERL_ARGS_ASSERT_MAGIC_SETUVAR  \
1962         assert(sv); assert(mg)
1963 PERL_CALLCONV int       Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg);
1964 #define PERL_ARGS_ASSERT_MAGIC_SETVEC   \
1965         assert(sv); assert(mg)
1966 PERL_CALLCONV U32       Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg);
1967 #define PERL_ARGS_ASSERT_MAGIC_SIZEPACK \
1968         assert(sv); assert(mg)
1969 PERL_CALLCONV int       Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg);
1970 #define PERL_ARGS_ASSERT_MAGIC_WIPEPACK \
1971         assert(sv); assert(mg)
1972 PERL_CALLCONV Malloc_t  Perl_malloc(MEM_SIZE nbytes)
1973                         __attribute__malloc__
1974                         __attribute__warn_unused_result__;
1975
1976 PERL_CALLCONV I32 *     Perl_markstack_grow(pTHX);
1977 PERL_CALLCONV SV*       Perl_mess(pTHX_ const char* pat, ...)
1978                         __attribute__format__(__printf__,pTHX_1,pTHX_2);
1979 #define PERL_ARGS_ASSERT_MESS   \
1980         assert(pat)
1981
1982 PERL_CALLCONV SV*       Perl_mess_sv(pTHX_ SV* basemsg, bool consume);
1983 #define PERL_ARGS_ASSERT_MESS_SV        \
1984         assert(basemsg)
1985 PERL_CALLCONV Free_t    Perl_mfree(Malloc_t where);
1986 PERL_CALLCONV int       Perl_mg_clear(pTHX_ SV* sv);
1987 #define PERL_ARGS_ASSERT_MG_CLEAR       \
1988         assert(sv)
1989 PERL_CALLCONV int       Perl_mg_copy(pTHX_ SV *sv, SV *nsv, const char *key, I32 klen);
1990 #define PERL_ARGS_ASSERT_MG_COPY        \
1991         assert(sv); assert(nsv)
1992 PERL_CALLCONV MAGIC*    Perl_mg_find(const SV* sv, int type)
1993                         __attribute__warn_unused_result__;
1994
1995 PERL_CALLCONV MAGIC*    Perl_mg_find_mglob(pTHX_ SV* sv)
1996                         __attribute__warn_unused_result__;
1997 #define PERL_ARGS_ASSERT_MG_FIND_MGLOB  \
1998         assert(sv)
1999
2000 PERL_CALLCONV MAGIC*    Perl_mg_findext(const SV* sv, int type, const MGVTBL *vtbl)
2001                         __attribute__warn_unused_result__;
2002
2003 PERL_CALLCONV int       Perl_mg_free(pTHX_ SV* sv);
2004 #define PERL_ARGS_ASSERT_MG_FREE        \
2005         assert(sv)
2006 PERL_CALLCONV void      Perl_mg_free_type(pTHX_ SV* sv, int how);
2007 #define PERL_ARGS_ASSERT_MG_FREE_TYPE   \
2008         assert(sv)
2009 PERL_CALLCONV void      Perl_mg_freeext(pTHX_ SV* sv, int how, const MGVTBL *vtbl);
2010 #define PERL_ARGS_ASSERT_MG_FREEEXT     \
2011         assert(sv)
2012 PERL_CALLCONV int       Perl_mg_get(pTHX_ SV* sv);
2013 #define PERL_ARGS_ASSERT_MG_GET \
2014         assert(sv)
2015 PERL_CALLCONV U32       Perl_mg_length(pTHX_ SV* sv)
2016                         __attribute__deprecated__;
2017 #define PERL_ARGS_ASSERT_MG_LENGTH      \
2018         assert(sv)
2019
2020 PERL_CALLCONV void      Perl_mg_localize(pTHX_ SV* sv, SV* nsv, bool setmagic);
2021 #define PERL_ARGS_ASSERT_MG_LOCALIZE    \
2022         assert(sv); assert(nsv)
2023 PERL_CALLCONV void      Perl_mg_magical(SV* sv);
2024 #define PERL_ARGS_ASSERT_MG_MAGICAL     \
2025         assert(sv)
2026 PERL_CALLCONV int       Perl_mg_set(pTHX_ SV* sv);
2027 #define PERL_ARGS_ASSERT_MG_SET \
2028         assert(sv)
2029 PERL_CALLCONV I32       Perl_mg_size(pTHX_ SV* sv);
2030 #define PERL_ARGS_ASSERT_MG_SIZE        \
2031         assert(sv)
2032 PERL_CALLCONV void      Perl_mini_mktime(struct tm *ptm);
2033 #define PERL_ARGS_ASSERT_MINI_MKTIME    \
2034         assert(ptm)
2035 PERL_CALLCONV int       Perl_mode_from_discipline(pTHX_ const char* s, STRLEN len);
2036 PERL_CALLCONV void *    Perl_more_bodies(pTHX_ const svtype sv_type, const size_t body_size, const size_t arena_size);
2037 PERL_CALLCONV const char*       Perl_moreswitches(pTHX_ const char* s);
2038 #define PERL_ARGS_ASSERT_MORESWITCHES   \
2039         assert(s)
2040 PERL_CALLCONV const struct mro_alg *    Perl_mro_get_from_name(pTHX_ SV *name);
2041 #define PERL_ARGS_ASSERT_MRO_GET_FROM_NAME      \
2042         assert(name)
2043 PERL_CALLCONV AV*       Perl_mro_get_linear_isa(pTHX_ HV* stash);
2044 #define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA     \
2045         assert(stash)
2046 PERL_CALLCONV SV*       Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which);
2047 #define PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA   \
2048         assert(smeta); assert(which)
2049 PERL_CALLCONV void      Perl_mro_isa_changed_in(pTHX_ HV* stash);
2050 #define PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN     \
2051         assert(stash)
2052 PERL_CALLCONV struct mro_meta*  Perl_mro_meta_init(pTHX_ HV* stash);
2053 #define PERL_ARGS_ASSERT_MRO_META_INIT  \
2054         assert(stash)
2055 PERL_CALLCONV void      Perl_mro_method_changed_in(pTHX_ HV* stash);
2056 #define PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN  \
2057         assert(stash)
2058 PERL_CALLCONV void      Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV * const gv, U32 flags);
2059 #define PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED      \
2060         assert(gv)
2061 PERL_CALLCONV void      Perl_mro_register(pTHX_ const struct mro_alg *mro);
2062 #define PERL_ARGS_ASSERT_MRO_REGISTER   \
2063         assert(mro)
2064 PERL_CALLCONV void      Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name);
2065 #define PERL_ARGS_ASSERT_MRO_SET_MRO    \
2066         assert(meta); assert(name)
2067 PERL_CALLCONV SV*       Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which, SV *const data);
2068 #define PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA   \
2069         assert(smeta); assert(which); assert(data)
2070 PERL_CALLCONV SV*       Perl_multiconcat_stringify(pTHX_ const OP* o);
2071 #define PERL_ARGS_ASSERT_MULTICONCAT_STRINGIFY  \
2072         assert(o)
2073 PERL_CALLCONV SV*       Perl_multideref_stringify(pTHX_ const OP* o, CV *cv);
2074 #define PERL_ARGS_ASSERT_MULTIDEREF_STRINGIFY   \
2075         assert(o)
2076 PERL_CALLCONV NV        Perl_my_atof(pTHX_ const char *s);
2077 #define PERL_ARGS_ASSERT_MY_ATOF        \
2078         assert(s)
2079 PERL_CALLCONV char*     Perl_my_atof2(pTHX_ const char *s, NV* value);
2080 #define PERL_ARGS_ASSERT_MY_ATOF2       \
2081         assert(s); assert(value)
2082 PERL_CALLCONV OP *      Perl_my_attrs(pTHX_ OP *o, OP *attrs);
2083 #define PERL_ARGS_ASSERT_MY_ATTRS       \
2084         assert(o)
2085 PERL_CALLCONV void      Perl_my_clearenv(pTHX);
2086 PERL_CALLCONV int       Perl_my_dirfd(DIR* dir);
2087 PERL_CALLCONV_NO_RET void       Perl_my_exit(pTHX_ U32 status)
2088                         __attribute__noreturn__;
2089
2090 PERL_CALLCONV_NO_RET void       Perl_my_failure_exit(pTHX)
2091                         __attribute__noreturn__;
2092
2093 PERL_CALLCONV I32       Perl_my_fflush_all(pTHX);
2094 PERL_CALLCONV Pid_t     Perl_my_fork(void);
2095 #ifndef NO_MATHOMS
2096 PERL_CALLCONV I32       Perl_my_lstat(pTHX);
2097 #endif
2098 PERL_CALLCONV I32       Perl_my_lstat_flags(pTHX_ const U32 flags);
2099 PERL_CALLCONV PerlIO*   Perl_my_popen_list(pTHX_ const char* mode, int n, SV ** args);
2100 #define PERL_ARGS_ASSERT_MY_POPEN_LIST  \
2101         assert(mode); assert(args)
2102 PERL_CALLCONV void      Perl_my_setenv(pTHX_ const char* nam, const char* val);
2103 PERL_CALLCONV int       Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...)
2104                         __attribute__format__(__printf__,3,4);
2105 #define PERL_ARGS_ASSERT_MY_SNPRINTF    \
2106         assert(buffer); assert(format)
2107
2108 PERL_CALLCONV int       Perl_my_socketpair(int family, int type, int protocol, int fd[2]);
2109 #ifndef NO_MATHOMS
2110 PERL_CALLCONV I32       Perl_my_stat(pTHX);
2111 #endif
2112 PERL_CALLCONV I32       Perl_my_stat_flags(pTHX_ const U32 flags);
2113 PERL_CALLCONV char*     Perl_my_strerror(pTHX_ const int errnum);
2114 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)
2115                         __attribute__format__(__strftime__,pTHX_1,0);
2116 #define PERL_ARGS_ASSERT_MY_STRFTIME    \
2117         assert(fmt)
2118
2119 PERL_CALLCONV void      Perl_my_unexec(pTHX);
2120 PERL_CALLCONV int       Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap);
2121 #define PERL_ARGS_ASSERT_MY_VSNPRINTF   \
2122         assert(buffer); assert(format)
2123 PERL_CALLCONV OP*       Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block);
2124 PERL_CALLCONV OP*       Perl_newANONHASH(pTHX_ OP* o)
2125                         __attribute__warn_unused_result__;
2126
2127 PERL_CALLCONV OP*       Perl_newANONLIST(pTHX_ OP* o)
2128                         __attribute__warn_unused_result__;
2129
2130 PERL_CALLCONV OP*       Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block);
2131 PERL_CALLCONV OP*       Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right)
2132                         __attribute__warn_unused_result__;
2133
2134 /* PERL_CALLCONV CV*    newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); */
2135 PERL_CALLCONV CV*       Perl_newATTRSUB_x(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block, bool o_is_gv);
2136 #ifndef NO_MATHOMS
2137 PERL_CALLCONV AV*       Perl_newAV(pTHX)
2138                         __attribute__warn_unused_result__;
2139 #endif
2140
2141 PERL_CALLCONV OP*       Perl_newAVREF(pTHX_ OP* o)
2142                         __attribute__warn_unused_result__;
2143 #define PERL_ARGS_ASSERT_NEWAVREF       \
2144         assert(o)
2145
2146 PERL_CALLCONV OP*       Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last)
2147                         __attribute__warn_unused_result__;
2148
2149 PERL_CALLCONV OP*       Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop)
2150                         __attribute__warn_unused_result__;
2151 #define PERL_ARGS_ASSERT_NEWCONDOP      \
2152         assert(first)
2153
2154 PERL_CALLCONV CV*       Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv);
2155 PERL_CALLCONV CV*       Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags, SV* sv);
2156 PERL_CALLCONV OP*       Perl_newCVREF(pTHX_ I32 flags, OP* o)
2157                         __attribute__warn_unused_result__;
2158
2159 PERL_CALLCONV OP*       Perl_newDEFSVOP(pTHX)
2160                         __attribute__warn_unused_result__;
2161
2162 PERL_CALLCONV void      Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block);
2163 PERL_CALLCONV OP*       Perl_newFOROP(pTHX_ I32 flags, OP* sv, OP* expr, OP* block, OP* cont)
2164                         __attribute__warn_unused_result__;
2165 #define PERL_ARGS_ASSERT_NEWFOROP       \
2166         assert(expr)
2167
2168 PERL_CALLCONV OP*       Perl_newGIVENOP(pTHX_ OP* cond, OP* block, PADOFFSET defsv_off)
2169                         __attribute__warn_unused_result__;
2170 #define PERL_ARGS_ASSERT_NEWGIVENOP     \
2171         assert(cond); assert(block)
2172
2173 PERL_CALLCONV GP *      Perl_newGP(pTHX_ GV *const gv);
2174 #define PERL_ARGS_ASSERT_NEWGP  \
2175         assert(gv)
2176 PERL_CALLCONV OP*       Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv)
2177                         __attribute__warn_unused_result__;
2178 #define PERL_ARGS_ASSERT_NEWGVOP        \
2179         assert(gv)
2180
2181 PERL_CALLCONV OP*       Perl_newGVREF(pTHX_ I32 type, OP* o)
2182                         __attribute__warn_unused_result__;
2183
2184 /* PERL_CALLCONV GV*    newGVgen(pTHX_ const char* pack); */
2185 PERL_CALLCONV GV*       Perl_newGVgen_flags(pTHX_ const char* pack, U32 flags)
2186                         __attribute__warn_unused_result__;
2187 #define PERL_ARGS_ASSERT_NEWGVGEN_FLAGS \
2188         assert(pack)
2189
2190 #ifndef NO_MATHOMS
2191 PERL_CALLCONV HV*       Perl_newHV(pTHX)
2192                         __attribute__warn_unused_result__;
2193 #endif
2194
2195 PERL_CALLCONV OP*       Perl_newHVREF(pTHX_ OP* o)
2196                         __attribute__warn_unused_result__;
2197 #define PERL_ARGS_ASSERT_NEWHVREF       \
2198         assert(o)
2199
2200 PERL_CALLCONV HV*       Perl_newHVhv(pTHX_ HV *hv)
2201                         __attribute__warn_unused_result__;
2202
2203 #ifndef NO_MATHOMS
2204 PERL_CALLCONV IO*       Perl_newIO(pTHX)
2205                         __attribute__warn_unused_result__;
2206 #endif
2207
2208 PERL_CALLCONV OP*       Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last)
2209                         __attribute__warn_unused_result__;
2210
2211 PERL_CALLCONV OP*       Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP *first, OP *other)
2212                         __attribute__warn_unused_result__;
2213 #define PERL_ARGS_ASSERT_NEWLOGOP       \
2214         assert(first); assert(other)
2215
2216 PERL_CALLCONV OP*       Perl_newLOOPEX(pTHX_ I32 type, OP* label)
2217                         __attribute__warn_unused_result__;
2218 #define PERL_ARGS_ASSERT_NEWLOOPEX      \
2219         assert(label)
2220
2221 PERL_CALLCONV OP*       Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block)
2222                         __attribute__warn_unused_result__;
2223
2224 PERL_CALLCONV OP*       Perl_newMETHOP(pTHX_ I32 type, I32 flags, OP* dynamic_meth)
2225                         __attribute__warn_unused_result__;
2226 #define PERL_ARGS_ASSERT_NEWMETHOP      \
2227         assert(dynamic_meth)
2228
2229 PERL_CALLCONV OP*       Perl_newMETHOP_named(pTHX_ I32 type, I32 flags, SV* const_meth)
2230                         __attribute__warn_unused_result__;
2231 #define PERL_ARGS_ASSERT_NEWMETHOP_NAMED        \
2232         assert(const_meth)
2233
2234 PERL_CALLCONV CV *      Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block);
2235 #define PERL_ARGS_ASSERT_NEWMYSUB       \
2236         assert(o)
2237 PERL_CALLCONV OP*       Perl_newNULLLIST(pTHX)
2238                         __attribute__warn_unused_result__;
2239
2240 PERL_CALLCONV OP*       Perl_newOP(pTHX_ I32 optype, I32 flags)
2241                         __attribute__warn_unused_result__;
2242
2243 PERL_CALLCONV PADNAMELIST *     Perl_newPADNAMELIST(size_t max)
2244                         __attribute__warn_unused_result__;
2245
2246 PERL_CALLCONV PADNAME * Perl_newPADNAMEouter(PADNAME *outer)
2247                         __attribute__warn_unused_result__;
2248 #define PERL_ARGS_ASSERT_NEWPADNAMEOUTER        \
2249         assert(outer)
2250
2251 PERL_CALLCONV PADNAME * Perl_newPADNAMEpvn(const char *s, STRLEN len)
2252                         __attribute__warn_unused_result__;
2253 #define PERL_ARGS_ASSERT_NEWPADNAMEPVN  \
2254         assert(s)
2255
2256 PERL_CALLCONV OP*       Perl_newPMOP(pTHX_ I32 type, I32 flags)
2257                         __attribute__warn_unused_result__;
2258
2259 PERL_CALLCONV void      Perl_newPROG(pTHX_ OP* o);
2260 #define PERL_ARGS_ASSERT_NEWPROG        \
2261         assert(o)
2262 PERL_CALLCONV OP*       Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv)
2263                         __attribute__warn_unused_result__;
2264
2265 PERL_CALLCONV OP*       Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right)
2266                         __attribute__warn_unused_result__;
2267 #define PERL_ARGS_ASSERT_NEWRANGE       \
2268         assert(left); assert(right)
2269
2270 PERL_CALLCONV SV*       Perl_newRV(pTHX_ SV *const sv)
2271                         __attribute__warn_unused_result__;
2272 #define PERL_ARGS_ASSERT_NEWRV  \
2273         assert(sv)
2274
2275 PERL_CALLCONV SV*       Perl_newRV_noinc(pTHX_ SV *const tmpRef)
2276                         __attribute__warn_unused_result__;
2277 #define PERL_ARGS_ASSERT_NEWRV_NOINC    \
2278         assert(tmpRef)
2279
2280 PERL_CALLCONV OP*       Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop)
2281                         __attribute__warn_unused_result__;
2282
2283 PERL_CALLCONV OP*       Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o)
2284                         __attribute__warn_unused_result__;
2285
2286 PERL_CALLCONV CV*       Perl_newSTUB(pTHX_ GV *gv, bool fake);
2287 #define PERL_ARGS_ASSERT_NEWSTUB        \
2288         assert(gv)
2289 #ifndef NO_MATHOMS
2290 PERL_CALLCONV CV*       Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block);
2291 #endif
2292 PERL_CALLCONV SV*       Perl_newSV(pTHX_ const STRLEN len)
2293                         __attribute__warn_unused_result__;
2294
2295 PERL_CALLCONV OP*       Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv)
2296                         __attribute__warn_unused_result__;
2297 #define PERL_ARGS_ASSERT_NEWSVOP        \
2298         assert(sv)
2299
2300 PERL_CALLCONV OP*       Perl_newSVREF(pTHX_ OP* o)
2301                         __attribute__warn_unused_result__;
2302 #define PERL_ARGS_ASSERT_NEWSVREF       \
2303         assert(o)
2304
2305 PERL_CALLCONV SV*       Perl_newSV_type(pTHX_ const svtype type)
2306                         __attribute__warn_unused_result__;
2307
2308 PERL_CALLCONV SV*       Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
2309                         __attribute__warn_unused_result__;
2310 #define PERL_ARGS_ASSERT_NEWSVAVDEFELEM \
2311         assert(av)
2312
2313 PERL_CALLCONV SV*       Perl_newSVhek(pTHX_ const HEK *const hek)
2314                         __attribute__warn_unused_result__;
2315
2316 PERL_CALLCONV SV*       Perl_newSViv(pTHX_ const IV i)
2317                         __attribute__warn_unused_result__;
2318
2319 PERL_CALLCONV SV*       Perl_newSVnv(pTHX_ const NV n)
2320                         __attribute__warn_unused_result__;
2321
2322 PERL_CALLCONV SV*       Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
2323                         __attribute__warn_unused_result__;
2324
2325 PERL_CALLCONV SV*       Perl_newSVpv_share(pTHX_ const char* s, U32 hash)
2326                         __attribute__warn_unused_result__;
2327
2328 PERL_CALLCONV SV*       Perl_newSVpvf(pTHX_ const char *const pat, ...)
2329                         __attribute__warn_unused_result__
2330                         __attribute__format__(__printf__,pTHX_1,pTHX_2);
2331 #define PERL_ARGS_ASSERT_NEWSVPVF       \
2332         assert(pat)
2333
2334 PERL_CALLCONV SV*       Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
2335                         __attribute__warn_unused_result__;
2336
2337 PERL_CALLCONV SV*       Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
2338                         __attribute__warn_unused_result__;
2339
2340 PERL_CALLCONV SV*       Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash)
2341                         __attribute__warn_unused_result__;
2342
2343 PERL_CALLCONV SV*       Perl_newSVrv(pTHX_ SV *const rv, const char *const classname);
2344 #define PERL_ARGS_ASSERT_NEWSVRV        \
2345         assert(rv)
2346 PERL_CALLCONV SV*       Perl_newSVsv(pTHX_ SV *const old)
2347                         __attribute__warn_unused_result__;
2348
2349 PERL_CALLCONV SV*       Perl_newSVuv(pTHX_ const UV u)
2350                         __attribute__warn_unused_result__;
2351
2352 PERL_CALLCONV OP*       Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first)
2353                         __attribute__warn_unused_result__;
2354
2355 PERL_CALLCONV OP*       Perl_newUNOP_AUX(pTHX_ I32 type, I32 flags, OP* first, UNOP_AUX_item *aux)
2356                         __attribute__warn_unused_result__;
2357
2358 PERL_CALLCONV OP*       Perl_newWHENOP(pTHX_ OP* cond, OP* block)
2359                         __attribute__warn_unused_result__;
2360 #define PERL_ARGS_ASSERT_NEWWHENOP      \
2361         assert(block)
2362
2363 PERL_CALLCONV OP*       Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, OP* expr, OP* block, OP* cont, I32 has_my)
2364                         __attribute__warn_unused_result__;
2365
2366 PERL_CALLCONV CV*       Perl_newXS(pTHX_ const char *name, XSUBADDR_t subaddr, const char *filename);
2367 #define PERL_ARGS_ASSERT_NEWXS  \
2368         assert(subaddr); assert(filename)
2369 PERL_CALLCONV CV *      Perl_newXS_deffile(pTHX_ const char *name, XSUBADDR_t subaddr);
2370 #define PERL_ARGS_ASSERT_NEWXS_DEFFILE  \
2371         assert(name); assert(subaddr)
2372 PERL_CALLCONV CV *      Perl_newXS_flags(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
2373 #define PERL_ARGS_ASSERT_NEWXS_FLAGS    \
2374         assert(subaddr); assert(filename)
2375 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);
2376 #define PERL_ARGS_ASSERT_NEWXS_LEN_FLAGS        \
2377         assert(subaddr)
2378 PERL_CALLCONV void      Perl_new_numeric(pTHX_ const char* newcoll);
2379 PERL_CALLCONV PERL_SI*  Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems)
2380                         __attribute__warn_unused_result__;
2381
2382 PERL_CALLCONV SV*       Perl_new_version(pTHX_ SV *ver);
2383 #define PERL_ARGS_ASSERT_NEW_VERSION    \
2384         assert(ver)
2385 PERL_CALLCONV STRLEN *  Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits, STRLEN size)
2386                         __attribute__warn_unused_result__;
2387 #define PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD  \
2388         assert(bits)
2389
2390 PERL_CALLCONV PerlIO*   Perl_nextargv(pTHX_ GV* gv, bool nomagicopen);
2391 #define PERL_ARGS_ASSERT_NEXTARGV       \
2392         assert(gv)
2393 PERL_CALLCONV_NO_RET void       Perl_noperl_die(const char* pat, ...)
2394                         __attribute__noreturn__
2395                         __attribute__format__(__printf__,1,2);
2396 #define PERL_ARGS_ASSERT_NOPERL_DIE     \
2397         assert(pat)
2398
2399 PERL_CALLCONV int       Perl_nothreadhook(pTHX);
2400 PERL_CALLCONV void      Perl_notify_parser_that_changed_to_utf8(pTHX);
2401 PERL_CALLCONV OP*       Perl_oopsAV(pTHX_ OP* o)
2402                         __attribute__warn_unused_result__;
2403 #define PERL_ARGS_ASSERT_OOPSAV \
2404         assert(o)
2405
2406 PERL_CALLCONV OP*       Perl_oopsHV(pTHX_ OP* o)
2407                         __attribute__warn_unused_result__;
2408 #define PERL_ARGS_ASSERT_OOPSHV \
2409         assert(o)
2410
2411 PERL_CALLCONV OP*       Perl_op_append_elem(pTHX_ I32 optype, OP* first, OP* last);
2412 PERL_CALLCONV OP*       Perl_op_append_list(pTHX_ I32 optype, OP* first, OP* last);
2413 PERL_CALLCONV OPclass   Perl_op_class(pTHX_ const OP *o);
2414 PERL_CALLCONV void      Perl_op_clear(pTHX_ OP* o);
2415 #define PERL_ARGS_ASSERT_OP_CLEAR       \
2416         assert(o)
2417 PERL_CALLCONV OP*       Perl_op_contextualize(pTHX_ OP* o, I32 context);
2418 #define PERL_ARGS_ASSERT_OP_CONTEXTUALIZE       \
2419         assert(o)
2420 PERL_CALLCONV OP*       Perl_op_convert_list(pTHX_ I32 optype, I32 flags, OP* o)
2421                         __attribute__warn_unused_result__;
2422
2423 PERL_CALLCONV void      Perl_op_dump(pTHX_ const OP *o);
2424 #define PERL_ARGS_ASSERT_OP_DUMP        \
2425         assert(o)
2426 PERL_CALLCONV void      Perl_op_free(pTHX_ OP* arg);
2427 PERL_CALLCONV OP*       Perl_op_linklist(pTHX_ OP *o);
2428 #define PERL_ARGS_ASSERT_OP_LINKLIST    \
2429         assert(o)
2430 /* PERL_CALLCONV OP*    op_lvalue(pTHX_ OP* o, I32 type); */
2431 PERL_CALLCONV OP*       Perl_op_lvalue_flags(pTHX_ OP* o, I32 type, U32 flags);
2432 PERL_CALLCONV void      Perl_op_null(pTHX_ OP* o);
2433 #define PERL_ARGS_ASSERT_OP_NULL        \
2434         assert(o)
2435 PERL_CALLCONV OP*       Perl_op_prepend_elem(pTHX_ I32 optype, OP* first, OP* last);
2436 PERL_CALLCONV void      Perl_op_refcnt_lock(pTHX);
2437 PERL_CALLCONV void      Perl_op_refcnt_unlock(pTHX);
2438 PERL_CALLCONV OP*       Perl_op_scope(pTHX_ OP* o);
2439 PERL_CALLCONV OP*       Perl_op_sibling_splice(OP *parent, OP *start, int del_count, OP* insert);
2440 PERL_CALLCONV OP*       Perl_op_unscope(pTHX_ OP* o);
2441 PERL_CALLCONV void      Perl_optimize_optree(pTHX_ OP* o);
2442 #define PERL_ARGS_ASSERT_OPTIMIZE_OPTREE        \
2443         assert(o)
2444 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);
2445 #define PERL_ARGS_ASSERT_PACK_CAT       \
2446         assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist); assert(next_in_list)
2447 PERL_CALLCONV void      Perl_package(pTHX_ OP* o);
2448 #define PERL_ARGS_ASSERT_PACKAGE        \
2449         assert(o)
2450 PERL_CALLCONV void      Perl_package_version(pTHX_ OP* v);
2451 #define PERL_ARGS_ASSERT_PACKAGE_VERSION        \
2452         assert(v)
2453 PERL_CALLCONV void      Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist);
2454 #define PERL_ARGS_ASSERT_PACKLIST       \
2455         assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist)
2456 PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ CV* func, I32 optype);
2457 #define PERL_ARGS_ASSERT_PAD_ADD_ANON   \
2458         assert(func)
2459 PERL_CALLCONV PADOFFSET Perl_pad_add_name_pv(pTHX_ const char *name, const U32 flags, HV *typestash, HV *ourstash);
2460 #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PV        \
2461         assert(name)
2462 PERL_CALLCONV PADOFFSET Perl_pad_add_name_pvn(pTHX_ const char *namepv, STRLEN namelen, U32 flags, HV *typestash, HV *ourstash);
2463 #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PVN       \
2464         assert(namepv)
2465 PERL_CALLCONV PADOFFSET Perl_pad_add_name_sv(pTHX_ SV *name, U32 flags, HV *typestash, HV *ourstash);
2466 #define PERL_ARGS_ASSERT_PAD_ADD_NAME_SV        \
2467         assert(name)
2468 PERL_CALLCONV void      Perl_pad_add_weakref(pTHX_ CV* func);
2469 #define PERL_ARGS_ASSERT_PAD_ADD_WEAKREF        \
2470         assert(func)
2471 PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype);
2472 PERL_CALLCONV void      Perl_pad_block_start(pTHX_ int full);
2473 #ifndef NO_MATHOMS
2474 PERL_CALLCONV HV*       Perl_pad_compname_type(pTHX_ const PADOFFSET po)
2475                         __attribute__warn_unused_result__;
2476 #endif
2477
2478 PERL_CALLCONV PADOFFSET Perl_pad_findmy_pv(pTHX_ const char* name, U32 flags);
2479 #define PERL_ARGS_ASSERT_PAD_FINDMY_PV  \
2480         assert(name)
2481 PERL_CALLCONV PADOFFSET Perl_pad_findmy_pvn(pTHX_ const char* namepv, STRLEN namelen, U32 flags);
2482 #define PERL_ARGS_ASSERT_PAD_FINDMY_PVN \
2483         assert(namepv)
2484 PERL_CALLCONV PADOFFSET Perl_pad_findmy_sv(pTHX_ SV* name, U32 flags);
2485 #define PERL_ARGS_ASSERT_PAD_FINDMY_SV  \
2486         assert(name)
2487 PERL_CALLCONV void      Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv);
2488 #define PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS  \
2489         assert(padlist); assert(old_cv); assert(new_cv)
2490 PERL_CALLCONV void      Perl_pad_free(pTHX_ PADOFFSET po);
2491 PERL_CALLCONV OP *      Perl_pad_leavemy(pTHX);
2492 PERL_CALLCONV PADLIST*  Perl_pad_new(pTHX_ int flags)
2493                         __attribute__warn_unused_result__;
2494
2495 PERL_CALLCONV void      Perl_pad_push(pTHX_ PADLIST *padlist, int depth);
2496 #define PERL_ARGS_ASSERT_PAD_PUSH       \
2497         assert(padlist)
2498 PERL_CALLCONV void      Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust);
2499 PERL_CALLCONV void      Perl_pad_tidy(pTHX_ padtidy_type type);
2500 PERL_CALLCONV PAD **    Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val);
2501 #define PERL_ARGS_ASSERT_PADLIST_STORE  \
2502         assert(padlist)
2503 PERL_CALLCONV void      Perl_padname_free(pTHX_ PADNAME *pn);
2504 #define PERL_ARGS_ASSERT_PADNAME_FREE   \
2505         assert(pn)
2506 PERL_CALLCONV PADNAME * Perl_padnamelist_fetch(PADNAMELIST *pnl, SSize_t key)
2507                         __attribute__warn_unused_result__;
2508 #define PERL_ARGS_ASSERT_PADNAMELIST_FETCH      \
2509         assert(pnl)
2510
2511 PERL_CALLCONV void      Perl_padnamelist_free(pTHX_ PADNAMELIST *pnl);
2512 #define PERL_ARGS_ASSERT_PADNAMELIST_FREE       \
2513         assert(pnl)
2514 PERL_CALLCONV PADNAME **        Perl_padnamelist_store(pTHX_ PADNAMELIST *pnl, SSize_t key, PADNAME *val);
2515 #define PERL_ARGS_ASSERT_PADNAMELIST_STORE      \
2516         assert(pnl)
2517 PERL_CALLCONV OP*       Perl_parse_arithexpr(pTHX_ U32 flags);
2518 PERL_CALLCONV OP*       Perl_parse_barestmt(pTHX_ U32 flags);
2519 PERL_CALLCONV OP*       Perl_parse_block(pTHX_ U32 flags);
2520 PERL_CALLCONV OP*       Perl_parse_fullexpr(pTHX_ U32 flags);
2521 PERL_CALLCONV OP*       Perl_parse_fullstmt(pTHX_ U32 flags);
2522 PERL_CALLCONV SV*       Perl_parse_label(pTHX_ U32 flags);
2523 PERL_CALLCONV OP*       Perl_parse_listexpr(pTHX_ U32 flags);
2524 PERL_CALLCONV OP*       Perl_parse_stmtseq(pTHX_ U32 flags);
2525 PERL_CALLCONV OP*       Perl_parse_termexpr(pTHX_ U32 flags);
2526 PERL_CALLCONV U32       Perl_parse_unicode_opts(pTHX_ const char **popt);
2527 #define PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS     \
2528         assert(popt)
2529 PERL_CALLCONV void      Perl_parser_free(pTHX_ const yy_parser *parser);
2530 #define PERL_ARGS_ASSERT_PARSER_FREE    \
2531         assert(parser)
2532 PERL_CALLCONV void      Perl_peep(pTHX_ OP* o);
2533 PERL_CALLCONV PerlInterpreter*  perl_alloc(void);
2534 PERL_CALLCONV void      perl_construct(PerlInterpreter *my_perl);
2535 #define PERL_ARGS_ASSERT_PERL_CONSTRUCT \
2536         assert(my_perl)
2537 PERL_CALLCONV int       perl_destruct(PerlInterpreter *my_perl);
2538 #define PERL_ARGS_ASSERT_PERL_DESTRUCT  \
2539         assert(my_perl)
2540 PERL_CALLCONV void      perl_free(PerlInterpreter *my_perl);
2541 #define PERL_ARGS_ASSERT_PERL_FREE      \
2542         assert(my_perl)
2543 PERL_CALLCONV int       perl_parse(PerlInterpreter *my_perl, XSINIT_t xsinit, int argc, char** argv, char** env);
2544 #define PERL_ARGS_ASSERT_PERL_PARSE     \
2545         assert(my_perl)
2546 PERL_CALLCONV int       perl_run(PerlInterpreter *my_perl);
2547 #define PERL_ARGS_ASSERT_PERL_RUN       \
2548         assert(my_perl)
2549 PERL_CALLCONV void      Perl_pmop_dump(pTHX_ PMOP* pm);
2550 PERL_CALLCONV OP*       Perl_pmruntime(pTHX_ OP *o, OP *expr, OP *repl, UV flags, I32 floor);
2551 #define PERL_ARGS_ASSERT_PMRUNTIME      \
2552         assert(o); assert(expr)
2553 PERL_CALLCONV void      Perl_pop_scope(pTHX);
2554 PERL_CALLCONV void      Perl_populate_isa(pTHX_ const char *name, STRLEN len, ...);
2555 #define PERL_ARGS_ASSERT_POPULATE_ISA   \
2556         assert(name)
2557 PERL_CALLCONV REGEXP*   Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags);
2558 #define PERL_ARGS_ASSERT_PREGCOMP       \
2559         assert(pattern)
2560 PERL_CALLCONV I32       Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, SSize_t minend, SV* screamer, U32 nosave);
2561 #define PERL_ARGS_ASSERT_PREGEXEC       \
2562         assert(prog); assert(stringarg); assert(strend); assert(strbeg); assert(screamer)
2563 PERL_CALLCONV void      Perl_pregfree(pTHX_ REGEXP* r);
2564 PERL_CALLCONV void      Perl_pregfree2(pTHX_ REGEXP *rx);
2565 #define PERL_ARGS_ASSERT_PREGFREE2      \
2566         assert(rx)
2567 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);
2568 #define PERL_ARGS_ASSERT_PRESCAN_VERSION        \
2569         assert(s)
2570 PERL_CALLCONV void      Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
2571                         __attribute__deprecated__;
2572
2573 PERL_CALLCONV void*     Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
2574                         __attribute__warn_unused_result__;
2575 #define PERL_ARGS_ASSERT_PTR_TABLE_FETCH        \
2576         assert(tbl)
2577
2578 PERL_CALLCONV void      Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl);
2579 PERL_CALLCONV PTR_TBL_t*        Perl_ptr_table_new(pTHX)
2580                         __attribute__warn_unused_result__;
2581
2582 PERL_CALLCONV void      Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl);
2583 #define PERL_ARGS_ASSERT_PTR_TABLE_SPLIT        \
2584         assert(tbl)
2585 PERL_CALLCONV void      Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv);
2586 #define PERL_ARGS_ASSERT_PTR_TABLE_STORE        \
2587         assert(tbl); assert(newsv)
2588 PERL_CALLCONV void      Perl_push_scope(pTHX);
2589 PERL_CALLCONV char*     Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim);
2590 #define PERL_ARGS_ASSERT_PV_DISPLAY     \
2591         assert(dsv); assert(pv)
2592 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);
2593 #define PERL_ARGS_ASSERT_PV_ESCAPE      \
2594         assert(str)
2595 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);
2596 #define PERL_ARGS_ASSERT_PV_PRETTY      \
2597         assert(dsv); assert(str)
2598 PERL_CALLCONV char*     Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags);
2599 #define PERL_ARGS_ASSERT_PV_UNI_DISPLAY \
2600         assert(dsv); assert(spv)
2601 PERL_CALLCONV void      Perl_qerror(pTHX_ SV* err);
2602 #define PERL_ARGS_ASSERT_QERROR \
2603         assert(err)
2604 PERL_CALLCONV REGEXP*   Perl_re_compile(pTHX_ SV * const pattern, U32 orig_rx_flags);
2605 #define PERL_ARGS_ASSERT_RE_COMPILE     \
2606         assert(pattern)
2607 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);
2608 #define PERL_ARGS_ASSERT_RE_INTUIT_START        \
2609         assert(rx); assert(strbeg); assert(strpos); assert(strend)
2610 PERL_CALLCONV SV*       Perl_re_intuit_string(pTHX_ REGEXP  *const r);
2611 #define PERL_ARGS_ASSERT_RE_INTUIT_STRING       \
2612         assert(r)
2613 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, U32 rx_flags, U32 pm_flags);
2614 #define PERL_ARGS_ASSERT_RE_OP_COMPILE  \
2615         assert(eng)
2616 PERL_CALLCONV Malloc_t  Perl_realloc(Malloc_t where, MEM_SIZE nbytes)
2617                         __attribute__warn_unused_result__;
2618
2619 PERL_CALLCONV void      Perl_reentrant_free(pTHX);
2620 PERL_CALLCONV void      Perl_reentrant_init(pTHX);
2621 PERL_CALLCONV void*     Perl_reentrant_retry(const char *f, ...);
2622 #define PERL_ARGS_ASSERT_REENTRANT_RETRY        \
2623         assert(f)
2624 PERL_CALLCONV void      Perl_reentrant_size(pTHX);
2625 #ifndef NO_MATHOMS
2626 PERL_CALLCONV OP*       Perl_ref(pTHX_ OP* o, I32 type);
2627 #endif
2628 PERL_CALLCONV HV *      Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *c, U32 flags);
2629 PERL_CALLCONV SV *      Perl_refcounted_he_fetch_pv(pTHX_ const struct refcounted_he *chain, const char *key, U32 hash, U32 flags);
2630 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PV \
2631         assert(key)
2632 PERL_CALLCONV SV *      Perl_refcounted_he_fetch_pvn(pTHX_ const struct refcounted_he *chain, const char *keypv, STRLEN keylen, U32 hash, U32 flags);
2633 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PVN        \
2634         assert(keypv)
2635 PERL_CALLCONV SV *      Perl_refcounted_he_fetch_sv(pTHX_ const struct refcounted_he *chain, SV *key, U32 hash, U32 flags);
2636 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_SV \
2637         assert(key)
2638 PERL_CALLCONV void      Perl_refcounted_he_free(pTHX_ struct refcounted_he *he);
2639 PERL_CALLCONV struct refcounted_he *    Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he);
2640 PERL_CALLCONV struct refcounted_he *    Perl_refcounted_he_new_pv(pTHX_ struct refcounted_he *parent, const char *key, U32 hash, SV *value, U32 flags);
2641 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PV   \
2642         assert(key)
2643 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);
2644 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PVN  \
2645         assert(keypv)
2646 PERL_CALLCONV struct refcounted_he *    Perl_refcounted_he_new_sv(pTHX_ struct refcounted_he *parent, SV *key, U32 hash, SV *value, U32 flags);
2647 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_SV   \
2648         assert(key)
2649 PERL_CALLCONV SV*       Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value, const U32 flags);
2650 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF \
2651         assert(rx)
2652 PERL_CALLCONV SV*       Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags);
2653 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL     \
2654         assert(rx)
2655 PERL_CALLCONV bool      Perl_reg_named_buff_exists(pTHX_ REGEXP * const rx, SV * const key, const U32 flags);
2656 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS  \
2657         assert(rx); assert(key)
2658 PERL_CALLCONV SV*       Perl_reg_named_buff_fetch(pTHX_ REGEXP * const rx, SV * const namesv, const U32 flags);
2659 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH   \
2660         assert(rx); assert(namesv)
2661 PERL_CALLCONV SV*       Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const rx, const U32 flags);
2662 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY        \
2663         assert(rx)
2664 PERL_CALLCONV SV*       Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey, const U32 flags);
2665 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER    \
2666         assert(rx)
2667 PERL_CALLCONV SV*       Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags);
2668 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY \
2669         assert(rx)
2670 PERL_CALLCONV SV*       Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags);
2671 #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR  \
2672         assert(rx)
2673 PERL_CALLCONV void      Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv);
2674 #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH        \
2675         assert(rx)
2676 PERL_CALLCONV I32       Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv, const I32 paren);
2677 #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH       \
2678         assert(rx); assert(sv)
2679 PERL_CALLCONV void      Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren, SV const * const value);
2680 #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE        \
2681         assert(rx)
2682 PERL_CALLCONV SV*       Perl_reg_qr_package(pTHX_ REGEXP * const rx);
2683 #define PERL_ARGS_ASSERT_REG_QR_PACKAGE \
2684         assert(rx)
2685 PERL_CALLCONV REGEXP*   Perl_reg_temp_copy(pTHX_ REGEXP* dsv, REGEXP* ssv);
2686 #define PERL_ARGS_ASSERT_REG_TEMP_COPY  \
2687         assert(ssv)
2688 PERL_CALLCONV SV*       Perl_regclass_swash(pTHX_ const regexp *prog, const struct regnode *node, bool doinit, SV **listsvp, SV **altsvp);
2689 #define PERL_ARGS_ASSERT_REGCLASS_SWASH \
2690         assert(node)
2691 PERL_CALLCONV void      Perl_regdump(pTHX_ const regexp* r);
2692 #define PERL_ARGS_ASSERT_REGDUMP        \
2693         assert(r)
2694 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);
2695 #define PERL_ARGS_ASSERT_REGEXEC_FLAGS  \
2696         assert(rx); assert(stringarg); assert(strend); assert(strbeg); assert(sv)
2697 PERL_CALLCONV void      Perl_regfree_internal(pTHX_ REGEXP *const rx);
2698 #define PERL_ARGS_ASSERT_REGFREE_INTERNAL       \
2699         assert(rx)
2700 PERL_CALLCONV void      Perl_reginitcolors(pTHX);
2701 PERL_CALLCONV regnode*  Perl_regnext(pTHX_ regnode* p)
2702                         __attribute__warn_unused_result__;
2703
2704 PERL_CALLCONV void      Perl_repeatcpy(char* to, const char* from, I32 len, IV count);
2705 #define PERL_ARGS_ASSERT_REPEATCPY      \
2706         assert(to); assert(from)
2707 PERL_CALLCONV void      Perl_report_evil_fh(pTHX_ const GV *gv);
2708 PERL_CALLCONV void      Perl_report_uninit(pTHX_ const SV *uninit_sv);
2709 PERL_CALLCONV void      Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have);
2710 PERL_CALLCONV void      Perl_require_pv(pTHX_ const char* pv);
2711 #define PERL_ARGS_ASSERT_REQUIRE_PV     \
2712         assert(pv)
2713 PERL_CALLCONV char*     Perl_rninstr(const char* big, const char* bigend, const char* little, const char* lend)
2714                         __attribute__warn_unused_result__
2715                         __attribute__pure__;
2716 #define PERL_ARGS_ASSERT_RNINSTR        \
2717         assert(big); assert(bigend); assert(little); assert(lend)
2718
2719 PERL_CALLCONV void      Perl_rpeep(pTHX_ OP* o);
2720 PERL_CALLCONV Sighandler_t      Perl_rsignal(pTHX_ int i, Sighandler_t t);
2721 PERL_CALLCONV int       Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t);
2722 PERL_CALLCONV int       Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* save);
2723 #define PERL_ARGS_ASSERT_RSIGNAL_SAVE   \
2724         assert(save)
2725 PERL_CALLCONV Sighandler_t      Perl_rsignal_state(pTHX_ int i);
2726 PERL_CALLCONV int       Perl_runops_debug(pTHX);
2727 PERL_CALLCONV int       Perl_runops_standard(pTHX);
2728 PERL_CALLCONV CV*       Perl_rv2cv_op_cv(pTHX_ OP *cvop, U32 flags);
2729 #define PERL_ARGS_ASSERT_RV2CV_OP_CV    \
2730         assert(cvop)
2731 PERL_CALLCONV void      Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx);
2732 #define PERL_ARGS_ASSERT_RXRES_SAVE     \
2733         assert(rsp); assert(rx)
2734 PERL_CALLCONV Malloc_t  Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size)
2735                         __attribute__malloc__
2736                         __attribute__warn_unused_result__;
2737
2738 PERL_CALLCONV Free_t    Perl_safesysfree(Malloc_t where);
2739 PERL_CALLCONV Malloc_t  Perl_safesysmalloc(MEM_SIZE nbytes)
2740                         __attribute__malloc__
2741                         __attribute__warn_unused_result__;
2742
2743 PERL_CALLCONV Malloc_t  Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes)
2744                         __attribute__warn_unused_result__;
2745
2746 PERL_CALLCONV void      Perl_save_I16(pTHX_ I16* intp);
2747 #define PERL_ARGS_ASSERT_SAVE_I16       \
2748         assert(intp)
2749 PERL_CALLCONV void      Perl_save_I32(pTHX_ I32* intp);
2750 #define PERL_ARGS_ASSERT_SAVE_I32       \
2751         assert(intp)
2752 PERL_CALLCONV void      Perl_save_I8(pTHX_ I8* bytep);
2753 #define PERL_ARGS_ASSERT_SAVE_I8        \
2754         assert(bytep)
2755 PERL_CALLCONV void      Perl_save_adelete(pTHX_ AV *av, SSize_t key);
2756 #define PERL_ARGS_ASSERT_SAVE_ADELETE   \
2757         assert(av)
2758 /* PERL_CALLCONV void   Perl_save_aelem(pTHX_ AV* av, SSize_t idx, SV **sptr); */
2759 PERL_CALLCONV void      Perl_save_aelem_flags(pTHX_ AV* av, SSize_t idx, SV **sptr, const U32 flags);
2760 #define PERL_ARGS_ASSERT_SAVE_AELEM_FLAGS       \
2761         assert(av); assert(sptr)
2762 PERL_CALLCONV I32       Perl_save_alloc(pTHX_ I32 size, I32 pad);
2763 PERL_CALLCONV void      Perl_save_aptr(pTHX_ AV** aptr);
2764 #define PERL_ARGS_ASSERT_SAVE_APTR      \
2765         assert(aptr)
2766 PERL_CALLCONV AV*       Perl_save_ary(pTHX_ GV* gv);
2767 #define PERL_ARGS_ASSERT_SAVE_ARY       \
2768         assert(gv)
2769 PERL_CALLCONV void      Perl_save_bool(pTHX_ bool* boolp);
2770 #define PERL_ARGS_ASSERT_SAVE_BOOL      \
2771         assert(boolp)
2772 PERL_CALLCONV void      Perl_save_clearsv(pTHX_ SV** svp);
2773 #define PERL_ARGS_ASSERT_SAVE_CLEARSV   \
2774         assert(svp)
2775 PERL_CALLCONV void      Perl_save_delete(pTHX_ HV *hv, char *key, I32 klen);
2776 #define PERL_ARGS_ASSERT_SAVE_DELETE    \
2777         assert(hv); assert(key)
2778 PERL_CALLCONV void      Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p);
2779 #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR        \
2780         assert(p)
2781 PERL_CALLCONV void      Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p);
2782 #ifndef NO_MATHOMS
2783 PERL_CALLCONV void      Perl_save_freeop(pTHX_ OP* o);
2784 #endif
2785 #ifndef NO_MATHOMS
2786 PERL_CALLCONV void      Perl_save_freepv(pTHX_ char* pv);
2787 #endif
2788 #ifndef NO_MATHOMS
2789 PERL_CALLCONV void      Perl_save_freesv(pTHX_ SV* sv);
2790 #endif
2791 PERL_CALLCONV void      Perl_save_generic_pvref(pTHX_ char** str);
2792 #define PERL_ARGS_ASSERT_SAVE_GENERIC_PVREF     \
2793         assert(str)
2794 PERL_CALLCONV void      Perl_save_generic_svref(pTHX_ SV** sptr);
2795 #define PERL_ARGS_ASSERT_SAVE_GENERIC_SVREF     \
2796         assert(sptr)
2797 PERL_CALLCONV void      Perl_save_gp(pTHX_ GV* gv, I32 empty);
2798 #define PERL_ARGS_ASSERT_SAVE_GP        \
2799         assert(gv)
2800 PERL_CALLCONV HV*       Perl_save_hash(pTHX_ GV* gv);
2801 #define PERL_ARGS_ASSERT_SAVE_HASH      \
2802         assert(gv)
2803 PERL_CALLCONV void      Perl_save_hdelete(pTHX_ HV *hv, SV *keysv);
2804 #define PERL_ARGS_ASSERT_SAVE_HDELETE   \
2805         assert(hv); assert(keysv)
2806 /* PERL_CALLCONV void   Perl_save_helem(pTHX_ HV *hv, SV *key, SV **sptr); */
2807 PERL_CALLCONV void      Perl_save_helem_flags(pTHX_ HV *hv, SV *key, SV **sptr, const U32 flags);
2808 #define PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS       \
2809         assert(hv); assert(key); assert(sptr)
2810 PERL_CALLCONV void      Perl_save_hints(pTHX);
2811 PERL_CALLCONV void      Perl_save_hptr(pTHX_ HV** hptr);
2812 #define PERL_ARGS_ASSERT_SAVE_HPTR      \
2813         assert(hptr)
2814 PERL_CALLCONV void      Perl_save_int(pTHX_ int* intp);
2815 #define PERL_ARGS_ASSERT_SAVE_INT       \
2816         assert(intp)
2817 PERL_CALLCONV void      Perl_save_item(pTHX_ SV* item);
2818 #define PERL_ARGS_ASSERT_SAVE_ITEM      \
2819         assert(item)
2820 PERL_CALLCONV void      Perl_save_iv(pTHX_ IV *ivp);
2821 #define PERL_ARGS_ASSERT_SAVE_IV        \
2822         assert(ivp)
2823 PERL_CALLCONV void      Perl_save_list(pTHX_ SV** sarg, I32 maxsarg);
2824 #define PERL_ARGS_ASSERT_SAVE_LIST      \
2825         assert(sarg)
2826 PERL_CALLCONV void      Perl_save_long(pTHX_ long* longp);
2827 #define PERL_ARGS_ASSERT_SAVE_LONG      \
2828         assert(longp)
2829 #ifndef NO_MATHOMS
2830 PERL_CALLCONV void      Perl_save_mortalizesv(pTHX_ SV* sv);
2831 #define PERL_ARGS_ASSERT_SAVE_MORTALIZESV       \
2832         assert(sv)
2833 #endif
2834 PERL_CALLCONV void      Perl_save_nogv(pTHX_ GV* gv);
2835 #define PERL_ARGS_ASSERT_SAVE_NOGV      \
2836         assert(gv)
2837 #ifndef NO_MATHOMS
2838 PERL_CALLCONV void      Perl_save_op(pTHX);
2839 #endif
2840 PERL_CALLCONV void      Perl_save_padsv_and_mortalize(pTHX_ PADOFFSET off);
2841 PERL_CALLCONV void      Perl_save_pptr(pTHX_ char** pptr);
2842 #define PERL_ARGS_ASSERT_SAVE_PPTR      \
2843         assert(pptr)
2844 PERL_CALLCONV void      Perl_save_pushi32ptr(pTHX_ const I32 i, void *const ptr, const int type);
2845 PERL_CALLCONV void      Perl_save_pushptr(pTHX_ void *const ptr, const int type);
2846 PERL_CALLCONV void      Perl_save_pushptrptr(pTHX_ void *const ptr1, void *const ptr2, const int type);
2847 PERL_CALLCONV void      Perl_save_re_context(pTHX);
2848 PERL_CALLCONV SV*       Perl_save_scalar(pTHX_ GV* gv);
2849 #define PERL_ARGS_ASSERT_SAVE_SCALAR    \
2850         assert(gv)
2851 PERL_CALLCONV void      Perl_save_set_svflags(pTHX_ SV *sv, U32 mask, U32 val);
2852 #define PERL_ARGS_ASSERT_SAVE_SET_SVFLAGS       \
2853         assert(sv)
2854 PERL_CALLCONV void      Perl_save_shared_pvref(pTHX_ char** str);
2855 #define PERL_ARGS_ASSERT_SAVE_SHARED_PVREF      \
2856         assert(str)
2857 PERL_CALLCONV void      Perl_save_sptr(pTHX_ SV** sptr);
2858 #define PERL_ARGS_ASSERT_SAVE_SPTR      \
2859         assert(sptr)
2860 PERL_CALLCONV void      Perl_save_strlen(pTHX_ STRLEN* ptr);
2861 #define PERL_ARGS_ASSERT_SAVE_STRLEN    \
2862         assert(ptr)
2863 PERL_CALLCONV SV*       Perl_save_svref(pTHX_ SV** sptr);
2864 #define PERL_ARGS_ASSERT_SAVE_SVREF     \
2865         assert(sptr)
2866 PERL_CALLCONV void      Perl_save_vptr(pTHX_ void *ptr);
2867 #define PERL_ARGS_ASSERT_SAVE_VPTR      \
2868         assert(ptr)
2869 PERL_CALLCONV char*     Perl_savepv(pTHX_ const char* pv)
2870                         __attribute__malloc__
2871                         __attribute__warn_unused_result__;
2872
2873 PERL_CALLCONV char*     Perl_savepvn(pTHX_ const char* pv, I32 len)
2874                         __attribute__malloc__
2875                         __attribute__warn_unused_result__;
2876
2877 PERL_CALLCONV char*     Perl_savesharedpv(pTHX_ const char* pv)
2878                         __attribute__malloc__
2879                         __attribute__warn_unused_result__;
2880
2881 PERL_CALLCONV char*     Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len)
2882                         __attribute__malloc__
2883                         __attribute__warn_unused_result__;
2884
2885 PERL_CALLCONV char*     Perl_savesharedsvpv(pTHX_ SV *sv)
2886                         __attribute__malloc__
2887                         __attribute__warn_unused_result__;
2888 #define PERL_ARGS_ASSERT_SAVESHAREDSVPV \
2889         assert(sv)
2890
2891 PERL_CALLCONV void      Perl_savestack_grow(pTHX);
2892 PERL_CALLCONV void      Perl_savestack_grow_cnt(pTHX_ I32 need);
2893 PERL_CALLCONV char*     Perl_savesvpv(pTHX_ SV* sv)
2894                         __attribute__malloc__
2895                         __attribute__warn_unused_result__;
2896 #define PERL_ARGS_ASSERT_SAVESVPV       \
2897         assert(sv)
2898
2899 PERL_CALLCONV void      Perl_savetmps(pTHX);
2900 PERL_CALLCONV OP*       Perl_sawparens(pTHX_ OP* o);
2901 PERL_CALLCONV OP*       Perl_scalar(pTHX_ OP* o);
2902 PERL_CALLCONV OP*       Perl_scalarvoid(pTHX_ OP* o);
2903 #define PERL_ARGS_ASSERT_SCALARVOID     \
2904         assert(o)
2905 PERL_CALLCONV NV        Perl_scan_bin(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
2906 #define PERL_ARGS_ASSERT_SCAN_BIN       \
2907         assert(start); assert(retlen)
2908 PERL_CALLCONV NV        Perl_scan_hex(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
2909 #define PERL_ARGS_ASSERT_SCAN_HEX       \
2910         assert(start); assert(retlen)
2911 PERL_CALLCONV char*     Perl_scan_num(pTHX_ const char* s, YYSTYPE *lvalp);
2912 #define PERL_ARGS_ASSERT_SCAN_NUM       \
2913         assert(s); assert(lvalp)
2914 PERL_CALLCONV NV        Perl_scan_oct(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
2915 #define PERL_ARGS_ASSERT_SCAN_OCT       \
2916         assert(start); assert(retlen)
2917 PERL_CALLCONV const char*       Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv);
2918 #define PERL_ARGS_ASSERT_SCAN_VERSION   \
2919         assert(s); assert(rv)
2920 PERL_CALLCONV char*     Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv);
2921 #define PERL_ARGS_ASSERT_SCAN_VSTRING   \
2922         assert(s); assert(e); assert(sv)
2923 PERL_CALLCONV U32       Perl_seed(pTHX);
2924 PERL_CALLCONV void      Perl_set_caret_X(pTHX);
2925 PERL_CALLCONV void      Perl_set_context(void *t);
2926 #define PERL_ARGS_ASSERT_SET_CONTEXT    \
2927         assert(t)
2928 PERL_CALLCONV void      Perl_set_numeric_standard(pTHX);
2929 PERL_CALLCONV void      Perl_set_numeric_underlying(pTHX);
2930 PERL_CALLCONV void      Perl_setdefout(pTHX_ GV* gv);
2931 #define PERL_ARGS_ASSERT_SETDEFOUT      \
2932         assert(gv)
2933 PERL_CALLCONV char*     Perl_setlocale(int category, const char* locale);
2934 PERL_CALLCONV HEK*      Perl_share_hek(pTHX_ const char* str, SSize_t len, U32 hash);
2935 #define PERL_ARGS_ASSERT_SHARE_HEK      \
2936         assert(str)
2937 PERL_CALLCONV void      Perl_sortsv(pTHX_ SV** array, size_t num_elts, SVCOMPARE_t cmp);
2938 #define PERL_ARGS_ASSERT_SORTSV \
2939         assert(cmp)
2940 PERL_CALLCONV void      Perl_sortsv_flags(pTHX_ SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags);
2941 #define PERL_ARGS_ASSERT_SORTSV_FLAGS   \
2942         assert(cmp)
2943 PERL_CALLCONV SV**      Perl_stack_grow(pTHX_ SV** sp, SV** p, SSize_t n);
2944 #define PERL_ARGS_ASSERT_STACK_GROW     \
2945         assert(sp); assert(p)
2946 PERL_CALLCONV PerlIO*   Perl_start_glob(pTHX_ SV *tmpglob, IO *io);
2947 #define PERL_ARGS_ASSERT_START_GLOB     \
2948         assert(tmpglob); assert(io)
2949 PERL_CALLCONV I32       Perl_start_subparse(pTHX_ I32 is_format, U32 flags);
2950 PERL_CALLCONV NV        Perl_str_to_version(pTHX_ SV *sv)
2951                         __attribute__warn_unused_result__;
2952 #define PERL_ARGS_ASSERT_STR_TO_VERSION \
2953         assert(sv)
2954
2955 PERL_CALLCONV void      Perl_sub_crush_depth(pTHX_ CV* cv);
2956 #define PERL_ARGS_ASSERT_SUB_CRUSH_DEPTH        \
2957         assert(cv)
2958 /* PERL_CALLCONV bool   sv_2bool(pTHX_ SV *const sv); */
2959 PERL_CALLCONV bool      Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags);
2960 #define PERL_ARGS_ASSERT_SV_2BOOL_FLAGS \
2961         assert(sv)
2962 PERL_CALLCONV CV*       Perl_sv_2cv(pTHX_ SV* sv, HV **const st, GV **const gvp, const I32 lref);
2963 #define PERL_ARGS_ASSERT_SV_2CV \
2964         assert(st); assert(gvp)
2965 PERL_CALLCONV IO*       Perl_sv_2io(pTHX_ SV *const sv);
2966 #define PERL_ARGS_ASSERT_SV_2IO \
2967         assert(sv)
2968 #ifndef NO_MATHOMS
2969 PERL_CALLCONV IV        Perl_sv_2iv(pTHX_ SV *sv);
2970 #define PERL_ARGS_ASSERT_SV_2IV \
2971         assert(sv)
2972 #endif
2973 PERL_CALLCONV IV        Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags);
2974 #define PERL_ARGS_ASSERT_SV_2IV_FLAGS   \
2975         assert(sv)
2976 PERL_CALLCONV SV*       Perl_sv_2mortal(pTHX_ SV *const sv);
2977 PERL_CALLCONV SV*       Perl_sv_2num(pTHX_ SV *const sv);
2978 #define PERL_ARGS_ASSERT_SV_2NUM        \
2979         assert(sv)
2980 PERL_CALLCONV NV        Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags);
2981 #define PERL_ARGS_ASSERT_SV_2NV_FLAGS   \
2982         assert(sv)
2983 #ifndef NO_MATHOMS
2984 PERL_CALLCONV char*     Perl_sv_2pv(pTHX_ SV *sv, STRLEN *lp);
2985 #define PERL_ARGS_ASSERT_SV_2PV \
2986         assert(sv)
2987 #endif
2988 PERL_CALLCONV char*     Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags);
2989 #define PERL_ARGS_ASSERT_SV_2PV_FLAGS   \
2990         assert(sv)
2991 #ifndef NO_MATHOMS
2992 PERL_CALLCONV char*     Perl_sv_2pv_nolen(pTHX_ SV* sv)
2993                         __attribute__warn_unused_result__;
2994 #define PERL_ARGS_ASSERT_SV_2PV_NOLEN   \
2995         assert(sv)
2996 #endif
2997
2998 PERL_CALLCONV char*     Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp);
2999 #define PERL_ARGS_ASSERT_SV_2PVBYTE     \
3000         assert(sv)
3001 #ifndef NO_MATHOMS
3002 PERL_CALLCONV char*     Perl_sv_2pvbyte_nolen(pTHX_ SV* sv)
3003                         __attribute__warn_unused_result__;
3004 #define PERL_ARGS_ASSERT_SV_2PVBYTE_NOLEN       \
3005         assert(sv)
3006 #endif
3007
3008 PERL_CALLCONV char*     Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp);
3009 #define PERL_ARGS_ASSERT_SV_2PVUTF8     \
3010         assert(sv)
3011 #ifndef NO_MATHOMS
3012 PERL_CALLCONV char*     Perl_sv_2pvutf8_nolen(pTHX_ SV* sv)
3013                         __attribute__warn_unused_result__;
3014 #define PERL_ARGS_ASSERT_SV_2PVUTF8_NOLEN       \
3015         assert(sv)
3016 #endif
3017
3018 #ifndef NO_MATHOMS
3019 PERL_CALLCONV UV        Perl_sv_2uv(pTHX_ SV *sv);
3020 #define PERL_ARGS_ASSERT_SV_2UV \
3021         assert(sv)
3022 #endif
3023 PERL_CALLCONV UV        Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags);
3024 #define PERL_ARGS_ASSERT_SV_2UV_FLAGS   \
3025         assert(sv)
3026 PERL_CALLCONV void      Perl_sv_backoff(SV *const sv);
3027 #define PERL_ARGS_ASSERT_SV_BACKOFF     \
3028         assert(sv)
3029 PERL_CALLCONV SV*       Perl_sv_bless(pTHX_ SV *const sv, HV *const stash);
3030 #define PERL_ARGS_ASSERT_SV_BLESS       \
3031         assert(sv); assert(stash)
3032 PERL_CALLCONV bool      Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen);
3033 #define PERL_ARGS_ASSERT_SV_CAT_DECODE  \
3034         assert(dsv); assert(encoding); assert(ssv); assert(offset); assert(tstr)
3035 PERL_CALLCONV void      Perl_sv_catpv(pTHX_ SV *const sv, const char* ptr);
3036 #define PERL_ARGS_ASSERT_SV_CATPV       \
3037         assert(sv)
3038 PERL_CALLCONV void      Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags);
3039 #define PERL_ARGS_ASSERT_SV_CATPV_FLAGS \
3040         assert(dstr); assert(sstr)
3041 PERL_CALLCONV void      Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr);
3042 #define PERL_ARGS_ASSERT_SV_CATPV_MG    \
3043         assert(sv)
3044 PERL_CALLCONV void      Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
3045                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
3046 #define PERL_ARGS_ASSERT_SV_CATPVF      \
3047         assert(sv); assert(pat)
3048
3049 PERL_CALLCONV void      Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
3050                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
3051 #define PERL_ARGS_ASSERT_SV_CATPVF_MG   \
3052         assert(sv); assert(pat)
3053
3054 #ifndef NO_MATHOMS
3055 PERL_CALLCONV void      Perl_sv_catpvn(pTHX_ SV *dsv, const char *sstr, STRLEN len);
3056 #define PERL_ARGS_ASSERT_SV_CATPVN      \
3057         assert(dsv); assert(sstr)
3058 #endif
3059 PERL_CALLCONV void      Perl_sv_catpvn_flags(pTHX_ SV *const dstr, const char *sstr, const STRLEN len, const I32 flags);
3060 #define PERL_ARGS_ASSERT_SV_CATPVN_FLAGS        \
3061         assert(dstr); assert(sstr)
3062 #ifndef NO_MATHOMS
3063 PERL_CALLCONV void      Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len);
3064 #define PERL_ARGS_ASSERT_SV_CATPVN_MG   \
3065         assert(sv); assert(ptr)
3066 #endif
3067 #ifndef NO_MATHOMS
3068 PERL_CALLCONV void      Perl_sv_catsv(pTHX_ SV *dstr, SV *sstr);
3069 #define PERL_ARGS_ASSERT_SV_CATSV       \
3070         assert(dstr)
3071 #endif
3072 PERL_CALLCONV void      Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags);
3073 #define PERL_ARGS_ASSERT_SV_CATSV_FLAGS \
3074         assert(dsv)
3075 #ifndef NO_MATHOMS
3076 PERL_CALLCONV void      Perl_sv_catsv_mg(pTHX_ SV *dsv, SV *ssv);
3077 #define PERL_ARGS_ASSERT_SV_CATSV_MG    \
3078         assert(dsv)
3079 #endif
3080 PERL_CALLCONV void      Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr);
3081 #define PERL_ARGS_ASSERT_SV_CHOP        \
3082         assert(sv)
3083 PERL_CALLCONV I32       Perl_sv_clean_all(pTHX);
3084 PERL_CALLCONV void      Perl_sv_clean_objs(pTHX);
3085 PERL_CALLCONV void      Perl_sv_clear(pTHX_ SV *const orig_sv);
3086 #define PERL_ARGS_ASSERT_SV_CLEAR       \
3087         assert(orig_sv)
3088 PERL_CALLCONV I32       Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2);
3089 PERL_CALLCONV I32       Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2, const U32 flags);
3090 PERL_CALLCONV I32       Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2);
3091 PERL_CALLCONV I32       Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2, const U32 flags);
3092 #ifndef NO_MATHOMS
3093 PERL_CALLCONV void      Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv);
3094 #define PERL_ARGS_ASSERT_SV_COPYPV      \
3095         assert(dsv); assert(ssv)
3096 #endif
3097 PERL_CALLCONV void      Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags);
3098 #define PERL_ARGS_ASSERT_SV_COPYPV_FLAGS        \
3099         assert(dsv); assert(ssv)
3100 /* PERL_CALLCONV void   Perl_sv_copypv_nomg(pTHX_ SV *const dsv, SV *const ssv); */
3101 PERL_CALLCONV void      Perl_sv_dec(pTHX_ SV *const sv);
3102 PERL_CALLCONV void      Perl_sv_dec_nomg(pTHX_ SV *const sv);
3103 PERL_CALLCONV void      Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv);
3104 #define PERL_ARGS_ASSERT_SV_DEL_BACKREF \
3105         assert(tsv); assert(sv)
3106 PERL_CALLCONV bool      Perl_sv_derived_from(pTHX_ SV* sv, const char *const name)
3107                         __attribute__warn_unused_result__;
3108 #define PERL_ARGS_ASSERT_SV_DERIVED_FROM        \
3109         assert(sv); assert(name)
3110
3111 PERL_CALLCONV bool      Perl_sv_derived_from_pv(pTHX_ SV* sv, const char *const name, U32 flags)
3112                         __attribute__warn_unused_result__;
3113 #define PERL_ARGS_ASSERT_SV_DERIVED_FROM_PV     \
3114         assert(sv); assert(name)
3115
3116 PERL_CALLCONV bool      Perl_sv_derived_from_pvn(pTHX_ SV* sv, const char *const name, const STRLEN len, U32 flags)
3117                         __attribute__warn_unused_result__;
3118 #define PERL_ARGS_ASSERT_SV_DERIVED_FROM_PVN    \
3119         assert(sv); assert(name)
3120
3121 PERL_CALLCONV bool      Perl_sv_derived_from_sv(pTHX_ SV* sv, SV *namesv, U32 flags)
3122                         __attribute__warn_unused_result__;
3123 #define PERL_ARGS_ASSERT_SV_DERIVED_FROM_SV     \
3124         assert(sv); assert(namesv)
3125
3126 PERL_CALLCONV bool      Perl_sv_destroyable(pTHX_ SV *sv);
3127 PERL_CALLCONV bool      Perl_sv_does(pTHX_ SV* sv, const char *const name)
3128                         __attribute__warn_unused_result__;
3129 #define PERL_ARGS_ASSERT_SV_DOES        \
3130         assert(sv); assert(name)
3131
3132 PERL_CALLCONV bool      Perl_sv_does_pv(pTHX_ SV* sv, const char *const name, U32 flags)
3133                         __attribute__warn_unused_result__;
3134 #define PERL_ARGS_ASSERT_SV_DOES_PV     \
3135         assert(sv); assert(name)
3136
3137 PERL_CALLCONV bool      Perl_sv_does_pvn(pTHX_ SV* sv, const char *const name, const STRLEN len, U32 flags)
3138                         __attribute__warn_unused_result__;
3139 #define PERL_ARGS_ASSERT_SV_DOES_PVN    \
3140         assert(sv); assert(name)
3141
3142 PERL_CALLCONV bool      Perl_sv_does_sv(pTHX_ SV* sv, SV* namesv, U32 flags)
3143                         __attribute__warn_unused_result__;
3144 #define PERL_ARGS_ASSERT_SV_DOES_SV     \
3145         assert(sv); assert(namesv)
3146
3147 PERL_CALLCONV void      Perl_sv_dump(pTHX_ SV* sv);
3148 /* PERL_CALLCONV I32    sv_eq(pTHX_ SV* sv1, SV* sv2); */
3149 PERL_CALLCONV I32       Perl_sv_eq_flags(pTHX_ SV* sv1, SV* sv2, const U32 flags);
3150 #ifndef NO_MATHOMS
3151 PERL_CALLCONV void      Perl_sv_force_normal(pTHX_ SV *sv);
3152 #define PERL_ARGS_ASSERT_SV_FORCE_NORMAL        \
3153         assert(sv)
3154 #endif
3155 PERL_CALLCONV void      Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags);
3156 #define PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS  \
3157         assert(sv)
3158 PERL_CALLCONV void      Perl_sv_free(pTHX_ SV *const sv);
3159 PERL_CALLCONV void      Perl_sv_free2(pTHX_ SV *const sv, const U32 refcnt);
3160 #define PERL_ARGS_ASSERT_SV_FREE2       \
3161         assert(sv)
3162 PERL_CALLCONV void      Perl_sv_free_arenas(pTHX);
3163 PERL_CALLCONV SV*       Perl_sv_get_backrefs(SV *const sv);
3164 #define PERL_ARGS_ASSERT_SV_GET_BACKREFS        \
3165         assert(sv)
3166 PERL_CALLCONV char*     Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append);
3167 #define PERL_ARGS_ASSERT_SV_GETS        \
3168         assert(sv); assert(fp)
3169 PERL_CALLCONV char*     Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen);
3170 #define PERL_ARGS_ASSERT_SV_GROW        \
3171         assert(sv)
3172 PERL_CALLCONV void      Perl_sv_inc(pTHX_ SV *const sv);
3173 PERL_CALLCONV void      Perl_sv_inc_nomg(pTHX_ SV *const sv);
3174 #ifndef NO_MATHOMS
3175 PERL_CALLCONV void      Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen);
3176 #define PERL_ARGS_ASSERT_SV_INSERT      \
3177         assert(bigstr); assert(little)
3178 #endif
3179 PERL_CALLCONV void      Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *little, const STRLEN littlelen, const U32 flags);
3180 #define PERL_ARGS_ASSERT_SV_INSERT_FLAGS        \
3181         assert(bigstr); assert(little)
3182 PERL_CALLCONV int       Perl_sv_isa(pTHX_ SV* sv, const char *const name);
3183 #define PERL_ARGS_ASSERT_SV_ISA \
3184         assert(name)
3185 PERL_CALLCONV int       Perl_sv_isobject(pTHX_ SV* sv);
3186 PERL_CALLCONV IV        Perl_sv_iv(pTHX_ SV* sv);
3187 #define PERL_ARGS_ASSERT_SV_IV  \
3188         assert(sv)
3189 PERL_CALLCONV STRLEN    Perl_sv_len(pTHX_ SV *const sv);
3190 PERL_CALLCONV STRLEN    Perl_sv_len_utf8(pTHX_ SV *const sv);
3191 PERL_CALLCONV STRLEN    Perl_sv_len_utf8_nomg(pTHX_ SV *const sv);
3192 #define PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG       \
3193         assert(sv)
3194 PERL_CALLCONV void      Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how, const char *const name, const I32 namlen);
3195 #define PERL_ARGS_ASSERT_SV_MAGIC       \
3196         assert(sv)
3197 PERL_CALLCONV MAGIC *   Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, const MGVTBL *const vtbl, const char *const name, const I32 namlen);
3198 #define PERL_ARGS_ASSERT_SV_MAGICEXT    \
3199         assert(sv)
3200 PERL_CALLCONV MAGIC *   Perl_sv_magicext_mglob(pTHX_ SV *sv);
3201 #define PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB      \
3202         assert(sv)
3203 #ifndef NO_MATHOMS
3204 PERL_CALLCONV SV*       Perl_sv_mortalcopy(pTHX_ SV *const oldsv)
3205                         __attribute__warn_unused_result__;
3206 #endif
3207
3208 PERL_CALLCONV SV*       Perl_sv_mortalcopy_flags(pTHX_ SV *const oldsv, U32 flags)
3209                         __attribute__warn_unused_result__;
3210
3211 PERL_CALLCONV SV*       Perl_sv_newmortal(pTHX)
3212                         __attribute__warn_unused_result__;
3213
3214 PERL_CALLCONV SV*       Perl_sv_newref(pTHX_ SV *const sv);
3215 #ifndef NO_MATHOMS
3216 PERL_CALLCONV void      Perl_sv_nolocking(pTHX_ SV *sv);
3217 #endif
3218 PERL_CALLCONV void      Perl_sv_nosharing(pTHX_ SV *sv);
3219 #ifndef NO_MATHOMS
3220 PERL_CALLCONV void      Perl_sv_nounlocking(pTHX_ SV *sv);
3221 #endif
3222 PERL_CALLCONV NV        Perl_sv_nv(pTHX_ SV* sv);
3223 #define PERL_ARGS_ASSERT_SV_NV  \
3224         assert(sv)
3225 #ifndef PERL_NO_INLINE_FUNCTIONS
3226 PERL_STATIC_INLINE bool S_sv_only_taint_gmagic(SV *sv);
3227 #define PERL_ARGS_ASSERT_SV_ONLY_TAINT_GMAGIC   \
3228         assert(sv)
3229 #endif
3230 PERL_CALLCONV char*     Perl_sv_peek(pTHX_ SV* sv);
3231 PERL_CALLCONV void      Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp);
3232 #define PERL_ARGS_ASSERT_SV_POS_B2U     \
3233         assert(offsetp)
3234 PERL_CALLCONV STRLEN    Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags);
3235 #define PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS       \
3236         assert(sv)
3237 PERL_CALLCONV void      Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp);
3238 #define PERL_ARGS_ASSERT_SV_POS_U2B     \
3239         assert(offsetp)
3240 PERL_CALLCONV STRLEN    Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp, U32 flags);
3241 #define PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS       \
3242         assert(sv)
3243 #ifndef NO_MATHOMS
3244 PERL_CALLCONV char*     Perl_sv_pv(pTHX_ SV *sv)
3245                         __attribute__warn_unused_result__;
3246 #define PERL_ARGS_ASSERT_SV_PV  \
3247         assert(sv)
3248 #endif
3249
3250 #ifndef NO_MATHOMS
3251 PERL_CALLCONV char*     Perl_sv_pvbyte(pTHX_ SV *sv)
3252                         __attribute__warn_unused_result__;
3253 #define PERL_ARGS_ASSERT_SV_PVBYTE      \
3254         assert(sv)
3255 #endif
3256
3257 PERL_CALLCONV char*     Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp);
3258 #define PERL_ARGS_ASSERT_SV_PVBYTEN     \
3259         assert(sv); assert(lp)
3260 PERL_CALLCONV char*     Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp);
3261 #define PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE       \
3262         assert(sv)
3263 PERL_CALLCONV char*     Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp);
3264 #define PERL_ARGS_ASSERT_SV_PVN \
3265         assert(sv); assert(lp)
3266 #ifndef NO_MATHOMS
3267 PERL_CALLCONV char*     Perl_sv_pvn_force(pTHX_ SV* sv, STRLEN* lp);
3268 #define PERL_ARGS_ASSERT_SV_PVN_FORCE   \
3269         assert(sv)
3270 #endif
3271 PERL_CALLCONV char*     Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags);
3272 #define PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS     \
3273         assert(sv)
3274 PERL_CALLCONV char*     Perl_sv_pvn_nomg(pTHX_ SV* sv, STRLEN* lp);
3275 #define PERL_ARGS_ASSERT_SV_PVN_NOMG    \
3276         assert(sv)
3277 #ifndef NO_MATHOMS
3278 PERL_CALLCONV char*     Perl_sv_pvutf8(pTHX_ SV *sv)
3279                         __attribute__warn_unused_result__;
3280 #define PERL_ARGS_ASSERT_SV_PVUTF8      \
3281         assert(sv)
3282 #endif
3283
3284 PERL_CALLCONV char*     Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp);
3285 #define PERL_ARGS_ASSERT_SV_PVUTF8N     \
3286         assert(sv); assert(lp)
3287 PERL_CALLCONV char*     Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp);
3288 #define PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE       \
3289         assert(sv)
3290 PERL_CALLCONV char*     Perl_sv_recode_to_utf8(pTHX_ SV* sv, SV *encoding);
3291 #define PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8      \
3292         assert(sv); assert(encoding)
3293 PERL_CALLCONV SV*       Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob);
3294 #define PERL_ARGS_ASSERT_SV_REF \
3295         assert(sv)
3296 PERL_CALLCONV const char*       Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
3297                         __attribute__warn_unused_result__;
3298 #define PERL_ARGS_ASSERT_SV_REFTYPE     \
3299         assert(sv)
3300
3301 PERL_CALLCONV void      Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv);
3302 #define PERL_ARGS_ASSERT_SV_REPLACE     \
3303         assert(sv); assert(nsv)
3304 PERL_CALLCONV void      Perl_sv_report_used(pTHX);
3305 PERL_CALLCONV void      Perl_sv_reset(pTHX_ const char* s, HV *const stash);
3306 #define PERL_ARGS_ASSERT_SV_RESET       \
3307         assert(s)
3308 PERL_CALLCONV void      Perl_sv_resetpvn(pTHX_ const char* s, STRLEN len, HV *const stash);
3309 PERL_CALLCONV SV*       Perl_sv_rvunweaken(pTHX_ SV *const sv);
3310 #define PERL_ARGS_ASSERT_SV_RVUNWEAKEN  \
3311         assert(sv)
3312 PERL_CALLCONV SV*       Perl_sv_rvweaken(pTHX_ SV *const sv);
3313 #define PERL_ARGS_ASSERT_SV_RVWEAKEN    \
3314         assert(sv)
3315 PERL_CALLCONV void      Perl_sv_set_undef(pTHX_ SV *sv);
3316 #define PERL_ARGS_ASSERT_SV_SET_UNDEF   \
3317         assert(sv)
3318 PERL_CALLCONV void      Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek);
3319 #define PERL_ARGS_ASSERT_SV_SETHEK      \
3320         assert(sv)
3321 PERL_CALLCONV void      Perl_sv_setiv(pTHX_ SV *const sv, const IV num);
3322 #define PERL_ARGS_ASSERT_SV_SETIV       \
3323         assert(sv)
3324 PERL_CALLCONV void      Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i);
3325 #define PERL_ARGS_ASSERT_SV_SETIV_MG    \
3326         assert(sv)
3327 PERL_CALLCONV void      Perl_sv_setnv(pTHX_ SV *const sv, const NV num);
3328 #define PERL_ARGS_ASSERT_SV_SETNV       \
3329         assert(sv)
3330 PERL_CALLCONV void      Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num);
3331 #define PERL_ARGS_ASSERT_SV_SETNV_MG    \
3332         assert(sv)
3333 PERL_CALLCONV void      Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr);
3334 #define PERL_ARGS_ASSERT_SV_SETPV       \
3335         assert(sv)
3336 PERL_CALLCONV char  *   Perl_sv_setpv_bufsize(pTHX_ SV *const sv, const STRLEN cur, const STRLEN len);
3337 #define PERL_ARGS_ASSERT_SV_SETPV_BUFSIZE       \
3338         assert(sv)
3339 PERL_CALLCONV void      Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr);
3340 #define PERL_ARGS_ASSERT_SV_SETPV_MG    \
3341         assert(sv)
3342 PERL_CALLCONV void      Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
3343                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
3344 #define PERL_ARGS_ASSERT_SV_SETPVF      \
3345         assert(sv); assert(pat)
3346
3347 PERL_CALLCONV void      Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
3348                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
3349 #define PERL_ARGS_ASSERT_SV_SETPVF_MG   \
3350         assert(sv); assert(pat)
3351
3352 #ifndef NO_MATHOMS
3353 PERL_CALLCONV void      Perl_sv_setpviv(pTHX_ SV *const sv, const IV num);
3354 #define PERL_ARGS_ASSERT_SV_SETPVIV     \
3355         assert(sv)
3356 #endif
3357 #ifndef NO_MATHOMS
3358 PERL_CALLCONV void      Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv);
3359 #define PERL_ARGS_ASSERT_SV_SETPVIV_MG  \
3360         assert(sv)
3361 #endif
3362 PERL_CALLCONV void      Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len);
3363 #define PERL_ARGS_ASSERT_SV_SETPVN      \
3364         assert(sv)
3365 PERL_CALLCONV void      Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len);
3366 #define PERL_ARGS_ASSERT_SV_SETPVN_MG   \
3367         assert(sv); assert(ptr)
3368 PERL_CALLCONV SV*       Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv);
3369 #define PERL_ARGS_ASSERT_SV_SETREF_IV   \
3370         assert(rv)
3371 PERL_CALLCONV SV*       Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv);
3372 #define PERL_ARGS_ASSERT_SV_SETREF_NV   \
3373         assert(rv)
3374 PERL_CALLCONV SV*       Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv);
3375 #define PERL_ARGS_ASSERT_SV_SETREF_PV   \
3376         assert(rv)
3377 PERL_CALLCONV SV*       Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname, const char *const pv, const STRLEN n);
3378 #define PERL_ARGS_ASSERT_SV_SETREF_PVN  \
3379         assert(rv); assert(pv)
3380 PERL_CALLCONV SV*       Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv);
3381 #define PERL_ARGS_ASSERT_SV_SETREF_UV   \
3382         assert(rv)
3383 #ifndef NO_MATHOMS
3384 PERL_CALLCONV void      Perl_sv_setsv(pTHX_ SV *dstr, SV *sstr);
3385 #define PERL_ARGS_ASSERT_SV_SETSV       \
3386         assert(dstr)
3387 #endif
3388 PERL_CALLCONV void      Perl_sv_setsv_flags(pTHX_ SV *dstr, SV *sstr, const I32 flags);
3389 #define PERL_ARGS_ASSERT_SV_SETSV_FLAGS \
3390         assert(dstr)
3391 PERL_CALLCONV void      Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr);
3392 #define PERL_ARGS_ASSERT_SV_SETSV_MG    \
3393         assert(dstr)
3394 PERL_CALLCONV void      Perl_sv_setuv(pTHX_ SV *const sv, const UV num);
3395 #define PERL_ARGS_ASSERT_SV_SETUV       \
3396         assert(sv)
3397 PERL_CALLCONV void      Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u);
3398 #define PERL_ARGS_ASSERT_SV_SETUV_MG    \
3399         assert(sv)
3400 PERL_CALLCONV SV*       Perl_sv_string_from_errnum(pTHX_ int errnum, SV* tgtsv);
3401 #ifndef NO_MATHOMS
3402 PERL_CALLCONV void      Perl_sv_taint(pTHX_ SV* sv);
3403 #define PERL_ARGS_ASSERT_SV_TAINT       \
3404         assert(sv)
3405 #endif
3406 PERL_CALLCONV bool      Perl_sv_tainted(pTHX_ SV *const sv)
3407                         __attribute__warn_unused_result__;
3408 #define PERL_ARGS_ASSERT_SV_TAINTED     \
3409         assert(sv)
3410
3411 PERL_CALLCONV I32       Perl_sv_true(pTHX_ SV *const sv);
3412 PERL_CALLCONV char*     Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
3413                         __attribute__warn_unused_result__;
3414 #define PERL_ARGS_ASSERT_SV_UNI_DISPLAY \
3415         assert(dsv); assert(ssv)
3416
3417 PERL_CALLCONV int       Perl_sv_unmagic(pTHX_ SV *const sv, const int type);
3418 #define PERL_ARGS_ASSERT_SV_UNMAGIC     \
3419         assert(sv)
3420 PERL_CALLCONV int       Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl);
3421 #define PERL_ARGS_ASSERT_SV_UNMAGICEXT  \
3422         assert(sv)
3423 #ifndef NO_MATHOMS
3424 PERL_CALLCONV void      Perl_sv_unref(pTHX_ SV* sv);
3425 #define PERL_ARGS_ASSERT_SV_UNREF       \
3426         assert(sv)
3427 #endif
3428 PERL_CALLCONV void      Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags);
3429 #define PERL_ARGS_ASSERT_SV_UNREF_FLAGS \
3430         assert(ref)
3431 PERL_CALLCONV void      Perl_sv_untaint(pTHX_ SV *const sv);
3432 #define PERL_ARGS_ASSERT_SV_UNTAINT     \
3433         assert(sv)
3434 PERL_CALLCONV void      Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type);
3435 #define PERL_ARGS_ASSERT_SV_UPGRADE     \
3436         assert(sv)
3437 #ifndef NO_MATHOMS
3438 PERL_CALLCONV void      Perl_sv_usepvn(pTHX_ SV* sv, char* ptr, STRLEN len);
3439 #define PERL_ARGS_ASSERT_SV_USEPVN      \
3440         assert(sv)
3441 #endif
3442 PERL_CALLCONV void      Perl_sv_usepvn_flags(pTHX_ SV *const sv, char* ptr, const STRLEN len, const U32 flags);
3443 #define PERL_ARGS_ASSERT_SV_USEPVN_FLAGS        \
3444         assert(sv)
3445 #ifndef NO_MATHOMS
3446 PERL_CALLCONV void      Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len);
3447 #define PERL_ARGS_ASSERT_SV_USEPVN_MG   \
3448         assert(sv)
3449 #endif
3450 PERL_CALLCONV bool      Perl_sv_utf8_decode(pTHX_ SV *const sv);
3451 #define PERL_ARGS_ASSERT_SV_UTF8_DECODE \
3452         assert(sv)
3453 PERL_CALLCONV bool      Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok);
3454 #define PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE      \
3455         assert(sv)
3456 PERL_CALLCONV void      Perl_sv_utf8_encode(pTHX_ SV *const sv);
3457 #define PERL_ARGS_ASSERT_SV_UTF8_ENCODE \
3458         assert(sv)
3459 #ifndef NO_MATHOMS
3460 PERL_CALLCONV STRLEN    Perl_sv_utf8_upgrade(pTHX_ SV *sv);
3461 #define PERL_ARGS_ASSERT_SV_UTF8_UPGRADE        \
3462         assert(sv)
3463 #endif
3464 /* PERL_CALLCONV STRLEN Perl_sv_utf8_upgrade_flags(pTHX_ SV *const sv, const I32 flags); */
3465 PERL_CALLCONV STRLEN    Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra);
3466 #define PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW     \
3467         assert(sv)
3468 /* PERL_CALLCONV STRLEN sv_utf8_upgrade_nomg(pTHX_ SV *sv); */
3469 PERL_CALLCONV UV        Perl_sv_uv(pTHX_ SV* sv);
3470 #define PERL_ARGS_ASSERT_SV_UV  \
3471         assert(sv)
3472 PERL_CALLCONV void      Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args);
3473 #define PERL_ARGS_ASSERT_SV_VCATPVF     \
3474         assert(sv); assert(pat)
3475 PERL_CALLCONV void      Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args);
3476 #define PERL_ARGS_ASSERT_SV_VCATPVF_MG  \
3477         assert(sv); assert(pat)
3478 PERL_CALLCONV void      Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen, va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted);
3479 #define PERL_ARGS_ASSERT_SV_VCATPVFN    \
3480         assert(sv); assert(pat)
3481 PERL_CALLCONV void      Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen, va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted, const U32 flags);
3482 #define PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS      \
3483         assert(sv); assert(pat)
3484 PERL_CALLCONV void      Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args);
3485 #define PERL_ARGS_ASSERT_SV_VSETPVF     \
3486         assert(sv); assert(pat)
3487 PERL_CALLCONV void      Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args);
3488 #define PERL_ARGS_ASSERT_SV_VSETPVF_MG  \
3489         assert(sv); assert(pat)
3490 PERL_CALLCONV void      Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen, va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted);
3491 #define PERL_ARGS_ASSERT_SV_VSETPVFN    \
3492         assert(sv); assert(pat)
3493 PERL_CALLCONV UV        Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8);
3494 #define PERL_ARGS_ASSERT_SWASH_FETCH    \
3495         assert(swash); assert(ptr)
3496 PERL_CALLCONV SV*       Perl_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none)
3497                         __attribute__warn_unused_result__;
3498 #define PERL_ARGS_ASSERT_SWASH_INIT     \
3499         assert(pkg); assert(name); assert(listsv)
3500
3501 PERL_CALLCONV void      Perl_sync_locale(pTHX);
3502 PERL_CALLCONV void      Perl_sys_init(int* argc, char*** argv);
3503 #define PERL_ARGS_ASSERT_SYS_INIT       \
3504         assert(argc); assert(argv)
3505 PERL_CALLCONV void      Perl_sys_init3(int* argc, char*** argv, char*** env);
3506 #define PERL_ARGS_ASSERT_SYS_INIT3      \
3507         assert(argc); assert(argv); assert(env)
3508 PERL_CALLCONV void      Perl_sys_term(void);
3509 PERL_CALLCONV void      Perl_taint_env(pTHX);
3510 PERL_CALLCONV void      Perl_taint_proper(pTHX_ const char* f, const char *const s);
3511 #define PERL_ARGS_ASSERT_TAINT_PROPER   \
3512         assert(s)
3513 PERL_CALLCONV OP *      Perl_tied_method(pTHX_ SV *methname, SV **sp, SV *const sv, const MAGIC *const mg, const U32 flags, U32 argc, ...);
3514 #define PERL_ARGS_ASSERT_TIED_METHOD    \
3515         assert(methname); assert(sp); assert(sv); assert(mg)
3516 PERL_CALLCONV SSize_t   Perl_tmps_grow_p(pTHX_ SSize_t ix);
3517 /* PERL_CALLCONV UV     Perl_to_uni_fold(pTHX_ UV c, U8 *p, STRLEN *lenp); */
3518 PERL_CALLCONV UV        Perl_to_uni_lower(pTHX_ UV c, U8 *p, STRLEN *lenp);
3519 #define PERL_ARGS_ASSERT_TO_UNI_LOWER   \
3520         assert(p); assert(lenp)
3521 PERL_CALLCONV U32       Perl_to_uni_lower_lc(pTHX_ U32 c)
3522                         __attribute__deprecated__
3523                         __attribute__warn_unused_result__;
3524
3525 PERL_CALLCONV UV        Perl_to_uni_title(pTHX_ UV c, U8 *p, STRLEN *lenp);
3526 #define PERL_ARGS_ASSERT_TO_UNI_TITLE   \
3527         assert(p); assert(lenp)
3528 PERL_CALLCONV U32       Perl_to_uni_title_lc(pTHX_ U32 c)
3529                         __attribute__deprecated__
3530                         __attribute__warn_unused_result__;
3531
3532 PERL_CALLCONV UV        Perl_to_uni_upper(pTHX_ UV c, U8 *p, STRLEN *lenp);
3533 #define PERL_ARGS_ASSERT_TO_UNI_UPPER   \
3534         assert(p); assert(lenp)
3535 PERL_CALLCONV U32       Perl_to_uni_upper_lc(pTHX_ U32 c)
3536                         __attribute__deprecated__
3537                         __attribute__warn_unused_result__;
3538
3539 #ifndef NO_MATHOMS
3540 PERL_CALLCONV UV        Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
3541                         __attribute__deprecated__;
3542 #define PERL_ARGS_ASSERT_TO_UTF8_FOLD   \
3543         assert(p); assert(ustrp)
3544 #endif
3545
3546 #ifndef NO_MATHOMS
3547 PERL_CALLCONV UV        Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
3548                         __attribute__deprecated__;
3549 #define PERL_ARGS_ASSERT_TO_UTF8_LOWER  \
3550         assert(p); assert(ustrp)
3551 #endif
3552
3553 #ifndef NO_MATHOMS
3554 PERL_CALLCONV UV        Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
3555                         __attribute__deprecated__;
3556 #define PERL_ARGS_ASSERT_TO_UTF8_TITLE  \
3557         assert(p); assert(ustrp)
3558 #endif
3559
3560 #ifndef NO_MATHOMS
3561 PERL_CALLCONV UV        Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
3562                         __attribute__deprecated__;
3563 #define PERL_ARGS_ASSERT_TO_UTF8_UPPER  \
3564         assert(p); assert(ustrp)
3565 #endif
3566
3567 PERL_CALLCONV bool      Perl_try_amagic_bin(pTHX_ int method, int flags);
3568 PERL_CALLCONV bool      Perl_try_amagic_un(pTHX_ int method, int flags);
3569 PERL_CALLCONV I32       Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s, const char *strbeg, const char *strend, char **new_s, I32 ocnt, U32 flags);
3570 #define PERL_ARGS_ASSERT_UNPACK_STR     \
3571         assert(pat); assert(patend); assert(s); assert(strend)
3572 PERL_CALLCONV I32       Perl_unpackstring(pTHX_ const char *pat, const char *patend, const char *s, const char *strend, U32 flags);
3573 #define PERL_ARGS_ASSERT_UNPACKSTRING   \
3574         assert(pat); assert(patend); assert(s); assert(strend)
3575 PERL_CALLCONV void      Perl_unshare_hek(pTHX_ HEK* hek);
3576 PERL_CALLCONV void      Perl_unsharepvn(pTHX_ const char* sv, I32 len, U32 hash);
3577 PERL_CALLCONV SV*       Perl_upg_version(pTHX_ SV *ver, bool qv);
3578 #define PERL_ARGS_ASSERT_UPG_VERSION    \
3579         assert(ver)
3580 PERL_CALLCONV U8*       Perl_utf16_to_utf8(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen);
3581 #define PERL_ARGS_ASSERT_UTF16_TO_UTF8  \
3582         assert(p); assert(d); assert(newlen)
3583 PERL_CALLCONV U8*       Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen);
3584 #define PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED \
3585         assert(p); assert(d); assert(newlen)
3586 #ifndef PERL_NO_INLINE_FUNCTIONS
3587 PERL_STATIC_INLINE IV   Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
3588                         __attribute__warn_unused_result__;
3589 #define PERL_ARGS_ASSERT_UTF8_DISTANCE  \
3590         assert(a); assert(b)
3591 #endif
3592
3593 #ifndef PERL_NO_INLINE_FUNCTIONS
3594 PERL_STATIC_INLINE U8*  Perl_utf8_hop(const U8 *s, SSize_t off)
3595                         __attribute__warn_unused_result__;
3596 #define PERL_ARGS_ASSERT_UTF8_HOP       \
3597         assert(s)
3598 #endif
3599
3600 #ifndef PERL_NO_INLINE_FUNCTIONS
3601 PERL_STATIC_INLINE U8*  Perl_utf8_hop_back(const U8 *s, SSize_t off, const U8 *start)
3602                         __attribute__warn_unused_result__;
3603 #define PERL_ARGS_ASSERT_UTF8_HOP_BACK  \
3604         assert(s); assert(start)
3605 #endif
3606
3607 #ifndef PERL_NO_INLINE_FUNCTIONS
3608 PERL_STATIC_INLINE U8*  Perl_utf8_hop_forward(const U8 *s, SSize_t off, const U8 *end)
3609                         __attribute__warn_unused_result__;
3610 #define PERL_ARGS_ASSERT_UTF8_HOP_FORWARD       \
3611         assert(s); assert(end)
3612 #endif
3613
3614 #ifndef PERL_NO_INLINE_FUNCTIONS
3615 PERL_STATIC_INLINE U8*  Perl_utf8_hop_safe(const U8 *s, SSize_t off, const U8 *start, const U8 *end)
3616                         __attribute__warn_unused_result__;
3617 #define PERL_ARGS_ASSERT_UTF8_HOP_SAFE  \
3618         assert(s); assert(start); assert(end)
3619 #endif
3620
3621 PERL_CALLCONV STRLEN    Perl_utf8_length(pTHX_ const U8* s, const U8 *e)
3622                         __attribute__warn_unused_result__
3623                         __attribute__pure__;
3624 #define PERL_ARGS_ASSERT_UTF8_LENGTH    \
3625         assert(s); assert(e)
3626
3627 PERL_CALLCONV U8*       Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *lenp);
3628 #define PERL_ARGS_ASSERT_UTF8_TO_BYTES  \
3629         assert(s); assert(lenp)
3630 PERL_CALLCONV UV        Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
3631                         __attribute__deprecated__;
3632 #define PERL_ARGS_ASSERT_UTF8_TO_UVCHR  \
3633         assert(s)
3634
3635 PERL_CALLCONV UV        Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen);
3636 #define PERL_ARGS_ASSERT_UTF8_TO_UVCHR_BUF      \
3637         assert(s); assert(send)
3638 PERL_CALLCONV UV        Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
3639                         __attribute__deprecated__;
3640 #define PERL_ARGS_ASSERT_UTF8_TO_UVUNI  \
3641         assert(s)
3642
3643 PERL_CALLCONV UV        Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
3644                         __attribute__deprecated__;
3645 #define PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF      \
3646         assert(s); assert(send)
3647
3648 PERL_CALLCONV UV        Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, const U32 flags);
3649 #define PERL_ARGS_ASSERT_UTF8N_TO_UVCHR \
3650         assert(s)
3651 PERL_CALLCONV UV        Perl_utf8n_to_uvchr_error(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, const U32 flags, U32 * errors);
3652 #define PERL_ARGS_ASSERT_UTF8N_TO_UVCHR_ERROR   \
3653         assert(s)
3654 PERL_CALLCONV UV        Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags);
3655 #define PERL_ARGS_ASSERT_UTF8N_TO_UVUNI \
3656         assert(s)
3657 PERL_CALLCONV void      Perl_utilize(pTHX_ int aver, I32 floor, OP* version, OP* idop, OP* arg);
3658 #define PERL_ARGS_ASSERT_UTILIZE        \
3659         assert(idop)
3660 /* PERL_CALLCONV U8*    uvchr_to_utf8(pTHX_ U8 *d, UV uv); */
3661 /* PERL_CALLCONV U8*    uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags); */
3662 PERL_CALLCONV U8*       Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, const UV flags);
3663 #define PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS \
3664         assert(d)
3665 PERL_CALLCONV U8*       Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv);
3666 #define PERL_ARGS_ASSERT_UVUNI_TO_UTF8  \
3667         assert(d)
3668 PERL_CALLCONV U8*       Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags);
3669 #define PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS    \
3670         assert(d)
3671 #ifndef PERL_NO_INLINE_FUNCTIONS
3672 PERL_STATIC_INLINE UV   Perl_valid_utf8_to_uvchr(const U8 *s, STRLEN *retlen)
3673                         __attribute__warn_unused_result__;
3674 #define PERL_ARGS_ASSERT_VALID_UTF8_TO_UVCHR    \
3675         assert(s)
3676 #endif
3677
3678 PERL_CALLCONV UV        Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
3679                         __attribute__deprecated__;
3680 #define PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI    \
3681         assert(s)
3682
3683 PERL_CALLCONV bool      Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn, bool curstash);
3684 #define PERL_ARGS_ASSERT_VALIDATE_PROTO \
3685         assert(name)
3686 PERL_CALLCONV int       Perl_vcmp(pTHX_ SV *lhv, SV *rhv);
3687 #define PERL_ARGS_ASSERT_VCMP   \
3688         assert(lhv); assert(rhv)
3689 PERL_CALLCONV_NO_RET void       Perl_vcroak(pTHX_ const char* pat, va_list* args)
3690                         __attribute__noreturn__;
3691
3692 PERL_CALLCONV void      Perl_vdeb(pTHX_ const char* pat, va_list* args);
3693 #define PERL_ARGS_ASSERT_VDEB   \
3694         assert(pat)
3695 PERL_CALLCONV char*     Perl_vform(pTHX_ const char* pat, va_list* args);
3696 #define PERL_ARGS_ASSERT_VFORM  \
3697         assert(pat)
3698 PERL_CALLCONV void      Perl_vivify_defelem(pTHX_ SV* sv);
3699 #define PERL_ARGS_ASSERT_VIVIFY_DEFELEM \
3700         assert(sv)
3701 PERL_CALLCONV SV*       Perl_vivify_ref(pTHX_ SV* sv, U32 to_what)
3702                         __attribute__warn_unused_result__;
3703 #define PERL_ARGS_ASSERT_VIVIFY_REF     \
3704         assert(sv)
3705
3706 PERL_CALLCONV void      Perl_vload_module(pTHX_ U32 flags, SV* name, SV* ver, va_list* args);
3707 #define PERL_ARGS_ASSERT_VLOAD_MODULE   \
3708         assert(name)
3709 PERL_CALLCONV SV*       Perl_vmess(pTHX_ const char* pat, va_list* args);
3710 #define PERL_ARGS_ASSERT_VMESS  \
3711         assert(pat)
3712 PERL_CALLCONV SV*       Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
3713                         __attribute__warn_unused_result__;
3714 #define PERL_ARGS_ASSERT_VNEWSVPVF      \
3715         assert(pat)
3716
3717 PERL_CALLCONV SV*       Perl_vnormal(pTHX_ SV *vs);
3718 #define PERL_ARGS_ASSERT_VNORMAL        \
3719         assert(vs)
3720 PERL_CALLCONV SV*       Perl_vnumify(pTHX_ SV *vs);
3721 #define PERL_ARGS_ASSERT_VNUMIFY        \
3722         assert(vs)
3723 PERL_CALLCONV SV*       Perl_vstringify(pTHX_ SV *vs);
3724 #define PERL_ARGS_ASSERT_VSTRINGIFY     \
3725         assert(vs)
3726 PERL_CALLCONV SV*       Perl_vverify(pTHX_ SV *vs);
3727 #define PERL_ARGS_ASSERT_VVERIFY        \
3728         assert(vs)
3729 PERL_CALLCONV void      Perl_vwarn(pTHX_ const char* pat, va_list* args);
3730 #define PERL_ARGS_ASSERT_VWARN  \
3731         assert(pat)
3732 PERL_CALLCONV void      Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args);
3733 #define PERL_ARGS_ASSERT_VWARNER        \
3734         assert(pat)
3735 PERL_CALLCONV I32       Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags);
3736 #define PERL_ARGS_ASSERT_WAIT4PID       \
3737         assert(statusp)
3738 PERL_CALLCONV void      Perl_warn(pTHX_ const char* pat, ...)
3739                         __attribute__format__(__printf__,pTHX_1,pTHX_2);
3740 #define PERL_ARGS_ASSERT_WARN   \
3741         assert(pat)
3742
3743 PERL_CALLCONV void      Perl_warn_sv(pTHX_ SV *baseex);
3744 #define PERL_ARGS_ASSERT_WARN_SV        \
3745         assert(baseex)
3746 PERL_CALLCONV void      Perl_warner(pTHX_ U32 err, const char* pat, ...)
3747                         __attribute__format__(__printf__,pTHX_2,pTHX_3);
3748 #define PERL_ARGS_ASSERT_WARNER \
3749         assert(pat)
3750
3751 PERL_CALLCONV I32       Perl_was_lvalue_sub(pTHX)
3752                         __attribute__warn_unused_result__;
3753
3754 PERL_CALLCONV void      Perl_watch(pTHX_ char** addr);
3755 #define PERL_ARGS_ASSERT_WATCH  \
3756         assert(addr)
3757 /* PERL_CALLCONV I32    whichsig(pTHX_ const char* sig); */
3758 PERL_CALLCONV I32       Perl_whichsig_pv(pTHX_ const char* sig);
3759 #define PERL_ARGS_ASSERT_WHICHSIG_PV    \
3760         assert(sig)
3761 PERL_CALLCONV I32       Perl_whichsig_pvn(pTHX_ const char* sig, STRLEN len);
3762 #define PERL_ARGS_ASSERT_WHICHSIG_PVN   \
3763         assert(sig)
3764 PERL_CALLCONV I32       Perl_whichsig_sv(pTHX_ SV* sigsv);
3765 #define PERL_ARGS_ASSERT_WHICHSIG_SV    \
3766         assert(sigsv)
3767 PERL_CALLCONV void      Perl_wrap_keyword_plugin(pTHX_ Perl_keyword_plugin_t new_plugin, Perl_keyword_plugin_t *old_plugin_p);
3768 #define PERL_ARGS_ASSERT_WRAP_KEYWORD_PLUGIN    \
3769         assert(new_plugin); assert(old_plugin_p)
3770 PERL_CALLCONV void      Perl_wrap_op_checker(pTHX_ Optype opcode, Perl_check_t new_checker, Perl_check_t *old_checker_p);
3771 #define PERL_ARGS_ASSERT_WRAP_OP_CHECKER        \
3772         assert(new_checker); assert(old_checker_p)
3773 PERL_CALLCONV void      Perl_write_to_stderr(pTHX_ SV* msv);
3774 #define PERL_ARGS_ASSERT_WRITE_TO_STDERR        \
3775         assert(msv)
3776 PERL_CALLCONV void      Perl_xs_boot_epilog(pTHX_ const I32 ax);
3777 PERL_CALLCONV I32       Perl_xs_handshake(const U32 key, void * v_my_perl, const char * file, ...);
3778 #define PERL_ARGS_ASSERT_XS_HANDSHAKE   \
3779         assert(v_my_perl); assert(file)
3780 PERL_CALLCONV int       Perl_yyerror(pTHX_ const char *const s);
3781 #define PERL_ARGS_ASSERT_YYERROR        \
3782         assert(s)
3783 PERL_CALLCONV int       Perl_yyerror_pv(pTHX_ const char *const s, U32 flags);
3784 #define PERL_ARGS_ASSERT_YYERROR_PV     \
3785         assert(s)
3786 PERL_CALLCONV int       Perl_yyerror_pvn(pTHX_ const char *const s, STRLEN len, U32 flags);
3787 PERL_CALLCONV int       Perl_yylex(pTHX);
3788 PERL_CALLCONV int       Perl_yyparse(pTHX_ int gramtype);
3789 PERL_CALLCONV void      Perl_yyquit(pTHX);
3790 PERL_CALLCONV void      Perl_yyunlex(pTHX);
3791 #if ! defined(HAS_MEMRCHR) && (defined(PERL_CORE) || defined(PERL_EXT))
3792 #ifndef PERL_NO_INLINE_FUNCTIONS
3793 PERL_STATIC_INLINE void *       S_my_memrchr(const char * s, const char c, const STRLEN len);
3794 #define PERL_ARGS_ASSERT_MY_MEMRCHR     \
3795         assert(s)
3796 #endif
3797 #endif
3798 #if !(defined(DEBUGGING))
3799 #  if !defined(NV_PRESERVES_UV)
3800 #    if defined(PERL_IN_SV_C)
3801 STATIC int      S_sv_2iuv_non_preserve(pTHX_ SV *const sv);
3802 #define PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE   \
3803         assert(sv)
3804 #    endif
3805 #  endif
3806 #endif
3807 #if !(defined(HAS_MEMMEM))
3808 PERL_CALLCONV char*     Perl_ninstr(const char* big, const char* bigend, const char* little, const char* lend)
3809                         __attribute__warn_unused_result__
3810                         __attribute__pure__;
3811 #define PERL_ARGS_ASSERT_NINSTR \
3812         assert(big); assert(bigend); assert(little); assert(lend)
3813
3814 #endif
3815 #if !(defined(HAS_NL_LANGINFO) && defined(PERL_LANGINFO_H))
3816 PERL_CALLCONV const char*       Perl_langinfo(const int item);
3817 #endif
3818 #if !(defined(HAS_NL_LANGINFO))
3819 #  if defined(PERL_IN_LOCALE_C)
3820 STATIC const char*      S_my_nl_langinfo(const int item, bool toggle);
3821 #  endif
3822 #endif
3823 #if !(defined(HAS_SIGACTION) && defined(SA_SIGINFO))
3824 PERL_CALLCONV Signal_t  Perl_csighandler(int sig);
3825 PERL_CALLCONV Signal_t  Perl_sighandler(int sig);
3826 #endif
3827 #if !(defined(PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION))
3828 PERL_CALLCONV bool      Perl_do_exec(pTHX_ const char* cmd);
3829 #define PERL_ARGS_ASSERT_DO_EXEC        \
3830         assert(cmd)
3831 #endif
3832 #if !(defined(PERL_GLOBAL_STRUCT_PRIVATE))
3833 #  if defined(PERL_IMPLICIT_CONTEXT)
3834 PERL_CALLCONV void*     Perl_my_cxt_init(pTHX_ int *index, size_t size);
3835 #define PERL_ARGS_ASSERT_MY_CXT_INIT    \
3836         assert(index)
3837 #  endif
3838 #endif
3839 #if !(defined(_MSC_VER))
3840 PERL_CALLCONV_NO_RET int        Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg)
3841                         __attribute__noreturn__;
3842 #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_SET     \
3843         assert(sv); assert(mg)
3844
3845 #endif
3846 #if !defined(HAS_GETENV_LEN)
3847 PERL_CALLCONV char*     Perl_getenv_len(pTHX_ const char *env_elem, unsigned long *len);
3848 #define PERL_ARGS_ASSERT_GETENV_LEN     \
3849         assert(env_elem); assert(len)
3850 #endif
3851 #if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
3852 #  if defined(PERL_IN_PP_SYS_C)
3853 STATIC int      S_dooneliner(pTHX_ const char *cmd, const char *filename)
3854                         __attribute__warn_unused_result__;
3855 #define PERL_ARGS_ASSERT_DOONELINER     \
3856         assert(cmd); assert(filename)
3857
3858 #  endif
3859 #endif
3860 #if !defined(HAS_MKSTEMP)
3861 PERL_CALLCONV int       Perl_my_mkstemp(char *templte);
3862 #define PERL_ARGS_ASSERT_MY_MKSTEMP     \
3863         assert(templte)
3864 #endif
3865 #if !defined(HAS_RENAME)
3866 PERL_CALLCONV I32       Perl_same_dirent(pTHX_ const char* a, const char* b);
3867 #define PERL_ARGS_ASSERT_SAME_DIRENT    \
3868         assert(a); assert(b)
3869 #endif
3870 #if !defined(HAS_SIGNBIT)
3871 PERL_CALLCONV int       Perl_signbit(NV f)
3872                         __attribute__warn_unused_result__
3873                         __attribute__pure__;
3874
3875 #endif
3876 #if !defined(HAS_STRLCAT)
3877 PERL_CALLCONV Size_t    Perl_my_strlcat(char *dst, const char *src, Size_t size);
3878 #endif
3879 #if !defined(HAS_STRLCPY)
3880 PERL_CALLCONV Size_t    Perl_my_strlcpy(char *dst, const char *src, Size_t size);
3881 #endif
3882 #if !defined(HAS_STRNLEN)
3883 PERL_CALLCONV Size_t    Perl_my_strnlen(const char *str, Size_t maxlen);
3884 #define PERL_ARGS_ASSERT_MY_STRNLEN     \
3885         assert(str)
3886 #endif
3887 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
3888 PERL_CALLCONV I32       Perl_my_chsize(pTHX_ int fd, Off_t length)
3889                         __attribute__warn_unused_result__;
3890
3891 #endif
3892 #if !defined(NV_PRESERVES_UV)
3893 #  if defined(DEBUGGING)
3894 #    if defined(PERL_IN_SV_C)
3895 STATIC int      S_sv_2iuv_non_preserve(pTHX_ SV *const sv, I32 numtype);
3896 #define PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE   \
3897         assert(sv)
3898 #    endif
3899 #  endif
3900 #endif
3901 #if !defined(PERL_DISABLE_PMC)
3902 #  if defined(PERL_IN_PP_CTL_C)
3903 STATIC PerlIO * S_doopen_pm(pTHX_ SV *name)
3904                         __attribute__warn_unused_result__;
3905 #define PERL_ARGS_ASSERT_DOOPEN_PM      \
3906         assert(name)
3907
3908 #  endif
3909 #endif
3910 #if !defined(PERL_EXT_RE_BUILD)
3911 #  if defined(PERL_IN_REGCOMP_C)
3912 STATIC void     S__append_range_to_invlist(pTHX_ SV* const invlist, const UV start, const UV end);
3913 #define PERL_ARGS_ASSERT__APPEND_RANGE_TO_INVLIST       \
3914         assert(invlist)
3915 #ifndef PERL_NO_INLINE_FUNCTIONS
3916 PERL_STATIC_INLINE UV*  S__invlist_array_init(SV* const invlist, const bool will_have_0)
3917                         __attribute__warn_unused_result__;
3918 #define PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT    \
3919         assert(invlist)
3920 #endif
3921
3922 #ifndef PERL_NO_INLINE_FUNCTIONS
3923 PERL_STATIC_INLINE IV*  S_get_invlist_previous_index_addr(SV* invlist)
3924                         __attribute__warn_unused_result__;
3925 #define PERL_ARGS_ASSERT_GET_INVLIST_PREVIOUS_INDEX_ADDR        \
3926         assert(invlist)
3927 #endif
3928
3929 #ifndef PERL_NO_INLINE_FUNCTIONS
3930 PERL_STATIC_INLINE void S_invlist_clear(pTHX_ SV* invlist);
3931 #define PERL_ARGS_ASSERT_INVLIST_CLEAR  \
3932         assert(invlist)
3933 #endif
3934 STATIC void     S_invlist_extend(pTHX_ SV* const invlist, const UV len);
3935 #define PERL_ARGS_ASSERT_INVLIST_EXTEND \
3936         assert(invlist)
3937 #ifndef PERL_NO_INLINE_FUNCTIONS
3938 PERL_STATIC_INLINE UV   S_invlist_max(SV* const invlist)
3939                         __attribute__warn_unused_result__;
3940 #define PERL_ARGS_ASSERT_INVLIST_MAX    \
3941         assert(invlist)
3942 #endif
3943
3944 #ifndef PERL_NO_INLINE_FUNCTIONS
3945 PERL_STATIC_INLINE IV   S_invlist_previous_index(SV* const invlist)
3946                         __attribute__warn_unused_result__;
3947 #define PERL_ARGS_ASSERT_INVLIST_PREVIOUS_INDEX \
3948         assert(invlist)
3949 #endif
3950
3951 STATIC void     S_invlist_replace_list_destroys_src(pTHX_ SV *dest, SV *src);
3952 #define PERL_ARGS_ASSERT_INVLIST_REPLACE_LIST_DESTROYS_SRC      \
3953         assert(dest); assert(src)
3954 #ifndef PERL_NO_INLINE_FUNCTIONS
3955 PERL_STATIC_INLINE void S_invlist_set_previous_index(SV* const invlist, const IV index);
3956 #define PERL_ARGS_ASSERT_INVLIST_SET_PREVIOUS_INDEX     \
3957         assert(invlist)
3958 #endif
3959 #ifndef PERL_NO_INLINE_FUNCTIONS
3960 PERL_STATIC_INLINE void S_invlist_trim(SV* invlist);
3961 #define PERL_ARGS_ASSERT_INVLIST_TRIM   \
3962         assert(invlist)
3963 #endif
3964 #  endif
3965 #endif
3966 #if !defined(PERL_IMPLICIT_SYS)
3967 PERL_CALLCONV I32       Perl_my_pclose(pTHX_ PerlIO* ptr);
3968 PERL_CALLCONV PerlIO*   Perl_my_popen(pTHX_ const char* cmd, const char* mode);
3969 #define PERL_ARGS_ASSERT_MY_POPEN       \
3970         assert(cmd); assert(mode)
3971 #endif
3972 #if !defined(PERL_IS_MINIPERL)
3973 #  if defined(PERL_IN_PERL_C)
3974 STATIC SV *     S_incpush_if_exists(pTHX_ AV *const av, SV *dir, SV *const stem);
3975 #define PERL_ARGS_ASSERT_INCPUSH_IF_EXISTS      \
3976         assert(av); assert(dir); assert(stem)
3977 #  endif
3978 #endif
3979 #if !defined(PERL_NO_INLINE_FUNCTIONS)
3980 #ifndef PERL_NO_INLINE_FUNCTIONS
3981 PERL_STATIC_INLINE void S_cx_popblock(pTHX_ PERL_CONTEXT *cx);
3982 #define PERL_ARGS_ASSERT_CX_POPBLOCK    \
3983         assert(cx)
3984 #endif
3985 #ifndef PERL_NO_INLINE_FUNCTIONS
3986 PERL_STATIC_INLINE void S_cx_popeval(pTHX_ PERL_CONTEXT *cx);
3987 #define PERL_ARGS_ASSERT_CX_POPEVAL     \
3988         assert(cx)
3989 #endif
3990 #ifndef PERL_NO_INLINE_FUNCTIONS
3991 PERL_STATIC_INLINE void S_cx_popformat(pTHX_ PERL_CONTEXT *cx);
3992 #define PERL_ARGS_ASSERT_CX_POPFORMAT   \
3993         assert(cx)
3994 #endif
3995 #ifndef PERL_NO_INLINE_FUNCTIONS
3996 PERL_STATIC_INLINE void S_cx_popgiven(pTHX_ PERL_CONTEXT *cx);
3997 #define PERL_ARGS_ASSERT_CX_POPGIVEN    \
3998         assert(cx)
3999 #endif
4000 #ifndef PERL_NO_INLINE_FUNCTIONS
4001 PERL_STATIC_INLINE void S_cx_poploop(pTHX_ PERL_CONTEXT *cx);
4002 #define PERL_ARGS_ASSERT_CX_POPLOOP     \
4003         assert(cx)
4004 #endif
4005 #ifndef PERL_NO_INLINE_FUNCTIONS
4006 PERL_STATIC_INLINE void S_cx_popsub(pTHX_ PERL_CONTEXT *cx);
4007 #define PERL_ARGS_ASSERT_CX_POPSUB      \
4008         assert(cx)
4009 #endif
4010 #ifndef PERL_NO_INLINE_FUNCTIONS
4011 PERL_STATIC_INLINE void S_cx_popsub_args(pTHX_ PERL_CONTEXT *cx);
4012 #define PERL_ARGS_ASSERT_CX_POPSUB_ARGS \
4013         assert(cx)
4014 #endif
4015 #ifndef PERL_NO_INLINE_FUNCTIONS
4016 PERL_STATIC_INLINE void S_cx_popsub_common(pTHX_ PERL_CONTEXT *cx);
4017 #define PERL_ARGS_ASSERT_CX_POPSUB_COMMON       \
4018         assert(cx)
4019 #endif
4020 #ifndef PERL_NO_INLINE_FUNCTIONS
4021 PERL_STATIC_INLINE void S_cx_popwhen(pTHX_ PERL_CONTEXT *cx);
4022 #define PERL_ARGS_ASSERT_CX_POPWHEN     \
4023         assert(cx)
4024 #endif
4025 #ifndef PERL_NO_INLINE_FUNCTIONS
4026 PERL_STATIC_INLINE PERL_CONTEXT *       S_cx_pushblock(pTHX_ U8 type, U8 gimme, SV** sp, I32 saveix);
4027 #define PERL_ARGS_ASSERT_CX_PUSHBLOCK   \
4028         assert(sp)
4029 #endif
4030 #ifndef PERL_NO_INLINE_FUNCTIONS
4031 PERL_STATIC_INLINE void S_cx_pusheval(pTHX_ PERL_CONTEXT *cx, OP *retop, SV *namesv);
4032 #define PERL_ARGS_ASSERT_CX_PUSHEVAL    \
4033         assert(cx)
4034 #endif
4035 #ifndef PERL_NO_INLINE_FUNCTIONS
4036 PERL_STATIC_INLINE void S_cx_pushformat(pTHX_ PERL_CONTEXT *cx, CV *cv, OP *retop, GV *gv);
4037 #define PERL_ARGS_ASSERT_CX_PUSHFORMAT  \
4038         assert(cx); assert(cv)
4039 #endif
4040 #ifndef PERL_NO_INLINE_FUNCTIONS
4041 PERL_STATIC_INLINE void S_cx_pushgiven(pTHX_ PERL_CONTEXT *cx, SV *orig_defsv);
4042 #define PERL_ARGS_ASSERT_CX_PUSHGIVEN   \
4043         assert(cx)
4044 #endif
4045 #ifndef PERL_NO_INLINE_FUNCTIONS
4046 PERL_STATIC_INLINE void S_cx_pushloop_for(pTHX_ PERL_CONTEXT *cx, void *itervarp, SV *itersave);
4047 #define PERL_ARGS_ASSERT_CX_PUSHLOOP_FOR        \
4048         assert(cx); assert(itervarp)
4049 #endif
4050 #ifndef PERL_NO_INLINE_FUNCTIONS
4051 PERL_STATIC_INLINE void S_cx_pushloop_plain(pTHX_ PERL_CONTEXT *cx);
4052 #define PERL_ARGS_ASSERT_CX_PUSHLOOP_PLAIN      \
4053         assert(cx)
4054 #endif
4055 #ifndef PERL_NO_INLINE_FUNCTIONS
4056 PERL_STATIC_INLINE void S_cx_pushsub(pTHX_ PERL_CONTEXT *cx, CV *cv, OP *retop, bool hasargs);
4057 #define PERL_ARGS_ASSERT_CX_PUSHSUB     \
4058         assert(cx); assert(cv)
4059 #endif
4060 #ifndef PERL_NO_INLINE_FUNCTIONS
4061 PERL_STATIC_INLINE void S_cx_pushwhen(pTHX_ PERL_CONTEXT *cx);
4062 #define PERL_ARGS_ASSERT_CX_PUSHWHEN    \
4063         assert(cx)
4064 #endif
4065 #ifndef PERL_NO_INLINE_FUNCTIONS
4066 PERL_STATIC_INLINE void S_cx_topblock(pTHX_ PERL_CONTEXT *cx);
4067 #define PERL_ARGS_ASSERT_CX_TOPBLOCK    \
4068         assert(cx)
4069 #endif
4070 #endif
4071 #if !defined(PERL_NO_UTF16_FILTER)
4072 #  if defined(PERL_IN_TOKE_C)
4073 STATIC U8*      S_add_utf16_textfilter(pTHX_ U8 *const s, bool reversed);
4074 #define PERL_ARGS_ASSERT_ADD_UTF16_TEXTFILTER   \
4075         assert(s)
4076 STATIC I32      S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen);
4077 #define PERL_ARGS_ASSERT_UTF16_TEXTFILTER       \
4078         assert(sv)
4079 #  endif
4080 #endif
4081 #if !defined(SETUID_SCRIPTS_ARE_SECURE_NOW)
4082 #  if defined(PERL_IN_PERL_C)
4083 STATIC void     S_validate_suid(pTHX_ PerlIO *rsfp);
4084 #define PERL_ARGS_ASSERT_VALIDATE_SUID  \
4085         assert(rsfp)
4086 #  endif
4087 #endif
4088 #if !defined(USE_QUADMATH)
4089 #  if defined(PERL_IN_NUMERIC_C)
4090 STATIC NV       S_mulexp10(NV value, I32 exponent);
4091 #  endif
4092 #endif
4093 #if !defined(UV_IS_QUAD)
4094 #  if defined(PERL_IN_UTF8_C)
4095 STATIC int      S_is_utf8_cp_above_31_bits(const U8 * const s, const U8 * const e, const bool consider_overlongs)
4096                         __attribute__warn_unused_result__;
4097 #define PERL_ARGS_ASSERT_IS_UTF8_CP_ABOVE_31_BITS       \
4098         assert(s); assert(e)
4099
4100 #  endif
4101 #endif
4102 #if !defined(WIN32)
4103 PERL_CALLCONV bool      Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report);
4104 #define PERL_ARGS_ASSERT_DO_EXEC3       \
4105         assert(incmd)
4106 #endif
4107 #if defined(DEBUGGING)
4108 PERL_CALLCONV int       Perl_get_debug_opts(pTHX_ const char **s, bool givehelp)
4109                         __attribute__warn_unused_result__;
4110 #define PERL_ARGS_ASSERT_GET_DEBUG_OPTS \
4111         assert(s)
4112
4113 PERL_CALLCONV void      Perl_hv_assert(pTHX_ HV *hv);
4114 #define PERL_ARGS_ASSERT_HV_ASSERT      \
4115         assert(hv)
4116 PERL_CALLCONV void      Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv);
4117 #define PERL_ARGS_ASSERT_PAD_SETSV      \
4118         assert(sv)
4119 PERL_CALLCONV SV*       Perl_pad_sv(pTHX_ PADOFFSET po);
4120 PERL_CALLCONV void      Perl_set_padlist(CV * cv, PADLIST * padlist);
4121 #define PERL_ARGS_ASSERT_SET_PADLIST    \
4122         assert(cv)
4123 #  if defined(PERL_IN_LOCALE_C)
4124 #    if defined(USE_LOCALE)
4125 STATIC void     S_print_bytes_for_locale(pTHX_ const char * const s, const char * const e, const bool is_utf8);
4126 #define PERL_ARGS_ASSERT_PRINT_BYTES_FOR_LOCALE \
4127         assert(s); assert(e)
4128 STATIC void     S_print_collxfrm_input_and_return(pTHX_ const char * const s, const char * const e, const STRLEN * const xlen, const bool is_utf8);
4129 #define PERL_ARGS_ASSERT_PRINT_COLLXFRM_INPUT_AND_RETURN        \
4130         assert(s); assert(e)
4131 STATIC char *   S_setlocale_debug_string(const int category, const char* const locale, const char* const retval)
4132                         __attribute__warn_unused_result__;
4133
4134 #    endif
4135 #  endif
4136 #  if defined(PERL_IN_PAD_C)
4137 STATIC void     S_cv_dump(pTHX_ const CV *cv, const char *title);
4138 #define PERL_ARGS_ASSERT_CV_DUMP        \
4139         assert(cv); assert(title)
4140 #  endif
4141 #  if defined(PERL_IN_REGCOMP_C)
4142 STATIC void     S_dump_trie(pTHX_ const struct _reg_trie_data *trie, HV* widecharmap, AV *revcharmap, U32 depth);
4143 #define PERL_ARGS_ASSERT_DUMP_TRIE      \
4144         assert(trie); assert(revcharmap)
4145 STATIC void     S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie, HV* widecharmap, AV *revcharmap, U32 next_alloc, U32 depth);
4146 #define PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_LIST \
4147         assert(trie); assert(revcharmap)
4148 STATIC void     S_dump_trie_interim_table(pTHX_ const struct _reg_trie_data *trie, HV* widecharmap, AV *revcharmap, U32 next_alloc, U32 depth);
4149 #define PERL_ARGS_ASSERT_DUMP_TRIE_INTERIM_TABLE        \
4150         assert(trie); assert(revcharmap)
4151 STATIC const regnode*   S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node, const regnode *last, const regnode *plast, SV* sv, I32 indent, U32 depth);
4152 #define PERL_ARGS_ASSERT_DUMPUNTIL      \
4153         assert(r); assert(start); assert(node); assert(sv)
4154 STATIC bool     S_put_charclass_bitmap_innards(pTHX_ SV* sv, char* bitmap, SV* nonbitmap_invlist, SV* only_utf8_locale_invlist, const regnode * const node, const bool force_as_is_display);
4155 #define PERL_ARGS_ASSERT_PUT_CHARCLASS_BITMAP_INNARDS   \
4156         assert(sv); assert(bitmap)
4157 STATIC SV*      S_put_charclass_bitmap_innards_common(pTHX_ SV* invlist, SV* posixes, SV* only_utf8, SV* not_utf8, SV* only_utf8_locale, const bool invert);
4158 #define PERL_ARGS_ASSERT_PUT_CHARCLASS_BITMAP_INNARDS_COMMON    \
4159         assert(invlist)
4160 STATIC void     S_put_charclass_bitmap_innards_invlist(pTHX_ SV *sv, SV* invlist);
4161 #define PERL_ARGS_ASSERT_PUT_CHARCLASS_BITMAP_INNARDS_INVLIST   \
4162         assert(sv); assert(invlist)
4163 STATIC void     S_put_code_point(pTHX_ SV* sv, UV c);
4164 #define PERL_ARGS_ASSERT_PUT_CODE_POINT \
4165         assert(sv)
4166 STATIC void     S_put_range(pTHX_ SV* sv, UV start, const UV end, const bool allow_literals);
4167 #define PERL_ARGS_ASSERT_PUT_RANGE      \
4168         assert(sv)
4169 PERL_CALLCONV int       Perl_re_indentf(pTHX_ const char *fmt, U32 depth, ...);
4170 #define PERL_ARGS_ASSERT_RE_INDENTF     \
4171         assert(fmt)
4172 STATIC void     S_regdump_extflags(pTHX_ const char *lead, const U32 flags);
4173 STATIC void     S_regdump_intflags(pTHX_ const char *lead, const U32 flags);
4174 STATIC U8       S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode *p, const regnode *val, U32 depth);
4175 #define PERL_ARGS_ASSERT_REGTAIL_STUDY  \
4176         assert(pRExC_state); assert(p); assert(val)
4177 #  endif
4178 #  if defined(PERL_IN_REGEXEC_C)
4179 STATIC void     S_debug_start_match(pTHX_ const REGEXP *prog, const bool do_utf8, const char *start, const char *end, const char *blurb);
4180 #define PERL_ARGS_ASSERT_DEBUG_START_MATCH      \
4181         assert(prog); assert(start); assert(end); assert(blurb)
4182 STATIC void     S_dump_exec_pos(pTHX_ const char *locinput, const regnode *scan, const char *loc_regeol, const char *loc_bostr, const char *loc_reg_starttry, const bool do_utf8, const U32 depth);
4183 #define PERL_ARGS_ASSERT_DUMP_EXEC_POS  \
4184         assert(locinput); assert(scan); assert(loc_regeol); assert(loc_bostr); assert(loc_reg_starttry)
4185 PERL_CALLCONV int       Perl_re_exec_indentf(pTHX_ const char *fmt, U32 depth, ...);
4186 #define PERL_ARGS_ASSERT_RE_EXEC_INDENTF        \
4187         assert(fmt)
4188 #  endif
4189 #  if defined(PERL_IN_SV_C)
4190 STATIC void     S_del_sv(pTHX_ SV *p);
4191 #define PERL_ARGS_ASSERT_DEL_SV \
4192         assert(p)
4193 #  endif
4194 #  if defined(PERL_IN_TOKE_C)
4195 STATIC void     S_printbuf(pTHX_ const char *const fmt, const char *const s)
4196                         __attribute__format__(__printf__,pTHX_1,0);
4197 #define PERL_ARGS_ASSERT_PRINTBUF       \
4198         assert(fmt); assert(s)
4199
4200 STATIC int      S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp);
4201 #define PERL_ARGS_ASSERT_TOKEREPORT     \
4202         assert(lvalp)
4203 #  endif
4204 #endif
4205 #if defined(DEBUGGING) && defined(ENABLE_REGEX_SETS_DEBUGGING)
4206 #  if defined(PERL_IN_REGCOMP_C)
4207 STATIC void     S_dump_regex_sets_structures(pTHX_ RExC_state_t *pRExC_state, AV * stack, const IV fence, AV * fence_stack);
4208 #define PERL_ARGS_ASSERT_DUMP_REGEX_SETS_STRUCTURES     \
4209         assert(pRExC_state); assert(stack); assert(fence_stack)
4210 #  endif
4211 #endif
4212 #if defined(DEBUG_LEAKING_SCALARS_FORK_DUMP)
4213 PERL_CALLCONV void      Perl_dump_sv_child(pTHX_ SV *sv);
4214 #define PERL_ARGS_ASSERT_DUMP_SV_CHILD  \
4215         assert(sv)
4216 #endif
4217 #if defined(HAS_MEMMEM)
4218 PERL_CALLCONV char*     Perl_ninstr(const char* big, const char* bigend, const char* little, const char* lend)
4219                         __attribute__warn_unused_result__
4220                         __attribute__pure__;
4221 #define PERL_ARGS_ASSERT_NINSTR \
4222         assert(big); assert(bigend); assert(little); assert(lend)
4223
4224 #endif
4225 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
4226 PERL_CALLCONV I32       Perl_do_ipcctl(pTHX_ I32 optype, SV** mark, SV** sp);
4227 #define PERL_ARGS_ASSERT_DO_IPCCTL      \
4228         assert(mark); assert(sp)
4229 PERL_CALLCONV I32       Perl_do_ipcget(pTHX_ I32 optype, SV** mark, SV** sp);
4230 #define PERL_ARGS_ASSERT_DO_IPCGET      \
4231         assert(mark); assert(sp)
4232 PERL_CALLCONV I32       Perl_do_msgrcv(pTHX_ SV** mark, SV** sp);
4233 #define PERL_ARGS_ASSERT_DO_MSGRCV      \
4234         assert(mark); assert(sp)
4235 PERL_CALLCONV I32       Perl_do_msgsnd(pTHX_ SV** mark, SV** sp);
4236 #define PERL_ARGS_ASSERT_DO_MSGSND      \
4237         assert(mark); assert(sp)
4238 PERL_CALLCONV I32       Perl_do_semop(pTHX_ SV** mark, SV** sp);
4239 #define PERL_ARGS_ASSERT_DO_SEMOP       \
4240         assert(mark); assert(sp)
4241 PERL_CALLCONV I32       Perl_do_shmio(pTHX_ I32 optype, SV** mark, SV** sp);
4242 #define PERL_ARGS_ASSERT_DO_SHMIO       \
4243         assert(mark); assert(sp)
4244 #endif
4245 #if defined(HAS_NL_LANGINFO)
4246 #  if defined(PERL_IN_LOCALE_C)
4247 STATIC const char*      S_my_nl_langinfo(const nl_item item, bool toggle);
4248 #  endif
4249 #endif
4250 #if defined(HAS_NL_LANGINFO) && defined(PERL_LANGINFO_H)
4251 PERL_CALLCONV const char*       Perl_langinfo(const nl_item item);
4252 #endif
4253 #if defined(HAS_SIGACTION) && defined(SA_SIGINFO)
4254 PERL_CALLCONV Signal_t  Perl_csighandler(int sig, siginfo_t *info, void *uap);
4255 PERL_CALLCONV Signal_t  Perl_sighandler(int sig, siginfo_t *info, void *uap);
4256 #endif
4257 #if defined(HAVE_INTERP_INTERN)
4258 PERL_CALLCONV void      Perl_sys_intern_clear(pTHX);
4259 PERL_CALLCONV void      Perl_sys_intern_init(pTHX);
4260 #  if defined(USE_ITHREADS)
4261 PERL_CALLCONV void      Perl_sys_intern_dup(pTHX_ struct interp_intern* src, struct interp_intern* dst);
4262 #define PERL_ARGS_ASSERT_SYS_INTERN_DUP \
4263         assert(src); assert(dst)
4264 #  endif
4265 #endif
4266 #if defined(MYMALLOC)
4267 PERL_CALLCONV void      Perl_dump_mstats(pTHX_ const char* s);
4268 #define PERL_ARGS_ASSERT_DUMP_MSTATS    \
4269         assert(s)
4270 PERL_CALLCONV int       Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level);
4271 #define PERL_ARGS_ASSERT_GET_MSTATS     \
4272         assert(buf)
4273 PERL_CALLCONV MEM_SIZE  Perl_malloc_good_size(size_t nbytes)
4274                         __attribute__warn_unused_result__;
4275
4276 PERL_CALLCONV MEM_SIZE  Perl_malloced_size(void *p)
4277                         __attribute__warn_unused_result__;
4278 #define PERL_ARGS_ASSERT_MALLOCED_SIZE  \
4279         assert(p)
4280
4281 #endif
4282 #if defined(PERL_ANY_COW)
4283 PERL_CALLCONV SV*       Perl_sv_setsv_cow(pTHX_ SV* dstr, SV* sstr);
4284 #define PERL_ARGS_ASSERT_SV_SETSV_COW   \
4285         assert(sstr)
4286 #endif
4287 #if defined(PERL_CORE)
4288 PERL_CALLCONV void      Perl_opslab_force_free(pTHX_ OPSLAB *slab);
4289 #define PERL_ARGS_ASSERT_OPSLAB_FORCE_FREE      \
4290         assert(slab)
4291 PERL_CALLCONV void      Perl_opslab_free(pTHX_ OPSLAB *slab);
4292 #define PERL_ARGS_ASSERT_OPSLAB_FREE    \
4293         assert(slab)
4294 PERL_CALLCONV void      Perl_opslab_free_nopad(pTHX_ OPSLAB *slab);
4295 #define PERL_ARGS_ASSERT_OPSLAB_FREE_NOPAD      \
4296         assert(slab)
4297 PERL_CALLCONV void      Perl_parser_free_nexttoke_ops(pTHX_ yy_parser *parser, OPSLAB *slab);
4298 #define PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS       \
4299         assert(parser); assert(slab)
4300 #ifndef PERL_NO_INLINE_FUNCTIONS
4301 PERL_STATIC_INLINE bool S_should_warn_nl(const char *pv)
4302                         __attribute__warn_unused_result__;
4303 #define PERL_ARGS_ASSERT_SHOULD_WARN_NL \
4304         assert(pv)
4305 #endif
4306
4307 #  if defined(PERL_DEBUG_READONLY_OPS)
4308 PERL_CALLCONV void      Perl_Slab_to_ro(pTHX_ OPSLAB *slab);
4309 #define PERL_ARGS_ASSERT_SLAB_TO_RO     \
4310         assert(slab)
4311 PERL_CALLCONV void      Perl_Slab_to_rw(pTHX_ OPSLAB *const slab);
4312 #define PERL_ARGS_ASSERT_SLAB_TO_RW     \
4313         assert(slab)
4314 #  endif
4315 #endif
4316 #if defined(PERL_CORE) || defined (PERL_EXT)
4317 #ifndef PERL_NO_INLINE_FUNCTIONS
4318 PERL_STATIC_INLINE STRLEN       S_sv_or_pv_pos_u2b(pTHX_ SV *sv, const char *pv, STRLEN pos, STRLEN *lenp);
4319 #define PERL_ARGS_ASSERT_SV_OR_PV_POS_U2B       \
4320         assert(sv); assert(pv)
4321 #endif
4322 #endif
4323 #if defined(PERL_CR_FILTER)
4324 #  if defined(PERL_IN_TOKE_C)
4325 STATIC I32      S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen);
4326 STATIC void     S_strip_return(pTHX_ SV *sv);
4327 #define PERL_ARGS_ASSERT_STRIP_RETURN   \
4328         assert(sv)
4329 #  endif
4330 #endif
4331 #if defined(PERL_DEBUG_READONLY_COW)
4332 PERL_CALLCONV void      Perl_sv_buf_to_ro(pTHX_ SV *sv);
4333 #define PERL_ARGS_ASSERT_SV_BUF_TO_RO   \
4334         assert(sv)
4335 #  if defined(PERL_IN_SV_C)
4336 STATIC void     S_sv_buf_to_rw(pTHX_ SV *sv);
4337 #define PERL_ARGS_ASSERT_SV_BUF_TO_RW   \
4338         assert(sv)
4339 #  endif
4340 #endif
4341 #if defined(PERL_DEBUG_READONLY_OPS)
4342 PERL_CALLCONV PADOFFSET Perl_op_refcnt_dec(pTHX_ OP *o);
4343 #define PERL_ARGS_ASSERT_OP_REFCNT_DEC  \
4344         assert(o)
4345 PERL_CALLCONV OP *      Perl_op_refcnt_inc(pTHX_ OP *o);
4346 #endif
4347 #if defined(PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION)
4348 /* PERL_CALLCONV bool   Perl_do_exec(pTHX_ const char* cmd); */
4349 #endif
4350 #if defined(PERL_DONT_CREATE_GVSV)
4351 #ifndef NO_MATHOMS
4352 PERL_CALLCONV GV*       Perl_gv_SVadd(pTHX_ GV *gv);
4353 #endif
4354 #endif
4355 #if defined(PERL_GLOBAL_STRUCT)
4356 PERL_CALLCONV struct perl_vars *        Perl_GetVars(pTHX);
4357 PERL_CALLCONV void      Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp);
4358 #define PERL_ARGS_ASSERT_FREE_GLOBAL_STRUCT     \
4359         assert(plvarsp)
4360 PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX);
4361 #endif
4362 #if defined(PERL_GLOBAL_STRUCT_PRIVATE)
4363 #  if defined(PERL_IMPLICIT_CONTEXT)
4364 PERL_CALLCONV int       Perl_my_cxt_index(pTHX_ const char *my_cxt_key);
4365 #define PERL_ARGS_ASSERT_MY_CXT_INDEX   \
4366         assert(my_cxt_key)
4367 PERL_CALLCONV void*     Perl_my_cxt_init(pTHX_ const char *my_cxt_key, size_t size);
4368 #define PERL_ARGS_ASSERT_MY_CXT_INIT    \
4369         assert(my_cxt_key)
4370 #  endif
4371 #endif
4372 #if defined(PERL_IMPLICIT_CONTEXT)
4373 PERL_CALLCONV_NO_RET void       Perl_croak_nocontext(const char* pat, ...)
4374                         __attribute__noreturn__
4375                         __attribute__format__null_ok__(__printf__,1,2);
4376
4377 PERL_CALLCONV void      Perl_deb_nocontext(const char* pat, ...)
4378                         __attribute__format__(__printf__,1,2);
4379 #define PERL_ARGS_ASSERT_DEB_NOCONTEXT  \
4380         assert(pat)
4381
4382 PERL_CALLCONV_NO_RET OP*        Perl_die_nocontext(const char* pat, ...)
4383                         __attribute__noreturn__
4384                         __attribute__format__null_ok__(__printf__,1,2);
4385
4386 PERL_CALLCONV char*     Perl_form_nocontext(const char* pat, ...)
4387                         __attribute__format__(__printf__,1,2);
4388 #define PERL_ARGS_ASSERT_FORM_NOCONTEXT \
4389         assert(pat)
4390
4391 PERL_CALLCONV int       Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
4392                         __attribute__format__(__printf__,2,3);
4393 #define PERL_ARGS_ASSERT_FPRINTF_NOCONTEXT      \
4394         assert(stream); assert(format)
4395
4396 PERL_CALLCONV void      Perl_load_module_nocontext(U32 flags, SV* name, SV* ver, ...);
4397 #define PERL_ARGS_ASSERT_LOAD_MODULE_NOCONTEXT  \
4398         assert(name)
4399 PERL_CALLCONV SV*       Perl_mess_nocontext(const char* pat, ...)
4400                         __attribute__format__(__printf__,1,2);
4401 #define PERL_ARGS_ASSERT_MESS_NOCONTEXT \
4402         assert(pat)
4403
4404 PERL_CALLCONV SV*       Perl_newSVpvf_nocontext(const char *const pat, ...)
4405                         __attribute__format__(__printf__,1,2);
4406 #define PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT     \
4407         assert(pat)
4408
4409 PERL_CALLCONV int       Perl_printf_nocontext(const char *format, ...)
4410                         __attribute__format__(__printf__,1,2);
4411 #define PERL_ARGS_ASSERT_PRINTF_NOCONTEXT       \
4412         assert(format)
4413
4414 PERL_CALLCONV void      Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
4415                         __attribute__format__(__printf__,2,3);
4416 #define PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT \
4417         assert(sv); assert(pat)
4418
4419 PERL_CALLCONV void      Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
4420                         __attribute__format__(__printf__,2,3);
4421 #define PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT    \
4422         assert(sv); assert(pat)
4423
4424 PERL_CALLCONV void      Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
4425                         __attribute__format__(__printf__,2,3);
4426 #define PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT \
4427         assert(sv); assert(pat)
4428
4429 PERL_CALLCONV void      Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
4430                         __attribute__format__(__printf__,2,3);
4431 #define PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT    \
4432         assert(sv); assert(pat)
4433
4434 PERL_CALLCONV void      Perl_warn_nocontext(const char* pat, ...)
4435                         __attribute__format__(__printf__,1,2);
4436 #define PERL_ARGS_ASSERT_WARN_NOCONTEXT \
4437         assert(pat)
4438
4439 PERL_CALLCONV void      Perl_warner_nocontext(U32 err, const char* pat, ...)
4440                         __attribute__format__(__printf__,2,3);
4441 #define PERL_ARGS_ASSERT_WARNER_NOCONTEXT       \
4442         assert(pat)
4443
4444 #endif
4445 #if defined(PERL_IMPLICIT_SYS)
4446 PERL_CALLCONV PerlInterpreter*  perl_alloc_using(struct IPerlMem *ipM, struct IPerlMem *ipMS, struct IPerlMem *ipMP, struct IPerlEnv *ipE, struct IPerlStdIO *ipStd, struct IPerlLIO *ipLIO, struct IPerlDir *ipD, struct IPerlSock *ipS, struct IPerlProc *ipP);
4447 #define PERL_ARGS_ASSERT_PERL_ALLOC_USING       \
4448         assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLIO); assert(ipD); assert(ipS); assert(ipP)
4449 #  if defined(USE_ITHREADS)
4450 PERL_CALLCONV PerlInterpreter*  perl_clone_using(PerlInterpreter *proto_perl, UV flags, struct IPerlMem* ipM, struct IPerlMem* ipMS, struct IPerlMem* ipMP, struct IPerlEnv* ipE, struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO, struct IPerlDir* ipD, struct IPerlSock* ipS, struct IPerlProc* ipP);
4451 #define PERL_ARGS_ASSERT_PERL_CLONE_USING       \
4452         assert(proto_perl); assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLIO); assert(ipD); assert(ipS); assert(ipP)
4453 #  endif
4454 #endif
4455 #if defined(PERL_IN_AV_C)
4456 STATIC MAGIC*   S_get_aux_mg(pTHX_ AV *av);
4457 #define PERL_ARGS_ASSERT_GET_AUX_MG     \
4458         assert(av)
4459 #endif
4460 #if defined(PERL_IN_DEB_C)
4461 STATIC void     S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32 mark_min, I32 mark_max);
4462 #define PERL_ARGS_ASSERT_DEB_STACK_N    \
4463         assert(stack_base)
4464 #endif
4465 #if defined(PERL_IN_DOIO_C)
4466 STATIC void     S_exec_failed(pTHX_ const char *cmd, int fd, int do_report);
4467 #define PERL_ARGS_ASSERT_EXEC_FAILED    \
4468         assert(cmd)
4469 STATIC bool     S_ingroup(pTHX_ Gid_t testgid, bool effective)
4470                         __attribute__warn_unused_result__;
4471
4472 STATIC bool     S_openn_cleanup(pTHX_ GV *gv, IO *io, PerlIO *fp, char *mode, const char *oname, PerlIO *saveifp, PerlIO *saveofp, int savefd, char savetype, int writing, bool was_fdopen, const char *type, Stat_t *statbufp);
4473 #define PERL_ARGS_ASSERT_OPENN_CLEANUP  \
4474         assert(gv); assert(io); assert(mode); assert(oname)
4475 STATIC IO *     S_openn_setup(pTHX_ GV *gv, char *mode, PerlIO **saveifp, PerlIO **saveofp, int *savefd, char *savetype);
4476 #define PERL_ARGS_ASSERT_OPENN_SETUP    \
4477         assert(gv); assert(mode); assert(saveifp); assert(saveofp); assert(savefd); assert(savetype)
4478 #endif
4479 #if defined(PERL_IN_DOOP_C)
4480 STATIC I32      S_do_trans_complex(pTHX_ SV * const sv)
4481                         __attribute__warn_unused_result__;
4482 #define PERL_ARGS_ASSERT_DO_TRANS_COMPLEX       \
4483         assert(sv)
4484
4485 STATIC I32      S_do_trans_complex_utf8(pTHX_ SV * const sv)
4486                         __attribute__warn_unused_result__;
4487 #define PERL_ARGS_ASSERT_DO_TRANS_COMPLEX_UTF8  \
4488         assert(sv)
4489
4490 STATIC I32      S_do_trans_count(pTHX_ SV * const sv)
4491                         __attribute__warn_unused_result__;
4492 #define PERL_ARGS_ASSERT_DO_TRANS_COUNT \
4493         assert(sv)
4494
4495 STATIC I32      S_do_trans_count_utf8(pTHX_ SV * const sv)
4496                         __attribute__warn_unused_result__;
4497 #define PERL_ARGS_ASSERT_DO_TRANS_COUNT_UTF8    \
4498         assert(sv)
4499
4500 STATIC I32      S_do_trans_simple(pTHX_ SV * const sv)
4501                         __attribute__warn_unused_result__;
4502 #define PERL_ARGS_ASSERT_DO_TRANS_SIMPLE        \
4503         assert(sv)
4504
4505 STATIC I32      S_do_trans_simple_utf8(pTHX_ SV * const sv)
4506                         __attribute__warn_unused_result__;
4507 #define PERL_ARGS_ASSERT_DO_TRANS_SIMPLE_UTF8   \
4508         assert(sv)
4509
4510 #endif
4511 #if defined(PERL_IN_DUMP_C)
4512 STATIC CV*      S_deb_curcv(pTHX_ I32 ix);
4513 STATIC void     S_debprof(pTHX_ const OP *o);
4514 #define PERL_ARGS_ASSERT_DEBPROF        \
4515         assert(o)
4516 STATIC SV*      S_pm_description(pTHX_ const PMOP *pm);
4517 #define PERL_ARGS_ASSERT_PM_DESCRIPTION \
4518         assert(pm)
4519 STATIC UV       S_sequence_num(pTHX_ const OP *o);
4520 #endif
4521 #if defined(PERL_IN_DUMP_C) || defined(PERL_IN_HV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_SCOPE_C)
4522 PERL_CALLCONV void      Perl_hv_kill_backrefs(pTHX_ HV *hv);
4523 #define PERL_ARGS_ASSERT_HV_KILL_BACKREFS       \
4524         assert(hv)
4525 #endif
4526 #if defined(PERL_IN_GV_C)
4527 STATIC bool     S_find_default_stash(pTHX_ HV **stash, const char *name, STRLEN len, const U32 is_utf8, const I32 add, const svtype sv_type);
4528 #define PERL_ARGS_ASSERT_FIND_DEFAULT_STASH     \
4529         assert(stash); assert(name)
4530 #ifndef PERL_NO_INLINE_FUNCTIONS
4531 PERL_STATIC_INLINE GV*  S_gv_fetchmeth_internal(pTHX_ HV* stash, SV* meth, const char* name, STRLEN len, I32 level, U32 flags);
4532 #endif
4533 STATIC void     S_gv_init_svtype(pTHX_ GV *gv, const svtype sv_type);
4534 #define PERL_ARGS_ASSERT_GV_INIT_SVTYPE \
4535         assert(gv)
4536 STATIC bool     S_gv_is_in_main(pTHX_ const char *name, STRLEN len, const U32 is_utf8);
4537 #define PERL_ARGS_ASSERT_GV_IS_IN_MAIN  \
4538         assert(name)
4539 STATIC bool     S_gv_magicalize(pTHX_ GV *gv, HV *stash, const char *name, STRLEN len, const svtype sv_type);
4540 #define PERL_ARGS_ASSERT_GV_MAGICALIZE  \
4541         assert(gv); assert(stash); assert(name)
4542 STATIC void     S_gv_magicalize_isa(pTHX_ GV *gv);
4543 #define PERL_ARGS_ASSERT_GV_MAGICALIZE_ISA      \
4544         assert(gv)
4545 #ifndef PERL_NO_INLINE_FUNCTIONS
4546 PERL_STATIC_INLINE HV*  S_gv_stashpvn_internal(pTHX_ const char* name, U32 namelen, I32 flags);
4547 #define PERL_ARGS_ASSERT_GV_STASHPVN_INTERNAL   \
4548         assert(name)
4549 #endif
4550 #ifndef PERL_NO_INLINE_FUNCTIONS
4551 PERL_STATIC_INLINE HV*  S_gv_stashsvpvn_cached(pTHX_ SV *namesv, const char* name, U32 namelen, I32 flags);
4552 #endif
4553 STATIC void     S_maybe_multimagic_gv(pTHX_ GV *gv, const char *name, const svtype sv_type);
4554 #define PERL_ARGS_ASSERT_MAYBE_MULTIMAGIC_GV    \
4555         assert(gv); assert(name)
4556 STATIC bool     S_parse_gv_stash_name(pTHX_ HV **stash, GV **gv, const char **name, STRLEN *len, const char *nambeg, STRLEN full_len, const U32 is_utf8, const I32 add);
4557 #define PERL_ARGS_ASSERT_PARSE_GV_STASH_NAME    \
4558         assert(stash); assert(gv); assert(name); assert(len); assert(nambeg)
4559 STATIC void     S_require_tie_mod(pTHX_ GV *gv, const char varname, const char * name, STRLEN len, const U32 flags);
4560 #define PERL_ARGS_ASSERT_REQUIRE_TIE_MOD        \
4561         assert(gv); assert(varname); assert(name)
4562 #endif
4563 #if defined(PERL_IN_GV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_PAD_C) || defined(PERL_IN_OP_C)
4564 PERL_CALLCONV void      Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv);
4565 #define PERL_ARGS_ASSERT_SV_ADD_BACKREF \
4566         assert(tsv); assert(sv)
4567 #endif
4568 #if defined(PERL_IN_HV_C)
4569 STATIC void     S_clear_placeholders(pTHX_ HV *hv, U32 items);
4570 #define PERL_ARGS_ASSERT_CLEAR_PLACEHOLDERS     \
4571         assert(hv)
4572 STATIC void     S_hsplit(pTHX_ HV *hv, STRLEN const oldsize, STRLEN newsize);
4573 #define PERL_ARGS_ASSERT_HSPLIT \
4574         assert(hv)
4575 STATIC struct xpvhv_aux*        S_hv_auxinit(pTHX_ HV *hv);
4576 #define PERL_ARGS_ASSERT_HV_AUXINIT     \
4577         assert(hv)
4578 STATIC struct xpvhv_aux*        S_hv_auxinit_internal(struct xpvhv_aux *iter);
4579 #define PERL_ARGS_ASSERT_HV_AUXINIT_INTERNAL    \
4580         assert(iter)
4581 STATIC SV*      S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, int k_flags, I32 d_flags, U32 hash);
4582 STATIC SV*      S_hv_free_ent_ret(pTHX_ HV *hv, HE *entry);
4583 #define PERL_ARGS_ASSERT_HV_FREE_ENT_RET        \
4584         assert(hv); assert(entry)
4585 STATIC void     S_hv_free_entries(pTHX_ HV *hv);
4586 #define PERL_ARGS_ASSERT_HV_FREE_ENTRIES        \
4587         assert(hv)
4588 STATIC void     S_hv_magic_check(HV *hv, bool *needs_copy, bool *needs_store);
4589 #define PERL_ARGS_ASSERT_HV_MAGIC_CHECK \
4590         assert(hv); assert(needs_copy); assert(needs_store)
4591 PERL_STATIC_NO_RET void S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen, const char *msg)
4592                         __attribute__noreturn__;
4593 #define PERL_ARGS_ASSERT_HV_NOTALLOWED  \
4594         assert(key); assert(msg)
4595
4596 STATIC HE*      S_new_he(pTHX)
4597                         __attribute__warn_unused_result__;
4598
4599 #ifndef PERL_NO_INLINE_FUNCTIONS
4600 PERL_STATIC_INLINE U32  S_ptr_hash(PTRV u);
4601 #endif
4602 STATIC SV *     S_refcounted_he_value(pTHX_ const struct refcounted_he *he);
4603 #define PERL_ARGS_ASSERT_REFCOUNTED_HE_VALUE    \
4604         assert(he)
4605 STATIC HEK*     S_save_hek_flags(const char *str, I32 len, U32 hash, int flags)
4606                         __attribute__malloc__
4607                         __attribute__warn_unused_result__;
4608 #define PERL_ARGS_ASSERT_SAVE_HEK_FLAGS \
4609         assert(str)
4610
4611 STATIC HEK*     S_share_hek_flags(pTHX_ const char *str, STRLEN len, U32 hash, int flags)
4612                         __attribute__warn_unused_result__;
4613 #define PERL_ARGS_ASSERT_SHARE_HEK_FLAGS        \
4614         assert(str)
4615
4616 STATIC void     S_unshare_hek_or_pvn(pTHX_ const HEK* hek, const char* str, I32 len, U32 hash);
4617 #endif
4618 #if defined(PERL_IN_HV_C) || defined(PERL_IN_MG_C) || defined(PERL_IN_SV_C)
4619 PERL_CALLCONV void      Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av);
4620 #define PERL_ARGS_ASSERT_SV_KILL_BACKREFS       \
4621         assert(sv)
4622 #endif
4623 #if defined(PERL_IN_HV_C) || defined(PERL_IN_SV_C)
4624 PERL_CALLCONV SV*       Perl_hfree_next_entry(pTHX_ HV *hv, STRLEN *indexp);
4625 #define PERL_ARGS_ASSERT_HFREE_NEXT_ENTRY       \
4626         assert(hv); assert(indexp)
4627 #endif
4628 #if defined(PERL_IN_LOCALE_C)
4629 #ifndef PERL_NO_INLINE_FUNCTIONS
4630 PERL_STATIC_INLINE const char * S_save_to_buffer(const char * string, char **buf, Size_t *buf_size, const Size_t offset);
4631 #define PERL_ARGS_ASSERT_SAVE_TO_BUFFER \
4632         assert(string); assert(buf_size)
4633 #endif
4634 #  if defined(USE_LOCALE)
4635 STATIC void     S_new_collate(pTHX_ const char* newcoll);
4636 STATIC void     S_new_ctype(pTHX_ const char* newctype);
4637 #define PERL_ARGS_ASSERT_NEW_CTYPE      \
4638         assert(newctype)
4639 STATIC void     S_set_numeric_radix(pTHX_ const bool use_locale);
4640 STATIC char*    S_stdize_locale(pTHX_ char* locs);
4641 #define PERL_ARGS_ASSERT_STDIZE_LOCALE  \
4642         assert(locs)
4643 #    if defined(WIN32)
4644 STATIC char*    S_win32_setlocale(pTHX_ int category, const char* locale);
4645 #    endif
4646 #  endif
4647 #endif
4648 #if defined(PERL_IN_LOCALE_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_MATHOMS_C)
4649 #  if defined(USE_LOCALE_COLLATE)
4650 PERL_CALLCONV char*     Perl__mem_collxfrm(pTHX_ const char* input_string, STRLEN len, STRLEN* xlen, bool utf8);
4651 #define PERL_ARGS_ASSERT__MEM_COLLXFRM  \
4652         assert(input_string); assert(xlen)
4653 #  endif
4654 #endif
4655 #if defined(PERL_IN_MALLOC_C)
4656 STATIC int      S_adjust_size_and_find_bucket(size_t *nbytes_p);
4657 #define PERL_ARGS_ASSERT_ADJUST_SIZE_AND_FIND_BUCKET    \
4658         assert(nbytes_p)
4659 #endif
4660 #if defined(PERL_IN_MG_C)
4661 STATIC void     S_fixup_errno_string(pTHX_ SV* sv);
4662 #define PERL_ARGS_ASSERT_FIXUP_ERRNO_STRING     \
4663         assert(sv)
4664 STATIC SV*      S_magic_methcall1(pTHX_ SV *sv, const MAGIC *mg, SV *meth, U32 flags, int n, SV *val);
4665 #define PERL_ARGS_ASSERT_MAGIC_METHCALL1        \
4666         assert(sv); assert(mg); assert(meth)
4667 STATIC int      S_magic_methpack(pTHX_ SV *sv, const MAGIC *mg, SV *meth);
4668 #define PERL_ARGS_ASSERT_MAGIC_METHPACK \
4669         assert(sv); assert(mg); assert(meth)
4670 STATIC void     S_restore_magic(pTHX_ const void *p);
4671 STATIC void     S_save_magic_flags(pTHX_ I32 mgs_ix, SV *sv, U32 flags);
4672 #define PERL_ARGS_ASSERT_SAVE_MAGIC_FLAGS       \
4673         assert(sv)
4674 STATIC void     S_unwind_handler_stack(pTHX_ const void *p);
4675 #endif
4676 #if defined(PERL_IN_MG_C) || defined(PERL_IN_PP_C)
4677 PERL_CALLCONV bool      Perl_translate_substr_offsets(STRLEN curlen, IV pos1_iv, bool pos1_is_uv, IV len_iv, bool len_is_uv, STRLEN *posp, STRLEN *lenp);
4678 #define PERL_ARGS_ASSERT_TRANSLATE_SUBSTR_OFFSETS       \
4679         assert(posp); assert(lenp)
4680 #endif
4681 #if defined(PERL_IN_MRO_C)
4682 STATIC void     S_mro_clean_isarev(pTHX_ HV * const isa, const char * const name, const STRLEN len, HV * const exceptions, U32 hash, U32 flags);
4683 #define PERL_ARGS_ASSERT_MRO_CLEAN_ISAREV       \
4684         assert(isa); assert(name)
4685 STATIC void     S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes, HV *stash, HV *oldstash, SV *namesv);
4686 #define PERL_ARGS_ASSERT_MRO_GATHER_AND_RENAME  \
4687         assert(stashes); assert(seen_stashes); assert(namesv)
4688 STATIC AV*      S_mro_get_linear_isa_dfs(pTHX_ HV* stash, U32 level);
4689 #define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA_DFS \
4690         assert(stash)
4691 #endif
4692 #if defined(PERL_IN_OP_C)
4693 STATIC void     S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs);
4694 #define PERL_ARGS_ASSERT_APPLY_ATTRS    \
4695         assert(stash); assert(target)
4696 STATIC void     S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp);
4697 #define PERL_ARGS_ASSERT_APPLY_ATTRS_MY \
4698         assert(stash); assert(target); assert(imopsp)
4699 STATIC I32      S_assignment_type(pTHX_ const OP *o)
4700                         __attribute__warn_unused_result__;
4701
4702 STATIC void     S_bad_type_gv(pTHX_ I32 n, GV *gv, const OP *kid, const char *t);
4703 #define PERL_ARGS_ASSERT_BAD_TYPE_GV    \
4704         assert(gv); assert(kid); assert(t)
4705 STATIC void     S_bad_type_pv(pTHX_ I32 n, const char *t, const OP *o, const OP *kid);
4706 #define PERL_ARGS_ASSERT_BAD_TYPE_PV    \
4707         assert(t); assert(o); assert(kid)
4708 STATIC void     S_clear_special_blocks(pTHX_ const char *const fullname, GV *const gv, CV *const cv);
4709 #define PERL_ARGS_ASSERT_CLEAR_SPECIAL_BLOCKS   \
4710         assert(fullname); assert(gv); assert(cv)
4711 STATIC void     S_cop_free(pTHX_ COP *cop);
4712 #define PERL_ARGS_ASSERT_COP_FREE       \
4713         assert(cop)
4714 STATIC OP *     S_dup_attrlist(pTHX_ OP *o);
4715 #define PERL_ARGS_ASSERT_DUP_ATTRLIST   \
4716         assert(o)
4717 STATIC void     S_finalize_op(pTHX_ OP* o);
4718 #define PERL_ARGS_ASSERT_FINALIZE_OP    \
4719         assert(o)
4720 STATIC void     S_find_and_forget_pmops(pTHX_ OP *o);
4721 #define PERL_ARGS_ASSERT_FIND_AND_FORGET_PMOPS  \
4722         assert(o)
4723 STATIC OP*      S_fold_constants(pTHX_ OP * const o);
4724 #define PERL_ARGS_ASSERT_FOLD_CONSTANTS \
4725         assert(o)
4726 STATIC OP*      S_force_list(pTHX_ OP* arg, bool nullit);
4727 STATIC void     S_forget_pmop(pTHX_ PMOP *const o);
4728 #define PERL_ARGS_ASSERT_FORGET_PMOP    \
4729         assert(o)
4730 STATIC OP*      S_gen_constant_list(pTHX_ OP* o);
4731 STATIC void     S_inplace_aassign(pTHX_ OP* o);
4732 #define PERL_ARGS_ASSERT_INPLACE_AASSIGN        \
4733         assert(o)
4734 STATIC bool     S_is_handle_constructor(const OP *o, I32 numargs)
4735                         __attribute__warn_unused_result__;
4736 #define PERL_ARGS_ASSERT_IS_HANDLE_CONSTRUCTOR  \
4737         assert(o)
4738
4739 STATIC OP*      S_listkids(pTHX_ OP* o);
4740 STATIC bool     S_looks_like_bool(pTHX_ const OP* o);
4741 #define PERL_ARGS_ASSERT_LOOKS_LIKE_BOOL        \
4742         assert(o)
4743 STATIC OP*      S_modkids(pTHX_ OP *o, I32 type);
4744 STATIC void     S_move_proto_attr(pTHX_ OP **proto, OP **attrs, const GV *name, bool curstash);
4745 #define PERL_ARGS_ASSERT_MOVE_PROTO_ATTR        \
4746         assert(proto); assert(attrs); assert(name)
4747 STATIC OP *     S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp);
4748 #define PERL_ARGS_ASSERT_MY_KID \
4749         assert(imopsp)
4750 STATIC OP*      S_newGIVWHENOP(pTHX_ OP* cond, OP *block, I32 enter_opcode, I32 leave_opcode, PADOFFSET entertarg);
4751 #define PERL_ARGS_ASSERT_NEWGIVWHENOP   \
4752         assert(block)
4753 #ifndef PERL_NO_INLINE_FUNCTIONS
4754 PERL_STATIC_INLINE OP*  S_newMETHOP_internal(pTHX_ I32 type, I32 flags, OP* dynamic_meth, SV* const_meth);
4755 #endif
4756 STATIC OP*      S_new_logop(pTHX_ I32 type, I32 flags, OP **firstp, OP **otherp)
4757                         __attribute__warn_unused_result__;
4758 #define PERL_ARGS_ASSERT_NEW_LOGOP      \
4759         assert(firstp); assert(otherp)
4760
4761 STATIC void     S_no_bareword_allowed(pTHX_ OP *o);
4762 #define PERL_ARGS_ASSERT_NO_BAREWORD_ALLOWED    \
4763         assert(o)
4764 STATIC OP*      S_no_fh_allowed(pTHX_ OP *o)
4765                         __attribute__warn_unused_result__;
4766 #define PERL_ARGS_ASSERT_NO_FH_ALLOWED  \
4767         assert(o)
4768
4769 #ifndef PERL_NO_INLINE_FUNCTIONS
4770 PERL_STATIC_INLINE OP*  S_op_integerize(pTHX_ OP *o);
4771 #define PERL_ARGS_ASSERT_OP_INTEGERIZE  \
4772         assert(o)
4773 #endif
4774 #ifndef PERL_NO_INLINE_FUNCTIONS
4775 PERL_STATIC_INLINE OP*  S_op_std_init(pTHX_ OP *o);
4776 #define PERL_ARGS_ASSERT_OP_STD_INIT    \
4777         assert(o)
4778 #endif
4779 STATIC void     S_optimize_op(pTHX_ OP* o);
4780 #define PERL_ARGS_ASSERT_OPTIMIZE_OP    \
4781         assert(o)
4782 STATIC OP*      S_pmtrans(pTHX_ OP* o, OP* expr, OP* repl);
4783 #define PERL_ARGS_ASSERT_PMTRANS        \
4784         assert(o); assert(expr); assert(repl)
4785 STATIC bool     S_process_special_blocks(pTHX_ I32 floor, const char *const fullname, GV *const gv, CV *const cv);
4786 #define PERL_ARGS_ASSERT_PROCESS_SPECIAL_BLOCKS \
4787         assert(fullname); assert(gv); assert(cv)
4788 STATIC OP*      S_ref_array_or_hash(pTHX_ OP* cond);
4789 STATIC OP*      S_refkids(pTHX_ OP* o, I32 type);
4790 STATIC bool     S_scalar_mod_type(const OP *o, I32 type)
4791                         __attribute__warn_unused_result__;
4792
4793 STATIC OP*      S_scalarboolean(pTHX_ OP *o);
4794 #define PERL_ARGS_ASSERT_SCALARBOOLEAN  \
4795         assert(o)
4796 STATIC OP*      S_scalarkids(pTHX_ OP* o);
4797 STATIC OP*      S_scalarseq(pTHX_ OP* o);
4798 STATIC OP*      S_search_const(pTHX_ OP *o)
4799                         __attribute__warn_unused_result__;
4800 #define PERL_ARGS_ASSERT_SEARCH_CONST   \
4801         assert(o)
4802
4803 STATIC void     S_simplify_sort(pTHX_ OP *o);
4804 #define PERL_ARGS_ASSERT_SIMPLIFY_SORT  \
4805         assert(o)
4806 STATIC OP*      S_too_few_arguments_pv(pTHX_ OP *o, const char* name, U32 flags)
4807                         __attribute__warn_unused_result__;
4808 #define PERL_ARGS_ASSERT_TOO_FEW_ARGUMENTS_PV   \
4809         assert(o); assert(name)
4810
4811 STATIC OP*      S_too_many_arguments_pv(pTHX_ OP *o, const char* name, U32 flags);
4812 #define PERL_ARGS_ASSERT_TOO_MANY_ARGUMENTS_PV  \
4813         assert(o); assert(name)
4814 #  if defined(USE_ITHREADS)
4815 #ifndef PERL_NO_INLINE_FUNCTIONS
4816 PERL_STATIC_INLINE void S_op_relocate_sv(pTHX_ SV** svp, PADOFFSET* targp);
4817 #define PERL_ARGS_ASSERT_OP_RELOCATE_SV \
4818         assert(svp); assert(targp)
4819 #endif
4820 #  endif
4821 #endif
4822 #if defined(PERL_IN_OP_C) || defined(PERL_IN_SV_C)
4823 PERL_CALLCONV void      Perl_report_redefined_cv(pTHX_ const SV *name, const CV *old_cv, SV * const *new_const_svp);
4824 #define PERL_ARGS_ASSERT_REPORT_REDEFINED_CV    \
4825         assert(name); assert(old_cv)
4826 #endif
4827 #if defined(PERL_IN_PAD_C)
4828 STATIC PADOFFSET        S_pad_alloc_name(pTHX_ PADNAME *name, U32 flags, HV *typestash, HV *ourstash);
4829 #define PERL_ARGS_ASSERT_PAD_ALLOC_NAME \
4830         assert(name)
4831 STATIC void     S_pad_check_dup(pTHX_ PADNAME *name, U32 flags, const HV *ourstash);
4832 #define PERL_ARGS_ASSERT_PAD_CHECK_DUP  \
4833         assert(name)
4834 STATIC PADOFFSET        S_pad_findlex(pTHX_ const char *namepv, STRLEN namelen, U32 flags, const CV* cv, U32 seq, int warn, SV** out_capture, PADNAME** out_name, int *out_flags);
4835 #define PERL_ARGS_ASSERT_PAD_FINDLEX    \
4836         assert(namepv); assert(cv); assert(out_name); assert(out_flags)
4837 STATIC void     S_pad_reset(pTHX);
4838 #endif
4839 #if defined(PERL_IN_PERL_C)
4840 STATIC void     S_find_beginning(pTHX_ SV* linestr_sv, PerlIO *rsfp);
4841 #define PERL_ARGS_ASSERT_FIND_BEGINNING \
4842         assert(linestr_sv); assert(rsfp)
4843 STATIC void     S_forbid_setid(pTHX_ const char flag, const bool suidscript);
4844 STATIC void     S_incpush(pTHX_ const char *const dir, STRLEN len, U32 flags);
4845 #define PERL_ARGS_ASSERT_INCPUSH        \
4846         assert(dir)
4847 STATIC void     S_incpush_use_sep(pTHX_ const char *p, STRLEN len, U32 flags);
4848 #define PERL_ARGS_ASSERT_INCPUSH_USE_SEP        \
4849         assert(p)
4850 STATIC void     S_init_ids(pTHX);
4851 STATIC void     S_init_interp(pTHX);
4852 STATIC void     S_init_main_stash(pTHX);
4853 STATIC void     S_init_perllib(pTHX);
4854 STATIC void     S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env);
4855 #define PERL_ARGS_ASSERT_INIT_POSTDUMP_SYMBOLS  \
4856         assert(argv)
4857 STATIC void     S_init_predump_symbols(pTHX);
4858 STATIC SV*      S_mayberelocate(pTHX_ const char *const dir, STRLEN len, U32 flags);
4859 #define PERL_ARGS_ASSERT_MAYBERELOCATE  \
4860         assert(dir)
4861 PERL_STATIC_NO_RET void S_minus_v(pTHX)
4862                         __attribute__noreturn__;
4863
4864 PERL_STATIC_NO_RET void S_my_exit_jump(pTHX)
4865                         __attribute__noreturn__;
4866
4867 STATIC void     S_nuke_stacks(pTHX);
4868 STATIC PerlIO * S_open_script(pTHX_ const char *scriptname, bool dosearch, bool *suidscript);
4869 #define PERL_ARGS_ASSERT_OPEN_SCRIPT    \
4870         assert(scriptname); assert(suidscript)
4871 STATIC void*    S_parse_body(pTHX_ char **env, XSINIT_t xsinit);
4872 PERL_STATIC_NO_RET void S_run_body(pTHX_ I32 oldscope)
4873                         __attribute__noreturn__;
4874
4875 PERL_STATIC_NO_RET void S_usage(pTHX)
4876                         __attribute__noreturn__;
4877
4878 #endif
4879 #if defined(PERL_IN_PP_C)
4880 STATIC size_t   S_do_chomp(pTHX_ SV *retval, SV *sv, bool chomping);
4881 #define PERL_ARGS_ASSERT_DO_CHOMP       \
4882         assert(retval); assert(sv)
4883 STATIC OP*      S_do_delete_local(pTHX);
4884 STATIC SV*      S_refto(pTHX_ SV* sv)
4885                         __attribute__warn_unused_result__;
4886 #define PERL_ARGS_ASSERT_REFTO  \
4887         assert(sv)
4888
4889 #endif
4890 #if defined(PERL_IN_PP_C) || defined(PERL_IN_PP_HOT_C)
4891 PERL_CALLCONV GV*       Perl_softref2xv(pTHX_ SV *const sv, const char *const what, const svtype type, SV ***spp)
4892                         __attribute__warn_unused_result__;
4893 #define PERL_ARGS_ASSERT_SOFTREF2XV     \
4894         assert(sv); assert(what); assert(spp)
4895
4896 #endif
4897 #if defined(PERL_IN_PP_CTL_C)
4898 STATIC PerlIO * S_check_type_and_open(pTHX_ SV *name)
4899                         __attribute__warn_unused_result__;
4900 #define PERL_ARGS_ASSERT_CHECK_TYPE_AND_OPEN    \
4901         assert(name)
4902
4903 STATIC void     S_destroy_matcher(pTHX_ PMOP* matcher);
4904 #define PERL_ARGS_ASSERT_DESTROY_MATCHER        \
4905         assert(matcher)
4906 STATIC OP*      S_do_smartmatch(pTHX_ HV* seen_this, HV* seen_other, const bool copied);
4907 STATIC OP*      S_docatch(pTHX_ Perl_ppaddr_t firstpp)
4908                         __attribute__warn_unused_result__;
4909
4910 STATIC bool     S_doeval_compile(pTHX_ U8 gimme, CV* outside, U32 seq, HV* hh);
4911 STATIC OP*      S_dofindlabel(pTHX_ OP *o, const char *label, STRLEN len, U32 flags, OP **opstack, OP **oplimit)
4912                         __attribute__warn_unused_result__;
4913 #define PERL_ARGS_ASSERT_DOFINDLABEL    \
4914         assert(o); assert(label); assert(opstack); assert(oplimit)
4915
4916 STATIC MAGIC *  S_doparseform(pTHX_ SV *sv);
4917 #define PERL_ARGS_ASSERT_DOPARSEFORM    \
4918         assert(sv)
4919 STATIC I32      S_dopoptoeval(pTHX_ I32 startingblock)
4920                         __attribute__warn_unused_result__;
4921
4922 STATIC I32      S_dopoptogivenfor(pTHX_ I32 startingblock)
4923                         __attribute__warn_unused_result__;
4924
4925 STATIC I32      S_dopoptolabel(pTHX_ const char *label, STRLEN len, U32 flags)
4926                         __attribute__warn_unused_result__;
4927 #define PERL_ARGS_ASSERT_DOPOPTOLABEL   \
4928         assert(label)
4929
4930 STATIC I32      S_dopoptoloop(pTHX_ I32 startingblock)
4931                         __attribute__warn_unused_result__;
4932
4933 STATIC I32      S_dopoptosub_at(pTHX_ const PERL_CONTEXT* cxstk, I32 startingblock)
4934                         __attribute__warn_unused_result__;
4935 #define PERL_ARGS_ASSERT_DOPOPTOSUB_AT  \
4936         assert(cxstk)
4937
4938 STATIC I32      S_dopoptowhen(pTHX_ I32 startingblock)
4939                         __attribute__warn_unused_result__;
4940
4941 STATIC PMOP*    S_make_matcher(pTHX_ REGEXP* re)
4942                         __attribute__warn_unused_result__;
4943 #define PERL_ARGS_ASSERT_MAKE_MATCHER   \
4944         assert(re)
4945
4946 STATIC bool     S_matcher_matches_sv(pTHX_ PMOP* matcher, SV* sv)
4947                         __attribute__warn_unused_result__;
4948 #define PERL_ARGS_ASSERT_MATCHER_MATCHES_SV     \
4949         assert(matcher); assert(sv)
4950
4951 STATIC bool     S_num_overflow(NV value, I32 fldsize, I32 frcsize)
4952                         __attribute__warn_unused_result__;
4953
4954 #ifndef PERL_NO_INLINE_FUNCTIONS
4955 PERL_STATIC_INLINE bool S_path_is_searchable(const char *name)
4956                         __attribute__warn_unused_result__;
4957 #define PERL_ARGS_ASSERT_PATH_IS_SEARCHABLE     \
4958         assert(name)
4959 #endif
4960
4961 STATIC I32      S_run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen)
4962                         __attribute__warn_unused_result__;
4963 #define PERL_ARGS_ASSERT_RUN_USER_FILTER        \
4964         assert(buf_sv)
4965
4966 STATIC void     S_rxres_free(pTHX_ void** rsp);
4967 #define PERL_ARGS_ASSERT_RXRES_FREE     \
4968         assert(rsp)
4969 STATIC void     S_rxres_restore(pTHX_ void **rsp, REGEXP *rx);
4970 #define PERL_ARGS_ASSERT_RXRES_RESTORE  \
4971         assert(rsp); assert(rx)
4972 STATIC void     S_save_lines(pTHX_ AV *array, SV *sv);
4973 #define PERL_ARGS_ASSERT_SAVE_LINES     \
4974         assert(sv)
4975 #endif
4976 #if defined(PERL_IN_PP_HOT_C)
4977 STATIC void     S_do_oddball(pTHX_ SV **oddkey, SV **firstkey);
4978 #define PERL_ARGS_ASSERT_DO_ODDBALL     \
4979         assert(oddkey); assert(firstkey)
4980 #ifndef PERL_NO_INLINE_FUNCTIONS
4981 PERL_STATIC_INLINE HV*  S_opmethod_stash(pTHX_ SV* meth);
4982 #define PERL_ARGS_ASSERT_OPMETHOD_STASH \
4983         assert(meth)
4984 #endif
4985 #endif
4986 #if defined(PERL_IN_PP_PACK_C)
4987 STATIC int      S_div128(pTHX_ SV *pnum, bool *done);
4988 #define PERL_ARGS_ASSERT_DIV128 \
4989         assert(pnum); assert(done)
4990 STATIC char     S_first_symbol(const char *pat, const char *patend);
4991 #define PERL_ARGS_ASSERT_FIRST_SYMBOL   \
4992         assert(pat); assert(patend)
4993 STATIC const char *     S_get_num(pTHX_ const char *patptr, I32 *lenptr)
4994                         __attribute__warn_unused_result__;
4995 #define PERL_ARGS_ASSERT_GET_NUM        \
4996         assert(patptr); assert(lenptr)
4997
4998 STATIC const char *     S_group_end(pTHX_ const char *patptr, const char *patend, char ender);
4999 #define PERL_ARGS_ASSERT_GROUP_END      \
5000         assert(patptr); assert(patend)
5001 STATIC SV*      S_is_an_int(pTHX_ const char *s, STRLEN l)
5002                         __attribute__warn_unused_result__;
5003 #define PERL_ARGS_ASSERT_IS_AN_INT      \
5004         assert(s)
5005
5006 STATIC I32      S_measure_struct(pTHX_ struct tempsym* symptr);
5007 #define PERL_ARGS_ASSERT_MEASURE_STRUCT \
5008         assert(symptr)
5009 STATIC SV*      S_mul128(pTHX_ SV *sv, U8 m);
5010 #define PERL_ARGS_ASSERT_MUL128 \
5011         assert(sv)
5012 STATIC char *   S_my_bytes_to_utf8(const U8 *start, STRLEN len, char *dest, const bool needs_swap)
5013                         __attribute__warn_unused_result__;
5014 #define PERL_ARGS_ASSERT_MY_BYTES_TO_UTF8       \
5015         assert(start); assert(dest)
5016
5017 STATIC bool     S_need_utf8(const char *pat, const char *patend);
5018 #define PERL_ARGS_ASSERT_NEED_UTF8      \
5019         assert(pat); assert(patend)
5020 STATIC bool     S_next_symbol(pTHX_ struct tempsym* symptr);
5021 #define PERL_ARGS_ASSERT_NEXT_SYMBOL    \
5022         assert(symptr)
5023 STATIC SV **    S_pack_rec(pTHX_ SV *cat, struct tempsym* symptr, SV **beglist, SV **endlist);
5024 #define PERL_ARGS_ASSERT_PACK_REC       \
5025         assert(cat); assert(symptr); assert(beglist); assert(endlist)
5026 STATIC char *   S_sv_exp_grow(pTHX_ SV *sv, STRLEN needed)
5027                         __attribute__warn_unused_result__;
5028 #define PERL_ARGS_ASSERT_SV_EXP_GROW    \
5029         assert(sv)
5030
5031 STATIC I32      S_unpack_rec(pTHX_ struct tempsym* symptr, const char *s, const char *strbeg, const char *strend, const char **new_s);
5032 #define PERL_ARGS_ASSERT_UNPACK_REC     \
5033         assert(symptr); assert(s); assert(strbeg); assert(strend)
5034 #endif
5035 #if defined(PERL_IN_PP_SORT_C)
5036 STATIC I32      S_amagic_cmp(pTHX_ SV *const str1, SV *const str2);
5037 #define PERL_ARGS_ASSERT_AMAGIC_CMP     \
5038         assert(str1); assert(str2)
5039 STATIC I32      S_amagic_i_ncmp(pTHX_ SV *const a, SV *const b);
5040 #define PERL_ARGS_ASSERT_AMAGIC_I_NCMP  \
5041         assert(a); assert(b)
5042 STATIC I32      S_amagic_ncmp(pTHX_ SV *const a, SV *const b);
5043 #define PERL_ARGS_ASSERT_AMAGIC_NCMP    \
5044         assert(a); assert(b)
5045 STATIC I32      S_sortcv(pTHX_ SV *const a, SV *const b);
5046 #define PERL_ARGS_ASSERT_SORTCV \
5047         assert(a); assert(b)
5048 STATIC I32      S_sortcv_stacked(pTHX_ SV *const a, SV *const b);
5049 #define PERL_ARGS_ASSERT_SORTCV_STACKED \
5050         assert(a); assert(b)
5051 STATIC I32      S_sortcv_xsub(pTHX_ SV *const a, SV *const b);
5052 #define PERL_ARGS_ASSERT_SORTCV_XSUB    \
5053         assert(a); assert(b)
5054 STATIC I32      S_sv_i_ncmp(pTHX_ SV *const a, SV *const b);
5055 #define PERL_ARGS_ASSERT_SV_I_NCMP      \
5056         assert(a); assert(b)
5057 STATIC I32      S_sv_ncmp(pTHX_ SV *const a, SV *const b);
5058 #define PERL_ARGS_ASSERT_SV_NCMP        \
5059         assert(a); assert(b)
5060 #  if defined(USE_LOCALE_COLLATE)
5061 STATIC I32      S_amagic_cmp_locale(pTHX_ SV *const str1, SV *const str2);
5062 #define PERL_ARGS_ASSERT_AMAGIC_CMP_LOCALE      \
5063         assert(str1); assert(str2)
5064 #  endif
5065 #endif
5066 #if defined(PERL_IN_PP_SYS_C)
5067 STATIC OP*      S_doform(pTHX_ CV *cv, GV *gv, OP *retop);
5068 #define PERL_ARGS_ASSERT_DOFORM \
5069         assert(cv); assert(gv)
5070 STATIC SV *     S_space_join_names_mortal(pTHX_ char *const *array);
5071 #endif
5072 #if defined(PERL_IN_REGCOMP_C)
5073 STATIC SV*      S__make_exactf_invlist(pTHX_ RExC_state_t *pRExC_state, regnode *node)
5074                         __attribute__warn_unused_result__;
5075 #define PERL_ARGS_ASSERT__MAKE_EXACTF_INVLIST   \
5076         assert(pRExC_state); assert(node)
5077
5078 STATIC void     S_add_above_Latin1_folds(pTHX_ RExC_state_t *pRExC_state, const U8 cp, SV** invlist);
5079 #define PERL_ARGS_ASSERT_ADD_ABOVE_LATIN1_FOLDS \
5080         assert(pRExC_state); assert(invlist)
5081 #ifndef PERL_NO_INLINE_FUNCTIONS
5082 PERL_STATIC_INLINE SV*  S_add_cp_to_invlist(pTHX_ SV* invlist, const UV cp)
5083                         __attribute__warn_unused_result__;
5084 #endif
5085
5086 STATIC U32      S_add_data(RExC_state_t* const pRExC_state, const char* const s, const U32 n)
5087                         __attribute__warn_unused_result__;
5088 #define PERL_ARGS_ASSERT_ADD_DATA       \
5089         assert(pRExC_state); assert(s)
5090
5091 STATIC AV*      S_add_multi_match(pTHX_ AV* multi_char_matches, SV* multi_string, const STRLEN cp_count);
5092 #define PERL_ARGS_ASSERT_ADD_MULTI_MATCH        \
5093         assert(multi_string)
5094 #ifndef PERL_NO_INLINE_FUNCTIONS
5095 PERL_STATIC_INLINE void S_alloc_maybe_populate_EXACT(pTHX_ RExC_state_t *pRExC_state, regnode *node, I32 *flagp, STRLEN len, UV code_point, bool downgradable);
5096 #define PERL_ARGS_ASSERT_ALLOC_MAYBE_POPULATE_EXACT     \
5097         assert(pRExC_state); assert(node); assert(flagp)
5098 #endif
5099 STATIC const char *     S_cntrl_to_mnemonic(const U8 c)
5100                         __attribute__warn_unused_result__;
5101
5102 #ifndef PERL_NO_INLINE_FUNCTIONS
5103 PERL_STATIC_INLINE U8   S_compute_EXACTish(RExC_state_t *pRExC_state);
5104 #define PERL_ARGS_ASSERT_COMPUTE_EXACTISH       \
5105         assert(pRExC_state)
5106 #endif
5107 STATIC regnode *        S_construct_ahocorasick_from_trie(pTHX_ RExC_state_t *pRExC_state, regnode *source, U32 depth);
5108 #define PERL_ARGS_ASSERT_CONSTRUCT_AHOCORASICK_FROM_TRIE        \
5109         assert(pRExC_state); assert(source)
5110 STATIC int      S_edit_distance(const UV *src, const UV *tgt, const STRLEN x, const STRLEN y, const SSize_t maxDistance)
5111                         __attribute__warn_unused_result__;
5112 #define PERL_ARGS_ASSERT_EDIT_DISTANCE  \
5113         assert(src); assert(tgt)
5114
5115 STATIC SV*      S_get_ANYOF_cp_list_for_ssc(pTHX_ const RExC_state_t *pRExC_state, const regnode_charclass* const node);
5116 #define PERL_ARGS_ASSERT_GET_ANYOF_CP_LIST_FOR_SSC      \
5117         assert(pRExC_state); assert(node)
5118 #ifndef PERL_NO_INLINE_FUNCTIONS
5119 PERL_STATIC_INLINE STRLEN*      S_get_invlist_iter_addr(SV* invlist)
5120                         __attribute__warn_unused_result__;
5121 #define PERL_ARGS_ASSERT_GET_INVLIST_ITER_ADDR  \
5122         assert(invlist)
5123 #endif
5124
5125 STATIC bool     S_grok_bslash_N(pTHX_ RExC_state_t *pRExC_state, regnode** nodep, UV *code_point_p, int* cp_count, I32 *flagp, const bool strict, const U32 depth);
5126 #define PERL_ARGS_ASSERT_GROK_BSLASH_N  \
5127         assert(pRExC_state); assert(flagp)
5128 #ifndef PERL_NO_INLINE_FUNCTIONS
5129 PERL_STATIC_INLINE regnode*     S_handle_named_backref(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, char * parse_start, char ch);
5130 #define PERL_ARGS_ASSERT_HANDLE_NAMED_BACKREF   \
5131         assert(pRExC_state); assert(flagp); assert(parse_start)
5132 #endif
5133 STATIC int      S_handle_possible_posix(pTHX_ RExC_state_t *pRExC_state, const char* const s, char ** updated_parse_ptr, AV** posix_warnings, const bool check_only);
5134 #define PERL_ARGS_ASSERT_HANDLE_POSSIBLE_POSIX  \
5135         assert(pRExC_state); assert(s)
5136 STATIC regnode* S_handle_regex_sets(pTHX_ RExC_state_t *pRExC_state, SV ** return_invlist, I32 *flagp, U32 depth, char * const oregcomp_parse);
5137 #define PERL_ARGS_ASSERT_HANDLE_REGEX_SETS      \
5138         assert(pRExC_state); assert(flagp); assert(oregcomp_parse)
5139 #ifndef PERL_NO_INLINE_FUNCTIONS
5140 PERL_STATIC_INLINE SV*  S_invlist_clone(pTHX_ SV* const invlist)
5141                         __attribute__warn_unused_result__;
5142 #define PERL_ARGS_ASSERT_INVLIST_CLONE  \
5143         assert(invlist)
5144 #endif
5145
5146 STATIC SV*      S_invlist_contents(pTHX_ SV* const invlist, const bool traditional_style)
5147                         __attribute__warn_unused_result__;
5148 #define PERL_ARGS_ASSERT_INVLIST_CONTENTS       \
5149         assert(invlist)
5150
5151 #ifndef PERL_NO_INLINE_FUNCTIONS
5152 PERL_STATIC_INLINE UV   S_invlist_highest(SV* const invlist)
5153                         __attribute__warn_unused_result__;
5154 #define PERL_ARGS_ASSERT_INVLIST_HIGHEST        \
5155         assert(invlist)
5156 #endif
5157
5158 #ifndef PERL_NO_INLINE_FUNCTIONS
5159 PERL_STATIC_INLINE bool S_invlist_is_iterating(SV* const invlist)
5160                         __attribute__warn_unused_result__;
5161 #define PERL_ARGS_ASSERT_INVLIST_IS_ITERATING   \
5162         assert(invlist)
5163 #endif
5164
5165 #ifndef PERL_NO_INLINE_FUNCTIONS
5166 PERL_STATIC_INLINE void S_invlist_iterfinish(SV* invlist);
5167 #define PERL_ARGS_ASSERT_INVLIST_ITERFINISH     \
5168         assert(invlist)
5169 #endif
5170 #ifndef PERL_NO_INLINE_FUNCTIONS
5171 PERL_STATIC_INLINE void S_invlist_iterinit(SV* invlist);
5172 #define PERL_ARGS_ASSERT_INVLIST_ITERINIT       \
5173         assert(invlist)
5174 #endif
5175 STATIC bool     S_invlist_iternext(SV* invlist, UV* start, UV* end)
5176                         __attribute__warn_unused_result__;
5177 #define PERL_ARGS_ASSERT_INVLIST_ITERNEXT       \
5178         assert(invlist); assert(start); assert(end)
5179
5180 #ifndef PERL_NO_INLINE_FUNCTIONS
5181 PERL_STATIC_INLINE void S_invlist_set_len(pTHX_ SV* const invlist, const UV len, const bool offset);
5182 #define PERL_ARGS_ASSERT_INVLIST_SET_LEN        \
5183         assert(invlist)
5184 #endif
5185 STATIC bool     S_is_ssc_worth_it(const RExC_state_t * pRExC_state, const regnode_ssc * ssc);
5186 #define PERL_ARGS_ASSERT_IS_SSC_WORTH_IT        \
5187         assert(pRExC_state); assert(ssc)
5188 STATIC U32      S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan, UV *min_subtract, bool *unfolded_multi_char, U32 flags, regnode *val, U32 depth);
5189 #define PERL_ARGS_ASSERT_JOIN_EXACT     \
5190         assert(pRExC_state); assert(scan); assert(min_subtract); assert(unfolded_multi_char)
5191 STATIC I32      S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 word_count, U32 flags, U32 depth);
5192 #define PERL_ARGS_ASSERT_MAKE_TRIE      \
5193         assert(pRExC_state); assert(startbranch); assert(first); assert(last); assert(tail)
5194 STATIC bool     S_new_regcurly(const char *s, const char *e)
5195                         __attribute__warn_unused_result__;
5196 #define PERL_ARGS_ASSERT_NEW_REGCURLY   \
5197         assert(s); assert(e)
5198
5199 STATIC void     S_nextchar(pTHX_ RExC_state_t *pRExC_state);
5200 #define PERL_ARGS_ASSERT_NEXTCHAR       \
5201         assert(pRExC_state)
5202 STATIC void     S_output_or_return_posix_warnings(pTHX_ RExC_state_t *pRExC_state, AV* posix_warnings, AV** return_posix_warnings);
5203 #define PERL_ARGS_ASSERT_OUTPUT_OR_RETURN_POSIX_WARNINGS        \
5204         assert(pRExC_state); assert(posix_warnings)
5205 STATIC void     S_parse_lparen_question_flags(pTHX_ RExC_state_t *pRExC_state);
5206 #define PERL_ARGS_ASSERT_PARSE_LPAREN_QUESTION_FLAGS    \
5207         assert(pRExC_state)
5208 STATIC void     S_populate_ANYOF_from_invlist(pTHX_ regnode *node, SV** invlist_ptr);
5209 #define PERL_ARGS_ASSERT_POPULATE_ANYOF_FROM_INVLIST    \
5210         assert(node); assert(invlist_ptr)
5211 PERL_STATIC_NO_RET void S_re_croak2(pTHX_ bool utf8, const char* pat1, const char* pat2, ...)
5212                         __attribute__noreturn__;
5213 #define PERL_ARGS_ASSERT_RE_CROAK2      \
5214         assert(pat1); assert(pat2)
5215
5216 STATIC regnode* S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp, U32 depth);
5217 #define PERL_ARGS_ASSERT_REG    \
5218         assert(pRExC_state); assert(flagp)
5219 STATIC regnode* S_reg2Lanode(pTHX_ RExC_state_t *pRExC_state, const U8 op, const U32 arg1, const I32 arg2);
5220 #define PERL_ARGS_ASSERT_REG2LANODE     \
5221         assert(pRExC_state)
5222 STATIC regnode* S_reg_node(pTHX_ RExC_state_t *pRExC_state, U8 op);
5223 #define PERL_ARGS_ASSERT_REG_NODE       \
5224         assert(pRExC_state)
5225 STATIC SV *     S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags);
5226 #define PERL_ARGS_ASSERT_REG_SCAN_NAME  \
5227         assert(pRExC_state)
5228 #ifndef PERL_NO_INLINE_FUNCTIONS
5229 PERL_STATIC_INLINE char *       S_reg_skipcomment(RExC_state_t *pRExC_state, char * p);
5230 #define PERL_ARGS_ASSERT_REG_SKIPCOMMENT        \
5231         assert(pRExC_state); assert(p)
5232 #endif
5233 STATIC regnode* S_reganode(pTHX_ RExC_state_t *pRExC_state, U8 op, U32 arg);
5234 #define PERL_ARGS_ASSERT_REGANODE       \
5235         assert(pRExC_state)
5236 STATIC regnode* S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth);
5237 #define PERL_ARGS_ASSERT_REGATOM        \
5238         assert(pRExC_state); assert(flagp)
5239 STATIC regnode* S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth);
5240 #define PERL_ARGS_ASSERT_REGBRANCH      \
5241         assert(pRExC_state); assert(flagp)
5242 STATIC regnode* S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth, const bool stop_at_1, bool allow_multi_fold, const bool silence_non_portable, const bool strict, bool optimizable, SV** ret_invlist, AV** return_posix_warnings);
5243 #define PERL_ARGS_ASSERT_REGCLASS       \
5244         assert(pRExC_state); assert(flagp)
5245 STATIC unsigned int     S_regex_set_precedence(const U8 my_operator)
5246                         __attribute__warn_unused_result__;
5247
5248 STATIC void     S_reginsert(pTHX_ RExC_state_t *pRExC_state, U8 op, regnode *operand, U32 depth);
5249 #define PERL_ARGS_ASSERT_REGINSERT      \
5250         assert(pRExC_state); assert(operand)
5251 STATIC regnode* S_regnode_guts(pTHX_ RExC_state_t *pRExC_state, const U8 op, const STRLEN extra_len, const char* const name);
5252 #define PERL_ARGS_ASSERT_REGNODE_GUTS   \
5253         assert(pRExC_state); assert(name)
5254 STATIC regnode* S_regpiece(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth);
5255 #define PERL_ARGS_ASSERT_REGPIECE       \
5256         assert(pRExC_state); assert(flagp)
5257 STATIC void     S_regtail(pTHX_ RExC_state_t * pRExC_state, const regnode * const p, const regnode * const val, const U32 depth);
5258 #define PERL_ARGS_ASSERT_REGTAIL        \
5259         assert(pRExC_state); assert(p); assert(val)
5260 STATIC void     S_scan_commit(pTHX_ const RExC_state_t *pRExC_state, struct scan_data_t *data, SSize_t *minlenp, int is_inf);
5261 #define PERL_ARGS_ASSERT_SCAN_COMMIT    \
5262         assert(pRExC_state); assert(data); assert(minlenp)
5263 STATIC void     S_set_ANYOF_arg(pTHX_ RExC_state_t* const pRExC_state, regnode* const node, SV* const cp_list, SV* const runtime_defns, SV* const only_utf8_locale_list, SV* const swash, const bool has_user_defined_property);
5264 #define PERL_ARGS_ASSERT_SET_ANYOF_ARG  \
5265         assert(pRExC_state); assert(node)
5266 STATIC void     S_skip_to_be_ignored_text(pTHX_ RExC_state_t *pRExC_state, char ** p, const bool force_to_xmod);
5267 #define PERL_ARGS_ASSERT_SKIP_TO_BE_IGNORED_TEXT        \
5268         assert(pRExC_state); assert(p)
5269 #ifndef PERL_NO_INLINE_FUNCTIONS
5270 PERL_STATIC_INLINE void S_ssc_add_range(pTHX_ regnode_ssc *ssc, UV const start, UV const end);
5271 #define PERL_ARGS_ASSERT_SSC_ADD_RANGE  \
5272         assert(ssc)
5273 #endif
5274 STATIC void     S_ssc_and(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc, const regnode_charclass *and_with);
5275 #define PERL_ARGS_ASSERT_SSC_AND        \
5276         assert(pRExC_state); assert(ssc); assert(and_with)
5277 STATIC void     S_ssc_anything(pTHX_ regnode_ssc *ssc);
5278 #define PERL_ARGS_ASSERT_SSC_ANYTHING   \
5279         assert(ssc)
5280 #ifndef PERL_NO_INLINE_FUNCTIONS
5281 PERL_STATIC_INLINE void S_ssc_clear_locale(regnode_ssc *ssc);
5282 #define PERL_ARGS_ASSERT_SSC_CLEAR_LOCALE       \
5283         assert(ssc)
5284 #endif
5285 #ifndef PERL_NO_INLINE_FUNCTIONS
5286 PERL_STATIC_INLINE void S_ssc_cp_and(pTHX_ regnode_ssc *ssc, UV const cp);
5287 #define PERL_ARGS_ASSERT_SSC_CP_AND     \
5288         assert(ssc)
5289 #endif
5290 STATIC void     S_ssc_finalize(pTHX_ RExC_state_t *pRExC_state, regnode_ssc *ssc);
5291 #define PERL_ARGS_ASSERT_SSC_FINALIZE   \
5292         assert(pRExC_state); assert(ssc)
5293 STATIC void     S_ssc_init(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc);
5294 #define PERL_ARGS_ASSERT_SSC_INIT       \
5295         assert(pRExC_state); assert(ssc)
5296 #ifndef PERL_NO_INLINE_FUNCTIONS
5297 PERL_STATIC_INLINE void S_ssc_intersection(pTHX_ regnode_ssc *ssc, SV* const invlist, const bool invert_2nd);
5298 #define PERL_ARGS_ASSERT_SSC_INTERSECTION       \
5299         assert(ssc); assert(invlist)
5300 #endif
5301 STATIC int      S_ssc_is_anything(const regnode_ssc *ssc)
5302                         __attribute__warn_unused_result__;
5303 #define PERL_ARGS_ASSERT_SSC_IS_ANYTHING        \
5304         assert(ssc)
5305
5306 STATIC int      S_ssc_is_cp_posixl_init(const RExC_state_t *pRExC_state, const regnode_ssc *ssc)
5307                         __attribute__warn_unused_result__;
5308 #define PERL_ARGS_ASSERT_SSC_IS_CP_POSIXL_INIT  \
5309         assert(pRExC_state); assert(ssc)
5310
5311 STATIC void     S_ssc_or(pTHX_ const RExC_state_t *pRExC_state, regnode_ssc *ssc, const regnode_charclass *or_with);
5312 #define PERL_ARGS_ASSERT_SSC_OR \
5313         assert(pRExC_state); assert(ssc); assert(or_with)
5314 #ifndef PERL_NO_INLINE_FUNCTIONS
5315 PERL_STATIC_INLINE void S_ssc_union(pTHX_ regnode_ssc *ssc, SV* const invlist, const bool invert_2nd);
5316 #define PERL_ARGS_ASSERT_SSC_UNION      \
5317         assert(ssc); assert(invlist)
5318 #endif
5319 STATIC SSize_t  S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp, SSize_t *minlenp, SSize_t *deltap, regnode *last, struct scan_data_t *data, I32 stopparen, U32 recursed_depth, regnode_ssc *and_withp, U32 flags, U32 depth);
5320 #define PERL_ARGS_ASSERT_STUDY_CHUNK    \
5321         assert(pRExC_state); assert(scanp); assert(minlenp); assert(deltap); assert(last)
5322 #endif
5323 #if defined(PERL_IN_REGCOMP_C) || defined (PERL_IN_DUMP_C)
5324 PERL_CALLCONV void      Perl__invlist_dump(pTHX_ PerlIO *file, I32 level, const char* const indent, SV* const invlist);
5325 #define PERL_ARGS_ASSERT__INVLIST_DUMP  \
5326         assert(file); assert(indent); assert(invlist)
5327 #endif
5328 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_PERL_C) || defined(PERL_IN_UTF8_C)
5329 PERL_CALLCONV bool      Perl__invlistEQ(pTHX_ SV* const a, SV* const b, const bool complement_b);
5330 #define PERL_ARGS_ASSERT__INVLISTEQ     \
5331         assert(a); assert(b)
5332 PERL_CALLCONV SV*       Perl__new_invlist_C_array(pTHX_ const UV* const list)
5333                         __attribute__warn_unused_result__;
5334 #define PERL_ARGS_ASSERT__NEW_INVLIST_C_ARRAY   \
5335         assert(list)
5336
5337 #endif
5338 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
5339 PERL_CALLCONV SV*       Perl__get_regclass_nonbitmap_data(pTHX_ const regexp *prog, const struct regnode *node, bool doinit, SV **listsvp, SV **lonly_utf8_locale, SV **output_invlist);
5340 #define PERL_ARGS_ASSERT__GET_REGCLASS_NONBITMAP_DATA   \
5341         assert(node)
5342 PERL_CALLCONV void      Perl__load_PL_utf8_foldclosures(pTHX);
5343 PERL_CALLCONV int       Perl_re_printf(pTHX_ const char *fmt, ...);
5344 #define PERL_ARGS_ASSERT_RE_PRINTF      \
5345         assert(fmt)
5346 PERL_CALLCONV void      Perl_regprop(pTHX_ const regexp *prog, SV* sv, const regnode* o, const regmatch_info *reginfo, const RExC_state_t *pRExC_state);
5347 #define PERL_ARGS_ASSERT_REGPROP        \
5348         assert(sv); assert(o)
5349 #endif
5350 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C)
5351 PERL_CALLCONV SV*       Perl__get_swash_invlist(pTHX_ SV* const swash)
5352                         __attribute__warn_unused_result__;
5353 #define PERL_ARGS_ASSERT__GET_SWASH_INVLIST     \
5354         assert(swash)
5355
5356 #ifndef PERL_NO_INLINE_FUNCTIONS
5357 PERL_STATIC_INLINE bool S__invlist_contains_cp(SV* const invlist, const UV cp)
5358                         __attribute__warn_unused_result__;
5359 #define PERL_ARGS_ASSERT__INVLIST_CONTAINS_CP   \
5360         assert(invlist)
5361 #endif
5362
5363 #ifndef PERL_NO_INLINE_FUNCTIONS
5364 PERL_STATIC_INLINE UV   S__invlist_len(SV* const invlist)
5365                         __attribute__warn_unused_result__;
5366 #define PERL_ARGS_ASSERT__INVLIST_LEN   \
5367         assert(invlist)
5368 #endif
5369
5370 PERL_CALLCONV SSize_t   Perl__invlist_search(SV* const invlist, const UV cp)
5371                         __attribute__warn_unused_result__;
5372 #define PERL_ARGS_ASSERT__INVLIST_SEARCH        \
5373         assert(invlist)
5374
5375 PERL_CALLCONV HV*       Perl__swash_inversion_hash(pTHX_ SV* const swash)
5376                         __attribute__warn_unused_result__;
5377 #define PERL_ARGS_ASSERT__SWASH_INVERSION_HASH  \
5378         assert(swash)
5379
5380 #ifndef PERL_NO_INLINE_FUNCTIONS
5381 PERL_STATIC_INLINE bool*        S_get_invlist_offset_addr(SV* invlist)
5382                         __attribute__warn_unused_result__;
5383 #define PERL_ARGS_ASSERT_GET_INVLIST_OFFSET_ADDR        \
5384         assert(invlist)
5385 #endif
5386
5387 #ifndef PERL_NO_INLINE_FUNCTIONS
5388 PERL_STATIC_INLINE UV*  S_invlist_array(SV* const invlist)
5389                         __attribute__warn_unused_result__;
5390 #define PERL_ARGS_ASSERT_INVLIST_ARRAY  \
5391         assert(invlist)
5392 #endif
5393
5394 #endif
5395 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C) || defined(PERL_IN_TOKE_C)
5396 PERL_CALLCONV SV*       Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p);
5397 #define PERL_ARGS_ASSERT__CORE_SWASH_INIT       \
5398         assert(pkg); assert(name); assert(listsv)
5399 #endif
5400 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_TOKE_C) || defined(PERL_IN_DQUOTE_C)
5401 #ifndef PERL_NO_INLINE_FUNCTIONS
5402 PERL_STATIC_INLINE char*        S_form_short_octal_warning(pTHX_ const char * const s, const STRLEN len)
5403                         __attribute__warn_unused_result__;
5404 #define PERL_ARGS_ASSERT_FORM_SHORT_OCTAL_WARNING       \
5405         assert(s)
5406 #endif
5407
5408 PERL_CALLCONV char      Perl_grok_bslash_c(pTHX_ const char source, const bool output_warning)
5409                         __attribute__warn_unused_result__;
5410
5411 PERL_CALLCONV bool      Perl_grok_bslash_o(pTHX_ char** s, const char* const send, UV* uv, const char** error_msg, const bool output_warning, const bool strict, const bool silence_non_portable, const bool utf8)
5412                         __attribute__warn_unused_result__;
5413 #define PERL_ARGS_ASSERT_GROK_BSLASH_O  \
5414         assert(s); assert(send); assert(uv); assert(error_msg)
5415
5416 PERL_CALLCONV bool      Perl_grok_bslash_x(pTHX_ char** s, const char* const send, UV* uv, const char** error_msg, const bool output_warning, const bool strict, const bool silence_non_portable, const bool utf8)
5417                         __attribute__warn_unused_result__;
5418 #define PERL_ARGS_ASSERT_GROK_BSLASH_X  \
5419         assert(s); assert(send); assert(uv); assert(error_msg)
5420
5421 #ifndef PERL_NO_INLINE_FUNCTIONS
5422 PERL_STATIC_INLINE I32  S_regcurly(const char *s)
5423                         __attribute__warn_unused_result__;
5424 #define PERL_ARGS_ASSERT_REGCURLY       \
5425         assert(s)
5426 #endif
5427
5428 #endif
5429 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)
5430 PERL_CALLCONV SV*       Perl__add_range_to_invlist(pTHX_ SV* invlist, UV start, UV end)
5431                         __attribute__warn_unused_result__;
5432
5433 /* PERL_CALLCONV void   _invlist_intersection(pTHX_ SV* const a, SV* const b, SV** i); */
5434 PERL_CALLCONV void      Perl__invlist_intersection_maybe_complement_2nd(pTHX_ SV* const a, SV* const b, const bool complement_b, SV** i);
5435 #define PERL_ARGS_ASSERT__INVLIST_INTERSECTION_MAYBE_COMPLEMENT_2ND     \
5436         assert(b); assert(i)
5437 PERL_CALLCONV void      Perl__invlist_invert(pTHX_ SV* const invlist);
5438 #define PERL_ARGS_ASSERT__INVLIST_INVERT        \
5439         assert(invlist)
5440 PERL_CALLCONV void      Perl__invlist_populate_swatch(SV* const invlist, const UV start, const UV end, U8* swatch);
5441 #define PERL_ARGS_ASSERT__INVLIST_POPULATE_SWATCH       \
5442         assert(invlist); assert(swatch)
5443 /* PERL_CALLCONV void   _invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result); */
5444 /* PERL_CALLCONV void   _invlist_union(pTHX_ SV* const a, SV* const b, SV** output); */
5445 PERL_CALLCONV void      Perl__invlist_union_maybe_complement_2nd(pTHX_ SV* const a, SV* const b, const bool complement_b, SV** output);
5446 #define PERL_ARGS_ASSERT__INVLIST_UNION_MAYBE_COMPLEMENT_2ND    \
5447         assert(b); assert(output)
5448 PERL_CALLCONV SV*       Perl__new_invlist(pTHX_ IV initial_size)
5449                         __attribute__warn_unused_result__;
5450
5451 PERL_CALLCONV SV*       Perl__setup_canned_invlist(pTHX_ const STRLEN size, const UV element0, UV** other_elements_ptr)
5452                         __attribute__warn_unused_result__;
5453 #define PERL_ARGS_ASSERT__SETUP_CANNED_INVLIST  \
5454         assert(other_elements_ptr)
5455
5456 PERL_CALLCONV SV*       Perl__swash_to_invlist(pTHX_ SV* const swash)
5457                         __attribute__warn_unused_result__;
5458 #define PERL_ARGS_ASSERT__SWASH_TO_INVLIST      \
5459         assert(swash)
5460
5461 #endif
5462 #if defined(PERL_IN_REGEXEC_C)
5463 STATIC LB_enum  S_advance_one_LB(pTHX_ U8 ** curpos, const U8 * const strend, const bool utf8_target)
5464                         __attribute__warn_unused_result__;
5465 #define PERL_ARGS_ASSERT_ADVANCE_ONE_LB \
5466         assert(curpos); assert(strend)
5467
5468 STATIC SB_enum  S_advance_one_SB(pTHX_ U8 ** curpos, const U8 * const strend, const bool utf8_target)
5469                         __attribute__warn_unused_result__;
5470 #define PERL_ARGS_ASSERT_ADVANCE_ONE_SB \
5471         assert(curpos); assert(strend)
5472
5473 STATIC WB_enum  S_advance_one_WB(pTHX_ U8 ** curpos, const U8 * const strend, const bool utf8_target, const bool skip_Extend_Format)
5474                         __attribute__warn_unused_result__;
5475 #define PERL_ARGS_ASSERT_ADVANCE_ONE_WB \
5476         assert(curpos); assert(strend)
5477
5478 STATIC GCB_enum S_backup_one_GCB(pTHX_ const U8 * const strbeg, U8 ** curpos, const bool utf8_target)
5479                         __attribute__warn_unused_result__;
5480 #define PERL_ARGS_ASSERT_BACKUP_ONE_GCB \
5481         assert(strbeg); assert(curpos)
5482
5483 STATIC LB_enum  S_backup_one_LB(pTHX_ const U8 * const strbeg, U8 ** curpos, const bool utf8_target)
5484                         __attribute__warn_unused_result__;
5485 #define PERL_ARGS_ASSERT_BACKUP_ONE_LB  \
5486         assert(strbeg); assert(curpos)
5487
5488 STATIC SB_enum  S_backup_one_SB(pTHX_ const U8 * const strbeg, U8 ** curpos, const bool utf8_target)
5489                         __attribute__warn_unused_result__;
5490 #define PERL_ARGS_ASSERT_BACKUP_ONE_SB  \
5491         assert(strbeg); assert(curpos)
5492
5493 STATIC WB_enum  S_backup_one_WB(pTHX_ WB_enum * previous, const U8 * const strbeg, U8 ** curpos, const bool utf8_target)
5494                         __attribute__warn_unused_result__;
5495 #define PERL_ARGS_ASSERT_BACKUP_ONE_WB  \
5496         assert(previous); assert(strbeg); assert(curpos)
5497
5498 STATIC char*    S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s, const char *strend, regmatch_info *reginfo)
5499                         __attribute__warn_unused_result__;
5500 #define PERL_ARGS_ASSERT_FIND_BYCLASS   \
5501         assert(prog); assert(c); assert(s); assert(strend)
5502
5503 STATIC bool     S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character)
5504                         __attribute__warn_unused_result__;
5505 #define PERL_ARGS_ASSERT_ISFOO_UTF8_LC  \
5506         assert(character)
5507
5508 STATIC bool     S_isGCB(pTHX_ const GCB_enum before, const GCB_enum after, const U8 * const strbeg, const U8 * const curpos, const bool utf8_target)
5509                         __attribute__warn_unused_result__;
5510 #define PERL_ARGS_ASSERT_ISGCB  \
5511         assert(strbeg); assert(curpos)
5512
5513 STATIC bool     S_isLB(pTHX_ LB_enum before, LB_enum after, const U8 * const strbeg, const U8 * const curpos, const U8 * const strend, const bool utf8_target)
5514                         __attribute__warn_unused_result__;
5515 #define PERL_ARGS_ASSERT_ISLB   \
5516         assert(strbeg); assert(curpos); assert(strend)
5517
5518 STATIC bool     S_isSB(pTHX_ SB_enum before, SB_enum after, const U8 * const strbeg, const U8 * const curpos, const U8 * const strend, const bool utf8_target)
5519                         __attribute__warn_unused_result__;
5520 #define PERL_ARGS_ASSERT_ISSB   \
5521         assert(strbeg); assert(curpos); assert(strend)
5522
5523 STATIC bool     S_isWB(pTHX_ WB_enum previous, WB_enum before, WB_enum after, const U8 * const strbeg, const U8 * const curpos, const U8 * const strend, const bool utf8_target)
5524                         __attribute__warn_unused_result__;
5525 #define PERL_ARGS_ASSERT_ISWB   \
5526         assert(strbeg); assert(curpos); assert(strend)
5527
5528 STATIC I32      S_reg_check_named_buff_matched(const regexp *rex, const regnode *scan)
5529                         __attribute__warn_unused_result__;
5530 #define PERL_ARGS_ASSERT_REG_CHECK_NAMED_BUFF_MATCHED   \
5531         assert(rex); assert(scan)
5532
5533 STATIC void     S_regcp_restore(pTHX_ regexp *rex, I32 ix, U32 *maxopenparen_p _pDEPTH);
5534 #define PERL_ARGS_ASSERT_REGCP_RESTORE  \
5535         assert(rex); assert(maxopenparen_p)
5536 STATIC void     S_regcppop(pTHX_ regexp *rex, U32 *maxopenparen_p _pDEPTH);
5537 #define PERL_ARGS_ASSERT_REGCPPOP       \
5538         assert(rex); assert(maxopenparen_p)
5539 STATIC CHECKPOINT       S_regcppush(pTHX_ const regexp *rex, I32 parenfloor, U32 maxopenparen _pDEPTH);
5540 #define PERL_ARGS_ASSERT_REGCPPUSH      \
5541         assert(rex)
5542 STATIC U8*      S_reghop3(U8 *s, SSize_t off, const U8 *lim)
5543                         __attribute__warn_unused_result__;
5544 #define PERL_ARGS_ASSERT_REGHOP3        \
5545         assert(s); assert(lim)
5546
5547 STATIC U8*      S_reghop4(U8 *s, SSize_t off, const U8 *llim, const U8 *rlim)
5548                         __attribute__warn_unused_result__;
5549 #define PERL_ARGS_ASSERT_REGHOP4        \
5550         assert(s); assert(llim); assert(rlim)
5551
5552 STATIC U8*      S_reghopmaybe3(U8 *s, SSize_t off, const U8 * const lim)
5553                         __attribute__warn_unused_result__;
5554 #define PERL_ARGS_ASSERT_REGHOPMAYBE3   \
5555         assert(s); assert(lim)
5556
5557 STATIC bool     S_reginclass(pTHX_ regexp * const prog, const regnode * const n, const U8 * const p, const U8 * const p_end, bool const utf8_target)
5558                         __attribute__warn_unused_result__;
5559 #define PERL_ARGS_ASSERT_REGINCLASS     \
5560         assert(n); assert(p); assert(p_end)
5561
5562 STATIC SSize_t  S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog)
5563                         __attribute__warn_unused_result__;
5564 #define PERL_ARGS_ASSERT_REGMATCH       \
5565         assert(reginfo); assert(startpos); assert(prog)
5566
5567 STATIC I32      S_regrepeat(pTHX_ regexp *prog, char **startposp, const regnode *p, regmatch_info *const reginfo, I32 max _pDEPTH)
5568                         __attribute__warn_unused_result__;
5569 #define PERL_ARGS_ASSERT_REGREPEAT      \
5570         assert(prog); assert(startposp); assert(p); assert(reginfo)
5571
5572 STATIC bool     S_regtry(pTHX_ regmatch_info *reginfo, char **startposp)
5573                         __attribute__warn_unused_result__;
5574 #define PERL_ARGS_ASSERT_REGTRY \
5575         assert(reginfo); assert(startposp)
5576
5577 STATIC bool     S_to_byte_substr(pTHX_ regexp * prog);
5578 #define PERL_ARGS_ASSERT_TO_BYTE_SUBSTR \
5579         assert(prog)
5580 STATIC void     S_to_utf8_substr(pTHX_ regexp * prog);
5581 #define PERL_ARGS_ASSERT_TO_UTF8_SUBSTR \
5582         assert(prog)
5583 #endif
5584 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_TOKE_C)
5585 PERL_CALLCONV bool      Perl__is_grapheme(pTHX_ const U8 * strbeg, const U8 * s, const U8 *strend, const UV cp)
5586                         __attribute__warn_unused_result__;
5587 #define PERL_ARGS_ASSERT__IS_GRAPHEME   \
5588         assert(strbeg); assert(s); assert(strend)
5589
5590 #endif
5591 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C)
5592 PERL_CALLCONV bool      Perl_isFOO_lc(pTHX_ const U8 classnum, const U8 character)
5593                         __attribute__warn_unused_result__;
5594
5595 #endif
5596 #if defined(PERL_IN_SCOPE_C)
5597 STATIC void     S_save_pushptri32ptr(pTHX_ void *const ptr1, const I32 i, void *const ptr2, const int type);
5598 STATIC SV*      S_save_scalar_at(pTHX_ SV **sptr, const U32 flags);
5599 #define PERL_ARGS_ASSERT_SAVE_SCALAR_AT \
5600         assert(sptr)
5601 #endif
5602 #if defined(PERL_IN_SV_C)
5603 STATIC char *   S_F0convert(NV nv, char *const endbuf, STRLEN *const len);
5604 #define PERL_ARGS_ASSERT_F0CONVERT      \
5605         assert(endbuf); assert(len)
5606 STATIC void     S_anonymise_cv_maybe(pTHX_ GV *gv, CV *cv);
5607 #define PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE     \
5608         assert(gv); assert(cv)
5609 STATIC void     S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache, STRLEN real, SV *const sv);
5610 #define PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT     \
5611         assert(func); assert(sv)
5612 STATIC bool     S_curse(pTHX_ SV * const sv, const bool check_refcnt);
5613 #define PERL_ARGS_ASSERT_CURSE  \
5614         assert(sv)
5615 STATIC STRLEN   S_expect_number(pTHX_ const char **const pattern)
5616                         __attribute__warn_unused_result__;
5617 #define PERL_ARGS_ASSERT_EXPECT_NUMBER  \
5618         assert(pattern)
5619
5620 STATIC SSize_t  S_find_array_subscript(pTHX_ const AV *const av, const SV *const val);
5621 #define PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT   \
5622         assert(val)
5623 STATIC SV *     S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val);
5624 #define PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT    \
5625         assert(val)
5626 STATIC SV*      S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv, bool match, const char **desc_p);
5627 #define PERL_ARGS_ASSERT_FIND_UNINIT_VAR        \
5628         assert(desc_p)
5629 STATIC bool     S_glob_2number(pTHX_ GV* const gv);
5630 #define PERL_ARGS_ASSERT_GLOB_2NUMBER   \
5631         assert(gv)
5632 STATIC void     S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype);
5633 #define PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB       \
5634         assert(dstr); assert(sstr)
5635 STATIC SV *     S_more_sv(pTHX);
5636 STATIC void     S_not_a_number(pTHX_ SV *const sv);
5637 #define PERL_ARGS_ASSERT_NOT_A_NUMBER   \
5638         assert(sv)
5639 STATIC void     S_not_incrementable(pTHX_ SV *const sv);
5640 #define PERL_ARGS_ASSERT_NOT_INCREMENTABLE      \
5641         assert(sv)
5642 STATIC PTR_TBL_ENT_t *  S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
5643                         __attribute__warn_unused_result__;
5644 #define PERL_ARGS_ASSERT_PTR_TABLE_FIND \
5645         assert(tbl)
5646
5647 STATIC bool     S_sv_2iuv_common(pTHX_ SV *const sv);
5648 #define PERL_ARGS_ASSERT_SV_2IUV_COMMON \
5649         assert(sv)
5650 STATIC void     S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags);
5651 #define PERL_ARGS_ASSERT_SV_ADD_ARENA   \
5652         assert(ptr)
5653 STATIC const char *     S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size);
5654 #define PERL_ARGS_ASSERT_SV_DISPLAY     \
5655         assert(sv); assert(tmpbuf)
5656 STATIC STRLEN   S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target, const U8 *end, STRLEN endu);
5657 #define PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY      \
5658         assert(s); assert(target); assert(end)
5659 STATIC STRLEN   S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start, const U8 *const send, STRLEN uoffset, STRLEN uoffset0, STRLEN boffset0);
5660 #define PERL_ARGS_ASSERT_SV_POS_U2B_CACHED      \
5661         assert(sv); assert(mgp); assert(start); assert(send)
5662 STATIC STRLEN   S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send, STRLEN *const uoffset, bool *const at_end);
5663 #define PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS    \
5664         assert(start); assert(send); assert(uoffset); assert(at_end)
5665 STATIC STRLEN   S_sv_pos_u2b_midway(const U8 *const start, const U8 *send, STRLEN uoffset, const STRLEN uend);
5666 #define PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY      \
5667         assert(start); assert(send)
5668 #ifndef PERL_NO_INLINE_FUNCTIONS
5669 PERL_STATIC_INLINE void S_sv_unglob(pTHX_ SV *const sv, U32 flags);
5670 #define PERL_ARGS_ASSERT_SV_UNGLOB      \
5671         assert(sv)
5672 #endif
5673 STATIC char *   S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
5674                         __attribute__warn_unused_result__;
5675 #define PERL_ARGS_ASSERT_UIV_2BUF       \
5676         assert(buf); assert(peob)
5677
5678 STATIC void     S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN ulen);
5679 #define PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE       \
5680         assert(sv); assert(mgp)
5681 STATIC void     S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte, const STRLEN utf8, const STRLEN blen);
5682 #define PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE       \
5683         assert(sv); assert(mgp)
5684 STATIC I32      S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask);
5685 #define PERL_ARGS_ASSERT_VISIT  \
5686         assert(f)
5687 #  if defined(USE_ITHREADS)
5688 STATIC SV*      S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
5689                         __attribute__warn_unused_result__;
5690 #define PERL_ARGS_ASSERT_SV_DUP_COMMON  \
5691         assert(sstr); assert(param)
5692
5693 STATIC SV **    S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest, SSize_t items, CLONE_PARAMS *const param);
5694 #define PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE    \
5695         assert(source); assert(dest); assert(param)
5696 STATIC void     S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced);
5697 #define PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK      \
5698         assert(unreferenced)
5699 #  endif
5700 #endif
5701 #if defined(PERL_IN_SV_C) || defined (PERL_IN_OP_C)
5702 PERL_CALLCONV SV *      Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ, const SV *const keyname, SSize_t aindex, int subscript_type)
5703                         __attribute__warn_unused_result__;
5704
5705 #endif
5706 #if defined(PERL_IN_TOKE_C)
5707 STATIC int      S_ao(pTHX_ int toketype);
5708 STATIC void     S_check_uni(pTHX);
5709 STATIC void     S_checkcomma(pTHX_ const char *s, const char *name, const char *what);
5710 #define PERL_ARGS_ASSERT_CHECKCOMMA     \
5711         assert(s); assert(name); assert(what)
5712 STATIC char *   S_filter_gets(pTHX_ SV *sv, STRLEN append)
5713                         __attribute__warn_unused_result__;
5714 #define PERL_ARGS_ASSERT_FILTER_GETS    \
5715         assert(sv)
5716
5717 STATIC HV *     S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len)
5718                         __attribute__warn_unused_result__;
5719 #define PERL_ARGS_ASSERT_FIND_IN_MY_STASH       \
5720         assert(pkgname)
5721
5722 STATIC void     S_force_ident(pTHX_ const char *s, int kind);
5723 #define PERL_ARGS_ASSERT_FORCE_IDENT    \
5724         assert(s)
5725 STATIC void     S_force_ident_maybe_lex(pTHX_ char pit);
5726 STATIC void     S_force_next(pTHX_ I32 type);
5727 STATIC char*    S_force_strict_version(pTHX_ char *s);
5728 #define PERL_ARGS_ASSERT_FORCE_STRICT_VERSION   \
5729         assert(s)
5730 STATIC char*    S_force_version(pTHX_ char *s, int guessing);
5731 #define PERL_ARGS_ASSERT_FORCE_VERSION  \
5732         assert(s)
5733 STATIC char*    S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack);
5734 #define PERL_ARGS_ASSERT_FORCE_WORD     \
5735         assert(start)
5736 STATIC SV*      S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
5737                         __attribute__warn_unused_result__;
5738 #define PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME \
5739         assert(s); assert(e)
5740
5741 STATIC void     S_incline(pTHX_ const char *s, const char *end);
5742 #define PERL_ARGS_ASSERT_INCLINE        \
5743         assert(s); assert(end)
5744 STATIC int      S_intuit_method(pTHX_ char *s, SV *ioname, CV *cv);
5745 #define PERL_ARGS_ASSERT_INTUIT_METHOD  \
5746         assert(s)
5747 STATIC int      S_intuit_more(pTHX_ char *s, char *e);
5748 #define PERL_ARGS_ASSERT_INTUIT_MORE    \
5749         assert(s); assert(e)
5750 STATIC I32      S_lop(pTHX_ I32 f, U8 x, char *s);
5751 #define PERL_ARGS_ASSERT_LOP    \
5752         assert(s)
5753 PERL_STATIC_NO_RET void S_missingterm(pTHX_ char *s, const STRLEN len)
5754                         __attribute__noreturn__;
5755
5756 STATIC SV*      S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen, SV *sv, SV *pv, const char *type, STRLEN typelen);
5757 #define PERL_ARGS_ASSERT_NEW_CONSTANT   \
5758         assert(key); assert(sv)
5759 STATIC void     S_no_op(pTHX_ const char *const what, char *s);
5760 #define PERL_ARGS_ASSERT_NO_OP  \
5761         assert(what)
5762 STATIC void     S_parse_ident(pTHX_ char **s, char **d, char * const e, int allow_package, bool is_utf8, bool check_dollar);
5763 #define PERL_ARGS_ASSERT_PARSE_IDENT    \
5764         assert(s); assert(d); assert(e)
5765 STATIC int      S_pending_ident(pTHX);
5766 STATIC char*    S_scan_const(pTHX_ char *start)
5767                         __attribute__warn_unused_result__;
5768 #define PERL_ARGS_ASSERT_SCAN_CONST     \
5769         assert(start)
5770
5771 STATIC char*    S_scan_formline(pTHX_ char *s)
5772                         __attribute__warn_unused_result__;
5773 #define PERL_ARGS_ASSERT_SCAN_FORMLINE  \
5774         assert(s)
5775
5776 STATIC char*    S_scan_heredoc(pTHX_ char *s)
5777                         __attribute__warn_unused_result__;
5778 #define PERL_ARGS_ASSERT_SCAN_HEREDOC   \
5779         assert(s)
5780
5781 STATIC char*    S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni);
5782 #define PERL_ARGS_ASSERT_SCAN_IDENT     \
5783         assert(s); assert(dest)
5784 STATIC char*    S_scan_inputsymbol(pTHX_ char *start)
5785                         __attribute__warn_unused_result__;
5786 #define PERL_ARGS_ASSERT_SCAN_INPUTSYMBOL       \
5787         assert(start)
5788
5789 STATIC char*    S_scan_pat(pTHX_ char *start, I32 type)
5790                         __attribute__warn_unused_result__;
5791 #define PERL_ARGS_ASSERT_SCAN_PAT       \
5792         assert(start)
5793
5794 STATIC char*    S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims, int re_reparse, char **delimp)
5795                         __attribute__warn_unused_result__;
5796 #define PERL_ARGS_ASSERT_SCAN_STR       \
5797         assert(start)
5798
5799 STATIC char*    S_scan_subst(pTHX_ char *start)
5800                         __attribute__warn_unused_result__;
5801 #define PERL_ARGS_ASSERT_SCAN_SUBST     \
5802         assert(start)
5803
5804 STATIC char*    S_scan_trans(pTHX_ char *start)
5805                         __attribute__warn_unused_result__;
5806 #define PERL_ARGS_ASSERT_SCAN_TRANS     \
5807         assert(start)
5808
5809 STATIC char*    S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp);
5810 #define PERL_ARGS_ASSERT_SCAN_WORD      \
5811         assert(s); assert(dest); assert(slp)
5812 STATIC char*    S_skipspace_flags(pTHX_ char *s, U32 flags)
5813                         __attribute__warn_unused_result__;
5814 #define PERL_ARGS_ASSERT_SKIPSPACE_FLAGS        \
5815         assert(s)
5816
5817 STATIC I32      S_sublex_done(pTHX)
5818                         __attribute__warn_unused_result__;
5819
5820 STATIC I32      S_sublex_push(pTHX)
5821                         __attribute__warn_unused_result__;
5822
5823 STATIC I32      S_sublex_start(pTHX)
5824                         __attribute__warn_unused_result__;
5825
5826 STATIC char*    S_swallow_bom(pTHX_ U8 *s)
5827                         __attribute__warn_unused_result__;
5828 #define PERL_ARGS_ASSERT_SWALLOW_BOM    \
5829         assert(s)
5830
5831 STATIC char *   S_tokenize_use(pTHX_ int is_use, char *s)
5832                         __attribute__warn_unused_result__;
5833 #define PERL_ARGS_ASSERT_TOKENIZE_USE   \
5834         assert(s)
5835
5836 STATIC SV*      S_tokeq(pTHX_ SV *sv);
5837 #define PERL_ARGS_ASSERT_TOKEQ  \
5838         assert(sv)
5839 STATIC void     S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len);
5840 STATIC int      S_yywarn(pTHX_ const char *const s, U32 flags);
5841 #define PERL_ARGS_ASSERT_YYWARN \
5842         assert(s)
5843 #endif
5844 #if defined(PERL_IN_UNIVERSAL_C)
5845 STATIC bool     S_isa_lookup(pTHX_ HV *stash, const char * const name, STRLEN len, U32 flags);
5846 #define PERL_ARGS_ASSERT_ISA_LOOKUP     \
5847         assert(stash); assert(name)
5848 #endif
5849 #if defined(PERL_IN_UTF8_C)
5850 STATIC UV       S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special);
5851 #define PERL_ARGS_ASSERT__TO_UTF8_CASE  \
5852         assert(p); assert(ustrp); assert(swashp); assert(normal)
5853 STATIC U32      S_check_and_deprecate(pTHX_ const U8 * p, const U8 ** e, const unsigned type, const bool use_locale, const char * const file, const unsigned line);
5854 #define PERL_ARGS_ASSERT_CHECK_AND_DEPRECATE    \
5855         assert(p); assert(e); assert(file)
5856 STATIC UV       S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp)
5857                         __attribute__warn_unused_result__;
5858 #define PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING \
5859         assert(p); assert(ustrp); assert(lenp)
5860
5861 #ifndef PERL_NO_INLINE_FUNCTIONS
5862 PERL_STATIC_INLINE int  S_does_utf8_overflow(const U8 * const s, const U8 * e, const bool consider_overlongs)
5863                         __attribute__warn_unused_result__;
5864 #define PERL_ARGS_ASSERT_DOES_UTF8_OVERFLOW     \
5865         assert(s); assert(e)
5866 #endif
5867
5868 #ifndef PERL_NO_INLINE_FUNCTIONS
5869 PERL_STATIC_INLINE int  S_isFF_OVERLONG(const U8 * const s, const STRLEN len)
5870                         __attribute__warn_unused_result__;
5871 #define PERL_ARGS_ASSERT_ISFF_OVERLONG  \
5872         assert(s)
5873 #endif
5874
5875 #ifndef PERL_NO_INLINE_FUNCTIONS
5876 PERL_STATIC_INLINE bool S_is_utf8_common(pTHX_ const U8 *const p, SV **swash, const char * const swashname, SV* const invlist)
5877                         __attribute__warn_unused_result__;
5878 #define PERL_ARGS_ASSERT_IS_UTF8_COMMON \
5879         assert(p); assert(swash); assert(swashname)
5880 #endif
5881
5882 #ifndef PERL_NO_INLINE_FUNCTIONS
5883 PERL_STATIC_INLINE bool S_is_utf8_common_with_len(pTHX_ const U8 *const p, const U8 *const e, SV **swash, const char * const swashname, SV* const invlist)
5884                         __attribute__warn_unused_result__;
5885 #define PERL_ARGS_ASSERT_IS_UTF8_COMMON_WITH_LEN        \
5886         assert(p); assert(e); assert(swash); assert(swashname)
5887 #endif
5888
5889 #ifndef PERL_NO_INLINE_FUNCTIONS
5890 PERL_STATIC_INLINE int  S_is_utf8_overlong_given_start_byte_ok(const U8 * const s, const STRLEN len)
5891                         __attribute__warn_unused_result__;
5892 #define PERL_ARGS_ASSERT_IS_UTF8_OVERLONG_GIVEN_START_BYTE_OK   \
5893         assert(s)
5894 #endif
5895
5896 STATIC U8*      S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val, const bool wants_value, const U8* const typestr)
5897                         __attribute__warn_unused_result__;
5898 #define PERL_ARGS_ASSERT_SWASH_SCAN_LIST_LINE   \
5899         assert(l); assert(lend); assert(min); assert(max); assert(val); assert(typestr)
5900
5901 STATIC SV*      S_swatch_get(pTHX_ SV* swash, UV start, UV span)
5902                         __attribute__warn_unused_result__;
5903 #define PERL_ARGS_ASSERT_SWATCH_GET     \
5904         assert(swash)
5905
5906 STATIC U8       S_to_lower_latin1(const U8 c, U8 *p, STRLEN *lenp, const char dummy)
5907                         __attribute__warn_unused_result__;
5908
5909 STATIC char *   S_unexpected_non_continuation_text(pTHX_ const U8 * const s, STRLEN print_len, const STRLEN non_cont_byte_pos, const STRLEN expect_len)
5910                         __attribute__warn_unused_result__;
5911 #define PERL_ARGS_ASSERT_UNEXPECTED_NON_CONTINUATION_TEXT       \
5912         assert(s)
5913
5914 STATIC void     S_warn_on_first_deprecated_use(pTHX_ const char * const name, const char * const alternative, const bool use_locale, const char * const file, const unsigned line);
5915 #define PERL_ARGS_ASSERT_WARN_ON_FIRST_DEPRECATED_USE   \
5916         assert(name); assert(alternative); assert(file)
5917 #endif
5918 #if defined(PERL_IN_UTF8_C) || defined(PERL_IN_PP_C)
5919 PERL_CALLCONV UV        Perl__to_upper_title_latin1(pTHX_ const U8 c, U8 *p, STRLEN *lenp, const char S_or_s);
5920 #define PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1 \
5921         assert(p); assert(lenp)
5922 #endif
5923 #if defined(PERL_IN_UTF8_C) || defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
5924 PERL_CALLCONV UV        Perl__to_fold_latin1(pTHX_ const U8 c, U8 *p, STRLEN *lenp, const unsigned int flags);
5925 #define PERL_ARGS_ASSERT__TO_FOLD_LATIN1        \
5926         assert(p); assert(lenp)
5927 #endif
5928 #if defined(PERL_IN_UTIL_C)
5929 STATIC bool     S_ckwarn_common(pTHX_ U32 w);
5930 STATIC bool     S_invoke_exception_hook(pTHX_ SV *ex, bool warn);
5931 STATIC SV*      S_mess_alloc(pTHX);
5932 STATIC SV *     S_with_queued_errors(pTHX_ SV *ex);
5933 #define PERL_ARGS_ASSERT_WITH_QUEUED_ERRORS     \
5934         assert(ex)
5935 STATIC void     S_xs_version_bootcheck(pTHX_ U32 items, U32 ax, const char *xs_p, STRLEN xs_len);
5936 #define PERL_ARGS_ASSERT_XS_VERSION_BOOTCHECK   \
5937         assert(xs_p)
5938 #  if defined(PERL_MEM_LOG) && !defined(PERL_MEM_LOG_NOIMPL)
5939 STATIC void     S_mem_log_common(enum mem_log_type mlt, const UV n, const UV typesize, const char *type_name, const SV *sv, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
5940 #define PERL_ARGS_ASSERT_MEM_LOG_COMMON \
5941         assert(type_name); assert(filename); assert(funcname)
5942 #  endif
5943 #endif
5944 #if defined(PERL_MEM_LOG)
5945 PERL_CALLCONV Malloc_t  Perl_mem_log_alloc(const UV nconst, UV typesize, const char *type_name, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
5946 #define PERL_ARGS_ASSERT_MEM_LOG_ALLOC  \
5947         assert(type_name); assert(filename); assert(funcname)
5948 PERL_CALLCONV Malloc_t  Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname);
5949 #define PERL_ARGS_ASSERT_MEM_LOG_FREE   \
5950         assert(filename); assert(funcname)
5951 PERL_CALLCONV Malloc_t  Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
5952 #define PERL_ARGS_ASSERT_MEM_LOG_REALLOC        \
5953         assert(type_name); assert(filename); assert(funcname)
5954 #endif
5955 #if defined(PERL_OP_PARENT)
5956 PERL_CALLCONV OP*       Perl_op_parent(OP *o);
5957 #define PERL_ARGS_ASSERT_OP_PARENT      \
5958         assert(o)
5959 #endif
5960 #if defined(PERL_USES_PL_PIDSTATUS) && defined(PERL_IN_UTIL_C)
5961 STATIC void     S_pidgone(pTHX_ Pid_t pid, int status);
5962 #endif
5963 #if defined(UNLINK_ALL_VERSIONS)
5964 PERL_CALLCONV I32       Perl_unlnk(pTHX_ const char* f);
5965 #define PERL_ARGS_ASSERT_UNLNK  \
5966         assert(f)
5967 #endif
5968 #if defined(USE_C_BACKTRACE)
5969 PERL_CALLCONV bool      Perl_dump_c_backtrace(pTHX_ PerlIO* fp, int max_depth, int skip);
5970 #define PERL_ARGS_ASSERT_DUMP_C_BACKTRACE       \
5971         assert(fp)
5972 /* PERL_CALLCONV void   free_c_backtrace(pTHX_ Perl_c_backtrace* bt); */
5973 PERL_CALLCONV Perl_c_backtrace* Perl_get_c_backtrace(pTHX_ int max_depth, int skip);
5974 PERL_CALLCONV SV*       Perl_get_c_backtrace_dump(pTHX_ int max_depth, int skip);
5975 #endif
5976 #if defined(USE_DTRACE)
5977 PERL_CALLCONV void      Perl_dtrace_probe_call(pTHX_ CV *cv, bool is_call);
5978 #define PERL_ARGS_ASSERT_DTRACE_PROBE_CALL      \
5979         assert(cv)
5980 PERL_CALLCONV void      Perl_dtrace_probe_load(pTHX_ const char *name, bool is_loading);
5981 #define PERL_ARGS_ASSERT_DTRACE_PROBE_LOAD      \
5982         assert(name)
5983 PERL_CALLCONV void      Perl_dtrace_probe_op(pTHX_ const OP *op);
5984 #define PERL_ARGS_ASSERT_DTRACE_PROBE_OP        \
5985         assert(op)
5986 PERL_CALLCONV void      Perl_dtrace_probe_phase(pTHX_ enum perl_phase phase);
5987 #endif
5988 #if defined(USE_ITHREADS)
5989 PERL_CALLCONV PADOFFSET Perl_alloccopstash(pTHX_ HV *hv);
5990 #define PERL_ARGS_ASSERT_ALLOCCOPSTASH  \
5991         assert(hv)
5992 PERL_CALLCONV void*     Perl_any_dup(pTHX_ void* v, const PerlInterpreter* proto_perl)
5993                         __attribute__warn_unused_result__;
5994 #define PERL_ARGS_ASSERT_ANY_DUP        \
5995         assert(proto_perl)
5996
5997 PERL_CALLCONV void      Perl_clone_params_del(CLONE_PARAMS *param);
5998 #define PERL_ARGS_ASSERT_CLONE_PARAMS_DEL       \
5999         assert(param)
6000 PERL_CALLCONV CLONE_PARAMS *    Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
6001                         __attribute__warn_unused_result__;
6002 #define PERL_ARGS_ASSERT_CLONE_PARAMS_NEW       \
6003         assert(from); assert(to)
6004
6005 PERL_CALLCONV PERL_CONTEXT*     Perl_cx_dup(pTHX_ PERL_CONTEXT* cx, I32 ix, I32 max, CLONE_PARAMS* param)
6006                         __attribute__warn_unused_result__;
6007 #define PERL_ARGS_ASSERT_CX_DUP \
6008         assert(param)
6009
6010 PERL_CALLCONV DIR*      Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
6011                         __attribute__warn_unused_result__;
6012 #define PERL_ARGS_ASSERT_DIRP_DUP       \
6013         assert(param)
6014
6015 PERL_CALLCONV PerlIO*   Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param);
6016 #define PERL_ARGS_ASSERT_FP_DUP \
6017         assert(param)
6018 PERL_CALLCONV GP*       Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
6019                         __attribute__warn_unused_result__;
6020 #define PERL_ARGS_ASSERT_GP_DUP \
6021         assert(param)
6022
6023 PERL_CALLCONV HE*       Perl_he_dup(pTHX_ const HE* e, bool shared, CLONE_PARAMS* param)
6024                         __attribute__warn_unused_result__;
6025 #define PERL_ARGS_ASSERT_HE_DUP \
6026         assert(param)
6027
6028 PERL_CALLCONV HEK*      Perl_hek_dup(pTHX_ HEK* e, CLONE_PARAMS* param)
6029                         __attribute__warn_unused_result__;
6030 #define PERL_ARGS_ASSERT_HEK_DUP        \
6031         assert(param)
6032
6033 PERL_CALLCONV MAGIC*    Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
6034                         __attribute__warn_unused_result__;
6035 #define PERL_ARGS_ASSERT_MG_DUP \
6036         assert(param)
6037
6038 PERL_CALLCONV struct mro_meta*  Perl_mro_meta_dup(pTHX_ struct mro_meta* smeta, CLONE_PARAMS* param);
6039 #define PERL_ARGS_ASSERT_MRO_META_DUP   \
6040         assert(smeta); assert(param)
6041 PERL_CALLCONV OP*       Perl_newPADOP(pTHX_ I32 type, I32 flags, SV* sv)
6042                         __attribute__warn_unused_result__;
6043 #define PERL_ARGS_ASSERT_NEWPADOP       \
6044         assert(sv)
6045
6046 PERL_CALLCONV PADLIST * Perl_padlist_dup(pTHX_ PADLIST *srcpad, CLONE_PARAMS *param)
6047                         __attribute__warn_unused_result__;
6048 #define PERL_ARGS_ASSERT_PADLIST_DUP    \
6049         assert(srcpad); assert(param)
6050
6051 PERL_CALLCONV PADNAME * Perl_padname_dup(pTHX_ PADNAME *src, CLONE_PARAMS *param)
6052                         __attribute__warn_unused_result__;
6053 #define PERL_ARGS_ASSERT_PADNAME_DUP    \
6054         assert(src); assert(param)
6055
6056 PERL_CALLCONV PADNAMELIST *     Perl_padnamelist_dup(pTHX_ PADNAMELIST *srcpad, CLONE_PARAMS *param)
6057                         __attribute__warn_unused_result__;
6058 #define PERL_ARGS_ASSERT_PADNAMELIST_DUP        \
6059         assert(srcpad); assert(param)
6060
6061 PERL_CALLCONV yy_parser*        Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param);
6062 #define PERL_ARGS_ASSERT_PARSER_DUP     \
6063         assert(param)
6064 PERL_CALLCONV PerlInterpreter*  perl_clone(PerlInterpreter *proto_perl, UV flags);
6065 #define PERL_ARGS_ASSERT_PERL_CLONE     \
6066         assert(proto_perl)
6067 PERL_CALLCONV void      Perl_re_dup_guts(pTHX_ const REGEXP *sstr, REGEXP *dstr, CLONE_PARAMS* param);
6068 #define PERL_ARGS_ASSERT_RE_DUP_GUTS    \
6069         assert(sstr); assert(dstr); assert(param)
6070 PERL_CALLCONV void*     Perl_regdupe_internal(pTHX_ REGEXP * const r, CLONE_PARAMS* param);
6071 #define PERL_ARGS_ASSERT_REGDUPE_INTERNAL       \
6072         assert(r); assert(param)
6073 PERL_CALLCONV void      Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param);
6074 #define PERL_ARGS_ASSERT_RVPV_DUP       \
6075         assert(dstr); assert(sstr); assert(param)
6076 PERL_CALLCONV PERL_SI*  Perl_si_dup(pTHX_ PERL_SI* si, CLONE_PARAMS* param)
6077                         __attribute__warn_unused_result__;
6078 #define PERL_ARGS_ASSERT_SI_DUP \
6079         assert(param)
6080
6081 PERL_CALLCONV ANY*      Perl_ss_dup(pTHX_ PerlInterpreter* proto_perl, CLONE_PARAMS* param)
6082                         __attribute__warn_unused_result__;
6083 #define PERL_ARGS_ASSERT_SS_DUP \
6084         assert(proto_perl); assert(param)
6085
6086 PERL_CALLCONV SV*       Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
6087                         __attribute__warn_unused_result__;
6088 #define PERL_ARGS_ASSERT_SV_DUP \
6089         assert(param)
6090
6091 PERL_CALLCONV SV*       Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
6092                         __attribute__warn_unused_result__;
6093 #define PERL_ARGS_ASSERT_SV_DUP_INC     \
6094         assert(param)
6095
6096 #endif
6097 #if defined(USE_LOCALE)             && (   defined(PERL_IN_LOCALE_C)            || defined(PERL_IN_MG_C)                || defined (PERL_EXT_POSIX))
6098 PERL_CALLCONV bool      Perl__is_cur_LC_category_utf8(pTHX_ int category);
6099 #endif
6100 #if defined(USE_LOCALE_COLLATE)
6101 PERL_CALLCONV int       Perl_magic_setcollxfrm(pTHX_ SV* sv, MAGIC* mg);
6102 #define PERL_ARGS_ASSERT_MAGIC_SETCOLLXFRM      \
6103         assert(sv); assert(mg)
6104 #ifndef NO_MATHOMS
6105 PERL_CALLCONV char*     Perl_mem_collxfrm(pTHX_ const char* input_string, STRLEN len, STRLEN* xlen);
6106 #define PERL_ARGS_ASSERT_MEM_COLLXFRM   \
6107         assert(input_string); assert(xlen)
6108 #endif
6109 /* PERL_CALLCONV char*  sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp); */
6110 PERL_CALLCONV char*     Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, I32 const flags);
6111 #define PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS      \
6112         assert(sv); assert(nxp)
6113 #endif
6114 #if defined(USE_PERLIO)
6115 PERL_CALLCONV void      Perl_PerlIO_clearerr(pTHX_ PerlIO *f);
6116 PERL_CALLCONV int       Perl_PerlIO_close(pTHX_ PerlIO *f);
6117 PERL_CALLCONV int       Perl_PerlIO_eof(pTHX_ PerlIO *f);
6118 PERL_CALLCONV int       Perl_PerlIO_error(pTHX_ PerlIO *f);
6119 PERL_CALLCONV int       Perl_PerlIO_fileno(pTHX_ PerlIO *f);
6120 PERL_CALLCONV int       Perl_PerlIO_fill(pTHX_ PerlIO *f);
6121 PERL_CALLCONV int       Perl_PerlIO_flush(pTHX_ PerlIO *f);
6122 PERL_CALLCONV STDCHAR * Perl_PerlIO_get_base(pTHX_ PerlIO *f);
6123 PERL_CALLCONV SSize_t   Perl_PerlIO_get_bufsiz(pTHX_ PerlIO *f)
6124                         __attribute__warn_unused_result__;
6125
6126 PERL_CALLCONV SSize_t   Perl_PerlIO_get_cnt(pTHX_ PerlIO *f)
6127                         __attribute__warn_unused_result__;
6128
6129 PERL_CALLCONV STDCHAR * Perl_PerlIO_get_ptr(pTHX_ PerlIO *f);
6130 PERL_CALLCONV SSize_t   Perl_PerlIO_read(pTHX_ PerlIO *f, void *vbuf, Size_t count);
6131 #define PERL_ARGS_ASSERT_PERLIO_READ    \
6132         assert(vbuf)
6133 PERL_CALLCONV void      Perl_PerlIO_restore_errno(pTHX_ PerlIO *f);
6134 PERL_CALLCONV void      Perl_PerlIO_save_errno(pTHX_ PerlIO *f);
6135 PERL_CALLCONV int       Perl_PerlIO_seek(pTHX_ PerlIO *f, Off_t offset, int whence);
6136 PERL_CALLCONV void      Perl_PerlIO_set_cnt(pTHX_ PerlIO *f, SSize_t cnt);
6137 PERL_CALLCONV void      Perl_PerlIO_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR *ptr, SSize_t cnt);
6138 PERL_CALLCONV void      Perl_PerlIO_setlinebuf(pTHX_ PerlIO *f);
6139 PERL_CALLCONV PerlIO *  Perl_PerlIO_stderr(pTHX)
6140                         __attribute__warn_unused_result__;
6141
6142 PERL_CALLCONV PerlIO *  Perl_PerlIO_stdin(pTHX)
6143                         __attribute__warn_unused_result__;
6144
6145 PERL_CALLCONV PerlIO *  Perl_PerlIO_stdout(pTHX)
6146                         __attribute__warn_unused_result__;
6147
6148 PERL_CALLCONV Off_t     Perl_PerlIO_tell(pTHX_ PerlIO *f);
6149 PERL_CALLCONV SSize_t   Perl_PerlIO_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count);
6150 #define PERL_ARGS_ASSERT_PERLIO_UNREAD  \
6151         assert(vbuf)
6152 PERL_CALLCONV SSize_t   Perl_PerlIO_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count);
6153 #define PERL_ARGS_ASSERT_PERLIO_WRITE   \
6154         assert(vbuf)
6155 #endif
6156 #if defined(USE_QUADMATH)
6157 PERL_CALLCONV bool      Perl_quadmath_format_needed(const char* format);
6158 #define PERL_ARGS_ASSERT_QUADMATH_FORMAT_NEEDED \
6159         assert(format)
6160 PERL_CALLCONV const char*       Perl_quadmath_format_single(const char* format);
6161 #define PERL_ARGS_ASSERT_QUADMATH_FORMAT_SINGLE \
6162         assert(format)
6163 #endif
6164 #if defined(WIN32)
6165 PERL_CALLCONV_NO_RET void       win32_croak_not_implemented(const char * fname)
6166                         __attribute__noreturn__;
6167 #define PERL_ARGS_ASSERT_WIN32_CROAK_NOT_IMPLEMENTED    \
6168         assert(fname)
6169
6170 #endif
6171 #if defined(WIN32) || defined(__SYMBIAN32__) || defined(VMS)
6172 PERL_CALLCONV int       Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp);
6173 #define PERL_ARGS_ASSERT_DO_ASPAWN      \
6174         assert(mark); assert(sp)
6175 PERL_CALLCONV int       Perl_do_spawn(pTHX_ char* cmd);
6176 #define PERL_ARGS_ASSERT_DO_SPAWN       \
6177         assert(cmd)
6178 PERL_CALLCONV int       Perl_do_spawn_nowait(pTHX_ char* cmd);
6179 #define PERL_ARGS_ASSERT_DO_SPAWN_NOWAIT        \
6180         assert(cmd)
6181 #endif
6182 #if defined(_MSC_VER)
6183 PERL_CALLCONV int       Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg);
6184 #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_SET     \
6185         assert(sv); assert(mg)
6186 #endif
6187 #ifdef PERL_CORE
6188 #  include "pp_proto.h"
6189 #endif
6190 END_EXTERN_C
6191
6192 /* ex: set ro: */