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