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