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