consting-eleventy.patch: More consts, plus actual bug fix
[p5sagit/p5-mst-13.2.git] / proto.h
CommitLineData
37442d52 1/* -*- buffer-read-only: t -*-
2 *
f5e3445d 3 * proto.h
4 *
4bb101f2 5 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2419183b 6 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
f5e3445d 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 embed.pl from data in embed.fnc, embed.pl,
13 * pp.sym, intrpvar.h, perlvars.h and thrdvar.h.
14 * Any changes made here will be lost!
15 *
16 * Edit those files and run 'make regen_headers' to effect changes.
17 */
1d7c1841 18
1d7c1841 19START_EXTERN_C
20
21#if defined(PERL_IMPLICIT_SYS)
22PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p);
1d7c1841 23#endif
b46bc2b6 24PERL_CALLCONV PerlInterpreter* perl_alloc(void);
4373e329 25PERL_CALLCONV void perl_construct(PerlInterpreter* interp)
26 __attribute__((nonnull(1)));
f54cb97a 27
4373e329 28PERL_CALLCONV int perl_destruct(PerlInterpreter* interp)
29 __attribute__((nonnull(1)));
f54cb97a 30
4373e329 31PERL_CALLCONV void perl_free(PerlInterpreter* interp)
32 __attribute__((nonnull(1)));
f54cb97a 33
4373e329 34PERL_CALLCONV int perl_run(PerlInterpreter* interp)
35 __attribute__((nonnull(1)));
f54cb97a 36
1d7c1841 37PERL_CALLCONV int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env);
8f42b153 38PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env);
1d7c1841 39#if defined(USE_ITHREADS)
40PERL_CALLCONV PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags);
41# if defined(PERL_IMPLICIT_SYS)
42PERL_CALLCONV PerlInterpreter* perl_clone_using(PerlInterpreter *interp, UV flags, struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p);
43# endif
44#endif
45
4373e329 46PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes)
f54cb97a 47 __attribute__((malloc))
48 __attribute__((warn_unused_result));
49
4373e329 50PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size)
f54cb97a 51 __attribute__((malloc))
52 __attribute__((warn_unused_result));
53
4373e329 54PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes)
f54cb97a 55 __attribute__((malloc))
56 __attribute__((warn_unused_result));
57
1d7c1841 58PERL_CALLCONV Free_t Perl_mfree(Malloc_t where);
cae6d0e5 59#if defined(MYMALLOC)
1d7c1841 60PERL_CALLCONV MEM_SIZE Perl_malloced_size(void *p);
61#endif
62
ba869deb 63PERL_CALLCONV void* Perl_get_context(void);
64PERL_CALLCONV void Perl_set_context(void *thx);
65
1d7c1841 66END_EXTERN_C
67
68/* functions with flag 'n' should come before here */
1d7c1841 69START_EXTERN_C
1d7c1841 70# include "pp_proto.h"
71PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir);
72PERL_CALLCONV bool Perl_Gv_AMupdate(pTHX_ HV* stash);
32251b26 73PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id);
1d7c1841 74PERL_CALLCONV OP* Perl_append_elem(pTHX_ I32 optype, OP* head, OP* tail);
75PERL_CALLCONV OP* Perl_append_list(pTHX_ I32 optype, LISTOP* first, LISTOP* last);
76PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp);
6867be6d 77PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len);
1d7c1841 78PERL_CALLCONV void Perl_av_clear(pTHX_ AV* ar);
a3b680e6 79PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV* ar, I32 key, I32 flags)
80 __attribute__((warn_unused_result));
81
82PERL_CALLCONV bool Perl_av_exists(pTHX_ AV* ar, I32 key)
83 __attribute__((warn_unused_result));
84
85PERL_CALLCONV void Perl_av_extend(pTHX_ AV* ar, I32 key)
86 __attribute__((nonnull(pTHX_1)));
87
88PERL_CALLCONV AV* Perl_av_fake(pTHX_ I32 size, SV** svp)
89 __attribute__((warn_unused_result))
90 __attribute__((nonnull(pTHX_2)));
91
92PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV* ar, I32 key, I32 lval)
93 __attribute__((warn_unused_result));
94
1d7c1841 95PERL_CALLCONV void Perl_av_fill(pTHX_ AV* ar, I32 fill);
a3b680e6 96PERL_CALLCONV I32 Perl_av_len(pTHX_ const AV* ar)
97 __attribute__((warn_unused_result));
98
99PERL_CALLCONV AV* Perl_av_make(pTHX_ I32 size, SV** svp)
100 __attribute__((warn_unused_result))
101 __attribute__((nonnull(pTHX_2)));
102
103PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV* ar)
104 __attribute__((warn_unused_result));
105
1d7c1841 106PERL_CALLCONV void Perl_av_push(pTHX_ AV* ar, SV* val);
107PERL_CALLCONV void Perl_av_reify(pTHX_ AV* ar);
a3b680e6 108PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV* ar)
109 __attribute__((warn_unused_result));
110
1d7c1841 111PERL_CALLCONV SV** Perl_av_store(pTHX_ AV* ar, I32 key, SV* val);
112PERL_CALLCONV void Perl_av_undef(pTHX_ AV* ar);
113PERL_CALLCONV void Perl_av_unshift(pTHX_ AV* ar, I32 num);
a3b680e6 114PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP* left, OP* pat)
115 __attribute__((warn_unused_result))
116 __attribute__((nonnull(pTHX_2,pTHX_3)));
117
118PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq)
119 __attribute__((warn_unused_result));
120
121PERL_CALLCONV I32 Perl_block_gimme(pTHX)
122 __attribute__((warn_unused_result));
123
124PERL_CALLCONV int Perl_block_start(pTHX_ int full)
125 __attribute__((warn_unused_result));
126
1d7c1841 127PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX);
36ed5425 128PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX);
a3b680e6 129PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV* av_list)
130 __attribute__((nonnull(pTHX_2)));
131
4373e329 132PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, Uid_t effective, const Stat_t* statbufp)
a3b680e6 133 __attribute__((warn_unused_result))
3d42dc86 134 __attribute__((nonnull(pTHX_3)));
f54cb97a 135
1d7c1841 136PERL_CALLCONV U32 Perl_cast_ulong(pTHX_ NV f);
137PERL_CALLCONV I32 Perl_cast_i32(pTHX_ NV f);
138PERL_CALLCONV IV Perl_cast_iv(pTHX_ NV f);
139PERL_CALLCONV UV Perl_cast_uv(pTHX_ NV f);
cea2e8a9 140#if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
1d7c1841 141PERL_CALLCONV I32 Perl_my_chsize(pTHX_ int fd, Off_t length);
cea2e8a9 142#endif
1d7c1841 143PERL_CALLCONV OP* Perl_convert(pTHX_ I32 optype, I32 flags, OP* o);
f54cb97a 144PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...)
145 __attribute__((noreturn))
4373e329 146 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 147
148PERL_CALLCONV void Perl_vcroak(pTHX_ const char* pat, va_list* args)
149 __attribute__((noreturn));
150
cea2e8a9 151#if defined(PERL_IMPLICIT_CONTEXT)
f54cb97a 152PERL_CALLCONV void Perl_croak_nocontext(const char* pat, ...)
153 __attribute__((noreturn))
4373e329 154 __attribute__format__(__printf__,1,2);
f54cb97a 155
894356b3 156PERL_CALLCONV OP* Perl_die_nocontext(const char* pat, ...)
4373e329 157 __attribute__format__(__printf__,1,2);
f54cb97a 158
894356b3 159PERL_CALLCONV void Perl_deb_nocontext(const char* pat, ...)
4373e329 160 __attribute__format__(__printf__,1,2);
f54cb97a 161
894356b3 162PERL_CALLCONV char* Perl_form_nocontext(const char* pat, ...)
4373e329 163 __attribute__format__(__printf__,1,2);
f54cb97a 164
d2560b70 165PERL_CALLCONV void Perl_load_module_nocontext(U32 flags, SV* name, SV* ver, ...);
894356b3 166PERL_CALLCONV SV* Perl_mess_nocontext(const char* pat, ...)
4373e329 167 __attribute__format__(__printf__,1,2);
f54cb97a 168
894356b3 169PERL_CALLCONV void Perl_warn_nocontext(const char* pat, ...)
4373e329 170 __attribute__format__(__printf__,1,2);
f54cb97a 171
894356b3 172PERL_CALLCONV void Perl_warner_nocontext(U32 err, const char* pat, ...)
4373e329 173 __attribute__format__(__printf__,2,3);
f54cb97a 174
894356b3 175PERL_CALLCONV SV* Perl_newSVpvf_nocontext(const char* pat, ...)
4373e329 176 __attribute__format__(__printf__,1,2);
f54cb97a 177
894356b3 178PERL_CALLCONV void Perl_sv_catpvf_nocontext(SV* sv, const char* pat, ...)
4373e329 179 __attribute__format__(__printf__,2,3);
f54cb97a 180
894356b3 181PERL_CALLCONV void Perl_sv_setpvf_nocontext(SV* sv, const char* pat, ...)
4373e329 182 __attribute__format__(__printf__,2,3);
f54cb97a 183
894356b3 184PERL_CALLCONV void Perl_sv_catpvf_mg_nocontext(SV* sv, const char* pat, ...)
4373e329 185 __attribute__format__(__printf__,2,3);
f54cb97a 186
894356b3 187PERL_CALLCONV void Perl_sv_setpvf_mg_nocontext(SV* sv, const char* pat, ...)
4373e329 188 __attribute__format__(__printf__,2,3);
f54cb97a 189
894356b3 190PERL_CALLCONV int Perl_fprintf_nocontext(PerlIO* stream, const char* fmt, ...)
4373e329 191 __attribute__format__(__printf__,2,3);
f54cb97a 192
b0316773 193PERL_CALLCONV int Perl_printf_nocontext(const char* fmt, ...)
4373e329 194 __attribute__format__(__printf__,1,2);
f54cb97a 195
0cb96387 196#endif
a3b680e6 197PERL_CALLCONV void Perl_cv_ckproto(pTHX_ const CV* cv, const GV* gv, const char* p)
198 __attribute__((nonnull(pTHX_1)));
199
4373e329 200PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto)
3d42dc86 201 __attribute__((nonnull(pTHX_1)));
f54cb97a 202
1d7c1841 203PERL_CALLCONV SV* Perl_cv_const_sv(pTHX_ CV* cv);
6867be6d 204PERL_CALLCONV SV* Perl_op_const_sv(pTHX_ const OP* o, CV* cv);
1d7c1841 205PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv);
206PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cs);
207PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv);
208PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp);
209PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV* buffer, int maxlen);
4373e329 210PERL_CALLCONV char** Perl_get_op_descs(pTHX)
a3b680e6 211 __attribute__((warn_unused_result))
4373e329 212 __attribute__((pure));
f54cb97a 213
4373e329 214PERL_CALLCONV char** Perl_get_op_names(pTHX)
a3b680e6 215 __attribute__((warn_unused_result))
4373e329 216 __attribute__((pure));
f54cb97a 217
4373e329 218PERL_CALLCONV const char* Perl_get_no_modify(pTHX)
a3b680e6 219 __attribute__((warn_unused_result))
4373e329 220 __attribute__((pure));
f54cb97a 221
4373e329 222PERL_CALLCONV U32* Perl_get_opargs(pTHX)
a3b680e6 223 __attribute__((warn_unused_result))
4373e329 224 __attribute__((pure));
f54cb97a 225
4373e329 226PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX)
a3b680e6 227 __attribute__((warn_unused_result))
4373e329 228 __attribute__((pure));
f54cb97a 229
a3b680e6 230PERL_CALLCONV I32 Perl_cxinc(pTHX)
231 __attribute__((warn_unused_result));
232
894356b3 233PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...)
4373e329 234 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 235
1d7c1841 236PERL_CALLCONV void Perl_vdeb(pTHX_ const char* pat, va_list* args);
237PERL_CALLCONV void Perl_debprofdump(pTHX);
4373e329 238PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o)
3d42dc86 239 __attribute__((nonnull(pTHX_1)));
f54cb97a 240
1d7c1841 241PERL_CALLCONV I32 Perl_debstack(pTHX);
242PERL_CALLCONV I32 Perl_debstackptrs(pTHX);
4373e329 243PERL_CALLCONV char* Perl_delimcpy(pTHX_ char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen)
3d42dc86 244 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4,pTHX_6)));
f54cb97a 245
4373e329 246PERL_CALLCONV void Perl_deprecate(pTHX_ const char* s)
3d42dc86 247 __attribute__((nonnull(pTHX_1)));
f54cb97a 248
4373e329 249PERL_CALLCONV void Perl_deprecate_old(pTHX_ const char* s)
3d42dc86 250 __attribute__((nonnull(pTHX_1)));
f54cb97a 251
894356b3 252PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...)
4373e329 253 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 254
1d7c1841 255PERL_CALLCONV OP* Perl_vdie(pTHX_ const char* pat, va_list* args);
35a4481c 256PERL_CALLCONV OP* Perl_die_where(pTHX_ const char* message, STRLEN msglen);
1d7c1841 257PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix);
258PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp);
259PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int flag);
4373e329 260PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
3d42dc86 261 __attribute__((nonnull(pTHX_1)));
f54cb97a 262
4373e329 263PERL_CALLCONV void Perl_do_chop(pTHX_ SV* asv, SV* sv)
3d42dc86 264 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 265
4373e329 266PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit)
3d42dc86 267 __attribute__((nonnull(pTHX_1)));
f54cb97a 268
4373e329 269PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv)
3d42dc86 270 __attribute__((nonnull(pTHX_1)));
f54cb97a 271
4373e329 272PERL_CALLCONV bool Perl_do_exec(pTHX_ char* cmd)
3d42dc86 273 __attribute__((nonnull(pTHX_1)));
f54cb97a 274
27da23d5 275#if defined(WIN32) || defined(SYMBIAN)
54725af6 276PERL_CALLCONV int Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp);
277PERL_CALLCONV int Perl_do_spawn(pTHX_ char* cmd);
278PERL_CALLCONV int Perl_do_spawn_nowait(pTHX_ char* cmd);
279#endif
864dbfa3 280#if !defined(WIN32)
1d7c1841 281PERL_CALLCONV bool Perl_do_exec3(pTHX_ char* cmd, int fd, int flag);
864dbfa3 282#endif
1d7c1841 283PERL_CALLCONV void Perl_do_execfree(pTHX);
864dbfa3 284#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
1d7c1841 285PERL_CALLCONV I32 Perl_do_ipcctl(pTHX_ I32 optype, SV** mark, SV** sp);
286PERL_CALLCONV I32 Perl_do_ipcget(pTHX_ I32 optype, SV** mark, SV** sp);
287PERL_CALLCONV I32 Perl_do_msgrcv(pTHX_ SV** mark, SV** sp);
288PERL_CALLCONV I32 Perl_do_msgsnd(pTHX_ SV** mark, SV** sp);
289PERL_CALLCONV I32 Perl_do_semop(pTHX_ SV** mark, SV** sp);
290PERL_CALLCONV I32 Perl_do_shmio(pTHX_ I32 optype, SV** mark, SV** sp);
0cb96387 291#endif
f54cb97a 292PERL_CALLCONV void Perl_do_join(pTHX_ SV* sv, SV* del, SV** mark, SV** sp)
293 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4)));
294
1d7c1841 295PERL_CALLCONV OP* Perl_do_kv(pTHX);
296PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp);
297PERL_CALLCONV bool Perl_do_open9(pTHX_ GV *gv, char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, I32 num);
a567e93b 298PERL_CALLCONV bool Perl_do_openn(pTHX_ GV *gv, char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, I32 num);
1d7c1841 299PERL_CALLCONV void Perl_do_pipe(pTHX_ SV* sv, GV* rgv, GV* wgv);
300PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp);
301PERL_CALLCONV OP* Perl_do_readline(pTHX);
302PERL_CALLCONV I32 Perl_do_chomp(pTHX_ SV* sv);
303PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence);
304PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, I32 len, SV** sarg);
305PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence);
306PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv);
307PERL_CALLCONV I32 Perl_do_trans(pTHX_ SV* sv);
4373e329 308PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, I32 offset, I32 size)
3d42dc86 309 __attribute__((nonnull(pTHX_1)));
f54cb97a 310
4373e329 311PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv)
3d42dc86 312 __attribute__((nonnull(pTHX_1)));
f54cb97a 313
1d7c1841 314PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right);
315PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term);
316PERL_CALLCONV I32 Perl_dowantarray(pTHX);
317PERL_CALLCONV void Perl_dump_all(pTHX);
318PERL_CALLCONV void Perl_dump_eval(pTHX);
864dbfa3 319#if defined(DUMP_FDS)
1d7c1841 320PERL_CALLCONV void Perl_dump_fds(pTHX_ char* s);
0cb96387 321#endif
e1ec3a88 322PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv);
1d7c1841 323PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv);
6867be6d 324PERL_CALLCONV void Perl_op_dump(pTHX_ const OP* arg);
1d7c1841 325PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm);
e1ec3a88 326PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash);
f54cb97a 327PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv)
328 __attribute__((nonnull(pTHX_1)));
329
1d7c1841 330PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags);
331PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags);
e1ec3a88 332PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char **search_ext, I32 flags);
4373e329 333PERL_CALLCONV OP* Perl_force_list(pTHX_ OP* arg)
3d42dc86 334 __attribute__((nonnull(pTHX_1)));
f54cb97a 335
4373e329 336PERL_CALLCONV OP* Perl_fold_constants(pTHX_ OP* arg)
3d42dc86 337 __attribute__((nonnull(pTHX_1)));
f54cb97a 338
894356b3 339PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...)
4373e329 340 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 341
1d7c1841 342PERL_CALLCONV char* Perl_vform(pTHX_ const char* pat, va_list* args);
343PERL_CALLCONV void Perl_free_tmps(pTHX);
344PERL_CALLCONV OP* Perl_gen_constant_list(pTHX_ OP* o);
864dbfa3 345#if !defined(HAS_GETENV_LEN)
bf4acbe4 346PERL_CALLCONV char* Perl_getenv_len(pTHX_ const char* key, unsigned long *len);
0cb96387 347#endif
1d7c1841 348PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv);
349PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp);
350PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV* gv);
351PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV* gv);
352PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv);
353PERL_CALLCONV GV* Perl_gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method);
354PERL_CALLCONV void Perl_gv_check(pTHX_ HV* stash);
35a4481c 355PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv);
27da23d5 356/* PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); */
35a4481c 357PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain);
1d7c1841 358PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name);
359PERL_CALLCONV GV* Perl_gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level);
2d8263b8 360PERL_CALLCONV GV* Perl_gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level);
1d7c1841 361PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name);
362PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload);
363PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char* name, I32 add, I32 sv_type);
35a4481c 364PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv);
27da23d5 365/* PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); */
35a4481c 366PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain);
1d7c1841 367PERL_CALLCONV void Perl_gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi);
368PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 create);
369PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 create);
370PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 create);
371PERL_CALLCONV void Perl_hv_clear(pTHX_ HV* tb);
372PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV* hv, HE* entry);
da58a35d 373PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV* tb, const char* key, I32 klen, I32 flags);
1d7c1841 374PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV* tb, SV* key, I32 flags, U32 hash);
da58a35d 375PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV* tb, const char* key, I32 klen);
1d7c1841 376PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV* tb, SV* key, U32 hash);
da58a35d 377PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV* tb, const char* key, I32 klen, I32 lval);
1d7c1841 378PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV* tb, SV* key, I32 lval, U32 hash);
a3b680e6 379PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV* hv, HE* entry)
380 __attribute__((nonnull(pTHX_1)));
381
382PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV* tb)
383 __attribute__((nonnull(pTHX_1)));
384
385PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen)
386 __attribute__((warn_unused_result))
387 __attribute__((nonnull(pTHX_1,pTHX_2)));
388
389PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry)
390 __attribute__((warn_unused_result))
391 __attribute__((nonnull(pTHX_1)));
392
393PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV* tb)
394 __attribute__((warn_unused_result))
395 __attribute__((nonnull(pTHX_1)));
396
397PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV* hv, char** key, I32* retlen)
398 __attribute__((warn_unused_result))
399 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
400
401PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV* tb, I32 flags)
402 __attribute__((warn_unused_result))
403 __attribute__((nonnull(pTHX_1)));
404
405PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV* tb, HE* entry)
406 __attribute__((warn_unused_result))
407 __attribute__((nonnull(pTHX_1,pTHX_2)));
408
409PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax)
410 __attribute__((nonnull(pTHX_1)));
411
1d7c1841 412PERL_CALLCONV void Perl_hv_magic(pTHX_ HV* hv, GV* gv, int how);
da58a35d 413PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash);
1d7c1841 414PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV* tb, SV* key, SV* val, U32 hash);
e16e2ff8 415PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash, int flags);
1d7c1841 416PERL_CALLCONV void Perl_hv_undef(pTHX_ HV* tb);
4373e329 417PERL_CALLCONV I32 Perl_ibcmp(pTHX_ const char* a, const char* b, I32 len)
418 __attribute__((pure))
3d42dc86 419 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 420
4373e329 421PERL_CALLCONV I32 Perl_ibcmp_locale(pTHX_ const char* a, const char* b, I32 len)
422 __attribute__((pure))
3d42dc86 423 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 424
4373e329 425PERL_CALLCONV I32 Perl_ibcmp_utf8(pTHX_ const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
3d42dc86 426 __attribute__((nonnull(pTHX_1,pTHX_5)));
f54cb97a 427
428PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective)
429 __attribute__((warn_unused_result));
430
4373e329 431PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv)
3d42dc86 432 __attribute__((nonnull(pTHX_2)));
f54cb97a 433
1d7c1841 434PERL_CALLCONV void Perl_init_debugger(pTHX);
435PERL_CALLCONV void Perl_init_stacks(pTHX);
e72cf795 436PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm);
1d7c1841 437PERL_CALLCONV U32 Perl_intro_my(pTHX);
4373e329 438PERL_CALLCONV char* Perl_instr(pTHX_ const char* big, const char* little)
439 __attribute__((pure))
3d42dc86 440 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 441
1d7c1841 442PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, bool not_implicit);
443PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd);
f54cb97a 444PERL_CALLCONV bool Perl_is_gv_magical(pTHX_ const char *name, STRLEN len, U32 flags)
445 __attribute__((warn_unused_result));
446
447PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX)
448 __attribute__((warn_unused_result));
449
450PERL_CALLCONV U32 Perl_to_uni_upper_lc(pTHX_ U32 c)
451 __attribute__((warn_unused_result))
452 __attribute__((pure));
453
454PERL_CALLCONV U32 Perl_to_uni_title_lc(pTHX_ U32 c)
455 __attribute__((warn_unused_result))
456 __attribute__((pure));
457
458PERL_CALLCONV U32 Perl_to_uni_lower_lc(pTHX_ U32 c)
459 __attribute__((warn_unused_result))
460 __attribute__((pure));
461
462PERL_CALLCONV bool Perl_is_uni_alnum(pTHX_ UV c)
463 __attribute__((warn_unused_result))
464 __attribute__((pure));
465
466PERL_CALLCONV bool Perl_is_uni_alnumc(pTHX_ UV c)
467 __attribute__((warn_unused_result))
468 __attribute__((pure));
469
470PERL_CALLCONV bool Perl_is_uni_idfirst(pTHX_ UV c)
471 __attribute__((warn_unused_result))
472 __attribute__((pure));
473
474PERL_CALLCONV bool Perl_is_uni_alpha(pTHX_ UV c)
475 __attribute__((warn_unused_result))
476 __attribute__((pure));
477
478PERL_CALLCONV bool Perl_is_uni_ascii(pTHX_ UV c)
479 __attribute__((warn_unused_result))
480 __attribute__((pure));
481
482PERL_CALLCONV bool Perl_is_uni_space(pTHX_ UV c)
483 __attribute__((warn_unused_result))
484 __attribute__((pure));
485
486PERL_CALLCONV bool Perl_is_uni_cntrl(pTHX_ UV c)
487 __attribute__((warn_unused_result))
488 __attribute__((pure));
489
490PERL_CALLCONV bool Perl_is_uni_graph(pTHX_ UV c)
491 __attribute__((warn_unused_result))
492 __attribute__((pure));
493
494PERL_CALLCONV bool Perl_is_uni_digit(pTHX_ UV c)
495 __attribute__((warn_unused_result))
496 __attribute__((pure));
497
498PERL_CALLCONV bool Perl_is_uni_upper(pTHX_ UV c)
499 __attribute__((warn_unused_result))
500 __attribute__((pure));
501
502PERL_CALLCONV bool Perl_is_uni_lower(pTHX_ UV c)
503 __attribute__((warn_unused_result))
504 __attribute__((pure));
505
506PERL_CALLCONV bool Perl_is_uni_print(pTHX_ UV c)
507 __attribute__((warn_unused_result))
508 __attribute__((pure));
509
510PERL_CALLCONV bool Perl_is_uni_punct(pTHX_ UV c)
511 __attribute__((warn_unused_result))
512 __attribute__((pure));
513
514PERL_CALLCONV bool Perl_is_uni_xdigit(pTHX_ UV c)
515 __attribute__((warn_unused_result))
516 __attribute__((pure));
517
4373e329 518PERL_CALLCONV UV Perl_to_uni_upper(pTHX_ UV c, U8 *p, STRLEN *lenp)
3d42dc86 519 __attribute__((nonnull(pTHX_2,pTHX_3)));
f54cb97a 520
4373e329 521PERL_CALLCONV UV Perl_to_uni_title(pTHX_ UV c, U8 *p, STRLEN *lenp)
3d42dc86 522 __attribute__((nonnull(pTHX_2,pTHX_3)));
f54cb97a 523
4373e329 524PERL_CALLCONV UV Perl_to_uni_lower(pTHX_ UV c, U8 *p, STRLEN *lenp)
3d42dc86 525 __attribute__((nonnull(pTHX_2,pTHX_3)));
f54cb97a 526
4373e329 527PERL_CALLCONV UV Perl_to_uni_fold(pTHX_ UV c, U8 *p, STRLEN *lenp)
3d42dc86 528 __attribute__((nonnull(pTHX_2,pTHX_3)));
f54cb97a 529
530PERL_CALLCONV bool Perl_is_uni_alnum_lc(pTHX_ UV c)
531 __attribute__((warn_unused_result))
532 __attribute__((pure));
533
534PERL_CALLCONV bool Perl_is_uni_alnumc_lc(pTHX_ UV c)
535 __attribute__((warn_unused_result))
536 __attribute__((pure));
537
538PERL_CALLCONV bool Perl_is_uni_idfirst_lc(pTHX_ UV c)
539 __attribute__((warn_unused_result))
540 __attribute__((pure));
541
542PERL_CALLCONV bool Perl_is_uni_alpha_lc(pTHX_ UV c)
543 __attribute__((warn_unused_result))
544 __attribute__((pure));
545
546PERL_CALLCONV bool Perl_is_uni_ascii_lc(pTHX_ UV c)
547 __attribute__((warn_unused_result))
548 __attribute__((pure));
549
550PERL_CALLCONV bool Perl_is_uni_space_lc(pTHX_ UV c)
551 __attribute__((warn_unused_result))
552 __attribute__((pure));
553
554PERL_CALLCONV bool Perl_is_uni_cntrl_lc(pTHX_ UV c)
555 __attribute__((warn_unused_result))
556 __attribute__((pure));
557
558PERL_CALLCONV bool Perl_is_uni_graph_lc(pTHX_ UV c)
559 __attribute__((warn_unused_result))
560 __attribute__((pure));
561
562PERL_CALLCONV bool Perl_is_uni_digit_lc(pTHX_ UV c)
563 __attribute__((warn_unused_result))
564 __attribute__((pure));
565
566PERL_CALLCONV bool Perl_is_uni_upper_lc(pTHX_ UV c)
567 __attribute__((warn_unused_result))
568 __attribute__((pure));
569
570PERL_CALLCONV bool Perl_is_uni_lower_lc(pTHX_ UV c)
571 __attribute__((warn_unused_result))
572 __attribute__((pure));
573
574PERL_CALLCONV bool Perl_is_uni_print_lc(pTHX_ UV c)
575 __attribute__((warn_unused_result))
576 __attribute__((pure));
577
578PERL_CALLCONV bool Perl_is_uni_punct_lc(pTHX_ UV c)
579 __attribute__((warn_unused_result))
580 __attribute__((pure));
581
582PERL_CALLCONV bool Perl_is_uni_xdigit_lc(pTHX_ UV c)
583 __attribute__((warn_unused_result))
584 __attribute__((pure));
585
4373e329 586PERL_CALLCONV STRLEN Perl_is_utf8_char(pTHX_ const U8 *p)
3d42dc86 587 __attribute__((nonnull(pTHX_1)));
f54cb97a 588
4373e329 589PERL_CALLCONV bool Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len)
3d42dc86 590 __attribute__((nonnull(pTHX_1)));
f54cb97a 591
4373e329 592PERL_CALLCONV bool Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **p)
3d42dc86 593 __attribute__((nonnull(pTHX_1,pTHX_3)));
f54cb97a 594
4373e329 595PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p)
3d42dc86 596 __attribute__((nonnull(pTHX_1)));
f54cb97a 597
4373e329 598PERL_CALLCONV bool Perl_is_utf8_alnumc(pTHX_ const U8 *p)
3d42dc86 599 __attribute__((nonnull(pTHX_1)));
f54cb97a 600
4373e329 601PERL_CALLCONV bool Perl_is_utf8_idfirst(pTHX_ const U8 *p)
3d42dc86 602 __attribute__((nonnull(pTHX_1)));
f54cb97a 603
4373e329 604PERL_CALLCONV bool Perl_is_utf8_idcont(pTHX_ const U8 *p)
3d42dc86 605 __attribute__((nonnull(pTHX_1)));
f54cb97a 606
4373e329 607PERL_CALLCONV bool Perl_is_utf8_alpha(pTHX_ const U8 *p)
3d42dc86 608 __attribute__((nonnull(pTHX_1)));
f54cb97a 609
4373e329 610PERL_CALLCONV bool Perl_is_utf8_ascii(pTHX_ const U8 *p)
3d42dc86 611 __attribute__((nonnull(pTHX_1)));
f54cb97a 612
4373e329 613PERL_CALLCONV bool Perl_is_utf8_space(pTHX_ const U8 *p)
3d42dc86 614 __attribute__((nonnull(pTHX_1)));
f54cb97a 615
4373e329 616PERL_CALLCONV bool Perl_is_utf8_cntrl(pTHX_ const U8 *p)
3d42dc86 617 __attribute__((nonnull(pTHX_1)));
f54cb97a 618
4373e329 619PERL_CALLCONV bool Perl_is_utf8_digit(pTHX_ const U8 *p)
3d42dc86 620 __attribute__((nonnull(pTHX_1)));
f54cb97a 621
4373e329 622PERL_CALLCONV bool Perl_is_utf8_graph(pTHX_ const U8 *p)
3d42dc86 623 __attribute__((nonnull(pTHX_1)));
f54cb97a 624
4373e329 625PERL_CALLCONV bool Perl_is_utf8_upper(pTHX_ const U8 *p)
3d42dc86 626 __attribute__((nonnull(pTHX_1)));
f54cb97a 627
4373e329 628PERL_CALLCONV bool Perl_is_utf8_lower(pTHX_ const U8 *p)
3d42dc86 629 __attribute__((nonnull(pTHX_1)));
f54cb97a 630
4373e329 631PERL_CALLCONV bool Perl_is_utf8_print(pTHX_ const U8 *p)
3d42dc86 632 __attribute__((nonnull(pTHX_1)));
f54cb97a 633
4373e329 634PERL_CALLCONV bool Perl_is_utf8_punct(pTHX_ const U8 *p)
3d42dc86 635 __attribute__((nonnull(pTHX_1)));
f54cb97a 636
4373e329 637PERL_CALLCONV bool Perl_is_utf8_xdigit(pTHX_ const U8 *p)
3d42dc86 638 __attribute__((nonnull(pTHX_1)));
f54cb97a 639
4373e329 640PERL_CALLCONV bool Perl_is_utf8_mark(pTHX_ const U8 *p)
3d42dc86 641 __attribute__((nonnull(pTHX_1)));
f54cb97a 642
4373e329 643PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP* arg)
3d42dc86 644 __attribute__((nonnull(pTHX_1)));
f54cb97a 645
672994ce 646PERL_CALLCONV I32 Perl_keyword(pTHX_ const char* d, I32 len)
f54cb97a 647 __attribute__((pure))
3d42dc86 648 __attribute__((nonnull(pTHX_1)));
f54cb97a 649
1d7c1841 650PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base);
651PERL_CALLCONV void Perl_lex_end(pTHX);
652PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line);
93c66552 653PERL_CALLCONV void Perl_op_null(pTHX_ OP* o);
654PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o);
4026c95a 655PERL_CALLCONV void Perl_op_refcnt_lock(pTHX);
656PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX);
1d7c1841 657PERL_CALLCONV OP* Perl_linklist(pTHX_ OP* o);
658PERL_CALLCONV OP* Perl_list(pTHX_ OP* o);
659PERL_CALLCONV OP* Perl_listkids(pTHX_ OP* o);
d2560b70 660PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...);
e4783991 661PERL_CALLCONV void Perl_vload_module(pTHX_ U32 flags, SV* name, SV* ver, va_list* args);
1d7c1841 662PERL_CALLCONV OP* Perl_localize(pTHX_ OP* arg, I32 lexical);
f54cb97a 663PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV* sv)
664 __attribute__((warn_unused_result))
665 __attribute__((nonnull(pTHX_1)));
666
a3b680e6 667PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result)
f54cb97a 668 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
669
a3b680e6 670PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result)
f54cb97a 671 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
672
673PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep)
674 __attribute__((nonnull(pTHX_1)));
675
dd5dc04f 676PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send);
a3b680e6 677PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result);
1d7c1841 678PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg);
679PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg);
680PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg);
681PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg);
682PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, MAGIC* mg);
683PERL_CALLCONV int Perl_magic_freeregexp(pTHX_ SV* sv, MAGIC* mg);
d460ef45 684PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg);
1d7c1841 685PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg);
686PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, MAGIC* mg);
687PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg);
688PERL_CALLCONV int Perl_magic_getglob(pTHX_ SV* sv, MAGIC* mg);
689PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg);
690PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg);
691PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg);
692PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg);
693PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg);
694PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg);
695PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg);
696PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg);
697PERL_CALLCONV U32 Perl_magic_len(pTHX_ SV* sv, MAGIC* mg);
1d7c1841 698PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV* sv, MAGIC* mg, SV* key);
699PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg);
700PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg);
f54cb97a 701PERL_CALLCONV int Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg)
702 __attribute__((noreturn));
703
1d7c1841 704PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg);
705PERL_CALLCONV int Perl_magic_setamagic(pTHX_ SV* sv, MAGIC* mg);
706PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg);
707PERL_CALLCONV int Perl_magic_setbm(pTHX_ SV* sv, MAGIC* mg);
708PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg);
864dbfa3 709#if defined(USE_LOCALE_COLLATE)
1d7c1841 710PERL_CALLCONV int Perl_magic_setcollxfrm(pTHX_ SV* sv, MAGIC* mg);
864dbfa3 711#endif
1d7c1841 712PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg);
713PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg);
714PERL_CALLCONV int Perl_magic_setfm(pTHX_ SV* sv, MAGIC* mg);
715PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg);
716PERL_CALLCONV int Perl_magic_setglob(pTHX_ SV* sv, MAGIC* mg);
717PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg);
718PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg);
719PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg);
720PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg);
faf82a0b 721PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg);
1d7c1841 722PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg);
723PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg);
724PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg);
725PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg);
726PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg);
7e8c5dac 727PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg);
1d7c1841 728PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg);
729PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg);
730PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg);
e1ec3a88 731PERL_CALLCONV void Perl_magicname(pTHX_ const char* sym, const char* name, I32 namlen);
1d7c1841 732PERL_CALLCONV void Perl_markstack_grow(pTHX);
864dbfa3 733#if defined(USE_LOCALE_COLLATE)
1d7c1841 734PERL_CALLCONV char* Perl_mem_collxfrm(pTHX_ const char* s, STRLEN len, STRLEN* xlen);
0cb96387 735#endif
894356b3 736PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...)
4373e329 737 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 738
1d7c1841 739PERL_CALLCONV SV* Perl_vmess(pTHX_ const char* pat, va_list* args);
740PERL_CALLCONV void Perl_qerror(pTHX_ SV* err);
2a5a0c38 741PERL_CALLCONV void Perl_sortsv(pTHX_ SV ** array, size_t num_elts, SVCOMPARE_t cmp);
1d7c1841 742PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv);
743PERL_CALLCONV int Perl_mg_copy(pTHX_ SV* sv, SV* nsv, const char* key, I32 klen);
35a4481c 744PERL_CALLCONV MAGIC* Perl_mg_find(pTHX_ const SV* sv, int type);
1d7c1841 745PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv);
746PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv);
747PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv);
748PERL_CALLCONV void Perl_mg_magical(pTHX_ SV* sv);
749PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv);
8fb26106 750PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv);
e72cf795 751PERL_CALLCONV void Perl_mini_mktime(pTHX_ struct tm *pm);
1d7c1841 752PERL_CALLCONV OP* Perl_mod(pTHX_ OP* o, I32 type);
16fe6d59 753PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ SV* discp);
1d7c1841 754PERL_CALLCONV char* Perl_moreswitches(pTHX_ char* s);
4373e329 755PERL_CALLCONV OP* Perl_my(pTHX_ OP* o)
3d42dc86 756 __attribute__((nonnull(pTHX_1)));
f54cb97a 757
4373e329 758PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s)
3d42dc86 759 __attribute__((nonnull(pTHX_1)));
f54cb97a 760
2253333f 761#if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
4373e329 762PERL_CALLCONV char* Perl_my_bcopy(const char* from, char* to, I32 len)
763 __attribute__((nonnull(1,2)));
f54cb97a 764
5f05dabc 765#endif
a0d0e21e 766#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
4373e329 767PERL_CALLCONV char* Perl_my_bzero(char* loc, I32 len)
768 __attribute__((nonnull(1)));
f54cb97a 769
864dbfa3 770#endif
f54cb97a 771PERL_CALLCONV void Perl_my_exit(pTHX_ U32 status)
772 __attribute__((noreturn));
773
774PERL_CALLCONV void Perl_my_failure_exit(pTHX)
775 __attribute__((noreturn));
776
1d7c1841 777PERL_CALLCONV I32 Perl_my_fflush_all(pTHX);
52e18b1f 778PERL_CALLCONV Pid_t Perl_my_fork(void);
779PERL_CALLCONV void Perl_atfork_lock(void);
780PERL_CALLCONV void Perl_atfork_unlock(void);
1d7c1841 781PERL_CALLCONV I32 Perl_my_lstat(pTHX);
5f05dabc 782#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
4373e329 783PERL_CALLCONV I32 Perl_my_memcmp(const char* s1, const char* s2, I32 len)
784 __attribute__((pure))
785 __attribute__((nonnull(1,2)));
f54cb97a 786
a0d0e21e 787#endif
fc36a67e 788#if !defined(HAS_MEMSET)
4373e329 789PERL_CALLCONV void* Perl_my_memset(char* loc, I32 ch, I32 len)
790 __attribute__((nonnull(1)));
f54cb97a 791
864dbfa3 792#endif
1d7c1841 793PERL_CALLCONV I32 Perl_my_pclose(pTHX_ PerlIO* ptr);
794PERL_CALLCONV PerlIO* Perl_my_popen(pTHX_ char* cmd, char* mode);
c60e0e09 795PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ char* mode, int n, SV ** args);
e1ec3a88 796PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val);
1d7c1841 797PERL_CALLCONV I32 Perl_my_stat(pTHX);
e1ec3a88 798PERL_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);
864dbfa3 799#if defined(MYSWAP)
4373e329 800PERL_CALLCONV short Perl_my_swap(pTHX_ short s)
f54cb97a 801 __attribute__((malloc))
802 __attribute__((warn_unused_result))
4373e329 803 __attribute__((pure));
f54cb97a 804
4373e329 805PERL_CALLCONV long Perl_my_htonl(pTHX_ long l)
f54cb97a 806 __attribute__((malloc))
807 __attribute__((warn_unused_result))
4373e329 808 __attribute__((pure));
f54cb97a 809
4373e329 810PERL_CALLCONV long Perl_my_ntohl(pTHX_ long l)
f54cb97a 811 __attribute__((malloc))
812 __attribute__((warn_unused_result))
4373e329 813 __attribute__((pure));
f54cb97a 814
0cb96387 815#endif
1d7c1841 816PERL_CALLCONV void Perl_my_unexec(pTHX);
f54cb97a 817PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o)
818 __attribute__((malloc))
819 __attribute__((warn_unused_result));
820
821PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o)
822 __attribute__((malloc))
823 __attribute__((warn_unused_result));
824
1d7c1841 825PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block);
f54cb97a 826PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right)
827 __attribute__((malloc))
828 __attribute__((warn_unused_result));
829
830PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* expr, OP* trueop, OP* falseop)
831 __attribute__((malloc))
832 __attribute__((warn_unused_result));
833
e1ec3a88 834PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv);
1d7c1841 835PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block);
f54cb97a 836PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, char* label, line_t forline, OP* sclr, OP* expr, OP*block, OP*cont)
837 __attribute__((malloc))
838 __attribute__((warn_unused_result));
839
840PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP* left, OP* right)
841 __attribute__((malloc))
842 __attribute__((warn_unused_result));
843
844PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label)
845 __attribute__((malloc))
846 __attribute__((warn_unused_result));
847
848PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block)
849 __attribute__((malloc))
850 __attribute__((warn_unused_result));
851
4373e329 852PERL_CALLCONV OP* Perl_newNULLLIST(pTHX)
f54cb97a 853 __attribute__((malloc))
854 __attribute__((warn_unused_result));
855
856PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags)
857 __attribute__((malloc))
858 __attribute__((warn_unused_result));
859
860PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o)
861 __attribute__((nonnull(pTHX_1)));
862
863PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right)
864 __attribute__((malloc))
865 __attribute__((warn_unused_result));
866
867PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop)
868 __attribute__((malloc))
869 __attribute__((warn_unused_result));
870
871PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o)
872 __attribute__((malloc))
873 __attribute__((warn_unused_result));
874
1d7c1841 875PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block);
4373e329 876PERL_CALLCONV CV* Perl_newXS(pTHX_ const char* name, XSUBADDR_t f, const char* filename)
3d42dc86 877 __attribute__((nonnull(pTHX_1,pTHX_3)));
f54cb97a 878
879PERL_CALLCONV AV* Perl_newAV(pTHX)
880 __attribute__((malloc))
881 __attribute__((warn_unused_result));
882
4373e329 883PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o)
f54cb97a 884 __attribute__((malloc))
885 __attribute__((warn_unused_result))
3d42dc86 886 __attribute__((nonnull(pTHX_1)));
f54cb97a 887
888PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last)
889 __attribute__((malloc))
890 __attribute__((warn_unused_result));
891
892PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o)
893 __attribute__((malloc))
894 __attribute__((warn_unused_result));
895
896PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv)
897 __attribute__((malloc))
898 __attribute__((warn_unused_result));
899
900PERL_CALLCONV GV* Perl_newGVgen(pTHX_ const char* pack)
901 __attribute__((malloc))
902 __attribute__((warn_unused_result));
903
904PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o)
905 __attribute__((malloc))
906 __attribute__((warn_unused_result));
907
4373e329 908PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o)
f54cb97a 909 __attribute__((malloc))
910 __attribute__((warn_unused_result))
3d42dc86 911 __attribute__((nonnull(pTHX_1)));
f54cb97a 912
913PERL_CALLCONV HV* Perl_newHV(pTHX)
914 __attribute__((malloc))
915 __attribute__((warn_unused_result));
916
917PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV* hv)
918 __attribute__((malloc))
919 __attribute__((warn_unused_result));
920
921PERL_CALLCONV IO* Perl_newIO(pTHX)
922 __attribute__((malloc))
923 __attribute__((warn_unused_result));
924
925PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last)
926 __attribute__((malloc))
927 __attribute__((warn_unused_result));
928
929PERL_CALLCONV OP* Perl_newPADOP(pTHX_ I32 type, I32 flags, SV* sv)
930 __attribute__((malloc))
931 __attribute__((warn_unused_result));
932
933PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags)
934 __attribute__((malloc))
935 __attribute__((warn_unused_result));
936
937PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv)
938 __attribute__((malloc))
939 __attribute__((warn_unused_result));
940
941PERL_CALLCONV SV* Perl_newRV(pTHX_ SV* pref)
942 __attribute__((malloc))
943 __attribute__((warn_unused_result));
944
4373e329 945PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *sv)
f54cb97a 946 __attribute__((malloc))
947 __attribute__((warn_unused_result))
3d42dc86 948 __attribute__((nonnull(pTHX_1)));
f54cb97a 949
950PERL_CALLCONV SV* Perl_newSV(pTHX_ STRLEN len)
951 __attribute__((malloc))
952 __attribute__((warn_unused_result));
953
4373e329 954PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o)
f54cb97a 955 __attribute__((malloc))
956 __attribute__((warn_unused_result))
3d42dc86 957 __attribute__((nonnull(pTHX_1)));
f54cb97a 958
4373e329 959PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv)
f54cb97a 960 __attribute__((malloc))
961 __attribute__((warn_unused_result))
3d42dc86 962 __attribute__((nonnull(pTHX_3)));
f54cb97a 963
964PERL_CALLCONV SV* Perl_newSViv(pTHX_ IV i)
965 __attribute__((malloc))
966 __attribute__((warn_unused_result));
967
968PERL_CALLCONV SV* Perl_newSVuv(pTHX_ UV u)
969 __attribute__((malloc))
970 __attribute__((warn_unused_result));
971
972PERL_CALLCONV SV* Perl_newSVnv(pTHX_ NV n)
973 __attribute__((malloc))
974 __attribute__((warn_unused_result));
975
976PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char* s, STRLEN len)
977 __attribute__((malloc))
978 __attribute__((warn_unused_result));
979
980PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char* s, STRLEN len)
981 __attribute__((malloc))
982 __attribute__((warn_unused_result));
983
984PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash)
985 __attribute__((malloc))
986 __attribute__((warn_unused_result));
987
894356b3 988PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char* pat, ...)
f54cb97a 989 __attribute__((malloc))
990 __attribute__((warn_unused_result))
4373e329 991 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 992
1d7c1841 993PERL_CALLCONV SV* Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args);
f54cb97a 994PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV* rv, const char* classname)
995 __attribute__((malloc))
996 __attribute__((warn_unused_result));
997
998PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV* old)
999 __attribute__((malloc))
1000 __attribute__((warn_unused_result));
1001
1002PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first)
1003 __attribute__((malloc))
1004 __attribute__((warn_unused_result));
1005
1006PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, I32 whileline, OP* expr, OP* block, OP* cont, I32 has_my)
1007 __attribute__((malloc))
1008 __attribute__((warn_unused_result));
1009
1010PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems)
1011 __attribute__((malloc))
1012 __attribute__((warn_unused_result));
1013
4373e329 1014PERL_CALLCONV char* Perl_scan_vstring(pTHX_ const char *vstr, SV *sv)
3d42dc86 1015 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1016
4373e329 1017PERL_CALLCONV char* Perl_scan_version(pTHX_ const char *vstr, SV *sv, bool qv)
3d42dc86 1018 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1019
b0f01acb 1020PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver);
1021PERL_CALLCONV SV* Perl_upg_version(pTHX_ SV *ver);
ad63d80f 1022PERL_CALLCONV SV* Perl_vnumify(pTHX_ SV *vs);
b9381830 1023PERL_CALLCONV SV* Perl_vnormal(pTHX_ SV *vs);
ad63d80f 1024PERL_CALLCONV SV* Perl_vstringify(pTHX_ SV *vs);
4373e329 1025PERL_CALLCONV int Perl_vcmp(pTHX_ SV *lvs, SV *rvs)
3d42dc86 1026 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1027
1d7c1841 1028PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv);
4373e329 1029PERL_CALLCONV char* Perl_ninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend)
1030 __attribute__((pure));
f54cb97a 1031
1032PERL_CALLCONV OP* Perl_oopsCV(pTHX_ OP* o)
1033 __attribute__((noreturn));
1034
1d7c1841 1035PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg);
1036PERL_CALLCONV void Perl_package(pTHX_ OP* o);
1037PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype);
4373e329 1038PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ char* name)
3d42dc86 1039 __attribute__((nonnull(pTHX_1)));
f54cb97a 1040
4373e329 1041PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name)
3d42dc86 1042 __attribute__((nonnull(pTHX_1)));
f54cb97a 1043
e1f795dc 1044PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX);
4373e329 1045PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o)
3d42dc86 1046 __attribute__((nonnull(pTHX_1)));
f54cb97a 1047
4373e329 1048PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o)
3d42dc86 1049 __attribute__((nonnull(pTHX_1)));
f54cb97a 1050
dd2155a4 1051PERL_CALLCONV void Perl_pad_leavemy(pTHX);
1d7c1841 1052PERL_CALLCONV SV* Perl_pad_sv(pTHX_ PADOFFSET po);
1053PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po);
1054PERL_CALLCONV void Perl_pad_reset(pTHX);
dd2155a4 1055PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust);
1d7c1841 1056PERL_CALLCONV void Perl_peep(pTHX_ OP* o);
ae154d6d 1057PERL_CALLCONV PerlIO* Perl_start_glob(pTHX_ SV* pattern, IO *io);
59bd0823 1058#if defined(USE_REENTRANT_API)
10bc17b6 1059PERL_CALLCONV void Perl_reentrant_size(pTHX);
59bd0823 1060PERL_CALLCONV void Perl_reentrant_init(pTHX);
10bc17b6 1061PERL_CALLCONV void Perl_reentrant_free(pTHX);
c803eecc 1062PERL_CALLCONV void* Perl_reentrant_retry(const char*, ...);
59bd0823 1063#endif
1d7c1841 1064PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr);
4373e329 1065PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv)
3d42dc86 1066 __attribute__((nonnull(pTHX_1,pTHX_3)));
f54cb97a 1067
4373e329 1068PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags)
3d42dc86 1069 __attribute__((nonnull(pTHX_1)));
f54cb97a 1070
4373e329 1071PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags)
3d42dc86 1072 __attribute__((nonnull(pTHX_1)));
f54cb97a 1073
1d7c1841 1074PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, I32 flags);
ce08f86c 1075PERL_CALLCONV void Perl_despatch_signals(pTHX);
4373e329 1076PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error)
3d42dc86 1077 __attribute__((nonnull(pTHX_1)));
f54cb97a 1078
4373e329 1079PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags)
3d42dc86 1080 __attribute__((nonnull(pTHX_1)));
f54cb97a 1081
4373e329 1082PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char* name, I32 create)
3d42dc86 1083 __attribute__((nonnull(pTHX_1)));
f54cb97a 1084
4373e329 1085PERL_CALLCONV AV* Perl_get_av(pTHX_ const char* name, I32 create)
3d42dc86 1086 __attribute__((nonnull(pTHX_1)));
f54cb97a 1087
1d7c1841 1088PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char* name, I32 create);
1089PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 create);
1090PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn);
1091PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn);
4373e329 1092PERL_CALLCONV void Perl_new_collate(pTHX_ char* newcoll)
3d42dc86 1093 __attribute__((nonnull(pTHX_1)));
f54cb97a 1094
4373e329 1095PERL_CALLCONV void Perl_new_ctype(pTHX_ char* newctype)
3d42dc86 1096 __attribute__((nonnull(pTHX_1)));
f54cb97a 1097
4373e329 1098PERL_CALLCONV void Perl_new_numeric(pTHX_ char* newcoll)
3d42dc86 1099 __attribute__((nonnull(pTHX_1)));
f54cb97a 1100
1d7c1841 1101PERL_CALLCONV void Perl_set_numeric_local(pTHX);
1102PERL_CALLCONV void Perl_set_numeric_radix(pTHX);
1103PERL_CALLCONV void Perl_set_numeric_standard(pTHX);
4373e329 1104PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv)
3d42dc86 1105 __attribute__((nonnull(pTHX_1)));
f54cb97a 1106
f7fe979e 1107PERL_CALLCONV void Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags);
1108PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist);
1d7c1841 1109PERL_CALLCONV void Perl_pidgone(pTHX_ Pid_t pid, int status);
4373e329 1110PERL_CALLCONV void Perl_pmflag(pTHX_ U32* pmfl, int ch)
3d42dc86 1111 __attribute__((nonnull(pTHX_1)));
f54cb97a 1112
4373e329 1113PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP* pm, OP* expr, bool isreg)
3d42dc86 1114 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1115
4373e329 1116PERL_CALLCONV OP* Perl_pmtrans(pTHX_ OP* o, OP* expr, OP* repl)
3d42dc86 1117 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1118
1d7c1841 1119PERL_CALLCONV void Perl_pop_scope(pTHX);
1120PERL_CALLCONV OP* Perl_prepend_elem(pTHX_ I32 optype, OP* head, OP* tail);
1d7c1841 1121PERL_CALLCONV void Perl_push_scope(pTHX);
1122PERL_CALLCONV OP* Perl_ref(pTHX_ OP* o, I32 type);
1123PERL_CALLCONV OP* Perl_refkids(pTHX_ OP* o, I32 type);
4373e329 1124PERL_CALLCONV void Perl_regdump(pTHX_ regexp* r)
3d42dc86 1125 __attribute__((nonnull(pTHX_1)));
f54cb97a 1126
a3b680e6 1127PERL_CALLCONV SV* Perl_regclass_swash(pTHX_ const struct regnode *n, bool doinit, SV **listsvp, SV **altsvp);
4373e329 1128PERL_CALLCONV I32 Perl_pregexec(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, U32 nosave)
3d42dc86 1129 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4,pTHX_6)));
f54cb97a 1130
1d7c1841 1131PERL_CALLCONV void Perl_pregfree(pTHX_ struct regexp* r);
4373e329 1132PERL_CALLCONV regexp* Perl_pregcomp(pTHX_ char* exp, char* xend, PMOP* pm)
3d42dc86 1133 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
f54cb97a 1134
1d7c1841 1135PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ regexp* prog, SV* sv, char* strpos, char* strend, U32 flags, struct re_scream_pos_data_s *data);
1136PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ regexp* prog);
a3b680e6 1137PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, void* data, U32 flags)
1138 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4)));
1139
1d7c1841 1140PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p);
a3b680e6 1141PERL_CALLCONV void Perl_regprop(pTHX_ SV* sv, const regnode* o);
4373e329 1142PERL_CALLCONV void Perl_repeatcpy(pTHX_ char* to, const char* from, I32 len, I32 count)
3d42dc86 1143 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1144
4373e329 1145PERL_CALLCONV char* Perl_rninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend)
a3b680e6 1146 __attribute__((pure))
1147 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4)));
f54cb97a 1148
1d7c1841 1149PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t);
1150PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t);
1151PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* t2);
1152PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i);
a3b680e6 1153PERL_CALLCONV void Perl_rxres_free(pTHX_ void** rsp)
1154 __attribute__((nonnull(pTHX_1)));
1155
1156PERL_CALLCONV void Perl_rxres_restore(pTHX_ void** rsp, REGEXP* prx)
1157 __attribute__((nonnull(pTHX_1,pTHX_2)));
1158
1159PERL_CALLCONV void Perl_rxres_save(pTHX_ void** rsp, REGEXP* prx)
1160 __attribute__((nonnull(pTHX_1,pTHX_2)));
1161
cea2e8a9 1162#if !defined(HAS_RENAME)
4373e329 1163PERL_CALLCONV I32 Perl_same_dirent(pTHX_ const char* a, const char* b)
3d42dc86 1164 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1165
0cb96387 1166#endif
e16e2ff8 1167PERL_CALLCONV char* Perl_savepv(pTHX_ const char* pv);
1168PERL_CALLCONV char* Perl_savesharedpv(pTHX_ const char* pv);
1169PERL_CALLCONV char* Perl_savepvn(pTHX_ const char* pv, I32 len);
1d7c1841 1170PERL_CALLCONV void Perl_savestack_grow(pTHX);
4b3c1a47 1171PERL_CALLCONV void Perl_savestack_grow_cnt(pTHX_ I32 need);
35a4481c 1172PERL_CALLCONV void Perl_save_aelem(pTHX_ const AV* av, I32 idx, SV **sptr);
1d7c1841 1173PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad);
1174PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr);
1175PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv);
9febdf04 1176PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp);
1d7c1841 1177PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp);
1178PERL_CALLCONV void Perl_save_delete(pTHX_ HV* hv, char* key, I32 klen);
1179PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p);
1180PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p);
1181PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv);
1182PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o);
1183PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv);
1184PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr);
f4dd75d9 1185PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str);
05ec9bb3 1186PERL_CALLCONV void Perl_save_shared_pvref(pTHX_ char** str);
1d7c1841 1187PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty);
1188PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv);
e1ec3a88 1189PERL_CALLCONV void Perl_save_helem(pTHX_ HV* hv, SV *key, SV **sptr);
f54cb97a 1190PERL_CALLCONV void Perl_save_hints(pTHX)
1191 __attribute__((noreturn));
1192
1d7c1841 1193PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr);
1194PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp);
1195PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp);
1196PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep);
1197PERL_CALLCONV void Perl_save_int(pTHX_ int* intp);
1198PERL_CALLCONV void Perl_save_item(pTHX_ SV* item);
1199PERL_CALLCONV void Perl_save_iv(pTHX_ IV* iv);
1200PERL_CALLCONV void Perl_save_list(pTHX_ SV** sarg, I32 maxsarg);
1201PERL_CALLCONV void Perl_save_long(pTHX_ long* longp);
26d9b02f 1202PERL_CALLCONV void Perl_save_mortalizesv(pTHX_ SV* sv);
1d7c1841 1203PERL_CALLCONV void Perl_save_nogv(pTHX_ GV* gv);
1204PERL_CALLCONV void Perl_save_op(pTHX);
1205PERL_CALLCONV SV* Perl_save_scalar(pTHX_ GV* gv);
1206PERL_CALLCONV void Perl_save_pptr(pTHX_ char** pptr);
1207PERL_CALLCONV void Perl_save_vptr(pTHX_ void* pptr);
1208PERL_CALLCONV void Perl_save_re_context(pTHX);
c3564e5c 1209PERL_CALLCONV void Perl_save_padsv(pTHX_ PADOFFSET off);
1d7c1841 1210PERL_CALLCONV void Perl_save_sptr(pTHX_ SV** sptr);
1211PERL_CALLCONV SV* Perl_save_svref(pTHX_ SV** sptr);
f54cb97a 1212PERL_CALLCONV SV** Perl_save_threadsv(pTHX_ PADOFFSET i)
1213 __attribute__((noreturn));
1214
1d7c1841 1215PERL_CALLCONV OP* Perl_sawparens(pTHX_ OP* o);
1216PERL_CALLCONV OP* Perl_scalar(pTHX_ OP* o);
1217PERL_CALLCONV OP* Perl_scalarkids(pTHX_ OP* o);
1218PERL_CALLCONV OP* Perl_scalarseq(pTHX_ OP* o);
1219PERL_CALLCONV OP* Perl_scalarvoid(pTHX_ OP* o);
73d840c0 1220PERL_CALLCONV NV Perl_scan_bin(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
1221PERL_CALLCONV NV Perl_scan_hex(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
bfed75c6 1222PERL_CALLCONV char* Perl_scan_num(pTHX_ const char* s, YYSTYPE *lvalp);
73d840c0 1223PERL_CALLCONV NV Perl_scan_oct(pTHX_ const char* start, STRLEN len, STRLEN* retlen);
1d7c1841 1224PERL_CALLCONV OP* Perl_scope(pTHX_ OP* o);
1225PERL_CALLCONV char* Perl_screaminstr(pTHX_ SV* bigsv, SV* littlesv, I32 start_shift, I32 end_shift, I32 *state, I32 last);
864dbfa3 1226#if !defined(VMS)
e1ec3a88 1227PERL_CALLCONV I32 Perl_setenv_getix(pTHX_ const char* nam);
0cb96387 1228#endif
1d7c1841 1229PERL_CALLCONV void Perl_setdefout(pTHX_ GV* gv);
1d7c1841 1230PERL_CALLCONV HEK* Perl_share_hek(pTHX_ const char* sv, I32 len, U32 hash);
1231PERL_CALLCONV Signal_t Perl_sighandler(int sig);
d36b6582 1232PERL_CALLCONV Signal_t Perl_csighandler(int sig);
4373e329 1233PERL_CALLCONV SV** Perl_stack_grow(pTHX_ SV** sp, SV**p, int n)
3d42dc86 1234 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1235
a3b680e6 1236PERL_CALLCONV I32 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
1237 __attribute__((warn_unused_result));
1238
1d7c1841 1239PERL_CALLCONV void Perl_sub_crush_depth(pTHX_ CV* cv);
4373e329 1240PERL_CALLCONV bool Perl_sv_2bool(pTHX_ SV* sv)
3d42dc86 1241 __attribute__((nonnull(pTHX_1)));
f54cb97a 1242
1243PERL_CALLCONV CV* Perl_sv_2cv(pTHX_ SV* sv, HV** st, GV** gvp, I32 lref)
1244 __attribute__((nonnull(pTHX_1)));
1245
1246PERL_CALLCONV IO* Perl_sv_2io(pTHX_ SV* sv)
1247 __attribute__((nonnull(pTHX_1)));
1248
1249/* PERL_CALLCONV IV sv_2iv(pTHX_ SV* sv)
1250 __attribute__((nonnull(pTHX_1))); */
1251
1252PERL_CALLCONV IV Perl_sv_2iv_flags(pTHX_ SV* sv, I32 flags)
1253 __attribute__((nonnull(pTHX_1)));
1254
1255PERL_CALLCONV SV* Perl_sv_2mortal(pTHX_ SV* sv)
1256 __attribute__((nonnull(pTHX_1)));
1257
1258PERL_CALLCONV NV Perl_sv_2nv(pTHX_ SV* sv)
1259 __attribute__((nonnull(pTHX_1)));
1260
4373e329 1261/* PERL_CALLCONV char* sv_2pv(pTHX_ SV* sv, STRLEN* lp)
f54cb97a 1262 __attribute__((nonnull(pTHX_1,pTHX_2))); */
1263
4373e329 1264PERL_CALLCONV char* Perl_sv_2pv_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags)
f54cb97a 1265 __attribute__((nonnull(pTHX_1,pTHX_2)));
1266
4373e329 1267PERL_CALLCONV char* Perl_sv_2pvutf8(pTHX_ SV* sv, STRLEN* lp)
f54cb97a 1268 __attribute__((nonnull(pTHX_1,pTHX_2)));
1269
4373e329 1270PERL_CALLCONV char* Perl_sv_2pvbyte(pTHX_ SV* sv, STRLEN* lp)
f54cb97a 1271 __attribute__((nonnull(pTHX_1,pTHX_2)));
1272
4373e329 1273PERL_CALLCONV char* Perl_sv_pvn_nomg(pTHX_ SV* sv, STRLEN* lp)
3d42dc86 1274 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1275
4373e329 1276/* PERL_CALLCONV UV sv_2uv(pTHX_ SV* sv)
3d42dc86 1277 __attribute__((nonnull(pTHX_1))); */
f54cb97a 1278
4373e329 1279PERL_CALLCONV UV Perl_sv_2uv_flags(pTHX_ SV* sv, I32 flags)
3d42dc86 1280 __attribute__((nonnull(pTHX_1)));
f54cb97a 1281
4373e329 1282PERL_CALLCONV IV Perl_sv_iv(pTHX_ SV* sv)
3d42dc86 1283 __attribute__((nonnull(pTHX_1)));
f54cb97a 1284
4373e329 1285PERL_CALLCONV UV Perl_sv_uv(pTHX_ SV* sv)
3d42dc86 1286 __attribute__((nonnull(pTHX_1)));
f54cb97a 1287
4373e329 1288PERL_CALLCONV NV Perl_sv_nv(pTHX_ SV* sv)
3d42dc86 1289 __attribute__((nonnull(pTHX_1)));
f54cb97a 1290
4373e329 1291PERL_CALLCONV char* Perl_sv_pvn(pTHX_ SV *sv, STRLEN *len)
3d42dc86 1292 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1293
4373e329 1294PERL_CALLCONV char* Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *len)
3d42dc86 1295 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1296
4373e329 1297PERL_CALLCONV char* Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *len)
3d42dc86 1298 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1299
1300PERL_CALLCONV I32 Perl_sv_true(pTHX_ SV *sv)
1301 __attribute__((nonnull(pTHX_1)));
1302
1303PERL_CALLCONV void Perl_sv_add_arena(pTHX_ char* ptr, U32 size, U32 flags)
1304 __attribute__((nonnull(pTHX_1)));
1305
1306PERL_CALLCONV int Perl_sv_backoff(pTHX_ SV* sv)
1307 __attribute__((nonnull(pTHX_1)));
1308
1309PERL_CALLCONV SV* Perl_sv_bless(pTHX_ SV* sv, HV* stash)
1310 __attribute__((nonnull(pTHX_1,pTHX_2)));
1311
894356b3 1312PERL_CALLCONV void Perl_sv_catpvf(pTHX_ SV* sv, const char* pat, ...)
f54cb97a 1313 __attribute__format__(__printf__,pTHX_2,pTHX_3)
1314 __attribute__((nonnull(pTHX_1)));
1315
1316PERL_CALLCONV void Perl_sv_vcatpvf(pTHX_ SV* sv, const char* pat, va_list* args)
1317 __attribute__((nonnull(pTHX_1)));
1318
1319PERL_CALLCONV void Perl_sv_catpv(pTHX_ SV* sv, const char* ptr)
1320 __attribute__((nonnull(pTHX_1)));
1321
1322/* PERL_CALLCONV void sv_catpvn(pTHX_ SV* sv, const char* ptr, STRLEN len)
1323 __attribute__((nonnull(pTHX_1))); */
1324
1325/* PERL_CALLCONV void sv_catsv(pTHX_ SV* dsv, SV* ssv)
1326 __attribute__((nonnull(pTHX_1))); */
1327
1328PERL_CALLCONV void Perl_sv_chop(pTHX_ SV* sv, const char* ptr)
1329 __attribute__((nonnull(pTHX_1)));
1330
5226ed68 1331PERL_CALLCONV I32 Perl_sv_clean_all(pTHX);
1d7c1841 1332PERL_CALLCONV void Perl_sv_clean_objs(pTHX);
f54cb97a 1333PERL_CALLCONV void Perl_sv_clear(pTHX_ SV* sv)
1334 __attribute__((nonnull(pTHX_1)));
1335
1336PERL_CALLCONV I32 Perl_sv_cmp(pTHX_ SV* sv1, SV* sv2)
1337 __attribute__((nonnull(pTHX_1,pTHX_2)));
1338
1339PERL_CALLCONV I32 Perl_sv_cmp_locale(pTHX_ SV* sv1, SV* sv2)
1340 __attribute__((nonnull(pTHX_1,pTHX_2)));
1341
864dbfa3 1342#if defined(USE_LOCALE_COLLATE)
f54cb97a 1343PERL_CALLCONV char* Perl_sv_collxfrm(pTHX_ SV* sv, STRLEN* nxp)
1344 __attribute__((nonnull(pTHX_1)));
1345
0cb96387 1346#endif
4373e329 1347PERL_CALLCONV OP* Perl_sv_compile_2op(pTHX_ SV* sv, OP** startp, const char* code, PAD** padp)
3d42dc86 1348 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4)));
f54cb97a 1349
4373e329 1350PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv)
3d42dc86 1351 __attribute__((nonnull(pTHX_1)));
f54cb97a 1352
1353PERL_CALLCONV void Perl_sv_dec(pTHX_ SV* sv)
1354 __attribute__((nonnull(pTHX_1)));
1355
1356PERL_CALLCONV void Perl_sv_dump(pTHX_ SV* sv)
1357 __attribute__((nonnull(pTHX_1)));
1358
4373e329 1359PERL_CALLCONV bool Perl_sv_derived_from(pTHX_ SV* sv, const char* name)
a3b680e6 1360 __attribute__((warn_unused_result))
3d42dc86 1361 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1362
4373e329 1363PERL_CALLCONV I32 Perl_sv_eq(pTHX_ SV* sv1, SV* sv2)
3d42dc86 1364 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1365
1d7c1841 1366PERL_CALLCONV void Perl_sv_free(pTHX_ SV* sv);
4373e329 1367PERL_CALLCONV void Perl_sv_free2(pTHX_ SV* sv)
3d42dc86 1368 __attribute__((nonnull(pTHX_1)));
f54cb97a 1369
1d7c1841 1370PERL_CALLCONV void Perl_sv_free_arenas(pTHX);
4373e329 1371PERL_CALLCONV char* Perl_sv_gets(pTHX_ SV* sv, PerlIO* fp, I32 append)
3d42dc86 1372 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1373
4373e329 1374PERL_CALLCONV char* Perl_sv_grow(pTHX_ SV* sv, STRLEN newlen)
3d42dc86 1375 __attribute__((nonnull(pTHX_1)));
f54cb97a 1376
1377PERL_CALLCONV void Perl_sv_inc(pTHX_ SV* sv)
1378 __attribute__((nonnull(pTHX_1)));
1379
4373e329 1380PERL_CALLCONV void Perl_sv_insert(pTHX_ SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen)
3d42dc86 1381 __attribute__((nonnull(pTHX_1,pTHX_4)));
f54cb97a 1382
1383PERL_CALLCONV int Perl_sv_isa(pTHX_ SV* sv, const char* name)
1384 __attribute__((nonnull(pTHX_1)));
1385
1386PERL_CALLCONV int Perl_sv_isobject(pTHX_ SV* sv)
1387 __attribute__((nonnull(pTHX_1)));
1388
1389PERL_CALLCONV STRLEN Perl_sv_len(pTHX_ SV* sv)
1390 __attribute__((nonnull(pTHX_1)));
1391
1392PERL_CALLCONV STRLEN Perl_sv_len_utf8(pTHX_ SV* sv)
1393 __attribute__((nonnull(pTHX_1)));
1394
1395PERL_CALLCONV void Perl_sv_magic(pTHX_ SV* sv, SV* obj, int how, const char* name, I32 namlen)
1396 __attribute__((nonnull(pTHX_1)));
1397
1398PERL_CALLCONV MAGIC * Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, const MGVTBL *vtbl, const char* name, I32 namlen)
1399 __attribute__((nonnull(pTHX_1)));
1400
4373e329 1401PERL_CALLCONV SV* Perl_sv_mortalcopy(pTHX_ SV* oldsv)
3d42dc86 1402 __attribute__((nonnull(pTHX_1)));
f54cb97a 1403
1404PERL_CALLCONV SV* Perl_sv_newmortal(pTHX)
1405 __attribute__((warn_unused_result));
1406
1d7c1841 1407PERL_CALLCONV SV* Perl_sv_newref(pTHX_ SV* sv);
1408PERL_CALLCONV char* Perl_sv_peek(pTHX_ SV* sv);
1409PERL_CALLCONV void Perl_sv_pos_u2b(pTHX_ SV* sv, I32* offsetp, I32* lenp);
1410PERL_CALLCONV void Perl_sv_pos_b2u(pTHX_ SV* sv, I32* offsetp);
af3c7592 1411/* PERL_CALLCONV char* sv_pvn_force(pTHX_ SV* sv, STRLEN* lp); */
dc26be07 1412PERL_CALLCONV char* Perl_sv_pvutf8n_force(pTHX_ SV* sv, STRLEN* lp);
1413PERL_CALLCONV char* Perl_sv_pvbyten_force(pTHX_ SV* sv, STRLEN* lp);
6a18f72d 1414PERL_CALLCONV char* Perl_sv_recode_to_utf8(pTHX_ SV* sv, SV *encoding);
7e558ce0 1415PERL_CALLCONV bool Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen);
a3b680e6 1416PERL_CALLCONV char* Perl_sv_reftype(pTHX_ const SV* sv, int ob)
1417 __attribute__((warn_unused_result))
1418 __attribute__((nonnull(pTHX_1)));
1419
1420PERL_CALLCONV void Perl_sv_replace(pTHX_ SV* sv, SV* nsv)
1421 __attribute__((nonnull(pTHX_1,pTHX_2)));
1422
1d7c1841 1423PERL_CALLCONV void Perl_sv_report_used(pTHX);
e1ec3a88 1424PERL_CALLCONV void Perl_sv_reset(pTHX_ const char* s, HV* stash);
894356b3 1425PERL_CALLCONV void Perl_sv_setpvf(pTHX_ SV* sv, const char* pat, ...)
4373e329 1426 __attribute__format__(__printf__,pTHX_2,pTHX_3);
f54cb97a 1427
1d7c1841 1428PERL_CALLCONV void Perl_sv_vsetpvf(pTHX_ SV* sv, const char* pat, va_list* args);
1429PERL_CALLCONV void Perl_sv_setiv(pTHX_ SV* sv, IV num);
db2b0bab 1430PERL_CALLCONV void Perl_sv_setpviv(pTHX_ SV* sv, IV num);
1d7c1841 1431PERL_CALLCONV void Perl_sv_setuv(pTHX_ SV* sv, UV num);
1432PERL_CALLCONV void Perl_sv_setnv(pTHX_ SV* sv, NV num);
1433PERL_CALLCONV SV* Perl_sv_setref_iv(pTHX_ SV* rv, const char* classname, IV iv);
e1c57cef 1434PERL_CALLCONV SV* Perl_sv_setref_uv(pTHX_ SV* rv, const char* classname, UV uv);
1d7c1841 1435PERL_CALLCONV SV* Perl_sv_setref_nv(pTHX_ SV* rv, const char* classname, NV nv);
1436PERL_CALLCONV SV* Perl_sv_setref_pv(pTHX_ SV* rv, const char* classname, void* pv);
1437PERL_CALLCONV SV* Perl_sv_setref_pvn(pTHX_ SV* rv, const char* classname, char* pv, STRLEN n);
1438PERL_CALLCONV void Perl_sv_setpv(pTHX_ SV* sv, const char* ptr);
4373e329 1439PERL_CALLCONV void Perl_sv_setpvn(pTHX_ SV* sv, const char* ptr, STRLEN len)
3d42dc86 1440 __attribute__((nonnull(pTHX_1)));
f54cb97a 1441
af3c7592 1442/* PERL_CALLCONV void sv_setsv(pTHX_ SV* dsv, SV* ssv); */
1d7c1841 1443PERL_CALLCONV void Perl_sv_taint(pTHX_ SV* sv);
1444PERL_CALLCONV bool Perl_sv_tainted(pTHX_ SV* sv);
f54cb97a 1445PERL_CALLCONV int Perl_sv_unmagic(pTHX_ SV* sv, int type)
1446 __attribute__((nonnull(pTHX_1)));
1447
1448PERL_CALLCONV void Perl_sv_unref(pTHX_ SV* sv)
1449 __attribute__((nonnull(pTHX_1)));
1450
1451PERL_CALLCONV void Perl_sv_unref_flags(pTHX_ SV* sv, U32 flags)
1452 __attribute__((nonnull(pTHX_1)));
1453
1454PERL_CALLCONV void Perl_sv_untaint(pTHX_ SV* sv)
1455 __attribute__((nonnull(pTHX_1)));
1456
1457PERL_CALLCONV bool Perl_sv_upgrade(pTHX_ SV* sv, U32 mt)
1458 __attribute__((nonnull(pTHX_1)));
1459
1460PERL_CALLCONV void Perl_sv_usepvn(pTHX_ SV* sv, char* ptr, STRLEN len)
1461 __attribute__((nonnull(pTHX_1)));
1462
1463PERL_CALLCONV void Perl_sv_vcatpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
1464 __attribute__((nonnull(pTHX_1,pTHX_2)));
1465
1466PERL_CALLCONV void Perl_sv_vsetpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
1467 __attribute__((nonnull(pTHX_1,pTHX_2)));
1468
1571675a 1469PERL_CALLCONV NV Perl_str_to_version(pTHX_ SV *sv);
7fc63493 1470PERL_CALLCONV SV* Perl_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none);
1471PERL_CALLCONV UV Perl_swash_fetch(pTHX_ SV *sv, const U8 *ptr, bool do_utf8);
1d7c1841 1472PERL_CALLCONV void Perl_taint_env(pTHX);
1473PERL_CALLCONV void Perl_taint_proper(pTHX_ const char* f, const char* s);
f54cb97a 1474PERL_CALLCONV UV Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, const char *normal, const char *special)
1475 __attribute__((nonnull(pTHX_1,pTHX_2)));
1476
1477PERL_CALLCONV UV Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1478 __attribute__((nonnull(pTHX_1,pTHX_2)));
1479
1480PERL_CALLCONV UV Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1481 __attribute__((nonnull(pTHX_1,pTHX_2)));
1482
1483PERL_CALLCONV UV Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1484 __attribute__((nonnull(pTHX_1,pTHX_2)));
1485
1486PERL_CALLCONV UV Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1487 __attribute__((nonnull(pTHX_1,pTHX_2)));
1488
864dbfa3 1489#if defined(UNLINK_ALL_VERSIONS)
1d7c1841 1490PERL_CALLCONV I32 Perl_unlnk(pTHX_ char* f);
864dbfa3 1491#endif
f7fe979e 1492PERL_CALLCONV I32 Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s, const char *strbeg, const char *strend, char **new_s, I32 ocnt, U32 flags);
1493PERL_CALLCONV I32 Perl_unpackstring(pTHX_ const char *pat, const char *patend, const char *s, const char *strend, U32 flags);
1d7c1841 1494PERL_CALLCONV void Perl_unsharepvn(pTHX_ const char* sv, I32 len, U32 hash);
1495PERL_CALLCONV void Perl_unshare_hek(pTHX_ HEK* hek);
88d95a4d 1496PERL_CALLCONV void Perl_utilize(pTHX_ int aver, I32 floor, OP* version, OP* idop, OP* arg);
dea0fc0b 1497PERL_CALLCONV U8* Perl_utf16_to_utf8(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen);
1498PERL_CALLCONV U8* Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen);
4373e329 1499PERL_CALLCONV STRLEN Perl_utf8_length(pTHX_ const U8* s, const U8 *e)
a3b680e6 1500 __attribute__((warn_unused_result))
4373e329 1501 __attribute__((pure))
3d42dc86 1502 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1503
4373e329 1504PERL_CALLCONV IV Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
a3b680e6 1505 __attribute__((warn_unused_result))
4373e329 1506 __attribute__((pure))
3d42dc86 1507 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1508
4373e329 1509PERL_CALLCONV U8* Perl_utf8_hop(pTHX_ const U8 *s, I32 off)
a3b680e6 1510 __attribute__((warn_unused_result))
4373e329 1511 __attribute__((pure))
3d42dc86 1512 __attribute__((nonnull(pTHX_1)));
f54cb97a 1513
4373e329 1514PERL_CALLCONV U8* Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
3d42dc86 1515 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1516
e1ec3a88 1517PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8);
35a4481c 1518PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len);
7fc63493 1519PERL_CALLCONV UV Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN* retlen);
1520PERL_CALLCONV UV Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN* retlen);
1521PERL_CALLCONV UV Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags);
1522PERL_CALLCONV UV Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags);
4373e329 1523PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
3d42dc86 1524 __attribute__((nonnull(pTHX_1)));
f54cb97a 1525
4373e329 1526PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
3d42dc86 1527 __attribute__((nonnull(pTHX_1)));
f54cb97a 1528
4373e329 1529PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
3d42dc86 1530 __attribute__((nonnull(pTHX_1)));
f54cb97a 1531
4373e329 1532PERL_CALLCONV U8* Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
3d42dc86 1533 __attribute__((nonnull(pTHX_1)));
f54cb97a 1534
e1ec3a88 1535PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags);
a3b680e6 1536PERL_CALLCONV char* Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
1537 __attribute__((warn_unused_result));
1538
1d7c1841 1539PERL_CALLCONV void Perl_vivify_defelem(pTHX_ SV* sv);
1540PERL_CALLCONV void Perl_vivify_ref(pTHX_ SV* sv, U32 to_what);
1541PERL_CALLCONV I32 Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags);
e1ec3a88 1542PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt);
132efe8b 1543PERL_CALLCONV U32 Perl_seed(pTHX);
a783c5f4 1544PERL_CALLCONV UV Perl_get_hash_seed(pTHX);
e1ec3a88 1545PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op);
29489e7c 1546PERL_CALLCONV void Perl_report_uninit(pTHX_ SV* uninit_sv);
894356b3 1547PERL_CALLCONV void Perl_warn(pTHX_ const char* pat, ...)
4373e329 1548 __attribute__format__(__printf__,pTHX_1,pTHX_2);
f54cb97a 1549
1d7c1841 1550PERL_CALLCONV void Perl_vwarn(pTHX_ const char* pat, va_list* args);
894356b3 1551PERL_CALLCONV void Perl_warner(pTHX_ U32 err, const char* pat, ...)
4373e329 1552 __attribute__format__(__printf__,pTHX_2,pTHX_3);
f54cb97a 1553
1d7c1841 1554PERL_CALLCONV void Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args);
1555PERL_CALLCONV void Perl_watch(pTHX_ char** addr);
35a4481c 1556PERL_CALLCONV I32 Perl_whichsig(pTHX_ const char* sig);
7ff03255 1557PERL_CALLCONV void Perl_write_to_stderr(pTHX_ const char* message, int msglen);
bfed75c6 1558PERL_CALLCONV int Perl_yyerror(pTHX_ const char* s);
48cf72c8 1559PERL_CALLCONV int Perl_yylex(pTHX);
1d7c1841 1560PERL_CALLCONV int Perl_yyparse(pTHX);
bfed75c6 1561PERL_CALLCONV int Perl_yywarn(pTHX_ const char* s);
cea2e8a9 1562#if defined(MYMALLOC)
1d7c1841 1563PERL_CALLCONV void Perl_dump_mstats(pTHX_ char* s);
827e134a 1564PERL_CALLCONV int Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level);
0cb96387 1565#endif
4373e329 1566PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes)
f54cb97a 1567 __attribute__((malloc))
1568 __attribute__((warn_unused_result));
1569
4373e329 1570PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size)
f54cb97a 1571 __attribute__((malloc))
1572 __attribute__((warn_unused_result));
1573
4373e329 1574PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes)
f54cb97a 1575 __attribute__((malloc))
1576 __attribute__((warn_unused_result));
1577
1d7c1841 1578PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where);
cea2e8a9 1579#if defined(PERL_GLOBAL_STRUCT)
1d7c1841 1580PERL_CALLCONV struct perl_vars * Perl_GetVars(pTHX);
77304e85 1581PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX);
1582PERL_CALLCONV void Perl_free_global_struct(pTHX_ struct perl_vars*);
1d7c1841 1583#endif
1584PERL_CALLCONV int Perl_runops_standard(pTHX);
1585PERL_CALLCONV int Perl_runops_debug(pTHX);
894356b3 1586PERL_CALLCONV void Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...)
4373e329 1587 __attribute__format__(__printf__,pTHX_2,pTHX_3);
f54cb97a 1588
1d7c1841 1589PERL_CALLCONV void Perl_sv_vcatpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args);
1590PERL_CALLCONV void Perl_sv_catpv_mg(pTHX_ SV *sv, const char *ptr);
1591PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len);
1592PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dstr, SV *sstr);
894356b3 1593PERL_CALLCONV void Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...)
4373e329 1594 __attribute__format__(__printf__,pTHX_2,pTHX_3);
f54cb97a 1595
1d7c1841 1596PERL_CALLCONV void Perl_sv_vsetpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args);
1597PERL_CALLCONV void Perl_sv_setiv_mg(pTHX_ SV *sv, IV i);
db2b0bab 1598PERL_CALLCONV void Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv);
1d7c1841 1599PERL_CALLCONV void Perl_sv_setuv_mg(pTHX_ SV *sv, UV u);
1600PERL_CALLCONV void Perl_sv_setnv_mg(pTHX_ SV *sv, NV num);
1601PERL_CALLCONV void Perl_sv_setpv_mg(pTHX_ SV *sv, const char *ptr);
1602PERL_CALLCONV void Perl_sv_setpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len);
1603PERL_CALLCONV void Perl_sv_setsv_mg(pTHX_ SV *dstr, SV *sstr);
1604PERL_CALLCONV void Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len);
1605PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id);
e1ec3a88 1606PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim);
894356b3 1607PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...)
4373e329 1608 __attribute__format__(__printf__,pTHX_3,pTHX_4);
f54cb97a 1609
1d7c1841 1610PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args);
e1ec3a88 1611PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv);
1612PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv);
1613PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv);
6867be6d 1614PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim);
1615PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o);
1616PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm);
1d7c1841 1617PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim);
6867be6d 1618PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg);
1d7c1841 1619PERL_CALLCONV void Perl_reginitcolors(pTHX);
1620PERL_CALLCONV char* Perl_sv_2pv_nolen(pTHX_ SV* sv);
dc26be07 1621PERL_CALLCONV char* Perl_sv_2pvutf8_nolen(pTHX_ SV* sv);
1622PERL_CALLCONV char* Perl_sv_2pvbyte_nolen(pTHX_ SV* sv);
baca2b92 1623/* PERL_CALLCONV char* sv_pv(pTHX_ SV *sv); */
1624/* PERL_CALLCONV char* sv_pvutf8(pTHX_ SV *sv); */
1625/* PERL_CALLCONV char* sv_pvbyte(pTHX_ SV *sv); */
af3c7592 1626/* PERL_CALLCONV STRLEN sv_utf8_upgrade(pTHX_ SV *sv); */
560a288e 1627PERL_CALLCONV bool Perl_sv_utf8_downgrade(pTHX_ SV *sv, bool fail_ok);
1628PERL_CALLCONV void Perl_sv_utf8_encode(pTHX_ SV *sv);
1629PERL_CALLCONV bool Perl_sv_utf8_decode(pTHX_ SV *sv);
1d7c1841 1630PERL_CALLCONV void Perl_sv_force_normal(pTHX_ SV *sv);
840a7b70 1631PERL_CALLCONV void Perl_sv_force_normal_flags(pTHX_ SV *sv, U32 flags);
1d7c1841 1632PERL_CALLCONV void Perl_tmps_grow(pTHX_ I32 n);
1633PERL_CALLCONV SV* Perl_sv_rvweaken(pTHX_ SV *sv);
1634PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg);
1635PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block);
1636PERL_CALLCONV CV* Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block);
f54cb97a 1637PERL_CALLCONV void Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block)
1638 __attribute__((noreturn));
1639
4373e329 1640PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs)
3d42dc86 1641 __attribute__((nonnull(pTHX_1)));
f54cb97a 1642
1d7c1841 1643PERL_CALLCONV void Perl_boot_core_xsutils(pTHX);
1644#if defined(USE_ITHREADS)
8cf8f3d1 1645PERL_CALLCONV PERL_CONTEXT* Perl_cx_dup(pTHX_ PERL_CONTEXT* cx, I32 ix, I32 max, CLONE_PARAMS* param);
1646PERL_CALLCONV PERL_SI* Perl_si_dup(pTHX_ PERL_SI* si, CLONE_PARAMS* param);
1647PERL_CALLCONV ANY* Perl_ss_dup(pTHX_ PerlInterpreter* proto_perl, CLONE_PARAMS* param);
1d7c1841 1648PERL_CALLCONV void* Perl_any_dup(pTHX_ void* v, PerlInterpreter* proto_perl);
8cf8f3d1 1649PERL_CALLCONV HE* Perl_he_dup(pTHX_ HE* e, bool shared, CLONE_PARAMS* param);
1650PERL_CALLCONV REGEXP* Perl_re_dup(pTHX_ REGEXP* r, CLONE_PARAMS* param);
1651PERL_CALLCONV PerlIO* Perl_fp_dup(pTHX_ PerlIO* fp, char type, CLONE_PARAMS* param);
1d7c1841 1652PERL_CALLCONV DIR* Perl_dirp_dup(pTHX_ DIR* dp);
8cf8f3d1 1653PERL_CALLCONV GP* Perl_gp_dup(pTHX_ GP* gp, CLONE_PARAMS* param);
1654PERL_CALLCONV MAGIC* Perl_mg_dup(pTHX_ MAGIC* mg, CLONE_PARAMS* param);
1655PERL_CALLCONV SV* Perl_sv_dup(pTHX_ SV* sstr, CLONE_PARAMS* param);
6867be6d 1656PERL_CALLCONV void Perl_rvpv_dup(pTHX_ SV* dstr, SV *sstr, CLONE_PARAMS* param);
1d7c1841 1657#if defined(HAVE_INTERP_INTERN)
1658PERL_CALLCONV void Perl_sys_intern_dup(pTHX_ struct interp_intern* src, struct interp_intern* dst);
1659#endif
1660PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX);
4373e329 1661PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, void *sv)
3d42dc86 1662 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1663
4373e329 1664PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, void *oldsv, void *newsv)
3d42dc86 1665 __attribute__((nonnull(pTHX_1)));
f54cb97a 1666
4373e329 1667PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl)
3d42dc86 1668 __attribute__((nonnull(pTHX_1)));
f54cb97a 1669
690cf326 1670PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl);
1671PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl);
864dbfa3 1672#endif
3dbbd0f5 1673#if defined(HAVE_INTERP_INTERN)
1674PERL_CALLCONV void Perl_sys_intern_clear(pTHX);
1675PERL_CALLCONV void Perl_sys_intern_init(pTHX);
1676#endif
cae16f1a 1677
4373e329 1678PERL_CALLCONV char * Perl_custom_op_name(pTHX_ const OP* op)
3d42dc86 1679 __attribute__((nonnull(pTHX_1)));
f54cb97a 1680
4373e329 1681PERL_CALLCONV char * Perl_custom_op_desc(pTHX_ const OP* op)
3d42dc86 1682 __attribute__((nonnull(pTHX_1)));
cae16f1a 1683
f54cb97a 1684
765f542d 1685#if defined(PERL_COPY_ON_WRITE)
3c1e9986 1686PERL_CALLCONV int Perl_sv_release_IVX(pTHX_ SV *sv);
765f542d 1687#endif
1688
68795e93 1689PERL_CALLCONV void Perl_sv_nosharing(pTHX_ SV *);
1690PERL_CALLCONV void Perl_sv_nolocking(pTHX_ SV *);
1691PERL_CALLCONV void Perl_sv_nounlocking(pTHX_ SV *);
62375a60 1692PERL_CALLCONV int Perl_nothreadhook(pTHX);
1d7c1841 1693
1d7c1841 1694END_EXTERN_C
1d7c1841 1695
0cb96387 1696#if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT)
f54cb97a 1697STATIC I32 S_do_trans_simple(pTHX_ SV *sv)
1698 __attribute__((nonnull(pTHX_1)));
1699
1700STATIC I32 S_do_trans_count(pTHX_ SV *sv)
1701 __attribute__((nonnull(pTHX_1)));
1702
1703STATIC I32 S_do_trans_complex(pTHX_ SV *sv)
1704 __attribute__((nonnull(pTHX_1)));
1705
1706STATIC I32 S_do_trans_simple_utf8(pTHX_ SV *sv)
1707 __attribute__((nonnull(pTHX_1)));
1708
1709STATIC I32 S_do_trans_count_utf8(pTHX_ SV *sv)
1710 __attribute__((nonnull(pTHX_1)));
1711
1712STATIC I32 S_do_trans_complex_utf8(pTHX_ SV *sv)
1713 __attribute__((nonnull(pTHX_1)));
1714
cea2e8a9 1715#endif
1d7c1841 1716
0cb96387 1717#if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT)
cea2e8a9 1718STATIC void S_gv_init_sv(pTHX_ GV *gv, I32 sv_type);
a3b680e6 1719STATIC void S_require_errno(pTHX_ GV *gv)
1720 __attribute__((nonnull(pTHX_1)));
1721
864dbfa3 1722#endif
1d7c1841 1723
0cb96387 1724#if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT)
cea2e8a9 1725STATIC void S_hsplit(pTHX_ HV *hv);
1726STATIC void S_hfreeentries(pTHX_ HV *hv);
cea2e8a9 1727STATIC HE* S_new_he(pTHX);
1728STATIC void S_del_he(pTHX_ HE *p);
2393f1b9 1729STATIC HEK* S_save_hek_flags(pTHX_ const char *str, I32 len, U32 hash, int flags);
cea2e8a9 1730STATIC void S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store);
2393f1b9 1731STATIC void S_unshare_hek_or_pvn(pTHX_ HEK* hek, const char* sv, I32 len, U32 hash);
1732STATIC HEK* S_share_hek_flags(pTHX_ const char* sv, I32 len, U32 hash, int flags);
f54cb97a 1733STATIC void S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen, const char *msg)
1734 __attribute__((noreturn));
1735
864dbfa3 1736#endif
1d7c1841 1737
0cb96387 1738#if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT)
8fb26106 1739STATIC void S_save_magic(pTHX_ I32 mgs_ix, SV *sv);
e1ec3a88 1740STATIC int S_magic_methpack(pTHX_ SV *sv, const MAGIC *mg, const char *meth);
1741STATIC int S_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 f, int n, SV *val);
864dbfa3 1742#endif
1d7c1841 1743
0cb96387 1744#if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT)
6867be6d 1745STATIC I32 S_list_assignment(pTHX_ const OP *o);
1746STATIC void S_bad_type(pTHX_ I32 n, const char *t, const char *name, const OP *kid);
3eb57f73 1747STATIC void S_cop_free(pTHX_ COP *cop);
cea2e8a9 1748STATIC OP* S_modkids(pTHX_ OP *o, I32 type);
6867be6d 1749STATIC void S_no_bareword_allowed(pTHX_ const OP *o);
cea2e8a9 1750STATIC OP* S_no_fh_allowed(pTHX_ OP *o);
1751STATIC OP* S_scalarboolean(pTHX_ OP *o);
bfed75c6 1752STATIC OP* S_too_few_arguments(pTHX_ OP *o, const char* name);
1753STATIC OP* S_too_many_arguments(pTHX_ OP *o, const char* name);
cea2e8a9 1754STATIC OP* S_newDEFSVOP(pTHX);
1755STATIC OP* S_new_logop(pTHX_ I32 type, I32 flags, OP **firstp, OP **otherp);
1756STATIC void S_simplify_sort(pTHX_ OP *o);
6867be6d 1757STATIC bool S_is_handle_constructor(pTHX_ const OP *o, I32 argnum);
cea2e8a9 1758STATIC char* S_gv_ename(pTHX_ GV *gv);
6867be6d 1759STATIC bool S_scalar_mod_type(pTHX_ const OP *o, I32 type);
95f0a2f1 1760STATIC OP * S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp);
09bef843 1761STATIC OP * S_dup_attrlist(pTHX_ OP *o);
95f0a2f1 1762STATIC void S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs, bool for_my);
1763STATIC void S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp);
c7e45529 1764#endif
1765#if defined(PL_OP_SLAB_ALLOC)
1766PERL_CALLCONV void* Perl_Slab_Alloc(pTHX_ int m, size_t sz);
1767PERL_CALLCONV void Perl_Slab_Free(pTHX_ void *op);
864dbfa3 1768#endif
1d7c1841 1769
0cb96387 1770#if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT)
cea2e8a9 1771STATIC void S_find_beginning(pTHX);
e1ec3a88 1772STATIC void S_forbid_setid(pTHX_ const char * s);
dd374669 1773STATIC void S_incpush(pTHX_ const char *dir, bool addsubdirs, bool addoldvers, bool usesep, bool canrelocate);
cea2e8a9 1774STATIC void S_init_interp(pTHX);
1775STATIC void S_init_ids(pTHX);
cea2e8a9 1776STATIC void S_init_lexer(pTHX);
1777STATIC void S_init_main_stash(pTHX);
1778STATIC void S_init_perllib(pTHX);
1779STATIC void S_init_postdump_symbols(pTHX_ int, char **, char **);
1780STATIC void S_init_predump_symbols(pTHX);
f54cb97a 1781STATIC void S_my_exit_jump(pTHX)
1782 __attribute__((noreturn));
1783
cea2e8a9 1784STATIC void S_nuke_stacks(pTHX);
dd374669 1785STATIC void S_open_script(pTHX_ const char *scriptname, bool dosearch, SV *sv);
1786STATIC void S_usage(pTHX_ const char *name);
e1ec3a88 1787STATIC void S_validate_suid(pTHX_ const char *validarg, const char *scriptname);
cea2e8a9 1788# if defined(IAMSUID)
1789STATIC int S_fd_on_nosuid_fs(pTHX_ int fd);
1790# endif
14dd3ad8 1791STATIC void* S_parse_body(pTHX_ char **env, XSINIT_t xsinit);
f54cb97a 1792STATIC void S_run_body(pTHX_ I32 oldscope)
1793 __attribute__((noreturn));
1794
dd374669 1795STATIC void S_call_body(pTHX_ const OP *myop, bool is_eval);
14dd3ad8 1796STATIC void* S_call_list_body(pTHX_ CV *cv);
864dbfa3 1797#endif
1d7c1841 1798
0cb96387 1799#if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT)
cea2e8a9 1800STATIC SV* S_refto(pTHX_ SV* sv);
a6ec74c1 1801#endif
1802
1803#if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT)
f7fe979e 1804STATIC I32 S_unpack_rec(pTHX_ struct tempsym* symptr, const char *s, const char *strbeg, const char *strend, const char **new_s);
1805STATIC SV ** S_pack_rec(pTHX_ SV *cat, struct tempsym* symptr, SV **beglist, SV **endlist);
4373e329 1806STATIC SV* S_mul128(pTHX_ SV *sv, U8 m)
3d42dc86 1807 __attribute__((nonnull(pTHX_1)));
f54cb97a 1808
4373e329 1809STATIC I32 S_measure_struct(pTHX_ struct tempsym* symptr)
3d42dc86 1810 __attribute__((nonnull(pTHX_1)));
f54cb97a 1811
4373e329 1812STATIC bool S_next_symbol(pTHX_ struct tempsym* symptr)
3d42dc86 1813 __attribute__((nonnull(pTHX_1)));
f54cb97a 1814
4373e329 1815STATIC SV* S_is_an_int(pTHX_ const char *s, STRLEN l)
3d42dc86 1816 __attribute__((nonnull(pTHX_1)));
f54cb97a 1817
4373e329 1818STATIC int S_div128(pTHX_ SV *pnum, bool *done)
3d42dc86 1819 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1820
4373e329 1821STATIC const char * S_group_end(pTHX_ const char *pat, const char *patend, char ender)
3d42dc86 1822 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1823
4373e329 1824STATIC const char * S_get_num(pTHX_ const char *ppat, I32 *lenptr)
3d42dc86 1825 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 1826
864dbfa3 1827#endif
1d7c1841 1828
0cb96387 1829#if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT)
cea2e8a9 1830STATIC OP* S_docatch(pTHX_ OP *o);
14dd3ad8 1831STATIC void* S_docatch_body(pTHX);
bfed75c6 1832STATIC OP* S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit);
a1b95068 1833STATIC OP* S_doparseform(pTHX_ SV *sv);
1834STATIC bool S_num_overflow(NV value, I32 fldsize, I32 frcsize);
cea2e8a9 1835STATIC I32 S_dopoptoeval(pTHX_ I32 startingblock);
4373e329 1836STATIC I32 S_dopoptolabel(pTHX_ const char *label)
3d42dc86 1837 __attribute__((nonnull(pTHX_1)));
f54cb97a 1838
cea2e8a9 1839STATIC I32 S_dopoptoloop(pTHX_ I32 startingblock);
1840STATIC I32 S_dopoptosub(pTHX_ I32 startingblock);
1841STATIC I32 S_dopoptosub_at(pTHX_ PERL_CONTEXT* cxstk, I32 startingblock);
cea2e8a9 1842STATIC void S_save_lines(pTHX_ AV *array, SV *sv);
a3985cdc 1843STATIC OP* S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq);
7925835c 1844STATIC PerlIO * S_doopen_pm(pTHX_ const char *name, const char *mode);
4373e329 1845STATIC bool S_path_is_absolute(pTHX_ const char *name)
3d42dc86 1846 __attribute__((nonnull(pTHX_1)));
f54cb97a 1847
864dbfa3 1848#endif
1d7c1841 1849
0cb96387 1850#if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT)
10c8fecd 1851STATIC void S_do_oddball(pTHX_ HV *hash, SV **relem, SV **firstrelem);
cea2e8a9 1852STATIC CV* S_get_db_sub(pTHX_ SV **svp, CV *cv);
f5d5a27c 1853STATIC SV* S_method_common(pTHX_ SV* meth, U32* hashp);
864dbfa3 1854#endif
1d7c1841 1855
0cb96387 1856#if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT)
cea2e8a9 1857STATIC OP* S_doform(pTHX_ CV *cv, GV *gv, OP *retop);
7f4774ae 1858STATIC int S_emulate_eaccess(pTHX_ const char* path, Mode_t mode);
cea2e8a9 1859# if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
1860STATIC int S_dooneliner(pTHX_ char *cmd, char *filename);
1861# endif
864dbfa3 1862#endif
1d7c1841 1863
0cb96387 1864#if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT)
830247a4 1865STATIC regnode* S_reg(pTHX_ struct RExC_state_t*, I32, I32 *);
1866STATIC regnode* S_reganode(pTHX_ struct RExC_state_t*, U8, U32);
1867STATIC regnode* S_regatom(pTHX_ struct RExC_state_t*, I32 *);
1868STATIC regnode* S_regbranch(pTHX_ struct RExC_state_t*, I32 *, I32);
1869STATIC void S_reguni(pTHX_ struct RExC_state_t*, UV, char *, STRLEN*);
1870STATIC regnode* S_regclass(pTHX_ struct RExC_state_t*);
a3b680e6 1871STATIC I32 S_regcurly(pTHX_ const char *)
1872 __attribute__((warn_unused_result))
1873 __attribute__((nonnull(pTHX_1)));
1874
830247a4 1875STATIC regnode* S_reg_node(pTHX_ struct RExC_state_t*, U8);
1876STATIC regnode* S_regpiece(pTHX_ struct RExC_state_t*, I32 *);
1877STATIC void S_reginsert(pTHX_ struct RExC_state_t*, U8, regnode *);
1878STATIC void S_regoptail(pTHX_ struct RExC_state_t*, regnode *, regnode *);
1879STATIC void S_regtail(pTHX_ struct RExC_state_t*, regnode *, regnode *);
cea2e8a9 1880STATIC char* S_regwhite(pTHX_ char *, char *);
830247a4 1881STATIC char* S_nextchar(pTHX_ struct RExC_state_t*);
8fa7f367 1882# ifdef DEBUGGING
cea2e8a9 1883STATIC regnode* S_dumpuntil(pTHX_ regnode *start, regnode *node, regnode *last, SV* sv, I32 l);
1d7c1841 1884STATIC void S_put_byte(pTHX_ SV* sv, int c);
8fa7f367 1885# endif
830247a4 1886STATIC void S_scan_commit(pTHX_ struct RExC_state_t*, struct scan_data_t *data);
1887STATIC void S_cl_anything(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl);
1d7c1841 1888STATIC int S_cl_is_anything(pTHX_ struct regnode_charclass_class *cl);
830247a4 1889STATIC void S_cl_init(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl);
1890STATIC void S_cl_init_zero(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl);
1d7c1841 1891STATIC void S_cl_and(pTHX_ struct regnode_charclass_class *cl, struct regnode_charclass_class *and_with);
830247a4 1892STATIC void S_cl_or(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl, struct regnode_charclass_class *or_with);
a3621e74 1893STATIC I32 S_study_chunk(pTHX_ struct RExC_state_t*, regnode **scanp, I32 *deltap, regnode *last, struct scan_data_t *data, U32 flags, U32 depth);
bfed75c6 1894STATIC I32 S_add_data(pTHX_ struct RExC_state_t*, I32 n, const char *s);
f54cb97a 1895STATIC void S_re_croak2(pTHX_ const char* pat1, const char* pat2, ...)
1896 __attribute__((noreturn));
1897
830247a4 1898STATIC I32 S_regpposixcc(pTHX_ struct RExC_state_t*, I32 value);
1899STATIC void S_checkposixcc(pTHX_ struct RExC_state_t*);
a3621e74 1900
1901STATIC I32 S_make_trie(pTHX_ struct RExC_state_t*, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 flags);
864dbfa3 1902#endif
1d7c1841 1903
0cb96387 1904#if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT)
a3b680e6 1905STATIC I32 S_regmatch(pTHX_ regnode *prog)
1906 __attribute__((warn_unused_result))
1907 __attribute__((nonnull(pTHX_1)));
1908
1909STATIC I32 S_regrepeat(pTHX_ const regnode *p, I32 max)
1910 __attribute__((warn_unused_result))
1911 __attribute__((nonnull(pTHX_1)));
1912
1913STATIC I32 S_regrepeat_hard(pTHX_ regnode *p, I32 max, I32 *lp)
1914 __attribute__((warn_unused_result))
1915 __attribute__((nonnull(pTHX_1,pTHX_3)));
1916
1917STATIC I32 S_regtry(pTHX_ regexp *prog, char *startpos)
1918 __attribute__((warn_unused_result));
1919
1920STATIC bool S_reginclass(pTHX_ const regnode *n, const U8 *p, STRLEN *lenp, bool do_utf8sv_is_utf8)
1921 __attribute__((warn_unused_result))
1922 __attribute__((nonnull(pTHX_1,pTHX_2)));
1923
cea2e8a9 1924STATIC CHECKPOINT S_regcppush(pTHX_ I32 parenfloor);
1925STATIC char* S_regcppop(pTHX);
1926STATIC char* S_regcp_set_to(pTHX_ I32 ss);
1927STATIC void S_cache_re(pTHX_ regexp *prog);
a3b680e6 1928STATIC U8* S_reghop(pTHX_ U8 *pos, I32 off)
1929 __attribute__((warn_unused_result));
1930
1931STATIC U8* S_reghop3(pTHX_ U8 *pos, I32 off, U8 *lim)
1932 __attribute__((warn_unused_result));
1933
1934STATIC U8* S_reghopmaybe(pTHX_ U8 *pos, I32 off)
1935 __attribute__((warn_unused_result));
1936
1937STATIC U8* S_reghopmaybe3(pTHX_ U8 *pos, I32 off, U8 *lim)
1938 __attribute__((warn_unused_result))
1939 __attribute__((nonnull(pTHX_1,pTHX_3)));
1940
1941STATIC char* S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, const char *strend, I32 norun)
1942 __attribute__((warn_unused_result))
1943 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_4)));
1944
1945STATIC void S_to_utf8_substr(pTHX_ regexp * prog)
1946 __attribute__((nonnull(pTHX_1)));
1947
1948STATIC void S_to_byte_substr(pTHX_ regexp * prog)
1949 __attribute__((nonnull(pTHX_1)));
1950
864dbfa3 1951#endif
1d7c1841 1952
bd16a5f0 1953#if defined(PERL_IN_DUMP_C) || defined(PERL_DECL_PROT)
53a2efa2 1954STATIC CV* S_deb_curcv(pTHX_ I32 ix);
e1ec3a88 1955STATIC void S_debprof(pTHX_ const OP *o);
864dbfa3 1956#endif
1d7c1841 1957
0cb96387 1958#if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT)
cea2e8a9 1959STATIC SV* S_save_scalar_at(pTHX_ SV **sptr);
864dbfa3 1960#endif
1d7c1841 1961
0cb96387 1962#if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT)
cea2e8a9 1963STATIC IV S_asIV(pTHX_ SV* sv);
1964STATIC UV S_asUV(pTHX_ SV* sv);
cea2e8a9 1965STATIC XPVIV* S_new_xiv(pTHX);
1966STATIC XPVNV* S_new_xnv(pTHX);
1967STATIC XPV* S_new_xpv(pTHX);
932e9ff9 1968STATIC XPVIV* S_new_xpviv(pTHX);
1969STATIC XPVNV* S_new_xpvnv(pTHX);
1970STATIC XPVCV* S_new_xpvcv(pTHX);
1971STATIC XPVAV* S_new_xpvav(pTHX);
1972STATIC XPVHV* S_new_xpvhv(pTHX);
1973STATIC XPVMG* S_new_xpvmg(pTHX);
727879eb 1974STATIC XPVGV* S_new_xpvgv(pTHX);
932e9ff9 1975STATIC XPVLV* S_new_xpvlv(pTHX);
1976STATIC XPVBM* S_new_xpvbm(pTHX);
cea2e8a9 1977STATIC XRV* S_new_xrv(pTHX);
1978STATIC void S_del_xiv(pTHX_ XPVIV* p);
1979STATIC void S_del_xnv(pTHX_ XPVNV* p);
1980STATIC void S_del_xpv(pTHX_ XPV* p);
932e9ff9 1981STATIC void S_del_xpviv(pTHX_ XPVIV* p);
1982STATIC void S_del_xpvnv(pTHX_ XPVNV* p);
1983STATIC void S_del_xpvcv(pTHX_ XPVCV* p);
1984STATIC void S_del_xpvav(pTHX_ XPVAV* p);
1985STATIC void S_del_xpvhv(pTHX_ XPVHV* p);
1986STATIC void S_del_xpvmg(pTHX_ XPVMG* p);
727879eb 1987STATIC void S_del_xpvgv(pTHX_ XPVGV* p);
932e9ff9 1988STATIC void S_del_xpvlv(pTHX_ XPVLV* p);
1989STATIC void S_del_xpvbm(pTHX_ XPVBM* p);
cea2e8a9 1990STATIC void S_del_xrv(pTHX_ XRV* p);
1991STATIC void S_sv_unglob(pTHX_ SV* sv);
cea2e8a9 1992STATIC void S_not_a_number(pTHX_ SV *sv);
055972dc 1993STATIC I32 S_visit(pTHX_ SVFUNC_t f, U32 flags, U32 mask);
cea2e8a9 1994STATIC void S_sv_add_backref(pTHX_ SV *tsv, SV *sv);
1995STATIC void S_sv_del_backref(pTHX_ SV *sv);
a3b680e6 1996STATIC SV * S_varname(pTHX_ GV *gv, const char *gvtype, PADOFFSET targ, SV *keyname, I32 aindex, int subscript_type)
1997 __attribute__((nonnull(pTHX_2)));
1998
8fa7f367 1999# ifdef DEBUGGING
cea2e8a9 2000STATIC void S_del_sv(pTHX_ SV *p);
2001# endif
28e5dec8 2002# if !defined(NV_PRESERVES_UV)
28e5dec8 2003STATIC int S_sv_2iuv_non_preserve(pTHX_ SV *sv, I32 numtype);
2004# endif
a3b680e6 2005STATIC I32 S_expect_number(pTHX_ char** pattern)
2006 __attribute__((warn_unused_result))
2007 __attribute__((nonnull(pTHX_1)));
2008
9cbac4c7 2009#
2010# if defined(USE_ITHREADS)
59b40662 2011STATIC SV* S_gv_share(pTHX_ SV *sv, CLONE_PARAMS *param);
9cbac4c7 2012# endif
a3b680e6 2013STATIC bool S_utf8_mg_pos(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 *offsetp, I32 uoff, U8 **sp, U8 *start, U8 *send)
2014 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_5,pTHX_7,pTHX_8,pTHX_9)));
2015
2016STATIC bool S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 offsetp, U8 *s, U8 *start)
2017 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3,pTHX_6,pTHX_7)));
2018
765f542d 2019#if defined(PERL_COPY_ON_WRITE)
2020STATIC void S_sv_release_COW(pTHX_ SV *sv, char *pvx, STRLEN cur, STRLEN len, U32 hash, SV *after);
2021#endif
cea2e8a9 2022#endif
1d7c1841 2023
0cb96387 2024#if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT)
cea2e8a9 2025STATIC void S_check_uni(pTHX);
2026STATIC void S_force_next(pTHX_ I32 type);
e759cc13 2027STATIC char* S_force_version(pTHX_ char *start, int guessing);
cea2e8a9 2028STATIC char* S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack, int allow_tick);
2029STATIC SV* S_tokeq(pTHX_ SV *sv);
8eceec63 2030STATIC int S_pending_ident(pTHX);
f54cb97a 2031STATIC char* S_scan_const(pTHX_ char *start)
2032 __attribute__((nonnull(pTHX_1)));
2033
2034STATIC char* S_scan_formline(pTHX_ char *s)
2035 __attribute__((nonnull(pTHX_1)));
2036
2037STATIC char* S_scan_heredoc(pTHX_ char *s)
2038 __attribute__((nonnull(pTHX_1)));
2039
2040STATIC char* S_scan_ident(pTHX_ char *s, const char *send, char *dest, STRLEN destlen, I32 ck_uni)
2041 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
2042
cea2e8a9 2043STATIC char* S_scan_inputsymbol(pTHX_ char *start);
2044STATIC char* S_scan_pat(pTHX_ char *start, I32 type);
09bef843 2045STATIC char* S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims);
cea2e8a9 2046STATIC char* S_scan_subst(pTHX_ char *start);
2047STATIC char* S_scan_trans(pTHX_ char *start);
2048STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp);
2049STATIC char* S_skipspace(pTHX_ char *s);
78ae23f5 2050STATIC char* S_swallow_bom(pTHX_ U8 *s);
f54cb97a 2051STATIC void S_checkcomma(pTHX_ char *s, const char *name, const char *what)
2052 __attribute__((nonnull(pTHX_1,pTHX_2,pTHX_3)));
2053
bfed75c6 2054STATIC void S_force_ident(pTHX_ const char *s, int kind);
cea2e8a9 2055STATIC void S_incline(pTHX_ char *s);
2056STATIC int S_intuit_method(pTHX_ char *s, GV *gv);
2057STATIC int S_intuit_more(pTHX_ char *s);
1d7c1841 2058STATIC I32 S_lop(pTHX_ I32 f, int x, char *s);
f54cb97a 2059STATIC void S_missingterm(pTHX_ char *s)
2060 __attribute__((noreturn));
2061
bfed75c6 2062STATIC void S_no_op(pTHX_ const char *what, char *s);
cea2e8a9 2063STATIC void S_set_csh(pTHX);
2064STATIC I32 S_sublex_done(pTHX);
2065STATIC I32 S_sublex_push(pTHX);
2066STATIC I32 S_sublex_start(pTHX);
2067STATIC char * S_filter_gets(pTHX_ SV *sv, PerlIO *fp, STRLEN append);
7fc63493 2068STATIC HV * S_find_in_my_stash(pTHX_ const char *pkgname, I32 len);
2069STATIC SV* S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, SV *sv, SV *pv, const char *type);
8fa7f367 2070# if defined(DEBUGGING)
bfed75c6 2071STATIC int S_tokereport(pTHX_ const char *s, I32 rv);
8fa7f367 2072# endif
cea2e8a9 2073STATIC int S_ao(pTHX_ int toketype);
2074STATIC void S_depcom(pTHX);
bfed75c6 2075STATIC const char* S_incl_perldb(pTHX);
155aba94 2076#if 0
cea2e8a9 2077STATIC I32 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen);
2078STATIC I32 S_utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen);
155aba94 2079#endif
c39cd008 2080# if defined(PERL_CR_FILTER)
2081STATIC I32 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen);
cea2e8a9 2082# endif
864dbfa3 2083#endif
1d7c1841 2084
0cb96387 2085#if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT)
eb1102fc 2086STATIC SV* S_isa_lookup(pTHX_ HV *stash, const char *name, HV *name_stash, int len, int level);
864dbfa3 2087#endif
1d7c1841 2088
2d31dd6a 2089#if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT)
27da23d5 2090#if defined(USE_LOCALE_NUMERIC) || defined(USE_LOCALE_COLLATE)
ff4fed7c 2091STATIC char* S_stdize_locale(pTHX_ char* locs);
2d31dd6a 2092#endif
27da23d5 2093#endif
2d31dd6a 2094
2095#if defined(PERL_IN_UTIL_C) || defined(PERL_DECL_PROT)
d2f185dc 2096STATIC COP* S_closest_cop(pTHX_ COP *cop, OP *o);
cea2e8a9 2097STATIC SV* S_mess_alloc(pTHX);
864dbfa3 2098#endif
1d7c1841 2099
4801ca72 2100#if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT)
2101STATIC NV S_mulexp10(NV value, I32 exponent);
2102#endif
2103
902f5b58 2104START_EXTERN_C
2105
4373e329 2106PERL_CALLCONV void Perl_sv_setsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags)
3d42dc86 2107 __attribute__((nonnull(pTHX_1)));
f54cb97a 2108
4373e329 2109PERL_CALLCONV void Perl_sv_catpvn_flags(pTHX_ SV* sv, const char* ptr, STRLEN len, I32 flags)
3d42dc86 2110 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 2111
4373e329 2112PERL_CALLCONV void Perl_sv_catsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags)
3d42dc86 2113 __attribute__((nonnull(pTHX_1)));
f54cb97a 2114
4373e329 2115PERL_CALLCONV STRLEN Perl_sv_utf8_upgrade_flags(pTHX_ SV *sv, I32 flags)
3d42dc86 2116 __attribute__((nonnull(pTHX_1)));
f54cb97a 2117
4373e329 2118PERL_CALLCONV char* Perl_sv_pvn_force_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags)
3d42dc86 2119 __attribute__((nonnull(pTHX_2)));
f54cb97a 2120
4373e329 2121PERL_CALLCONV void Perl_sv_copypv(pTHX_ SV* dsv, SV* ssv)
3d42dc86 2122 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 2123
4373e329 2124PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value)
3d42dc86 2125 __attribute__((nonnull(pTHX_1,pTHX_2)));
f54cb97a 2126
706e3e0f 2127PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]);
ed252734 2128#ifdef PERL_COPY_ON_WRITE
3c1e9986 2129PERL_CALLCONV SV* Perl_sv_setsv_cow(pTHX_ SV* dsv, SV* ssv);
ed252734 2130#endif
902f5b58 2131
e87a358a 2132#if defined(USE_PERLIO) && !defined(USE_SFIO)
2133PERL_CALLCONV int Perl_PerlIO_close(pTHX_ PerlIO *);
2134PERL_CALLCONV int Perl_PerlIO_fill(pTHX_ PerlIO *);
2135PERL_CALLCONV int Perl_PerlIO_fileno(pTHX_ PerlIO *);
2136PERL_CALLCONV int Perl_PerlIO_eof(pTHX_ PerlIO *);
2137PERL_CALLCONV int Perl_PerlIO_error(pTHX_ PerlIO *);
2138PERL_CALLCONV int Perl_PerlIO_flush(pTHX_ PerlIO *);
2139PERL_CALLCONV void Perl_PerlIO_clearerr(pTHX_ PerlIO *);
2140PERL_CALLCONV void Perl_PerlIO_set_cnt(pTHX_ PerlIO *, int);
2141PERL_CALLCONV void Perl_PerlIO_set_ptrcnt(pTHX_ PerlIO *, STDCHAR *, int);
2142PERL_CALLCONV void Perl_PerlIO_setlinebuf(pTHX_ PerlIO *);
2143PERL_CALLCONV SSize_t Perl_PerlIO_read(pTHX_ PerlIO *, void *, Size_t);
2144PERL_CALLCONV SSize_t Perl_PerlIO_write(pTHX_ PerlIO *, const void *, Size_t);
2145PERL_CALLCONV SSize_t Perl_PerlIO_unread(pTHX_ PerlIO *, const void *, Size_t);
2146PERL_CALLCONV Off_t Perl_PerlIO_tell(pTHX_ PerlIO *);
2147PERL_CALLCONV int Perl_PerlIO_seek(pTHX_ PerlIO *, Off_t, int);
2148
2149PERL_CALLCONV STDCHAR * Perl_PerlIO_get_base(pTHX_ PerlIO *);
2150PERL_CALLCONV STDCHAR * Perl_PerlIO_get_ptr(pTHX_ PerlIO *);
2151PERL_CALLCONV int Perl_PerlIO_get_bufsiz(pTHX_ PerlIO *);
2152PERL_CALLCONV int Perl_PerlIO_get_cnt(pTHX_ PerlIO *);
2153
2154PERL_CALLCONV PerlIO * Perl_PerlIO_stdin(pTHX);
2155PERL_CALLCONV PerlIO * Perl_PerlIO_stdout(pTHX);
2156PERL_CALLCONV PerlIO * Perl_PerlIO_stderr(pTHX);
2157#endif /* PERLIO_LAYERS */
582ed04c 2158
d6721266 2159PERL_CALLCONV void Perl_deb_stack_all(pTHX);
2160#ifdef PERL_IN_DEB_C
3f46c5a6 2161STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32 mark_min, I32 mark_max);
d6721266 2162#endif
2163
c7c737cb 2164PERL_CALLCONV PADLIST* Perl_pad_new(pTHX_ int flags);
a3985cdc 2165PERL_CALLCONV void Perl_pad_undef(pTHX_ CV* cv);
4373e329 2166PERL_CALLCONV PADOFFSET Perl_pad_add_name(pTHX_ const char *name, HV* typestash, HV* ourstash, bool clone)
3d42dc86 2167 __attribute__((nonnull(pTHX_1)));
f54cb97a 2168
dd2155a4 2169PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ SV* sv, OPCODE op_type);
e1ec3a88 2170PERL_CALLCONV void Perl_pad_check_dup(pTHX_ const char* name, bool is_our, const HV* ourstash);
dd2155a4 2171#ifdef DEBUGGING
2172PERL_CALLCONV void Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv);
2173#endif
2174PERL_CALLCONV void Perl_pad_block_start(pTHX_ int full);
2175PERL_CALLCONV void Perl_pad_tidy(pTHX_ padtidy_type type);
2176PERL_CALLCONV void Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full);
2177PERL_CALLCONV void Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv);
2178
26019298 2179PERL_CALLCONV void Perl_pad_push(pTHX_ PADLIST *padlist, int depth);
857de280 2180PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po);
dd2155a4 2181
2182#if defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT)
e1ec3a88 2183STATIC PADOFFSET S_pad_findlex(pTHX_ const char *name, const CV* cv, U32 seq, int warn, SV** out_capture, SV** out_name_sv, int *out_flags);
dd2155a4 2184# if defined(DEBUGGING)
e1ec3a88 2185STATIC void S_cv_dump(pTHX_ const CV *cv, const char *title);
dd2155a4 2186# endif
dd2155a4 2187#endif
a3b680e6 2188PERL_CALLCONV CV* Perl_find_runcv(pTHX_ U32 *db_seqp)
2189 __attribute__((warn_unused_result));
2190
dd28f7bb 2191PERL_CALLCONV void Perl_free_tied_hv_pool(pTHX);
b4ab917c 2192#if defined(DEBUGGING)
e1ec3a88 2193PERL_CALLCONV int Perl_get_debug_opts(pTHX_ const char **s, bool givehelp);
b4ab917c 2194#endif
14f338dc 2195PERL_CALLCONV void Perl_save_set_svflags(pTHX_ SV* sv, U32 mask, U32 val);
ecae49c0 2196PERL_CALLCONV void Perl_hv_assert(pTHX_ HV* tb);
d6721266 2197
71596152 2198#if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT)
cd6d36ac 2199STATIC SV* S_hv_delete_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int k_flags, I32 d_flags, U32 hash);
b2c64049 2200STATIC HE* S_hv_fetch_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, int action, SV* val, U32 hash);
71596152 2201#endif
902f5b58 2202
3540d4ce 2203PERL_CALLCONV void Perl_hv_clear_placeholders(pTHX_ HV* hb);
2204
96adfaa1 2205PERL_CALLCONV SV* Perl_hv_scalar(pTHX_ HV* hv);
2206PERL_CALLCONV SV* Perl_magic_scalarpack(pTHX_ HV* hv, MAGIC* mg);
29489e7c 2207#ifdef PERL_IN_SV_C
2208STATIC SV* S_find_uninit_var(pTHX_ OP* obase, SV* uninit_sv, bool top);
2209#endif
96adfaa1 2210
1109a392 2211#ifdef PERL_NEED_MY_HTOLE16
2212PERL_CALLCONV U16 Perl_my_htole16(U16 n);
2213#endif
2214#ifdef PERL_NEED_MY_LETOH16
2215PERL_CALLCONV U16 Perl_my_letoh16(U16 n);
2216#endif
2217#ifdef PERL_NEED_MY_HTOBE16
2218PERL_CALLCONV U16 Perl_my_htobe16(U16 n);
2219#endif
2220#ifdef PERL_NEED_MY_BETOH16
2221PERL_CALLCONV U16 Perl_my_betoh16(U16 n);
2222#endif
2223#ifdef PERL_NEED_MY_HTOLE32
2224PERL_CALLCONV U32 Perl_my_htole32(U32 n);
2225#endif
2226#ifdef PERL_NEED_MY_LETOH32
2227PERL_CALLCONV U32 Perl_my_letoh32(U32 n);
2228#endif
2229#ifdef PERL_NEED_MY_HTOBE32
2230PERL_CALLCONV U32 Perl_my_htobe32(U32 n);
2231#endif
2232#ifdef PERL_NEED_MY_BETOH32
2233PERL_CALLCONV U32 Perl_my_betoh32(U32 n);
2234#endif
2235#ifdef PERL_NEED_MY_HTOLE64
2236PERL_CALLCONV U64 Perl_my_htole64(U64 n);
2237#endif
2238#ifdef PERL_NEED_MY_LETOH64
2239PERL_CALLCONV U64 Perl_my_letoh64(U64 n);
2240#endif
2241#ifdef PERL_NEED_MY_HTOBE64
2242PERL_CALLCONV U64 Perl_my_htobe64(U64 n);
2243#endif
2244#ifdef PERL_NEED_MY_BETOH64
2245PERL_CALLCONV U64 Perl_my_betoh64(U64 n);
2246#endif
2247
2248#ifdef PERL_NEED_MY_HTOLES
2249PERL_CALLCONV short Perl_my_htoles(short n);
2250#endif
2251#ifdef PERL_NEED_MY_LETOHS
2252PERL_CALLCONV short Perl_my_letohs(short n);
2253#endif
2254#ifdef PERL_NEED_MY_HTOBES
2255PERL_CALLCONV short Perl_my_htobes(short n);
2256#endif
2257#ifdef PERL_NEED_MY_BETOHS
2258PERL_CALLCONV short Perl_my_betohs(short n);
2259#endif
2260#ifdef PERL_NEED_MY_HTOLEI
2261PERL_CALLCONV int Perl_my_htolei(int n);
2262#endif
2263#ifdef PERL_NEED_MY_LETOHI
2264PERL_CALLCONV int Perl_my_letohi(int n);
2265#endif
2266#ifdef PERL_NEED_MY_HTOBEI
2267PERL_CALLCONV int Perl_my_htobei(int n);
2268#endif
2269#ifdef PERL_NEED_MY_BETOHI
2270PERL_CALLCONV int Perl_my_betohi(int n);
2271#endif
2272#ifdef PERL_NEED_MY_HTOLEL
2273PERL_CALLCONV long Perl_my_htolel(long n);
2274#endif
2275#ifdef PERL_NEED_MY_LETOHL
2276PERL_CALLCONV long Perl_my_letohl(long n);
2277#endif
2278#ifdef PERL_NEED_MY_HTOBEL
2279PERL_CALLCONV long Perl_my_htobel(long n);
2280#endif
2281#ifdef PERL_NEED_MY_BETOHL
2282PERL_CALLCONV long Perl_my_betohl(long n);
2283#endif
2284
2285PERL_CALLCONV void Perl_my_swabn(void* ptr, int n);
2286
7a5fd60d 2287PERL_CALLCONV GV* Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, I32 sv_type);
2288PERL_CALLCONV GV* Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, I32 sv_type);
2289PERL_CALLCONV bool Perl_is_gv_magical_sv(pTHX_ SV *name, U32 flags);
2290
2e0de35c 2291PERL_CALLCONV char* Perl_savesvpv(pTHX_ SV* sv);
2292
3540d4ce 2293END_EXTERN_C
37442d52 2294/* ex: set ro: */