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, |
83706693 | 6 | * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 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 !!!!!!! | |
d7cb65f2 FC |
12 | * This file is built by regen/embed.pl from data in embed.fnc, |
13 | * regen/embed.pl, pp.sym, intrpvar.h, and perlvars.h. | |
f5e3445d RGS |
14 | * Any changes made here will be lost! |
15 | * | |
16 | * Edit those files and run 'make regen_headers' to effect changes. | |
17 | */ | |
1d7c1841 | 18 | |
1d7c1841 | 19 | START_EXTERN_C |
e8a67806 NC |
20 | PERL_CALLCONV int Perl_Gv_AMupdate(pTHX_ HV* stash, bool destructing) |
21 | __attribute__nonnull__(pTHX_1); | |
22 | #define PERL_ARGS_ASSERT_GV_AMUPDATE \ | |
23 | assert(stash) | |
255164ba | 24 | |
e8a67806 NC |
25 | PERL_CALLCONV const char * Perl_PerlIO_context_layers(pTHX_ const char *mode); |
26 | PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags) | |
27 | __attribute__nonnull__(pTHX_1); | |
28 | #define PERL_ARGS_ASSERT_ALLOCMY \ | |
29 | assert(name) | |
255164ba | 30 | |
46c461b5 AL |
31 | PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir) |
32 | __attribute__nonnull__(pTHX_1) | |
33 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
34 | #define PERL_ARGS_ASSERT_AMAGIC_CALL \ |
35 | assert(left); assert(right) | |
46c461b5 | 36 | |
255164ba DM |
37 | PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp) |
38 | __attribute__nonnull__(pTHX_2) | |
39 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
40 | #define PERL_ARGS_ASSERT_APPLY \ |
41 | assert(mark); assert(sp) | |
255164ba DM |
42 | |
43 | PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len) | |
44 | __attribute__nonnull__(pTHX_1) | |
45 | __attribute__nonnull__(pTHX_2) | |
46 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
47 | #define PERL_ARGS_ASSERT_APPLY_ATTRS_STRING \ |
48 | assert(stashpv); assert(cv); assert(attrstr) | |
255164ba | 49 | |
e8a67806 NC |
50 | PERL_CALLCONV void Perl_atfork_lock(void); |
51 | PERL_CALLCONV void Perl_atfork_unlock(void); | |
52 | PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV *av) | |
53 | __attribute__nonnull__(pTHX_1); | |
54 | #define PERL_ARGS_ASSERT_AV_ARYLEN_P \ | |
55 | assert(av) | |
56 | ||
4048f010 | 57 | PERL_CALLCONV void Perl_av_clear(pTHX_ AV *av) |
7a5b473e | 58 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
59 | #define PERL_ARGS_ASSERT_AV_CLEAR \ |
60 | assert(av) | |
7a5b473e | 61 | |
e8a67806 NC |
62 | PERL_CALLCONV void Perl_av_create_and_push(pTHX_ AV **const avp, SV *const val) |
63 | __attribute__nonnull__(pTHX_1) | |
64 | __attribute__nonnull__(pTHX_2); | |
65 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_PUSH \ | |
66 | assert(avp); assert(val) | |
67 | ||
68 | PERL_CALLCONV SV** Perl_av_create_and_unshift_one(pTHX_ AV **const avp, SV *const val) | |
69 | __attribute__nonnull__(pTHX_1) | |
70 | __attribute__nonnull__(pTHX_2); | |
71 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_UNSHIFT_ONE \ | |
72 | assert(avp); assert(val) | |
73 | ||
4048f010 | 74 | PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV *av, I32 key, I32 flags) |
7a5b473e | 75 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
76 | #define PERL_ARGS_ASSERT_AV_DELETE \ |
77 | assert(av) | |
7a5b473e | 78 | |
4048f010 | 79 | PERL_CALLCONV bool Perl_av_exists(pTHX_ AV *av, I32 key) |
7a5b473e AL |
80 | __attribute__warn_unused_result__ |
81 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
82 | #define PERL_ARGS_ASSERT_AV_EXISTS \ |
83 | assert(av) | |
a3b680e6 | 84 | |
4048f010 | 85 | PERL_CALLCONV void Perl_av_extend(pTHX_ AV *av, I32 key) |
abb2c242 | 86 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
87 | #define PERL_ARGS_ASSERT_AV_EXTEND \ |
88 | assert(av) | |
a3b680e6 | 89 | |
4048f010 | 90 | PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV *av, I32 key, I32 lval) |
7a5b473e AL |
91 | __attribute__warn_unused_result__ |
92 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
93 | #define PERL_ARGS_ASSERT_AV_FETCH \ |
94 | assert(av) | |
a3b680e6 | 95 | |
4048f010 | 96 | PERL_CALLCONV void Perl_av_fill(pTHX_ AV *av, I32 fill) |
255164ba | 97 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
98 | #define PERL_ARGS_ASSERT_AV_FILL \ |
99 | assert(av) | |
255164ba | 100 | |
e8a67806 NC |
101 | PERL_CALLCONV IV* Perl_av_iter_p(pTHX_ AV *av) |
102 | __attribute__nonnull__(pTHX_1); | |
103 | #define PERL_ARGS_ASSERT_AV_ITER_P \ | |
104 | assert(av) | |
105 | ||
bb5dd93d | 106 | PERL_CALLCONV I32 Perl_av_len(pTHX_ AV *av) |
255164ba DM |
107 | __attribute__warn_unused_result__ |
108 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
109 | #define PERL_ARGS_ASSERT_AV_LEN \ |
110 | assert(av) | |
a3b680e6 | 111 | |
4048f010 | 112 | PERL_CALLCONV AV* Perl_av_make(pTHX_ I32 size, SV **strp) |
abb2c242 JH |
113 | __attribute__warn_unused_result__ |
114 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
115 | #define PERL_ARGS_ASSERT_AV_MAKE \ |
116 | assert(strp) | |
a3b680e6 | 117 | |
4048f010 | 118 | PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV *av) |
7a5b473e | 119 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
120 | #define PERL_ARGS_ASSERT_AV_POP \ |
121 | assert(av) | |
7a5b473e | 122 | |
4048f010 | 123 | PERL_CALLCONV void Perl_av_push(pTHX_ AV *av, SV *val) |
7a5b473e | 124 | __attribute__nonnull__(pTHX_1) |
255164ba | 125 | __attribute__nonnull__(pTHX_2); |
7918f24d NC |
126 | #define PERL_ARGS_ASSERT_AV_PUSH \ |
127 | assert(av); assert(val) | |
255164ba | 128 | |
4048f010 | 129 | PERL_CALLCONV void Perl_av_reify(pTHX_ AV *av) |
255164ba | 130 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
131 | #define PERL_ARGS_ASSERT_AV_REIFY \ |
132 | assert(av) | |
255164ba | 133 | |
4048f010 | 134 | PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV *av) |
7a5b473e AL |
135 | __attribute__warn_unused_result__ |
136 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
137 | #define PERL_ARGS_ASSERT_AV_SHIFT \ |
138 | assert(av) | |
7a5b473e | 139 | |
4048f010 | 140 | PERL_CALLCONV SV** Perl_av_store(pTHX_ AV *av, I32 key, SV *val) |
7a5b473e | 141 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
142 | #define PERL_ARGS_ASSERT_AV_STORE \ |
143 | assert(av) | |
7a5b473e | 144 | |
4048f010 | 145 | PERL_CALLCONV void Perl_av_undef(pTHX_ AV *av) |
7a5b473e | 146 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
147 | #define PERL_ARGS_ASSERT_AV_UNDEF \ |
148 | assert(av) | |
7a5b473e | 149 | |
4048f010 | 150 | PERL_CALLCONV void Perl_av_unshift(pTHX_ AV *av, I32 num) |
7a5b473e | 151 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
152 | #define PERL_ARGS_ASSERT_AV_UNSHIFT \ |
153 | assert(av) | |
a3b680e6 | 154 | |
4048f010 | 155 | PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP *left, OP *right) |
abb2c242 JH |
156 | __attribute__warn_unused_result__ |
157 | __attribute__nonnull__(pTHX_2) | |
158 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
159 | #define PERL_ARGS_ASSERT_BIND_MATCH \ |
160 | assert(left); assert(right) | |
a3b680e6 AL |
161 | |
162 | PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq) | |
6472dca1 | 163 | __attribute__warn_unused_result__; |
a3b680e6 AL |
164 | |
165 | PERL_CALLCONV I32 Perl_block_gimme(pTHX) | |
abb2c242 | 166 | __attribute__warn_unused_result__; |
a3b680e6 AL |
167 | |
168 | PERL_CALLCONV int Perl_block_start(pTHX_ int full) | |
abb2c242 | 169 | __attribute__warn_unused_result__; |
a3b680e6 | 170 | |
bb6c22e7 BM |
171 | PERL_CALLCONV void Perl_blockhook_register(pTHX_ BHK *hk) |
172 | __attribute__nonnull__(pTHX_1); | |
173 | #define PERL_ARGS_ASSERT_BLOCKHOOK_REGISTER \ | |
174 | assert(hk) | |
175 | ||
36ed5425 | 176 | PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); |
e8a67806 NC |
177 | PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX); |
178 | PERL_CALLCONV void Perl_boot_core_mro(pTHX); | |
179 | PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) | |
180 | __attribute__nonnull__(pTHX_1) | |
181 | __attribute__nonnull__(pTHX_2); | |
182 | #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8 \ | |
183 | assert(s); assert(len) | |
184 | ||
185 | PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) | |
186 | __attribute__nonnull__(pTHX_1) | |
187 | __attribute__nonnull__(pTHX_2); | |
188 | #define PERL_ARGS_ASSERT_BYTES_TO_UTF8 \ | |
189 | assert(s); assert(len) | |
190 | ||
191 | PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv) | |
192 | __attribute__nonnull__(pTHX_1) | |
193 | __attribute__nonnull__(pTHX_3); | |
194 | #define PERL_ARGS_ASSERT_CALL_ARGV \ | |
195 | assert(sub_name); assert(argv) | |
196 | ||
197 | PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr); | |
4048f010 | 198 | PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV *paramList) |
abb2c242 | 199 | __attribute__nonnull__(pTHX_2); |
7918f24d NC |
200 | #define PERL_ARGS_ASSERT_CALL_LIST \ |
201 | assert(paramList) | |
a3b680e6 | 202 | |
e8a67806 NC |
203 | PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags) |
204 | __attribute__nonnull__(pTHX_1); | |
205 | #define PERL_ARGS_ASSERT_CALL_METHOD \ | |
206 | assert(methname) | |
207 | ||
208 | PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags) | |
209 | __attribute__nonnull__(pTHX_1); | |
210 | #define PERL_ARGS_ASSERT_CALL_PV \ | |
211 | assert(sub_name) | |
212 | ||
213 | PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, VOL I32 flags) | |
214 | __attribute__nonnull__(pTHX_1); | |
215 | #define PERL_ARGS_ASSERT_CALL_SV \ | |
216 | assert(sv) | |
217 | ||
2fefa6c7 | 218 | PERL_CALLCONV const PERL_CONTEXT * Perl_caller_cx(pTHX_ I32 level, const PERL_CONTEXT **dbcxp); |
e8a67806 NC |
219 | PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size) |
220 | __attribute__malloc__ | |
221 | __attribute__warn_unused_result__; | |
222 | ||
ae1951c1 | 223 | PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t* statbufp) |
abb2c242 JH |
224 | __attribute__warn_unused_result__ |
225 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
226 | #define PERL_ARGS_ASSERT_CANDO \ |
227 | assert(statbufp) | |
f54cb97a | 228 | |
53c1dcc0 AL |
229 | PERL_CALLCONV I32 Perl_cast_i32(pTHX_ NV f) |
230 | __attribute__warn_unused_result__; | |
231 | ||
232 | PERL_CALLCONV IV Perl_cast_iv(pTHX_ NV f) | |
233 | __attribute__warn_unused_result__; | |
234 | ||
e8a67806 | 235 | PERL_CALLCONV U32 Perl_cast_ulong(pTHX_ NV f) |
53c1dcc0 AL |
236 | __attribute__warn_unused_result__; |
237 | ||
e8a67806 | 238 | PERL_CALLCONV UV Perl_cast_uv(pTHX_ NV f) |
53c1dcc0 AL |
239 | __attribute__warn_unused_result__; |
240 | ||
e8a67806 NC |
241 | PERL_CALLCONV OP * Perl_ck_anoncode(pTHX_ OP *o) |
242 | __attribute__warn_unused_result__ | |
2fefa6c7 | 243 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
244 | #define PERL_ARGS_ASSERT_CK_ANONCODE \ |
245 | assert(o) | |
2fefa6c7 | 246 | |
e8a67806 NC |
247 | PERL_CALLCONV OP * Perl_ck_bitop(pTHX_ OP *o) |
248 | __attribute__warn_unused_result__ | |
249 | __attribute__nonnull__(pTHX_1); | |
250 | #define PERL_ARGS_ASSERT_CK_BITOP \ | |
251 | assert(o) | |
2fefa6c7 | 252 | |
e8a67806 NC |
253 | PERL_CALLCONV OP * Perl_ck_chdir(pTHX_ OP *o) |
254 | __attribute__warn_unused_result__ | |
255 | __attribute__nonnull__(pTHX_1); | |
256 | #define PERL_ARGS_ASSERT_CK_CHDIR \ | |
257 | assert(o) | |
2fefa6c7 | 258 | |
e8a67806 NC |
259 | PERL_CALLCONV OP * Perl_ck_concat(pTHX_ OP *o) |
260 | __attribute__warn_unused_result__ | |
261 | __attribute__nonnull__(pTHX_1); | |
262 | #define PERL_ARGS_ASSERT_CK_CONCAT \ | |
263 | assert(o) | |
9dcc53ea | 264 | |
e8a67806 NC |
265 | PERL_CALLCONV OP * Perl_ck_defined(pTHX_ OP *o) |
266 | __attribute__warn_unused_result__ | |
c5df3096 | 267 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
268 | #define PERL_ARGS_ASSERT_CK_DEFINED \ |
269 | assert(o) | |
f54cb97a | 270 | |
e8a67806 NC |
271 | PERL_CALLCONV OP * Perl_ck_delete(pTHX_ OP *o) |
272 | __attribute__warn_unused_result__ | |
273 | __attribute__nonnull__(pTHX_1); | |
274 | #define PERL_ARGS_ASSERT_CK_DELETE \ | |
275 | assert(o) | |
f54cb97a | 276 | |
e8a67806 NC |
277 | PERL_CALLCONV OP * Perl_ck_die(pTHX_ OP *o) |
278 | __attribute__warn_unused_result__ | |
279 | __attribute__nonnull__(pTHX_1); | |
280 | #define PERL_ARGS_ASSERT_CK_DIE \ | |
281 | assert(o) | |
f54cb97a | 282 | |
e8a67806 NC |
283 | PERL_CALLCONV OP * Perl_ck_each(pTHX_ OP *o) |
284 | __attribute__warn_unused_result__ | |
285 | __attribute__nonnull__(pTHX_1); | |
286 | #define PERL_ARGS_ASSERT_CK_EACH \ | |
287 | assert(o) | |
f54cb97a | 288 | |
d9088386 Z |
289 | PERL_CALLCONV OP* Perl_ck_entersub_args_list(pTHX_ OP *entersubop) |
290 | __attribute__nonnull__(pTHX_1); | |
291 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_LIST \ | |
292 | assert(entersubop) | |
293 | ||
294 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto(pTHX_ OP *entersubop, GV *namegv, SV *protosv) | |
295 | __attribute__nonnull__(pTHX_1) | |
296 | __attribute__nonnull__(pTHX_2) | |
297 | __attribute__nonnull__(pTHX_3); | |
298 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO \ | |
299 | assert(entersubop); assert(namegv); assert(protosv) | |
300 | ||
301 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto_or_list(pTHX_ OP *entersubop, GV *namegv, SV *protosv) | |
302 | __attribute__nonnull__(pTHX_1) | |
303 | __attribute__nonnull__(pTHX_2) | |
304 | __attribute__nonnull__(pTHX_3); | |
305 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO_OR_LIST \ | |
306 | assert(entersubop); assert(namegv); assert(protosv) | |
307 | ||
e8a67806 NC |
308 | PERL_CALLCONV OP * Perl_ck_eof(pTHX_ OP *o) |
309 | __attribute__warn_unused_result__ | |
cbf82dd0 | 310 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
311 | #define PERL_ARGS_ASSERT_CK_EOF \ |
312 | assert(o) | |
cbf82dd0 | 313 | |
e8a67806 NC |
314 | PERL_CALLCONV OP * Perl_ck_eval(pTHX_ OP *o) |
315 | __attribute__warn_unused_result__ | |
abb2c242 | 316 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
317 | #define PERL_ARGS_ASSERT_CK_EVAL \ |
318 | assert(o) | |
f54cb97a | 319 | |
e8a67806 | 320 | PERL_CALLCONV OP * Perl_ck_exec(pTHX_ OP *o) |
62d55b22 NC |
321 | __attribute__warn_unused_result__ |
322 | __attribute__nonnull__(pTHX_1); | |
e8a67806 NC |
323 | #define PERL_ARGS_ASSERT_CK_EXEC \ |
324 | assert(o) | |
62d55b22 | 325 | |
e8a67806 NC |
326 | PERL_CALLCONV OP * Perl_ck_exists(pTHX_ OP *o) |
327 | __attribute__warn_unused_result__ | |
328 | __attribute__nonnull__(pTHX_1); | |
329 | #define PERL_ARGS_ASSERT_CK_EXISTS \ | |
330 | assert(o) | |
255164ba | 331 | |
e8a67806 NC |
332 | PERL_CALLCONV OP * Perl_ck_exit(pTHX_ OP *o) |
333 | __attribute__warn_unused_result__ | |
334 | __attribute__nonnull__(pTHX_1); | |
335 | #define PERL_ARGS_ASSERT_CK_EXIT \ | |
336 | assert(o) | |
255164ba | 337 | |
e8a67806 NC |
338 | PERL_CALLCONV OP * Perl_ck_ftst(pTHX_ OP *o) |
339 | __attribute__warn_unused_result__ | |
255164ba | 340 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
341 | #define PERL_ARGS_ASSERT_CK_FTST \ |
342 | assert(o) | |
255164ba | 343 | |
e8a67806 NC |
344 | PERL_CALLCONV OP * Perl_ck_fun(pTHX_ OP *o) |
345 | __attribute__warn_unused_result__ | |
255164ba | 346 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
347 | #define PERL_ARGS_ASSERT_CK_FUN \ |
348 | assert(o) | |
255164ba | 349 | |
e8a67806 NC |
350 | PERL_CALLCONV OP * Perl_ck_glob(pTHX_ OP *o) |
351 | __attribute__warn_unused_result__ | |
255164ba | 352 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
353 | #define PERL_ARGS_ASSERT_CK_GLOB \ |
354 | assert(o) | |
255164ba | 355 | |
e8a67806 | 356 | PERL_CALLCONV OP * Perl_ck_grep(pTHX_ OP *o) |
255164ba | 357 | __attribute__warn_unused_result__ |
e8a67806 NC |
358 | __attribute__nonnull__(pTHX_1); |
359 | #define PERL_ARGS_ASSERT_CK_GREP \ | |
360 | assert(o) | |
255164ba | 361 | |
e8a67806 | 362 | PERL_CALLCONV OP * Perl_ck_index(pTHX_ OP *o) |
abb2c242 | 363 | __attribute__warn_unused_result__ |
e8a67806 NC |
364 | __attribute__nonnull__(pTHX_1); |
365 | #define PERL_ARGS_ASSERT_CK_INDEX \ | |
366 | assert(o) | |
f54cb97a | 367 | |
e8a67806 | 368 | PERL_CALLCONV OP * Perl_ck_join(pTHX_ OP *o) |
abb2c242 | 369 | __attribute__warn_unused_result__ |
e8a67806 NC |
370 | __attribute__nonnull__(pTHX_1); |
371 | #define PERL_ARGS_ASSERT_CK_JOIN \ | |
372 | assert(o) | |
f54cb97a | 373 | |
e8a67806 | 374 | PERL_CALLCONV OP * Perl_ck_lfun(pTHX_ OP *o) |
abb2c242 | 375 | __attribute__warn_unused_result__ |
e8a67806 NC |
376 | __attribute__nonnull__(pTHX_1); |
377 | #define PERL_ARGS_ASSERT_CK_LFUN \ | |
378 | assert(o) | |
f54cb97a | 379 | |
e8a67806 | 380 | PERL_CALLCONV OP * Perl_ck_listiob(pTHX_ OP *o) |
abb2c242 | 381 | __attribute__warn_unused_result__ |
e8a67806 NC |
382 | __attribute__nonnull__(pTHX_1); |
383 | #define PERL_ARGS_ASSERT_CK_LISTIOB \ | |
384 | assert(o) | |
f54cb97a | 385 | |
e8a67806 | 386 | PERL_CALLCONV OP * Perl_ck_match(pTHX_ OP *o) |
abb2c242 | 387 | __attribute__warn_unused_result__ |
e8a67806 NC |
388 | __attribute__nonnull__(pTHX_1); |
389 | #define PERL_ARGS_ASSERT_CK_MATCH \ | |
390 | assert(o) | |
f54cb97a | 391 | |
e8a67806 NC |
392 | PERL_CALLCONV OP * Perl_ck_method(pTHX_ OP *o) |
393 | __attribute__warn_unused_result__ | |
394 | __attribute__nonnull__(pTHX_1); | |
395 | #define PERL_ARGS_ASSERT_CK_METHOD \ | |
396 | assert(o) | |
a3b680e6 | 397 | |
e8a67806 NC |
398 | PERL_CALLCONV OP * Perl_ck_null(pTHX_ OP *o) |
399 | __attribute__warn_unused_result__ | |
255164ba | 400 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
401 | #define PERL_ARGS_ASSERT_CK_NULL \ |
402 | assert(o) | |
255164ba | 403 | |
e8a67806 NC |
404 | PERL_CALLCONV OP * Perl_ck_open(pTHX_ OP *o) |
405 | __attribute__warn_unused_result__ | |
255164ba | 406 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
407 | #define PERL_ARGS_ASSERT_CK_OPEN \ |
408 | assert(o) | |
f54cb97a | 409 | |
e8a67806 NC |
410 | PERL_CALLCONV OP * Perl_ck_readline(pTHX_ OP *o) |
411 | __attribute__warn_unused_result__ | |
abb2c242 | 412 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 413 | #define PERL_ARGS_ASSERT_CK_READLINE \ |
7918f24d | 414 | assert(o) |
f54cb97a | 415 | |
e8a67806 NC |
416 | PERL_CALLCONV OP * Perl_ck_repeat(pTHX_ OP *o) |
417 | __attribute__warn_unused_result__ | |
418 | __attribute__nonnull__(pTHX_1); | |
419 | #define PERL_ARGS_ASSERT_CK_REPEAT \ | |
420 | assert(o) | |
421 | ||
422 | PERL_CALLCONV OP * Perl_ck_require(pTHX_ OP *o) | |
423 | __attribute__warn_unused_result__ | |
424 | __attribute__nonnull__(pTHX_1); | |
425 | #define PERL_ARGS_ASSERT_CK_REQUIRE \ | |
426 | assert(o) | |
427 | ||
428 | PERL_CALLCONV OP * Perl_ck_return(pTHX_ OP *o) | |
429 | __attribute__warn_unused_result__ | |
430 | __attribute__nonnull__(pTHX_1); | |
431 | #define PERL_ARGS_ASSERT_CK_RETURN \ | |
432 | assert(o) | |
433 | ||
434 | PERL_CALLCONV OP * Perl_ck_rfun(pTHX_ OP *o) | |
435 | __attribute__warn_unused_result__ | |
436 | __attribute__nonnull__(pTHX_1); | |
437 | #define PERL_ARGS_ASSERT_CK_RFUN \ | |
438 | assert(o) | |
439 | ||
440 | PERL_CALLCONV OP * Perl_ck_rvconst(pTHX_ OP *o) | |
441 | __attribute__warn_unused_result__ | |
442 | __attribute__nonnull__(pTHX_1); | |
443 | #define PERL_ARGS_ASSERT_CK_RVCONST \ | |
444 | assert(o) | |
445 | ||
446 | PERL_CALLCONV OP * Perl_ck_sassign(pTHX_ OP *o) | |
447 | __attribute__warn_unused_result__ | |
448 | __attribute__nonnull__(pTHX_1); | |
449 | #define PERL_ARGS_ASSERT_CK_SASSIGN \ | |
450 | assert(o) | |
451 | ||
452 | PERL_CALLCONV OP * Perl_ck_select(pTHX_ OP *o) | |
453 | __attribute__warn_unused_result__ | |
454 | __attribute__nonnull__(pTHX_1); | |
455 | #define PERL_ARGS_ASSERT_CK_SELECT \ | |
456 | assert(o) | |
457 | ||
458 | PERL_CALLCONV OP * Perl_ck_shift(pTHX_ OP *o) | |
459 | __attribute__warn_unused_result__ | |
460 | __attribute__nonnull__(pTHX_1); | |
461 | #define PERL_ARGS_ASSERT_CK_SHIFT \ | |
462 | assert(o) | |
463 | ||
464 | PERL_CALLCONV OP * Perl_ck_smartmatch(pTHX_ OP *o) | |
465 | __attribute__warn_unused_result__ | |
466 | __attribute__nonnull__(pTHX_1); | |
467 | #define PERL_ARGS_ASSERT_CK_SMARTMATCH \ | |
468 | assert(o) | |
469 | ||
470 | PERL_CALLCONV OP * Perl_ck_sort(pTHX_ OP *o) | |
471 | __attribute__warn_unused_result__ | |
472 | __attribute__nonnull__(pTHX_1); | |
473 | #define PERL_ARGS_ASSERT_CK_SORT \ | |
474 | assert(o) | |
475 | ||
476 | PERL_CALLCONV OP * Perl_ck_spair(pTHX_ OP *o) | |
477 | __attribute__warn_unused_result__ | |
478 | __attribute__nonnull__(pTHX_1); | |
479 | #define PERL_ARGS_ASSERT_CK_SPAIR \ | |
480 | assert(o) | |
481 | ||
482 | PERL_CALLCONV OP * Perl_ck_split(pTHX_ OP *o) | |
483 | __attribute__warn_unused_result__ | |
484 | __attribute__nonnull__(pTHX_1); | |
485 | #define PERL_ARGS_ASSERT_CK_SPLIT \ | |
486 | assert(o) | |
487 | ||
488 | PERL_CALLCONV OP * Perl_ck_subr(pTHX_ OP *o) | |
489 | __attribute__warn_unused_result__ | |
490 | __attribute__nonnull__(pTHX_1); | |
491 | #define PERL_ARGS_ASSERT_CK_SUBR \ | |
492 | assert(o) | |
493 | ||
494 | PERL_CALLCONV OP * Perl_ck_substr(pTHX_ OP *o) | |
495 | __attribute__warn_unused_result__ | |
496 | __attribute__nonnull__(pTHX_1); | |
497 | #define PERL_ARGS_ASSERT_CK_SUBSTR \ | |
498 | assert(o) | |
499 | ||
500 | PERL_CALLCONV OP * Perl_ck_svconst(pTHX_ OP *o) | |
501 | __attribute__warn_unused_result__ | |
502 | __attribute__nonnull__(pTHX_1); | |
503 | #define PERL_ARGS_ASSERT_CK_SVCONST \ | |
504 | assert(o) | |
505 | ||
506 | PERL_CALLCONV OP * Perl_ck_trunc(pTHX_ OP *o) | |
507 | __attribute__warn_unused_result__ | |
508 | __attribute__nonnull__(pTHX_1); | |
509 | #define PERL_ARGS_ASSERT_CK_TRUNC \ | |
510 | assert(o) | |
511 | ||
512 | PERL_CALLCONV OP * Perl_ck_unpack(pTHX_ OP *o) | |
513 | __attribute__warn_unused_result__ | |
514 | __attribute__nonnull__(pTHX_1); | |
515 | #define PERL_ARGS_ASSERT_CK_UNPACK \ | |
516 | assert(o) | |
517 | ||
518 | PERL_CALLCONV void Perl_ck_warner(pTHX_ U32 err, const char* pat, ...) | |
519 | __attribute__format__(__printf__,pTHX_2,pTHX_3) | |
520 | __attribute__nonnull__(pTHX_2); | |
521 | #define PERL_ARGS_ASSERT_CK_WARNER \ | |
522 | assert(pat) | |
523 | ||
524 | PERL_CALLCONV void Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...) | |
525 | __attribute__format__(__printf__,pTHX_2,pTHX_3) | |
526 | __attribute__nonnull__(pTHX_2); | |
527 | #define PERL_ARGS_ASSERT_CK_WARNER_D \ | |
528 | assert(pat) | |
529 | ||
530 | PERL_CALLCONV bool Perl_ckwarn(pTHX_ U32 w); | |
531 | PERL_CALLCONV bool Perl_ckwarn_d(pTHX_ U32 w); | |
532 | PERL_CALLCONV OP* Perl_convert(pTHX_ I32 optype, I32 flags, OP* o) | |
533 | __attribute__warn_unused_result__; | |
534 | ||
e8a67806 NC |
535 | PERL_CALLCONV PERL_CONTEXT* Perl_create_eval_scope(pTHX_ U32 flags); |
536 | PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...) | |
537 | __attribute__noreturn__ | |
538 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
539 | ||
540 | PERL_CALLCONV void Perl_croak_no_modify(pTHX) | |
541 | __attribute__noreturn__; | |
542 | ||
543 | PERL_CALLCONV void Perl_croak_sv(pTHX_ SV *baseex) | |
544 | __attribute__noreturn__ | |
545 | __attribute__nonnull__(pTHX_1); | |
546 | #define PERL_ARGS_ASSERT_CROAK_SV \ | |
547 | assert(baseex) | |
548 | ||
549 | PERL_CALLCONV void Perl_croak_xs_usage(pTHX_ const CV *const cv, const char *const params) | |
550 | __attribute__noreturn__ | |
551 | __attribute__nonnull__(pTHX_1) | |
552 | __attribute__nonnull__(pTHX_2); | |
553 | #define PERL_ARGS_ASSERT_CROAK_XS_USAGE \ | |
554 | assert(cv); assert(params) | |
555 | ||
556 | PERL_CALLCONV const char * Perl_custom_op_desc(pTHX_ const OP *o) | |
557 | __attribute__warn_unused_result__ | |
558 | __attribute__nonnull__(pTHX_1); | |
559 | #define PERL_ARGS_ASSERT_CUSTOM_OP_DESC \ | |
560 | assert(o) | |
561 | ||
562 | PERL_CALLCONV const char * Perl_custom_op_name(pTHX_ const OP *o) | |
563 | __attribute__warn_unused_result__ | |
564 | __attribute__nonnull__(pTHX_1); | |
565 | #define PERL_ARGS_ASSERT_CUSTOM_OP_NAME \ | |
566 | assert(o) | |
567 | ||
568 | PERL_CALLCONV void Perl_cv_ckproto_len(pTHX_ const CV* cv, const GV* gv, const char* p, const STRLEN len) | |
569 | __attribute__nonnull__(pTHX_1); | |
570 | #define PERL_ARGS_ASSERT_CV_CKPROTO_LEN \ | |
571 | assert(cv) | |
572 | ||
573 | PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto) | |
574 | __attribute__nonnull__(pTHX_1); | |
575 | #define PERL_ARGS_ASSERT_CV_CLONE \ | |
576 | assert(proto) | |
577 | ||
578 | PERL_CALLCONV SV* Perl_cv_const_sv(pTHX_ const CV *const cv) | |
579 | __attribute__warn_unused_result__; | |
580 | ||
d9088386 Z |
581 | PERL_CALLCONV void Perl_cv_get_call_checker(pTHX_ CV *cv, Perl_call_checker *ckfun_p, SV **ckobj_p) |
582 | __attribute__nonnull__(pTHX_1) | |
583 | __attribute__nonnull__(pTHX_2) | |
584 | __attribute__nonnull__(pTHX_3); | |
585 | #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER \ | |
586 | assert(cv); assert(ckfun_p); assert(ckobj_p) | |
587 | ||
588 | PERL_CALLCONV void Perl_cv_set_call_checker(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj) | |
589 | __attribute__nonnull__(pTHX_1) | |
590 | __attribute__nonnull__(pTHX_2) | |
591 | __attribute__nonnull__(pTHX_3); | |
592 | #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER \ | |
593 | assert(cv); assert(ckfun); assert(ckobj) | |
594 | ||
e8a67806 NC |
595 | PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv) |
596 | __attribute__nonnull__(pTHX_1); | |
597 | #define PERL_ARGS_ASSERT_CV_UNDEF \ | |
598 | assert(cv) | |
599 | ||
600 | PERL_CALLCONV void Perl_cvgv_set(pTHX_ CV* cv, GV* gv) | |
601 | __attribute__nonnull__(pTHX_1); | |
602 | #define PERL_ARGS_ASSERT_CVGV_SET \ | |
603 | assert(cv) | |
604 | ||
605 | PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cx) | |
606 | __attribute__nonnull__(pTHX_1); | |
607 | #define PERL_ARGS_ASSERT_CX_DUMP \ | |
608 | assert(cx) | |
609 | ||
610 | PERL_CALLCONV I32 Perl_cxinc(pTHX) | |
611 | __attribute__warn_unused_result__; | |
612 | ||
613 | PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...) | |
614 | __attribute__format__(__printf__,pTHX_1,pTHX_2) | |
615 | __attribute__nonnull__(pTHX_1); | |
616 | #define PERL_ARGS_ASSERT_DEB \ | |
617 | assert(pat) | |
618 | ||
619 | PERL_CALLCONV void Perl_deb_stack_all(pTHX); | |
620 | PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o) | |
621 | __attribute__nonnull__(pTHX_1); | |
622 | #define PERL_ARGS_ASSERT_DEBOP \ | |
623 | assert(o) | |
624 | ||
625 | PERL_CALLCONV void Perl_debprofdump(pTHX); | |
626 | PERL_CALLCONV I32 Perl_debstack(pTHX); | |
627 | PERL_CALLCONV I32 Perl_debstackptrs(pTHX); | |
628 | PERL_CALLCONV void Perl_delete_eval_scope(pTHX); | |
04c9e624 VP |
629 | PERL_CALLCONV char* Perl_delimcpy(char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen) |
630 | __attribute__nonnull__(1) | |
631 | __attribute__nonnull__(2) | |
632 | __attribute__nonnull__(3) | |
633 | __attribute__nonnull__(4) | |
634 | __attribute__nonnull__(6); | |
7918f24d NC |
635 | #define PERL_ARGS_ASSERT_DELIMCPY \ |
636 | assert(to); assert(toend); assert(from); assert(fromend); assert(retlen) | |
f54cb97a | 637 | |
e8a67806 NC |
638 | PERL_CALLCONV void Perl_despatch_signals(pTHX); |
639 | PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...) | |
640 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
641 | ||
c5df3096 Z |
642 | PERL_CALLCONV OP* Perl_die_sv(pTHX_ SV *baseex) |
643 | __attribute__nonnull__(pTHX_1); | |
644 | #define PERL_ARGS_ASSERT_DIE_SV \ | |
645 | assert(baseex) | |
646 | ||
62705b21 | 647 | PERL_CALLCONV void Perl_die_unwind(pTHX_ SV* msv) |
c5df3096 Z |
648 | __attribute__noreturn__ |
649 | __attribute__nonnull__(pTHX_1); | |
650 | #define PERL_ARGS_ASSERT_DIE_UNWIND \ | |
62705b21 | 651 | assert(msv) |
bb4c52e0 | 652 | |
a9f96b3f | 653 | /* PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp) |
255164ba | 654 | __attribute__nonnull__(pTHX_2) |
a9f96b3f | 655 | __attribute__nonnull__(pTHX_3); */ |
7918f24d NC |
656 | #define PERL_ARGS_ASSERT_DO_AEXEC \ |
657 | assert(mark); assert(sp) | |
255164ba | 658 | |
5b5cf8d2 | 659 | PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int do_report) |
255164ba DM |
660 | __attribute__nonnull__(pTHX_2) |
661 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
662 | #define PERL_ARGS_ASSERT_DO_AEXEC5 \ |
663 | assert(mark); assert(sp) | |
255164ba | 664 | |
4373e329 | 665 | PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
abb2c242 | 666 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
667 | #define PERL_ARGS_ASSERT_DO_BINMODE \ |
668 | assert(fp) | |
f54cb97a | 669 | |
e8a67806 NC |
670 | PERL_CALLCONV I32 Perl_do_chomp(pTHX_ SV* sv) |
671 | __attribute__nonnull__(pTHX_1); | |
672 | #define PERL_ARGS_ASSERT_DO_CHOMP \ | |
673 | assert(sv) | |
674 | ||
4048f010 | 675 | PERL_CALLCONV void Perl_do_chop(pTHX_ SV *astr, SV *sv) |
abb2c242 JH |
676 | __attribute__nonnull__(pTHX_1) |
677 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
678 | #define PERL_ARGS_ASSERT_DO_CHOP \ |
679 | assert(astr); assert(sv) | |
f54cb97a | 680 | |
063df69c | 681 | PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit); |
e8a67806 NC |
682 | PERL_CALLCONV void Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full) |
683 | __attribute__nonnull__(pTHX_2); | |
684 | #define PERL_ARGS_ASSERT_DO_DUMP_PAD \ | |
685 | assert(file) | |
686 | ||
4373e329 | 687 | PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv) |
abb2c242 | 688 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
689 | #define PERL_ARGS_ASSERT_DO_EOF \ |
690 | assert(gv) | |
f54cb97a | 691 | |
e8a67806 NC |
692 | PERL_CALLCONV void Perl_do_execfree(pTHX); |
693 | PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) | |
694 | __attribute__nonnull__(pTHX_2) | |
695 | __attribute__nonnull__(pTHX_3); | |
696 | #define PERL_ARGS_ASSERT_DO_GV_DUMP \ | |
697 | assert(file); assert(name) | |
f54cb97a | 698 | |
e8a67806 | 699 | PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) |
fb9bf107 NC |
700 | __attribute__nonnull__(pTHX_2) |
701 | __attribute__nonnull__(pTHX_3); | |
e8a67806 NC |
702 | #define PERL_ARGS_ASSERT_DO_GVGV_DUMP \ |
703 | assert(file); assert(name) | |
fb9bf107 | 704 | |
e8a67806 | 705 | PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv) |
fb9bf107 NC |
706 | __attribute__nonnull__(pTHX_2) |
707 | __attribute__nonnull__(pTHX_3); | |
e8a67806 NC |
708 | #define PERL_ARGS_ASSERT_DO_HV_DUMP \ |
709 | assert(file); assert(name) | |
fb9bf107 | 710 | |
4048f010 | 711 | PERL_CALLCONV void Perl_do_join(pTHX_ SV *sv, SV *delim, SV **mark, SV **sp) |
abb2c242 JH |
712 | __attribute__nonnull__(pTHX_1) |
713 | __attribute__nonnull__(pTHX_2) | |
714 | __attribute__nonnull__(pTHX_3) | |
715 | __attribute__nonnull__(pTHX_4); | |
7918f24d NC |
716 | #define PERL_ARGS_ASSERT_DO_JOIN \ |
717 | assert(sv); assert(delim); assert(mark); assert(sp) | |
f54cb97a | 718 | |
1d7c1841 | 719 | PERL_CALLCONV OP* Perl_do_kv(pTHX); |
e8a67806 NC |
720 | PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) |
721 | __attribute__nonnull__(pTHX_2) | |
722 | __attribute__nonnull__(pTHX_3); | |
723 | #define PERL_ARGS_ASSERT_DO_MAGIC_DUMP \ | |
724 | assert(file); assert(mg) | |
725 | ||
726 | PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o) | |
727 | __attribute__nonnull__(pTHX_2); | |
728 | #define PERL_ARGS_ASSERT_DO_OP_DUMP \ | |
729 | assert(file) | |
730 | ||
e4dba786 | 731 | /* 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 | 732 | __attribute__nonnull__(pTHX_1) |
e4dba786 | 733 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
734 | #define PERL_ARGS_ASSERT_DO_OPEN \ |
735 | assert(gv); assert(name) | |
255164ba | 736 | |
2fbb330f | 737 | 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 |
738 | __attribute__nonnull__(pTHX_1) |
739 | __attribute__nonnull__(pTHX_2) | |
740 | __attribute__nonnull__(pTHX_8); | |
7918f24d NC |
741 | #define PERL_ARGS_ASSERT_DO_OPEN9 \ |
742 | assert(gv); assert(name); assert(svs) | |
255164ba | 743 | |
4048f010 | 744 | PERL_CALLCONV bool Perl_do_openn(pTHX_ GV *gv, const char *oname, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, I32 num) |
255164ba DM |
745 | __attribute__nonnull__(pTHX_1) |
746 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
747 | #define PERL_ARGS_ASSERT_DO_OPENN \ |
748 | assert(gv); assert(oname) | |
255164ba | 749 | |
e8a67806 NC |
750 | PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm) |
751 | __attribute__nonnull__(pTHX_2); | |
752 | #define PERL_ARGS_ASSERT_DO_PMOP_DUMP \ | |
753 | assert(file) | |
754 | ||
255164ba DM |
755 | PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp) |
756 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
757 | #define PERL_ARGS_ASSERT_DO_PRINT \ |
758 | assert(fp) | |
255164ba DM |
759 | |
760 | PERL_CALLCONV OP* Perl_do_readline(pTHX) | |
761 | __attribute__warn_unused_result__; | |
762 | ||
1d7c1841 | 763 | PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence); |
255164ba DM |
764 | PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, I32 len, SV** sarg) |
765 | __attribute__nonnull__(pTHX_1) | |
766 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
767 | #define PERL_ARGS_ASSERT_DO_SPRINTF \ |
768 | assert(sv); assert(sarg) | |
255164ba | 769 | |
e8a67806 NC |
770 | PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) |
771 | __attribute__nonnull__(pTHX_2); | |
772 | #define PERL_ARGS_ASSERT_DO_SV_DUMP \ | |
773 | assert(file) | |
774 | ||
255164ba DM |
775 | PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence) |
776 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
777 | #define PERL_ARGS_ASSERT_DO_SYSSEEK \ |
778 | assert(gv) | |
255164ba DM |
779 | |
780 | PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv) | |
781 | __attribute__warn_unused_result__ | |
782 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
783 | #define PERL_ARGS_ASSERT_DO_TELL \ |
784 | assert(gv) | |
255164ba DM |
785 | |
786 | PERL_CALLCONV I32 Perl_do_trans(pTHX_ SV* sv) | |
787 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
788 | #define PERL_ARGS_ASSERT_DO_TRANS \ |
789 | assert(sv) | |
255164ba | 790 | |
4373e329 | 791 | PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, I32 offset, I32 size) |
abb2c242 | 792 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
793 | #define PERL_ARGS_ASSERT_DO_VECGET \ |
794 | assert(sv) | |
f54cb97a | 795 | |
4373e329 | 796 | PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv) |
abb2c242 | 797 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
798 | #define PERL_ARGS_ASSERT_DO_VECSET \ |
799 | assert(sv) | |
f54cb97a | 800 | |
255164ba DM |
801 | PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right) |
802 | __attribute__nonnull__(pTHX_2) | |
803 | __attribute__nonnull__(pTHX_3) | |
804 | __attribute__nonnull__(pTHX_4); | |
7918f24d NC |
805 | #define PERL_ARGS_ASSERT_DO_VOP \ |
806 | assert(sv); assert(left); assert(right) | |
255164ba | 807 | |
850e8516 | 808 | PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term, I32 force_builtin) |
255164ba | 809 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
810 | #define PERL_ARGS_ASSERT_DOFILE \ |
811 | assert(term) | |
255164ba | 812 | |
e8a67806 NC |
813 | PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env) |
814 | __attribute__warn_unused_result__; | |
815 | ||
816 | PERL_CALLCONV OP * Perl_doref(pTHX_ OP *o, I32 type, bool set_op_ref) | |
817 | __attribute__nonnull__(pTHX_1); | |
818 | #define PERL_ARGS_ASSERT_DOREF \ | |
819 | assert(o) | |
820 | ||
821 | PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); | |
255164ba DM |
822 | PERL_CALLCONV I32 Perl_dowantarray(pTHX) |
823 | __attribute__warn_unused_result__; | |
824 | ||
1d7c1841 | 825 | PERL_CALLCONV void Perl_dump_all(pTHX); |
f0e3f042 | 826 | PERL_CALLCONV void Perl_dump_all_perl(pTHX_ bool justperl); |
1d7c1841 | 827 | PERL_CALLCONV void Perl_dump_eval(pTHX); |
9a957fbc AL |
828 | PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv) |
829 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
830 | #define PERL_ARGS_ASSERT_DUMP_FORM \ |
831 | assert(gv) | |
9a957fbc | 832 | |
e8a67806 NC |
833 | PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) |
834 | __attribute__format__(__printf__,pTHX_3,pTHX_4) | |
835 | __attribute__nonnull__(pTHX_2) | |
836 | __attribute__nonnull__(pTHX_3); | |
837 | #define PERL_ARGS_ASSERT_DUMP_INDENT \ | |
838 | assert(file); assert(pat) | |
255164ba | 839 | |
9a957fbc AL |
840 | PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash) |
841 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
842 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS \ |
843 | assert(stash) | |
9a957fbc | 844 | |
f0e3f042 CS |
845 | PERL_CALLCONV void Perl_dump_packsubs_perl(pTHX_ const HV* stash, bool justperl) |
846 | __attribute__nonnull__(pTHX_1); | |
847 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS_PERL \ | |
848 | assert(stash) | |
849 | ||
f54cb97a | 850 | PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv) |
abb2c242 | 851 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
852 | #define PERL_ARGS_ASSERT_DUMP_SUB \ |
853 | assert(gv) | |
f54cb97a | 854 | |
f0e3f042 CS |
855 | PERL_CALLCONV void Perl_dump_sub_perl(pTHX_ const GV* gv, bool justperl) |
856 | __attribute__nonnull__(pTHX_1); | |
857 | #define PERL_ARGS_ASSERT_DUMP_SUB_PERL \ | |
858 | assert(gv) | |
859 | ||
e8a67806 NC |
860 | PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args) |
861 | __attribute__nonnull__(pTHX_2) | |
862 | __attribute__nonnull__(pTHX_3); | |
863 | #define PERL_ARGS_ASSERT_DUMP_VINDENT \ | |
864 | assert(file); assert(pat) | |
865 | ||
866 | PERL_CALLCONV void Perl_emulate_cop_io(pTHX_ const COP *const c, SV *const sv) | |
867 | __attribute__nonnull__(pTHX_1) | |
868 | __attribute__nonnull__(pTHX_2); | |
869 | #define PERL_ARGS_ASSERT_EMULATE_COP_IO \ | |
870 | assert(c); assert(sv) | |
871 | ||
872 | PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error) | |
873 | __attribute__nonnull__(pTHX_1); | |
874 | #define PERL_ARGS_ASSERT_EVAL_PV \ | |
875 | assert(p) | |
876 | ||
877 | PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags) | |
878 | __attribute__nonnull__(pTHX_1); | |
879 | #define PERL_ARGS_ASSERT_EVAL_SV \ | |
880 | assert(sv) | |
881 | ||
255164ba DM |
882 | PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags) |
883 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
884 | #define PERL_ARGS_ASSERT_FBM_COMPILE \ |
885 | assert(sv) | |
255164ba | 886 | |
9f6cc744 | 887 | PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlestr, U32 flags) |
255164ba DM |
888 | __attribute__warn_unused_result__ |
889 | __attribute__nonnull__(pTHX_1) | |
890 | __attribute__nonnull__(pTHX_2) | |
891 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
892 | #define PERL_ARGS_ASSERT_FBM_INSTR \ |
893 | assert(big); assert(bigend); assert(littlestr) | |
255164ba | 894 | |
e8a67806 NC |
895 | PERL_CALLCONV const char * Perl_fetch_cop_label(pTHX_ COP *const cop, STRLEN *len, U32 *flags) |
896 | __attribute__nonnull__(pTHX_1); | |
897 | #define PERL_ARGS_ASSERT_FETCH_COP_LABEL \ | |
898 | assert(cop) | |
899 | ||
900 | PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv); | |
901 | PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp) | |
902 | __attribute__nonnull__(pTHX_1); | |
903 | #define PERL_ARGS_ASSERT_FILTER_DEL \ | |
904 | assert(funcp) | |
905 | ||
906 | PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen) | |
907 | __attribute__warn_unused_result__ | |
908 | __attribute__nonnull__(pTHX_2); | |
909 | #define PERL_ARGS_ASSERT_FILTER_READ \ | |
910 | assert(buf_sv) | |
911 | ||
912 | PERL_CALLCONV CV* Perl_find_runcv(pTHX_ U32 *db_seqp) | |
913 | __attribute__warn_unused_result__; | |
914 | ||
915 | PERL_CALLCONV SV* Perl_find_rundefsv(pTHX); | |
916 | PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX) | |
917 | __attribute__deprecated__; | |
918 | ||
fb9bf107 NC |
919 | PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char *const *const search_ext, I32 flags) |
920 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
921 | #define PERL_ARGS_ASSERT_FIND_SCRIPT \ |
922 | assert(scriptname) | |
fb9bf107 | 923 | |
e8a67806 NC |
924 | PERL_CALLCONV I32 Perl_foldEQ(const char* a, const char* b, I32 len) |
925 | __attribute__pure__ | |
926 | __attribute__nonnull__(1) | |
927 | __attribute__nonnull__(2); | |
928 | #define PERL_ARGS_ASSERT_FOLDEQ \ | |
929 | assert(a); assert(b) | |
930 | ||
931 | PERL_CALLCONV I32 Perl_foldEQ_locale(const char* a, const char* b, I32 len) | |
932 | __attribute__pure__ | |
933 | __attribute__nonnull__(1) | |
934 | __attribute__nonnull__(2); | |
935 | #define PERL_ARGS_ASSERT_FOLDEQ_LOCALE \ | |
936 | assert(a); assert(b) | |
937 | ||
938 | PERL_CALLCONV I32 Perl_foldEQ_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2) | |
939 | __attribute__nonnull__(pTHX_1) | |
940 | __attribute__nonnull__(pTHX_5); | |
941 | #define PERL_ARGS_ASSERT_FOLDEQ_UTF8 \ | |
942 | assert(s1); assert(s2) | |
f54cb97a | 943 | |
894356b3 | 944 | PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...) |
aec46f14 AL |
945 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
946 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
947 | #define PERL_ARGS_ASSERT_FORM \ |
948 | assert(pat) | |
aec46f14 | 949 | |
e8a67806 NC |
950 | PERL_CALLCONV void Perl_free_tied_hv_pool(pTHX); |
951 | PERL_CALLCONV void Perl_free_tmps(pTHX); | |
952 | PERL_CALLCONV AV* Perl_get_av(pTHX_ const char *name, I32 flags) | |
aec46f14 | 953 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
954 | #define PERL_ARGS_ASSERT_GET_AV \ |
955 | assert(name) | |
f54cb97a | 956 | |
e8a67806 NC |
957 | PERL_CALLCONV void* Perl_get_context(void) |
958 | __attribute__warn_unused_result__; | |
959 | ||
960 | PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 flags) | |
961 | __attribute__nonnull__(pTHX_1); | |
962 | #define PERL_ARGS_ASSERT_GET_CV \ | |
963 | assert(name) | |
964 | ||
965 | PERL_CALLCONV CV* Perl_get_cvn_flags(pTHX_ const char* name, STRLEN len, I32 flags) | |
966 | __attribute__nonnull__(pTHX_1); | |
967 | #define PERL_ARGS_ASSERT_GET_CVN_FLAGS \ | |
968 | assert(name) | |
8772537c | 969 | |
005a8a35 NC |
970 | PERL_CALLCONV void Perl_get_db_sub(pTHX_ SV **svp, CV *cv) |
971 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
972 | #define PERL_ARGS_ASSERT_GET_DB_SUB \ |
973 | assert(cv) | |
005a8a35 | 974 | |
e8a67806 NC |
975 | PERL_CALLCONV UV Perl_get_hash_seed(pTHX) |
976 | __attribute__warn_unused_result__; | |
a28509cc | 977 | |
e8a67806 | 978 | PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char *name, I32 flags) |
46c461b5 | 979 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
980 | #define PERL_ARGS_ASSERT_GET_HV \ |
981 | assert(name) | |
46c461b5 | 982 | |
e8a67806 NC |
983 | PERL_CALLCONV const char* Perl_get_no_modify(pTHX) |
984 | __attribute__warn_unused_result__ | |
985 | __attribute__pure__; | |
986 | ||
987 | PERL_CALLCONV char** Perl_get_op_descs(pTHX) | |
988 | __attribute__warn_unused_result__ | |
989 | __attribute__pure__; | |
990 | ||
991 | PERL_CALLCONV char** Perl_get_op_names(pTHX) | |
992 | __attribute__warn_unused_result__ | |
993 | __attribute__pure__; | |
994 | ||
995 | PERL_CALLCONV U32* Perl_get_opargs(pTHX) | |
996 | __attribute__warn_unused_result__ | |
997 | __attribute__pure__; | |
998 | ||
999 | PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX) | |
1000 | __attribute__warn_unused_result__ | |
1001 | __attribute__pure__; | |
1002 | ||
1003 | PERL_CALLCONV REGEXP * Perl_get_re_arg(pTHX_ SV *sv); | |
1004 | PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char *name, I32 flags) | |
1005 | __attribute__nonnull__(pTHX_1); | |
1006 | #define PERL_ARGS_ASSERT_GET_SV \ | |
1007 | assert(name) | |
1008 | ||
1009 | PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id) | |
1010 | __attribute__warn_unused_result__; | |
1011 | ||
1012 | PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv) | |
1013 | __attribute__nonnull__(pTHX_1); | |
1014 | #define PERL_ARGS_ASSERT_GETCWD_SV \ | |
1015 | assert(sv) | |
1016 | ||
1017 | PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv); | |
1018 | PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp); | |
1019 | PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) | |
1020 | __attribute__nonnull__(pTHX_1) | |
1021 | __attribute__nonnull__(pTHX_2) | |
1022 | __attribute__nonnull__(pTHX_3); | |
1023 | #define PERL_ARGS_ASSERT_GROK_BIN \ | |
1024 | assert(start); assert(len_p); assert(flags) | |
1025 | ||
1026 | PERL_CALLCONV char Perl_grok_bslash_c(pTHX_ const char source, const bool output_warning) | |
1027 | __attribute__warn_unused_result__; | |
1028 | ||
1029 | PERL_CALLCONV bool Perl_grok_bslash_o(pTHX_ const char* s, UV* uv, STRLEN* len, const char** error_msg, const bool output_warning) | |
1030 | __attribute__warn_unused_result__ | |
1031 | __attribute__nonnull__(pTHX_1) | |
1032 | __attribute__nonnull__(pTHX_2) | |
1033 | __attribute__nonnull__(pTHX_3) | |
1034 | __attribute__nonnull__(pTHX_4); | |
1035 | #define PERL_ARGS_ASSERT_GROK_BSLASH_O \ | |
1036 | assert(s); assert(uv); assert(len); assert(error_msg) | |
1037 | ||
1038 | PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) | |
1039 | __attribute__nonnull__(pTHX_1) | |
1040 | __attribute__nonnull__(pTHX_2) | |
1041 | __attribute__nonnull__(pTHX_3); | |
1042 | #define PERL_ARGS_ASSERT_GROK_HEX \ | |
1043 | assert(start); assert(len_p); assert(flags) | |
1044 | ||
1045 | PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep) | |
1046 | __attribute__nonnull__(pTHX_1); | |
1047 | #define PERL_ARGS_ASSERT_GROK_NUMBER \ | |
1048 | assert(pv) | |
1049 | ||
1050 | PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) | |
1051 | __attribute__warn_unused_result__ | |
1052 | __attribute__nonnull__(pTHX_1) | |
1053 | __attribute__nonnull__(pTHX_2); | |
1054 | #define PERL_ARGS_ASSERT_GROK_NUMERIC_RADIX \ | |
1055 | assert(sp); assert(send) | |
1056 | ||
1057 | PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) | |
1058 | __attribute__nonnull__(pTHX_1) | |
1059 | __attribute__nonnull__(pTHX_2) | |
1060 | __attribute__nonnull__(pTHX_3); | |
1061 | #define PERL_ARGS_ASSERT_GROK_OCT \ | |
1062 | assert(start); assert(len_p); assert(flags) | |
1063 | ||
1064 | /* PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV *gv); */ | |
1065 | /* PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV *gv); */ | |
1066 | /* PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv); */ | |
1067 | PERL_CALLCONV GV* Perl_gv_add_by_type(pTHX_ GV *gv, svtype type); | |
1068 | PERL_CALLCONV GV* Perl_gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method) | |
1069 | __attribute__warn_unused_result__ | |
1070 | __attribute__nonnull__(pTHX_2); | |
1071 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD4 \ | |
1072 | assert(name) | |
1073 | ||
1074 | PERL_CALLCONV void Perl_gv_check(pTHX_ const HV* stash) | |
1075 | __attribute__nonnull__(pTHX_1); | |
1076 | #define PERL_ARGS_ASSERT_GV_CHECK \ | |
1077 | assert(stash) | |
1078 | ||
1079 | PERL_CALLCONV SV* Perl_gv_const_sv(pTHX_ GV* gv) | |
1080 | __attribute__warn_unused_result__ | |
1081 | __attribute__nonnull__(pTHX_1); | |
1082 | #define PERL_ARGS_ASSERT_GV_CONST_SV \ | |
1083 | assert(gv) | |
1084 | ||
1085 | PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv) | |
1086 | __attribute__nonnull__(pTHX_1); | |
1087 | #define PERL_ARGS_ASSERT_GV_DUMP \ | |
1088 | assert(gv) | |
1089 | ||
1090 | PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv) | |
1091 | __attribute__nonnull__(pTHX_1) | |
1092 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1093 | #define PERL_ARGS_ASSERT_GV_EFULLNAME \ |
1094 | assert(sv); assert(gv) | |
46c461b5 AL |
1095 | |
1096 | /* PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix) | |
1097 | __attribute__nonnull__(pTHX_1) | |
1098 | __attribute__nonnull__(pTHX_2); */ | |
7918f24d NC |
1099 | #define PERL_ARGS_ASSERT_GV_EFULLNAME3 \ |
1100 | assert(sv); assert(gv) | |
46c461b5 AL |
1101 | |
1102 | PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain) | |
1103 | __attribute__nonnull__(pTHX_1) | |
1104 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1105 | #define PERL_ARGS_ASSERT_GV_EFULLNAME4 \ |
1106 | assert(sv); assert(gv) | |
46c461b5 | 1107 | |
53c1dcc0 AL |
1108 | PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name) |
1109 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1110 | #define PERL_ARGS_ASSERT_GV_FETCHFILE \ |
1111 | assert(name) | |
53c1dcc0 | 1112 | |
d9095cec NC |
1113 | PERL_CALLCONV GV* Perl_gv_fetchfile_flags(pTHX_ const char *const name, const STRLEN len, const U32 flags) |
1114 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1115 | #define PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS \ |
1116 | assert(name) | |
d9095cec | 1117 | |
fb9bf107 NC |
1118 | PERL_CALLCONV GV* Perl_gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level) |
1119 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1120 | #define PERL_ARGS_ASSERT_GV_FETCHMETH \ |
1121 | assert(name) | |
fb9bf107 NC |
1122 | |
1123 | PERL_CALLCONV GV* Perl_gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level) | |
1124 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1125 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_AUTOLOAD \ |
1126 | assert(name) | |
fb9bf107 | 1127 | |
887986eb | 1128 | /* PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name) |
eff494dd | 1129 | __attribute__nonnull__(pTHX_1) |
887986eb | 1130 | __attribute__nonnull__(pTHX_2); */ |
7918f24d | 1131 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD \ |
eff494dd | 1132 | assert(stash); assert(name) |
fb9bf107 NC |
1133 | |
1134 | PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload) | |
eff494dd | 1135 | __attribute__nonnull__(pTHX_1) |
fb9bf107 | 1136 | __attribute__nonnull__(pTHX_2); |
7918f24d | 1137 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD \ |
eff494dd | 1138 | assert(stash); assert(name) |
fb9bf107 | 1139 | |
256d1bb2 | 1140 | PERL_CALLCONV GV* Perl_gv_fetchmethod_flags(pTHX_ HV* stash, const char* name, U32 flags) |
eff494dd | 1141 | __attribute__nonnull__(pTHX_1) |
256d1bb2 NC |
1142 | __attribute__nonnull__(pTHX_2); |
1143 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_FLAGS \ | |
eff494dd | 1144 | assert(stash); assert(name) |
256d1bb2 | 1145 | |
fe9845cc | 1146 | PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type) |
9a957fbc | 1147 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1148 | #define PERL_ARGS_ASSERT_GV_FETCHPV \ |
1149 | assert(nambeg) | |
9a957fbc | 1150 | |
e8a67806 NC |
1151 | PERL_CALLCONV GV* Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, const svtype sv_type) |
1152 | __attribute__nonnull__(pTHX_1); | |
1153 | #define PERL_ARGS_ASSERT_GV_FETCHPVN_FLAGS \ | |
1154 | assert(name) | |
1155 | ||
1156 | PERL_CALLCONV GV* Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, const svtype sv_type) | |
1157 | __attribute__nonnull__(pTHX_1); | |
1158 | #define PERL_ARGS_ASSERT_GV_FETCHSV \ | |
1159 | assert(name) | |
1160 | ||
9a957fbc AL |
1161 | PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv) |
1162 | __attribute__nonnull__(pTHX_1) | |
1163 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1164 | #define PERL_ARGS_ASSERT_GV_FULLNAME \ |
1165 | assert(sv); assert(gv) | |
9a957fbc AL |
1166 | |
1167 | /* PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix) | |
1168 | __attribute__nonnull__(pTHX_1) | |
1169 | __attribute__nonnull__(pTHX_2); */ | |
7918f24d NC |
1170 | #define PERL_ARGS_ASSERT_GV_FULLNAME3 \ |
1171 | assert(sv); assert(gv) | |
9a957fbc AL |
1172 | |
1173 | PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain) | |
1174 | __attribute__nonnull__(pTHX_1) | |
1175 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1176 | #define PERL_ARGS_ASSERT_GV_FULLNAME4 \ |
1177 | assert(sv); assert(gv) | |
9a957fbc | 1178 | |
e8a67806 NC |
1179 | PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id) |
1180 | __attribute__warn_unused_result__; | |
803f2748 | 1181 | |
53c1dcc0 AL |
1182 | PERL_CALLCONV void Perl_gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi) |
1183 | __attribute__nonnull__(pTHX_1) | |
53c1dcc0 | 1184 | __attribute__nonnull__(pTHX_3); |
7918f24d NC |
1185 | #define PERL_ARGS_ASSERT_GV_INIT \ |
1186 | assert(gv); assert(name) | |
53c1dcc0 | 1187 | |
f5c1e807 | 1188 | PERL_CALLCONV void Perl_gv_name_set(pTHX_ GV* gv, const char *name, U32 len, U32 flags) |
9f616d01 MHM |
1189 | __attribute__nonnull__(pTHX_1) |
1190 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1191 | #define PERL_ARGS_ASSERT_GV_NAME_SET \ |
1192 | assert(gv); assert(name) | |
f5c1e807 | 1193 | |
da51bb9b | 1194 | PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 flags) |
aa924a5a | 1195 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1196 | #define PERL_ARGS_ASSERT_GV_STASHPV \ |
1197 | assert(name) | |
aa924a5a | 1198 | |
da51bb9b | 1199 | PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 flags) |
aa924a5a | 1200 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1201 | #define PERL_ARGS_ASSERT_GV_STASHPVN \ |
1202 | assert(name) | |
aa924a5a | 1203 | |
8798655d NC |
1204 | PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 flags) |
1205 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1206 | #define PERL_ARGS_ASSERT_GV_STASHSV \ |
1207 | assert(sv) | |
8798655d | 1208 | |
e8a67806 NC |
1209 | PERL_CALLCONV void Perl_gv_try_downgrade(pTHX_ GV* gv) |
1210 | __attribute__nonnull__(pTHX_1); | |
1211 | #define PERL_ARGS_ASSERT_GV_TRY_DOWNGRADE \ | |
1212 | assert(gv) | |
1213 | ||
1214 | PERL_CALLCONV AV** Perl_hv_backreferences_p(pTHX_ HV *hv) | |
1215 | __attribute__nonnull__(pTHX_1); | |
1216 | #define PERL_ARGS_ASSERT_HV_BACKREFERENCES_P \ | |
1217 | assert(hv) | |
1218 | ||
4048f010 | 1219 | PERL_CALLCONV void Perl_hv_clear(pTHX_ HV *hv); |
e8a67806 NC |
1220 | PERL_CALLCONV void Perl_hv_clear_placeholders(pTHX_ HV *hv) |
1221 | __attribute__nonnull__(pTHX_1); | |
1222 | #define PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS \ | |
1223 | assert(hv) | |
1224 | ||
1225 | PERL_CALLCONV void* Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char* key, STRLEN klen, int flags, int action, SV *val, U32 hash); | |
1226 | PERL_CALLCONV void* Perl_hv_common_key_len(pTHX_ HV *hv, const char *key, I32 klen_i32, const int action, SV *val, const U32 hash) | |
1227 | __attribute__nonnull__(pTHX_2); | |
1228 | #define PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN \ | |
1229 | assert(key) | |
1230 | ||
defdfed5 Z |
1231 | PERL_CALLCONV HV * Perl_hv_copy_hints_hv(pTHX_ HV *const ohv) |
1232 | __attribute__warn_unused_result__; | |
1233 | ||
4048f010 | 1234 | PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV *hv, HE *entry) |
aa924a5a | 1235 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1236 | #define PERL_ARGS_ASSERT_HV_DELAYFREE_ENT \ |
1237 | assert(hv) | |
aa924a5a | 1238 | |
4048f010 | 1239 | /* PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen, I32 flags) |
a038e571 | 1240 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1241 | #define PERL_ARGS_ASSERT_HV_DELETE \ |
1242 | assert(key) | |
aa924a5a | 1243 | |
4048f010 | 1244 | /* PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash) |
4c2df08c | 1245 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1246 | #define PERL_ARGS_ASSERT_HV_DELETE_ENT \ |
1247 | assert(keysv) | |
aa924a5a | 1248 | |
e8a67806 NC |
1249 | PERL_CALLCONV HE** Perl_hv_eiter_p(pTHX_ HV *hv) |
1250 | __attribute__warn_unused_result__ | |
1251 | __attribute__nonnull__(pTHX_1); | |
1252 | #define PERL_ARGS_ASSERT_HV_EITER_P \ | |
1253 | assert(hv) | |
1254 | ||
1255 | PERL_CALLCONV void Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) | |
1256 | __attribute__nonnull__(pTHX_1); | |
1257 | #define PERL_ARGS_ASSERT_HV_EITER_SET \ | |
1258 | assert(hv) | |
1259 | ||
4048f010 | 1260 | /* PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen) |
aa924a5a | 1261 | __attribute__warn_unused_result__ |
a038e571 | 1262 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1263 | #define PERL_ARGS_ASSERT_HV_EXISTS \ |
1264 | assert(key) | |
901017d6 | 1265 | |
4048f010 | 1266 | /* PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash) |
aa924a5a | 1267 | __attribute__warn_unused_result__ |
4c2df08c | 1268 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1269 | #define PERL_ARGS_ASSERT_HV_EXISTS_ENT \ |
1270 | assert(keysv) | |
aa924a5a | 1271 | |
4048f010 | 1272 | /* PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen, I32 lval) |
a038e571 | 1273 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1274 | #define PERL_ARGS_ASSERT_HV_FETCH \ |
1275 | assert(key) | |
901017d6 | 1276 | |
4048f010 | 1277 | /* PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash) |
4c2df08c | 1278 | __attribute__nonnull__(pTHX_2); */ |
7918f24d NC |
1279 | #define PERL_ARGS_ASSERT_HV_FETCH_ENT \ |
1280 | assert(keysv) | |
aa924a5a | 1281 | |
4d0fbddd NC |
1282 | PERL_CALLCONV STRLEN Perl_hv_fill(pTHX_ HV const *const hv) |
1283 | __attribute__nonnull__(pTHX_1); | |
1284 | #define PERL_ARGS_ASSERT_HV_FILL \ | |
1285 | assert(hv) | |
1286 | ||
4048f010 | 1287 | PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV *hv, HE *entryK) |
abb2c242 | 1288 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1289 | #define PERL_ARGS_ASSERT_HV_FREE_ENT \ |
1290 | assert(hv) | |
a3b680e6 | 1291 | |
4048f010 | 1292 | PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV *hv) |
abb2c242 | 1293 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1294 | #define PERL_ARGS_ASSERT_HV_ITERINIT \ |
1295 | assert(hv) | |
a3b680e6 AL |
1296 | |
1297 | PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen) | |
abb2c242 JH |
1298 | __attribute__warn_unused_result__ |
1299 | __attribute__nonnull__(pTHX_1) | |
1300 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1301 | #define PERL_ARGS_ASSERT_HV_ITERKEY \ |
1302 | assert(entry); assert(retlen) | |
a3b680e6 AL |
1303 | |
1304 | PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry) | |
abb2c242 JH |
1305 | __attribute__warn_unused_result__ |
1306 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1307 | #define PERL_ARGS_ASSERT_HV_ITERKEYSV \ |
1308 | assert(entry) | |
a3b680e6 | 1309 | |
4048f010 | 1310 | /* PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV *hv) |
abb2c242 | 1311 | __attribute__warn_unused_result__ |
7a7b9979 | 1312 | __attribute__nonnull__(pTHX_1); */ |
7918f24d NC |
1313 | #define PERL_ARGS_ASSERT_HV_ITERNEXT \ |
1314 | assert(hv) | |
a3b680e6 | 1315 | |
e8a67806 NC |
1316 | PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags) |
1317 | __attribute__warn_unused_result__ | |
1318 | __attribute__nonnull__(pTHX_1); | |
1319 | #define PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS \ | |
1320 | assert(hv) | |
1321 | ||
4048f010 | 1322 | PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen) |
abb2c242 JH |
1323 | __attribute__warn_unused_result__ |
1324 | __attribute__nonnull__(pTHX_1) | |
1325 | __attribute__nonnull__(pTHX_2) | |
1326 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
1327 | #define PERL_ARGS_ASSERT_HV_ITERNEXTSV \ |
1328 | assert(hv); assert(key); assert(retlen) | |
a3b680e6 | 1329 | |
4048f010 | 1330 | PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV *hv, HE *entry) |
abb2c242 JH |
1331 | __attribute__warn_unused_result__ |
1332 | __attribute__nonnull__(pTHX_1) | |
1333 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1334 | #define PERL_ARGS_ASSERT_HV_ITERVAL \ |
1335 | assert(hv); assert(entry) | |
a3b680e6 | 1336 | |
4048f010 | 1337 | PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV *hv, IV newmax) |
abb2c242 | 1338 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1339 | #define PERL_ARGS_ASSERT_HV_KSPLIT \ |
1340 | assert(hv) | |
a3b680e6 | 1341 | |
4048f010 | 1342 | /* PERL_CALLCONV void Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how) |
bc5cdc23 | 1343 | __attribute__nonnull__(pTHX_1); */ |
7918f24d NC |
1344 | #define PERL_ARGS_ASSERT_HV_MAGIC \ |
1345 | assert(hv) | |
fb9bf107 | 1346 | |
ee72b38d FC |
1347 | PERL_CALLCONV void Perl_hv_name_add(pTHX_ HV *hv, const char *name, U32 len) |
1348 | __attribute__nonnull__(pTHX_1) | |
1349 | __attribute__nonnull__(pTHX_2); | |
1350 | #define PERL_ARGS_ASSERT_HV_NAME_ADD \ | |
1351 | assert(hv); assert(name) | |
1352 | ||
1353 | PERL_CALLCONV void Perl_hv_name_delete(pTHX_ HV *hv, const char *name, U32 len) | |
1354 | __attribute__nonnull__(pTHX_1) | |
1355 | __attribute__nonnull__(pTHX_2); | |
1356 | #define PERL_ARGS_ASSERT_HV_NAME_DELETE \ | |
1357 | assert(hv); assert(name) | |
1358 | ||
e8a67806 NC |
1359 | PERL_CALLCONV void Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags) |
1360 | __attribute__nonnull__(pTHX_1); | |
1361 | #define PERL_ARGS_ASSERT_HV_NAME_SET \ | |
1362 | assert(hv) | |
1363 | ||
1364 | PERL_CALLCONV I32 Perl_hv_placeholders_get(pTHX_ const HV *hv) | |
1365 | __attribute__warn_unused_result__ | |
1366 | __attribute__nonnull__(pTHX_1); | |
1367 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET \ | |
1368 | assert(hv) | |
1369 | ||
1370 | PERL_CALLCONV I32* Perl_hv_placeholders_p(pTHX_ HV *hv) | |
1371 | __attribute__warn_unused_result__ | |
1372 | __attribute__nonnull__(pTHX_1); | |
1373 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P \ | |
1374 | assert(hv) | |
1375 | ||
1376 | PERL_CALLCONV void Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph) | |
1377 | __attribute__nonnull__(pTHX_1); | |
1378 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET \ | |
1379 | assert(hv) | |
1380 | ||
1381 | PERL_CALLCONV I32* Perl_hv_riter_p(pTHX_ HV *hv) | |
1382 | __attribute__warn_unused_result__ | |
1383 | __attribute__nonnull__(pTHX_1); | |
1384 | #define PERL_ARGS_ASSERT_HV_RITER_P \ | |
1385 | assert(hv) | |
1386 | ||
1387 | PERL_CALLCONV void Perl_hv_riter_set(pTHX_ HV *hv, I32 riter) | |
1388 | __attribute__nonnull__(pTHX_1); | |
1389 | #define PERL_ARGS_ASSERT_HV_RITER_SET \ | |
1390 | assert(hv) | |
1391 | ||
1392 | PERL_CALLCONV SV* Perl_hv_scalar(pTHX_ HV *hv) | |
1393 | __attribute__warn_unused_result__ | |
1394 | __attribute__nonnull__(pTHX_1); | |
1395 | #define PERL_ARGS_ASSERT_HV_SCALAR \ | |
1396 | assert(hv) | |
012da8e5 | 1397 | |
4048f010 NC |
1398 | /* PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash); */ |
1399 | /* PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV *hv, SV *key, SV *val, U32 hash); */ | |
1400 | /* PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash, int flags); */ | |
1401 | PERL_CALLCONV void Perl_hv_undef(pTHX_ HV *hv); | |
e6226b18 KW |
1402 | /* PERL_CALLCONV I32 ibcmp(pTHX_ const char* a, const char* b, I32 len) |
1403 | __attribute__nonnull__(pTHX_1) | |
1404 | __attribute__nonnull__(pTHX_2); */ | |
1405 | ||
e6226b18 KW |
1406 | /* PERL_CALLCONV I32 ibcmp_locale(pTHX_ const char* a, const char* b, I32 len) |
1407 | __attribute__nonnull__(pTHX_1) | |
1408 | __attribute__nonnull__(pTHX_2); */ | |
1409 | ||
e6226b18 KW |
1410 | /* PERL_CALLCONV I32 ibcmp_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2) |
1411 | __attribute__nonnull__(pTHX_1) | |
1412 | __attribute__nonnull__(pTHX_5); */ | |
1413 | ||
4373e329 | 1414 | PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv) |
abb2c242 | 1415 | __attribute__nonnull__(pTHX_2); |
7918f24d NC |
1416 | #define PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS \ |
1417 | assert(argv) | |
f54cb97a | 1418 | |
8af6f985 | 1419 | PERL_CALLCONV void Perl_init_dbargs(pTHX); |
1d7c1841 | 1420 | PERL_CALLCONV void Perl_init_debugger(pTHX); |
e8a67806 NC |
1421 | PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |
1422 | PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn); | |
1d7c1841 | 1423 | PERL_CALLCONV void Perl_init_stacks(pTHX); |
bfce84ec AL |
1424 | PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm) |
1425 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1426 | #define PERL_ARGS_ASSERT_INIT_TM \ |
1427 | assert(ptm) | |
bfce84ec | 1428 | |
04c9e624 | 1429 | PERL_CALLCONV char* Perl_instr(const char* big, const char* little) |
b464bac0 | 1430 | __attribute__warn_unused_result__ |
abb2c242 | 1431 | __attribute__pure__ |
04c9e624 VP |
1432 | __attribute__nonnull__(1) |
1433 | __attribute__nonnull__(2); | |
7918f24d NC |
1434 | #define PERL_ARGS_ASSERT_INSTR \ |
1435 | assert(big); assert(little) | |
f54cb97a | 1436 | |
e8a67806 NC |
1437 | PERL_CALLCONV U32 Perl_intro_my(pTHX); |
1438 | PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd) | |
1439 | __attribute__warn_unused_result__; | |
1440 | ||
b464bac0 | 1441 | PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, bool not_implicit) |
b464bac0 | 1442 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1443 | #define PERL_ARGS_ASSERT_IO_CLOSE \ |
1444 | assert(io) | |
b464bac0 | 1445 | |
e8a67806 NC |
1446 | PERL_CALLCONV bool Perl_is_ascii_string(const U8 *s, STRLEN len) |
1447 | __attribute__nonnull__(1); | |
1448 | #define PERL_ARGS_ASSERT_IS_ASCII_STRING \ | |
1449 | assert(s) | |
f54cb97a | 1450 | |
e8a67806 | 1451 | PERL_CALLCONV bool Perl_is_gv_magical_sv(pTHX_ SV *const name_sv, U32 flags) |
abb2c242 | 1452 | __attribute__warn_unused_result__ |
e8a67806 NC |
1453 | __attribute__nonnull__(pTHX_1); |
1454 | #define PERL_ARGS_ASSERT_IS_GV_MAGICAL_SV \ | |
1455 | assert(name_sv) | |
f54cb97a | 1456 | |
e8a67806 NC |
1457 | PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX) |
1458 | __attribute__warn_unused_result__; | |
f54cb97a | 1459 | |
e8a67806 | 1460 | PERL_CALLCONV bool Perl_is_uni_alnum(pTHX_ UV c) |
abb2c242 JH |
1461 | __attribute__warn_unused_result__ |
1462 | __attribute__pure__; | |
f54cb97a | 1463 | |
e8a67806 | 1464 | PERL_CALLCONV bool Perl_is_uni_alnum_lc(pTHX_ UV c) |
abb2c242 JH |
1465 | __attribute__warn_unused_result__ |
1466 | __attribute__pure__; | |
f54cb97a | 1467 | |
e8a67806 | 1468 | PERL_CALLCONV bool Perl_is_uni_alpha(pTHX_ UV c) |
abb2c242 JH |
1469 | __attribute__warn_unused_result__ |
1470 | __attribute__pure__; | |
f54cb97a | 1471 | |
e8a67806 | 1472 | PERL_CALLCONV bool Perl_is_uni_alpha_lc(pTHX_ UV c) |
abb2c242 JH |
1473 | __attribute__warn_unused_result__ |
1474 | __attribute__pure__; | |
f54cb97a AL |
1475 | |
1476 | PERL_CALLCONV bool Perl_is_uni_ascii(pTHX_ UV c) | |
abb2c242 JH |
1477 | __attribute__warn_unused_result__ |
1478 | __attribute__pure__; | |
f54cb97a | 1479 | |
e8a67806 | 1480 | PERL_CALLCONV bool Perl_is_uni_ascii_lc(pTHX_ UV c) |
abb2c242 JH |
1481 | __attribute__warn_unused_result__ |
1482 | __attribute__pure__; | |
f54cb97a AL |
1483 | |
1484 | PERL_CALLCONV bool Perl_is_uni_cntrl(pTHX_ UV c) | |
abb2c242 JH |
1485 | __attribute__warn_unused_result__ |
1486 | __attribute__pure__; | |
f54cb97a | 1487 | |
e8a67806 | 1488 | PERL_CALLCONV bool Perl_is_uni_cntrl_lc(pTHX_ UV c) |
abb2c242 JH |
1489 | __attribute__warn_unused_result__ |
1490 | __attribute__pure__; | |
f54cb97a AL |
1491 | |
1492 | PERL_CALLCONV bool Perl_is_uni_digit(pTHX_ UV c) | |
abb2c242 JH |
1493 | __attribute__warn_unused_result__ |
1494 | __attribute__pure__; | |
f54cb97a | 1495 | |
e8a67806 | 1496 | PERL_CALLCONV bool Perl_is_uni_digit_lc(pTHX_ UV c) |
abb2c242 JH |
1497 | __attribute__warn_unused_result__ |
1498 | __attribute__pure__; | |
f54cb97a | 1499 | |
e8a67806 | 1500 | PERL_CALLCONV bool Perl_is_uni_graph(pTHX_ UV c) |
abb2c242 JH |
1501 | __attribute__warn_unused_result__ |
1502 | __attribute__pure__; | |
f54cb97a | 1503 | |
e8a67806 | 1504 | PERL_CALLCONV bool Perl_is_uni_graph_lc(pTHX_ UV c) |
abb2c242 JH |
1505 | __attribute__warn_unused_result__ |
1506 | __attribute__pure__; | |
f54cb97a | 1507 | |
e8a67806 | 1508 | PERL_CALLCONV bool Perl_is_uni_idfirst(pTHX_ UV c) |
abb2c242 JH |
1509 | __attribute__warn_unused_result__ |
1510 | __attribute__pure__; | |
f54cb97a | 1511 | |
e8a67806 | 1512 | PERL_CALLCONV bool Perl_is_uni_idfirst_lc(pTHX_ UV c) |
abb2c242 JH |
1513 | __attribute__warn_unused_result__ |
1514 | __attribute__pure__; | |
f54cb97a | 1515 | |
e8a67806 | 1516 | PERL_CALLCONV bool Perl_is_uni_lower(pTHX_ UV c) |
abb2c242 JH |
1517 | __attribute__warn_unused_result__ |
1518 | __attribute__pure__; | |
f54cb97a | 1519 | |
e8a67806 | 1520 | PERL_CALLCONV bool Perl_is_uni_lower_lc(pTHX_ UV c) |
abb2c242 JH |
1521 | __attribute__warn_unused_result__ |
1522 | __attribute__pure__; | |
f54cb97a | 1523 | |
e8a67806 | 1524 | PERL_CALLCONV bool Perl_is_uni_print(pTHX_ UV c) |
abb2c242 JH |
1525 | __attribute__warn_unused_result__ |
1526 | __attribute__pure__; | |
f54cb97a | 1527 | |
e8a67806 | 1528 | PERL_CALLCONV bool Perl_is_uni_print_lc(pTHX_ UV c) |
abb2c242 JH |
1529 | __attribute__warn_unused_result__ |
1530 | __attribute__pure__; | |
f54cb97a | 1531 | |
e8a67806 | 1532 | PERL_CALLCONV bool Perl_is_uni_punct(pTHX_ UV c) |
abb2c242 JH |
1533 | __attribute__warn_unused_result__ |
1534 | __attribute__pure__; | |
f54cb97a | 1535 | |
e8a67806 | 1536 | PERL_CALLCONV bool Perl_is_uni_punct_lc(pTHX_ UV c) |
abb2c242 JH |
1537 | __attribute__warn_unused_result__ |
1538 | __attribute__pure__; | |
f54cb97a | 1539 | |
e8a67806 | 1540 | PERL_CALLCONV bool Perl_is_uni_space(pTHX_ UV c) |
abb2c242 JH |
1541 | __attribute__warn_unused_result__ |
1542 | __attribute__pure__; | |
f54cb97a | 1543 | |
e8a67806 | 1544 | PERL_CALLCONV bool Perl_is_uni_space_lc(pTHX_ UV c) |
abb2c242 JH |
1545 | __attribute__warn_unused_result__ |
1546 | __attribute__pure__; | |
f54cb97a | 1547 | |
e8a67806 | 1548 | PERL_CALLCONV bool Perl_is_uni_upper(pTHX_ UV c) |
abb2c242 JH |
1549 | __attribute__warn_unused_result__ |
1550 | __attribute__pure__; | |
f54cb97a | 1551 | |
e8a67806 | 1552 | PERL_CALLCONV bool Perl_is_uni_upper_lc(pTHX_ UV c) |
abb2c242 JH |
1553 | __attribute__warn_unused_result__ |
1554 | __attribute__pure__; | |
f54cb97a | 1555 | |
e8a67806 | 1556 | PERL_CALLCONV bool Perl_is_uni_xdigit(pTHX_ UV c) |
abb2c242 JH |
1557 | __attribute__warn_unused_result__ |
1558 | __attribute__pure__; | |
f54cb97a AL |
1559 | |
1560 | PERL_CALLCONV bool Perl_is_uni_xdigit_lc(pTHX_ UV c) | |
abb2c242 JH |
1561 | __attribute__warn_unused_result__ |
1562 | __attribute__pure__; | |
f54cb97a | 1563 | |
e8a67806 | 1564 | PERL_CALLCONV bool Perl_is_utf8_X_L(pTHX_ const U8 *p) |
1df70142 | 1565 | __attribute__warn_unused_result__ |
abb2c242 | 1566 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1567 | #define PERL_ARGS_ASSERT_IS_UTF8_X_L \ |
7918f24d | 1568 | assert(p) |
f54cb97a | 1569 | |
e8a67806 | 1570 | PERL_CALLCONV bool Perl_is_utf8_X_LV(pTHX_ const U8 *p) |
1df70142 | 1571 | __attribute__warn_unused_result__ |
abb2c242 | 1572 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1573 | #define PERL_ARGS_ASSERT_IS_UTF8_X_LV \ |
7918f24d | 1574 | assert(p) |
f54cb97a | 1575 | |
e8a67806 | 1576 | PERL_CALLCONV bool Perl_is_utf8_X_LVT(pTHX_ const U8 *p) |
1df70142 | 1577 | __attribute__warn_unused_result__ |
abb2c242 | 1578 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1579 | #define PERL_ARGS_ASSERT_IS_UTF8_X_LVT \ |
7918f24d | 1580 | assert(p) |
f54cb97a | 1581 | |
e8a67806 | 1582 | PERL_CALLCONV bool Perl_is_utf8_X_LV_LVT_V(pTHX_ const U8 *p) |
1df70142 | 1583 | __attribute__warn_unused_result__ |
abb2c242 | 1584 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1585 | #define PERL_ARGS_ASSERT_IS_UTF8_X_LV_LVT_V \ |
7918f24d | 1586 | assert(p) |
f54cb97a | 1587 | |
e8a67806 | 1588 | PERL_CALLCONV bool Perl_is_utf8_X_T(pTHX_ const U8 *p) |
1df70142 | 1589 | __attribute__warn_unused_result__ |
abb2c242 | 1590 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1591 | #define PERL_ARGS_ASSERT_IS_UTF8_X_T \ |
7918f24d | 1592 | assert(p) |
f54cb97a | 1593 | |
e8a67806 | 1594 | PERL_CALLCONV bool Perl_is_utf8_X_V(pTHX_ const U8 *p) |
1df70142 | 1595 | __attribute__warn_unused_result__ |
abb2c242 | 1596 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1597 | #define PERL_ARGS_ASSERT_IS_UTF8_X_V \ |
7918f24d | 1598 | assert(p) |
f54cb97a | 1599 | |
e8a67806 | 1600 | PERL_CALLCONV bool Perl_is_utf8_X_begin(pTHX_ const U8 *p) |
d1eb3177 YO |
1601 | __attribute__warn_unused_result__ |
1602 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1603 | #define PERL_ARGS_ASSERT_IS_UTF8_X_BEGIN \ |
d1eb3177 YO |
1604 | assert(p) |
1605 | ||
e8a67806 | 1606 | PERL_CALLCONV bool Perl_is_utf8_X_extend(pTHX_ const U8 *p) |
d1eb3177 YO |
1607 | __attribute__warn_unused_result__ |
1608 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1609 | #define PERL_ARGS_ASSERT_IS_UTF8_X_EXTEND \ |
d1eb3177 YO |
1610 | assert(p) |
1611 | ||
e8a67806 | 1612 | PERL_CALLCONV bool Perl_is_utf8_X_non_hangul(pTHX_ const U8 *p) |
1df70142 | 1613 | __attribute__warn_unused_result__ |
abb2c242 | 1614 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1615 | #define PERL_ARGS_ASSERT_IS_UTF8_X_NON_HANGUL \ |
7918f24d | 1616 | assert(p) |
f54cb97a | 1617 | |
e8a67806 | 1618 | PERL_CALLCONV bool Perl_is_utf8_X_prepend(pTHX_ const U8 *p) |
1df70142 | 1619 | __attribute__warn_unused_result__ |
abb2c242 | 1620 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1621 | #define PERL_ARGS_ASSERT_IS_UTF8_X_PREPEND \ |
7918f24d | 1622 | assert(p) |
f54cb97a | 1623 | |
e8a67806 | 1624 | PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p) |
d1eb3177 YO |
1625 | __attribute__warn_unused_result__ |
1626 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1627 | #define PERL_ARGS_ASSERT_IS_UTF8_ALNUM \ |
d1eb3177 YO |
1628 | assert(p) |
1629 | ||
e8a67806 | 1630 | PERL_CALLCONV bool Perl_is_utf8_alpha(pTHX_ const U8 *p) |
1df70142 | 1631 | __attribute__warn_unused_result__ |
abb2c242 | 1632 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1633 | #define PERL_ARGS_ASSERT_IS_UTF8_ALPHA \ |
7918f24d | 1634 | assert(p) |
f54cb97a | 1635 | |
e8a67806 | 1636 | PERL_CALLCONV bool Perl_is_utf8_ascii(pTHX_ const U8 *p) |
1df70142 | 1637 | __attribute__warn_unused_result__ |
abb2c242 | 1638 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1639 | #define PERL_ARGS_ASSERT_IS_UTF8_ASCII \ |
7918f24d | 1640 | assert(p) |
f54cb97a | 1641 | |
e8a67806 NC |
1642 | PERL_CALLCONV STRLEN Perl_is_utf8_char(const U8 *s) |
1643 | __attribute__nonnull__(1); | |
1644 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR \ | |
1645 | assert(s) | |
1646 | ||
1647 | PERL_CALLCONV bool Perl_is_utf8_cntrl(pTHX_ const U8 *p) | |
1df70142 | 1648 | __attribute__warn_unused_result__ |
abb2c242 | 1649 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1650 | #define PERL_ARGS_ASSERT_IS_UTF8_CNTRL \ |
7918f24d | 1651 | assert(p) |
f54cb97a | 1652 | |
e8a67806 | 1653 | PERL_CALLCONV bool Perl_is_utf8_digit(pTHX_ const U8 *p) |
1df70142 | 1654 | __attribute__warn_unused_result__ |
abb2c242 | 1655 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1656 | #define PERL_ARGS_ASSERT_IS_UTF8_DIGIT \ |
7918f24d | 1657 | assert(p) |
f54cb97a | 1658 | |
e8a67806 | 1659 | PERL_CALLCONV bool Perl_is_utf8_graph(pTHX_ const U8 *p) |
1df70142 | 1660 | __attribute__warn_unused_result__ |
abb2c242 | 1661 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1662 | #define PERL_ARGS_ASSERT_IS_UTF8_GRAPH \ |
7918f24d | 1663 | assert(p) |
f54cb97a | 1664 | |
e8a67806 | 1665 | PERL_CALLCONV bool Perl_is_utf8_idcont(pTHX_ const U8 *p) |
1df70142 | 1666 | __attribute__warn_unused_result__ |
abb2c242 | 1667 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1668 | #define PERL_ARGS_ASSERT_IS_UTF8_IDCONT \ |
7918f24d | 1669 | assert(p) |
f54cb97a | 1670 | |
e8a67806 | 1671 | PERL_CALLCONV bool Perl_is_utf8_idfirst(pTHX_ const U8 *p) |
1df70142 | 1672 | __attribute__warn_unused_result__ |
abb2c242 | 1673 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 1674 | #define PERL_ARGS_ASSERT_IS_UTF8_IDFIRST \ |
7918f24d | 1675 | assert(p) |
f54cb97a | 1676 | |
e8a67806 | 1677 | PERL_CALLCONV bool Perl_is_utf8_lower(pTHX_ const U8 *p) |
37e2e78e KW |
1678 | __attribute__warn_unused_result__ |
1679 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1680 | #define PERL_ARGS_ASSERT_IS_UTF8_LOWER \ |
37e2e78e KW |
1681 | assert(p) |
1682 | ||
e8a67806 | 1683 | PERL_CALLCONV bool Perl_is_utf8_mark(pTHX_ const U8 *p) |
37e2e78e KW |
1684 | __attribute__warn_unused_result__ |
1685 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1686 | #define PERL_ARGS_ASSERT_IS_UTF8_MARK \ |
37e2e78e KW |
1687 | assert(p) |
1688 | ||
e8a67806 | 1689 | PERL_CALLCONV bool Perl_is_utf8_perl_space(pTHX_ const U8 *p) |
37e2e78e KW |
1690 | __attribute__warn_unused_result__ |
1691 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1692 | #define PERL_ARGS_ASSERT_IS_UTF8_PERL_SPACE \ |
37e2e78e KW |
1693 | assert(p) |
1694 | ||
e8a67806 | 1695 | PERL_CALLCONV bool Perl_is_utf8_perl_word(pTHX_ const U8 *p) |
37e2e78e KW |
1696 | __attribute__warn_unused_result__ |
1697 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1698 | #define PERL_ARGS_ASSERT_IS_UTF8_PERL_WORD \ |
37e2e78e KW |
1699 | assert(p) |
1700 | ||
e8a67806 | 1701 | PERL_CALLCONV bool Perl_is_utf8_posix_digit(pTHX_ const U8 *p) |
37e2e78e KW |
1702 | __attribute__warn_unused_result__ |
1703 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1704 | #define PERL_ARGS_ASSERT_IS_UTF8_POSIX_DIGIT \ |
37e2e78e KW |
1705 | assert(p) |
1706 | ||
e8a67806 | 1707 | PERL_CALLCONV bool Perl_is_utf8_print(pTHX_ const U8 *p) |
37e2e78e KW |
1708 | __attribute__warn_unused_result__ |
1709 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1710 | #define PERL_ARGS_ASSERT_IS_UTF8_PRINT \ |
37e2e78e KW |
1711 | assert(p) |
1712 | ||
e8a67806 | 1713 | PERL_CALLCONV bool Perl_is_utf8_punct(pTHX_ const U8 *p) |
37e2e78e KW |
1714 | __attribute__warn_unused_result__ |
1715 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1716 | #define PERL_ARGS_ASSERT_IS_UTF8_PUNCT \ |
37e2e78e KW |
1717 | assert(p) |
1718 | ||
e8a67806 | 1719 | PERL_CALLCONV bool Perl_is_utf8_space(pTHX_ const U8 *p) |
37e2e78e KW |
1720 | __attribute__warn_unused_result__ |
1721 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1722 | #define PERL_ARGS_ASSERT_IS_UTF8_SPACE \ |
37e2e78e KW |
1723 | assert(p) |
1724 | ||
e8a67806 NC |
1725 | PERL_CALLCONV bool Perl_is_utf8_string(const U8 *s, STRLEN len) |
1726 | __attribute__nonnull__(1); | |
1727 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING \ | |
1728 | assert(s) | |
1729 | ||
1730 | /* PERL_CALLCONV bool Perl_is_utf8_string_loc(const U8 *s, STRLEN len, const U8 **p) | |
1731 | __attribute__nonnull__(1); */ | |
1732 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC \ | |
1733 | assert(s) | |
1734 | ||
1735 | PERL_CALLCONV bool Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) | |
1736 | __attribute__nonnull__(1); | |
1737 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN \ | |
1738 | assert(s) | |
1739 | ||
1740 | PERL_CALLCONV bool Perl_is_utf8_upper(pTHX_ const U8 *p) | |
37e2e78e KW |
1741 | __attribute__warn_unused_result__ |
1742 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1743 | #define PERL_ARGS_ASSERT_IS_UTF8_UPPER \ |
37e2e78e KW |
1744 | assert(p) |
1745 | ||
e8a67806 | 1746 | PERL_CALLCONV bool Perl_is_utf8_xdigit(pTHX_ const U8 *p) |
37e2e78e KW |
1747 | __attribute__warn_unused_result__ |
1748 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 1749 | #define PERL_ARGS_ASSERT_IS_UTF8_XDIGIT \ |
37e2e78e KW |
1750 | assert(p) |
1751 | ||
4048f010 | 1752 | PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP *o) |
abb2c242 | 1753 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1754 | #define PERL_ARGS_ASSERT_JMAYBE \ |
1755 | assert(o) | |
f54cb97a | 1756 | |
4048f010 | 1757 | PERL_CALLCONV I32 Perl_keyword(pTHX_ const char *name, I32 len, bool all_keywords) |
abb2c242 JH |
1758 | __attribute__pure__ |
1759 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1760 | #define PERL_ARGS_ASSERT_KEYWORD \ |
1761 | assert(name) | |
f54cb97a | 1762 | |
e8a67806 NC |
1763 | PERL_CALLCONV int Perl_keyword_plugin_standard(pTHX_ char* keyword_ptr, STRLEN keyword_len, OP** op_ptr) |
1764 | __attribute__nonnull__(pTHX_1) | |
1765 | __attribute__nonnull__(pTHX_3); | |
1766 | #define PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD \ | |
1767 | assert(keyword_ptr); assert(op_ptr) | |
867fa1e2 | 1768 | |
e8a67806 NC |
1769 | PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base); |
1770 | PERL_CALLCONV bool Perl_lex_bufutf8(pTHX); | |
1771 | PERL_CALLCONV void Perl_lex_discard_to(pTHX_ char* ptr) | |
2f9e2db0 | 1772 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
1773 | #define PERL_ARGS_ASSERT_LEX_DISCARD_TO \ |
1774 | assert(ptr) | |
2f9e2db0 | 1775 | |
f0e67a1d | 1776 | PERL_CALLCONV char* Perl_lex_grow_linestr(pTHX_ STRLEN len); |
e8a67806 NC |
1777 | PERL_CALLCONV bool Perl_lex_next_chunk(pTHX_ U32 flags); |
1778 | PERL_CALLCONV I32 Perl_lex_peek_unichar(pTHX_ U32 flags); | |
1779 | PERL_CALLCONV void Perl_lex_read_space(pTHX_ U32 flags); | |
1780 | PERL_CALLCONV void Perl_lex_read_to(pTHX_ char* ptr) | |
f0e67a1d | 1781 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
1782 | #define PERL_ARGS_ASSERT_LEX_READ_TO \ |
1783 | assert(ptr) | |
f0e67a1d | 1784 | |
e8a67806 | 1785 | PERL_CALLCONV I32 Perl_lex_read_unichar(pTHX_ U32 flags); |
8eaa0acf | 1786 | PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp, U32 flags); |
9dcc53ea Z |
1787 | PERL_CALLCONV void Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags) |
1788 | __attribute__nonnull__(pTHX_1); | |
1789 | #define PERL_ARGS_ASSERT_LEX_STUFF_PV \ | |
1790 | assert(pv) | |
1791 | ||
e8a67806 NC |
1792 | PERL_CALLCONV void Perl_lex_stuff_pvn(pTHX_ const char* pv, STRLEN len, U32 flags) |
1793 | __attribute__nonnull__(pTHX_1); | |
1794 | #define PERL_ARGS_ASSERT_LEX_STUFF_PVN \ | |
1795 | assert(pv) | |
1796 | ||
f0e67a1d Z |
1797 | PERL_CALLCONV void Perl_lex_stuff_sv(pTHX_ SV* sv, U32 flags) |
1798 | __attribute__nonnull__(pTHX_1); | |
1799 | #define PERL_ARGS_ASSERT_LEX_STUFF_SV \ | |
1800 | assert(sv) | |
1801 | ||
1802 | PERL_CALLCONV void Perl_lex_unstuff(pTHX_ char* ptr) | |
1803 | __attribute__nonnull__(pTHX_1); | |
1804 | #define PERL_ARGS_ASSERT_LEX_UNSTUFF \ | |
1805 | assert(ptr) | |
1806 | ||
1d7c1841 | 1807 | PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); |
aec46f14 AL |
1808 | PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...) |
1809 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1810 | #define PERL_ARGS_ASSERT_LOAD_MODULE \ |
1811 | assert(name) | |
aec46f14 | 1812 | |
4048f010 | 1813 | PERL_CALLCONV OP* Perl_localize(pTHX_ OP *o, I32 lex) |
bfce84ec | 1814 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
1815 | #define PERL_ARGS_ASSERT_LOCALIZE \ |
1816 | assert(o) | |
bfce84ec | 1817 | |
aad570aa | 1818 | PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV *const sv) |
abb2c242 JH |
1819 | __attribute__warn_unused_result__ |
1820 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
1821 | #define PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER \ |
1822 | assert(sv) | |
f54cb97a | 1823 | |
e8a67806 | 1824 | PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
1825 | __attribute__nonnull__(pTHX_1) |
1826 | __attribute__nonnull__(pTHX_2); | |
e8a67806 NC |
1827 | #define PERL_ARGS_ASSERT_MAGIC_CLEAR_ALL_ENV \ |
1828 | assert(sv); assert(mg) | |
bfce84ec AL |
1829 | |
1830 | PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg) | |
1831 | __attribute__nonnull__(pTHX_1) | |
1832 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1833 | #define PERL_ARGS_ASSERT_MAGIC_CLEARENV \ |
1834 | assert(sv); assert(mg) | |
bfce84ec | 1835 | |
b3ca2e83 NC |
1836 | PERL_CALLCONV int Perl_magic_clearhint(pTHX_ SV* sv, MAGIC* mg) |
1837 | __attribute__nonnull__(pTHX_1) | |
1838 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1839 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINT \ |
1840 | assert(sv); assert(mg) | |
b3ca2e83 | 1841 | |
f747ebd6 Z |
1842 | PERL_CALLCONV int Perl_magic_clearhints(pTHX_ SV* sv, MAGIC* mg) |
1843 | __attribute__nonnull__(pTHX_1) | |
1844 | __attribute__nonnull__(pTHX_2); | |
1845 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINTS \ | |
1846 | assert(sv); assert(mg) | |
1847 | ||
52b45067 | 1848 | PERL_CALLCONV int Perl_magic_clearisa(pTHX_ SV* sv, MAGIC* mg) |
52b45067 | 1849 | __attribute__nonnull__(pTHX_2); |
7918f24d | 1850 | #define PERL_ARGS_ASSERT_MAGIC_CLEARISA \ |
0e446081 | 1851 | assert(mg) |
52b45067 | 1852 | |
bfce84ec AL |
1853 | PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg) |
1854 | __attribute__nonnull__(pTHX_1) | |
1855 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1856 | #define PERL_ARGS_ASSERT_MAGIC_CLEARPACK \ |
1857 | assert(sv); assert(mg) | |
bfce84ec AL |
1858 | |
1859 | PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg) | |
1860 | __attribute__nonnull__(pTHX_1) | |
1861 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1862 | #define PERL_ARGS_ASSERT_MAGIC_CLEARSIG \ |
1863 | assert(sv); assert(mg) | |
bfce84ec | 1864 | |
e8a67806 | 1865 | PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg); |
1146e912 | 1866 | PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, const MAGIC* mg) |
bfce84ec AL |
1867 | __attribute__nonnull__(pTHX_1) |
1868 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1869 | #define PERL_ARGS_ASSERT_MAGIC_EXISTSPACK \ |
1870 | assert(sv); assert(mg) | |
bfce84ec | 1871 | |
e8a67806 NC |
1872 | PERL_CALLCONV int Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg) |
1873 | __attribute__nonnull__(pTHX_1) | |
1874 | __attribute__nonnull__(pTHX_2); | |
1875 | #define PERL_ARGS_ASSERT_MAGIC_FREEARYLEN_P \ | |
1876 | assert(sv); assert(mg) | |
1877 | ||
bfce84ec AL |
1878 | PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg) |
1879 | __attribute__nonnull__(pTHX_1) | |
1880 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1881 | #define PERL_ARGS_ASSERT_MAGIC_FREEOVRLD \ |
1882 | assert(sv); assert(mg) | |
bfce84ec AL |
1883 | |
1884 | PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg) | |
1885 | __attribute__nonnull__(pTHX_1) | |
1886 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1887 | #define PERL_ARGS_ASSERT_MAGIC_GET \ |
1888 | assert(sv); assert(mg) | |
901017d6 | 1889 | |
8772537c AL |
1890 | PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg) |
1891 | __attribute__nonnull__(pTHX_1) | |
1892 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1893 | #define PERL_ARGS_ASSERT_MAGIC_GETARYLEN \ |
1894 | assert(sv); assert(mg) | |
8772537c | 1895 | |
bfce84ec AL |
1896 | PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg) |
1897 | __attribute__nonnull__(pTHX_1) | |
1898 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1899 | #define PERL_ARGS_ASSERT_MAGIC_GETDEFELEM \ |
1900 | assert(sv); assert(mg) | |
bfce84ec | 1901 | |
bfce84ec AL |
1902 | PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg) |
1903 | __attribute__nonnull__(pTHX_1) | |
1904 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1905 | #define PERL_ARGS_ASSERT_MAGIC_GETNKEYS \ |
1906 | assert(sv); assert(mg) | |
bfce84ec AL |
1907 | |
1908 | PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg) | |
1909 | __attribute__nonnull__(pTHX_1) | |
1910 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1911 | #define PERL_ARGS_ASSERT_MAGIC_GETPACK \ |
1912 | assert(sv); assert(mg) | |
bfce84ec AL |
1913 | |
1914 | PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg) | |
1915 | __attribute__nonnull__(pTHX_1) | |
1916 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1917 | #define PERL_ARGS_ASSERT_MAGIC_GETPOS \ |
1918 | assert(sv); assert(mg) | |
bfce84ec AL |
1919 | |
1920 | PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg) | |
1921 | __attribute__nonnull__(pTHX_1) | |
1922 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1923 | #define PERL_ARGS_ASSERT_MAGIC_GETSIG \ |
1924 | assert(sv); assert(mg) | |
bfce84ec AL |
1925 | |
1926 | PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg) | |
1927 | __attribute__nonnull__(pTHX_1) | |
1928 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1929 | #define PERL_ARGS_ASSERT_MAGIC_GETSUBSTR \ |
1930 | assert(sv); assert(mg) | |
bfce84ec AL |
1931 | |
1932 | PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg) | |
1933 | __attribute__nonnull__(pTHX_1) | |
1934 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1935 | #define PERL_ARGS_ASSERT_MAGIC_GETTAINT \ |
1936 | assert(sv); assert(mg) | |
bfce84ec AL |
1937 | |
1938 | PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg) | |
1939 | __attribute__nonnull__(pTHX_1) | |
1940 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1941 | #define PERL_ARGS_ASSERT_MAGIC_GETUVAR \ |
1942 | assert(sv); assert(mg) | |
bfce84ec AL |
1943 | |
1944 | PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg) | |
1945 | __attribute__nonnull__(pTHX_1) | |
1946 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1947 | #define PERL_ARGS_ASSERT_MAGIC_GETVEC \ |
1948 | assert(sv); assert(mg) | |
bfce84ec | 1949 | |
e8a67806 NC |
1950 | PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg) |
1951 | __attribute__nonnull__(pTHX_1) | |
1952 | __attribute__nonnull__(pTHX_2); | |
1953 | #define PERL_ARGS_ASSERT_MAGIC_KILLBACKREFS \ | |
1954 | assert(sv); assert(mg) | |
1955 | ||
bfce84ec AL |
1956 | PERL_CALLCONV U32 Perl_magic_len(pTHX_ SV* sv, MAGIC* mg) |
1957 | __attribute__nonnull__(pTHX_1) | |
1958 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1959 | #define PERL_ARGS_ASSERT_MAGIC_LEN \ |
1960 | assert(sv); assert(mg) | |
bfce84ec | 1961 | |
e8a67806 NC |
1962 | PERL_CALLCONV SV* Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, U32 flags, U32 argc, ...) |
1963 | __attribute__nonnull__(pTHX_1) | |
1964 | __attribute__nonnull__(pTHX_2) | |
1965 | __attribute__nonnull__(pTHX_3); | |
1966 | #define PERL_ARGS_ASSERT_MAGIC_METHCALL \ | |
1967 | assert(sv); assert(mg); assert(meth) | |
1968 | ||
4048f010 | 1969 | PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV *sv, MAGIC *mg, SV *key) |
bfce84ec AL |
1970 | __attribute__nonnull__(pTHX_1) |
1971 | __attribute__nonnull__(pTHX_2) | |
1972 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
1973 | #define PERL_ARGS_ASSERT_MAGIC_NEXTPACK \ |
1974 | assert(sv); assert(mg); assert(key) | |
bfce84ec AL |
1975 | |
1976 | PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg) | |
1977 | __attribute__nonnull__(pTHX_1) | |
1978 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1979 | #define PERL_ARGS_ASSERT_MAGIC_REGDATA_CNT \ |
1980 | assert(sv); assert(mg) | |
bfce84ec AL |
1981 | |
1982 | PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg) | |
1983 | __attribute__nonnull__(pTHX_1) | |
1984 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1985 | #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_GET \ |
1986 | assert(sv); assert(mg) | |
bfce84ec | 1987 | |
f54cb97a | 1988 | PERL_CALLCONV int Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
1989 | __attribute__noreturn__ |
1990 | __attribute__nonnull__(pTHX_1) | |
1991 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
1992 | #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_SET \ |
1993 | assert(sv); assert(mg) | |
bfce84ec | 1994 | |
e8a67806 NC |
1995 | PERL_CALLCONV SV* Perl_magic_scalarpack(pTHX_ HV *hv, MAGIC *mg) |
1996 | __attribute__nonnull__(pTHX_1) | |
1997 | __attribute__nonnull__(pTHX_2); | |
1998 | #define PERL_ARGS_ASSERT_MAGIC_SCALARPACK \ | |
1999 | assert(hv); assert(mg) | |
2000 | ||
bfce84ec AL |
2001 | PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg) |
2002 | __attribute__nonnull__(pTHX_1) | |
2003 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2004 | #define PERL_ARGS_ASSERT_MAGIC_SET \ |
2005 | assert(sv); assert(mg) | |
bfce84ec | 2006 | |
e8a67806 | 2007 | PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2008 | __attribute__nonnull__(pTHX_1) |
2009 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2010 | #define PERL_ARGS_ASSERT_MAGIC_SET_ALL_ENV \ |
7918f24d | 2011 | assert(sv); assert(mg) |
bfce84ec | 2012 | |
e8a67806 | 2013 | PERL_CALLCONV int Perl_magic_setamagic(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2014 | __attribute__nonnull__(pTHX_1) |
2015 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2016 | #define PERL_ARGS_ASSERT_MAGIC_SETAMAGIC \ |
7918f24d | 2017 | assert(sv); assert(mg) |
bfce84ec | 2018 | |
e8a67806 | 2019 | PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2020 | __attribute__nonnull__(pTHX_1) |
2021 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2022 | #define PERL_ARGS_ASSERT_MAGIC_SETARYLEN \ |
7918f24d | 2023 | assert(sv); assert(mg) |
bfce84ec | 2024 | |
488344d2 | 2025 | PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2026 | __attribute__nonnull__(pTHX_1) |
2027 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2028 | #define PERL_ARGS_ASSERT_MAGIC_SETDBLINE \ |
2029 | assert(sv); assert(mg) | |
bfce84ec | 2030 | |
488344d2 | 2031 | PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2032 | __attribute__nonnull__(pTHX_1) |
2033 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2034 | #define PERL_ARGS_ASSERT_MAGIC_SETDEFELEM \ |
2035 | assert(sv); assert(mg) | |
bfce84ec | 2036 | |
488344d2 | 2037 | PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2038 | __attribute__nonnull__(pTHX_1) |
2039 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2040 | #define PERL_ARGS_ASSERT_MAGIC_SETENV \ |
2041 | assert(sv); assert(mg) | |
bfce84ec | 2042 | |
b3ca2e83 NC |
2043 | PERL_CALLCONV int Perl_magic_sethint(pTHX_ SV* sv, MAGIC* mg) |
2044 | __attribute__nonnull__(pTHX_1) | |
2045 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2046 | #define PERL_ARGS_ASSERT_MAGIC_SETHINT \ |
2047 | assert(sv); assert(mg) | |
b3ca2e83 | 2048 | |
bfce84ec AL |
2049 | PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg) |
2050 | __attribute__nonnull__(pTHX_1) | |
2051 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2052 | #define PERL_ARGS_ASSERT_MAGIC_SETISA \ |
2053 | assert(sv); assert(mg) | |
bfce84ec | 2054 | |
bfce84ec AL |
2055 | PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg) |
2056 | __attribute__nonnull__(pTHX_1) | |
2057 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2058 | #define PERL_ARGS_ASSERT_MAGIC_SETMGLOB \ |
2059 | assert(sv); assert(mg) | |
bfce84ec AL |
2060 | |
2061 | PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg) | |
2062 | __attribute__nonnull__(pTHX_1) | |
2063 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2064 | #define PERL_ARGS_ASSERT_MAGIC_SETNKEYS \ |
2065 | assert(sv); assert(mg) | |
bfce84ec AL |
2066 | |
2067 | PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg) | |
2068 | __attribute__nonnull__(pTHX_1) | |
2069 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2070 | #define PERL_ARGS_ASSERT_MAGIC_SETPACK \ |
2071 | assert(sv); assert(mg) | |
bfce84ec AL |
2072 | |
2073 | PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg) | |
2074 | __attribute__nonnull__(pTHX_1) | |
2075 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2076 | #define PERL_ARGS_ASSERT_MAGIC_SETPOS \ |
2077 | assert(sv); assert(mg) | |
bfce84ec AL |
2078 | |
2079 | PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg) | |
2080 | __attribute__nonnull__(pTHX_1) | |
2081 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2082 | #define PERL_ARGS_ASSERT_MAGIC_SETREGEXP \ |
2083 | assert(sv); assert(mg) | |
bfce84ec AL |
2084 | |
2085 | PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg) | |
bfce84ec | 2086 | __attribute__nonnull__(pTHX_2); |
7918f24d | 2087 | #define PERL_ARGS_ASSERT_MAGIC_SETSIG \ |
38a124f0 | 2088 | assert(mg) |
bfce84ec AL |
2089 | |
2090 | PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg) | |
2091 | __attribute__nonnull__(pTHX_1) | |
2092 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2093 | #define PERL_ARGS_ASSERT_MAGIC_SETSUBSTR \ |
2094 | assert(sv); assert(mg) | |
bfce84ec AL |
2095 | |
2096 | PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg) | |
2097 | __attribute__nonnull__(pTHX_1) | |
2098 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2099 | #define PERL_ARGS_ASSERT_MAGIC_SETTAINT \ |
2100 | assert(sv); assert(mg) | |
bfce84ec | 2101 | |
e8a67806 | 2102 | PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2103 | __attribute__nonnull__(pTHX_1) |
2104 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2105 | #define PERL_ARGS_ASSERT_MAGIC_SETUTF8 \ |
7918f24d | 2106 | assert(sv); assert(mg) |
bfce84ec | 2107 | |
e8a67806 | 2108 | PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2109 | __attribute__nonnull__(pTHX_1) |
2110 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2111 | #define PERL_ARGS_ASSERT_MAGIC_SETUVAR \ |
7918f24d | 2112 | assert(sv); assert(mg) |
bfce84ec | 2113 | |
e8a67806 | 2114 | PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg) |
bfce84ec AL |
2115 | __attribute__nonnull__(pTHX_1) |
2116 | __attribute__nonnull__(pTHX_2); | |
e8a67806 | 2117 | #define PERL_ARGS_ASSERT_MAGIC_SETVEC \ |
7918f24d | 2118 | assert(sv); assert(mg) |
bfce84ec AL |
2119 | |
2120 | PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg) | |
2121 | __attribute__nonnull__(pTHX_1) | |
2122 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2123 | #define PERL_ARGS_ASSERT_MAGIC_SIZEPACK \ |
2124 | assert(sv); assert(mg) | |
bfce84ec AL |
2125 | |
2126 | PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg) | |
2127 | __attribute__nonnull__(pTHX_1) | |
2128 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2129 | #define PERL_ARGS_ASSERT_MAGIC_WIPEPACK \ |
2130 | assert(sv); assert(mg) | |
bfce84ec | 2131 | |
e8a67806 NC |
2132 | PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes) |
2133 | __attribute__malloc__ | |
2134 | __attribute__warn_unused_result__; | |
efaf3674 | 2135 | |
1d7c1841 | 2136 | PERL_CALLCONV void Perl_markstack_grow(pTHX); |
894356b3 | 2137 | PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...) |
aec46f14 AL |
2138 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
2139 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2140 | #define PERL_ARGS_ASSERT_MESS \ |
2141 | assert(pat) | |
aec46f14 | 2142 | |
c5df3096 Z |
2143 | PERL_CALLCONV SV* Perl_mess_sv(pTHX_ SV* basemsg, bool consume) |
2144 | __attribute__nonnull__(pTHX_1); | |
2145 | #define PERL_ARGS_ASSERT_MESS_SV \ | |
2146 | assert(basemsg) | |
2147 | ||
e8a67806 | 2148 | PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); |
9a957fbc AL |
2149 | PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv) |
2150 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2151 | #define PERL_ARGS_ASSERT_MG_CLEAR \ |
2152 | assert(sv) | |
9a957fbc | 2153 | |
4048f010 | 2154 | PERL_CALLCONV int Perl_mg_copy(pTHX_ SV *sv, SV *nsv, const char *key, I32 klen) |
9a957fbc AL |
2155 | __attribute__nonnull__(pTHX_1) |
2156 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2157 | #define PERL_ARGS_ASSERT_MG_COPY \ |
2158 | assert(sv); assert(nsv) | |
9a957fbc | 2159 | |
255164ba DM |
2160 | PERL_CALLCONV MAGIC* Perl_mg_find(pTHX_ const SV* sv, int type) |
2161 | __attribute__warn_unused_result__; | |
2162 | ||
9a957fbc AL |
2163 | PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv) |
2164 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2165 | #define PERL_ARGS_ASSERT_MG_FREE \ |
2166 | assert(sv) | |
9a957fbc | 2167 | |
d9088386 Z |
2168 | PERL_CALLCONV void Perl_mg_free_type(pTHX_ SV* sv, int how) |
2169 | __attribute__nonnull__(pTHX_1); | |
2170 | #define PERL_ARGS_ASSERT_MG_FREE_TYPE \ | |
2171 | assert(sv) | |
2172 | ||
9a957fbc AL |
2173 | PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv) |
2174 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2175 | #define PERL_ARGS_ASSERT_MG_GET \ |
2176 | assert(sv) | |
9a957fbc AL |
2177 | |
2178 | PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv) | |
2179 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2180 | #define PERL_ARGS_ASSERT_MG_LENGTH \ |
2181 | assert(sv) | |
9a957fbc | 2182 | |
e8a67806 NC |
2183 | PERL_CALLCONV void Perl_mg_localize(pTHX_ SV* sv, SV* nsv, bool setmagic) |
2184 | __attribute__nonnull__(pTHX_1) | |
2185 | __attribute__nonnull__(pTHX_2); | |
2186 | #define PERL_ARGS_ASSERT_MG_LOCALIZE \ | |
2187 | assert(sv); assert(nsv) | |
2188 | ||
9a957fbc AL |
2189 | PERL_CALLCONV void Perl_mg_magical(pTHX_ SV* sv) |
2190 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2191 | #define PERL_ARGS_ASSERT_MG_MAGICAL \ |
2192 | assert(sv) | |
9a957fbc AL |
2193 | |
2194 | PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv) | |
2195 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2196 | #define PERL_ARGS_ASSERT_MG_SET \ |
2197 | assert(sv) | |
9a957fbc AL |
2198 | |
2199 | PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv) | |
2200 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2201 | #define PERL_ARGS_ASSERT_MG_SIZE \ |
2202 | assert(sv) | |
9a957fbc | 2203 | |
9f6cc744 | 2204 | PERL_CALLCONV void Perl_mini_mktime(pTHX_ struct tm *ptm) |
9a957fbc | 2205 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
2206 | #define PERL_ARGS_ASSERT_MINI_MKTIME \ |
2207 | assert(ptm) | |
9a957fbc | 2208 | |
1d7c1841 | 2209 | PERL_CALLCONV OP* Perl_mod(pTHX_ OP* o, I32 type); |
a79b25b7 | 2210 | PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ const char* s, STRLEN len); |
e8a67806 | 2211 | PERL_CALLCONV void * Perl_more_bodies(pTHX_ const svtype sv_type, const size_t body_size, const size_t arena_size); |
c7030b81 | 2212 | PERL_CALLCONV const char* Perl_moreswitches(pTHX_ const char* s) |
bfce84ec | 2213 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
2214 | #define PERL_ARGS_ASSERT_MORESWITCHES \ |
2215 | assert(s) | |
bfce84ec | 2216 | |
e8a67806 | 2217 | PERL_CALLCONV const struct mro_alg * Perl_mro_get_from_name(pTHX_ SV *name) |
abb2c242 | 2218 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2219 | #define PERL_ARGS_ASSERT_MRO_GET_FROM_NAME \ |
2220 | assert(name) | |
f54cb97a | 2221 | |
e8a67806 NC |
2222 | PERL_CALLCONV AV* Perl_mro_get_linear_isa(pTHX_ HV* stash) |
2223 | __attribute__nonnull__(pTHX_1); | |
2224 | #define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA \ | |
2225 | assert(stash) | |
f54cb97a | 2226 | |
e8a67806 NC |
2227 | PERL_CALLCONV SV* Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which) |
2228 | __attribute__nonnull__(pTHX_1) | |
2229 | __attribute__nonnull__(pTHX_2); | |
2230 | #define PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA \ | |
2231 | assert(smeta); assert(which) | |
f54cb97a | 2232 | |
6f86b615 FC |
2233 | /* PERL_CALLCONV void mro_isa_changed_in(pTHX_ HV* stash) |
2234 | __attribute__nonnull__(pTHX_1); */ | |
e8a67806 | 2235 | |
6f86b615 | 2236 | PERL_CALLCONV void Perl_mro_isa_changed_in3(pTHX_ HV* stash, const char *stashname, STRLEN stashname_len); |
e8a67806 NC |
2237 | PERL_CALLCONV struct mro_meta* Perl_mro_meta_init(pTHX_ HV* stash) |
2238 | __attribute__nonnull__(pTHX_1); | |
2239 | #define PERL_ARGS_ASSERT_MRO_META_INIT \ | |
2240 | assert(stash) | |
2241 | ||
2242 | PERL_CALLCONV void Perl_mro_method_changed_in(pTHX_ HV* stash) | |
2243 | __attribute__nonnull__(pTHX_1); | |
2244 | #define PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN \ | |
2245 | assert(stash) | |
2246 | ||
35759254 | 2247 | PERL_CALLCONV void Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV *gv, const char *newname, I32 newname_len); |
e8a67806 NC |
2248 | PERL_CALLCONV void Perl_mro_register(pTHX_ const struct mro_alg *mro) |
2249 | __attribute__nonnull__(pTHX_1); | |
2250 | #define PERL_ARGS_ASSERT_MRO_REGISTER \ | |
2251 | assert(mro) | |
2252 | ||
2253 | PERL_CALLCONV void Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name) | |
2254 | __attribute__nonnull__(pTHX_1) | |
2255 | __attribute__nonnull__(pTHX_2); | |
2256 | #define PERL_ARGS_ASSERT_MRO_SET_MRO \ | |
2257 | assert(meta); assert(name) | |
2258 | ||
2259 | PERL_CALLCONV SV* Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which, SV *const data) | |
2260 | __attribute__nonnull__(pTHX_1) | |
2261 | __attribute__nonnull__(pTHX_2) | |
2262 | __attribute__nonnull__(pTHX_3); | |
2263 | #define PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA \ | |
2264 | assert(smeta); assert(which); assert(data) | |
2265 | ||
2266 | PERL_CALLCONV void Perl_munge_qwlist_to_paren_list(pTHX_ OP* qwlist) | |
2267 | __attribute__nonnull__(pTHX_1); | |
2268 | #define PERL_ARGS_ASSERT_MUNGE_QWLIST_TO_PAREN_LIST \ | |
2269 | assert(qwlist) | |
2270 | ||
2271 | PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s) | |
2272 | __attribute__nonnull__(pTHX_1); | |
2273 | #define PERL_ARGS_ASSERT_MY_ATOF \ | |
2274 | assert(s) | |
2275 | ||
2276 | PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value) | |
2277 | __attribute__nonnull__(pTHX_1) | |
2278 | __attribute__nonnull__(pTHX_2); | |
2279 | #define PERL_ARGS_ASSERT_MY_ATOF2 \ | |
2280 | assert(s); assert(value) | |
2281 | ||
2282 | PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs) | |
2283 | __attribute__nonnull__(pTHX_1); | |
2284 | #define PERL_ARGS_ASSERT_MY_ATTRS \ | |
2285 | assert(o) | |
2286 | ||
2287 | PERL_CALLCONV void Perl_my_clearenv(pTHX); | |
2288 | PERL_CALLCONV int Perl_my_dirfd(pTHX_ DIR* dir); | |
f54cb97a | 2289 | PERL_CALLCONV void Perl_my_exit(pTHX_ U32 status) |
abb2c242 | 2290 | __attribute__noreturn__; |
f54cb97a AL |
2291 | |
2292 | PERL_CALLCONV void Perl_my_failure_exit(pTHX) | |
abb2c242 | 2293 | __attribute__noreturn__; |
f54cb97a | 2294 | |
1d7c1841 | 2295 | PERL_CALLCONV I32 Perl_my_fflush_all(pTHX); |
52e18b1f | 2296 | PERL_CALLCONV Pid_t Perl_my_fork(void); |
0d7d409d DM |
2297 | /* PERL_CALLCONV I32 Perl_my_lstat(pTHX); */ |
2298 | PERL_CALLCONV I32 Perl_my_lstat_flags(pTHX_ const U32 flags); | |
1d7c1841 | 2299 | PERL_CALLCONV I32 Perl_my_pclose(pTHX_ PerlIO* ptr); |
bfce84ec AL |
2300 | PERL_CALLCONV PerlIO* Perl_my_popen(pTHX_ const char* cmd, const char* mode) |
2301 | __attribute__nonnull__(pTHX_1) | |
2302 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2303 | #define PERL_ARGS_ASSERT_MY_POPEN \ |
2304 | assert(cmd); assert(mode) | |
bfce84ec | 2305 | |
c9289b7b | 2306 | PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ const char* mode, int n, SV ** args) |
bfce84ec AL |
2307 | __attribute__nonnull__(pTHX_1) |
2308 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
2309 | #define PERL_ARGS_ASSERT_MY_POPEN_LIST \ |
2310 | assert(mode); assert(args) | |
bfce84ec | 2311 | |
e1ec3a88 | 2312 | PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val); |
e8a67806 NC |
2313 | PERL_CALLCONV int Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) |
2314 | __attribute__format__(__printf__,3,4) | |
2315 | __attribute__nonnull__(1) | |
2316 | __attribute__nonnull__(3); | |
2317 | #define PERL_ARGS_ASSERT_MY_SNPRINTF \ | |
2318 | assert(buffer); assert(format) | |
2319 | ||
2320 | PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]); | |
0d7d409d DM |
2321 | /* PERL_CALLCONV I32 Perl_my_stat(pTHX); */ |
2322 | PERL_CALLCONV I32 Perl_my_stat_flags(pTHX_ const U32 flags); | |
bfce84ec AL |
2323 | 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) |
2324 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2325 | #define PERL_ARGS_ASSERT_MY_STRFTIME \ |
2326 | assert(fmt) | |
bfce84ec | 2327 | |
e8a67806 NC |
2328 | PERL_CALLCONV void Perl_my_swabn(void* ptr, int n) |
2329 | __attribute__nonnull__(1); | |
2330 | #define PERL_ARGS_ASSERT_MY_SWABN \ | |
2331 | assert(ptr) | |
f54cb97a | 2332 | |
e8a67806 NC |
2333 | PERL_CALLCONV void Perl_my_unexec(pTHX); |
2334 | PERL_CALLCONV int Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap) | |
2335 | __attribute__nonnull__(1) | |
2336 | __attribute__nonnull__(3); | |
2337 | #define PERL_ARGS_ASSERT_MY_VSNPRINTF \ | |
2338 | assert(buffer); assert(format) | |
f54cb97a | 2339 | |
e8a67806 NC |
2340 | PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block); |
2341 | PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o) | |
abb2c242 | 2342 | __attribute__malloc__ |
e8a67806 | 2343 | __attribute__warn_unused_result__; |
f54cb97a | 2344 | |
f54cb97a | 2345 | PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o) |
abb2c242 JH |
2346 | __attribute__malloc__ |
2347 | __attribute__warn_unused_result__; | |
f54cb97a | 2348 | |
e8a67806 NC |
2349 | PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block); |
2350 | PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right) | |
abb2c242 JH |
2351 | __attribute__malloc__ |
2352 | __attribute__warn_unused_result__; | |
f54cb97a | 2353 | |
e8a67806 NC |
2354 | PERL_CALLCONV CV* Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); |
2355 | /* PERL_CALLCONV AV* Perl_newAV(pTHX) | |
2356 | __attribute__warn_unused_result__; */ | |
2357 | ||
2358 | PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o) | |
2359 | __attribute__malloc__ | |
2360 | __attribute__warn_unused_result__ | |
2361 | __attribute__nonnull__(pTHX_1); | |
2362 | #define PERL_ARGS_ASSERT_NEWAVREF \ | |
2363 | assert(o) | |
2364 | ||
2365 | PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 JH |
2366 | __attribute__malloc__ |
2367 | __attribute__warn_unused_result__; | |
f54cb97a | 2368 | |
aec46f14 | 2369 | PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop) |
abb2c242 | 2370 | __attribute__malloc__ |
aec46f14 AL |
2371 | __attribute__warn_unused_result__ |
2372 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2373 | #define PERL_ARGS_ASSERT_NEWCONDOP \ |
2374 | assert(first) | |
aec46f14 | 2375 | |
99ab892b | 2376 | PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv); |
e8a67806 NC |
2377 | PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) |
2378 | __attribute__malloc__ | |
2379 | __attribute__warn_unused_result__; | |
2380 | ||
94bf0465 | 2381 | PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, OP* sv, OP* expr, OP* block, OP* cont) |
abb2c242 | 2382 | __attribute__malloc__ |
aa924a5a | 2383 | __attribute__warn_unused_result__ |
94bf0465 | 2384 | __attribute__nonnull__(pTHX_3); |
7918f24d NC |
2385 | #define PERL_ARGS_ASSERT_NEWFOROP \ |
2386 | assert(expr) | |
f54cb97a | 2387 | |
0d863452 RH |
2388 | PERL_CALLCONV OP* Perl_newGIVENOP(pTHX_ OP* cond, OP* block, PADOFFSET defsv_off) |
2389 | __attribute__malloc__ | |
2390 | __attribute__warn_unused_result__ | |
2391 | __attribute__nonnull__(pTHX_1) | |
2392 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2393 | #define PERL_ARGS_ASSERT_NEWGIVENOP \ |
2394 | assert(cond); assert(block) | |
0d863452 | 2395 | |
e8a67806 NC |
2396 | PERL_CALLCONV GP * Perl_newGP(pTHX_ GV *const gv) |
2397 | __attribute__nonnull__(pTHX_1); | |
2398 | #define PERL_ARGS_ASSERT_NEWGP \ | |
2399 | assert(gv) | |
2400 | ||
2401 | PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv) | |
2402 | __attribute__malloc__ | |
2403 | __attribute__warn_unused_result__ | |
2404 | __attribute__nonnull__(pTHX_3); | |
2405 | #define PERL_ARGS_ASSERT_NEWGVOP \ | |
2406 | assert(gv) | |
2407 | ||
2408 | PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) | |
2409 | __attribute__malloc__ | |
2410 | __attribute__warn_unused_result__; | |
2411 | ||
2412 | PERL_CALLCONV GV* Perl_newGVgen(pTHX_ const char* pack) | |
2413 | __attribute__malloc__ | |
2414 | __attribute__warn_unused_result__ | |
2415 | __attribute__nonnull__(pTHX_1); | |
2416 | #define PERL_ARGS_ASSERT_NEWGVGEN \ | |
2417 | assert(pack) | |
2418 | ||
2419 | /* PERL_CALLCONV HV* Perl_newHV(pTHX) | |
2420 | __attribute__warn_unused_result__; */ | |
2421 | ||
2422 | PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o) | |
2423 | __attribute__malloc__ | |
2424 | __attribute__warn_unused_result__ | |
2425 | __attribute__nonnull__(pTHX_1); | |
2426 | #define PERL_ARGS_ASSERT_NEWHVREF \ | |
2427 | assert(o) | |
2428 | ||
2429 | PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV *hv) | |
2430 | __attribute__malloc__ | |
2431 | __attribute__warn_unused_result__; | |
2432 | ||
2433 | /* PERL_CALLCONV IO* Perl_newIO(pTHX) | |
2434 | __attribute__malloc__ | |
2435 | __attribute__warn_unused_result__; */ | |
2436 | ||
2437 | PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
2438 | __attribute__malloc__ | |
2439 | __attribute__warn_unused_result__; | |
2440 | ||
4048f010 | 2441 | PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP *first, OP *other) |
abb2c242 | 2442 | __attribute__malloc__ |
aa924a5a SH |
2443 | __attribute__warn_unused_result__ |
2444 | __attribute__nonnull__(pTHX_3) | |
2445 | __attribute__nonnull__(pTHX_4); | |
7918f24d NC |
2446 | #define PERL_ARGS_ASSERT_NEWLOGOP \ |
2447 | assert(first); assert(other) | |
f54cb97a AL |
2448 | |
2449 | PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label) | |
abb2c242 | 2450 | __attribute__malloc__ |
aa924a5a SH |
2451 | __attribute__warn_unused_result__ |
2452 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2453 | #define PERL_ARGS_ASSERT_NEWLOOPEX \ |
2454 | assert(label) | |
f54cb97a AL |
2455 | |
2456 | PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block) | |
abb2c242 JH |
2457 | __attribute__malloc__ |
2458 | __attribute__warn_unused_result__; | |
f54cb97a | 2459 | |
4373e329 | 2460 | PERL_CALLCONV OP* Perl_newNULLLIST(pTHX) |
abb2c242 JH |
2461 | __attribute__malloc__ |
2462 | __attribute__warn_unused_result__; | |
f54cb97a AL |
2463 | |
2464 | PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags) | |
abb2c242 JH |
2465 | __attribute__malloc__ |
2466 | __attribute__warn_unused_result__; | |
f54cb97a | 2467 | |
e8a67806 NC |
2468 | PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) |
2469 | __attribute__malloc__ | |
2470 | __attribute__warn_unused_result__; | |
2471 | ||
f54cb97a | 2472 | PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o) |
abb2c242 | 2473 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
2474 | #define PERL_ARGS_ASSERT_NEWPROG \ |
2475 | assert(o) | |
f54cb97a | 2476 | |
e8a67806 NC |
2477 | PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv) |
2478 | __attribute__malloc__ | |
2479 | __attribute__warn_unused_result__; | |
2480 | ||
f54cb97a | 2481 | PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right) |
abb2c242 | 2482 | __attribute__malloc__ |
aa924a5a SH |
2483 | __attribute__warn_unused_result__ |
2484 | __attribute__nonnull__(pTHX_2) | |
2485 | __attribute__nonnull__(pTHX_3); | |
7918f24d NC |
2486 | #define PERL_ARGS_ASSERT_NEWRANGE \ |
2487 | assert(left); assert(right) | |
f54cb97a | 2488 | |
e8a67806 NC |
2489 | PERL_CALLCONV SV* Perl_newRV(pTHX_ SV *const sv) |
2490 | __attribute__malloc__ | |
2491 | __attribute__warn_unused_result__ | |
2492 | __attribute__nonnull__(pTHX_1); | |
2493 | #define PERL_ARGS_ASSERT_NEWRV \ | |
2494 | assert(sv) | |
2495 | ||
2496 | PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *const sv) | |
2497 | __attribute__malloc__ | |
2498 | __attribute__warn_unused_result__ | |
2499 | __attribute__nonnull__(pTHX_1); | |
2500 | #define PERL_ARGS_ASSERT_NEWRV_NOINC \ | |
2501 | assert(sv) | |
2502 | ||
f54cb97a | 2503 | PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop) |
abb2c242 JH |
2504 | __attribute__malloc__ |
2505 | __attribute__warn_unused_result__; | |
f54cb97a AL |
2506 | |
2507 | PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o) | |
abb2c242 JH |
2508 | __attribute__malloc__ |
2509 | __attribute__warn_unused_result__; | |
f54cb97a | 2510 | |
1d7c1841 | 2511 | PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block); |
e8a67806 NC |
2512 | PERL_CALLCONV SV* Perl_newSV(pTHX_ const STRLEN len) |
2513 | __attribute__malloc__ | |
2514 | __attribute__warn_unused_result__; | |
77004dee | 2515 | |
e8a67806 NC |
2516 | PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv) |
2517 | __attribute__malloc__ | |
2518 | __attribute__warn_unused_result__ | |
abb2c242 | 2519 | __attribute__nonnull__(pTHX_3); |
e8a67806 NC |
2520 | #define PERL_ARGS_ASSERT_NEWSVOP \ |
2521 | assert(sv) | |
f54cb97a | 2522 | |
e8a67806 | 2523 | PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o) |
abb2c242 JH |
2524 | __attribute__malloc__ |
2525 | __attribute__warn_unused_result__ | |
2526 | __attribute__nonnull__(pTHX_1); | |
e8a67806 | 2527 | #define PERL_ARGS_ASSERT_NEWSVREF \ |
7918f24d | 2528 | assert(o) |
f54cb97a | 2529 | |
e8a67806 | 2530 | PERL_CALLCONV SV* Perl_newSV_type(pTHX_ const svtype type) |
abb2c242 JH |
2531 | __attribute__malloc__ |
2532 | __attribute__warn_unused_result__; | |
f54cb97a | 2533 | |
e8a67806 | 2534 | PERL_CALLCONV SV* Perl_newSVhek(pTHX_ const HEK *const hek) |
abb2c242 JH |
2535 | __attribute__malloc__ |
2536 | __attribute__warn_unused_result__; | |
f54cb97a | 2537 | |
e8a67806 | 2538 | PERL_CALLCONV SV* Perl_newSViv(pTHX_ const IV i) |
abb2c242 | 2539 | __attribute__malloc__ |
e8a67806 | 2540 | __attribute__warn_unused_result__; |
f54cb97a | 2541 | |
e8a67806 | 2542 | PERL_CALLCONV SV* Perl_newSVnv(pTHX_ const NV n) |
abb2c242 JH |
2543 | __attribute__malloc__ |
2544 | __attribute__warn_unused_result__; | |
f54cb97a | 2545 | |
e8a67806 | 2546 | PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char *const s, const STRLEN len) |
abb2c242 JH |
2547 | __attribute__malloc__ |
2548 | __attribute__warn_unused_result__; | |
f54cb97a | 2549 | |
e8a67806 | 2550 | PERL_CALLCONV SV* Perl_newSVpv_share(pTHX_ const char* s, U32 hash) |
abb2c242 JH |
2551 | __attribute__malloc__ |
2552 | __attribute__warn_unused_result__; | |
f54cb97a | 2553 | |
e8a67806 | 2554 | PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char *const pat, ...) |
abb2c242 JH |
2555 | __attribute__malloc__ |
2556 | __attribute__warn_unused_result__ | |
e8a67806 | 2557 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
abb2c242 | 2558 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2559 | #define PERL_ARGS_ASSERT_NEWSVPVF \ |
2560 | assert(pat) | |
f54cb97a | 2561 | |
23f13727 | 2562 | PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len) |
abb2c242 JH |
2563 | __attribute__malloc__ |
2564 | __attribute__warn_unused_result__; | |
f54cb97a | 2565 | |
23f13727 | 2566 | PERL_CALLCONV SV* Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags) |
740cce10 NC |
2567 | __attribute__malloc__ |
2568 | __attribute__warn_unused_result__; | |
2569 | ||
f54cb97a | 2570 | PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash) |
abb2c242 JH |
2571 | __attribute__malloc__ |
2572 | __attribute__warn_unused_result__; | |
f54cb97a | 2573 | |
12964ddd | 2574 | PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV *const rv, const char *const classname) |
1b6737cc | 2575 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
2576 | #define PERL_ARGS_ASSERT_NEWSVRV \ |
2577 | assert(rv) | |
f54cb97a | 2578 | |
23f13727 | 2579 | PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV *const old) |
abb2c242 JH |
2580 | __attribute__malloc__ |
2581 | __attribute__warn_unused_result__; | |
f54cb97a | 2582 | |
e8a67806 | 2583 | PERL_CALLCONV SV* Perl_newSVuv(pTHX_ const UV u) |
b9f83d2f NC |
2584 | __attribute__malloc__ |
2585 | __attribute__warn_unused_result__; | |
2586 | ||
f54cb97a | 2587 | PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first) |
abb2c242 JH |
2588 | __attribute__malloc__ |
2589 | __attribute__warn_unused_result__; | |
f54cb97a | 2590 | |
0d863452 RH |
2591 | PERL_CALLCONV OP* Perl_newWHENOP(pTHX_ OP* cond, OP* block) |
2592 | __attribute__malloc__ | |
2593 | __attribute__warn_unused_result__ | |
2594 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2595 | #define PERL_ARGS_ASSERT_NEWWHENOP \ |
2596 | assert(block) | |
0d863452 | 2597 | |
94bf0465 | 2598 | PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, OP* expr, OP* block, OP* cont, I32 has_my) |
abb2c242 JH |
2599 | __attribute__malloc__ |
2600 | __attribute__warn_unused_result__; | |
f54cb97a | 2601 | |
e8a67806 | 2602 | PERL_CALLCONV CV* Perl_newXS(pTHX_ const char *name, XSUBADDR_t subaddr, const char *filename) |
65b06e02 DM |
2603 | __attribute__nonnull__(pTHX_2) |
2604 | __attribute__nonnull__(pTHX_3); | |
e8a67806 NC |
2605 | #define PERL_ARGS_ASSERT_NEWXS \ |
2606 | assert(subaddr); assert(filename) | |
f54cb97a | 2607 | |
e8a67806 NC |
2608 | PERL_CALLCONV CV * Perl_newXS_flags(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags) |
2609 | __attribute__nonnull__(pTHX_2) | |
2610 | __attribute__nonnull__(pTHX_3); | |
2611 | #define PERL_ARGS_ASSERT_NEWXS_FLAGS \ | |
2612 | assert(subaddr); assert(filename) | |
f54cb97a | 2613 | |
e8a67806 NC |
2614 | PERL_CALLCONV void Perl_new_collate(pTHX_ const char* newcoll); |
2615 | PERL_CALLCONV void Perl_new_ctype(pTHX_ const char* newctype) | |
91152fc1 | 2616 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2617 | #define PERL_ARGS_ASSERT_NEW_CTYPE \ |
2618 | assert(newctype) | |
2619 | ||
2620 | PERL_CALLCONV void Perl_new_numeric(pTHX_ const char* newcoll); | |
2621 | PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) | |
2622 | __attribute__malloc__ | |
2623 | __attribute__warn_unused_result__; | |
91152fc1 | 2624 | |
2d03de9c AL |
2625 | PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver) |
2626 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2627 | #define PERL_ARGS_ASSERT_NEW_VERSION \ |
2628 | assert(ver) | |
2d03de9c | 2629 | |
e8a67806 NC |
2630 | PERL_CALLCONV STRLEN * Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits, STRLEN size) |
2631 | __attribute__malloc__ | |
2632 | __attribute__warn_unused_result__ | |
abb2c242 | 2633 | __attribute__nonnull__(pTHX_2); |
e8a67806 NC |
2634 | #define PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD \ |
2635 | assert(bits) | |
f54cb97a | 2636 | |
2d03de9c AL |
2637 | PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv) |
2638 | __attribute__nonnull__(pTHX_1); | |
7918f24d NC |
2639 | #define PERL_ARGS_ASSERT_NEXTARGV \ |
2640 | assert(gv) | |
2d03de9c | 2641 | |
04c9e624 | 2642 | PERL_CALLCONV char* Perl_ninstr(const char* big, const char* bigend, const char* little, const char* lend) |
2d03de9c | 2643 | __attribute__pure__ |
04c9e624 VP |
2644 | __attribute__nonnull__(1) |
2645 | __attribute__nonnull__(2) | |
2646 | __attribute__nonnull__(3) | |
2647 | __attribute__nonnull__(4); | |
7918f24d NC |
2648 | #define PERL_ARGS_ASSERT_NINSTR \ |
2649 | assert(big); assert(bigend); assert(little); assert(lend) | |
f54cb97a | 2650 | |
e8a67806 NC |
2651 | PERL_CALLCONV int Perl_nothreadhook(pTHX); |
2652 | PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o) | |
2653 | __attribute__warn_unused_result__ | |
eb8433b7 | 2654 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 2655 | #define PERL_ARGS_ASSERT_OOPSAV \ |
7918f24d | 2656 | assert(o) |
eb8433b7 | 2657 | |
e8a67806 NC |
2658 | PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o) |
2659 | __attribute__warn_unused_result__ | |
2d03de9c | 2660 | __attribute__nonnull__(pTHX_1); |
e8a67806 | 2661 | #define PERL_ARGS_ASSERT_OOPSHV \ |
7918f24d | 2662 | assert(o) |
f54cb97a | 2663 | |
2fcb4757 Z |
2664 | PERL_CALLCONV OP* Perl_op_append_elem(pTHX_ I32 optype, OP* first, OP* last); |
2665 | PERL_CALLCONV OP* Perl_op_append_list(pTHX_ I32 optype, OP* first, OP* last); | |
e8a67806 NC |
2666 | PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o) |
2667 | __attribute__nonnull__(pTHX_1); | |
2668 | #define PERL_ARGS_ASSERT_OP_CLEAR \ | |
2669 | assert(o) | |
2670 | ||
2671 | PERL_CALLCONV SV* Perl_op_const_sv(pTHX_ const OP* o, CV* cv) | |
2672 | __attribute__warn_unused_result__; | |
2673 | ||
d9088386 Z |
2674 | PERL_CALLCONV OP* Perl_op_contextualize(pTHX_ OP* o, I32 context) |
2675 | __attribute__nonnull__(pTHX_1); | |
2676 | #define PERL_ARGS_ASSERT_OP_CONTEXTUALIZE \ | |
2677 | assert(o) | |
2678 | ||
e8a67806 NC |
2679 | PERL_CALLCONV void Perl_op_dump(pTHX_ const OP *o) |
2680 | __attribute__nonnull__(pTHX_1); | |
2681 | #define PERL_ARGS_ASSERT_OP_DUMP \ | |
2682 | assert(o) | |
2683 | ||
2684 | PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg); | |
5983a79d BM |
2685 | PERL_CALLCONV OP* Perl_op_linklist(pTHX_ OP *o) |
2686 | __attribute__nonnull__(pTHX_1); | |
2687 | #define PERL_ARGS_ASSERT_OP_LINKLIST \ | |
2688 | assert(o) | |
2689 | ||
e8a67806 NC |
2690 | PERL_CALLCONV void Perl_op_null(pTHX_ OP* o) |
2691 | __attribute__nonnull__(pTHX_1); | |
2692 | #define PERL_ARGS_ASSERT_OP_NULL \ | |
2693 | assert(o) | |
2694 | ||
2fcb4757 | 2695 | PERL_CALLCONV OP* Perl_op_prepend_elem(pTHX_ I32 optype, OP* first, OP* last); |
e8a67806 NC |
2696 | PERL_CALLCONV void Perl_op_refcnt_lock(pTHX); |
2697 | PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX); | |
2698 | 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) | |
2699 | __attribute__nonnull__(pTHX_1) | |
2700 | __attribute__nonnull__(pTHX_2) | |
2701 | __attribute__nonnull__(pTHX_3) | |
2702 | __attribute__nonnull__(pTHX_4) | |
2703 | __attribute__nonnull__(pTHX_5) | |
2704 | __attribute__nonnull__(pTHX_6); | |
2705 | #define PERL_ARGS_ASSERT_PACK_CAT \ | |
2706 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist); assert(next_in_list) | |
2707 | ||
6fa4d285 DG |
2708 | PERL_CALLCONV void Perl_package_version(pTHX_ OP* v) |
2709 | __attribute__nonnull__(pTHX_1); | |
2710 | #define PERL_ARGS_ASSERT_PACKAGE_VERSION \ | |
2711 | assert(v) | |
2712 | ||
e8a67806 NC |
2713 | PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist) |
2714 | __attribute__nonnull__(pTHX_1) | |
2715 | __attribute__nonnull__(pTHX_2) | |
2716 | __attribute__nonnull__(pTHX_3) | |
2717 | __attribute__nonnull__(pTHX_4) | |
2718 | __attribute__nonnull__(pTHX_5); | |
2719 | #define PERL_ARGS_ASSERT_PACKLIST \ | |
2720 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist) | |
2721 | ||
2722 | PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ SV* sv, OPCODE op_type) | |
abb2c242 | 2723 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2724 | #define PERL_ARGS_ASSERT_PAD_ADD_ANON \ |
2725 | assert(sv) | |
2726 | ||
2727 | PERL_CALLCONV PADOFFSET Perl_pad_add_name(pTHX_ const char *name, const STRLEN len, const U32 flags, HV *typestash, HV *ourstash) | |
2728 | __attribute__nonnull__(pTHX_1); | |
2729 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME \ | |
7918f24d | 2730 | assert(name) |
f54cb97a | 2731 | |
e8a67806 NC |
2732 | PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype); |
2733 | PERL_CALLCONV void Perl_pad_block_start(pTHX_ int full); | |
2734 | PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po) | |
2735 | __attribute__warn_unused_result__; | |
2736 | ||
f8f98e0a | 2737 | PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name, STRLEN len, U32 flags) |
255164ba | 2738 | __attribute__warn_unused_result__ |
abb2c242 | 2739 | __attribute__nonnull__(pTHX_1); |
7918f24d NC |
2740 | #define PERL_ARGS_ASSERT_PAD_FINDMY \ |
2741 | assert(name) | |
f54cb97a | 2742 | |
e8a67806 | 2743 | PERL_CALLCONV void Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv) |
abb2c242 | 2744 | __attribute__nonnull__(pTHX_1) |
e8a67806 | 2745 | __attribute__nonnull__(pTHX_2) |
abb2c242 | 2746 | __attribute__nonnull__(pTHX_3); |
e8a67806 NC |
2747 | #define PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS \ |
2748 | assert(padlist); assert(old_cv); assert(new_cv) | |
f54cb97a | 2749 | |
e8a67806 NC |
2750 | PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po); |
2751 | PERL_CALLCONV void Perl_pad_leavemy(pTHX); | |
2752 | PERL_CALLCONV PADLIST* Perl_pad_new(pTHX_ int flags) | |
2753 | __attribute__malloc__ | |
2754 | __attribute__warn_unused_result__; | |
f54cb97a | 2755 | |
e8a67806 | 2756 | PERL_CALLCONV void Perl_pad_push(pTHX_ PADLIST *padlist, int depth) |
abb2c242 | 2757 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2758 | #define PERL_ARGS_ASSERT_PAD_PUSH \ |
2759 | assert(padlist) | |
f54cb97a | 2760 | |
e8a67806 NC |
2761 | PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust); |
2762 | PERL_CALLCONV void Perl_pad_tidy(pTHX_ padtidy_type type); | |
2763 | PERL_CALLCONV void Perl_pad_undef(pTHX_ CV* cv) | |
255164ba | 2764 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2765 | #define PERL_ARGS_ASSERT_PAD_UNDEF \ |
2766 | assert(cv) | |
255164ba | 2767 | |
8359b381 | 2768 | PERL_CALLCONV OP* Perl_parse_barestmt(pTHX_ U32 flags); |
e53d8f76 | 2769 | PERL_CALLCONV OP* Perl_parse_block(pTHX_ U32 flags); |
e8a67806 | 2770 | PERL_CALLCONV OP* Perl_parse_fullstmt(pTHX_ U32 flags); |
361d9b55 | 2771 | PERL_CALLCONV SV* Perl_parse_label(pTHX_ U32 flags); |
07ffcb73 | 2772 | PERL_CALLCONV OP* Perl_parse_stmtseq(pTHX_ U32 flags); |
e8a67806 | 2773 | PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt) |
255164ba | 2774 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2775 | #define PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS \ |
2776 | assert(popt) | |
255164ba | 2777 | |
e8a67806 | 2778 | PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser) |
780a5241 | 2779 | __attribute__nonnull__(pTHX_1); |
e8a67806 NC |
2780 | #define PERL_ARGS_ASSERT_PARSER_FREE \ |
2781 | assert(parser) | |
780a5241 | 2782 | |
e8a67806 NC |
2783 | PERL_CALLCONV void Perl_peep(pTHX_ OP* o); |
2784 | PERL_CALLCONV PerlInterpreter* perl_alloc(void); | |
2785 | PERL_CALLCONV void perl_construct(PerlInterpreter *my_perl) | |
2786 | __attribute__nonnull__(1); | |
2787 | #define PERL_ARGS_ASSERT_PERL_CONSTRUCT \ | |
2788 | assert(my_perl) | |
f54cb97a | 2789 | |
e8a67806 NC |
2790 | PERL_CALLCONV int perl_destruct(PerlInterpreter *my_perl) |
2791 | __attribute__nonnull__(1); | |
2792 | #define PERL_ARGS_ASSERT_PERL_DESTRUCT \ | |
2793 | assert(my_perl) | |
f54cb97a | 2794 | |
e8a67806 NC |
2795 | PERL_CALLCONV void perl_free(PerlInterpreter *my_perl) |
2796 | __attribute__nonnull__(1); | |
2797 | #define PERL_ARGS_ASSERT_PERL_FREE \ | |
2798 | assert(my_perl) | |
f54cb97a | 2799 | |
e8a67806 NC |
2800 | PERL_CALLCONV int perl_parse(PerlInterpreter *my_perl, XSINIT_t xsinit, int argc, char** argv, char** env) |
2801 | __attribute__nonnull__(1); | |
2802 | #define PERL_ARGS_ASSERT_PERL_PARSE \ | |
2803 | assert(my_perl) | |
2d03de9c | 2804 | |
e8a67806 NC |
2805 | PERL_CALLCONV int perl_run(PerlInterpreter *my_perl) |
2806 | __attribute__nonnull__(1); | |
2807 | #define PERL_ARGS_ASSERT_PERL_RUN \ | |
2808 | assert(my_perl) | |
2d03de9c | 2809 | |
e8a67806 | 2810 | PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm); |
4048f010 | 2811 | PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP *o, OP *expr, bool isreg) |
abb2c242 JH |
2812 | __attribute__nonnull__(pTHX_1) |
2813 | __attribute__nonnull__(pTHX_2); | |
7918f24d NC |
2814 | #define PERL_ARGS_ASSERT_PMRUNTIME \ |
2815 | assert(o); assert(expr) | |
f54cb97a | 2816 | |
1d7c1841 | 2817 | PERL_CALLCONV void Perl_pop_scope(pTHX); |
74e8ce34 NC |
2818 | PERL_CALLCONV void Perl_populate_isa(pTHX_ const char *name, STRLEN len, ...) |
2819 | __attribute__nonnull__(pTHX_1); | |
2820 | #define PERL_ARGS_ASSERT_POPULATE_ISA \ | |
2821 | assert(name) | |
2822 | ||
a4e74480 NC |
2823 | PERL_CALLCONV OP * Perl_pp_aassign(pTHX); |
2824 | PERL_CALLCONV OP * Perl_pp_abs(pTHX); | |
2825 | PERL_CALLCONV OP * Perl_pp_accept(pTHX); | |
2826 | PERL_CALLCONV OP * Perl_pp_add(pTHX); | |
2827 | PERL_CALLCONV OP * Perl_pp_aeach(pTHX); | |
2828 | PERL_CALLCONV OP * Perl_pp_aelem(pTHX); | |
2829 | PERL_CALLCONV OP * Perl_pp_aelemfast(pTHX); | |
2830 | PERL_CALLCONV OP * Perl_pp_akeys(pTHX); | |
2831 | PERL_CALLCONV OP * Perl_pp_alarm(pTHX); | |
2832 | PERL_CALLCONV OP * Perl_pp_and(pTHX); | |
2833 | PERL_CALLCONV OP * Perl_pp_andassign(pTHX); | |
2834 | PERL_CALLCONV OP * Perl_pp_anoncode(pTHX); | |
2835 | PERL_CALLCONV OP * Perl_pp_anonhash(pTHX); | |
2836 | PERL_CALLCONV OP * Perl_pp_anonlist(pTHX); | |
2837 | PERL_CALLCONV OP * Perl_pp_aslice(pTHX); | |
2838 | PERL_CALLCONV OP * Perl_pp_atan2(pTHX); | |
2839 | PERL_CALLCONV OP * Perl_pp_av2arylen(pTHX); | |
2840 | PERL_CALLCONV OP * Perl_pp_avalues(pTHX); | |
2841 | PERL_CALLCONV OP * Perl_pp_backtick(pTHX); | |
2842 | PERL_CALLCONV OP * Perl_pp_bind(pTHX); | |
2843 | PERL_CALLCONV OP * Perl_pp_binmode(pTHX); | |
2844 | PERL_CALLCONV OP * Perl_pp_bit_and(pTHX); | |
2845 | PERL_CALLCONV OP * Perl_pp_bit_or(pTHX); | |
2846 | PERL_CALLCONV OP * Perl_pp_bit_xor(pTHX); | |
2847 | PERL_CALLCONV OP * Perl_pp_bless(pTHX); | |
2848 | PERL_CALLCONV OP * Perl_pp_boolkeys(pTHX); | |
2849 | PERL_CALLCONV OP * Perl_pp_break(pTHX); | |
2850 | PERL_CALLCONV OP * Perl_pp_caller(pTHX); | |
2851 | PERL_CALLCONV OP * Perl_pp_chdir(pTHX); | |
2852 | PERL_CALLCONV OP * Perl_pp_chmod(pTHX); | |
2853 | PERL_CALLCONV OP * Perl_pp_chomp(pTHX); | |
2854 | PERL_CALLCONV OP * Perl_pp_chop(pTHX); | |
2855 | PERL_CALLCONV OP * Perl_pp_chown(pTHX); | |
2856 | PERL_CALLCONV OP * Perl_pp_chr(pTHX); | |
2857 | PERL_CALLCONV OP * Perl_pp_chroot(pTHX); | |
2858 | PERL_CALLCONV OP * Perl_pp_close(pTHX); | |
2859 | PERL_CALLCONV OP * Perl_pp_closedir(pTHX); | |
2860 | PERL_CALLCONV OP * Perl_pp_complement(pTHX); | |
2861 | PERL_CALLCONV OP * Perl_pp_concat(pTHX); | |
2862 | PERL_CALLCONV OP * Perl_pp_cond_expr(pTHX); | |
2863 | PERL_CALLCONV OP * Perl_pp_connect(pTHX); | |
2864 | PERL_CALLCONV OP * Perl_pp_const(pTHX); | |
2865 | PERL_CALLCONV OP * Perl_pp_continue(pTHX); | |
2866 | PERL_CALLCONV OP * Perl_pp_cos(pTHX); | |
2867 | PERL_CALLCONV OP * Perl_pp_crypt(pTHX); | |
2868 | PERL_CALLCONV OP * Perl_pp_dbmclose(pTHX); | |
2869 | PERL_CALLCONV OP * Perl_pp_dbmopen(pTHX); | |
2870 | PERL_CALLCONV OP * Perl_pp_dbstate(pTHX); | |
2871 | PERL_CALLCONV OP * Perl_pp_defined(pTHX); | |
2872 | PERL_CALLCONV OP * Perl_pp_delete(pTHX); | |
2873 | PERL_CALLCONV OP * Perl_pp_die(pTHX); | |
2874 | PERL_CALLCONV OP * Perl_pp_divide(pTHX); | |
2875 | PERL_CALLCONV OP * Perl_pp_dofile(pTHX); | |
2876 | PERL_CALLCONV OP * Perl_pp_dor(pTHX); | |
2877 | PERL_CALLCONV OP * Perl_pp_dorassign(pTHX); | |
2878 | PERL_CALLCONV OP * Perl_pp_dump(pTHX); | |
2879 | PERL_CALLCONV OP * Perl_pp_each(pTHX); | |
2880 | PERL_CALLCONV OP * Perl_pp_egrent(pTHX); | |
2881 | PERL_CALLCONV OP * Perl_pp_ehostent(pTHX); | |
2882 | PERL_CALLCONV OP * Perl_pp_enetent(pTHX); | |
2883 | PERL_CALLCONV OP * Perl_pp_enter(pTHX); | |
2884 | PERL_CALLCONV OP * Perl_pp_entereval(pTHX); | |
2885 | PERL_CALLCONV OP * Perl_pp_entergiven(pTHX); | |
2886 | PERL_CALLCONV OP * Perl_pp_enteriter(pTHX); | |
2887 | PERL_CALLCONV OP * Perl_pp_enterloop(pTHX); | |
2888 | PERL_CALLCONV OP * Perl_pp_entersub(pTHX); | |
2889 | PERL_CALLCONV OP * Perl_pp_entertry(pTHX); | |
2890 | PERL_CALLCONV OP * Perl_pp_enterwhen(pTHX); | |
2891 | PERL_CALLCONV OP * Perl_pp_enterwrite(pTHX); | |
2892 | PERL_CALLCONV OP * Perl_pp_eof(pTHX); | |
2893 | PERL_CALLCONV OP * Perl_pp_eprotoent(pTHX); | |
2894 | PERL_CALLCONV OP * Perl_pp_epwent(pTHX); | |
2895 | PERL_CALLCONV OP * Perl_pp_eq(pTHX); | |
2896 | PERL_CALLCONV OP * Perl_pp_eservent(pTHX); | |
2897 | PERL_CALLCONV OP * Perl_pp_exec(pTHX); | |
2898 | PERL_CALLCONV OP * Perl_pp_exists(pTHX); | |
2899 | PERL_CALLCONV OP * Perl_pp_exit(pTHX); | |
2900 | PERL_CALLCONV OP * Perl_pp_exp(pTHX); | |
2901 | PERL_CALLCONV OP * Perl_pp_fcntl(pTHX); | |
2902 | PERL_CALLCONV OP * Perl_pp_fileno(pTHX); | |
2903 | PERL_CALLCONV OP * Perl_pp_flip(pTHX); | |
2904 | PERL_CALLCONV OP * Perl_pp_flock(pTHX); | |
2905 | PERL_CALLCONV OP * Perl_pp_flop(pTHX); | |
2906 | PERL_CALLCONV OP * Perl_pp_fork(pTHX); | |
2907 | PERL_CALLCONV OP * Perl_pp_formline(pTHX); | |
2908 | PERL_CALLCONV OP * Perl_pp_ftatime(pTHX); | |
2909 | PERL_CALLCONV OP * Perl_pp_ftbinary(pTHX); | |
2910 | PERL_CALLCONV OP * Perl_pp_ftblk(pTHX); | |
2911 | PERL_CALLCONV OP * Perl_pp_ftchr(pTHX); | |
2912 | PERL_CALLCONV OP * Perl_pp_ftctime(pTHX); | |
2913 | PERL_CALLCONV OP * Perl_pp_ftdir(pTHX); | |
2914 | PERL_CALLCONV OP * Perl_pp_fteexec(pTHX); | |
2915 | PERL_CALLCONV OP * Perl_pp_fteowned(pTHX); | |
2916 | PERL_CALLCONV OP * Perl_pp_fteread(pTHX); | |
2917 | PERL_CALLCONV OP * Perl_pp_ftewrite(pTHX); | |
2918 | PERL_CALLCONV OP * Perl_pp_ftfile(pTHX); | |
2919 | PERL_CALLCONV OP * Perl_pp_ftis(pTHX); | |
2920 | PERL_CALLCONV OP * Perl_pp_ftlink(pTHX); | |
2921 | PERL_CALLCONV OP * Perl_pp_ftmtime(pTHX); | |
2922 | PERL_CALLCONV OP * Perl_pp_ftpipe(pTHX); | |
2923 | PERL_CALLCONV OP * Perl_pp_ftrexec(pTHX); | |
2924 | PERL_CALLCONV OP * Perl_pp_ftrowned(pTHX); | |
2925 | PERL_CALLCONV OP * Perl_pp_ftrread(pTHX); | |
2926 | PERL_CALLCONV OP * Perl_pp_ftrwrite(pTHX); | |
2927 | PERL_CALLCONV OP * Perl_pp_ftsgid(pTHX); | |
2928 | PERL_CALLCONV OP * Perl_pp_ftsize(pTHX); | |
2929 | PERL_CALLCONV OP * Perl_pp_ftsock(pTHX); | |
2930 | PERL_CALLCONV OP * Perl_pp_ftsuid(pTHX); | |
2931 | PERL_CALLCONV OP * Perl_pp_ftsvtx(pTHX); | |
2932 | PERL_CALLCONV OP * Perl_pp_fttext(pTHX); | |
2933 | PERL_CALLCONV OP * Perl_pp_fttty(pTHX); | |
2934 | PERL_CALLCONV OP * Perl_pp_ftzero(pTHX); | |
2935 | PERL_CALLCONV OP * Perl_pp_ge(pTHX); | |
2936 | PERL_CALLCONV OP * Perl_pp_gelem(pTHX); | |
2937 | PERL_CALLCONV OP * Perl_pp_getc(pTHX); | |
2938 | PERL_CALLCONV OP * Perl_pp_getlogin(pTHX); | |
2939 | PERL_CALLCONV OP * Perl_pp_getpeername(pTHX); | |
2940 | PERL_CALLCONV OP * Perl_pp_getpgrp(pTHX); | |
2941 | PERL_CALLCONV OP * Perl_pp_getppid(pTHX); | |
2942 | PERL_CALLCONV OP * Perl_pp_getpriority(pTHX); | |
2943 | PERL_CALLCONV OP * Perl_pp_getsockname(pTHX); | |
2944 | PERL_CALLCONV OP * Perl_pp_ggrent(pTHX); | |
2945 | PERL_CALLCONV OP * Perl_pp_ggrgid(pTHX); | |
2946 | PERL_CALLCONV OP * Perl_pp_ggrnam(pTHX); | |
2947 | PERL_CALLCONV OP * Perl_pp_ghbyaddr(pTHX); | |
2948 | PERL_CALLCONV OP * Perl_pp_ghbyname(pTHX); | |
2949 | PERL_CALLCONV OP * Perl_pp_ghostent(pTHX); | |
2950 | PERL_CALLCONV OP * Perl_pp_glob(pTHX); | |
2951 | PERL_CALLCONV OP * Perl_pp_gmtime(pTHX); | |
2952 | PERL_CALLCONV OP * Perl_pp_gnbyaddr(pTHX); | |
2953 | PERL_CALLCONV OP * Perl_pp_gnbyname(pTHX); | |
2954 | PERL_CALLCONV OP * Perl_pp_gnetent(pTHX); | |
2955 | PERL_CALLCONV OP * Perl_pp_goto(pTHX); | |
2956 | PERL_CALLCONV OP * Perl_pp_gpbyname(pTHX); | |
2957 | PERL_CALLCONV OP * Perl_pp_gpbynumber(pTHX); | |
2958 | PERL_CALLCONV OP * Perl_pp_gprotoent(pTHX); | |
2959 | PERL_CALLCONV OP * Perl_pp_gpwent(pTHX); | |
2960 | PERL_CALLCONV OP * Perl_pp_gpwnam(pTHX); | |
2961 | PERL_CALLCONV OP * Perl_pp_gpwuid(pTHX); | |
2962 | PERL_CALLCONV OP * Perl_pp_grepstart(pTHX); | |
2963 | PERL_CALLCONV OP * Perl_pp_grepwhile(pTHX); | |
2964 | PERL_CALLCONV OP * Perl_pp_gsbyname(pTHX); | |
2965 | PERL_CALLCONV OP * Perl_pp_gsbyport(pTHX); | |
2966 | PERL_CALLCONV OP * Perl_pp_gservent(pTHX); | |
2967 | PERL_CALLCONV OP * Perl_pp_gsockopt(pTHX); | |
2968 | PERL_CALLCONV OP * Perl_pp_gt(pTHX); | |
2969 | PERL_CALLCONV OP * Perl_pp_gv(pTHX); | |
2970 | PERL_CALLCONV OP * Perl_pp_gvsv(pTHX); | |
2971 | PERL_CALLCONV OP * Perl_pp_helem(pTHX); | |
2972 | PERL_CALLCONV OP * Perl_pp_hex(pTHX); | |
2973 | PERL_CALLCONV OP * Perl_pp_hintseval(pTHX); | |
2974 | PERL_CALLCONV OP * Perl_pp_hslice(pTHX); | |
2975 | PERL_CALLCONV OP * Perl_pp_i_add(pTHX); | |
2976 | PERL_CALLCONV OP * Perl_pp_i_divide(pTHX); | |
2977 | PERL_CALLCONV OP * Perl_pp_i_eq(pTHX); | |
2978 | PERL_CALLCONV OP * Perl_pp_i_ge(pTHX); | |
2979 | PERL_CALLCONV OP * Perl_pp_i_gt(pTHX); | |
2980 | PERL_CALLCONV OP * Perl_pp_i_le(pTHX); | |
2981 | PERL_CALLCONV OP * Perl_pp_i_lt(pTHX); | |
2982 | PERL_CALLCONV OP * Perl_pp_i_modulo(pTHX); | |
2983 | PERL_CALLCONV OP * Perl_pp_i_multiply(pTHX); | |
2984 | PERL_CALLCONV OP * Perl_pp_i_ncmp(pTHX); | |
2985 | PERL_CALLCONV OP * Perl_pp_i_ne(pTHX); | |
2986 | PERL_CALLCONV OP * Perl_pp_i_negate(pTHX); | |
2987 | PERL_CALLCONV OP * Perl_pp_i_subtract(pTHX); | |
2988 | PERL_CALLCONV OP * Perl_pp_index(pTHX); | |
2989 | PERL_CALLCONV OP * Perl_pp_int(pTHX); | |
2990 | PERL_CALLCONV OP * Perl_pp_ioctl(pTHX); | |
2991 | PERL_CALLCONV OP * Perl_pp_iter(pTHX); | |
2992 | PERL_CALLCONV OP * Perl_pp_join(pTHX); | |
2993 | PERL_CALLCONV OP * Perl_pp_keys(pTHX); | |
2994 | PERL_CALLCONV OP * Perl_pp_kill(pTHX); | |
2995 | PERL_CALLCONV OP * Perl_pp_last(pTHX); | |
2996 | PERL_CALLCONV OP * Perl_pp_lc(pTHX); | |
2997 | PERL_CALLCONV OP * Perl_pp_lcfirst(pTHX); | |
2998 | PERL_CALLCONV OP * Perl_pp_le(pTHX); | |
2999 | PERL_CALLCONV OP * Perl_pp_leave(pTHX); | |
3000 | PERL_CALLCONV OP * Perl_pp_leaveeval(pTHX); | |
3001 | PERL_CALLCONV OP * Perl_pp_leavegiven(pTHX); | |
3002 | PERL_CALLCONV OP * Perl_pp_leaveloop(pTHX); | |
3003 | PERL_CALLCONV OP * Perl_pp_leavesub(pTHX); | |
3004 | PERL_CALLCONV OP * Perl_pp_leavesublv(pTHX); | |
3005 | PERL_CALLCONV OP * Perl_pp_leavetry(pTHX); | |
3006 | PERL_CALLCONV OP * Perl_pp_leavewhen(pTHX); | |
3007 | PERL_CALLCONV OP * Perl_pp_leavewrite(pTHX); | |
3008 | PERL_CALLCONV OP * Perl_pp_left_shift(pTHX); | |
3009 | PERL_CALLCONV OP * Perl_pp_length(pTHX); | |
3010 | PERL_CALLCONV OP * Perl_pp_lineseq(pTHX); | |
3011 | PERL_CALLCONV OP * Perl_pp_link(pTHX); | |
3012 | PERL_CALLCONV OP * Perl_pp_list(pTHX); | |
3013 | PERL_CALLCONV OP * Perl_pp_listen(pTHX); | |
3014 | PERL_CALLCONV OP * Perl_pp_localtime(pTHX); | |
3015 | PERL_CALLCONV OP * Perl_pp_lock(pTHX); | |
3016 | PERL_CALLCONV OP * Perl_pp_log(pTHX); | |
3017 | PERL_CALLCONV OP * Perl_pp_lslice(pTHX); | |
3018 | PERL_CALLCONV OP * Perl_pp_lstat(pTHX); | |
3019 | PERL_CALLCONV OP * Perl_pp_lt(pTHX); | |
3020 | PERL_CALLCONV OP * Perl_pp_mapstart(pTHX); | |
3021 | PERL_CALLCONV OP * Perl_pp_mapwhile(pTHX); | |
3022 | PERL_CALLCONV OP * Perl_pp_match(pTHX); | |
3023 | PERL_CALLCONV OP * Perl_pp_method(pTHX); | |
3024 | PERL_CALLCONV OP * Perl_pp_method_named(pTHX); | |
3025 | PERL_CALLCONV OP * Perl_pp_mkdir(pTHX); | |
3026 | PERL_CALLCONV OP * Perl_pp_modulo(pTHX); | |
3027 | PERL_CALLCONV OP * Perl_pp_msgctl(pTHX); | |
3028 | PERL_CALLCONV OP * Perl_pp_msgget(pTHX); | |
3029 | PERL_CALLCONV OP * Perl_pp_msgrcv(pTHX); | |
3030 | PERL_CALLCONV OP * Perl_pp_msgsnd(pTHX); | |
3031 | PERL_CALLCONV OP * Perl_pp_multiply(pTHX); | |
3032 | PERL_CALLCONV OP * Perl_pp_ncmp(pTHX); | |
3033 | PERL_CALLCONV OP * Perl_pp_ne(pTHX); | |
3034 | PERL_CALLCONV OP * Perl_pp_negate(pTHX); | |
3035 | PERL_CALLCONV OP * Perl_pp_next(pTHX); | |
3036 | PERL_CALLCONV OP * Perl_pp_nextstate(pTHX); | |
3037 | PERL_CALLCONV OP * Perl_pp_not(pTHX); | |
3038 | PERL_CALLCONV OP * Perl_pp_null(pTHX); | |
3039 | PERL_CALLCONV OP * Perl_pp_oct(pTHX); | |
3040 | PERL_CALLCONV OP * Perl_pp_once(pTHX); | |
3041 | PERL_CALLCONV OP * Perl_pp_open(pTHX); | |
3042 | PERL_CALLCONV OP * Perl_pp_open_dir(pTHX); | |
3043 | PERL_CALLCONV OP * Perl_pp_or(pTHX); | |
3044 | PERL_CALLCONV OP * Perl_pp_orassign(pTHX); | |
3045 | PERL_CALLCONV OP * Perl_pp_ord(pTHX); | |
3046 | PERL_CALLCONV OP * Perl_pp_pack(pTHX); | |
3047 | PERL_CALLCONV OP * Perl_pp_padany(pTHX); | |
3048 | PERL_CALLCONV OP * Perl_pp_padav(pTHX); | |
3049 | PERL_CALLCONV OP * Perl_pp_padhv(pTHX); | |
3050 | PERL_CALLCONV OP * Perl_pp_padsv(pTHX); | |
3051 | PERL_CALLCONV OP * Perl_pp_pipe_op(pTHX); | |
3052 | PERL_CALLCONV OP * Perl_pp_pop(pTHX); | |
3053 | PERL_CALLCONV OP * Perl_pp_pos(pTHX); | |
3054 | PERL_CALLCONV OP * Perl_pp_postdec(pTHX); | |
3055 | PERL_CALLCONV OP * Perl_pp_postinc(pTHX); | |
3056 | PERL_CALLCONV OP * Perl_pp_pow(pTHX); | |
3057 | PERL_CALLCONV OP * Perl_pp_predec(pTHX); | |
3058 | PERL_CALLCONV OP * Perl_pp_preinc(pTHX); | |
3059 | PERL_CALLCONV OP * Perl_pp_print(pTHX); | |
3060 | PERL_CALLCONV OP * Perl_pp_prototype(pTHX); | |
3061 | PERL_CALLCONV OP * Perl_pp_prtf(pTHX); | |
3062 | PERL_CALLCONV OP * Perl_pp_push(pTHX); | |
3063 | PERL_CALLCONV OP * Perl_pp_pushmark(pTHX); | |
3064 | PERL_CALLCONV OP * Perl_pp_pushre(pTHX); | |
3065 | PERL_CALLCONV OP * Perl_pp_qr(pTHX); | |
3066 | PERL_CALLCONV OP * Perl_pp_quotemeta(pTHX); | |
3067 | PERL_CALLCONV OP * Perl_pp_rand(pTHX); | |
3068 | PERL_CALLCONV OP * Perl_pp_range(pTHX); | |
3069 | PERL_CALLCONV OP * Perl_pp_rcatline(pTHX); | |
3070 | PERL_CALLCONV OP * Perl_pp_read(pTHX); | |
3071 | PERL_CALLCONV OP * Perl_pp_readdir(pTHX); | |
3072 | PERL_CALLCONV OP * Perl_pp_readline(pTHX); | |
3073 | PERL_CALLCONV OP * Perl_pp_readlink(pTHX); | |
3074 | PERL_CALLCONV OP * Perl_pp_recv(pTHX); | |
3075 | PERL_CALLCONV OP * Perl_pp_redo(pTHX); | |
3076 | PERL_CALLCONV OP * Perl_pp_ref(pTHX); | |
3077 | PERL_CALLCONV OP * Perl_pp_refgen(pTHX); | |
3078 | PERL_CALLCONV OP * Perl_pp_regcmaybe(pTHX); | |
3079 | PERL_CALLCONV OP * Perl_pp_regcomp(pTHX); | |
3080 | PERL_CALLCONV OP * Perl_pp_regcreset(pTHX); | |
3081 | PERL_CALLCONV OP * Perl_pp_rename(pTHX); | |
3082 | PERL_CALLCONV OP * Perl_pp_repeat(pTHX); | |
3083 | PERL_CALLCONV OP * Perl_pp_require(pTHX); | |
3084 | PERL_CALLCONV OP * Perl_pp_reset(pTHX); | |
3085 | PERL_CALLCONV OP * Perl_pp_return(pTHX); | |
3086 | PERL_CALLCONV OP * Perl_pp_reverse(pTHX); | |
3087 | PERL_CALLCONV OP * Perl_pp_rewinddir(pTHX); | |
3088 | PERL_CALLCONV OP * Perl_pp_right_shift(pTHX); | |
3089 | PERL_CALLCONV OP * Perl_pp_rindex(pTHX); | |
3090 | PERL_CALLCONV OP * Perl_pp_rmdir(pTHX); | |
3091 | PERL_CALLCONV OP * Perl_pp_rv2av(pTHX); | |
3092 | PERL_CALLCONV OP * Perl_pp_rv2cv(pTHX); | |
3093 | PERL_CALLCONV OP * Perl_pp_rv2gv(pTHX); | |
3094 | PERL_CALLCONV OP * Perl_pp_rv2hv(pTHX); | |
3095 | PERL_CALLCONV OP * Perl_pp_rv2sv(pTHX); | |
3096 | PERL_CALLCONV OP * Perl_pp_sassign(pTHX); | |
3097 | PERL_CALLCONV OP * Perl_pp_say(pTHX); | |
3098 | PERL_CALLCONV OP * Perl_pp_scalar(pTHX); | |
3099 | PERL_CALLCONV OP * Perl_pp_schomp(pTHX); | |
3100 | PERL_CALLCONV OP * Perl_pp_schop(pTHX); | |
3101 | PERL_CALLCONV OP * Perl_pp_scmp(pTHX); | |
3102 | PERL_CALLCONV OP * Perl_pp_scope(pTHX); | |
3103 | PERL_CALLCONV OP * Perl_pp_seek(pTHX); | |
3104 | PERL_CALLCONV OP * Perl_pp_seekdir(pTHX); | |
3105 | PERL_CALLCONV OP * Perl_pp_select(pTHX); | |
3106 | PERL_CALLCONV OP * Perl_pp_semctl(pTHX); | |
3107 | PERL_CALLCONV OP * Perl_pp_semget(pTHX); | |
3108 | PERL_CALLCONV OP * Perl_pp_semop(pTHX); | |
3109 | PERL_CALLCONV OP * Perl_pp_send(pTHX); | |
3110 | PERL_CALLCONV OP * Perl_pp_seq(pTHX); | |
3111 | PERL_CALLCONV OP * Perl_pp_setpgrp(pTHX); | |
3112 | PERL_CALLCONV OP * Perl_pp_setpriority(pTHX); | |
3113 | PERL_CALLCONV OP * Perl_pp_sge(pTHX); | |
3114 | PERL_CALLCONV OP * Perl_pp_sgrent(pTHX); | |
3115 | PERL_CALLCONV OP * Perl_pp_sgt(pTHX); | |
3116 | PERL_CALLCONV OP * Perl_pp_shift(pTHX); | |
3117 | PERL_CALLCONV OP * Perl_pp_shmctl(pTHX); | |
3118 | PERL_CALLCONV OP * Perl_pp_shmget(pTHX); | |
3119 | PERL_CALLCONV OP * Perl_pp_shmread(pTHX); | |
3120 | PERL_CALLCONV OP * Perl_pp_shmwrite(pTHX); | |
3121 | PERL_CALLCONV OP * Perl_pp_shostent(pTHX); | |
3122 | PERL_CALLCONV OP * Perl_pp_shutdown(pTHX); | |
3123 | PERL_CALLCONV OP * Perl_pp_sin(pTHX); | |
3124 | PERL_CALLCONV OP * Perl_pp_sle(pTHX); | |
3125 | PERL_CALLCONV OP * Perl_pp_sleep(pTHX); | |
3126 | PERL_CALLCONV OP * Perl_pp_slt(pTHX); | |
3127 | PERL_CALLCONV OP * Perl_pp_smartmatch(pTHX); | |
3128 | PERL_CALLCONV OP * Perl_pp_sne(pTHX); | |
3129 | PERL_CALLCONV OP * Perl_pp_snetent(pTHX); | |
3130 | PERL_CALLCONV OP * Perl_pp_socket(pTHX); | |
3131 | PERL_CALLCONV OP * Perl_pp_sockpair(pTHX); | |
3132 | PERL_CALLCONV OP * Perl_pp_sort(pTHX); | |
3133 | PERL_CALLCONV OP * Perl_pp_splice(pTHX); | |
3134 | PERL_CALLCONV OP * Perl_pp_split(pTHX); | |
3135 | PERL_CALLCONV OP * Perl_pp_sprintf(pTHX); | |
3136 | PERL_CALLCONV OP * Perl_pp_sprotoent(pTHX); | |
3137 | PERL_CALLCONV OP * Perl_pp_spwent(pTHX); | |
3138 | PERL_CALLCONV OP * Perl_pp_sqrt(pTHX); | |
3139 | PERL_CALLCONV OP * Perl_pp_srand(pTHX); | |
3140 | PERL_CALLCONV OP * Perl_pp_srefgen(pTHX); | |
3141 | PERL_CALLCONV OP * Perl_pp_sselect(pTHX); | |
3142 | PERL_CALLCONV OP * Perl_pp_sservent(pTHX); | |
3143 | PERL_CALLCONV OP * Perl_pp_ssockopt(pTHX); | |
3144 | PERL_CALLCONV OP * Perl_pp_stat(pTHX); | |
3145 | PERL_CALLCONV OP * Perl_pp_stringify(pTHX); | |
3146 | PERL_CALLCONV OP * Perl_pp_stub(pTHX); | |
3147 | PERL_CALLCONV OP * Perl_pp_study(pTHX); | |
3148 | PERL_CALLCONV OP * Perl_pp_subst(pTHX); | |
3149 | PERL_CALLCONV OP * Perl_pp_substcont(pTHX); | |
3150 | PERL_CALLCONV OP * Perl_pp_substr(pTHX); | |
3151 | PERL_CALLCONV OP * Perl_pp_subtract(pTHX); | |
3152 | PERL_CALLCONV OP * Perl_pp_symlink(pTHX); | |
3153 | PERL_CALLCONV OP * Perl_pp_syscall(pTHX); | |
3154 | PERL_CALLCONV OP * Perl_pp_sysopen(pTHX); | |
3155 | PERL_CALLCONV OP * Perl_pp_sysread(pTHX); | |
3156 | PERL_CALLCONV OP * Perl_pp_sysseek(pTHX); | |
3157 | PERL_CALLCONV OP * Perl_pp_system(pTHX); | |
3158 | PERL_CALLCONV OP * Perl_pp_syswrite(pTHX); | |
3159 | PERL_CALLCONV OP * Perl_pp_tell(pTHX); | |
3160 | PERL_CALLCONV OP * Perl_pp_telldir(pTHX); | |
3161 | PERL_CALLCONV OP * Perl_pp_tie(pTHX); | |
3162 | PERL_CALLCONV OP * Perl_pp_tied(pTHX); | |
3163 | PERL_CALLCONV OP * Perl_pp_time(pTHX); | |
3164 | PERL_CALLCONV OP * Perl_pp_tms(pTHX); | |
3165 | PERL_CALLCONV OP * Perl_pp_trans(pTHX); | |
3166 | PERL_CALLCONV OP * Perl_pp_truncate(pTHX); | |
3167 | PERL_CALLCONV OP * Perl_pp_uc(pTHX); | |
3168 | PERL_CALLCONV OP * Perl_pp_ucfirst(pTHX); | |
3169 | PERL_CALLCONV OP * Perl_pp_umask(pTHX); | |
3170 | PERL_CALLCONV OP * Perl_pp_undef(pTHX); | |
3171 | PERL_CALLCONV OP * Perl_pp_unlink(pTHX); | |
3172 | PERL_CALLCONV OP * Perl_pp_unpack(pTHX); | |
3173 | PERL_CALLCONV OP * Perl_pp_unshift(pTHX); | |
3174 | PERL_CALLCONV OP * Perl_pp_unstack(pTHX); | |
3175 | PERL_CALLCONV OP * Perl_pp_untie(pTHX); | |
3176 | PERL_CALLCONV OP * Perl_pp_utime(pTHX); | |
3177 | PERL_CALLCONV OP * Perl_pp_values(pTHX); | |
3178 | PERL_CALLCONV OP * Perl_pp_vec(pTHX); | |
3179 | PERL_CALLCONV OP * Perl_pp_wait(pTHX); | |
3180 | PERL_CALLCONV OP * Perl_pp_waitpid(pTHX); | |
3181 | PERL_CALLCONV OP * Perl_pp_wantarray(pTHX); | |
3182 | PERL_CALLCONV OP * Perl_pp_warn(pTHX); | |
3183 | PERL_CALLCONV OP * Perl_pp_xor(pTHX); | |
e8a67806 NC |
3184 | PERL_CALLCONV REGEXP* Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags) |
3185 | __attribute__nonnull__(pTHX_1); | |
3186 | #define PERL_ARGS_ASSERT_PREGCOMP \ | |
3187 | assert(pattern) | |
3188 | ||
3189 | PERL_CALLCONV I32 Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, U32 nosave) | |
3190 | __attribute__nonnull__(pTHX_1) | |
3191 | __attribute__nonnull__(pTHX_2) | |
3192 | __attribute__nonnull__(pTHX_3) | |
3193 | __attribute__nonnull__(pTHX_4) | |
3194 | __attribute__nonnull__(pTHX_6); | |
3195 | #define PERL_ARGS_ASSERT_PREGEXEC \ | |
3196 | assert(prog); assert(stringarg); assert(strend); assert(strbeg); assert(screamer) | |
3197 | ||
3198 | PERL_CALLCONV void Perl_pregfree(pTHX_ REGEXP* r); | |
3199 | PERL_CALLCONV void Perl_pregfree2(pTHX_ REGEXP *rx) | |
3200 | __attribute__nonnull__(pTHX_1); | |
3201 | #define PERL_ARGS_ASSERT_PREGFREE2 \ | |
3202 | assert(rx) | |
3203 | ||
e8a67806 NC |
3204 | PERL_CALLCONV const char* Perl_prescan_version(pTHX_ const char *s, bool strict, const char** errstr, bool *sqv, int *ssaw_decimal, int *swidth, bool *salpha) |
3205 | __attribute__nonnull__(pTHX_1); | |
3206 | #define PERL_ARGS_ASSERT_PRESCAN_VERSION \ | |
3207 | assert(s) | |
3208 | ||
3209 | PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl) | |
3210 | __attribute__deprecated__; | |
3211 | ||
3212 | PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv) | |
3213 | __attribute__warn_unused_result__ | |
3214 | __attribute__nonnull__(pTHX_1); | |
3215 | #define PERL_ARGS_ASSERT_PTR_TABLE_FETCH \ | |
3216 | assert(tbl) | |
3217 | ||
3218 | PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl); | |
3219 | PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX) | |
3220 | __attribute__malloc__ | |
3221 | __attribute__warn_unused_result__; | |
3222 | ||
3223 | PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl) | |
3224 | __attribute__nonnull__(pTHX_1); | |
3225 | #define PERL_ARGS_ASSERT_PTR_TABLE_SPLIT \ | |
3226 | assert(tbl) | |
3227 | ||
3228 | PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv) | |
3229 | __attribute__nonnull__(pTHX_1) | |
3230 | __attribute__nonnull__(pTHX_3); | |
3231 | #define PERL_ARGS_ASSERT_PTR_TABLE_STORE \ | |
3232 | assert(tbl); assert(newsv) | |
3233 | ||
3234 | PERL_CALLCONV void Perl_push_scope(pTHX); | |
3235 | PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim) | |
3236 | __attribute__nonnull__(pTHX_1) | |
3237 | __attribute__nonnull__(pTHX_2); | |
3238 | #define PERL_ARGS_ASSERT_PV_DISPLAY \ | |
3239 | assert(dsv); assert(pv) | |
3240 | ||
3241 | 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) | |
3242 | __attribute__nonnull__(pTHX_1) | |
3243 | __attribute__nonnull__(pTHX_2); | |
3244 | #define PERL_ARGS_ASSERT_PV_ESCAPE \ | |
3245 | assert(dsv); assert(str) | |
3246 | ||
3247 | 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) | |
3248 | __attribute__nonnull__(pTHX_1) | |
3249 | __attribute__nonnull__(pTHX_2); | |
3250 | #define PERL_ARGS_ASSERT_PV_PRETTY \ | |
3251 | assert(dsv); assert(str) | |
3252 | ||
3253 | PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags) | |
3254 | __attribute__nonnull__(pTHX_1) | |
3255 | __attribute__nonnull__(pTHX_2); | |
3256 | #define PERL_ARGS_ASSERT_PV_UNI_DISPLAY \ | |
3257 | assert(dsv); assert(spv) | |
3258 | ||
3259 | PERL_CALLCONV void Perl_qerror(pTHX_ SV* err) | |
3260 | __attribute__nonnull__(pTHX_1); | |
3261 | #define PERL_ARGS_ASSERT_QERROR \ | |
3262 | assert(err) | |
3263 | ||
3264 | PERL_CALLCONV REGEXP* Perl_re_compile(pTHX_ SV * const pattern, U32 flags) | |
3265 | __attribute__nonnull__(pTHX_1); | |
3266 | #define PERL_ARGS_ASSERT_RE_COMPILE \ | |
3267 | assert(pattern) | |
3268 | ||
3269 | PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV* sv, char* strpos, char* strend, const U32 flags, re_scream_pos_data *data) | |
3270 | __attribute__nonnull__(pTHX_1) | |
3271 | __attribute__nonnull__(pTHX_3) | |
3272 | __attribute__nonnull__(pTHX_4); | |
3273 | #define PERL_ARGS_ASSERT_RE_INTUIT_START \ | |
3274 | assert(rx); assert(strpos); assert(strend) | |
3275 | ||
3276 | PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ REGEXP *const r) | |
3277 | __attribute__nonnull__(pTHX_1); | |
3278 | #define PERL_ARGS_ASSERT_RE_INTUIT_STRING \ | |
3279 | assert(r) | |
3280 | ||
3281 | PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes) | |
3282 | __attribute__malloc__ | |
3283 | __attribute__warn_unused_result__; | |
3284 | ||
3285 | /* PERL_CALLCONV OP* Perl_ref(pTHX_ OP* o, I32 type); */ | |
20439bc7 Z |
3286 | PERL_CALLCONV HV * Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *c, U32 flags); |
3287 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pv(pTHX_ const struct refcounted_he *chain, const char *key, U32 hash, U32 flags) | |
3288 | __attribute__nonnull__(pTHX_2); | |
3289 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PV \ | |
3290 | assert(key) | |
3291 | ||
3292 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pvn(pTHX_ const struct refcounted_he *chain, const char *keypv, STRLEN keylen, U32 hash, U32 flags) | |
3293 | __attribute__nonnull__(pTHX_2); | |
3294 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PVN \ | |
3295 | assert(keypv) | |
3296 | ||
3297 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_sv(pTHX_ const struct refcounted_he *chain, SV *key, U32 hash, U32 flags) | |
3298 | __attribute__nonnull__(pTHX_2); | |
3299 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_SV \ | |
3300 | assert(key) | |
3301 | ||
e8a67806 | 3302 | PERL_CALLCONV void Perl_refcounted_he_free(pTHX_ struct refcounted_he *he); |
20439bc7 Z |
3303 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he); |
3304 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_pv(pTHX_ struct refcounted_he *parent, const char *key, U32 hash, SV *value, U32 flags) | |
3305 | __attribute__nonnull__(pTHX_2); | |
3306 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PV \ | |
3307 | assert(key) | |
3308 | ||
3309 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_pvn(pTHX_ struct refcounted_he *parent, const char *keypv, STRLEN keylen, U32 hash, SV *value, U32 flags) | |
3310 | __attribute__nonnull__(pTHX_2); | |
3311 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PVN \ | |
3312 | assert(keypv) | |
3313 | ||
3314 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_sv(pTHX_ struct refcounted_he *parent, SV *key, U32 hash, SV *value, U32 flags) | |
3315 | __attribute__nonnull__(pTHX_2); | |
3316 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_SV \ | |
3317 | assert(key) | |
3318 | ||
e8a67806 NC |
3319 | PERL_CALLCONV SV* Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value, const U32 flags) |
3320 | __attribute__nonnull__(pTHX_1); | |
3321 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF \ | |
3322 | assert(rx) | |
3323 | ||
3324 | PERL_CALLCONV SV* Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags) | |
3325 | __attribute__nonnull__(pTHX_1); | |
3326 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL \ | |
3327 | assert(rx) | |
3328 | ||
3329 | PERL_CALLCONV bool Perl_reg_named_buff_exists(pTHX_ REGEXP * const rx, SV * const key, const U32 flags) | |
3330 | __attribute__nonnull__(pTHX_1) | |
3331 | __attribute__nonnull__(pTHX_2); | |
3332 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS \ | |
3333 | assert(rx); assert(key) | |
3334 | ||
3335 | PERL_CALLCONV SV* Perl_reg_named_buff_fetch(pTHX_ REGEXP * const rx, SV * const namesv, const U32 flags) | |
3336 | __attribute__nonnull__(pTHX_1) | |
3337 | __attribute__nonnull__(pTHX_2); | |
3338 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH \ | |
3339 | assert(rx); assert(namesv) | |
3340 | ||
3341 | PERL_CALLCONV SV* Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const rx, const U32 flags) | |
3342 | __attribute__nonnull__(pTHX_1); | |
3343 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY \ | |
3344 | assert(rx) | |
3345 | ||
3346 | PERL_CALLCONV SV* Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey, const U32 flags) | |
3347 | __attribute__nonnull__(pTHX_1); | |
3348 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER \ | |
3349 | assert(rx) | |
3350 | ||
3351 | PERL_CALLCONV SV* Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags) | |
3352 | __attribute__nonnull__(pTHX_1); | |
3353 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY \ | |
3354 | assert(rx) | |
3355 | ||
3356 | PERL_CALLCONV SV* Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags) | |
3357 | __attribute__nonnull__(pTHX_1); | |
3358 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR \ | |
3359 | assert(rx) | |
3360 | ||
3361 | PERL_CALLCONV void Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv) | |
3362 | __attribute__nonnull__(pTHX_1); | |
3363 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH \ | |
3364 | assert(rx) | |
3365 | ||
3366 | PERL_CALLCONV I32 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv, const I32 paren) | |
3367 | __attribute__nonnull__(pTHX_1) | |
3368 | __attribute__nonnull__(pTHX_2); | |
3369 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH \ | |
3370 | assert(rx); assert(sv) | |
3371 | ||
3372 | PERL_CALLCONV void Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren, SV const * const value) | |
3373 | __attribute__nonnull__(pTHX_1); | |
3374 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE \ | |
3375 | assert(rx) | |
3376 | ||
3377 | PERL_CALLCONV SV* Perl_reg_qr_package(pTHX_ REGEXP * const rx) | |
3378 | __attribute__nonnull__(pTHX_1); | |
3379 | #define PERL_ARGS_ASSERT_REG_QR_PACKAGE \ | |
3380 | assert(rx) | |
3381 | ||
3382 | PERL_CALLCONV REGEXP* Perl_reg_temp_copy(pTHX_ REGEXP* ret_x, REGEXP* rx) | |
3383 | __attribute__nonnull__(pTHX_2); | |
3384 | #define PERL_ARGS_ASSERT_REG_TEMP_COPY \ | |
3385 | assert(rx) | |
3386 | ||
3387 | PERL_CALLCONV SV* Perl_regclass_swash(pTHX_ const regexp *prog, const struct regnode *node, bool doinit, SV **listsvp, SV **altsvp) | |
3388 | __attribute__nonnull__(pTHX_2); | |
3389 | #define PERL_ARGS_ASSERT_REGCLASS_SWASH \ | |
3390 | assert(node) | |
3391 | ||
3392 | PERL_CALLCONV void Perl_regdump(pTHX_ const regexp* r) | |
3393 | __attribute__nonnull__(pTHX_1); | |
3394 | #define PERL_ARGS_ASSERT_REGDUMP \ | |
3395 | assert(r) | |
3396 | ||
3397 | PERL_CALLCONV void Perl_regdump(pTHX_ const regexp* r) | |
3398 | __attribute__nonnull__(pTHX_1); | |
3399 | #define PERL_ARGS_ASSERT_REGDUMP \ | |
3400 | assert(r) | |
3401 | ||
3402 | PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ REGEXP *const rx, char *stringarg, char *strend, char *strbeg, I32 minend, SV *sv, void *data, U32 flags) | |
3403 | __attribute__nonnull__(pTHX_1) | |
3404 | __attribute__nonnull__(pTHX_2) | |
3405 | __attribute__nonnull__(pTHX_3) | |
3406 | __attribute__nonnull__(pTHX_4) | |
3407 | __attribute__nonnull__(pTHX_6); | |
3408 | #define PERL_ARGS_ASSERT_REGEXEC_FLAGS \ | |
3409 | assert(rx); assert(stringarg); assert(strend); assert(strbeg); assert(sv) | |
3410 | ||
3411 | PERL_CALLCONV void Perl_regfree_internal(pTHX_ REGEXP *const rx) | |
3412 | __attribute__nonnull__(pTHX_1); | |
3413 | #define PERL_ARGS_ASSERT_REGFREE_INTERNAL \ | |
3414 | assert(rx) | |
3415 | ||
3416 | PERL_CALLCONV void Perl_reginitcolors(pTHX); | |
3417 | PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) | |
3418 | __attribute__warn_unused_result__; | |
3419 | ||
3420 | PERL_CALLCONV void Perl_regprop(pTHX_ const regexp *prog, SV* sv, const regnode* o) | |
3421 | __attribute__nonnull__(pTHX_2) | |
3422 | __attribute__nonnull__(pTHX_3); | |
3423 | #define PERL_ARGS_ASSERT_REGPROP \ | |
3424 | assert(sv); assert(o) | |
3425 | ||
3426 | PERL_CALLCONV void Perl_repeatcpy(char* to, const char* from, I32 len, I32 count) | |
3427 | __attribute__nonnull__(1) | |
3428 | __attribute__nonnull__(2); | |
3429 | #define PERL_ARGS_ASSERT_REPEATCPY \ | |
3430 | assert(to); assert(from) | |
3431 | ||
3432 | PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op); | |
3433 | PERL_CALLCONV void Perl_report_uninit(pTHX_ const SV *uninit_sv); | |
3434 | PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv) | |
3435 | __attribute__nonnull__(pTHX_1); | |
3436 | #define PERL_ARGS_ASSERT_REQUIRE_PV \ | |
3437 | assert(pv) | |
3438 | ||
3439 | PERL_CALLCONV char* Perl_rninstr(const char* big, const char* bigend, const char* little, const char* lend) | |
3440 | __attribute__pure__ | |
3441 | __attribute__nonnull__(1) | |
3442 | __attribute__nonnull__(2) | |
3443 | __attribute__nonnull__(3) | |
3444 | __attribute__nonnull__(4); | |
3445 | #define PERL_ARGS_ASSERT_RNINSTR \ | |
3446 | assert(big); assert(bigend); assert(little); assert(lend) | |
3447 | ||
3448 | PERL_CALLCONV void Perl_rpeep(pTHX_ OP* o); | |
3449 | PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t); | |
3450 | PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t); | |
3451 | PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* save) | |
3452 | __attribute__nonnull__(pTHX_3); | |
3453 | #define PERL_ARGS_ASSERT_RSIGNAL_SAVE \ | |
3454 | assert(save) | |
3455 | ||
3456 | PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i); | |
3457 | PERL_CALLCONV int Perl_runops_debug(pTHX); | |
3458 | PERL_CALLCONV int Perl_runops_standard(pTHX); | |
d9088386 Z |
3459 | PERL_CALLCONV CV* Perl_rv2cv_op_cv(pTHX_ OP *cvop, U32 flags) |
3460 | __attribute__nonnull__(pTHX_1); | |
3461 | #define PERL_ARGS_ASSERT_RV2CV_OP_CV \ | |
3462 | assert(cvop) | |
3463 | ||
e8a67806 NC |
3464 | PERL_CALLCONV void Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx) |
3465 | __attribute__nonnull__(pTHX_1) | |
3466 | __attribute__nonnull__(pTHX_2); | |
3467 | #define PERL_ARGS_ASSERT_RXRES_SAVE \ | |
3468 | assert(rsp); assert(rx) | |
3469 | ||
3470 | PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size) | |
3471 | __attribute__malloc__ | |
3472 | __attribute__warn_unused_result__; | |
3473 | ||
3474 | PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); | |
3475 | PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes) | |
3476 | __attribute__malloc__ | |
3477 | __attribute__warn_unused_result__; | |
3478 | ||
3479 | PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes) | |
3480 | __attribute__malloc__ | |
3481 | __attribute__warn_unused_result__; | |
3482 | ||
3483 | PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp) | |
3484 | __attribute__nonnull__(pTHX_1); | |
3485 | #define PERL_ARGS_ASSERT_SAVE_I16 \ | |
3486 | assert(intp) | |
3487 | ||
3488 | PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp) | |
3489 | __attribute__nonnull__(pTHX_1); | |
3490 | #define PERL_ARGS_ASSERT_SAVE_I32 \ | |
3491 | assert(intp) | |
3492 | ||
3493 | PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep) | |
3494 | __attribute__nonnull__(pTHX_1); | |
3495 | #define PERL_ARGS_ASSERT_SAVE_I8 \ | |
3496 | assert(bytep) | |
3497 | ||
3498 | PERL_CALLCONV void Perl_save_adelete(pTHX_ AV *av, I32 key) | |
3499 | __attribute__nonnull__(pTHX_1); | |
3500 | #define PERL_ARGS_ASSERT_SAVE_ADELETE \ | |
3501 | assert(av) | |
3502 | ||
3503 | /* PERL_CALLCONV void Perl_save_aelem(pTHX_ AV* av, I32 idx, SV **sptr) | |
3504 | __attribute__nonnull__(pTHX_1) | |
3505 | __attribute__nonnull__(pTHX_3); */ | |
3506 | ||
3507 | PERL_CALLCONV void Perl_save_aelem_flags(pTHX_ AV* av, I32 idx, SV **sptr, const U32 flags) | |
3508 | __attribute__nonnull__(pTHX_1) | |
3509 | __attribute__nonnull__(pTHX_3); | |
3510 | #define PERL_ARGS_ASSERT_SAVE_AELEM_FLAGS \ | |
3511 | assert(av); assert(sptr) | |
3512 | ||
3513 | PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad); | |
3514 | PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr) | |
3515 | __attribute__nonnull__(pTHX_1); | |
3516 | #define PERL_ARGS_ASSERT_SAVE_APTR \ | |
3517 | assert(aptr) | |
3518 | ||
3519 | PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv) | |
3520 | __attribute__nonnull__(pTHX_1); | |
3521 | #define PERL_ARGS_ASSERT_SAVE_ARY \ | |
3522 | assert(gv) | |
3523 | ||
3524 | PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp) | |
3525 | __attribute__nonnull__(pTHX_1); | |
3526 | #define PERL_ARGS_ASSERT_SAVE_BOOL \ | |
3527 | assert(boolp) | |
3528 | ||
3529 | PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp) | |
3530 | __attribute__nonnull__(pTHX_1); | |
3531 | #define PERL_ARGS_ASSERT_SAVE_CLEARSV \ | |
3532 | assert(svp) | |
3533 | ||
3534 | PERL_CALLCONV void Perl_save_delete(pTHX_ HV *hv, char *key, I32 klen) | |
3535 | __attribute__nonnull__(pTHX_1) | |
3536 | __attribute__nonnull__(pTHX_2); | |
3537 | #define PERL_ARGS_ASSERT_SAVE_DELETE \ | |
3538 | assert(hv); assert(key) | |
3539 | ||
3540 | PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p) | |
3541 | __attribute__nonnull__(pTHX_2); | |
3542 | #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR \ | |
3543 | assert(p) | |
3544 | ||
3545 | PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p); | |
3546 | /* PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o); */ | |
3547 | /* PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv); */ | |
3548 | /* PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv); */ | |
3549 | PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str) | |
3550 | __attribute__nonnull__(pTHX_1); | |
3551 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_PVREF \ | |
3552 | assert(str) | |
3553 | ||
3554 | PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr) | |
3555 | __attribute__nonnull__(pTHX_1); | |
3556 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_SVREF \ | |
3557 | assert(sptr) | |
3558 | ||
3559 | PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty) | |
3560 | __attribute__nonnull__(pTHX_1); | |
3561 | #define PERL_ARGS_ASSERT_SAVE_GP \ | |
3562 | assert(gv) | |
3563 | ||
3564 | PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv) | |
3565 | __attribute__nonnull__(pTHX_1); | |
3566 | #define PERL_ARGS_ASSERT_SAVE_HASH \ | |
3567 | assert(gv) | |
3568 | ||
3569 | PERL_CALLCONV void Perl_save_hdelete(pTHX_ HV *hv, SV *keysv) | |
3570 | __attribute__nonnull__(pTHX_1) | |
3571 | __attribute__nonnull__(pTHX_2); | |
3572 | #define PERL_ARGS_ASSERT_SAVE_HDELETE \ | |
3573 | assert(hv); assert(keysv) | |
3574 | ||
3575 | /* PERL_CALLCONV void Perl_save_helem(pTHX_ HV *hv, SV *key, SV **sptr) | |
3576 | __attribute__nonnull__(pTHX_1) | |
3577 | __attribute__nonnull__(pTHX_2) | |
3578 | __attribute__nonnull__(pTHX_3); */ | |
3579 | ||
3580 | PERL_CALLCONV void Perl_save_helem_flags(pTHX_ HV *hv, SV *key, SV **sptr, const U32 flags) | |
3581 | __attribute__nonnull__(pTHX_1) | |
3582 | __attribute__nonnull__(pTHX_2) | |
3583 | __attribute__nonnull__(pTHX_3); | |
3584 | #define PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS \ | |
3585 | assert(hv); assert(key); assert(sptr) | |
3586 | ||
3587 | PERL_CALLCONV void Perl_save_hints(pTHX); | |
3588 | PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr) | |
3589 | __attribute__nonnull__(pTHX_1); | |
3590 | #define PERL_ARGS_ASSERT_SAVE_HPTR \ | |
3591 | assert(hptr) | |
3592 | ||
3593 | PERL_CALLCONV void Perl_save_int(pTHX_ int* intp) | |
3594 | __attribute__nonnull__(pTHX_1); | |
3595 | #define PERL_ARGS_ASSERT_SAVE_INT \ | |
3596 | assert(intp) | |
3597 | ||
3598 | PERL_CALLCONV void Perl_save_item(pTHX_ SV* item) | |
3599 | __attribute__nonnull__(pTHX_1); | |
3600 | #define PERL_ARGS_ASSERT_SAVE_ITEM \ | |
3601 | assert(item) | |
3602 | ||
3603 | PERL_CALLCONV void Perl_save_iv(pTHX_ IV *ivp) | |
3604 | __attribute__nonnull__(pTHX_1); | |
3605 | #define PERL_ARGS_ASSERT_SAVE_IV \ | |
3606 | assert(ivp) | |
3607 | ||
3608 | PERL_CALLCONV void Perl_save_list(pTHX_ SV** sarg, I32 maxsarg) | |
3609 | __attribute__nonnull__(pTHX_1); | |
3610 | #define PERL_ARGS_ASSERT_SAVE_LIST \ | |
3611 | assert(sarg) | |
3612 | ||
3613 | PERL_CALLCONV void Perl_save_long(pTHX_ long* longp) | |
3614 | __attribute__nonnull__(pTHX_1); | |
3615 | #define PERL_ARGS_ASSERT_SAVE_LONG \ | |
3616 | assert(longp) | |
3617 | ||
3618 | /* PERL_CALLCONV void Perl_save_mortalizesv(pTHX_ SV* sv) | |
3619 | __attribute__nonnull__(pTHX_1); */ | |
3620 | #define PERL_ARGS_ASSERT_SAVE_MORTALIZESV \ | |
3621 | assert(sv) | |
3622 | ||
3623 | PERL_CALLCONV void Perl_save_nogv(pTHX_ GV* gv) | |
3624 | __attribute__nonnull__(pTHX_1); | |
3625 | #define PERL_ARGS_ASSERT_SAVE_NOGV \ | |
3626 | assert(gv) | |
3627 | ||
3628 | /* PERL_CALLCONV void Perl_save_op(pTHX); */ | |
3629 | PERL_CALLCONV void Perl_save_padsv_and_mortalize(pTHX_ PADOFFSET off); | |
3630 | PERL_CALLCONV void Perl_save_pptr(pTHX_ char** pptr) | |
3631 | __attribute__nonnull__(pTHX_1); | |
3632 | #define PERL_ARGS_ASSERT_SAVE_PPTR \ | |
3633 | assert(pptr) | |
3634 | ||
3635 | PERL_CALLCONV void Perl_save_pushi32ptr(pTHX_ const I32 i, void *const ptr, const int type); | |
3636 | PERL_CALLCONV void Perl_save_pushptr(pTHX_ void *const ptr, const int type); | |
3637 | PERL_CALLCONV void Perl_save_pushptrptr(pTHX_ void *const ptr1, void *const ptr2, const int type); | |
3638 | PERL_CALLCONV void Perl_save_re_context(pTHX); | |
3639 | PERL_CALLCONV SV* Perl_save_scalar(pTHX_ GV* gv) | |
3640 | __attribute__nonnull__(pTHX_1); | |
3641 | #define PERL_ARGS_ASSERT_SAVE_SCALAR \ | |
3642 | assert(gv) | |
3643 | ||
3644 | PERL_CALLCONV void Perl_save_set_svflags(pTHX_ SV *sv, U32 mask, U32 val) | |
3645 | __attribute__nonnull__(pTHX_1); | |
3646 | #define PERL_ARGS_ASSERT_SAVE_SET_SVFLAGS \ | |
3647 | assert(sv) | |
3648 | ||
3649 | PERL_CALLCONV void Perl_save_shared_pvref(pTHX_ char** str) | |
3650 | __attribute__nonnull__(pTHX_1); | |
3651 | #define PERL_ARGS_ASSERT_SAVE_SHARED_PVREF \ | |
3652 | assert(str) | |
3653 | ||
3654 | PERL_CALLCONV void Perl_save_sptr(pTHX_ SV** sptr) | |
3655 | __attribute__nonnull__(pTHX_1); | |
3656 | #define PERL_ARGS_ASSERT_SAVE_SPTR \ | |
3657 | assert(sptr) | |
3658 | ||
3659 | PERL_CALLCONV SV* Perl_save_svref(pTHX_ SV** sptr) | |
3660 | __attribute__nonnull__(pTHX_1); | |
3661 | #define PERL_ARGS_ASSERT_SAVE_SVREF \ | |
3662 | assert(sptr) | |
3663 | ||
3664 | PERL_CALLCONV void Perl_save_vptr(pTHX_ void *ptr) | |
3665 | __attribute__nonnull__(pTHX_1); | |
3666 | #define PERL_ARGS_ASSERT_SAVE_VPTR \ | |
3667 | assert(ptr) | |
3668 | ||
3669 | PERL_CALLCONV char* Perl_savepv(pTHX_ const char* pv) | |
3670 | __attribute__malloc__ | |
3671 | __attribute__warn_unused_result__; | |
3672 | ||
3673 | PERL_CALLCONV char* Perl_savepvn(pTHX_ const char* pv, I32 len) | |
3674 | __attribute__malloc__ | |
3675 | __attribute__warn_unused_result__; | |
3676 | ||
3677 | PERL_CALLCONV char* Perl_savesharedpv(pTHX_ const char* pv) | |
3678 | __attribute__malloc__ | |
3679 | __attribute__warn_unused_result__; | |
3680 | ||
3681 | PERL_CALLCONV char* Perl_savesharedpvn(pTHX_ const char *const pv, const STRLEN len) | |
3682 | __attribute__malloc__ | |
3683 | __attribute__warn_unused_result__ | |
3684 | __attribute__nonnull__(pTHX_1); | |
3685 | #define PERL_ARGS_ASSERT_SAVESHAREDPVN \ | |
3686 | assert(pv) | |
3687 | ||
3688 | PERL_CALLCONV char* Perl_savesharedsvpv(pTHX_ SV *sv) | |
3689 | __attribute__malloc__ | |
3690 | __attribute__warn_unused_result__ | |
3691 | __attribute__nonnull__(pTHX_1); | |
3692 | #define PERL_ARGS_ASSERT_SAVESHAREDSVPV \ | |
3693 | assert(sv) | |
3694 | ||
3695 | PERL_CALLCONV void Perl_savestack_grow(pTHX); | |
3696 | PERL_CALLCONV void Perl_savestack_grow_cnt(pTHX_ I32 need); | |
3697 | PERL_CALLCONV char* Perl_savesvpv(pTHX_ SV* sv) | |
3698 | __attribute__malloc__ | |
3699 | __attribute__warn_unused_result__ | |
3700 | __attribute__nonnull__(pTHX_1); | |
3701 | #define PERL_ARGS_ASSERT_SAVESVPV \ | |
3702 | assert(sv) | |
3703 | ||
3704 | PERL_CALLCONV OP* Perl_sawparens(pTHX_ OP* o); | |
3705 | PERL_CALLCONV OP* Perl_scalar(pTHX_ OP* o); | |
3706 | PERL_CALLCONV OP* Perl_scalarvoid(pTHX_ OP* o) | |
3707 | __attribute__nonnull__(pTHX_1); | |
3708 | #define PERL_ARGS_ASSERT_SCALARVOID \ | |
3709 | assert(o) | |
3710 | ||
3711 | PERL_CALLCONV NV Perl_scan_bin(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
3712 | __attribute__nonnull__(pTHX_1) | |
3713 | __attribute__nonnull__(pTHX_3); | |
3714 | #define PERL_ARGS_ASSERT_SCAN_BIN \ | |
3715 | assert(start); assert(retlen) | |
3716 | ||
3717 | PERL_CALLCONV NV Perl_scan_hex(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
3718 | __attribute__nonnull__(pTHX_1) | |
3719 | __attribute__nonnull__(pTHX_3); | |
3720 | #define PERL_ARGS_ASSERT_SCAN_HEX \ | |
3721 | assert(start); assert(retlen) | |
3722 | ||
3723 | PERL_CALLCONV char* Perl_scan_num(pTHX_ const char* s, YYSTYPE *lvalp) | |
3724 | __attribute__nonnull__(pTHX_1) | |
3725 | __attribute__nonnull__(pTHX_2); | |
3726 | #define PERL_ARGS_ASSERT_SCAN_NUM \ | |
3727 | assert(s); assert(lvalp) | |
3728 | ||
3729 | PERL_CALLCONV NV Perl_scan_oct(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
3730 | __attribute__nonnull__(pTHX_1) | |
3731 | __attribute__nonnull__(pTHX_3); | |
3732 | #define PERL_ARGS_ASSERT_SCAN_OCT \ | |
3733 | assert(start); assert(retlen) | |
3734 | ||
3735 | PERL_CALLCONV const char* Perl_scan_version(pTHX_ const char *s, SV *rv, bool qv) | |
3736 | __attribute__nonnull__(pTHX_1) | |
3737 | __attribute__nonnull__(pTHX_2); | |
3738 | #define PERL_ARGS_ASSERT_SCAN_VERSION \ | |
3739 | assert(s); assert(rv) | |
3740 | ||
3741 | PERL_CALLCONV char* Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv) | |
3742 | __attribute__nonnull__(pTHX_1) | |
3743 | __attribute__nonnull__(pTHX_2) | |
3744 | __attribute__nonnull__(pTHX_3); | |
3745 | #define PERL_ARGS_ASSERT_SCAN_VSTRING \ | |
3746 | assert(s); assert(e); assert(sv) | |
3747 | ||
3748 | PERL_CALLCONV OP* Perl_scope(pTHX_ OP* o); | |
3749 | PERL_CALLCONV char* Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last) | |
3750 | __attribute__nonnull__(pTHX_1) | |
3751 | __attribute__nonnull__(pTHX_2) | |
3752 | __attribute__nonnull__(pTHX_5); | |
3753 | #define PERL_ARGS_ASSERT_SCREAMINSTR \ | |
3754 | assert(bigstr); assert(littlestr); assert(old_posp) | |
3755 | ||
3756 | PERL_CALLCONV U32 Perl_seed(pTHX); | |
3757 | PERL_CALLCONV void Perl_set_context(void *t) | |
3758 | __attribute__nonnull__(1); | |
3759 | #define PERL_ARGS_ASSERT_SET_CONTEXT \ | |
3760 | assert(t) | |
3761 | ||
3762 | PERL_CALLCONV void Perl_set_numeric_local(pTHX); | |
3763 | PERL_CALLCONV void Perl_set_numeric_radix(pTHX); | |
3764 | PERL_CALLCONV void Perl_set_numeric_standard(pTHX); | |
3765 | PERL_CALLCONV void Perl_setdefout(pTHX_ GV* gv); | |
3766 | PERL_CALLCONV HEK* Perl_share_hek(pTHX_ const char* str, I32 len, U32 hash) | |
3767 | __attribute__nonnull__(pTHX_1); | |
3768 | #define PERL_ARGS_ASSERT_SHARE_HEK \ | |
3769 | assert(str) | |
3770 | ||