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