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) | |
fb9bf107 NC |
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) |
23 | __attribute__nonnull__(1) | |
24 | __attribute__nonnull__(2) | |
25 | __attribute__nonnull__(3) | |
26 | __attribute__nonnull__(4) | |
27 | __attribute__nonnull__(5) | |
28 | __attribute__nonnull__(6) | |
29 | __attribute__nonnull__(7) | |
30 | __attribute__nonnull__(8) | |
31 | __attribute__nonnull__(9); | |
32 | ||
1d7c1841 | 33 | #endif |
b46bc2b6 | 34 | PERL_CALLCONV PerlInterpreter* perl_alloc(void); |
4373e329 | 35 | PERL_CALLCONV void perl_construct(PerlInterpreter* interp) |
abb2c242 | 36 | __attribute__nonnull__(1); |
f54cb97a | 37 | |
4373e329 | 38 | PERL_CALLCONV int perl_destruct(PerlInterpreter* interp) |
abb2c242 | 39 | __attribute__nonnull__(1); |
f54cb97a | 40 | |
4373e329 | 41 | PERL_CALLCONV void perl_free(PerlInterpreter* interp) |
abb2c242 | 42 | __attribute__nonnull__(1); |
f54cb97a | 43 | |
4373e329 | 44 | PERL_CALLCONV int perl_run(PerlInterpreter* interp) |
abb2c242 | 45 | __attribute__nonnull__(1); |
f54cb97a | 46 | |
fb9bf107 NC |
47 | PERL_CALLCONV int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env) |
48 | __attribute__nonnull__(1); | |
49 | ||
a28509cc AL |
50 | PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env) |
51 | __attribute__warn_unused_result__; | |
52 | ||
1d7c1841 | 53 | #if defined(USE_ITHREADS) |
fb9bf107 NC |
54 | PERL_CALLCONV PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags) |
55 | __attribute__nonnull__(1); | |
56 | ||
1d7c1841 | 57 | # if defined(PERL_IMPLICIT_SYS) |
fb9bf107 NC |
58 | 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) |
59 | __attribute__nonnull__(1) | |
60 | __attribute__nonnull__(3) | |
61 | __attribute__nonnull__(4) | |
62 | __attribute__nonnull__(5) | |
63 | __attribute__nonnull__(6) | |
64 | __attribute__nonnull__(7) | |
65 | __attribute__nonnull__(8) | |
66 | __attribute__nonnull__(9) | |
67 | __attribute__nonnull__(10) | |
68 | __attribute__nonnull__(11); | |
69 | ||
1d7c1841 GS |
70 | # endif |
71 | #endif | |
72 | ||
4373e329 | 73 | PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes) |
abb2c242 JH |
74 | __attribute__malloc__ |
75 | __attribute__warn_unused_result__; | |
f54cb97a | 76 | |
4373e329 | 77 | PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size) |
abb2c242 JH |
78 | __attribute__malloc__ |
79 | __attribute__warn_unused_result__; | |
f54cb97a | 80 | |
4373e329 | 81 | PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes) |
abb2c242 JH |
82 | __attribute__malloc__ |
83 | __attribute__warn_unused_result__; | |
f54cb97a | 84 | |
1d7c1841 | 85 | PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); |
cae6d0e5 | 86 | #if defined(MYMALLOC) |
b464bac0 | 87 | PERL_CALLCONV MEM_SIZE Perl_malloced_size(void *p) |
fb9bf107 NC |
88 | __attribute__warn_unused_result__ |
89 | __attribute__nonnull__(1); | |
b464bac0 | 90 | |
1d7c1841 GS |
91 | #endif |
92 | ||
255164ba DM |
93 | PERL_CALLCONV void* Perl_get_context(void) |
94 | __attribute__warn_unused_result__; | |
95 | ||
96 | PERL_CALLCONV void Perl_set_context(void *thx) | |
97 | __attribute__nonnull__(1); | |
98 | ||
ba869deb | 99 | |
1d7c1841 GS |
100 | END_EXTERN_C |
101 | ||
102 | /* functions with flag 'n' should come before here */ | |
1d7c1841 | 103 | START_EXTERN_C |
1d7c1841 | 104 | # include "pp_proto.h" |
46c461b5 AL |
105 | PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir) |
106 | __attribute__nonnull__(pTHX_1) | |
107 | __attribute__nonnull__(pTHX_2); | |
108 | ||
255164ba DM |
109 | PERL_CALLCONV bool Perl_Gv_AMupdate(pTHX_ HV* stash) |
110 | __attribute__nonnull__(pTHX_1); | |
111 | ||
112 | PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id) | |
113 | __attribute__warn_unused_result__; | |
114 | ||
115 | PERL_CALLCONV OP* Perl_append_elem(pTHX_ I32 optype, OP* first, OP* last); | |
1d7c1841 | 116 | PERL_CALLCONV OP* Perl_append_list(pTHX_ I32 optype, LISTOP* first, LISTOP* last); |
255164ba DM |
117 | PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp) |
118 | __attribute__nonnull__(pTHX_2) | |
119 | __attribute__nonnull__(pTHX_3); | |
120 | ||
121 | PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len) | |
122 | __attribute__nonnull__(pTHX_1) | |
123 | __attribute__nonnull__(pTHX_2) | |
124 | __attribute__nonnull__(pTHX_3); | |
125 | ||
1d7c1841 | 126 | PERL_CALLCONV void Perl_av_clear(pTHX_ AV* ar); |
1b6737cc | 127 | PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV* ar, I32 key, I32 flags); |
a3b680e6 | 128 | PERL_CALLCONV bool Perl_av_exists(pTHX_ AV* ar, I32 key) |
abb2c242 | 129 | __attribute__warn_unused_result__; |
a3b680e6 AL |
130 | |
131 | PERL_CALLCONV void Perl_av_extend(pTHX_ AV* ar, I32 key) | |
abb2c242 | 132 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
133 | |
134 | PERL_CALLCONV AV* Perl_av_fake(pTHX_ I32 size, SV** svp) | |
abb2c242 JH |
135 | __attribute__warn_unused_result__ |
136 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
137 | |
138 | PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV* ar, I32 key, I32 lval) | |
abb2c242 | 139 | __attribute__warn_unused_result__; |
a3b680e6 | 140 | |
255164ba DM |
141 | PERL_CALLCONV void Perl_av_fill(pTHX_ AV* ar, I32 fill) |
142 | __attribute__nonnull__(pTHX_1); | |
143 | ||
a3b680e6 | 144 | PERL_CALLCONV I32 Perl_av_len(pTHX_ const AV* ar) |
255164ba DM |
145 | __attribute__warn_unused_result__ |
146 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
147 | |
148 | PERL_CALLCONV AV* Perl_av_make(pTHX_ I32 size, SV** svp) | |
abb2c242 JH |
149 | __attribute__warn_unused_result__ |
150 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 151 | |
1b6737cc | 152 | PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV* ar); |
255164ba DM |
153 | PERL_CALLCONV void Perl_av_push(pTHX_ AV* ar, SV* val) |
154 | __attribute__nonnull__(pTHX_2); | |
155 | ||
156 | PERL_CALLCONV void Perl_av_reify(pTHX_ AV* ar) | |
157 | __attribute__nonnull__(pTHX_1); | |
158 | ||
a3b680e6 | 159 | PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV* ar) |
abb2c242 | 160 | __attribute__warn_unused_result__; |
a3b680e6 | 161 | |
1d7c1841 GS |
162 | PERL_CALLCONV SV** Perl_av_store(pTHX_ AV* ar, I32 key, SV* val); |
163 | PERL_CALLCONV void Perl_av_undef(pTHX_ AV* ar); | |
164 | PERL_CALLCONV void Perl_av_unshift(pTHX_ AV* ar, I32 num); | |
255164ba DM |
165 | PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV* av) |
166 | __attribute__nonnull__(pTHX_1); | |
167 | ||
a3b680e6 | 168 | PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP* left, OP* pat) |
abb2c242 JH |
169 | __attribute__warn_unused_result__ |
170 | __attribute__nonnull__(pTHX_2) | |
171 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
172 | |
173 | PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq) | |
6472dca1 | 174 | __attribute__warn_unused_result__; |
a3b680e6 AL |
175 | |
176 | PERL_CALLCONV I32 Perl_block_gimme(pTHX) | |
abb2c242 | 177 | __attribute__warn_unused_result__; |
a3b680e6 AL |
178 | |
179 | PERL_CALLCONV int Perl_block_start(pTHX_ int full) | |
abb2c242 | 180 | __attribute__warn_unused_result__; |
a3b680e6 | 181 | |
1d7c1841 | 182 | PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX); |
36ed5425 | 183 | PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); |
a3b680e6 | 184 | PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV* av_list) |
abb2c242 | 185 | __attribute__nonnull__(pTHX_2); |
a3b680e6 | 186 | |
4373e329 | 187 | PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, Uid_t effective, const Stat_t* statbufp) |
abb2c242 JH |
188 | __attribute__warn_unused_result__ |
189 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 190 | |
53c1dcc0 AL |
191 | PERL_CALLCONV U32 Perl_cast_ulong(pTHX_ NV f) |
192 | __attribute__warn_unused_result__; | |
193 | ||
194 | PERL_CALLCONV I32 Perl_cast_i32(pTHX_ NV f) | |
195 | __attribute__warn_unused_result__; | |
196 | ||
197 | PERL_CALLCONV IV Perl_cast_iv(pTHX_ NV f) | |
198 | __attribute__warn_unused_result__; | |
199 | ||
200 | PERL_CALLCONV UV Perl_cast_uv(pTHX_ NV f) | |
201 | __attribute__warn_unused_result__; | |
202 | ||
cea2e8a9 | 203 | #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP) |
53c1dcc0 AL |
204 | PERL_CALLCONV I32 Perl_my_chsize(pTHX_ int fd, Off_t length) |
205 | __attribute__warn_unused_result__; | |
206 | ||
cea2e8a9 | 207 | #endif |
53c1dcc0 AL |
208 | PERL_CALLCONV OP* Perl_convert(pTHX_ I32 optype, I32 flags, OP* o) |
209 | __attribute__warn_unused_result__; | |
210 | ||
f54cb97a | 211 | PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...) |
abb2c242 | 212 | __attribute__noreturn__ |
551405c4 | 213 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
f54cb97a AL |
214 | |
215 | PERL_CALLCONV void Perl_vcroak(pTHX_ const char* pat, va_list* args) | |
fb9bf107 NC |
216 | __attribute__noreturn__ |
217 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 218 | |
cea2e8a9 | 219 | #if defined(PERL_IMPLICIT_CONTEXT) |
f54cb97a | 220 | PERL_CALLCONV void Perl_croak_nocontext(const char* pat, ...) |
abb2c242 | 221 | __attribute__noreturn__ |
fb9bf107 NC |
222 | __attribute__format__(__printf__,1,2) |
223 | __attribute__nonnull__(1); | |
f54cb97a | 224 | |
894356b3 | 225 | PERL_CALLCONV OP* Perl_die_nocontext(const char* pat, ...) |
255164ba DM |
226 | __attribute__format__(__printf__,1,2) |
227 | __attribute__nonnull__(1); | |
f54cb97a | 228 | |
894356b3 | 229 | PERL_CALLCONV void Perl_deb_nocontext(const char* pat, ...) |
255164ba DM |
230 | __attribute__format__(__printf__,1,2) |
231 | __attribute__nonnull__(1); | |
f54cb97a | 232 | |
894356b3 | 233 | PERL_CALLCONV char* Perl_form_nocontext(const char* pat, ...) |
255164ba DM |
234 | __attribute__format__(__printf__,1,2) |
235 | __attribute__nonnull__(1); | |
236 | ||
237 | PERL_CALLCONV void Perl_load_module_nocontext(U32 flags, SV* name, SV* ver, ...) | |
238 | __attribute__nonnull__(2) | |
239 | __attribute__nonnull__(3); | |
f54cb97a | 240 | |
894356b3 | 241 | PERL_CALLCONV SV* Perl_mess_nocontext(const char* pat, ...) |
255164ba DM |
242 | __attribute__format__(__printf__,1,2) |
243 | __attribute__nonnull__(1); | |
f54cb97a | 244 | |
894356b3 | 245 | PERL_CALLCONV void Perl_warn_nocontext(const char* pat, ...) |
255164ba DM |
246 | __attribute__format__(__printf__,1,2) |
247 | __attribute__nonnull__(1); | |
f54cb97a | 248 | |
894356b3 | 249 | PERL_CALLCONV void Perl_warner_nocontext(U32 err, const char* pat, ...) |
255164ba DM |
250 | __attribute__format__(__printf__,2,3) |
251 | __attribute__nonnull__(2); | |
f54cb97a | 252 | |
894356b3 | 253 | PERL_CALLCONV SV* Perl_newSVpvf_nocontext(const char* pat, ...) |
255164ba DM |
254 | __attribute__format__(__printf__,1,2) |
255 | __attribute__nonnull__(1); | |
f54cb97a | 256 | |
894356b3 | 257 | PERL_CALLCONV void Perl_sv_catpvf_nocontext(SV* sv, const char* pat, ...) |
255164ba | 258 | __attribute__format__(__printf__,2,3) |
fb9bf107 NC |
259 | __attribute__nonnull__(1) |
260 | __attribute__nonnull__(2); | |
f54cb97a | 261 | |
894356b3 | 262 | PERL_CALLCONV void Perl_sv_setpvf_nocontext(SV* sv, const char* pat, ...) |
255164ba | 263 | __attribute__format__(__printf__,2,3) |
fb9bf107 NC |
264 | __attribute__nonnull__(1) |
265 | __attribute__nonnull__(2); | |
f54cb97a | 266 | |
894356b3 | 267 | PERL_CALLCONV void Perl_sv_catpvf_mg_nocontext(SV* sv, const char* pat, ...) |
255164ba | 268 | __attribute__format__(__printf__,2,3) |
fb9bf107 NC |
269 | __attribute__nonnull__(1) |
270 | __attribute__nonnull__(2); | |
f54cb97a | 271 | |
894356b3 | 272 | PERL_CALLCONV void Perl_sv_setpvf_mg_nocontext(SV* sv, const char* pat, ...) |
255164ba | 273 | __attribute__format__(__printf__,2,3) |
fb9bf107 NC |
274 | __attribute__nonnull__(1) |
275 | __attribute__nonnull__(2); | |
f54cb97a | 276 | |
894356b3 | 277 | PERL_CALLCONV int Perl_fprintf_nocontext(PerlIO* stream, const char* fmt, ...) |
255164ba DM |
278 | __attribute__format__(__printf__,2,3) |
279 | __attribute__nonnull__(1) | |
280 | __attribute__nonnull__(2); | |
f54cb97a | 281 | |
b0316773 | 282 | PERL_CALLCONV int Perl_printf_nocontext(const char* fmt, ...) |
255164ba DM |
283 | __attribute__format__(__printf__,1,2) |
284 | __attribute__nonnull__(1); | |
f54cb97a | 285 | |
0cb96387 | 286 | #endif |
a3b680e6 | 287 | PERL_CALLCONV void Perl_cv_ckproto(pTHX_ const CV* cv, const GV* gv, const char* p) |
abb2c242 | 288 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 289 | |
4373e329 | 290 | PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto) |
abb2c242 | 291 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 292 | |
255164ba DM |
293 | PERL_CALLCONV SV* Perl_cv_const_sv(pTHX_ CV* cv) |
294 | __attribute__warn_unused_result__; | |
295 | ||
296 | PERL_CALLCONV SV* Perl_op_const_sv(pTHX_ const OP* o, CV* cv) | |
297 | __attribute__warn_unused_result__; | |
298 | ||
299 | PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv) | |
300 | __attribute__nonnull__(pTHX_1); | |
301 | ||
302 | PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cx) | |
303 | __attribute__nonnull__(pTHX_1); | |
304 | ||
1d7c1841 | 305 | PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv); |
255164ba DM |
306 | PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp) |
307 | __attribute__nonnull__(pTHX_1); | |
308 | ||
309 | PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV* buffer, int maxlen) | |
310 | __attribute__warn_unused_result__ | |
311 | __attribute__nonnull__(pTHX_2); | |
312 | ||
4373e329 | 313 | PERL_CALLCONV char** Perl_get_op_descs(pTHX) |
abb2c242 JH |
314 | __attribute__warn_unused_result__ |
315 | __attribute__pure__; | |
f54cb97a | 316 | |
4373e329 | 317 | PERL_CALLCONV char** Perl_get_op_names(pTHX) |
abb2c242 JH |
318 | __attribute__warn_unused_result__ |
319 | __attribute__pure__; | |
f54cb97a | 320 | |
4373e329 | 321 | PERL_CALLCONV const char* Perl_get_no_modify(pTHX) |
abb2c242 JH |
322 | __attribute__warn_unused_result__ |
323 | __attribute__pure__; | |
f54cb97a | 324 | |
4373e329 | 325 | PERL_CALLCONV U32* Perl_get_opargs(pTHX) |
abb2c242 JH |
326 | __attribute__warn_unused_result__ |
327 | __attribute__pure__; | |
f54cb97a | 328 | |
4373e329 | 329 | PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX) |
abb2c242 JH |
330 | __attribute__warn_unused_result__ |
331 | __attribute__pure__; | |
f54cb97a | 332 | |
a3b680e6 | 333 | PERL_CALLCONV I32 Perl_cxinc(pTHX) |
abb2c242 | 334 | __attribute__warn_unused_result__; |
a3b680e6 | 335 | |
894356b3 | 336 | PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...) |
255164ba DM |
337 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
338 | __attribute__nonnull__(pTHX_1); | |
339 | ||
340 | PERL_CALLCONV void Perl_vdeb(pTHX_ const char* pat, va_list* args) | |
341 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 342 | |
1d7c1841 | 343 | PERL_CALLCONV void Perl_debprofdump(pTHX); |
4373e329 | 344 | PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o) |
abb2c242 | 345 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 346 | |
1d7c1841 GS |
347 | PERL_CALLCONV I32 Perl_debstack(pTHX); |
348 | PERL_CALLCONV I32 Perl_debstackptrs(pTHX); | |
4373e329 | 349 | PERL_CALLCONV char* Perl_delimcpy(pTHX_ char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen) |
abb2c242 JH |
350 | __attribute__nonnull__(pTHX_1) |
351 | __attribute__nonnull__(pTHX_2) | |
352 | __attribute__nonnull__(pTHX_3) | |
353 | __attribute__nonnull__(pTHX_4) | |
354 | __attribute__nonnull__(pTHX_6); | |
f54cb97a | 355 | |
4373e329 | 356 | PERL_CALLCONV void Perl_deprecate(pTHX_ const char* s) |
abb2c242 | 357 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 358 | |
4373e329 | 359 | PERL_CALLCONV void Perl_deprecate_old(pTHX_ const char* s) |
abb2c242 | 360 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 361 | |
894356b3 | 362 | PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...) |
c3bdd826 | 363 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
f54cb97a | 364 | |
1d7c1841 | 365 | PERL_CALLCONV OP* Perl_vdie(pTHX_ const char* pat, va_list* args); |
6472dca1 | 366 | PERL_CALLCONV OP* Perl_die_where(pTHX_ const char* message, STRLEN msglen); |
1d7c1841 | 367 | PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); |
255164ba DM |
368 | PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp) |
369 | __attribute__nonnull__(pTHX_2) | |
370 | __attribute__nonnull__(pTHX_3); | |
371 | ||
372 | PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int flag) | |
373 | __attribute__nonnull__(pTHX_2) | |
374 | __attribute__nonnull__(pTHX_3); | |
375 | ||
4373e329 | 376 | PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
abb2c242 | 377 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 378 | |
4373e329 | 379 | PERL_CALLCONV void Perl_do_chop(pTHX_ SV* asv, SV* sv) |
abb2c242 JH |
380 | __attribute__nonnull__(pTHX_1) |
381 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 382 | |
4373e329 | 383 | PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit) |
abb2c242 | 384 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 385 | |
4373e329 | 386 | PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv) |
abb2c242 | 387 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 388 | |
2fbb330f | 389 | PERL_CALLCONV bool Perl_do_exec(pTHX_ const char* cmd) |
abb2c242 | 390 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 391 | |
d8c40edc | 392 | #if defined(WIN32) || defined(__SYMBIAN32__) |
255164ba DM |
393 | PERL_CALLCONV int Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp) |
394 | __attribute__nonnull__(pTHX_1) | |
395 | __attribute__nonnull__(pTHX_2) | |
396 | __attribute__nonnull__(pTHX_3); | |
397 | ||
398 | PERL_CALLCONV int Perl_do_spawn(pTHX_ char* cmd) | |
399 | __attribute__nonnull__(pTHX_1); | |
400 | ||
401 | PERL_CALLCONV int Perl_do_spawn_nowait(pTHX_ char* cmd) | |
402 | __attribute__nonnull__(pTHX_1); | |
403 | ||
54725af6 | 404 | #endif |
864dbfa3 | 405 | #if !defined(WIN32) |
2fbb330f | 406 | PERL_CALLCONV bool Perl_do_exec3(pTHX_ const char* cmd, int fd, int flag) |
255164ba DM |
407 | __attribute__nonnull__(pTHX_1); |
408 | ||
864dbfa3 | 409 | #endif |
1d7c1841 | 410 | PERL_CALLCONV void Perl_do_execfree(pTHX); |
864dbfa3 | 411 | #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) |
fb9bf107 NC |
412 | PERL_CALLCONV I32 Perl_do_ipcctl(pTHX_ I32 optype, SV** mark, SV** sp) |
413 | __attribute__nonnull__(pTHX_2) | |
414 | __attribute__nonnull__(pTHX_3); | |
415 | ||
416 | PERL_CALLCONV I32 Perl_do_ipcget(pTHX_ I32 optype, SV** mark, SV** sp) | |
417 | __attribute__nonnull__(pTHX_2) | |
418 | __attribute__nonnull__(pTHX_3); | |
419 | ||
420 | PERL_CALLCONV I32 Perl_do_msgrcv(pTHX_ SV** mark, SV** sp) | |
421 | __attribute__nonnull__(pTHX_1) | |
422 | __attribute__nonnull__(pTHX_2); | |
423 | ||
424 | PERL_CALLCONV I32 Perl_do_msgsnd(pTHX_ SV** mark, SV** sp) | |
425 | __attribute__nonnull__(pTHX_1) | |
426 | __attribute__nonnull__(pTHX_2); | |
427 | ||
428 | PERL_CALLCONV I32 Perl_do_semop(pTHX_ SV** mark, SV** sp) | |
429 | __attribute__nonnull__(pTHX_1) | |
430 | __attribute__nonnull__(pTHX_2); | |
431 | ||
432 | PERL_CALLCONV I32 Perl_do_shmio(pTHX_ I32 optype, SV** mark, SV** sp) | |
433 | __attribute__nonnull__(pTHX_2) | |
434 | __attribute__nonnull__(pTHX_3); | |
435 | ||
0cb96387 | 436 | #endif |
f54cb97a | 437 | PERL_CALLCONV void Perl_do_join(pTHX_ SV* sv, SV* del, SV** mark, SV** sp) |
abb2c242 JH |
438 | __attribute__nonnull__(pTHX_1) |
439 | __attribute__nonnull__(pTHX_2) | |
440 | __attribute__nonnull__(pTHX_3) | |
441 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 442 | |
1d7c1841 | 443 | PERL_CALLCONV OP* Perl_do_kv(pTHX); |
2fbb330f | 444 | PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp) |
255164ba DM |
445 | __attribute__nonnull__(pTHX_1) |
446 | __attribute__nonnull__(pTHX_2); | |
447 | ||
2fbb330f | 448 | PERL_CALLCONV bool Perl_do_open9(pTHX_ GV *gv, const char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, I32 num) |
255164ba DM |
449 | __attribute__nonnull__(pTHX_1) |
450 | __attribute__nonnull__(pTHX_2) | |
451 | __attribute__nonnull__(pTHX_8); | |
452 | ||
2fbb330f | 453 | PERL_CALLCONV bool Perl_do_openn(pTHX_ GV *gv, const char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, I32 num) |
255164ba DM |
454 | __attribute__nonnull__(pTHX_1) |
455 | __attribute__nonnull__(pTHX_2); | |
456 | ||
457 | PERL_CALLCONV void Perl_do_pipe(pTHX_ SV* sv, GV* rgv, GV* wgv) | |
458 | __attribute__nonnull__(pTHX_1); | |
459 | ||
460 | PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp) | |
461 | __attribute__nonnull__(pTHX_2); | |
462 | ||
463 | PERL_CALLCONV OP* Perl_do_readline(pTHX) | |
464 | __attribute__warn_unused_result__; | |
465 | ||
466 | PERL_CALLCONV I32 Perl_do_chomp(pTHX_ SV* sv) | |
467 | __attribute__nonnull__(pTHX_1); | |
468 | ||
1d7c1841 | 469 | PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence); |
255164ba DM |
470 | PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, I32 len, SV** sarg) |
471 | __attribute__nonnull__(pTHX_1) | |
472 | __attribute__nonnull__(pTHX_3); | |
473 | ||
474 | PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence) | |
475 | __attribute__nonnull__(pTHX_1); | |
476 | ||
477 | PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv) | |
478 | __attribute__warn_unused_result__ | |
479 | __attribute__nonnull__(pTHX_1); | |
480 | ||
481 | PERL_CALLCONV I32 Perl_do_trans(pTHX_ SV* sv) | |
482 | __attribute__nonnull__(pTHX_1); | |
483 | ||
4373e329 | 484 | PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, I32 offset, I32 size) |
abb2c242 | 485 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 486 | |
4373e329 | 487 | PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv) |
abb2c242 | 488 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 489 | |
255164ba DM |
490 | PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right) |
491 | __attribute__nonnull__(pTHX_2) | |
492 | __attribute__nonnull__(pTHX_3) | |
493 | __attribute__nonnull__(pTHX_4); | |
494 | ||
850e8516 | 495 | PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term, I32 force_builtin) |
255164ba DM |
496 | __attribute__nonnull__(pTHX_1); |
497 | ||
498 | PERL_CALLCONV I32 Perl_dowantarray(pTHX) | |
499 | __attribute__warn_unused_result__; | |
500 | ||
1d7c1841 GS |
501 | PERL_CALLCONV void Perl_dump_all(pTHX); |
502 | PERL_CALLCONV void Perl_dump_eval(pTHX); | |
864dbfa3 | 503 | #if defined(DUMP_FDS) |
9a957fbc AL |
504 | PERL_CALLCONV void Perl_dump_fds(pTHX_ char* s) |
505 | __attribute__nonnull__(pTHX_1); | |
506 | ||
0cb96387 | 507 | #endif |
9a957fbc AL |
508 | PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv) |
509 | __attribute__nonnull__(pTHX_1); | |
510 | ||
255164ba DM |
511 | PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv) |
512 | __attribute__nonnull__(pTHX_1); | |
513 | ||
514 | PERL_CALLCONV void Perl_op_dump(pTHX_ const OP* arg) | |
515 | __attribute__nonnull__(pTHX_1); | |
516 | ||
1d7c1841 | 517 | PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm); |
9a957fbc AL |
518 | PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash) |
519 | __attribute__nonnull__(pTHX_1); | |
520 | ||
f54cb97a | 521 | PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv) |
abb2c242 | 522 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 523 | |
255164ba DM |
524 | PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags) |
525 | __attribute__nonnull__(pTHX_1); | |
526 | ||
527 | PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags) | |
528 | __attribute__warn_unused_result__ | |
529 | __attribute__nonnull__(pTHX_1) | |
530 | __attribute__nonnull__(pTHX_2) | |
531 | __attribute__nonnull__(pTHX_3); | |
532 | ||
fb9bf107 NC |
533 | PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char *const *const search_ext, I32 flags) |
534 | __attribute__nonnull__(pTHX_1); | |
535 | ||
2d03de9c | 536 | PERL_CALLCONV OP* Perl_force_list(pTHX_ OP* arg); |
4373e329 | 537 | PERL_CALLCONV OP* Perl_fold_constants(pTHX_ OP* arg) |
abb2c242 | 538 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 539 | |
894356b3 | 540 | PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...) |
aec46f14 AL |
541 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
542 | __attribute__nonnull__(pTHX_1); | |
543 | ||
544 | PERL_CALLCONV char* Perl_vform(pTHX_ const char* pat, va_list* args) | |
545 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 546 | |
1d7c1841 GS |
547 | PERL_CALLCONV void Perl_free_tmps(pTHX); |
548 | PERL_CALLCONV OP* Perl_gen_constant_list(pTHX_ OP* o); | |
864dbfa3 | 549 | #if !defined(HAS_GETENV_LEN) |
8772537c AL |
550 | PERL_CALLCONV char* Perl_getenv_len(pTHX_ const char* key, unsigned long *len) |
551 | __attribute__nonnull__(pTHX_1) | |
552 | __attribute__nonnull__(pTHX_2); | |
553 | ||
0cb96387 | 554 | #endif |
1d7c1841 GS |
555 | PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv); |
556 | PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp); | |
53c1dcc0 AL |
557 | PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV* gv) |
558 | __attribute__nonnull__(pTHX_1); | |
559 | ||
560 | PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV* gv) | |
561 | __attribute__nonnull__(pTHX_1); | |
562 | ||
563 | PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv) | |
564 | __attribute__nonnull__(pTHX_1); | |
565 | ||
a28509cc AL |
566 | PERL_CALLCONV GV* Perl_gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method) |
567 | __attribute__warn_unused_result__ | |
568 | __attribute__nonnull__(pTHX_2); | |
569 | ||
46c461b5 AL |
570 | PERL_CALLCONV void Perl_gv_check(pTHX_ HV* stash) |
571 | __attribute__nonnull__(pTHX_1); | |
572 | ||
573 | PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv) | |
574 | __attribute__nonnull__(pTHX_1) | |
575 | __attribute__nonnull__(pTHX_2); | |
576 | ||
577 | /* PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix) | |
578 | __attribute__nonnull__(pTHX_1) | |
579 | __attribute__nonnull__(pTHX_2); */ | |
580 | ||
581 | PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain) | |
582 | __attribute__nonnull__(pTHX_1) | |
583 | __attribute__nonnull__(pTHX_2); | |
584 | ||
53c1dcc0 AL |
585 | PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name) |
586 | __attribute__nonnull__(pTHX_1); | |
587 | ||
fb9bf107 NC |
588 | PERL_CALLCONV GV* Perl_gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level) |
589 | __attribute__nonnull__(pTHX_2); | |
590 | ||
591 | PERL_CALLCONV GV* Perl_gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level) | |
592 | __attribute__nonnull__(pTHX_2); | |
593 | ||
594 | PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name) | |
595 | __attribute__nonnull__(pTHX_2); | |
596 | ||
597 | PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload) | |
598 | __attribute__nonnull__(pTHX_2); | |
599 | ||
9a957fbc AL |
600 | PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char* name, I32 add, I32 sv_type) |
601 | __attribute__nonnull__(pTHX_1); | |
602 | ||
603 | PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv) | |
604 | __attribute__nonnull__(pTHX_1) | |
605 | __attribute__nonnull__(pTHX_2); | |
606 | ||
607 | /* PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix) | |
608 | __attribute__nonnull__(pTHX_1) | |
609 | __attribute__nonnull__(pTHX_2); */ | |
610 | ||
611 | PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain) | |
612 | __attribute__nonnull__(pTHX_1) | |
613 | __attribute__nonnull__(pTHX_2); | |
614 | ||
53c1dcc0 AL |
615 | PERL_CALLCONV void Perl_gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi) |
616 | __attribute__nonnull__(pTHX_1) | |
53c1dcc0 AL |
617 | __attribute__nonnull__(pTHX_3); |
618 | ||
aa924a5a SH |
619 | PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 create) |
620 | __attribute__nonnull__(pTHX_1); | |
621 | ||
622 | PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 create) | |
623 | __attribute__nonnull__(pTHX_1); | |
624 | ||
1d7c1841 GS |
625 | PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 create); |
626 | PERL_CALLCONV void Perl_hv_clear(pTHX_ HV* tb); | |
aa924a5a SH |
627 | PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV* hv, HE* entry) |
628 | __attribute__nonnull__(pTHX_1); | |
629 | ||
630 | PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV* tb, const char* key, I32 klen, I32 flags) | |
631 | __attribute__nonnull__(pTHX_2); | |
632 | ||
633 | PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV* tb, SV* key, I32 flags, U32 hash) | |
634 | __attribute__nonnull__(pTHX_2); | |
635 | ||
901017d6 | 636 | PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV* tb, const char* key, I32 klen) |
aa924a5a SH |
637 | __attribute__warn_unused_result__ |
638 | __attribute__nonnull__(pTHX_2); | |
901017d6 AL |
639 | |
640 | PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV* tb, SV* key, U32 hash) | |
aa924a5a SH |
641 | __attribute__warn_unused_result__ |
642 | __attribute__nonnull__(pTHX_2); | |
643 | ||
644 | PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV* tb, const char* key, I32 klen, I32 lval) | |
645 | __attribute__nonnull__(pTHX_2); | |
901017d6 | 646 | |
aa924a5a SH |
647 | PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV* tb, SV* key, I32 lval, U32 hash) |
648 | __attribute__nonnull__(pTHX_2); | |
649 | ||
650 | PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV* hv, HE* entryK) | |
abb2c242 | 651 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
652 | |
653 | PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV* tb) | |
abb2c242 | 654 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
655 | |
656 | PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen) | |
abb2c242 JH |
657 | __attribute__warn_unused_result__ |
658 | __attribute__nonnull__(pTHX_1) | |
659 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
660 | |
661 | PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry) | |
abb2c242 JH |
662 | __attribute__warn_unused_result__ |
663 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
664 | |
665 | PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV* tb) | |
abb2c242 JH |
666 | __attribute__warn_unused_result__ |
667 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
668 | |
669 | PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV* hv, char** key, I32* retlen) | |
abb2c242 JH |
670 | __attribute__warn_unused_result__ |
671 | __attribute__nonnull__(pTHX_1) | |
672 | __attribute__nonnull__(pTHX_2) | |
673 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
674 | |
675 | PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV* tb, I32 flags) | |
abb2c242 JH |
676 | __attribute__warn_unused_result__ |
677 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
678 | |
679 | PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV* tb, HE* entry) | |
abb2c242 JH |
680 | __attribute__warn_unused_result__ |
681 | __attribute__nonnull__(pTHX_1) | |
682 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
683 | |
684 | PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax) | |
abb2c242 | 685 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 686 | |
fb9bf107 NC |
687 | PERL_CALLCONV void Perl_hv_magic(pTHX_ HV* hv, GV* gv, int how) |
688 | __attribute__nonnull__(pTHX_1); | |
689 | ||
da58a35d | 690 | PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash); |
1d7c1841 | 691 | PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV* tb, SV* key, SV* val, U32 hash); |
e16e2ff8 | 692 | PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash, int flags); |
1d7c1841 | 693 | PERL_CALLCONV void Perl_hv_undef(pTHX_ HV* tb); |
4373e329 | 694 | PERL_CALLCONV I32 Perl_ibcmp(pTHX_ const char* a, const char* b, I32 len) |
abb2c242 JH |
695 | __attribute__pure__ |
696 | __attribute__nonnull__(pTHX_1) | |
697 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 698 | |
4373e329 | 699 | PERL_CALLCONV I32 Perl_ibcmp_locale(pTHX_ const char* a, const char* b, I32 len) |
abb2c242 JH |
700 | __attribute__pure__ |
701 | __attribute__nonnull__(pTHX_1) | |
702 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 703 | |
4373e329 | 704 | 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) |
abb2c242 JH |
705 | __attribute__nonnull__(pTHX_1) |
706 | __attribute__nonnull__(pTHX_5); | |
f54cb97a AL |
707 | |
708 | PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective) | |
abb2c242 | 709 | __attribute__warn_unused_result__; |
f54cb97a | 710 | |
4373e329 | 711 | PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv) |
abb2c242 | 712 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 713 | |
1d7c1841 GS |
714 | PERL_CALLCONV void Perl_init_debugger(pTHX); |
715 | PERL_CALLCONV void Perl_init_stacks(pTHX); | |
bfce84ec AL |
716 | PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm) |
717 | __attribute__nonnull__(pTHX_1); | |
718 | ||
1d7c1841 | 719 | PERL_CALLCONV U32 Perl_intro_my(pTHX); |
4373e329 | 720 | PERL_CALLCONV char* Perl_instr(pTHX_ const char* big, const char* little) |
b464bac0 | 721 | __attribute__warn_unused_result__ |
abb2c242 JH |
722 | __attribute__pure__ |
723 | __attribute__nonnull__(pTHX_1) | |
724 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 725 | |
b464bac0 AL |
726 | PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, bool not_implicit) |
727 | __attribute__warn_unused_result__ | |
728 | __attribute__nonnull__(pTHX_1); | |
729 | ||
730 | PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd) | |
731 | __attribute__warn_unused_result__; | |
732 | ||
f54cb97a | 733 | PERL_CALLCONV bool Perl_is_gv_magical(pTHX_ const char *name, STRLEN len, U32 flags) |
9d4ba2ae AL |
734 | __attribute__warn_unused_result__ |
735 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
736 | |
737 | PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX) | |
abb2c242 | 738 | __attribute__warn_unused_result__; |
f54cb97a AL |
739 | |
740 | PERL_CALLCONV U32 Perl_to_uni_upper_lc(pTHX_ U32 c) | |
abb2c242 JH |
741 | __attribute__warn_unused_result__ |
742 | __attribute__pure__; | |
f54cb97a AL |
743 | |
744 | PERL_CALLCONV U32 Perl_to_uni_title_lc(pTHX_ U32 c) | |
abb2c242 JH |
745 | __attribute__warn_unused_result__ |
746 | __attribute__pure__; | |
f54cb97a AL |
747 | |
748 | PERL_CALLCONV U32 Perl_to_uni_lower_lc(pTHX_ U32 c) | |
abb2c242 JH |
749 | __attribute__warn_unused_result__ |
750 | __attribute__pure__; | |
f54cb97a AL |
751 | |
752 | PERL_CALLCONV bool Perl_is_uni_alnum(pTHX_ UV c) | |
abb2c242 JH |
753 | __attribute__warn_unused_result__ |
754 | __attribute__pure__; | |
f54cb97a AL |
755 | |
756 | PERL_CALLCONV bool Perl_is_uni_alnumc(pTHX_ UV c) | |
abb2c242 JH |
757 | __attribute__warn_unused_result__ |
758 | __attribute__pure__; | |
f54cb97a AL |
759 | |
760 | PERL_CALLCONV bool Perl_is_uni_idfirst(pTHX_ UV c) | |
abb2c242 JH |
761 | __attribute__warn_unused_result__ |
762 | __attribute__pure__; | |
f54cb97a AL |
763 | |
764 | PERL_CALLCONV bool Perl_is_uni_alpha(pTHX_ UV c) | |
abb2c242 JH |
765 | __attribute__warn_unused_result__ |
766 | __attribute__pure__; | |
f54cb97a AL |
767 | |
768 | PERL_CALLCONV bool Perl_is_uni_ascii(pTHX_ UV c) | |
abb2c242 JH |
769 | __attribute__warn_unused_result__ |
770 | __attribute__pure__; | |
f54cb97a AL |
771 | |
772 | PERL_CALLCONV bool Perl_is_uni_space(pTHX_ UV c) | |
abb2c242 JH |
773 | __attribute__warn_unused_result__ |
774 | __attribute__pure__; | |
f54cb97a AL |
775 | |
776 | PERL_CALLCONV bool Perl_is_uni_cntrl(pTHX_ UV c) | |
abb2c242 JH |
777 | __attribute__warn_unused_result__ |
778 | __attribute__pure__; | |
f54cb97a AL |
779 | |
780 | PERL_CALLCONV bool Perl_is_uni_graph(pTHX_ UV c) | |
abb2c242 JH |
781 | __attribute__warn_unused_result__ |
782 | __attribute__pure__; | |
f54cb97a AL |
783 | |
784 | PERL_CALLCONV bool Perl_is_uni_digit(pTHX_ UV c) | |
abb2c242 JH |
785 | __attribute__warn_unused_result__ |
786 | __attribute__pure__; | |
f54cb97a AL |
787 | |
788 | PERL_CALLCONV bool Perl_is_uni_upper(pTHX_ UV c) | |
abb2c242 JH |
789 | __attribute__warn_unused_result__ |
790 | __attribute__pure__; | |
f54cb97a AL |
791 | |
792 | PERL_CALLCONV bool Perl_is_uni_lower(pTHX_ UV c) | |
abb2c242 JH |
793 | __attribute__warn_unused_result__ |
794 | __attribute__pure__; | |
f54cb97a AL |
795 | |
796 | PERL_CALLCONV bool Perl_is_uni_print(pTHX_ UV c) | |
abb2c242 JH |
797 | __attribute__warn_unused_result__ |
798 | __attribute__pure__; | |
f54cb97a AL |
799 | |
800 | PERL_CALLCONV bool Perl_is_uni_punct(pTHX_ UV c) | |
abb2c242 JH |
801 | __attribute__warn_unused_result__ |
802 | __attribute__pure__; | |
f54cb97a AL |
803 | |
804 | PERL_CALLCONV bool Perl_is_uni_xdigit(pTHX_ UV c) | |
abb2c242 JH |
805 | __attribute__warn_unused_result__ |
806 | __attribute__pure__; | |
f54cb97a | 807 | |
4373e329 | 808 | PERL_CALLCONV UV Perl_to_uni_upper(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
809 | __attribute__nonnull__(pTHX_2) |
810 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 811 | |
4373e329 | 812 | PERL_CALLCONV UV Perl_to_uni_title(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
813 | __attribute__nonnull__(pTHX_2) |
814 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 815 | |
4373e329 | 816 | PERL_CALLCONV UV Perl_to_uni_lower(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
817 | __attribute__nonnull__(pTHX_2) |
818 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 819 | |
4373e329 | 820 | PERL_CALLCONV UV Perl_to_uni_fold(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
821 | __attribute__nonnull__(pTHX_2) |
822 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
823 | |
824 | PERL_CALLCONV bool Perl_is_uni_alnum_lc(pTHX_ UV c) | |
abb2c242 JH |
825 | __attribute__warn_unused_result__ |
826 | __attribute__pure__; | |
f54cb97a AL |
827 | |
828 | PERL_CALLCONV bool Perl_is_uni_alnumc_lc(pTHX_ UV c) | |
abb2c242 JH |
829 | __attribute__warn_unused_result__ |
830 | __attribute__pure__; | |
f54cb97a AL |
831 | |
832 | PERL_CALLCONV bool Perl_is_uni_idfirst_lc(pTHX_ UV c) | |
abb2c242 JH |
833 | __attribute__warn_unused_result__ |
834 | __attribute__pure__; | |
f54cb97a AL |
835 | |
836 | PERL_CALLCONV bool Perl_is_uni_alpha_lc(pTHX_ UV c) | |
abb2c242 JH |
837 | __attribute__warn_unused_result__ |
838 | __attribute__pure__; | |
f54cb97a AL |
839 | |
840 | PERL_CALLCONV bool Perl_is_uni_ascii_lc(pTHX_ UV c) | |
abb2c242 JH |
841 | __attribute__warn_unused_result__ |
842 | __attribute__pure__; | |
f54cb97a AL |
843 | |
844 | PERL_CALLCONV bool Perl_is_uni_space_lc(pTHX_ UV c) | |
abb2c242 JH |
845 | __attribute__warn_unused_result__ |
846 | __attribute__pure__; | |
f54cb97a AL |
847 | |
848 | PERL_CALLCONV bool Perl_is_uni_cntrl_lc(pTHX_ UV c) | |
abb2c242 JH |
849 | __attribute__warn_unused_result__ |
850 | __attribute__pure__; | |
f54cb97a AL |
851 | |
852 | PERL_CALLCONV bool Perl_is_uni_graph_lc(pTHX_ UV c) | |
abb2c242 JH |
853 | __attribute__warn_unused_result__ |
854 | __attribute__pure__; | |
f54cb97a AL |
855 | |
856 | PERL_CALLCONV bool Perl_is_uni_digit_lc(pTHX_ UV c) | |
abb2c242 JH |
857 | __attribute__warn_unused_result__ |
858 | __attribute__pure__; | |
f54cb97a AL |
859 | |
860 | PERL_CALLCONV bool Perl_is_uni_upper_lc(pTHX_ UV c) | |
abb2c242 JH |
861 | __attribute__warn_unused_result__ |
862 | __attribute__pure__; | |
f54cb97a AL |
863 | |
864 | PERL_CALLCONV bool Perl_is_uni_lower_lc(pTHX_ UV c) | |
abb2c242 JH |
865 | __attribute__warn_unused_result__ |
866 | __attribute__pure__; | |
f54cb97a AL |
867 | |
868 | PERL_CALLCONV bool Perl_is_uni_print_lc(pTHX_ UV c) | |
abb2c242 JH |
869 | __attribute__warn_unused_result__ |
870 | __attribute__pure__; | |
f54cb97a AL |
871 | |
872 | PERL_CALLCONV bool Perl_is_uni_punct_lc(pTHX_ UV c) | |
abb2c242 JH |
873 | __attribute__warn_unused_result__ |
874 | __attribute__pure__; | |
f54cb97a AL |
875 | |
876 | PERL_CALLCONV bool Perl_is_uni_xdigit_lc(pTHX_ UV c) | |
abb2c242 JH |
877 | __attribute__warn_unused_result__ |
878 | __attribute__pure__; | |
f54cb97a | 879 | |
4373e329 | 880 | PERL_CALLCONV STRLEN Perl_is_utf8_char(pTHX_ const U8 *p) |
abb2c242 | 881 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 882 | |
4373e329 | 883 | PERL_CALLCONV bool Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len) |
abb2c242 | 884 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 885 | |
4373e329 | 886 | PERL_CALLCONV bool Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **p) |
768c67ee JH |
887 | __attribute__nonnull__(pTHX_1); |
888 | ||
889 | PERL_CALLCONV bool Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) | |
890 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 891 | |
4373e329 | 892 | PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p) |
1df70142 | 893 | __attribute__warn_unused_result__ |
abb2c242 | 894 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 895 | |
4373e329 | 896 | PERL_CALLCONV bool Perl_is_utf8_alnumc(pTHX_ const U8 *p) |
1df70142 | 897 | __attribute__warn_unused_result__ |
abb2c242 | 898 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 899 | |
4373e329 | 900 | PERL_CALLCONV bool Perl_is_utf8_idfirst(pTHX_ const U8 *p) |
1df70142 | 901 | __attribute__warn_unused_result__ |
abb2c242 | 902 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 903 | |
4373e329 | 904 | PERL_CALLCONV bool Perl_is_utf8_idcont(pTHX_ const U8 *p) |
1df70142 | 905 | __attribute__warn_unused_result__ |
abb2c242 | 906 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 907 | |
4373e329 | 908 | PERL_CALLCONV bool Perl_is_utf8_alpha(pTHX_ const U8 *p) |
1df70142 | 909 | __attribute__warn_unused_result__ |
abb2c242 | 910 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 911 | |
4373e329 | 912 | PERL_CALLCONV bool Perl_is_utf8_ascii(pTHX_ const U8 *p) |
1df70142 | 913 | __attribute__warn_unused_result__ |
abb2c242 | 914 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 915 | |
4373e329 | 916 | PERL_CALLCONV bool Perl_is_utf8_space(pTHX_ const U8 *p) |
1df70142 | 917 | __attribute__warn_unused_result__ |
abb2c242 | 918 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 919 | |
4373e329 | 920 | PERL_CALLCONV bool Perl_is_utf8_cntrl(pTHX_ const U8 *p) |
1df70142 | 921 | __attribute__warn_unused_result__ |
abb2c242 | 922 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 923 | |
4373e329 | 924 | PERL_CALLCONV bool Perl_is_utf8_digit(pTHX_ const U8 *p) |
1df70142 | 925 | __attribute__warn_unused_result__ |
abb2c242 | 926 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 927 | |
4373e329 | 928 | PERL_CALLCONV bool Perl_is_utf8_graph(pTHX_ const U8 *p) |
1df70142 | 929 | __attribute__warn_unused_result__ |
abb2c242 | 930 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 931 | |
4373e329 | 932 | PERL_CALLCONV bool Perl_is_utf8_upper(pTHX_ const U8 *p) |
1df70142 | 933 | __attribute__warn_unused_result__ |
abb2c242 | 934 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 935 | |
4373e329 | 936 | PERL_CALLCONV bool Perl_is_utf8_lower(pTHX_ const U8 *p) |
1df70142 | 937 | __attribute__warn_unused_result__ |
abb2c242 | 938 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 939 | |
4373e329 | 940 | PERL_CALLCONV bool Perl_is_utf8_print(pTHX_ const U8 *p) |
1df70142 | 941 | __attribute__warn_unused_result__ |
abb2c242 | 942 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 943 | |
4373e329 | 944 | PERL_CALLCONV bool Perl_is_utf8_punct(pTHX_ const U8 *p) |
1df70142 | 945 | __attribute__warn_unused_result__ |
abb2c242 | 946 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 947 | |
4373e329 | 948 | PERL_CALLCONV bool Perl_is_utf8_xdigit(pTHX_ const U8 *p) |
1df70142 | 949 | __attribute__warn_unused_result__ |
abb2c242 | 950 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 951 | |
4373e329 | 952 | PERL_CALLCONV bool Perl_is_utf8_mark(pTHX_ const U8 *p) |
1df70142 | 953 | __attribute__warn_unused_result__ |
abb2c242 | 954 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 955 | |
4373e329 | 956 | PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP* arg) |
abb2c242 | 957 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 958 | |
672994ce | 959 | PERL_CALLCONV I32 Perl_keyword(pTHX_ const char* d, I32 len) |
abb2c242 JH |
960 | __attribute__pure__ |
961 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 962 | |
1d7c1841 GS |
963 | PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base); |
964 | PERL_CALLCONV void Perl_lex_end(pTHX); | |
bfce84ec AL |
965 | PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line) |
966 | __attribute__nonnull__(pTHX_1); | |
967 | ||
aec46f14 AL |
968 | PERL_CALLCONV void Perl_op_null(pTHX_ OP* o) |
969 | __attribute__nonnull__(pTHX_1); | |
970 | ||
971 | PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o) | |
972 | __attribute__nonnull__(pTHX_1); | |
973 | ||
4026c95a SH |
974 | PERL_CALLCONV void Perl_op_refcnt_lock(pTHX); |
975 | PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX); | |
aec46f14 AL |
976 | PERL_CALLCONV OP* Perl_linklist(pTHX_ OP* o) |
977 | __attribute__nonnull__(pTHX_1); | |
978 | ||
1d7c1841 GS |
979 | PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); |
980 | PERL_CALLCONV OP* Perl_listkids(pTHX_ OP* o); | |
aec46f14 AL |
981 | PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...) |
982 | __attribute__nonnull__(pTHX_2); | |
983 | ||
984 | PERL_CALLCONV void Perl_vload_module(pTHX_ U32 flags, SV* name, SV* ver, va_list* args) | |
985 | __attribute__nonnull__(pTHX_2); | |
986 | ||
bfce84ec AL |
987 | PERL_CALLCONV OP* Perl_localize(pTHX_ OP* arg, I32 lexical) |
988 | __attribute__nonnull__(pTHX_1); | |
989 | ||
f54cb97a | 990 | PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV* sv) |
abb2c242 JH |
991 | __attribute__warn_unused_result__ |
992 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 993 | |
a3b680e6 | 994 | PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) |
abb2c242 JH |
995 | __attribute__nonnull__(pTHX_1) |
996 | __attribute__nonnull__(pTHX_2) | |
997 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 998 | |
a3b680e6 | 999 | PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) |
abb2c242 JH |
1000 | __attribute__nonnull__(pTHX_1) |
1001 | __attribute__nonnull__(pTHX_2) | |
1002 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1003 | |
1004 | PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep) | |
abb2c242 | 1005 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1006 | |
901017d6 | 1007 | PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) |
bfce84ec AL |
1008 | __attribute__warn_unused_result__ |
1009 | __attribute__nonnull__(pTHX_1) | |
1010 | __attribute__nonnull__(pTHX_2); | |
1011 | ||
1012 | PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) | |
fb9bf107 NC |
1013 | __attribute__nonnull__(pTHX_1) |
1014 | __attribute__nonnull__(pTHX_2) | |
1015 | __attribute__nonnull__(pTHX_3); | |
bfce84ec AL |
1016 | |
1017 | PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg) | |
1018 | __attribute__nonnull__(pTHX_1) | |
1019 | __attribute__nonnull__(pTHX_2); | |
1020 | ||
1021 | PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg) | |
1022 | __attribute__nonnull__(pTHX_1) | |
1023 | __attribute__nonnull__(pTHX_2); | |
1024 | ||
1025 | PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg) | |
1026 | __attribute__nonnull__(pTHX_1) | |
1027 | __attribute__nonnull__(pTHX_2); | |
1028 | ||
1029 | PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg) | |
1030 | __attribute__nonnull__(pTHX_1) | |
1031 | __attribute__nonnull__(pTHX_2); | |
1032 | ||
1033 | PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, MAGIC* mg) | |
1034 | __attribute__nonnull__(pTHX_1) | |
1035 | __attribute__nonnull__(pTHX_2); | |
1036 | ||
1037 | PERL_CALLCONV int Perl_magic_freeregexp(pTHX_ SV* sv, MAGIC* mg) | |
1038 | __attribute__nonnull__(pTHX_1) | |
1039 | __attribute__nonnull__(pTHX_2); | |
1040 | ||
1041 | PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg) | |
1042 | __attribute__nonnull__(pTHX_1) | |
1043 | __attribute__nonnull__(pTHX_2); | |
1044 | ||
1045 | PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg) | |
1046 | __attribute__nonnull__(pTHX_1) | |
1047 | __attribute__nonnull__(pTHX_2); | |
901017d6 | 1048 | |
8772537c AL |
1049 | PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg) |
1050 | __attribute__nonnull__(pTHX_1) | |
1051 | __attribute__nonnull__(pTHX_2); | |
1052 | ||
bfce84ec AL |
1053 | PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg) |
1054 | __attribute__nonnull__(pTHX_1) | |
1055 | __attribute__nonnull__(pTHX_2); | |
1056 | ||
1057 | PERL_CALLCONV int Perl_magic_getglob(pTHX_ SV* sv, MAGIC* mg) | |
1058 | __attribute__nonnull__(pTHX_1) | |
1059 | __attribute__nonnull__(pTHX_2); | |
1060 | ||
1061 | PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg) | |
1062 | __attribute__nonnull__(pTHX_1) | |
1063 | __attribute__nonnull__(pTHX_2); | |
1064 | ||
1065 | PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg) | |
1066 | __attribute__nonnull__(pTHX_1) | |
1067 | __attribute__nonnull__(pTHX_2); | |
1068 | ||
1069 | PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg) | |
1070 | __attribute__nonnull__(pTHX_1) | |
1071 | __attribute__nonnull__(pTHX_2); | |
1072 | ||
1073 | PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg) | |
1074 | __attribute__nonnull__(pTHX_1) | |
1075 | __attribute__nonnull__(pTHX_2); | |
1076 | ||
1077 | PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg) | |
1078 | __attribute__nonnull__(pTHX_1) | |
1079 | __attribute__nonnull__(pTHX_2); | |
1080 | ||
1081 | PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg) | |
1082 | __attribute__nonnull__(pTHX_1) | |
1083 | __attribute__nonnull__(pTHX_2); | |
1084 | ||
1085 | PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg) | |
1086 | __attribute__nonnull__(pTHX_1) | |
1087 | __attribute__nonnull__(pTHX_2); | |
1088 | ||
1089 | PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg) | |
1090 | __attribute__nonnull__(pTHX_1) | |
1091 | __attribute__nonnull__(pTHX_2); | |
1092 | ||
1093 | PERL_CALLCONV U32 Perl_magic_len(pTHX_ SV* sv, MAGIC* mg) | |
1094 | __attribute__nonnull__(pTHX_1) | |
1095 | __attribute__nonnull__(pTHX_2); | |
1096 | ||
1097 | PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV* sv, MAGIC* mg, SV* key) | |
1098 | __attribute__nonnull__(pTHX_1) | |
1099 | __attribute__nonnull__(pTHX_2) | |
1100 | __attribute__nonnull__(pTHX_3); | |
1101 | ||
1102 | PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg) | |
1103 | __attribute__nonnull__(pTHX_1) | |
1104 | __attribute__nonnull__(pTHX_2); | |
1105 | ||
1106 | PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg) | |
1107 | __attribute__nonnull__(pTHX_1) | |
1108 | __attribute__nonnull__(pTHX_2); | |
1109 | ||
f54cb97a | 1110 | PERL_CALLCONV int Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
1111 | __attribute__noreturn__ |
1112 | __attribute__nonnull__(pTHX_1) | |
1113 | __attribute__nonnull__(pTHX_2); | |
1114 | ||
1115 | PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg) | |
1116 | __attribute__nonnull__(pTHX_1) | |
1117 | __attribute__nonnull__(pTHX_2); | |
1118 | ||
1119 | PERL_CALLCONV int Perl_magic_setamagic(pTHX_ SV* sv, MAGIC* mg) | |
1120 | __attribute__nonnull__(pTHX_1) | |
1121 | __attribute__nonnull__(pTHX_2); | |
1122 | ||
1123 | PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg) | |
1124 | __attribute__nonnull__(pTHX_1) | |
1125 | __attribute__nonnull__(pTHX_2); | |
1126 | ||
1127 | PERL_CALLCONV int Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg) | |
1128 | __attribute__nonnull__(pTHX_1) | |
1129 | __attribute__nonnull__(pTHX_2); | |
1130 | ||
1131 | PERL_CALLCONV int Perl_magic_setbm(pTHX_ SV* sv, MAGIC* mg) | |
1132 | __attribute__nonnull__(pTHX_1) | |
1133 | __attribute__nonnull__(pTHX_2); | |
1134 | ||
1135 | PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg) | |
1136 | __attribute__nonnull__(pTHX_1) | |
1137 | __attribute__nonnull__(pTHX_2); | |
1138 | ||
1139 | PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg) | |
1140 | __attribute__nonnull__(pTHX_1) | |
1141 | __attribute__nonnull__(pTHX_2); | |
1142 | ||
1143 | PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg) | |
1144 | __attribute__nonnull__(pTHX_1) | |
1145 | __attribute__nonnull__(pTHX_2); | |
1146 | ||
1147 | PERL_CALLCONV int Perl_magic_setfm(pTHX_ SV* sv, MAGIC* mg) | |
1148 | __attribute__nonnull__(pTHX_1) | |
1149 | __attribute__nonnull__(pTHX_2); | |
1150 | ||
1151 | PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg) | |
1152 | __attribute__nonnull__(pTHX_1) | |
1153 | __attribute__nonnull__(pTHX_2); | |
1154 | ||
1155 | PERL_CALLCONV int Perl_magic_setglob(pTHX_ SV* sv, MAGIC* mg) | |
1156 | __attribute__nonnull__(pTHX_1) | |
1157 | __attribute__nonnull__(pTHX_2); | |
1158 | ||
1159 | PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg) | |
1160 | __attribute__nonnull__(pTHX_1) | |
1161 | __attribute__nonnull__(pTHX_2); | |
1162 | ||
1163 | PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg) | |
1164 | __attribute__nonnull__(pTHX_1) | |
1165 | __attribute__nonnull__(pTHX_2); | |
1166 | ||
1167 | PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg) | |
1168 | __attribute__nonnull__(pTHX_1) | |
1169 | __attribute__nonnull__(pTHX_2); | |
1170 | ||
1171 | PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg) | |
1172 | __attribute__nonnull__(pTHX_1) | |
1173 | __attribute__nonnull__(pTHX_2); | |
1174 | ||
1175 | PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg) | |
1176 | __attribute__nonnull__(pTHX_1) | |
1177 | __attribute__nonnull__(pTHX_2); | |
1178 | ||
1179 | PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg) | |
1180 | __attribute__nonnull__(pTHX_1) | |
1181 | __attribute__nonnull__(pTHX_2); | |
1182 | ||
1183 | PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg) | |
1184 | __attribute__nonnull__(pTHX_1) | |
1185 | __attribute__nonnull__(pTHX_2); | |
1186 | ||
1187 | PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg) | |
1188 | __attribute__nonnull__(pTHX_1) | |
1189 | __attribute__nonnull__(pTHX_2); | |
1190 | ||
1191 | PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg) | |
1192 | __attribute__nonnull__(pTHX_1) | |
1193 | __attribute__nonnull__(pTHX_2); | |
1194 | ||
1195 | PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg) | |
1196 | __attribute__nonnull__(pTHX_1) | |
1197 | __attribute__nonnull__(pTHX_2); | |
1198 | ||
1199 | PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg) | |
1200 | __attribute__nonnull__(pTHX_1) | |
1201 | __attribute__nonnull__(pTHX_2); | |
1202 | ||
1203 | PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg) | |
1204 | __attribute__nonnull__(pTHX_1) | |
1205 | __attribute__nonnull__(pTHX_2); | |
1206 | ||
1207 | PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg) | |
1208 | __attribute__nonnull__(pTHX_1) | |
1209 | __attribute__nonnull__(pTHX_2); | |
1210 | ||
1211 | PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg) | |
1212 | __attribute__nonnull__(pTHX_1) | |
1213 | __attribute__nonnull__(pTHX_2); | |
1214 | ||
1215 | PERL_CALLCONV void Perl_magicname(pTHX_ const char* sym, const char* name, I32 namlen) | |
1216 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1217 | |
1d7c1841 | 1218 | PERL_CALLCONV void Perl_markstack_grow(pTHX); |
864dbfa3 | 1219 | #if defined(USE_LOCALE_COLLATE) |
aa924a5a SH |
1220 | PERL_CALLCONV int Perl_magic_setcollxfrm(pTHX_ SV* sv, MAGIC* mg) |
1221 | __attribute__nonnull__(pTHX_1) | |
1222 | __attribute__nonnull__(pTHX_2); | |
1223 | ||
1224 | PERL_CALLCONV char* Perl_mem_collxfrm(pTHX_ const char* s, STRLEN len, STRLEN* xlen) | |
1225 | __attribute__nonnull__(pTHX_1) | |
1226 | __attribute__nonnull__(pTHX_3); | |
1227 | ||
0cb96387 | 1228 | #endif |
894356b3 | 1229 | PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...) |
aec46f14 AL |
1230 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
1231 | __attribute__nonnull__(pTHX_1); | |
1232 | ||
1233 | PERL_CALLCONV SV* Perl_vmess(pTHX_ const char* pat, va_list* args) | |
1234 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1235 | |
aa924a5a SH |
1236 | PERL_CALLCONV void Perl_qerror(pTHX_ SV* err) |
1237 | __attribute__nonnull__(pTHX_1); | |
1238 | ||
1239 | PERL_CALLCONV void Perl_sortsv(pTHX_ SV** array, size_t num_elts, SVCOMPARE_t cmp) | |
1240 | __attribute__nonnull__(pTHX_1); | |
1241 | ||
9a957fbc AL |
1242 | PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv) |
1243 | __attribute__nonnull__(pTHX_1); | |
1244 | ||
1245 | PERL_CALLCONV int Perl_mg_copy(pTHX_ SV* sv, SV* nsv, const char* key, I32 klen) | |
1246 | __attribute__nonnull__(pTHX_1) | |
1247 | __attribute__nonnull__(pTHX_2); | |
1248 | ||
1249 | PERL_CALLCONV void Perl_mg_localize(pTHX_ SV* sv, SV* nsv) | |
1250 | __attribute__nonnull__(pTHX_1) | |
1251 | __attribute__nonnull__(pTHX_2); | |
1252 | ||
255164ba DM |
1253 | PERL_CALLCONV MAGIC* Perl_mg_find(pTHX_ const SV* sv, int type) |
1254 | __attribute__warn_unused_result__; | |
1255 | ||
9a957fbc AL |
1256 | PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv) |
1257 | __attribute__nonnull__(pTHX_1); | |
1258 | ||
1259 | PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv) | |
1260 | __attribute__nonnull__(pTHX_1); | |
1261 | ||
1262 | PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv) | |
1263 | __attribute__nonnull__(pTHX_1); | |
1264 | ||
1265 | PERL_CALLCONV void Perl_mg_magical(pTHX_ SV* sv) | |
1266 | __attribute__nonnull__(pTHX_1); | |
1267 | ||
1268 | PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv) | |
1269 | __attribute__nonnull__(pTHX_1); | |
1270 | ||
1271 | PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv) | |
1272 | __attribute__nonnull__(pTHX_1); | |
1273 | ||
1274 | PERL_CALLCONV void Perl_mini_mktime(pTHX_ struct tm *pm) | |
1275 | __attribute__nonnull__(pTHX_1); | |
1276 | ||
1d7c1841 | 1277 | PERL_CALLCONV OP* Perl_mod(pTHX_ OP* o, I32 type); |
16fe6d59 | 1278 | PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ SV* discp); |
bfce84ec AL |
1279 | PERL_CALLCONV char* Perl_moreswitches(pTHX_ char* s) |
1280 | __attribute__nonnull__(pTHX_1); | |
1281 | ||
4373e329 | 1282 | PERL_CALLCONV OP* Perl_my(pTHX_ OP* o) |
abb2c242 | 1283 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1284 | |
4373e329 | 1285 | PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s) |
abb2c242 | 1286 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1287 | |
2253333f | 1288 | #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY)) |
4373e329 | 1289 | PERL_CALLCONV char* Perl_my_bcopy(const char* from, char* to, I32 len) |
abb2c242 JH |
1290 | __attribute__nonnull__(1) |
1291 | __attribute__nonnull__(2); | |
f54cb97a | 1292 | |
5f05dabc | 1293 | #endif |
a0d0e21e | 1294 | #if !defined(HAS_BZERO) && !defined(HAS_MEMSET) |
4373e329 | 1295 | PERL_CALLCONV char* Perl_my_bzero(char* loc, I32 len) |
abb2c242 | 1296 | __attribute__nonnull__(1); |
f54cb97a | 1297 | |
864dbfa3 | 1298 | #endif |
f54cb97a | 1299 | PERL_CALLCONV void Perl_my_exit(pTHX_ U32 status) |
abb2c242 | 1300 | __attribute__noreturn__; |
f54cb97a AL |
1301 | |
1302 | PERL_CALLCONV void Perl_my_failure_exit(pTHX) | |
abb2c242 | 1303 | __attribute__noreturn__; |
f54cb97a | 1304 | |
1d7c1841 | 1305 | PERL_CALLCONV I32 Perl_my_fflush_all(pTHX); |
52e18b1f GS |
1306 | PERL_CALLCONV Pid_t Perl_my_fork(void); |
1307 | PERL_CALLCONV void Perl_atfork_lock(void); | |
1308 | PERL_CALLCONV void Perl_atfork_unlock(void); | |
1d7c1841 | 1309 | PERL_CALLCONV I32 Perl_my_lstat(pTHX); |
5f05dabc | 1310 | #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP) |
4373e329 | 1311 | PERL_CALLCONV I32 Perl_my_memcmp(const char* s1, const char* s2, I32 len) |
abb2c242 JH |
1312 | __attribute__pure__ |
1313 | __attribute__nonnull__(1) | |
1314 | __attribute__nonnull__(2); | |
f54cb97a | 1315 | |
a0d0e21e | 1316 | #endif |
fc36a67e | 1317 | #if !defined(HAS_MEMSET) |
4373e329 | 1318 | PERL_CALLCONV void* Perl_my_memset(char* loc, I32 ch, I32 len) |
abb2c242 | 1319 | __attribute__nonnull__(1); |
f54cb97a | 1320 | |
864dbfa3 | 1321 | #endif |
1d7c1841 | 1322 | PERL_CALLCONV I32 Perl_my_pclose(pTHX_ PerlIO* ptr); |
bfce84ec AL |
1323 | PERL_CALLCONV PerlIO* Perl_my_popen(pTHX_ const char* cmd, const char* mode) |
1324 | __attribute__nonnull__(pTHX_1) | |
1325 | __attribute__nonnull__(pTHX_2); | |
1326 | ||
1327 | PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ char* mode, int n, SV ** args) | |
1328 | __attribute__nonnull__(pTHX_1) | |
1329 | __attribute__nonnull__(pTHX_3); | |
1330 | ||
e1ec3a88 | 1331 | PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val); |
1d7c1841 | 1332 | PERL_CALLCONV I32 Perl_my_stat(pTHX); |
bfce84ec AL |
1333 | 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) |
1334 | __attribute__nonnull__(pTHX_1); | |
1335 | ||
864dbfa3 | 1336 | #if defined(MYSWAP) |
4373e329 | 1337 | PERL_CALLCONV short Perl_my_swap(pTHX_ short s) |
abb2c242 JH |
1338 | __attribute__malloc__ |
1339 | __attribute__warn_unused_result__ | |
1340 | __attribute__pure__; | |
f54cb97a | 1341 | |
4373e329 | 1342 | PERL_CALLCONV long Perl_my_htonl(pTHX_ long l) |
abb2c242 JH |
1343 | __attribute__malloc__ |
1344 | __attribute__warn_unused_result__ | |
1345 | __attribute__pure__; | |
f54cb97a | 1346 | |
4373e329 | 1347 | PERL_CALLCONV long Perl_my_ntohl(pTHX_ long l) |
abb2c242 JH |
1348 | __attribute__malloc__ |
1349 | __attribute__warn_unused_result__ | |
1350 | __attribute__pure__; | |
f54cb97a | 1351 | |
0cb96387 | 1352 | #endif |
1d7c1841 | 1353 | PERL_CALLCONV void Perl_my_unexec(pTHX); |
f54cb97a | 1354 | PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o) |
abb2c242 JH |
1355 | __attribute__malloc__ |
1356 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1357 | |
1358 | PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o) | |
abb2c242 JH |
1359 | __attribute__malloc__ |
1360 | __attribute__warn_unused_result__; | |
f54cb97a | 1361 | |
1d7c1841 | 1362 | PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block); |
f54cb97a | 1363 | PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right) |
abb2c242 JH |
1364 | __attribute__malloc__ |
1365 | __attribute__warn_unused_result__; | |
f54cb97a | 1366 | |
aec46f14 | 1367 | PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop) |
abb2c242 | 1368 | __attribute__malloc__ |
aec46f14 AL |
1369 | __attribute__warn_unused_result__ |
1370 | __attribute__nonnull__(pTHX_2); | |
1371 | ||
9a957fbc | 1372 | PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv); |
1d7c1841 | 1373 | PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block); |
aa924a5a | 1374 | PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, char* label, line_t forline, OP* sv, OP* expr, OP* block, OP* cont) |
abb2c242 | 1375 | __attribute__malloc__ |
aa924a5a SH |
1376 | __attribute__warn_unused_result__ |
1377 | __attribute__nonnull__(pTHX_5); | |
f54cb97a AL |
1378 | |
1379 | PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP* left, OP* right) | |
abb2c242 | 1380 | __attribute__malloc__ |
aa924a5a SH |
1381 | __attribute__warn_unused_result__ |
1382 | __attribute__nonnull__(pTHX_3) | |
1383 | __attribute__nonnull__(pTHX_4); | |
f54cb97a AL |
1384 | |
1385 | PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label) | |
abb2c242 | 1386 | __attribute__malloc__ |
aa924a5a SH |
1387 | __attribute__warn_unused_result__ |
1388 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1389 | |
1390 | PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block) | |
abb2c242 JH |
1391 | __attribute__malloc__ |
1392 | __attribute__warn_unused_result__; | |
f54cb97a | 1393 | |
4373e329 | 1394 | PERL_CALLCONV OP* Perl_newNULLLIST(pTHX) |
abb2c242 JH |
1395 | __attribute__malloc__ |
1396 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1397 | |
1398 | PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags) | |
abb2c242 JH |
1399 | __attribute__malloc__ |
1400 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1401 | |
1402 | PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o) | |
abb2c242 | 1403 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1404 | |
1405 | PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right) | |
abb2c242 | 1406 | __attribute__malloc__ |
aa924a5a SH |
1407 | __attribute__warn_unused_result__ |
1408 | __attribute__nonnull__(pTHX_2) | |
1409 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1410 | |
1411 | PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop) | |
abb2c242 JH |
1412 | __attribute__malloc__ |
1413 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1414 | |
1415 | PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o) | |
abb2c242 JH |
1416 | __attribute__malloc__ |
1417 | __attribute__warn_unused_result__; | |
f54cb97a | 1418 | |
1d7c1841 | 1419 | PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block); |
4373e329 | 1420 | PERL_CALLCONV CV* Perl_newXS(pTHX_ const char* name, XSUBADDR_t f, const char* filename) |
abb2c242 | 1421 | __attribute__nonnull__(pTHX_1) |
9a957fbc | 1422 | __attribute__nonnull__(pTHX_2) |
abb2c242 | 1423 | __attribute__nonnull__(pTHX_3); |
f54cb97a AL |
1424 | |
1425 | PERL_CALLCONV AV* Perl_newAV(pTHX) | |
abb2c242 JH |
1426 | __attribute__malloc__ |
1427 | __attribute__warn_unused_result__; | |
f54cb97a | 1428 | |
4373e329 | 1429 | PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o) |
abb2c242 JH |
1430 | __attribute__malloc__ |
1431 | __attribute__warn_unused_result__ | |
1432 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1433 | |
1434 | PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 JH |
1435 | __attribute__malloc__ |
1436 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1437 | |
1438 | PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) | |
abb2c242 JH |
1439 | __attribute__malloc__ |
1440 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1441 | |
1442 | PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv) | |
abb2c242 | 1443 | __attribute__malloc__ |
2d03de9c AL |
1444 | __attribute__warn_unused_result__ |
1445 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1446 | |
1447 | PERL_CALLCONV GV* Perl_newGVgen(pTHX_ const char* pack) | |
abb2c242 | 1448 | __attribute__malloc__ |
aa924a5a SH |
1449 | __attribute__warn_unused_result__ |
1450 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1451 | |
1452 | PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) | |
abb2c242 JH |
1453 | __attribute__malloc__ |
1454 | __attribute__warn_unused_result__; | |
f54cb97a | 1455 | |
4373e329 | 1456 | PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o) |
abb2c242 JH |
1457 | __attribute__malloc__ |
1458 | __attribute__warn_unused_result__ | |
1459 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1460 | |
1461 | PERL_CALLCONV HV* Perl_newHV(pTHX) | |
abb2c242 JH |
1462 | __attribute__malloc__ |
1463 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1464 | |
1465 | PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV* hv) | |
abb2c242 JH |
1466 | __attribute__malloc__ |
1467 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1468 | |
1469 | PERL_CALLCONV IO* Perl_newIO(pTHX) | |
abb2c242 JH |
1470 | __attribute__malloc__ |
1471 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1472 | |
1473 | PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 JH |
1474 | __attribute__malloc__ |
1475 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1476 | |
1477 | PERL_CALLCONV OP* Perl_newPADOP(pTHX_ I32 type, I32 flags, SV* sv) | |
abb2c242 JH |
1478 | __attribute__malloc__ |
1479 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1480 | |
1481 | PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) | |
abb2c242 JH |
1482 | __attribute__malloc__ |
1483 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1484 | |
1485 | PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv) | |
abb2c242 JH |
1486 | __attribute__malloc__ |
1487 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1488 | |
1489 | PERL_CALLCONV SV* Perl_newRV(pTHX_ SV* pref) | |
abb2c242 | 1490 | __attribute__malloc__ |
66a1b24b AL |
1491 | __attribute__warn_unused_result__ |
1492 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1493 | |
4373e329 | 1494 | PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *sv) |
abb2c242 JH |
1495 | __attribute__malloc__ |
1496 | __attribute__warn_unused_result__ | |
1497 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1498 | |
1499 | PERL_CALLCONV SV* Perl_newSV(pTHX_ STRLEN len) | |
abb2c242 JH |
1500 | __attribute__malloc__ |
1501 | __attribute__warn_unused_result__; | |
f54cb97a | 1502 | |
4373e329 | 1503 | PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o) |
abb2c242 JH |
1504 | __attribute__malloc__ |
1505 | __attribute__warn_unused_result__ | |
1506 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1507 | |
4373e329 | 1508 | PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv) |
abb2c242 JH |
1509 | __attribute__malloc__ |
1510 | __attribute__warn_unused_result__ | |
1511 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1512 | |
1513 | PERL_CALLCONV SV* Perl_newSViv(pTHX_ IV i) | |
abb2c242 JH |
1514 | __attribute__malloc__ |
1515 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1516 | |
1517 | PERL_CALLCONV SV* Perl_newSVuv(pTHX_ UV u) | |
abb2c242 JH |
1518 | __attribute__malloc__ |
1519 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1520 | |
1521 | PERL_CALLCONV SV* Perl_newSVnv(pTHX_ NV n) | |
abb2c242 JH |
1522 | __attribute__malloc__ |
1523 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1524 | |
1525 | PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char* s, STRLEN len) | |
abb2c242 JH |
1526 | __attribute__malloc__ |
1527 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1528 | |
1529 | PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char* s, STRLEN len) | |
abb2c242 JH |
1530 | __attribute__malloc__ |
1531 | __attribute__warn_unused_result__; | |
f54cb97a | 1532 | |
c1b02ed8 NC |
1533 | PERL_CALLCONV SV* Perl_newSVhek(pTHX_ const HEK *hek) |
1534 | __attribute__malloc__ | |
1535 | __attribute__warn_unused_result__; | |
1536 | ||
f54cb97a | 1537 | PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash) |
abb2c242 JH |
1538 | __attribute__malloc__ |
1539 | __attribute__warn_unused_result__; | |
f54cb97a | 1540 | |
894356b3 | 1541 | PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char* pat, ...) |
abb2c242 JH |
1542 | __attribute__malloc__ |
1543 | __attribute__warn_unused_result__ | |
aec46f14 AL |
1544 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
1545 | __attribute__nonnull__(pTHX_1); | |
1546 | ||
1547 | PERL_CALLCONV SV* Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args) | |
1548 | __attribute__malloc__ | |
1549 | __attribute__warn_unused_result__ | |
1550 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1551 | |
f54cb97a | 1552 | PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV* rv, const char* classname) |
abb2c242 | 1553 | __attribute__malloc__ |
1b6737cc AL |
1554 | __attribute__warn_unused_result__ |
1555 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1556 | |
1557 | PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV* old) | |
abb2c242 JH |
1558 | __attribute__malloc__ |
1559 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1560 | |
1561 | PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first) | |
abb2c242 JH |
1562 | __attribute__malloc__ |
1563 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1564 | |
1565 | PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, I32 whileline, OP* expr, OP* block, OP* cont, I32 has_my) | |
abb2c242 JH |
1566 | __attribute__malloc__ |
1567 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1568 | |
1569 | PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) | |
abb2c242 JH |
1570 | __attribute__malloc__ |
1571 | __attribute__warn_unused_result__; | |
f54cb97a | 1572 | |
4373e329 | 1573 | PERL_CALLCONV char* Perl_scan_vstring(pTHX_ const char *vstr, SV *sv) |
abb2c242 JH |
1574 | __attribute__nonnull__(pTHX_1) |
1575 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1576 | |
9137345a | 1577 | PERL_CALLCONV const char* Perl_scan_version(pTHX_ const char *vstr, SV *sv, bool qv) |
abb2c242 JH |
1578 | __attribute__nonnull__(pTHX_1) |
1579 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1580 | |
2d03de9c AL |
1581 | PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver) |
1582 | __attribute__nonnull__(pTHX_1); | |
1583 | ||
1584 | PERL_CALLCONV SV* Perl_upg_version(pTHX_ SV *ver) | |
1585 | __attribute__nonnull__(pTHX_1); | |
1586 | ||
e0218a61 JP |
1587 | PERL_CALLCONV bool Perl_vverify(pTHX_ SV *vs) |
1588 | __attribute__nonnull__(pTHX_1); | |
1589 | ||
2d03de9c AL |
1590 | PERL_CALLCONV SV* Perl_vnumify(pTHX_ SV *vs) |
1591 | __attribute__nonnull__(pTHX_1); | |
1592 | ||
1593 | PERL_CALLCONV SV* Perl_vnormal(pTHX_ SV *vs) | |
1594 | __attribute__nonnull__(pTHX_1); | |
1595 | ||
1596 | PERL_CALLCONV SV* Perl_vstringify(pTHX_ SV *vs) | |
1597 | __attribute__nonnull__(pTHX_1); | |
1598 | ||
4373e329 | 1599 | PERL_CALLCONV int Perl_vcmp(pTHX_ SV *lvs, SV *rvs) |
abb2c242 JH |
1600 | __attribute__nonnull__(pTHX_1) |
1601 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1602 | |
2d03de9c AL |
1603 | PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv) |
1604 | __attribute__nonnull__(pTHX_1); | |
1605 | ||
4373e329 | 1606 | PERL_CALLCONV char* Perl_ninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend) |
2d03de9c AL |
1607 | __attribute__pure__ |
1608 | __attribute__nonnull__(pTHX_1) | |
1609 | __attribute__nonnull__(pTHX_2) | |
1610 | __attribute__nonnull__(pTHX_3) | |
1611 | __attribute__nonnull__(pTHX_4); | |
f54cb97a AL |
1612 | |
1613 | PERL_CALLCONV OP* Perl_oopsCV(pTHX_ OP* o) | |
2d03de9c AL |
1614 | __attribute__noreturn__ |
1615 | __attribute__nonnull__(pTHX_1); | |
1616 | ||
6472dca1 | 1617 | PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg); |
2d03de9c AL |
1618 | PERL_CALLCONV void Perl_package(pTHX_ OP* o) |
1619 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1620 | |
1d7c1841 | 1621 | PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype); |
4373e329 | 1622 | PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ char* name) |
abb2c242 | 1623 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1624 | |
4373e329 | 1625 | PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name) |
255164ba | 1626 | __attribute__warn_unused_result__ |
abb2c242 | 1627 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1628 | |
e1f795dc | 1629 | PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX); |
4373e329 | 1630 | PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o) |
1df70142 | 1631 | __attribute__warn_unused_result__ |
abb2c242 | 1632 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1633 | |
4373e329 | 1634 | PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o) |
1df70142 | 1635 | __attribute__warn_unused_result__ |
abb2c242 | 1636 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1637 | |
dd2155a4 | 1638 | PERL_CALLCONV void Perl_pad_leavemy(pTHX); |
1d7c1841 GS |
1639 | PERL_CALLCONV SV* Perl_pad_sv(pTHX_ PADOFFSET po); |
1640 | PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po); | |
1641 | PERL_CALLCONV void Perl_pad_reset(pTHX); | |
dd2155a4 | 1642 | PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust); |
1d7c1841 | 1643 | PERL_CALLCONV void Perl_peep(pTHX_ OP* o); |
2d03de9c AL |
1644 | PERL_CALLCONV PerlIO* Perl_start_glob(pTHX_ SV* pattern, IO *io) |
1645 | __attribute__nonnull__(pTHX_1) | |
1646 | __attribute__nonnull__(pTHX_2); | |
1647 | ||
59bd0823 | 1648 | #if defined(USE_REENTRANT_API) |
10bc17b6 | 1649 | PERL_CALLCONV void Perl_reentrant_size(pTHX); |
59bd0823 | 1650 | PERL_CALLCONV void Perl_reentrant_init(pTHX); |
10bc17b6 | 1651 | PERL_CALLCONV void Perl_reentrant_free(pTHX); |
fb9bf107 NC |
1652 | PERL_CALLCONV void* Perl_reentrant_retry(const char*, ...) |
1653 | __attribute__nonnull__(1); | |
1654 | ||
59bd0823 | 1655 | #endif |
1d7c1841 | 1656 | PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr); |
4373e329 | 1657 | PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv) |
abb2c242 JH |
1658 | __attribute__nonnull__(pTHX_1) |
1659 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 1660 | |
4373e329 | 1661 | PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags) |
abb2c242 | 1662 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1663 | |
4373e329 | 1664 | PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags) |
abb2c242 | 1665 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1666 | |
aec46f14 AL |
1667 | PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, I32 flags) |
1668 | __attribute__nonnull__(pTHX_1); | |
1669 | ||
ce08f86c | 1670 | PERL_CALLCONV void Perl_despatch_signals(pTHX); |
e4c5ccf3 RH |
1671 | PERL_CALLCONV OP * Perl_doref(pTHX_ OP *o, I32 type, bool set_op_ref) |
1672 | __attribute__nonnull__(pTHX_1); | |
1673 | ||
4373e329 | 1674 | PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error) |
abb2c242 | 1675 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1676 | |
4373e329 | 1677 | PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags) |
abb2c242 | 1678 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1679 | |
4373e329 | 1680 | PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char* name, I32 create) |
abb2c242 | 1681 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1682 | |
4373e329 | 1683 | PERL_CALLCONV AV* Perl_get_av(pTHX_ const char* name, I32 create) |
255164ba DM |
1684 | __attribute__nonnull__(pTHX_1); |
1685 | ||
1686 | PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char* name, I32 create) | |
255164ba DM |
1687 | __attribute__nonnull__(pTHX_1); |
1688 | ||
1689 | PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 create) | |
abb2c242 | 1690 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1691 | |
1d7c1841 GS |
1692 | PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |
1693 | PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn); | |
8772537c AL |
1694 | PERL_CALLCONV void Perl_new_collate(pTHX_ const char* newcoll); |
1695 | PERL_CALLCONV void Perl_new_ctype(pTHX_ const char* newctype) | |
abb2c242 | 1696 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1697 | |
8772537c | 1698 | PERL_CALLCONV void Perl_new_numeric(pTHX_ const char* newcoll); |
1d7c1841 GS |
1699 | PERL_CALLCONV void Perl_set_numeric_local(pTHX); |
1700 | PERL_CALLCONV void Perl_set_numeric_radix(pTHX); | |
1701 | PERL_CALLCONV void Perl_set_numeric_standard(pTHX); | |
4373e329 | 1702 | PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv) |
abb2c242 | 1703 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1704 | |
2d03de9c AL |
1705 | 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) |
1706 | __attribute__nonnull__(pTHX_1) | |
1707 | __attribute__nonnull__(pTHX_2) | |
1708 | __attribute__nonnull__(pTHX_3) | |
1709 | __attribute__nonnull__(pTHX_4) | |
1710 | __attribute__nonnull__(pTHX_5) | |
1711 | __attribute__nonnull__(pTHX_6); | |
1712 | ||
1713 | PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist) | |
1714 | __attribute__nonnull__(pTHX_1) | |
1715 | __attribute__nonnull__(pTHX_2) | |
1716 | __attribute__nonnull__(pTHX_3) | |
1717 | __attribute__nonnull__(pTHX_4) | |
1718 | __attribute__nonnull__(pTHX_5); | |
1719 | ||
1d7c1841 | 1720 | PERL_CALLCONV void Perl_pidgone(pTHX_ Pid_t pid, int status); |
4373e329 | 1721 | PERL_CALLCONV void Perl_pmflag(pTHX_ U32* pmfl, int ch) |
abb2c242 | 1722 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1723 | |
4373e329 | 1724 | PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP* pm, OP* expr, bool isreg) |
abb2c242 JH |
1725 | __attribute__nonnull__(pTHX_1) |
1726 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1727 | |
4373e329 | 1728 | PERL_CALLCONV OP* Perl_pmtrans(pTHX_ OP* o, OP* expr, OP* repl) |
abb2c242 | 1729 | __attribute__nonnull__(pTHX_1) |
2d03de9c AL |
1730 | __attribute__nonnull__(pTHX_2) |
1731 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 1732 | |
1d7c1841 GS |
1733 | PERL_CALLCONV void Perl_pop_scope(pTHX); |
1734 | PERL_CALLCONV OP* Perl_prepend_elem(pTHX_ I32 optype, OP* head, OP* tail); | |
1d7c1841 | 1735 | PERL_CALLCONV void Perl_push_scope(pTHX); |
e4c5ccf3 | 1736 | /* PERL_CALLCONV OP* ref(pTHX_ OP* o, I32 type); */ |
1d7c1841 | 1737 | PERL_CALLCONV OP* Perl_refkids(pTHX_ OP* o, I32 type); |
4373e329 | 1738 | PERL_CALLCONV void Perl_regdump(pTHX_ regexp* r) |
abb2c242 | 1739 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1740 | |
2d03de9c AL |
1741 | PERL_CALLCONV SV* Perl_regclass_swash(pTHX_ const struct regnode *n, bool doinit, SV **listsvp, SV **altsvp) |
1742 | __attribute__nonnull__(pTHX_1); | |
1743 | ||
4373e329 | 1744 | PERL_CALLCONV I32 Perl_pregexec(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, U32 nosave) |
abb2c242 JH |
1745 | __attribute__nonnull__(pTHX_1) |
1746 | __attribute__nonnull__(pTHX_2) | |
1747 | __attribute__nonnull__(pTHX_3) | |
1748 | __attribute__nonnull__(pTHX_4) | |
1749 | __attribute__nonnull__(pTHX_6); | |
f54cb97a | 1750 | |
1d7c1841 | 1751 | PERL_CALLCONV void Perl_pregfree(pTHX_ struct regexp* r); |
4373e329 | 1752 | PERL_CALLCONV regexp* Perl_pregcomp(pTHX_ char* exp, char* xend, PMOP* pm) |
abb2c242 JH |
1753 | __attribute__nonnull__(pTHX_1) |
1754 | __attribute__nonnull__(pTHX_2) | |
1755 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 1756 | |
2d03de9c AL |
1757 | 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) |
1758 | __attribute__nonnull__(pTHX_1) | |
1759 | __attribute__nonnull__(pTHX_3) | |
1760 | __attribute__nonnull__(pTHX_4); | |
1761 | ||
1762 | PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ regexp* prog) | |
1763 | __attribute__nonnull__(pTHX_1); | |
1764 | ||
a3b680e6 | 1765 | PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, void* data, U32 flags) |
abb2c242 JH |
1766 | __attribute__nonnull__(pTHX_1) |
1767 | __attribute__nonnull__(pTHX_2) | |
1768 | __attribute__nonnull__(pTHX_3) | |
fb9bf107 NC |
1769 | __attribute__nonnull__(pTHX_4) |
1770 | __attribute__nonnull__(pTHX_6); | |
a3b680e6 | 1771 | |
1df70142 AL |
1772 | PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) |
1773 | __attribute__warn_unused_result__ | |
1774 | __attribute__nonnull__(pTHX_1); | |
1775 | ||
2d03de9c AL |
1776 | PERL_CALLCONV void Perl_regprop(pTHX_ SV* sv, const regnode* o) |
1777 | __attribute__nonnull__(pTHX_1) | |
1778 | __attribute__nonnull__(pTHX_2); | |
1779 | ||
4373e329 | 1780 | PERL_CALLCONV void Perl_repeatcpy(pTHX_ char* to, const char* from, I32 len, I32 count) |
abb2c242 JH |
1781 | __attribute__nonnull__(pTHX_1) |
1782 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1783 | |
4373e329 | 1784 | PERL_CALLCONV char* Perl_rninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend) |
abb2c242 JH |
1785 | __attribute__pure__ |
1786 | __attribute__nonnull__(pTHX_1) | |
1787 | __attribute__nonnull__(pTHX_2) | |
1788 | __attribute__nonnull__(pTHX_3) | |
1789 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 1790 | |
1d7c1841 GS |
1791 | PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t); |
1792 | PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t); | |
9a957fbc AL |
1793 | PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* t2) |
1794 | __attribute__nonnull__(pTHX_3); | |
1795 | ||
1d7c1841 | 1796 | PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i); |
a3b680e6 | 1797 | PERL_CALLCONV void Perl_rxres_free(pTHX_ void** rsp) |
abb2c242 | 1798 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
1799 | |
1800 | PERL_CALLCONV void Perl_rxres_restore(pTHX_ void** rsp, REGEXP* prx) | |
abb2c242 JH |
1801 | __attribute__nonnull__(pTHX_1) |
1802 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
1803 | |
1804 | PERL_CALLCONV void Perl_rxres_save(pTHX_ void** rsp, REGEXP* prx) | |
abb2c242 JH |
1805 | __attribute__nonnull__(pTHX_1) |
1806 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 1807 | |
cea2e8a9 | 1808 | #if !defined(HAS_RENAME) |
4373e329 | 1809 | PERL_CALLCONV I32 Perl_same_dirent(pTHX_ const char* a, const char* b) |
abb2c242 JH |
1810 | __attribute__nonnull__(pTHX_1) |
1811 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1812 | |
0cb96387 | 1813 | #endif |
53c1dcc0 AL |
1814 | PERL_CALLCONV char* Perl_savepv(pTHX_ const char* pv) |
1815 | __attribute__malloc__ | |
639f6c3d | 1816 | __attribute__warn_unused_result__; |
53c1dcc0 AL |
1817 | |
1818 | PERL_CALLCONV char* Perl_savepvn(pTHX_ const char* pv, I32 len) | |
1819 | __attribute__malloc__ | |
639f6c3d | 1820 | __attribute__warn_unused_result__; |
53c1dcc0 AL |
1821 | |
1822 | PERL_CALLCONV char* Perl_savesharedpv(pTHX_ const char* pv) | |
1823 | __attribute__malloc__ | |
1824 | __attribute__warn_unused_result__; | |
1825 | ||
1826 | PERL_CALLCONV char* Perl_savesvpv(pTHX_ SV* sv) | |
1827 | __attribute__malloc__ | |
1828 | __attribute__warn_unused_result__ | |
1829 | __attribute__nonnull__(pTHX_1); | |
1830 | ||
1d7c1841 | 1831 | PERL_CALLCONV void Perl_savestack_grow(pTHX); |
4b3c1a47 | 1832 | PERL_CALLCONV void Perl_savestack_grow_cnt(pTHX_ I32 need); |
9a957fbc AL |
1833 | PERL_CALLCONV void Perl_save_aelem(pTHX_ const AV* av, I32 idx, SV **sptr) |
1834 | __attribute__nonnull__(pTHX_1) | |
1835 | __attribute__nonnull__(pTHX_3); | |
1836 | ||
1d7c1841 | 1837 | PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad); |
9a957fbc AL |
1838 | PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr) |
1839 | __attribute__nonnull__(pTHX_1); | |
1840 | ||
1841 | PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv) | |
1842 | __attribute__nonnull__(pTHX_1); | |
1843 | ||
1844 | PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp) | |
1845 | __attribute__nonnull__(pTHX_1); | |
1846 | ||
1847 | PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp) | |
1848 | __attribute__nonnull__(pTHX_1); | |
1849 | ||
1850 | PERL_CALLCONV void Perl_save_delete(pTHX_ HV* hv, char* key, I32 klen) | |
1851 | __attribute__nonnull__(pTHX_1) | |
1852 | __attribute__nonnull__(pTHX_2); | |
1853 | ||
fb9bf107 NC |
1854 | PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p) |
1855 | __attribute__nonnull__(pTHX_2); | |
1856 | ||
55968144 | 1857 | PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p); |
1d7c1841 GS |
1858 | PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv); |
1859 | PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o); | |
1860 | PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv); | |
9a957fbc AL |
1861 | PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr) |
1862 | __attribute__nonnull__(pTHX_1); | |
1863 | ||
1864 | PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str) | |
1865 | __attribute__nonnull__(pTHX_1); | |
1866 | ||
1867 | PERL_CALLCONV void Perl_save_shared_pvref(pTHX_ char** str) | |
1868 | __attribute__nonnull__(pTHX_1); | |
1869 | ||
aec46f14 AL |
1870 | PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty) |
1871 | __attribute__nonnull__(pTHX_1); | |
1872 | ||
1873 | PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv) | |
1874 | __attribute__nonnull__(pTHX_1); | |
1875 | ||
9a957fbc AL |
1876 | PERL_CALLCONV void Perl_save_helem(pTHX_ HV* hv, SV *key, SV **sptr) |
1877 | __attribute__nonnull__(pTHX_1) | |
1878 | __attribute__nonnull__(pTHX_2) | |
1879 | __attribute__nonnull__(pTHX_3); | |
1880 | ||
f54cb97a | 1881 | PERL_CALLCONV void Perl_save_hints(pTHX) |
abb2c242 | 1882 | __attribute__noreturn__; |
f54cb97a | 1883 | |
aec46f14 AL |
1884 | PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr) |
1885 | __attribute__nonnull__(pTHX_1); | |
1886 | ||
1887 | PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp) | |
1888 | __attribute__nonnull__(pTHX_1); | |
1889 | ||
1890 | PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp) | |
1891 | __attribute__nonnull__(pTHX_1); | |
1892 | ||
1893 | PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep) | |
1894 | __attribute__nonnull__(pTHX_1); | |
1895 | ||
1896 | PERL_CALLCONV void Perl_save_int(pTHX_ int* intp) | |
1897 | __attribute__nonnull__(pTHX_1); | |
1898 | ||
1899 | PERL_CALLCONV void Perl_save_item(pTHX_ SV* item) | |
1900 | __attribute__nonnull__(pTHX_1); | |
1901 | ||
1902 | PERL_CALLCONV void Perl_save_iv(pTHX_ IV* iv) | |
1903 | __attribute__nonnull__(pTHX_1); | |
1904 | ||
1905 | PERL_CALLCONV void Perl_save_list(pTHX_ SV** sarg, I32 maxsarg) | |
1906 | __attribute__nonnull__(pTHX_1); | |
1907 | ||
1908 | PERL_CALLCONV void Perl_save_long(pTHX_ long* longp) | |
1909 | __attribute__nonnull__(pTHX_1); | |
1910 | ||
1911 | PERL_CALLCONV void Perl_save_mortalizesv(pTHX_ SV* sv) | |
1912 | __attribute__nonnull__(pTHX_1); | |
1913 | ||
1d7c1841 GS |
1914 | PERL_CALLCONV void Perl_save_nogv(pTHX_ GV* gv); |
1915 | PERL_CALLCONV void Perl_save_op(pTHX); | |
aec46f14 AL |
1916 | PERL_CALLCONV SV* Perl_save_scalar(pTHX_ GV* gv) |
1917 | __attribute__nonnull__(pTHX_1); | |
1918 | ||
1919 | PERL_CALLCONV void Perl_save_pptr(pTHX_ char** pptr) | |
1920 | __attribute__nonnull__(pTHX_1); | |
1921 | ||
1922 | PERL_CALLCONV void Perl_save_vptr(pTHX_ void* pptr) | |
1923 | __attribute__nonnull__(pTHX_1); | |
1924 | ||
1d7c1841 | 1925 | PERL_CALLCONV void Perl_save_re_context(pTHX); |
c3564e5c | 1926 | PERL_CALLCONV void Perl_save_padsv(pTHX_ PADOFFSET off); |
aec46f14 AL |
1927 | PERL_CALLCONV void Perl_save_sptr(pTHX_ SV** sptr) |
1928 | __attribute__nonnull__(pTHX_1); | |
1929 | ||
1930 | PERL_CALLCONV SV* Perl_save_svref(pTHX_ SV** sptr) | |
1931 | __attribute__nonnull__(pTHX_1); | |
1932 | ||
f54cb97a | 1933 | PERL_CALLCONV SV** Perl_save_threadsv(pTHX_ PADOFFSET i) |
abb2c242 | 1934 | __attribute__noreturn__; |
f54cb97a | 1935 | |
1d7c1841 GS |
1936 | PERL_CALLCONV OP* Perl_sawparens(pTHX_ OP* o); |
1937 | PERL_CALLCONV OP* Perl_scalar(pTHX_ OP* o); | |
1938 | PERL_CALLCONV OP* Perl_scalarkids(pTHX_ OP* o); | |
1939 | PERL_CALLCONV OP* Perl_scalarseq(pTHX_ OP* o); | |
aec46f14 AL |
1940 | PERL_CALLCONV OP* Perl_scalarvoid(pTHX_ OP* o) |
1941 | __attribute__nonnull__(pTHX_1); | |
1942 | ||
1943 | PERL_CALLCONV NV Perl_scan_bin(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1944 | __attribute__nonnull__(pTHX_1) | |
1945 | __attribute__nonnull__(pTHX_3); | |
1946 | ||
1947 | PERL_CALLCONV NV Perl_scan_hex(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1948 | __attribute__nonnull__(pTHX_1) | |
1949 | __attribute__nonnull__(pTHX_3); | |
1950 | ||
1951 | PERL_CALLCONV char* Perl_scan_num(pTHX_ const char* s, YYSTYPE *lvalp) | |
1952 | __attribute__nonnull__(pTHX_1) | |
1953 | __attribute__nonnull__(pTHX_2); | |
1954 | ||
1955 | PERL_CALLCONV NV Perl_scan_oct(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1956 | __attribute__nonnull__(pTHX_1) | |
1957 | __attribute__nonnull__(pTHX_3); | |
1958 | ||
1d7c1841 | 1959 | PERL_CALLCONV OP* Perl_scope(pTHX_ OP* o); |
aec46f14 AL |
1960 | PERL_CALLCONV char* Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *oldposp, I32 last) |
1961 | __attribute__nonnull__(pTHX_1) | |
1962 | __attribute__nonnull__(pTHX_2) | |
1963 | __attribute__nonnull__(pTHX_5); | |
1964 | ||
864dbfa3 | 1965 | #if !defined(VMS) |
fb9bf107 NC |
1966 | PERL_CALLCONV I32 Perl_setenv_getix(pTHX_ const char* nam) |
1967 | __attribute__nonnull__(pTHX_1); | |
1968 | ||
0cb96387 | 1969 | #endif |
1d7c1841 | 1970 | PERL_CALLCONV void Perl_setdefout(pTHX_ GV* gv); |
aec46f14 AL |
1971 | PERL_CALLCONV HEK* Perl_share_hek(pTHX_ const char* str, I32 len, U32 hash) |
1972 | __attribute__nonnull__(pTHX_1); | |
1973 | ||
8aad04aa JH |
1974 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
1975 | PERL_CALLCONV Signal_t Perl_sighandler(int sig, ...); | |
1976 | PERL_CALLCONV Signal_t Perl_csighandler(int sig, ...); | |
1977 | #else | |
1d7c1841 | 1978 | PERL_CALLCONV Signal_t Perl_sighandler(int sig); |
d36b6582 | 1979 | PERL_CALLCONV Signal_t Perl_csighandler(int sig); |
8aad04aa | 1980 | #endif |
4373e329 | 1981 | PERL_CALLCONV SV** Perl_stack_grow(pTHX_ SV** sp, SV**p, int n) |
abb2c242 JH |
1982 | __attribute__nonnull__(pTHX_1) |
1983 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1984 | |
0b1558d1 | 1985 | PERL_CALLCONV I32 Perl_start_subparse(pTHX_ I32 is_format, U32 flags); |
aec46f14 AL |
1986 | PERL_CALLCONV void Perl_sub_crush_depth(pTHX_ CV* cv) |
1987 | __attribute__nonnull__(pTHX_1); | |
1988 | ||
4373e329 | 1989 | PERL_CALLCONV bool Perl_sv_2bool(pTHX_ SV* sv) |
abb2c242 | 1990 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1991 | |
1992 | PERL_CALLCONV CV* Perl_sv_2cv(pTHX_ SV* sv, HV** st, GV** gvp, I32 lref) | |
aec46f14 AL |
1993 | __attribute__nonnull__(pTHX_2) |
1994 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1995 | |
1996 | PERL_CALLCONV IO* Perl_sv_2io(pTHX_ SV* sv) | |
abb2c242 | 1997 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1998 | |
1999 | /* PERL_CALLCONV IV sv_2iv(pTHX_ SV* sv) | |
abb2c242 | 2000 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a AL |
2001 | |
2002 | PERL_CALLCONV IV Perl_sv_2iv_flags(pTHX_ SV* sv, I32 flags) | |
abb2c242 | 2003 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2004 | |
6472dca1 | 2005 | PERL_CALLCONV SV* Perl_sv_2mortal(pTHX_ SV* sv); |
f54cb97a | 2006 | PERL_CALLCONV NV Perl_sv_2nv(pTHX_ SV* sv) |
abb2c242 | 2007 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2008 | |
4373e329 | 2009 | /* PERL_CALLCONV char* sv_2pv(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 2010 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a | 2011 | |
4373e329 | 2012 | PERL_CALLCONV char* Perl_sv_2pv_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags) |
f49ed1da | 2013 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2014 | |
4373e329 | 2015 | PERL_CALLCONV char* Perl_sv_2pvutf8(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 2016 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2017 | |
4373e329 | 2018 | PERL_CALLCONV char* Perl_sv_2pvbyte(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 2019 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2020 | |
4373e329 | 2021 | PERL_CALLCONV char* Perl_sv_pvn_nomg(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 2022 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2023 | |
4373e329 | 2024 | /* PERL_CALLCONV UV sv_2uv(pTHX_ SV* sv) |
abb2c242 | 2025 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a | 2026 | |
4373e329 | 2027 | PERL_CALLCONV UV Perl_sv_2uv_flags(pTHX_ SV* sv, I32 flags) |
abb2c242 | 2028 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2029 | |
4373e329 | 2030 | PERL_CALLCONV IV Perl_sv_iv(pTHX_ SV* sv) |
abb2c242 | 2031 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2032 | |
4373e329 | 2033 | PERL_CALLCONV UV Perl_sv_uv(pTHX_ SV* sv) |
abb2c242 | 2034 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2035 | |
4373e329 | 2036 | PERL_CALLCONV NV Perl_sv_nv(pTHX_ SV* sv) |
abb2c242 | 2037 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2038 | |
4373e329 | 2039 | PERL_CALLCONV char* Perl_sv_pvn(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
2040 | __attribute__nonnull__(pTHX_1) |
2041 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2042 | |
4373e329 | 2043 | PERL_CALLCONV char* Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
2044 | __attribute__nonnull__(pTHX_1) |
2045 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2046 | |
4373e329 | 2047 | PERL_CALLCONV char* Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
2048 | __attribute__nonnull__(pTHX_1) |
2049 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2050 | |
aec46f14 | 2051 | PERL_CALLCONV I32 Perl_sv_true(pTHX_ SV *sv); |
f54cb97a | 2052 | PERL_CALLCONV void Perl_sv_add_arena(pTHX_ char* ptr, U32 size, U32 flags) |
abb2c242 | 2053 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2054 | |
2055 | PERL_CALLCONV int Perl_sv_backoff(pTHX_ SV* sv) | |
abb2c242 | 2056 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2057 | |
2058 | PERL_CALLCONV SV* Perl_sv_bless(pTHX_ SV* sv, HV* stash) | |
abb2c242 JH |
2059 | __attribute__nonnull__(pTHX_1) |
2060 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2061 | |
894356b3 | 2062 | PERL_CALLCONV void Perl_sv_catpvf(pTHX_ SV* sv, const char* pat, ...) |
f54cb97a | 2063 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
aec46f14 AL |
2064 | __attribute__nonnull__(pTHX_1) |
2065 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2066 | |
2067 | PERL_CALLCONV void Perl_sv_vcatpvf(pTHX_ SV* sv, const char* pat, va_list* args) | |
aec46f14 AL |
2068 | __attribute__nonnull__(pTHX_1) |
2069 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2070 | |
2071 | PERL_CALLCONV void Perl_sv_catpv(pTHX_ SV* sv, const char* ptr) | |
aec46f14 AL |
2072 | __attribute__nonnull__(pTHX_1) |
2073 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2074 | |
2075 | /* PERL_CALLCONV void sv_catpvn(pTHX_ SV* sv, const char* ptr, STRLEN len) | |
aec46f14 AL |
2076 | __attribute__nonnull__(pTHX_1) |
2077 | __attribute__nonnull__(pTHX_2); */ | |
f54cb97a AL |
2078 | |
2079 | /* PERL_CALLCONV void sv_catsv(pTHX_ SV* dsv, SV* ssv) | |
abb2c242 | 2080 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a AL |
2081 | |
2082 | PERL_CALLCONV void Perl_sv_chop(pTHX_ SV* sv, const char* ptr) | |
abb2c242 | 2083 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2084 | |
5226ed68 | 2085 | PERL_CALLCONV I32 Perl_sv_clean_all(pTHX); |
1d7c1841 | 2086 | PERL_CALLCONV void Perl_sv_clean_objs(pTHX); |
f54cb97a | 2087 | PERL_CALLCONV void Perl_sv_clear(pTHX_ SV* sv) |
abb2c242 | 2088 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2089 | |
2090 | PERL_CALLCONV I32 Perl_sv_cmp(pTHX_ SV* sv1, SV* sv2) | |
abb2c242 JH |
2091 | __attribute__nonnull__(pTHX_1) |
2092 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2093 | |
2094 | PERL_CALLCONV I32 Perl_sv_cmp_locale(pTHX_ SV* sv1, SV* sv2) | |
abb2c242 JH |
2095 | __attribute__nonnull__(pTHX_1) |
2096 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2097 | |
864dbfa3 | 2098 | #if defined(USE_LOCALE_COLLATE) |
f54cb97a | 2099 | PERL_CALLCONV char* Perl_sv_collxfrm(pTHX_ SV* sv, STRLEN* nxp) |
1df70142 AL |
2100 | __attribute__nonnull__(pTHX_1) |
2101 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2102 | |
0cb96387 | 2103 | #endif |
4373e329 | 2104 | PERL_CALLCONV OP* Perl_sv_compile_2op(pTHX_ SV* sv, OP** startp, const char* code, PAD** padp) |
abb2c242 JH |
2105 | __attribute__nonnull__(pTHX_1) |
2106 | __attribute__nonnull__(pTHX_2) | |
2107 | __attribute__nonnull__(pTHX_3) | |
2108 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 2109 | |
4373e329 | 2110 | PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv) |
abb2c242 | 2111 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2112 | |
2113 | PERL_CALLCONV void Perl_sv_dec(pTHX_ SV* sv) | |
abb2c242 | 2114 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2115 | |
2116 | PERL_CALLCONV void Perl_sv_dump(pTHX_ SV* sv) | |
abb2c242 | 2117 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2118 | |
4373e329 | 2119 | PERL_CALLCONV bool Perl_sv_derived_from(pTHX_ SV* sv, const char* name) |
abb2c242 JH |
2120 | __attribute__warn_unused_result__ |
2121 | __attribute__nonnull__(pTHX_1) | |
2122 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2123 | |
551405c4 | 2124 | PERL_CALLCONV I32 Perl_sv_eq(pTHX_ SV* sv1, SV* sv2); |
1d7c1841 | 2125 | PERL_CALLCONV void Perl_sv_free(pTHX_ SV* sv); |
4373e329 | 2126 | PERL_CALLCONV void Perl_sv_free2(pTHX_ SV* sv) |
abb2c242 | 2127 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2128 | |
1d7c1841 | 2129 | PERL_CALLCONV void Perl_sv_free_arenas(pTHX); |
4373e329 | 2130 | PERL_CALLCONV char* Perl_sv_gets(pTHX_ SV* sv, PerlIO* fp, I32 append) |
abb2c242 JH |
2131 | __attribute__nonnull__(pTHX_1) |
2132 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2133 | |
4373e329 | 2134 | PERL_CALLCONV char* Perl_sv_grow(pTHX_ SV* sv, STRLEN newlen) |
abb2c242 | 2135 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2136 | |
2137 | PERL_CALLCONV void Perl_sv_inc(pTHX_ SV* sv) | |
abb2c242 | 2138 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2139 | |
4373e329 | 2140 | PERL_CALLCONV void Perl_sv_insert(pTHX_ SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen) |
abb2c242 JH |
2141 | __attribute__nonnull__(pTHX_1) |
2142 | __attribute__nonnull__(pTHX_4); | |
f54cb97a AL |
2143 | |
2144 | PERL_CALLCONV int Perl_sv_isa(pTHX_ SV* sv, const char* name) | |
aec46f14 | 2145 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 2146 | |
aec46f14 | 2147 | PERL_CALLCONV int Perl_sv_isobject(pTHX_ SV* sv); |
9d4ba2ae AL |
2148 | PERL_CALLCONV STRLEN Perl_sv_len(pTHX_ SV* sv); |
2149 | PERL_CALLCONV STRLEN Perl_sv_len_utf8(pTHX_ SV* sv); | |
f54cb97a | 2150 | PERL_CALLCONV void Perl_sv_magic(pTHX_ SV* sv, SV* obj, int how, const char* name, I32 namlen) |
abb2c242 | 2151 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2152 | |
2153 | PERL_CALLCONV MAGIC * Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, const MGVTBL *vtbl, const char* name, I32 namlen) | |
abb2c242 | 2154 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2155 | |
4373e329 | 2156 | PERL_CALLCONV SV* Perl_sv_mortalcopy(pTHX_ SV* oldsv) |
1b6737cc AL |
2157 | __attribute__malloc__ |
2158 | __attribute__warn_unused_result__; | |
f54cb97a AL |
2159 | |
2160 | PERL_CALLCONV SV* Perl_sv_newmortal(pTHX) | |
abb2c242 | 2161 | __attribute__warn_unused_result__; |
f54cb97a | 2162 | |
1d7c1841 GS |
2163 | PERL_CALLCONV SV* Perl_sv_newref(pTHX_ SV* sv); |
2164 | PERL_CALLCONV char* Perl_sv_peek(pTHX_ SV* sv); | |
b464bac0 AL |
2165 | PERL_CALLCONV void Perl_sv_pos_u2b(pTHX_ SV* sv, I32* offsetp, I32* lenp) |
2166 | __attribute__nonnull__(pTHX_2); | |
2167 | ||
2168 | PERL_CALLCONV void Perl_sv_pos_b2u(pTHX_ SV* sv, I32* offsetp) | |
2169 | __attribute__nonnull__(pTHX_2); | |
2170 | ||
aec46f14 AL |
2171 | /* PERL_CALLCONV char* sv_pvn_force(pTHX_ SV* sv, STRLEN* lp) |
2172 | __attribute__nonnull__(pTHX_1); */ | |
2173 | ||
2174 | PERL_CALLCONV char* Perl_sv_pvutf8n_force(pTHX_ SV* sv, STRLEN* lp) | |
2175 | __attribute__nonnull__(pTHX_1); | |
2176 | ||
2177 | PERL_CALLCONV char* Perl_sv_pvbyten_force(pTHX_ SV* sv, STRLEN* lp) | |
2178 | __attribute__nonnull__(pTHX_1); | |
2179 | ||
2180 | PERL_CALLCONV char* Perl_sv_recode_to_utf8(pTHX_ SV* sv, SV *encoding) | |
2181 | __attribute__nonnull__(pTHX_1) | |
2182 | __attribute__nonnull__(pTHX_2); | |
2183 | ||
2184 | PERL_CALLCONV bool Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen) | |
2185 | __attribute__nonnull__(pTHX_1) | |
2186 | __attribute__nonnull__(pTHX_2) | |
2187 | __attribute__nonnull__(pTHX_3) | |
2188 | __attribute__nonnull__(pTHX_4) | |
2189 | __attribute__nonnull__(pTHX_5); | |
2190 | ||
a3b680e6 | 2191 | PERL_CALLCONV char* Perl_sv_reftype(pTHX_ const SV* sv, int ob) |
abb2c242 JH |
2192 | __attribute__warn_unused_result__ |
2193 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
2194 | |
2195 | PERL_CALLCONV void Perl_sv_replace(pTHX_ SV* sv, SV* nsv) | |
abb2c242 JH |
2196 | __attribute__nonnull__(pTHX_1) |
2197 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 2198 | |
1d7c1841 | 2199 | PERL_CALLCONV void Perl_sv_report_used(pTHX); |
504618e9 AL |
2200 | PERL_CALLCONV void Perl_sv_reset(pTHX_ const char* s, HV* stash) |
2201 | __attribute__nonnull__(pTHX_1); | |
2202 | ||
894356b3 | 2203 | PERL_CALLCONV void Perl_sv_setpvf(pTHX_ SV* sv, const char* pat, ...) |
aec46f14 AL |
2204 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2205 | __attribute__nonnull__(pTHX_1) | |
2206 | __attribute__nonnull__(pTHX_2); | |
2207 | ||
2208 | PERL_CALLCONV void Perl_sv_vsetpvf(pTHX_ SV* sv, const char* pat, va_list* args) | |
2209 | __attribute__nonnull__(pTHX_1) | |
2210 | __attribute__nonnull__(pTHX_2); | |
2211 | ||
2212 | PERL_CALLCONV void Perl_sv_setiv(pTHX_ SV* sv, IV num) | |
2213 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2214 | |
504618e9 AL |
2215 | PERL_CALLCONV void Perl_sv_setpviv(pTHX_ SV* sv, IV num) |
2216 | __attribute__nonnull__(pTHX_1); | |
2217 | ||
aec46f14 AL |
2218 | PERL_CALLCONV void Perl_sv_setuv(pTHX_ SV* sv, UV num) |
2219 | __attribute__nonnull__(pTHX_1); | |
2220 | ||
2221 | PERL_CALLCONV void Perl_sv_setnv(pTHX_ SV* sv, NV num) | |
2222 | __attribute__nonnull__(pTHX_1); | |
2223 | ||
2224 | PERL_CALLCONV SV* Perl_sv_setref_iv(pTHX_ SV* rv, const char* classname, IV iv) | |
2225 | __attribute__nonnull__(pTHX_1); | |
2226 | ||
2227 | PERL_CALLCONV SV* Perl_sv_setref_uv(pTHX_ SV* rv, const char* classname, UV uv) | |
2228 | __attribute__nonnull__(pTHX_1); | |
2229 | ||
2230 | PERL_CALLCONV SV* Perl_sv_setref_nv(pTHX_ SV* rv, const char* classname, NV nv) | |
2231 | __attribute__nonnull__(pTHX_1); | |
2232 | ||
2233 | PERL_CALLCONV SV* Perl_sv_setref_pv(pTHX_ SV* rv, const char* classname, void* pv) | |
2234 | __attribute__nonnull__(pTHX_1); | |
2235 | ||
1b6737cc | 2236 | PERL_CALLCONV SV* Perl_sv_setref_pvn(pTHX_ SV* rv, const char* classname, const char* pv, STRLEN n) |
aec46f14 | 2237 | __attribute__nonnull__(pTHX_1) |
1b6737cc AL |
2238 | __attribute__nonnull__(pTHX_3); |
2239 | ||
aec46f14 AL |
2240 | PERL_CALLCONV void Perl_sv_setpv(pTHX_ SV* sv, const char* ptr) |
2241 | __attribute__nonnull__(pTHX_1); | |
2242 | ||
4373e329 | 2243 | PERL_CALLCONV void Perl_sv_setpvn(pTHX_ SV* sv, const char* ptr, STRLEN len) |
abb2c242 | 2244 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2245 | |
aec46f14 AL |
2246 | /* PERL_CALLCONV void sv_setsv(pTHX_ SV* dsv, SV* ssv) |
2247 | __attribute__nonnull__(pTHX_1); */ | |
2248 | ||
2249 | PERL_CALLCONV void Perl_sv_taint(pTHX_ SV* sv) | |
2250 | __attribute__nonnull__(pTHX_1); | |
2251 | ||
a28509cc | 2252 | PERL_CALLCONV bool Perl_sv_tainted(pTHX_ SV* sv) |
aec46f14 AL |
2253 | __attribute__warn_unused_result__ |
2254 | __attribute__nonnull__(pTHX_1); | |
a28509cc | 2255 | |
f54cb97a | 2256 | PERL_CALLCONV int Perl_sv_unmagic(pTHX_ SV* sv, int type) |
abb2c242 | 2257 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2258 | |
2259 | PERL_CALLCONV void Perl_sv_unref(pTHX_ SV* sv) | |
abb2c242 | 2260 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2261 | |
2262 | PERL_CALLCONV void Perl_sv_unref_flags(pTHX_ SV* sv, U32 flags) | |
abb2c242 | 2263 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2264 | |
2265 | PERL_CALLCONV void Perl_sv_untaint(pTHX_ SV* sv) | |
abb2c242 | 2266 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2267 | |
63f97190 | 2268 | PERL_CALLCONV void Perl_sv_upgrade(pTHX_ SV* sv, U32 mt) |
abb2c242 | 2269 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2270 | |
2271 | PERL_CALLCONV void Perl_sv_usepvn(pTHX_ SV* sv, char* ptr, STRLEN len) | |
abb2c242 | 2272 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2273 | |
2274 | PERL_CALLCONV void Perl_sv_vcatpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted) | |
abb2c242 JH |
2275 | __attribute__nonnull__(pTHX_1) |
2276 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2277 | |
2278 | PERL_CALLCONV void Perl_sv_vsetpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted) | |
abb2c242 JH |
2279 | __attribute__nonnull__(pTHX_1) |
2280 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2281 | |
aec46f14 AL |
2282 | PERL_CALLCONV NV Perl_str_to_version(pTHX_ SV *sv) |
2283 | __attribute__warn_unused_result__ | |
2284 | __attribute__nonnull__(pTHX_1); | |
2285 | ||
2286 | PERL_CALLCONV SV* Perl_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none) | |
2287 | __attribute__nonnull__(pTHX_1) | |
2288 | __attribute__nonnull__(pTHX_2) | |
2289 | __attribute__nonnull__(pTHX_3); | |
2290 | ||
2291 | PERL_CALLCONV UV Perl_swash_fetch(pTHX_ SV *sv, const U8 *ptr, bool do_utf8) | |
2292 | __attribute__nonnull__(pTHX_1) | |
2293 | __attribute__nonnull__(pTHX_2); | |
2294 | ||
1d7c1841 | 2295 | PERL_CALLCONV void Perl_taint_env(pTHX); |
8772537c AL |
2296 | PERL_CALLCONV void Perl_taint_proper(pTHX_ const char* f, const char* s) |
2297 | __attribute__nonnull__(pTHX_2); | |
2298 | ||
9a957fbc | 2299 | PERL_CALLCONV UV Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special) |
abb2c242 | 2300 | __attribute__nonnull__(pTHX_1) |
9a957fbc | 2301 | __attribute__nonnull__(pTHX_2) |
fb9bf107 NC |
2302 | __attribute__nonnull__(pTHX_4) |
2303 | __attribute__nonnull__(pTHX_5) | |
2304 | __attribute__nonnull__(pTHX_6); | |
f54cb97a AL |
2305 | |
2306 | PERL_CALLCONV UV Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
2307 | __attribute__nonnull__(pTHX_1) |
2308 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2309 | |
2310 | PERL_CALLCONV UV Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
2311 | __attribute__nonnull__(pTHX_1) |
2312 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2313 | |
2314 | PERL_CALLCONV UV Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
2315 | __attribute__nonnull__(pTHX_1) |
2316 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
2317 | |
2318 | PERL_CALLCONV UV Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
2319 | __attribute__nonnull__(pTHX_1) |
2320 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2321 | |
864dbfa3 | 2322 | #if defined(UNLINK_ALL_VERSIONS) |
6e732051 | 2323 | PERL_CALLCONV I32 Perl_unlnk(pTHX_ const char* f) |
aec46f14 AL |
2324 | __attribute__nonnull__(pTHX_1); |
2325 | ||
864dbfa3 | 2326 | #endif |
aec46f14 AL |
2327 | 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) |
2328 | __attribute__nonnull__(pTHX_1) | |
2329 | __attribute__nonnull__(pTHX_2) | |
2330 | __attribute__nonnull__(pTHX_3) | |
2331 | __attribute__nonnull__(pTHX_5); | |
2332 | ||
2333 | PERL_CALLCONV I32 Perl_unpackstring(pTHX_ const char *pat, const char *patend, const char *s, const char *strend, U32 flags) | |
2334 | __attribute__nonnull__(pTHX_1) | |
2335 | __attribute__nonnull__(pTHX_2) | |
2336 | __attribute__nonnull__(pTHX_3) | |
2337 | __attribute__nonnull__(pTHX_4); | |
2338 | ||
1d7c1841 GS |
2339 | PERL_CALLCONV void Perl_unsharepvn(pTHX_ const char* sv, I32 len, U32 hash); |
2340 | PERL_CALLCONV void Perl_unshare_hek(pTHX_ HEK* hek); | |
aec46f14 AL |
2341 | PERL_CALLCONV void Perl_utilize(pTHX_ int aver, I32 floor, OP* version, OP* idop, OP* arg) |
2342 | __attribute__nonnull__(pTHX_4); | |
2343 | ||
2344 | PERL_CALLCONV U8* Perl_utf16_to_utf8(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen) | |
2345 | __attribute__nonnull__(pTHX_1) | |
2346 | __attribute__nonnull__(pTHX_2) | |
2347 | __attribute__nonnull__(pTHX_4); | |
2348 | ||
2349 | PERL_CALLCONV U8* Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen) | |
2350 | __attribute__nonnull__(pTHX_1) | |
2351 | __attribute__nonnull__(pTHX_2) | |
2352 | __attribute__nonnull__(pTHX_4); | |
2353 | ||
4373e329 | 2354 | PERL_CALLCONV STRLEN Perl_utf8_length(pTHX_ const U8* s, const U8 *e) |
abb2c242 JH |
2355 | __attribute__warn_unused_result__ |
2356 | __attribute__pure__ | |
2357 | __attribute__nonnull__(pTHX_1) | |
2358 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2359 | |
4373e329 | 2360 | PERL_CALLCONV IV Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b) |
abb2c242 JH |
2361 | __attribute__warn_unused_result__ |
2362 | __attribute__pure__ | |
2363 | __attribute__nonnull__(pTHX_1) | |
2364 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2365 | |
4373e329 | 2366 | PERL_CALLCONV U8* Perl_utf8_hop(pTHX_ const U8 *s, I32 off) |
abb2c242 JH |
2367 | __attribute__warn_unused_result__ |
2368 | __attribute__pure__ | |
2369 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2370 | |
4373e329 | 2371 | PERL_CALLCONV U8* Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len) |
abb2c242 JH |
2372 | __attribute__nonnull__(pTHX_1) |
2373 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2374 | |
aec46f14 AL |
2375 | PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) |
2376 | __attribute__nonnull__(pTHX_1) | |
2377 | __attribute__nonnull__(pTHX_2); | |
2378 | ||
2379 | PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) | |
2380 | __attribute__nonnull__(pTHX_1) | |
2381 | __attribute__nonnull__(pTHX_2); | |
2382 | ||
2383 | PERL_CALLCONV UV Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen) | |
2384 | __attribute__nonnull__(pTHX_1); | |
2385 | ||
2386 | PERL_CALLCONV UV Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) | |
2387 | __attribute__nonnull__(pTHX_1); | |
2388 | ||
2389 | PERL_CALLCONV UV Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) | |
2390 | __attribute__nonnull__(pTHX_1); | |
2391 | ||
2392 | PERL_CALLCONV UV Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) | |
2393 | __attribute__nonnull__(pTHX_1); | |
2394 | ||
4373e329 | 2395 | PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv) |
abb2c242 | 2396 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2397 | |
4373e329 | 2398 | PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) |
abb2c242 | 2399 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2400 | |
4373e329 | 2401 | PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
abb2c242 | 2402 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2403 | |
4373e329 | 2404 | PERL_CALLCONV U8* Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
abb2c242 | 2405 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2406 | |
fb9bf107 NC |
2407 | PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags) |
2408 | __attribute__nonnull__(pTHX_1) | |
2409 | __attribute__nonnull__(pTHX_2); | |
2410 | ||
a3b680e6 | 2411 | PERL_CALLCONV char* Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags) |
fb9bf107 NC |
2412 | __attribute__warn_unused_result__ |
2413 | __attribute__nonnull__(pTHX_1) | |
2414 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 2415 | |
aec46f14 AL |
2416 | PERL_CALLCONV void Perl_vivify_defelem(pTHX_ SV* sv) |
2417 | __attribute__nonnull__(pTHX_1); | |
2418 | ||
2419 | PERL_CALLCONV void Perl_vivify_ref(pTHX_ SV* sv, U32 to_what) | |
2420 | __attribute__nonnull__(pTHX_1); | |
2421 | ||
2422 | PERL_CALLCONV I32 Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags) | |
2423 | __attribute__nonnull__(pTHX_2); | |
2424 | ||
fb9bf107 NC |
2425 | PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt) |
2426 | __attribute__nonnull__(pTHX_1); | |
2427 | ||
132efe8b | 2428 | PERL_CALLCONV U32 Perl_seed(pTHX); |
255164ba DM |
2429 | PERL_CALLCONV UV Perl_get_hash_seed(pTHX) |
2430 | __attribute__warn_unused_result__; | |
2431 | ||
e1ec3a88 | 2432 | PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op); |
29489e7c | 2433 | PERL_CALLCONV void Perl_report_uninit(pTHX_ SV* uninit_sv); |
894356b3 | 2434 | PERL_CALLCONV void Perl_warn(pTHX_ const char* pat, ...) |
aec46f14 AL |
2435 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
2436 | __attribute__nonnull__(pTHX_1); | |
2437 | ||
2438 | PERL_CALLCONV void Perl_vwarn(pTHX_ const char* pat, va_list* args) | |
2439 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2440 | |
894356b3 | 2441 | PERL_CALLCONV void Perl_warner(pTHX_ U32 err, const char* pat, ...) |
aec46f14 AL |
2442 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2443 | __attribute__nonnull__(pTHX_2); | |
2444 | ||
2445 | PERL_CALLCONV void Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args) | |
2446 | __attribute__nonnull__(pTHX_2); | |
2447 | ||
2448 | PERL_CALLCONV void Perl_watch(pTHX_ char** addr) | |
2449 | __attribute__nonnull__(pTHX_1); | |
2450 | ||
2451 | PERL_CALLCONV I32 Perl_whichsig(pTHX_ const char* sig) | |
2452 | __attribute__nonnull__(pTHX_1); | |
2453 | ||
2454 | PERL_CALLCONV void Perl_write_to_stderr(pTHX_ const char* message, int msglen) | |
2455 | __attribute__nonnull__(pTHX_1); | |
2456 | ||
2457 | PERL_CALLCONV int Perl_yyerror(pTHX_ const char* s) | |
2458 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2459 | |
48cf72c8 | 2460 | PERL_CALLCONV int Perl_yylex(pTHX); |
1d7c1841 | 2461 | PERL_CALLCONV int Perl_yyparse(pTHX); |
aec46f14 AL |
2462 | PERL_CALLCONV int Perl_yywarn(pTHX_ const char* s) |
2463 | __attribute__nonnull__(pTHX_1); | |
2464 | ||
cea2e8a9 | 2465 | #if defined(MYMALLOC) |
aec46f14 AL |
2466 | PERL_CALLCONV void Perl_dump_mstats(pTHX_ char* s) |
2467 | __attribute__nonnull__(pTHX_1); | |
2468 | ||
255164ba | 2469 | PERL_CALLCONV int Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level) |
255164ba DM |
2470 | __attribute__nonnull__(pTHX_1); |
2471 | ||
0cb96387 | 2472 | #endif |
4373e329 | 2473 | PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes) |
abb2c242 JH |
2474 | __attribute__malloc__ |
2475 | __attribute__warn_unused_result__; | |
f54cb97a | 2476 | |
4373e329 | 2477 | PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size) |
abb2c242 JH |
2478 | __attribute__malloc__ |
2479 | __attribute__warn_unused_result__; | |
f54cb97a | 2480 | |
4373e329 | 2481 | PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes) |
abb2c242 JH |
2482 | __attribute__malloc__ |
2483 | __attribute__warn_unused_result__; | |
f54cb97a | 2484 | |
1d7c1841 | 2485 | PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); |
cea2e8a9 | 2486 | #if defined(PERL_GLOBAL_STRUCT) |
1d7c1841 | 2487 | PERL_CALLCONV struct perl_vars * Perl_GetVars(pTHX); |
77304e85 | 2488 | PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX); |
fb9bf107 NC |
2489 | PERL_CALLCONV void Perl_free_global_struct(pTHX_ struct perl_vars *plvarsp) |
2490 | __attribute__nonnull__(pTHX_1); | |
2491 | ||
1d7c1841 GS |
2492 | #endif |
2493 | PERL_CALLCONV int Perl_runops_standard(pTHX); | |
2494 | PERL_CALLCONV int Perl_runops_debug(pTHX); | |
894356b3 | 2495 | PERL_CALLCONV void Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...) |
aec46f14 AL |
2496 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2497 | __attribute__nonnull__(pTHX_1) | |
2498 | __attribute__nonnull__(pTHX_2); | |
2499 | ||
2500 | PERL_CALLCONV void Perl_sv_vcatpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args) | |
2501 | __attribute__nonnull__(pTHX_1) | |
2502 | __attribute__nonnull__(pTHX_2); | |
2503 | ||
2504 | PERL_CALLCONV void Perl_sv_catpv_mg(pTHX_ SV *sv, const char *ptr) | |
2505 | __attribute__nonnull__(pTHX_1) | |
2506 | __attribute__nonnull__(pTHX_2); | |
2507 | ||
2508 | PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) | |
2509 | __attribute__nonnull__(pTHX_1) | |
2510 | __attribute__nonnull__(pTHX_2); | |
2511 | ||
2512 | PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dstr, SV *sstr) | |
2513 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2514 | |
894356b3 | 2515 | PERL_CALLCONV void Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...) |
aec46f14 AL |
2516 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2517 | __attribute__nonnull__(pTHX_1) | |
2518 | __attribute__nonnull__(pTHX_2); | |
2519 | ||
2520 | PERL_CALLCONV void Perl_sv_vsetpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args) | |
2521 | __attribute__nonnull__(pTHX_1) | |
2522 | __attribute__nonnull__(pTHX_2); | |
2523 | ||
2524 | PERL_CALLCONV void Perl_sv_setiv_mg(pTHX_ SV *sv, IV i) | |
2525 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2526 | |
504618e9 AL |
2527 | PERL_CALLCONV void Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv) |
2528 | __attribute__nonnull__(pTHX_1); | |
2529 | ||
aec46f14 AL |
2530 | PERL_CALLCONV void Perl_sv_setuv_mg(pTHX_ SV *sv, UV u) |
2531 | __attribute__nonnull__(pTHX_1); | |
2532 | ||
2533 | PERL_CALLCONV void Perl_sv_setnv_mg(pTHX_ SV *sv, NV num) | |
2534 | __attribute__nonnull__(pTHX_1); | |
2535 | ||
2536 | PERL_CALLCONV void Perl_sv_setpv_mg(pTHX_ SV *sv, const char *ptr) | |
2537 | __attribute__nonnull__(pTHX_1); | |
2538 | ||
2539 | PERL_CALLCONV void Perl_sv_setpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) | |
2540 | __attribute__nonnull__(pTHX_1) | |
2541 | __attribute__nonnull__(pTHX_2); | |
2542 | ||
2543 | PERL_CALLCONV void Perl_sv_setsv_mg(pTHX_ SV *dstr, SV *sstr) | |
2544 | __attribute__nonnull__(pTHX_1); | |
2545 | ||
2546 | PERL_CALLCONV void Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len) | |
2547 | __attribute__nonnull__(pTHX_1); | |
2548 | ||
2549 | PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id) | |
2550 | __attribute__warn_unused_result__; | |
2551 | ||
2552 | PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim) | |
2553 | __attribute__nonnull__(pTHX_1) | |
2554 | __attribute__nonnull__(pTHX_2); | |
2555 | ||
894356b3 | 2556 | PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) |
1b6737cc | 2557 | __attribute__format__(__printf__,pTHX_3,pTHX_4) |
aec46f14 AL |
2558 | __attribute__nonnull__(pTHX_2) |
2559 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2560 | |
2561 | PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args) | |
aec46f14 AL |
2562 | __attribute__nonnull__(pTHX_2) |
2563 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2564 | |
2565 | PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) | |
aec46f14 AL |
2566 | __attribute__nonnull__(pTHX_2) |
2567 | __attribute__nonnull__(pTHX_3) | |
2568 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2569 | |
2570 | PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) | |
aec46f14 AL |
2571 | __attribute__nonnull__(pTHX_2) |
2572 | __attribute__nonnull__(pTHX_3) | |
2573 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2574 | |
2575 | PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv) | |
aec46f14 AL |
2576 | __attribute__nonnull__(pTHX_2) |
2577 | __attribute__nonnull__(pTHX_3) | |
2578 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2579 | |
2580 | PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) | |
aec46f14 AL |
2581 | __attribute__nonnull__(pTHX_2) |
2582 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2583 | |
2584 | PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o) | |
2585 | __attribute__nonnull__(pTHX_2); | |
2586 | ||
2587 | PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm) | |
2588 | __attribute__nonnull__(pTHX_2); | |
2589 | ||
2590 | PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) | |
2591 | __attribute__nonnull__(pTHX_2); | |
2592 | ||
6867be6d | 2593 | PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg); |
1d7c1841 | 2594 | PERL_CALLCONV void Perl_reginitcolors(pTHX); |
aec46f14 AL |
2595 | PERL_CALLCONV char* Perl_sv_2pv_nolen(pTHX_ SV* sv) |
2596 | __attribute__warn_unused_result__ | |
2597 | __attribute__nonnull__(pTHX_1); | |
2598 | ||
2599 | PERL_CALLCONV char* Perl_sv_2pvutf8_nolen(pTHX_ SV* sv) | |
2600 | __attribute__warn_unused_result__ | |
2601 | __attribute__nonnull__(pTHX_1); | |
2602 | ||
2603 | PERL_CALLCONV char* Perl_sv_2pvbyte_nolen(pTHX_ SV* sv) | |
2604 | __attribute__warn_unused_result__ | |
2605 | __attribute__nonnull__(pTHX_1); | |
2606 | ||
f75877b5 SH |
2607 | /* PERL_CALLCONV char* sv_pv(pTHX_ SV *sv) |
2608 | __attribute__warn_unused_result__ | |
2609 | __attribute__nonnull__(pTHX_1); */ | |
2610 | ||
2611 | /* PERL_CALLCONV char* sv_pvutf8(pTHX_ SV *sv) | |
2612 | __attribute__warn_unused_result__ | |
2613 | __attribute__nonnull__(pTHX_1); */ | |
2614 | ||
2615 | /* PERL_CALLCONV char* sv_pvbyte(pTHX_ SV *sv) | |
2616 | __attribute__warn_unused_result__ | |
2617 | __attribute__nonnull__(pTHX_1); */ | |
2618 | ||
2619 | /* PERL_CALLCONV STRLEN sv_utf8_upgrade(pTHX_ SV *sv) | |
2620 | __attribute__nonnull__(pTHX_1); */ | |
2621 | ||
2622 | PERL_CALLCONV bool Perl_sv_utf8_downgrade(pTHX_ SV *sv, bool fail_ok) | |
2623 | __attribute__nonnull__(pTHX_1); | |
2624 | ||
2625 | PERL_CALLCONV void Perl_sv_utf8_encode(pTHX_ SV *sv) | |
2626 | __attribute__nonnull__(pTHX_1); | |
2627 | ||
2628 | PERL_CALLCONV bool Perl_sv_utf8_decode(pTHX_ SV *sv) | |
2629 | __attribute__nonnull__(pTHX_1); | |
2630 | ||
2631 | PERL_CALLCONV void Perl_sv_force_normal(pTHX_ SV *sv) | |
2632 | __attribute__nonnull__(pTHX_1); | |
2633 | ||
2634 | PERL_CALLCONV void Perl_sv_force_normal_flags(pTHX_ SV *sv, U32 flags) | |
2635 | __attribute__nonnull__(pTHX_1); | |
2636 | ||
1d7c1841 | 2637 | PERL_CALLCONV void Perl_tmps_grow(pTHX_ I32 n); |
f75877b5 SH |
2638 | PERL_CALLCONV SV* Perl_sv_rvweaken(pTHX_ SV *sv) |
2639 | __attribute__nonnull__(pTHX_1); | |
2640 | ||
2641 | PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg) | |
2642 | __attribute__nonnull__(pTHX_1) | |
2643 | __attribute__nonnull__(pTHX_2); | |
2644 | ||
1d7c1841 GS |
2645 | PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block); |
2646 | PERL_CALLCONV CV* Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); | |
f54cb97a | 2647 | PERL_CALLCONV void Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block) |
abb2c242 | 2648 | __attribute__noreturn__; |
f54cb97a | 2649 | |
4373e329 | 2650 | PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs) |
abb2c242 | 2651 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2652 | |
1d7c1841 GS |
2653 | PERL_CALLCONV void Perl_boot_core_xsutils(pTHX); |
2654 | #if defined(USE_ITHREADS) | |
53c1dcc0 AL |
2655 | PERL_CALLCONV PERL_CONTEXT* Perl_cx_dup(pTHX_ PERL_CONTEXT* cx, I32 ix, I32 max, CLONE_PARAMS* param) |
2656 | __attribute__malloc__ | |
aec46f14 AL |
2657 | __attribute__warn_unused_result__ |
2658 | __attribute__nonnull__(pTHX_4); | |
53c1dcc0 AL |
2659 | |
2660 | PERL_CALLCONV PERL_SI* Perl_si_dup(pTHX_ PERL_SI* si, CLONE_PARAMS* param) | |
2661 | __attribute__malloc__ | |
aec46f14 AL |
2662 | __attribute__warn_unused_result__ |
2663 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2664 | |
2665 | PERL_CALLCONV ANY* Perl_ss_dup(pTHX_ PerlInterpreter* proto_perl, CLONE_PARAMS* param) | |
2666 | __attribute__malloc__ | |
2667 | __attribute__warn_unused_result__ | |
aec46f14 AL |
2668 | __attribute__nonnull__(pTHX_1) |
2669 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2670 | |
2671 | PERL_CALLCONV void* Perl_any_dup(pTHX_ void* v, const PerlInterpreter* proto_perl) | |
2672 | __attribute__malloc__ | |
2673 | __attribute__warn_unused_result__ | |
abb2c242 | 2674 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 2675 | |
5c4138a0 | 2676 | PERL_CALLCONV HE* Perl_he_dup(pTHX_ const HE* e, bool shared, CLONE_PARAMS* param) |
53c1dcc0 | 2677 | __attribute__malloc__ |
aec46f14 AL |
2678 | __attribute__warn_unused_result__ |
2679 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2680 | |
2681 | PERL_CALLCONV HEK* Perl_hek_dup(pTHX_ HEK* e, CLONE_PARAMS* param) | |
2682 | __attribute__malloc__ | |
aec46f14 AL |
2683 | __attribute__warn_unused_result__ |
2684 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2685 | |
2686 | PERL_CALLCONV REGEXP* Perl_re_dup(pTHX_ const REGEXP* r, CLONE_PARAMS* param) | |
2687 | __attribute__malloc__ | |
aec46f14 AL |
2688 | __attribute__warn_unused_result__ |
2689 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2690 | |
2691 | PERL_CALLCONV PerlIO* Perl_fp_dup(pTHX_ PerlIO* fp, char type, CLONE_PARAMS* param) | |
2692 | __attribute__malloc__ | |
aec46f14 AL |
2693 | __attribute__warn_unused_result__ |
2694 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2695 | |
2696 | PERL_CALLCONV DIR* Perl_dirp_dup(pTHX_ DIR* dp) | |
2697 | __attribute__malloc__ | |
2698 | __attribute__warn_unused_result__; | |
2699 | ||
2700 | PERL_CALLCONV GP* Perl_gp_dup(pTHX_ GP* gp, CLONE_PARAMS* param) | |
2701 | __attribute__malloc__ | |
aec46f14 AL |
2702 | __attribute__warn_unused_result__ |
2703 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2704 | |
2705 | PERL_CALLCONV MAGIC* Perl_mg_dup(pTHX_ MAGIC* mg, CLONE_PARAMS* param) | |
2706 | __attribute__malloc__ | |
2707 | __attribute__warn_unused_result__ | |
aec46f14 | 2708 | __attribute__nonnull__(pTHX_2); |
53c1dcc0 AL |
2709 | |
2710 | PERL_CALLCONV SV* Perl_sv_dup(pTHX_ SV* sstr, CLONE_PARAMS* param) | |
2711 | __attribute__malloc__ | |
2712 | __attribute__warn_unused_result__ | |
aec46f14 | 2713 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 2714 | |
53c1dcc0 AL |
2715 | PERL_CALLCONV void Perl_rvpv_dup(pTHX_ SV* dstr, SV *sstr, CLONE_PARAMS* param) |
2716 | __attribute__nonnull__(pTHX_1) | |
aec46f14 AL |
2717 | __attribute__nonnull__(pTHX_2) |
2718 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2719 | |
2720 | PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX) | |
2721 | __attribute__malloc__ | |
2722 | __attribute__warn_unused_result__; | |
2723 | ||
2724 | PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, const void *sv) | |
2725 | __attribute__malloc__ | |
2726 | __attribute__warn_unused_result__ | |
2727 | __attribute__nonnull__(pTHX_1) | |
2728 | __attribute__nonnull__(pTHX_2); | |
2729 | ||
2730 | PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, const void *oldsv, void *newsv) | |
2731 | __attribute__nonnull__(pTHX_1) | |
2732 | __attribute__nonnull__(pTHX_3); | |
2733 | ||
4373e329 | 2734 | PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl) |
abb2c242 | 2735 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2736 | |
690cf326 NIS |
2737 | PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl); |
2738 | PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl); | |
504618e9 AL |
2739 | # if defined(HAVE_INTERP_INTERN) |
2740 | PERL_CALLCONV void Perl_sys_intern_dup(pTHX_ struct interp_intern* src, struct interp_intern* dst) | |
2741 | __attribute__nonnull__(pTHX_1) | |
2742 | __attribute__nonnull__(pTHX_2); | |
2743 | ||
ddacffcf SH |
2744 | # endif |
2745 | #endif | |
2746 | #if defined(HAVE_INTERP_INTERN) | |
3dbbd0f5 GS |
2747 | PERL_CALLCONV void Perl_sys_intern_clear(pTHX); |
2748 | PERL_CALLCONV void Perl_sys_intern_init(pTHX); | |
2749 | #endif | |
cae16f1a | 2750 | |
4373e329 | 2751 | PERL_CALLCONV char * Perl_custom_op_name(pTHX_ const OP* op) |
53c1dcc0 | 2752 | __attribute__warn_unused_result__ |
abb2c242 | 2753 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2754 | |
4373e329 | 2755 | PERL_CALLCONV char * Perl_custom_op_desc(pTHX_ const OP* op) |
53c1dcc0 | 2756 | __attribute__warn_unused_result__ |
abb2c242 | 2757 | __attribute__nonnull__(pTHX_1); |
cae16f1a | 2758 | |
f54cb97a | 2759 | |
f8c7b90f | 2760 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 AL |
2761 | PERL_CALLCONV int Perl_sv_release_IVX(pTHX_ SV *sv) |
2762 | __attribute__nonnull__(pTHX_1); | |
2763 | ||
765f542d NC |
2764 | #endif |
2765 | ||
68795e93 NIS |
2766 | PERL_CALLCONV void Perl_sv_nosharing(pTHX_ SV *); |
2767 | PERL_CALLCONV void Perl_sv_nolocking(pTHX_ SV *); | |
2768 | PERL_CALLCONV void Perl_sv_nounlocking(pTHX_ SV *); | |
62375a60 | 2769 | PERL_CALLCONV int Perl_nothreadhook(pTHX); |
1d7c1841 | 2770 | |
1d7c1841 | 2771 | END_EXTERN_C |
1d7c1841 | 2772 | |
0cb96387 | 2773 | #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT) |
f54cb97a | 2774 | STATIC I32 S_do_trans_simple(pTHX_ SV *sv) |
53c1dcc0 | 2775 | __attribute__warn_unused_result__ |
abb2c242 | 2776 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2777 | |
2778 | STATIC I32 S_do_trans_count(pTHX_ SV *sv) | |
53c1dcc0 | 2779 | __attribute__warn_unused_result__ |
abb2c242 | 2780 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2781 | |
2782 | STATIC I32 S_do_trans_complex(pTHX_ SV *sv) | |
53c1dcc0 | 2783 | __attribute__warn_unused_result__ |
abb2c242 | 2784 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2785 | |
2786 | STATIC I32 S_do_trans_simple_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2787 | __attribute__warn_unused_result__ |
abb2c242 | 2788 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2789 | |
2790 | STATIC I32 S_do_trans_count_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2791 | __attribute__warn_unused_result__ |
abb2c242 | 2792 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2793 | |
2794 | STATIC I32 S_do_trans_complex_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2795 | __attribute__warn_unused_result__ |
abb2c242 | 2796 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2797 | |
cea2e8a9 | 2798 | #endif |
1d7c1841 | 2799 | |
0cb96387 | 2800 | #if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 AL |
2801 | STATIC void S_gv_init_sv(pTHX_ GV *gv, I32 sv_type) |
2802 | __attribute__nonnull__(pTHX_1); | |
2803 | ||
a3b680e6 | 2804 | STATIC void S_require_errno(pTHX_ GV *gv) |
abb2c242 | 2805 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 2806 | |
864dbfa3 | 2807 | #endif |
1d7c1841 | 2808 | |
0cb96387 | 2809 | #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 AL |
2810 | STATIC void S_hsplit(pTHX_ HV *hv) |
2811 | __attribute__nonnull__(pTHX_1); | |
2812 | ||
3abe233e AL |
2813 | STATIC void S_hfreeentries(pTHX_ HV *hv) |
2814 | __attribute__nonnull__(pTHX_1); | |
2815 | ||
1df70142 | 2816 | STATIC HE* S_new_he(pTHX) |
53c1dcc0 | 2817 | __attribute__malloc__ |
1df70142 AL |
2818 | __attribute__warn_unused_result__; |
2819 | ||
1df70142 | 2820 | STATIC HEK* S_save_hek_flags(pTHX_ const char *str, I32 len, U32 hash, int flags) |
53c1dcc0 | 2821 | __attribute__malloc__ |
1df70142 AL |
2822 | __attribute__warn_unused_result__ |
2823 | __attribute__nonnull__(pTHX_1); | |
2824 | ||
2825 | STATIC void S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store) | |
2826 | __attribute__nonnull__(pTHX_1) | |
2827 | __attribute__nonnull__(pTHX_2) | |
2828 | __attribute__nonnull__(pTHX_3); | |
2829 | ||
97ddebaf | 2830 | STATIC void S_unshare_hek_or_pvn(pTHX_ const HEK* hek, const char* str, I32 len, U32 hash); |
6e838c70 | 2831 | STATIC HEK* S_share_hek_flags(pTHX_ const char* sv, I32 len, U32 hash, int flags) |
1b6737cc AL |
2832 | __attribute__warn_unused_result__ |
2833 | __attribute__nonnull__(pTHX_1); | |
1df70142 | 2834 | |
f54cb97a | 2835 | STATIC void S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen, const char *msg) |
1df70142 AL |
2836 | __attribute__noreturn__ |
2837 | __attribute__nonnull__(pTHX_2) | |
2838 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 2839 | |
53c1dcc0 AL |
2840 | STATIC struct xpvhv_aux* S_hv_auxinit(pTHX_ HV *hv) |
2841 | __attribute__nonnull__(pTHX_1); | |
2842 | ||
aec46f14 AL |
2843 | STATIC SV* S_hv_delete_common(pTHX_ HV* tb, SV* keysv, const char* key, STRLEN klen, int k_flags, I32 d_flags, U32 hash); |
2844 | STATIC HE* S_hv_fetch_common(pTHX_ HV* tb, SV* keysv, const char* key, STRLEN klen, int flags, int action, SV* val, U32 hash); | |
864dbfa3 | 2845 | #endif |
1d7c1841 | 2846 | |
0cb96387 | 2847 | #if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT) |
504618e9 AL |
2848 | STATIC void S_save_magic(pTHX_ I32 mgs_ix, SV *sv) |
2849 | __attribute__nonnull__(pTHX_2); | |
2850 | ||
2851 | STATIC int S_magic_methpack(pTHX_ SV *sv, const MAGIC *mg, const char *meth) | |
2852 | __attribute__nonnull__(pTHX_1) | |
2853 | __attribute__nonnull__(pTHX_2) | |
2854 | __attribute__nonnull__(pTHX_3); | |
2855 | ||
2856 | STATIC int S_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 f, int n, SV *val) | |
2857 | __attribute__nonnull__(pTHX_1) | |
2858 | __attribute__nonnull__(pTHX_2) | |
2859 | __attribute__nonnull__(pTHX_3); | |
2860 | ||
8772537c AL |
2861 | STATIC void S_restore_magic(pTHX_ const void *p) |
2862 | __attribute__nonnull__(pTHX_1); | |
2863 | ||
2864 | STATIC void S_unwind_handler_stack(pTHX_ const void *p) | |
2865 | __attribute__nonnull__(pTHX_1); | |
2866 | ||
2867 | ||
864dbfa3 | 2868 | #endif |
1d7c1841 | 2869 | |
0cb96387 | 2870 | #if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT) |
504618e9 AL |
2871 | PERL_CALLCONV OP* Perl_ck_anoncode(pTHX_ OP *o) |
2872 | __attribute__warn_unused_result__ | |
2873 | __attribute__nonnull__(pTHX_1); | |
2874 | ||
2875 | PERL_CALLCONV OP* Perl_ck_bitop(pTHX_ OP *o) | |
2876 | __attribute__warn_unused_result__ | |
2877 | __attribute__nonnull__(pTHX_1); | |
2878 | ||
2879 | PERL_CALLCONV OP* Perl_ck_concat(pTHX_ OP *o) | |
2880 | __attribute__warn_unused_result__ | |
2881 | __attribute__nonnull__(pTHX_1); | |
2882 | ||
2883 | PERL_CALLCONV OP* Perl_ck_defined(pTHX_ OP *o) | |
2884 | __attribute__warn_unused_result__ | |
2885 | __attribute__nonnull__(pTHX_1); | |
2886 | ||
2887 | PERL_CALLCONV OP* Perl_ck_delete(pTHX_ OP *o) | |
2888 | __attribute__warn_unused_result__ | |
2889 | __attribute__nonnull__(pTHX_1); | |
2890 | ||
2891 | PERL_CALLCONV OP* Perl_ck_die(pTHX_ OP *o) | |
2892 | __attribute__warn_unused_result__ | |
2893 | __attribute__nonnull__(pTHX_1); | |
2894 | ||
2895 | PERL_CALLCONV OP* Perl_ck_eof(pTHX_ OP *o) | |
2896 | __attribute__warn_unused_result__ | |
2897 | __attribute__nonnull__(pTHX_1); | |
2898 | ||
2899 | PERL_CALLCONV OP* Perl_ck_eval(pTHX_ OP *o) | |
2900 | __attribute__warn_unused_result__ | |
2901 | __attribute__nonnull__(pTHX_1); | |
2902 | ||
2903 | PERL_CALLCONV OP* Perl_ck_exec(pTHX_ OP *o) | |
2904 | __attribute__warn_unused_result__ | |
2905 | __attribute__nonnull__(pTHX_1); | |
2906 | ||
2907 | PERL_CALLCONV OP* Perl_ck_exists(pTHX_ OP *o) | |
2908 | __attribute__warn_unused_result__ | |
2909 | __attribute__nonnull__(pTHX_1); | |
2910 | ||
2911 | PERL_CALLCONV OP* Perl_ck_exit(pTHX_ OP *o) | |
2912 | __attribute__warn_unused_result__ | |
2913 | __attribute__nonnull__(pTHX_1); | |
2914 | ||
2915 | PERL_CALLCONV OP* Perl_ck_ftst(pTHX_ OP *o) | |
2916 | __attribute__warn_unused_result__ | |
2917 | __attribute__nonnull__(pTHX_1); | |
2918 | ||
2919 | PERL_CALLCONV OP* Perl_ck_fun(pTHX_ OP *o) | |
2920 | __attribute__warn_unused_result__ | |
2921 | __attribute__nonnull__(pTHX_1); | |
2922 | ||
2923 | PERL_CALLCONV OP* Perl_ck_glob(pTHX_ OP *o) | |
2924 | __attribute__warn_unused_result__ | |
2925 | __attribute__nonnull__(pTHX_1); | |
2926 | ||
2927 | PERL_CALLCONV OP* Perl_ck_grep(pTHX_ OP *o) | |
2928 | __attribute__warn_unused_result__ | |
2929 | __attribute__nonnull__(pTHX_1); | |
2930 | ||
2931 | PERL_CALLCONV OP* Perl_ck_index(pTHX_ OP *o) | |
2932 | __attribute__warn_unused_result__ | |
2933 | __attribute__nonnull__(pTHX_1); | |
2934 | ||
2935 | PERL_CALLCONV OP* Perl_ck_join(pTHX_ OP *o) | |
2936 | __attribute__warn_unused_result__ | |
2937 | __attribute__nonnull__(pTHX_1); | |
2938 | ||
2939 | PERL_CALLCONV OP* Perl_ck_lengthconst(pTHX_ OP *o) | |
2940 | __attribute__warn_unused_result__ | |
2941 | __attribute__nonnull__(pTHX_1); | |
2942 | ||
2943 | PERL_CALLCONV OP* Perl_ck_lfun(pTHX_ OP *o) | |
2944 | __attribute__warn_unused_result__ | |
2945 | __attribute__nonnull__(pTHX_1); | |
2946 | ||
2947 | PERL_CALLCONV OP* Perl_ck_listiob(pTHX_ OP *o) | |
2948 | __attribute__warn_unused_result__ | |
2949 | __attribute__nonnull__(pTHX_1); | |
2950 | ||
2951 | PERL_CALLCONV OP* Perl_ck_match(pTHX_ OP *o) | |
2952 | __attribute__warn_unused_result__ | |
2953 | __attribute__nonnull__(pTHX_1); | |
2954 | ||
2955 | PERL_CALLCONV OP* Perl_ck_method(pTHX_ OP *o) | |
2956 | __attribute__warn_unused_result__ | |
2957 | __attribute__nonnull__(pTHX_1); | |
2958 | ||
2959 | PERL_CALLCONV OP* Perl_ck_null(pTHX_ OP *o) | |
2960 | __attribute__warn_unused_result__ | |
2961 | __attribute__nonnull__(pTHX_1); | |
2962 | ||
2963 | PERL_CALLCONV OP* Perl_ck_open(pTHX_ OP *o) | |
2964 | __attribute__warn_unused_result__ | |
2965 | __attribute__nonnull__(pTHX_1); | |
2966 | ||
2967 | PERL_CALLCONV OP* Perl_ck_repeat(pTHX_ OP *o) | |
2968 | __attribute__warn_unused_result__ | |
2969 | __attribute__nonnull__(pTHX_1); | |
2970 | ||
2971 | PERL_CALLCONV OP* Perl_ck_require(pTHX_ OP *o) | |
2972 | __attribute__warn_unused_result__ | |
2973 | __attribute__nonnull__(pTHX_1); | |
2974 | ||
2975 | PERL_CALLCONV OP* Perl_ck_retarget(pTHX_ OP *o) | |
2976 | __attribute__warn_unused_result__ | |
2977 | __attribute__nonnull__(pTHX_1); | |
2978 | ||
2979 | PERL_CALLCONV OP* Perl_ck_return(pTHX_ OP *o) | |
2980 | __attribute__warn_unused_result__ | |
2981 | __attribute__nonnull__(pTHX_1); | |
2982 | ||
2983 | PERL_CALLCONV OP* Perl_ck_rfun(pTHX_ OP *o) | |
2984 | __attribute__warn_unused_result__ | |
2985 | __attribute__nonnull__(pTHX_1); | |
2986 | ||
2987 | PERL_CALLCONV OP* Perl_ck_rvconst(pTHX_ OP *o) | |
2988 | __attribute__warn_unused_result__ | |
2989 | __attribute__nonnull__(pTHX_1); | |
2990 | ||
2991 | PERL_CALLCONV OP* Perl_ck_sassign(pTHX_ OP *o) | |
2992 | __attribute__warn_unused_result__ | |
2993 | __attribute__nonnull__(pTHX_1); | |
2994 | ||
2995 | PERL_CALLCONV OP* Perl_ck_select(pTHX_ OP *o) | |
2996 | __attribute__warn_unused_result__ | |
2997 | __attribute__nonnull__(pTHX_1); | |
2998 | ||
2999 | PERL_CALLCONV OP* Perl_ck_shift(pTHX_ OP *o) | |
3000 | __attribute__warn_unused_result__ | |
3001 | __attribute__nonnull__(pTHX_1); | |
3002 | ||
3003 | PERL_CALLCONV OP* Perl_ck_sort(pTHX_ OP *o) | |
3004 | __attribute__warn_unused_result__ | |
3005 | __attribute__nonnull__(pTHX_1); | |
3006 | ||
3007 | PERL_CALLCONV OP* Perl_ck_spair(pTHX_ OP *o) | |
3008 | __attribute__warn_unused_result__ | |
3009 | __attribute__nonnull__(pTHX_1); | |
3010 | ||
3011 | PERL_CALLCONV OP* Perl_ck_split(pTHX_ OP *o) | |
3012 | __attribute__warn_unused_result__ | |
3013 | __attribute__nonnull__(pTHX_1); | |
3014 | ||
3015 | PERL_CALLCONV OP* Perl_ck_subr(pTHX_ OP *o) | |
3016 | __attribute__warn_unused_result__ | |
3017 | __attribute__nonnull__(pTHX_1); | |
3018 | ||
3019 | PERL_CALLCONV OP* Perl_ck_substr(pTHX_ OP *o) | |
3020 | __attribute__warn_unused_result__ | |
3021 | __attribute__nonnull__(pTHX_1); | |
3022 | ||
3023 | PERL_CALLCONV OP* Perl_ck_svconst(pTHX_ OP *o) | |
3024 | __attribute__warn_unused_result__ | |
3025 | __attribute__nonnull__(pTHX_1); | |
3026 | ||
3027 | PERL_CALLCONV OP* Perl_ck_trunc(pTHX_ OP *o) | |
3028 | __attribute__warn_unused_result__ | |
3029 | __attribute__nonnull__(pTHX_1); | |
3030 | ||
3031 | PERL_CALLCONV OP* Perl_ck_unpack(pTHX_ OP *o) | |
3032 | __attribute__warn_unused_result__ | |
3033 | __attribute__nonnull__(pTHX_1); | |
3034 | ||
3035 | STATIC bool S_is_handle_constructor(pTHX_ const OP *o, I32 numargs) | |
3036 | __attribute__warn_unused_result__ | |
3037 | __attribute__nonnull__(pTHX_1); | |
3038 | ||
3039 | STATIC I32 S_is_list_assignment(pTHX_ const OP *o) | |
3040 | __attribute__warn_unused_result__; | |
3041 | ||
3042 | STATIC void S_cop_free(pTHX_ COP *cop) | |
3043 | __attribute__nonnull__(pTHX_1); | |
3044 | ||
cea2e8a9 | 3045 | STATIC OP* S_modkids(pTHX_ OP *o, I32 type); |
504618e9 AL |
3046 | STATIC OP* S_scalarboolean(pTHX_ OP *o) |
3047 | __attribute__nonnull__(pTHX_1); | |
3048 | ||
3049 | STATIC OP* S_newDEFSVOP(pTHX) | |
3050 | __attribute__warn_unused_result__; | |
3051 | ||
3052 | STATIC OP* S_new_logop(pTHX_ I32 type, I32 flags, OP **firstp, OP **otherp) | |
3053 | __attribute__warn_unused_result__ | |
3054 | __attribute__nonnull__(pTHX_3) | |
3055 | __attribute__nonnull__(pTHX_4); | |
3056 | ||
3057 | STATIC void S_simplify_sort(pTHX_ OP *o) | |
3058 | __attribute__nonnull__(pTHX_1); | |
3059 | ||
aec46f14 AL |
3060 | STATIC const char* S_gv_ename(pTHX_ GV *gv) |
3061 | __attribute__nonnull__(pTHX_1); | |
3062 | ||
3063 | STATIC bool S_scalar_mod_type(pTHX_ const OP *o, I32 type) | |
3064 | __attribute__nonnull__(pTHX_1); | |
3065 | ||
3066 | STATIC OP * S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp) | |
3067 | __attribute__nonnull__(pTHX_3); | |
3068 | ||
3069 | STATIC OP * S_dup_attrlist(pTHX_ OP *o) | |
3070 | __attribute__nonnull__(pTHX_1); | |
3071 | ||
3072 | STATIC void S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs, bool for_my) | |
3073 | __attribute__nonnull__(pTHX_1) | |
3074 | __attribute__nonnull__(pTHX_2); | |
3075 | ||
3076 | STATIC void S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp) | |
3077 | __attribute__nonnull__(pTHX_1) | |
3078 | __attribute__nonnull__(pTHX_2) | |
3079 | __attribute__nonnull__(pTHX_4); | |
3080 | ||
504618e9 AL |
3081 | STATIC void S_bad_type(pTHX_ I32 n, const char *t, const char *name, const OP *kid) |
3082 | __attribute__nonnull__(pTHX_2) | |
3083 | __attribute__nonnull__(pTHX_3) | |
3084 | __attribute__nonnull__(pTHX_4); | |
3085 | ||
3086 | STATIC void S_no_bareword_allowed(pTHX_ const OP *o) | |
3087 | __attribute__nonnull__(pTHX_1); | |
3088 | ||
3089 | STATIC OP* S_no_fh_allowed(pTHX_ OP *o) | |
3090 | __attribute__warn_unused_result__ | |
3091 | __attribute__nonnull__(pTHX_1); | |
3092 | ||
3093 | STATIC OP* S_too_few_arguments(pTHX_ OP *o, const char* name) | |
3094 | __attribute__warn_unused_result__ | |
3095 | __attribute__nonnull__(pTHX_1) | |
3096 | __attribute__nonnull__(pTHX_2); | |
3097 | ||
3098 | STATIC OP* S_too_many_arguments(pTHX_ OP *o, const char* name) | |
3099 | __attribute__warn_unused_result__ | |
3100 | __attribute__nonnull__(pTHX_1) | |
3101 | __attribute__nonnull__(pTHX_2); | |
3102 | ||
c7e45529 AE |
3103 | #endif |
3104 | #if defined(PL_OP_SLAB_ALLOC) | |
504618e9 | 3105 | PERL_CALLCONV void* Perl_Slab_Alloc(pTHX_ int m, size_t sz) |
aec46f14 | 3106 | __attribute__malloc__ |
504618e9 AL |
3107 | __attribute__warn_unused_result__; |
3108 | ||
aec46f14 AL |
3109 | PERL_CALLCONV void Perl_Slab_Free(pTHX_ void *op) |
3110 | __attribute__nonnull__(pTHX_1); | |
3111 | ||
864dbfa3 | 3112 | #endif |
1d7c1841 | 3113 | |
0cb96387 | 3114 | #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) |
cea2e8a9 | 3115 | STATIC void S_find_beginning(pTHX); |
aec46f14 AL |
3116 | STATIC void S_forbid_setid(pTHX_ const char * s) |
3117 | __attribute__nonnull__(pTHX_1); | |
3118 | ||
dd374669 | 3119 | STATIC void S_incpush(pTHX_ const char *dir, bool addsubdirs, bool addoldvers, bool usesep, bool canrelocate); |
cea2e8a9 GS |
3120 | STATIC void S_init_interp(pTHX); |
3121 | STATIC void S_init_ids(pTHX); | |
cea2e8a9 GS |
3122 | STATIC void S_init_lexer(pTHX); |
3123 | STATIC void S_init_main_stash(pTHX); | |
3124 | STATIC void S_init_perllib(pTHX); | |
aec46f14 AL |
3125 | STATIC void S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env) |
3126 | __attribute__nonnull__(pTHX_2); | |
3127 | ||
cea2e8a9 | 3128 | STATIC void S_init_predump_symbols(pTHX); |
f54cb97a | 3129 | STATIC void S_my_exit_jump(pTHX) |
abb2c242 | 3130 | __attribute__noreturn__; |
f54cb97a | 3131 | |
cea2e8a9 | 3132 | STATIC void S_nuke_stacks(pTHX); |
aec46f14 AL |
3133 | STATIC void S_open_script(pTHX_ const char *scriptname, bool dosearch, SV *sv) |
3134 | __attribute__nonnull__(pTHX_1) | |
3135 | __attribute__nonnull__(pTHX_3); | |
3136 | ||
3137 | STATIC void S_usage(pTHX_ const char *name) | |
3138 | __attribute__nonnull__(pTHX_1); | |
3139 | ||
3140 | STATIC void S_validate_suid(pTHX_ const char *validarg, const char *scriptname) | |
3141 | __attribute__nonnull__(pTHX_1) | |
3142 | __attribute__nonnull__(pTHX_2); | |
3143 | ||
cea2e8a9 GS |
3144 | # if defined(IAMSUID) |
3145 | STATIC int S_fd_on_nosuid_fs(pTHX_ int fd); | |
3146 | # endif | |
14dd3ad8 | 3147 | STATIC void* S_parse_body(pTHX_ char **env, XSINIT_t xsinit); |
f54cb97a | 3148 | STATIC void S_run_body(pTHX_ I32 oldscope) |
abb2c242 | 3149 | __attribute__noreturn__; |
f54cb97a | 3150 | |
aec46f14 AL |
3151 | STATIC void S_call_body(pTHX_ const OP *myop, bool is_eval) |
3152 | __attribute__nonnull__(pTHX_1); | |
3153 | ||
3154 | STATIC void* S_call_list_body(pTHX_ CV *cv) | |
3155 | __attribute__nonnull__(pTHX_1); | |
3156 | ||
864dbfa3 | 3157 | #endif |
1d7c1841 | 3158 | |
0cb96387 | 3159 | #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT) |
901017d6 | 3160 | STATIC SV* S_refto(pTHX_ SV* sv) |
aec46f14 AL |
3161 | __attribute__warn_unused_result__ |
3162 | __attribute__nonnull__(pTHX_1); | |
901017d6 | 3163 | |
a6ec74c1 JH |
3164 | #endif |
3165 | ||
3166 | #if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT) | |
aec46f14 AL |
3167 | STATIC I32 S_unpack_rec(pTHX_ struct tempsym* symptr, const char *s, const char *strbeg, const char *strend, const char **new_s) |
3168 | __attribute__nonnull__(pTHX_1) | |
3169 | __attribute__nonnull__(pTHX_2) | |
3170 | __attribute__nonnull__(pTHX_3) | |
3171 | __attribute__nonnull__(pTHX_4); | |
3172 | ||
3173 | STATIC SV ** S_pack_rec(pTHX_ SV *cat, struct tempsym* symptr, SV **beglist, SV **endlist) | |
3174 | __attribute__nonnull__(pTHX_1) | |
3175 | __attribute__nonnull__(pTHX_2) | |
3176 | __attribute__nonnull__(pTHX_3) | |
3177 | __attribute__nonnull__(pTHX_4); | |
3178 | ||
4373e329 | 3179 | STATIC SV* S_mul128(pTHX_ SV *sv, U8 m) |
abb2c242 | 3180 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3181 | |
4373e329 | 3182 | STATIC I32 S_measure_struct(pTHX_ struct tempsym* symptr) |
abb2c242 | 3183 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3184 | |
4373e329 | 3185 | STATIC bool S_next_symbol(pTHX_ struct tempsym* symptr) |
abb2c242 | 3186 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3187 | |
4373e329 | 3188 | STATIC SV* S_is_an_int(pTHX_ const char *s, STRLEN l) |
1df70142 | 3189 | __attribute__warn_unused_result__ |
abb2c242 | 3190 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3191 | |
4373e329 | 3192 | STATIC int S_div128(pTHX_ SV *pnum, bool *done) |
abb2c242 JH |
3193 | __attribute__nonnull__(pTHX_1) |
3194 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3195 | |
4373e329 | 3196 | STATIC const char * S_group_end(pTHX_ const char *pat, const char *patend, char ender) |
abb2c242 JH |
3197 | __attribute__nonnull__(pTHX_1) |
3198 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3199 | |
4373e329 | 3200 | STATIC const char * S_get_num(pTHX_ const char *ppat, I32 *lenptr) |
255164ba | 3201 | __attribute__warn_unused_result__ |
abb2c242 JH |
3202 | __attribute__nonnull__(pTHX_1) |
3203 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3204 | |
aec46f14 AL |
3205 | STATIC bool S_need_utf8(const char *pat, const char *patend) |
3206 | __attribute__nonnull__(1) | |
3207 | __attribute__nonnull__(2); | |
3208 | ||
3209 | STATIC char S_first_symbol(const char *pat, const char *patend) | |
3210 | __attribute__nonnull__(1) | |
3211 | __attribute__nonnull__(2); | |
3212 | ||
864dbfa3 | 3213 | #endif |
1d7c1841 | 3214 | |
0cb96387 | 3215 | #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT) |
901017d6 AL |
3216 | STATIC OP* S_docatch(pTHX_ OP *o) |
3217 | __attribute__warn_unused_result__; | |
3218 | ||
3219 | STATIC void S_docatch_body(pTHX); | |
3220 | STATIC OP* S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit) | |
aec46f14 AL |
3221 | __attribute__warn_unused_result__ |
3222 | __attribute__nonnull__(pTHX_1) | |
3223 | __attribute__nonnull__(pTHX_2) | |
3224 | __attribute__nonnull__(pTHX_3) | |
3225 | __attribute__nonnull__(pTHX_4); | |
901017d6 AL |
3226 | |
3227 | STATIC OP* S_doparseform(pTHX_ SV *sv) | |
aec46f14 AL |
3228 | __attribute__warn_unused_result__ |
3229 | __attribute__nonnull__(pTHX_1); | |
901017d6 AL |
3230 | |
3231 | STATIC bool S_num_overflow(NV value, I32 fldsize, I32 frcsize) | |
3232 | __attribute__warn_unused_result__; | |
3233 | ||
3234 | STATIC I32 S_dopoptoeval(pTHX_ I32 startingblock) | |
3235 | __attribute__warn_unused_result__; | |
3236 | ||
4373e329 | 3237 | STATIC I32 S_dopoptolabel(pTHX_ const char *label) |
901017d6 | 3238 | __attribute__warn_unused_result__ |
abb2c242 | 3239 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3240 | |
901017d6 AL |
3241 | STATIC I32 S_dopoptoloop(pTHX_ I32 startingblock) |
3242 | __attribute__warn_unused_result__; | |
3243 | ||
3244 | STATIC I32 S_dopoptosub(pTHX_ I32 startingblock) | |
3245 | __attribute__warn_unused_result__; | |
3246 | ||
3247 | STATIC I32 S_dopoptosub_at(pTHX_ const PERL_CONTEXT* cxstk, I32 startingblock) | |
aec46f14 AL |
3248 | __attribute__warn_unused_result__ |
3249 | __attribute__nonnull__(pTHX_1); | |
901017d6 | 3250 | |
46c461b5 AL |
3251 | STATIC void S_save_lines(pTHX_ AV *array, SV *sv) |
3252 | __attribute__nonnull__(pTHX_2); | |
3253 | ||
901017d6 AL |
3254 | STATIC OP* S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq) |
3255 | __attribute__warn_unused_result__; | |
3256 | ||
3257 | STATIC PerlIO * S_doopen_pm(pTHX_ const char *name, const char *mode) | |
aec46f14 AL |
3258 | __attribute__warn_unused_result__ |
3259 | __attribute__nonnull__(pTHX_1) | |
3260 | __attribute__nonnull__(pTHX_2); | |
901017d6 | 3261 | |
4373e329 | 3262 | STATIC bool S_path_is_absolute(pTHX_ const char *name) |
901017d6 | 3263 | __attribute__warn_unused_result__ |
abb2c242 | 3264 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3265 | |
864dbfa3 | 3266 | #endif |
1d7c1841 | 3267 | |
0cb96387 | 3268 | #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT) |
a28509cc AL |
3269 | STATIC void S_do_oddball(pTHX_ HV *hash, SV **relem, SV **firstrelem) |
3270 | __attribute__nonnull__(pTHX_1) | |
3271 | __attribute__nonnull__(pTHX_2) | |
3272 | __attribute__nonnull__(pTHX_3); | |
3273 | ||
3274 | STATIC CV* S_get_db_sub(pTHX_ SV **svp, CV *cv) | |
3275 | __attribute__warn_unused_result__ | |
3276 | __attribute__nonnull__(pTHX_1) | |
3277 | __attribute__nonnull__(pTHX_2); | |
3278 | ||
3279 | STATIC SV* S_method_common(pTHX_ SV* meth, U32* hashp) | |
3280 | __attribute__warn_unused_result__ | |
3281 | __attribute__nonnull__(pTHX_1); | |
3282 | ||
864dbfa3 | 3283 | #endif |
1d7c1841 | 3284 | |
0cb96387 | 3285 | #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT) |
b464bac0 AL |
3286 | STATIC OP* S_doform(pTHX_ CV *cv, GV *gv, OP *retop) |
3287 | __attribute__nonnull__(pTHX_1) | |
3288 | __attribute__nonnull__(pTHX_2) | |
3289 | __attribute__nonnull__(pTHX_3); | |
3290 | ||
3291 | STATIC int S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) | |
b464bac0 AL |
3292 | __attribute__nonnull__(pTHX_1); |
3293 | ||
cea2e8a9 | 3294 | # if !defined(HAS_MKDIR) || !defined(HAS_RMDIR) |
b464bac0 AL |
3295 | STATIC int S_dooneliner(pTHX_ const char *cmd, const char *filename) |
3296 | __attribute__warn_unused_result__ | |
3297 | __attribute__nonnull__(pTHX_1) | |
3298 | __attribute__nonnull__(pTHX_2); | |
3299 | ||
cea2e8a9 | 3300 | # endif |
864dbfa3 | 3301 | #endif |
1d7c1841 | 3302 | |
0cb96387 | 3303 | #if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT) |
a28509cc AL |
3304 | STATIC regnode* S_reg(pTHX_ struct RExC_state_t *state, I32 paren, I32 *flagp) |
3305 | __attribute__nonnull__(pTHX_1) | |
3306 | __attribute__nonnull__(pTHX_3); | |
3307 | ||
3308 | STATIC regnode* S_reganode(pTHX_ struct RExC_state_t *state, U8 op, U32 arg) | |
3309 | __attribute__nonnull__(pTHX_1); | |
3310 | ||
3311 | STATIC regnode* S_regatom(pTHX_ struct RExC_state_t *state, I32 *flagp) | |
3312 | __attribute__nonnull__(pTHX_1) | |
3313 | __attribute__nonnull__(pTHX_2); | |
3314 | ||
3315 | STATIC regnode* S_regbranch(pTHX_ struct RExC_state_t *state, I32 *flagp, I32 first) | |
3316 | __attribute__nonnull__(pTHX_1) | |
3317 | __attribute__nonnull__(pTHX_2); | |
3318 | ||
3319 | STATIC void S_reguni(pTHX_ const struct RExC_state_t *state, UV uv, char *s, STRLEN *lenp) | |
3320 | __attribute__nonnull__(pTHX_1) | |
3321 | __attribute__nonnull__(pTHX_3) | |
3322 | __attribute__nonnull__(pTHX_4); | |
3323 | ||
3324 | STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *state) | |
3325 | __attribute__nonnull__(pTHX_1); | |
3326 | ||
a3b680e6 | 3327 | STATIC I32 S_regcurly(pTHX_ const char *) |
abb2c242 JH |
3328 | __attribute__warn_unused_result__ |
3329 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 | 3330 | |
a28509cc AL |
3331 | STATIC regnode* S_reg_node(pTHX_ struct RExC_state_t *state, U8 op) |
3332 | __attribute__nonnull__(pTHX_1); | |
3333 | ||
3334 | STATIC regnode* S_regpiece(pTHX_ struct RExC_state_t *state, I32 *flagp) | |
3335 | __attribute__nonnull__(pTHX_1) | |
3336 | __attribute__nonnull__(pTHX_2); | |
3337 | ||
3338 | STATIC void S_reginsert(pTHX_ struct RExC_state_t *state, U8 op, regnode *opnd) | |
3339 | __attribute__nonnull__(pTHX_1) | |
3340 | __attribute__nonnull__(pTHX_3); | |
3341 | ||
3342 | STATIC void S_regoptail(pTHX_ struct RExC_state_t *state, regnode *p, regnode *val) | |
3343 | __attribute__nonnull__(pTHX_1) | |
3344 | __attribute__nonnull__(pTHX_2) | |
3345 | __attribute__nonnull__(pTHX_3); | |
3346 | ||
3347 | STATIC void S_regtail(pTHX_ struct RExC_state_t *state, regnode *p, regnode *val) | |
3348 | __attribute__nonnull__(pTHX_1) | |
3349 | __attribute__nonnull__(pTHX_2) | |
3350 | __attribute__nonnull__(pTHX_3); | |
3351 | ||
3352 | STATIC char* S_regwhite(pTHX_ char *p, const char *e) | |
3353 | __attribute__nonnull__(pTHX_1) | |
3354 | __attribute__nonnull__(pTHX_2); | |
3355 | ||
3356 | STATIC char* S_nextchar(pTHX_ struct RExC_state_t*) | |
3357 | __attribute__nonnull__(pTHX_1); | |
3358 | ||
8fa7f367 | 3359 | # ifdef DEBUGGING |
aec46f14 AL |
3360 | STATIC regnode* S_dumpuntil(pTHX_ regnode *start, regnode *node, regnode *last, SV* sv, I32 l) |
3361 | __attribute__nonnull__(pTHX_1) | |
3362 | __attribute__nonnull__(pTHX_2) | |
3363 | __attribute__nonnull__(pTHX_4); | |
3364 | ||
504618e9 AL |
3365 | STATIC void S_put_byte(pTHX_ SV* sv, int c) |
3366 | __attribute__nonnull__(pTHX_1); | |
3367 | ||
8fa7f367 | 3368 | # endif |
aec46f14 AL |
3369 | STATIC void S_scan_commit(pTHX_ struct RExC_state_t*, struct scan_data_t *data) |
3370 | __attribute__nonnull__(pTHX_1) | |
3371 | __attribute__nonnull__(pTHX_2); | |
3372 | ||
a28509cc AL |
3373 | STATIC void S_cl_anything(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) |
3374 | __attribute__nonnull__(pTHX_1) | |
3375 | __attribute__nonnull__(pTHX_2); | |
3376 | ||
3377 | STATIC int S_cl_is_anything(pTHX_ const struct regnode_charclass_class *cl) | |
3378 | __attribute__nonnull__(pTHX_1); | |
3379 | ||
3380 | STATIC void S_cl_init(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) | |
3381 | __attribute__nonnull__(pTHX_1) | |
3382 | __attribute__nonnull__(pTHX_2); | |
3383 | ||
3384 | STATIC void S_cl_init_zero(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) | |
3385 | __attribute__nonnull__(pTHX_1) | |
3386 | __attribute__nonnull__(pTHX_2); | |
3387 | ||
3388 | STATIC void S_cl_and(pTHX_ struct regnode_charclass_class *cl, const struct regnode_charclass_class *and_with) | |
46c461b5 AL |
3389 | __attribute__nonnull__(pTHX_1) |
3390 | __attribute__nonnull__(pTHX_2); | |
a28509cc AL |
3391 | |
3392 | STATIC void S_cl_or(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with) | |
3393 | __attribute__nonnull__(pTHX_1) | |
3394 | __attribute__nonnull__(pTHX_2) | |
3395 | __attribute__nonnull__(pTHX_3); | |
3396 | ||
aec46f14 AL |
3397 | STATIC I32 S_study_chunk(pTHX_ struct RExC_state_t* pRExC_state, regnode **scanp, I32 *deltap, regnode *last, struct scan_data_t *data, U32 flags, U32 depth) |
3398 | __attribute__nonnull__(pTHX_1) | |
3399 | __attribute__nonnull__(pTHX_2) | |
3400 | __attribute__nonnull__(pTHX_3) | |
9a957fbc | 3401 | __attribute__nonnull__(pTHX_4); |
aec46f14 AL |
3402 | |
3403 | STATIC I32 S_add_data(pTHX_ struct RExC_state_t*, I32 n, const char *s) | |
3404 | __attribute__nonnull__(pTHX_1) | |
3405 | __attribute__nonnull__(pTHX_3); | |
3406 | ||
f54cb97a | 3407 | STATIC void S_re_croak2(pTHX_ const char* pat1, const char* pat2, ...) |
46c461b5 AL |
3408 | __attribute__noreturn__ |
3409 | __attribute__nonnull__(pTHX_1) | |
3410 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3411 | |
aec46f14 AL |
3412 | STATIC I32 S_regpposixcc(pTHX_ struct RExC_state_t*, I32 value) |
3413 | __attribute__nonnull__(pTHX_1); | |
3414 | ||
3415 | STATIC void S_checkposixcc(pTHX_ struct RExC_state_t*) | |
3416 | __attribute__nonnull__(pTHX_1); | |
3417 | ||
3418 | ||
3419 | STATIC I32 S_make_trie(pTHX_ struct RExC_state_t*, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 flags) | |
3420 | __attribute__nonnull__(pTHX_1) | |
3421 | __attribute__nonnull__(pTHX_2) | |
3422 | __attribute__nonnull__(pTHX_3) | |
3423 | __attribute__nonnull__(pTHX_4) | |
3424 | __attribute__nonnull__(pTHX_5); | |
a3621e74 | 3425 | |
864dbfa3 | 3426 | #endif |
1d7c1841 | 3427 | |
0cb96387 | 3428 | #if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT) |
a3b680e6 | 3429 | STATIC I32 S_regmatch(pTHX_ regnode *prog) |
abb2c242 JH |
3430 | __attribute__warn_unused_result__ |
3431 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3432 | |
3433 | STATIC I32 S_regrepeat(pTHX_ const regnode *p, I32 max) | |
abb2c242 JH |
3434 | __attribute__warn_unused_result__ |
3435 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3436 | |
3437 | STATIC I32 S_regrepeat_hard(pTHX_ regnode *p, I32 max, I32 *lp) | |
abb2c242 JH |
3438 | __attribute__warn_unused_result__ |
3439 | __attribute__nonnull__(pTHX_1) | |
3440 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3441 | |
3442 | STATIC I32 S_regtry(pTHX_ regexp *prog, char *startpos) | |
46c461b5 AL |
3443 | __attribute__warn_unused_result__ |
3444 | __attribute__nonnull__(pTHX_1) | |
3445 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
3446 | |
3447 | STATIC bool S_reginclass(pTHX_ const regnode *n, const U8 *p, STRLEN *lenp, bool do_utf8sv_is_utf8) | |
abb2c242 JH |
3448 | __attribute__warn_unused_result__ |
3449 | __attribute__nonnull__(pTHX_1) | |
3450 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 3451 | |
cea2e8a9 GS |
3452 | STATIC CHECKPOINT S_regcppush(pTHX_ I32 parenfloor); |
3453 | STATIC char* S_regcppop(pTHX); | |
3454 | STATIC char* S_regcp_set_to(pTHX_ I32 ss); | |
46c461b5 AL |
3455 | STATIC void S_cache_re(pTHX_ regexp *prog) |
3456 | __attribute__nonnull__(pTHX_1); | |
3457 | ||
a3b680e6 | 3458 | STATIC U8* S_reghop(pTHX_ U8 *pos, I32 off) |
aec46f14 AL |
3459 | __attribute__warn_unused_result__ |
3460 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3461 | |
3462 | STATIC U8* S_reghop3(pTHX_ U8 *pos, I32 off, U8 *lim) | |
aec46f14 AL |
3463 | __attribute__warn_unused_result__ |
3464 | __attribute__nonnull__(pTHX_1) | |
3465 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3466 | |
3467 | STATIC U8* S_reghopmaybe(pTHX_ U8 *pos, I32 off) | |
aec46f14 AL |
3468 | __attribute__warn_unused_result__ |
3469 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3470 | |
3471 | STATIC U8* S_reghopmaybe3(pTHX_ U8 *pos, I32 off, U8 *lim) | |
abb2c242 JH |
3472 | __attribute__warn_unused_result__ |
3473 | __attribute__nonnull__(pTHX_1) | |
3474 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3475 | |
3476 | STATIC char* S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, const char *strend, I32 norun) | |
abb2c242 JH |
3477 | __attribute__warn_unused_result__ |
3478 | __attribute__nonnull__(pTHX_1) | |
3479 | __attribute__nonnull__(pTHX_2) | |
3480 | __attribute__nonnull__(pTHX_3) | |
3481 | __attribute__nonnull__(pTHX_4); | |
a3b680e6 AL |
3482 | |
3483 | STATIC void S_to_utf8_substr(pTHX_ regexp * prog) | |
abb2c242 | 3484 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
3485 | |
3486 | STATIC void S_to_byte_substr(pTHX_ regexp * prog) | |
abb2c242 | 3487 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 3488 | |
864dbfa3 | 3489 | #endif |
1d7c1841 | 3490 | |
bd16a5f0 | 3491 | #if defined(PERL_IN_DUMP_C) || defined(PERL_DECL_PROT) |
53a2efa2 | 3492 | STATIC CV* S_deb_curcv(pTHX_ I32 ix); |
46c461b5 AL |
3493 | STATIC void S_debprof(pTHX_ const OP *o) |
3494 | __attribute__nonnull__(pTHX_1); | |
3495 | ||
864dbfa3 | 3496 | #endif |
1d7c1841 | 3497 | |
0cb96387 | 3498 | #if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT) |
46c461b5 AL |
3499 | STATIC SV* S_save_scalar_at(pTHX_ SV **sptr) |
3500 | __attribute__nonnull__(pTHX_1); | |
3501 | ||
864dbfa3 | 3502 | #endif |
1d7c1841 | 3503 | |
e15faf7d NC |
3504 | #if defined(PERL_IN_GV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT) |
3505 | PERL_CALLCONV void Perl_sv_add_backref(pTHX_ SV *tsv, SV *sv) | |
3506 | __attribute__nonnull__(pTHX_1) | |
3507 | __attribute__nonnull__(pTHX_2); | |
3508 | ||
3509 | #endif | |
3510 | ||
0cb96387 | 3511 | #if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT) |
aec46f14 AL |
3512 | STATIC char * S_uiv_2buf(char *buf, IV iv, UV uv, int is_uv, char **peob) |
3513 | __attribute__warn_unused_result__ | |
3514 | __attribute__nonnull__(1) | |
3515 | __attribute__nonnull__(5); | |
3516 | ||
1b6737cc AL |
3517 | STATIC IV S_asIV(pTHX_ SV* sv) |
3518 | __attribute__warn_unused_result__ | |
3519 | __attribute__nonnull__(pTHX_1); | |
3520 | ||
3521 | STATIC UV S_asUV(pTHX_ SV* sv) | |
3522 | __attribute__warn_unused_result__ | |
3523 | __attribute__nonnull__(pTHX_1); | |
3524 | ||
3525 | STATIC void S_sv_unglob(pTHX_ SV* sv) | |
3526 | __attribute__nonnull__(pTHX_1); | |
3527 | ||
3528 | STATIC void S_not_a_number(pTHX_ SV *sv) | |
3529 | __attribute__nonnull__(pTHX_1); | |
3530 | ||
3531 | STATIC I32 S_visit(pTHX_ SVFUNC_t f, U32 flags, U32 mask) | |
3532 | __attribute__nonnull__(pTHX_1); | |
3533 | ||
e15faf7d | 3534 | STATIC void S_sv_del_backref(pTHX_ SV *target, SV *ref) |
1b6737cc AL |
3535 | __attribute__nonnull__(pTHX_1) |
3536 | __attribute__nonnull__(pTHX_2); | |
3537 | ||
be2ef075 NC |
3538 | STATIC SV * S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ, SV *keyname, I32 aindex, int subscript_type) |
3539 | __attribute__warn_unused_result__; | |
a3b680e6 | 3540 | |
8fa7f367 | 3541 | # ifdef DEBUGGING |
46c461b5 AL |
3542 | STATIC void S_del_sv(pTHX_ SV *p) |
3543 | __attribute__nonnull__(pTHX_1); | |
3544 | ||
cea2e8a9 | 3545 | # endif |
28e5dec8 | 3546 | # if !defined(NV_PRESERVES_UV) |
46c461b5 AL |
3547 | STATIC int S_sv_2iuv_non_preserve(pTHX_ SV *sv, I32 numtype) |
3548 | __attribute__nonnull__(pTHX_1); | |
3549 | ||
28e5dec8 | 3550 | # endif |
a3b680e6 | 3551 | STATIC I32 S_expect_number(pTHX_ char** pattern) |
abb2c242 JH |
3552 | __attribute__warn_unused_result__ |
3553 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 | 3554 | |
9cbac4c7 | 3555 | # |
245d4a47 | 3556 | STATIC bool S_utf8_mg_pos(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 *offsetp, I32 uoff, const U8 **sp, const U8 *start, const U8 *send) |
abb2c242 JH |
3557 | __attribute__nonnull__(pTHX_1) |
3558 | __attribute__nonnull__(pTHX_2) | |
3559 | __attribute__nonnull__(pTHX_3) | |
3560 | __attribute__nonnull__(pTHX_5) | |
3561 | __attribute__nonnull__(pTHX_7) | |
3562 | __attribute__nonnull__(pTHX_8) | |
3563 | __attribute__nonnull__(pTHX_9); | |
a3b680e6 | 3564 | |
245d4a47 | 3565 | STATIC bool S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 offsetp, const U8 *s, const U8 *start) |
abb2c242 JH |
3566 | __attribute__nonnull__(pTHX_1) |
3567 | __attribute__nonnull__(pTHX_2) | |
3568 | __attribute__nonnull__(pTHX_3) | |
3569 | __attribute__nonnull__(pTHX_6) | |
3570 | __attribute__nonnull__(pTHX_7); | |
a3b680e6 | 3571 | |
f8c7b90f | 3572 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 AL |
3573 | STATIC void S_sv_release_COW(pTHX_ SV *sv, const char *pvx, STRLEN len, SV *after) |
3574 | __attribute__nonnull__(pTHX_1) | |
3575 | __attribute__nonnull__(pTHX_2) | |
3576 | __attribute__nonnull__(pTHX_4); | |
3577 | ||
765f542d | 3578 | #endif |
cea2e8a9 | 3579 | #endif |
1d7c1841 | 3580 | |
0cb96387 | 3581 | #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) |
cea2e8a9 GS |
3582 | STATIC void S_check_uni(pTHX); |
3583 | STATIC void S_force_next(pTHX_ I32 type); | |
46c461b5 AL |
3584 | STATIC char* S_force_version(pTHX_ char *start, int guessin |