Commit | Line | Data |
---|---|---|
78102347 | 1 | /* -*- buffer-read-only: t -*- |
37442d52 | 2 | * |
f5e3445d RGS |
3 | * proto.h |
4 | * | |
78102347 NC |
5 | * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
6 | * 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 | 12 | * This file is built by regen/embed.pl from data in embed.fnc, |
78102347 | 13 | * regen/embed.pl, regen/opcodes, 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 |
3f1866a8 | 20 | #ifndef NO_MATHOMS |
3d81eea6 KW |
21 | PERL_CALLCONV UV ASCII_TO_NEED(const UV enc, const UV ch) |
22 | __attribute__deprecated__ | |
23 | __attribute__warn_unused_result__ | |
24 | __attribute__pure__; | |
2015d234 | 25 | #define PERL_ARGS_ASSERT_ASCII_TO_NEED |
3f1866a8 | 26 | #endif |
3d81eea6 | 27 | |
74804ad1 KW |
28 | #ifndef PERL_NO_INLINE_FUNCTIONS |
29 | PERL_STATIC_INLINE I32 * Perl_CvDEPTH(const CV * const sv); | |
30 | #define PERL_ARGS_ASSERT_CVDEPTH \ | |
31 | assert(sv) | |
32 | #endif | |
33 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
34 | PERL_STATIC_INLINE GV * Perl_CvGV(pTHX_ CV *sv); | |
35 | #define PERL_ARGS_ASSERT_CVGV \ | |
36 | assert(sv) | |
37 | #endif | |
6ba07ce1 | 38 | PERL_CALLCONV int Perl_Gv_AMupdate(pTHX_ HV* stash, bool destructing); |
e8a67806 NC |
39 | #define PERL_ARGS_ASSERT_GV_AMUPDATE \ |
40 | assert(stash) | |
3f1866a8 | 41 | #ifndef NO_MATHOMS |
3d81eea6 KW |
42 | PERL_CALLCONV UV NATIVE_TO_NEED(const UV enc, const UV ch) |
43 | __attribute__deprecated__ | |
44 | __attribute__warn_unused_result__ | |
45 | __attribute__pure__; | |
2015d234 | 46 | #define PERL_ARGS_ASSERT_NATIVE_TO_NEED |
3f1866a8 | 47 | #endif |
3d81eea6 | 48 | |
2ac0ce0e KW |
49 | #ifndef PERL_NO_INLINE_FUNCTIONS |
50 | PERL_STATIC_INLINE I32 Perl_POPMARK(pTHX); | |
51 | #define PERL_ARGS_ASSERT_POPMARK | |
52 | #endif | |
e8a67806 | 53 | PERL_CALLCONV const char * Perl_PerlIO_context_layers(pTHX_ const char *mode); |
2015d234 | 54 | #define PERL_ARGS_ASSERT_PERLIO_CONTEXT_LAYERS |
884fc2d3 | 55 | PERL_CALLCONV int Perl_PerlLIO_dup2_cloexec(pTHX_ int oldfd, int newfd); |
2015d234 | 56 | #define PERL_ARGS_ASSERT_PERLLIO_DUP2_CLOEXEC |
f9821aff Z |
57 | PERL_CALLCONV int Perl_PerlLIO_dup_cloexec(pTHX_ int oldfd) |
58 | __attribute__warn_unused_result__; | |
2015d234 | 59 | #define PERL_ARGS_ASSERT_PERLLIO_DUP_CLOEXEC |
f9821aff Z |
60 | |
61 | PERL_CALLCONV int Perl_PerlLIO_open3_cloexec(pTHX_ const char *file, int flag, int perm) | |
62 | __attribute__warn_unused_result__; | |
63 | #define PERL_ARGS_ASSERT_PERLLIO_OPEN3_CLOEXEC \ | |
64 | assert(file) | |
65 | ||
66 | PERL_CALLCONV int Perl_PerlLIO_open_cloexec(pTHX_ const char *file, int flag) | |
67 | __attribute__warn_unused_result__; | |
68 | #define PERL_ARGS_ASSERT_PERLLIO_OPEN_CLOEXEC \ | |
69 | assert(file) | |
70 | ||
9c10ff02 KW |
71 | /* PERL_CALLCONV const XOP * Perl_custom_op_xop(pTHX_ const OP *o); */ |
72 | #define PERL_ARGS_ASSERT_PERL_CUSTOM_OP_XOP | |
9aac5db8 | 73 | PERL_CALLCONV const char* Perl_setlocale(const int category, const char* locale); |
2015d234 | 74 | #define PERL_ARGS_ASSERT_PERL_SETLOCALE |
bdef45de KW |
75 | #ifndef PERL_NO_INLINE_FUNCTIONS |
76 | PERL_STATIC_INLINE struct regexp * Perl_ReANY(const REGEXP * const re); | |
77 | #define PERL_ARGS_ASSERT_REANY \ | |
78 | assert(re) | |
79 | #endif | |
8be227ab | 80 | PERL_CALLCONV void* Perl_Slab_Alloc(pTHX_ size_t sz) |
8be227ab | 81 | __attribute__warn_unused_result__; |
2015d234 | 82 | #define PERL_ARGS_ASSERT_SLAB_ALLOC |
8be227ab | 83 | |
6ba07ce1 | 84 | PERL_CALLCONV void Perl_Slab_Free(pTHX_ void *op); |
8be227ab FC |
85 | #define PERL_ARGS_ASSERT_SLAB_FREE \ |
86 | assert(op) | |
3f2f854a | 87 | #ifndef PERL_NO_INLINE_FUNCTIONS |
1bd041dc KW |
88 | PERL_STATIC_INLINE void Perl_SvAMAGIC_off(SV *sv); |
89 | #define PERL_ARGS_ASSERT_SVAMAGIC_OFF \ | |
90 | assert(sv) | |
91 | #endif | |
92 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
93 | PERL_STATIC_INLINE void Perl_SvAMAGIC_on(SV *sv); | |
94 | #define PERL_ARGS_ASSERT_SVAMAGIC_ON \ | |
95 | assert(sv) | |
96 | #endif | |
97 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
3f2f854a KW |
98 | PERL_STATIC_INLINE void Perl_SvREFCNT_dec(pTHX_ SV *sv); |
99 | #define PERL_ARGS_ASSERT_SVREFCNT_DEC | |
100 | #endif | |
101 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
102 | PERL_STATIC_INLINE void Perl_SvREFCNT_dec_NN(pTHX_ SV *sv); | |
103 | #define PERL_ARGS_ASSERT_SVREFCNT_DEC_NN \ | |
104 | assert(sv) | |
105 | #endif | |
106 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
107 | PERL_STATIC_INLINE SV * Perl_SvREFCNT_inc(SV *sv); | |
108 | #define PERL_ARGS_ASSERT_SVREFCNT_INC | |
109 | #endif | |
110 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
111 | PERL_STATIC_INLINE SV * Perl_SvREFCNT_inc_NN(SV *sv); | |
112 | #define PERL_ARGS_ASSERT_SVREFCNT_INC_NN \ | |
113 | assert(sv) | |
114 | #endif | |
115 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
116 | PERL_STATIC_INLINE void Perl_SvREFCNT_inc_void(SV *sv); | |
117 | #define PERL_ARGS_ASSERT_SVREFCNT_INC_VOID | |
118 | #endif | |
2ac0ce0e | 119 | #ifndef PERL_NO_INLINE_FUNCTIONS |
4eff5eb8 KW |
120 | PERL_STATIC_INLINE bool Perl_SvTRUE(pTHX_ SV *sv); |
121 | #define PERL_ARGS_ASSERT_SVTRUE | |
122 | #endif | |
123 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
124 | PERL_STATIC_INLINE bool Perl_SvTRUE_NN(pTHX_ SV *sv); | |
125 | #define PERL_ARGS_ASSERT_SVTRUE_NN \ | |
126 | assert(sv) | |
127 | #endif | |
128 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
129 | PERL_STATIC_INLINE bool Perl_SvTRUE_common(pTHX_ SV *sv, const bool sv_2bool_is_fallback); | |
130 | #define PERL_ARGS_ASSERT_SVTRUE_COMMON \ | |
131 | assert(sv) | |
132 | #endif | |
133 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
134 | PERL_STATIC_INLINE bool Perl_SvTRUE_nomg(pTHX_ SV *sv); | |
135 | #define PERL_ARGS_ASSERT_SVTRUE_NOMG | |
136 | #endif | |
137 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
2ac0ce0e KW |
138 | PERL_STATIC_INLINE I32 Perl_TOPMARK(pTHX); |
139 | #define PERL_ARGS_ASSERT_TOPMARK | |
140 | #endif | |
63ab03b3 | 141 | PERL_CALLCONV char * Perl__byte_dump_string(pTHX_ const U8 * const start, const STRLEN len, const bool format); |
7e2f38b2 | 142 | #define PERL_ARGS_ASSERT__BYTE_DUMP_STRING \ |
63ab03b3 | 143 | assert(start) |
9cbfb8ab KW |
144 | PERL_CALLCONV void Perl__force_out_malformed_utf8_message(pTHX_ const U8 *const p, const U8 * const e, const U32 flags, const bool die_here); |
145 | #define PERL_ARGS_ASSERT__FORCE_OUT_MALFORMED_UTF8_MESSAGE \ | |
146 | assert(p); assert(e) | |
1b292063 | 147 | PERL_CALLCONV Size_t Perl__inverse_folds(pTHX_ const UV cp, U32 * first_folds_to, const U32 ** remaining_folds_to) |
b74fe592 KW |
148 | __attribute__warn_unused_result__; |
149 | #define PERL_ARGS_ASSERT__INVERSE_FOLDS \ | |
150 | assert(first_folds_to); assert(remaining_folds_to) | |
151 | ||
d6ded950 | 152 | PERL_CALLCONV bool Perl__is_in_locale_category(pTHX_ const bool compiling, const int category); |
2015d234 | 153 | #define PERL_ARGS_ASSERT__IS_IN_LOCALE_CATEGORY |
922e8cb4 KW |
154 | PERL_CALLCONV bool Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c) |
155 | __attribute__warn_unused_result__; | |
2015d234 | 156 | #define PERL_ARGS_ASSERT__IS_UNI_FOO |
922e8cb4 | 157 | |
eba68aa0 KW |
158 | PERL_CALLCONV bool Perl__is_uni_perl_idcont(pTHX_ UV c) |
159 | __attribute__warn_unused_result__; | |
2015d234 | 160 | #define PERL_ARGS_ASSERT__IS_UNI_PERL_IDCONT |
eba68aa0 | 161 | |
f91dcd13 KW |
162 | PERL_CALLCONV bool Perl__is_uni_perl_idstart(pTHX_ UV c) |
163 | __attribute__warn_unused_result__; | |
2015d234 | 164 | #define PERL_ARGS_ASSERT__IS_UNI_PERL_IDSTART |
f91dcd13 | 165 | |
dd1a3ba7 | 166 | PERL_CALLCONV bool Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p, const U8 * const e) |
da8c1a98 | 167 | __attribute__warn_unused_result__; |
dd1a3ba7 | 168 | #define PERL_ARGS_ASSERT__IS_UTF8_FOO \ |
da8c1a98 KW |
169 | assert(p); assert(e) |
170 | ||
dd1a3ba7 | 171 | PERL_CALLCONV bool Perl__is_utf8_perl_idcont(pTHX_ const U8 *p, const U8 * const e) |
6ba07ce1 | 172 | __attribute__warn_unused_result__; |
dd1a3ba7 | 173 | #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT \ |
da8c1a98 KW |
174 | assert(p); assert(e) |
175 | ||
dd1a3ba7 | 176 | PERL_CALLCONV bool Perl__is_utf8_perl_idstart(pTHX_ const U8 *p, const U8 * const e) |
da8c1a98 | 177 | __attribute__warn_unused_result__; |
dd1a3ba7 | 178 | #define PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART \ |
da8c1a98 KW |
179 | assert(p); assert(e) |
180 | ||
6ba07ce1 | 181 | PERL_CALLCONV UV Perl__to_uni_fold_flags(pTHX_ UV c, U8 *p, STRLEN *lenp, U8 flags); |
36bb2ab6 KW |
182 | #define PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS \ |
183 | assert(p); assert(lenp) | |
059703b0 | 184 | PERL_CALLCONV UV Perl__to_utf8_fold_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, U8 flags); |
36bb2ab6 | 185 | #define PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS \ |
059703b0 KW |
186 | assert(p); assert(ustrp) |
187 | PERL_CALLCONV UV Perl__to_utf8_lower_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 188 | #define PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS \ |
059703b0 KW |
189 | assert(p); assert(ustrp) |
190 | PERL_CALLCONV UV Perl__to_utf8_title_flags(pTHX_ const U8 *p, const U8* e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 191 | #define PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS \ |
059703b0 KW |
192 | assert(p); assert(ustrp) |
193 | PERL_CALLCONV UV Perl__to_utf8_upper_flags(pTHX_ const U8 *p, const U8 *e, U8* ustrp, STRLEN *lenp, bool flags); | |
051a06d4 | 194 | #define PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS \ |
059703b0 | 195 | assert(p); assert(ustrp) |
e6a4ffc3 KW |
196 | PERL_CALLCONV UV Perl__utf8n_to_uvchr_msgs_helper(const U8 *s, STRLEN curlen, STRLEN *retlen, const U32 flags, U32 * errors, AV ** msgs); |
197 | #define PERL_ARGS_ASSERT__UTF8N_TO_UVCHR_MSGS_HELPER \ | |
198 | assert(s) | |
2726666d | 199 | PERL_CALLCONV void Perl__warn_problematic_locale(void); |
2015d234 | 200 | #define PERL_ARGS_ASSERT__WARN_PROBLEMATIC_LOCALE |
cc8b45bd AL |
201 | PERL_CALLCONV_NO_RET void Perl_abort_execution(pTHX_ const char * const msg, const char * const name) |
202 | __attribute__noreturn__; | |
c77da5ff KW |
203 | #define PERL_ARGS_ASSERT_ABORT_EXECUTION \ |
204 | assert(msg); assert(name) | |
cc8b45bd | 205 | |
6cb4123e | 206 | PERL_CALLCONV LOGOP* Perl_alloc_LOGOP(pTHX_ I32 type, OP *first, OP *other); |
2015d234 | 207 | #define PERL_ARGS_ASSERT_ALLOC_LOGOP |
6ba07ce1 | 208 | PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags); |
e8a67806 NC |
209 | #define PERL_ARGS_ASSERT_ALLOCMY \ |
210 | assert(name) | |
6ba07ce1 | 211 | PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir); |
7918f24d NC |
212 | #define PERL_ARGS_ASSERT_AMAGIC_CALL \ |
213 | assert(left); assert(right) | |
6ba07ce1 | 214 | PERL_CALLCONV SV * Perl_amagic_deref_call(pTHX_ SV *ref, int method); |
25a9ffce NC |
215 | #define PERL_ARGS_ASSERT_AMAGIC_DEREF_CALL \ |
216 | assert(ref) | |
8d569291 | 217 | PERL_CALLCONV bool Perl_amagic_is_enabled(pTHX_ int method); |
2015d234 | 218 | #define PERL_ARGS_ASSERT_AMAGIC_IS_ENABLED |
a5d565cd | 219 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 220 | PERL_STATIC_INLINE void Perl_append_utf8_from_native_byte(const U8 byte, U8** dest); |
a5d565cd JH |
221 | #define PERL_ARGS_ASSERT_APPEND_UTF8_FROM_NATIVE_BYTE \ |
222 | assert(dest) | |
223 | #endif | |
6ba07ce1 | 224 | PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp); |
7918f24d NC |
225 | #define PERL_ARGS_ASSERT_APPLY \ |
226 | assert(mark); assert(sp) | |
6ba07ce1 | 227 | PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len); |
7918f24d NC |
228 | #define PERL_ARGS_ASSERT_APPLY_ATTRS_STRING \ |
229 | assert(stashpv); assert(cv); assert(attrstr) | |
e8a67806 | 230 | PERL_CALLCONV void Perl_atfork_lock(void); |
2015d234 | 231 | #define PERL_ARGS_ASSERT_ATFORK_LOCK |
e8a67806 | 232 | PERL_CALLCONV void Perl_atfork_unlock(void); |
2015d234 | 233 | #define PERL_ARGS_ASSERT_ATFORK_UNLOCK |
6ba07ce1 | 234 | PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV *av); |
e8a67806 NC |
235 | #define PERL_ARGS_ASSERT_AV_ARYLEN_P \ |
236 | assert(av) | |
6ba07ce1 | 237 | PERL_CALLCONV void Perl_av_clear(pTHX_ AV *av); |
7918f24d NC |
238 | #define PERL_ARGS_ASSERT_AV_CLEAR \ |
239 | assert(av) | |
87306e06 KW |
240 | #ifndef PERL_NO_INLINE_FUNCTIONS |
241 | PERL_STATIC_INLINE Size_t Perl_av_count(pTHX_ AV *av) | |
242 | __attribute__warn_unused_result__; | |
243 | #define PERL_ARGS_ASSERT_AV_COUNT \ | |
244 | assert(av) | |
245 | #endif | |
246 | ||
6ba07ce1 | 247 | PERL_CALLCONV void Perl_av_create_and_push(pTHX_ AV **const avp, SV *const val); |
e8a67806 NC |
248 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_PUSH \ |
249 | assert(avp); assert(val) | |
6ba07ce1 | 250 | PERL_CALLCONV SV** Perl_av_create_and_unshift_one(pTHX_ AV **const avp, SV *const val); |
e8a67806 NC |
251 | #define PERL_ARGS_ASSERT_AV_CREATE_AND_UNSHIFT_ONE \ |
252 | assert(avp); assert(val) | |
6ba07ce1 | 253 | PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV *av, SSize_t key, I32 flags); |
7918f24d NC |
254 | #define PERL_ARGS_ASSERT_AV_DELETE \ |
255 | assert(av) | |
c70927a6 | 256 | PERL_CALLCONV bool Perl_av_exists(pTHX_ AV *av, SSize_t key) |
6ba07ce1 | 257 | __attribute__warn_unused_result__; |
7918f24d NC |
258 | #define PERL_ARGS_ASSERT_AV_EXISTS \ |
259 | assert(av) | |
a3b680e6 | 260 | |
6ba07ce1 | 261 | PERL_CALLCONV void Perl_av_extend(pTHX_ AV *av, SSize_t key); |
7918f24d NC |
262 | #define PERL_ARGS_ASSERT_AV_EXTEND \ |
263 | assert(av) | |
6ba07ce1 | 264 | PERL_CALLCONV void Perl_av_extend_guts(pTHX_ AV *av, SSize_t key, SSize_t *maxp, SV ***allocp, SV ***arrayp); |
7261499d FC |
265 | #define PERL_ARGS_ASSERT_AV_EXTEND_GUTS \ |
266 | assert(maxp); assert(allocp); assert(arrayp) | |
c70927a6 | 267 | PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV *av, SSize_t key, I32 lval) |
6ba07ce1 | 268 | __attribute__warn_unused_result__; |
7918f24d NC |
269 | #define PERL_ARGS_ASSERT_AV_FETCH \ |
270 | assert(av) | |
a3b680e6 | 271 | |
6ba07ce1 | 272 | PERL_CALLCONV void Perl_av_fill(pTHX_ AV *av, SSize_t fill); |
7918f24d NC |
273 | #define PERL_ARGS_ASSERT_AV_FILL \ |
274 | assert(av) | |
6ba07ce1 | 275 | PERL_CALLCONV IV* Perl_av_iter_p(pTHX_ AV *av); |
e8a67806 NC |
276 | #define PERL_ARGS_ASSERT_AV_ITER_P \ |
277 | assert(av) | |
c70927a6 | 278 | PERL_CALLCONV SSize_t Perl_av_len(pTHX_ AV *av) |
6ba07ce1 | 279 | __attribute__warn_unused_result__; |
7918f24d NC |
280 | #define PERL_ARGS_ASSERT_AV_LEN \ |
281 | assert(av) | |
a3b680e6 | 282 | |
c70927a6 | 283 | PERL_CALLCONV AV* Perl_av_make(pTHX_ SSize_t size, SV **strp) |
6ba07ce1 | 284 | __attribute__warn_unused_result__; |
7918f24d NC |
285 | #define PERL_ARGS_ASSERT_AV_MAKE \ |
286 | assert(strp) | |
a3b680e6 | 287 | |
1f1dcfb5 FC |
288 | PERL_CALLCONV SV* Perl_av_nonelem(pTHX_ AV *av, SSize_t ix); |
289 | #define PERL_ARGS_ASSERT_AV_NONELEM \ | |
290 | assert(av) | |
6ba07ce1 | 291 | PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV *av); |
7918f24d NC |
292 | #define PERL_ARGS_ASSERT_AV_POP \ |
293 | assert(av) | |
6ba07ce1 | 294 | PERL_CALLCONV void Perl_av_push(pTHX_ AV *av, SV *val); |
7918f24d | 295 | #define PERL_ARGS_ASSERT_AV_PUSH \ |
06942096 | 296 | assert(av); assert(val) |
6ba07ce1 | 297 | PERL_CALLCONV void Perl_av_reify(pTHX_ AV *av); |
7918f24d NC |
298 | #define PERL_ARGS_ASSERT_AV_REIFY \ |
299 | assert(av) | |
4048f010 | 300 | PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV *av) |
6ba07ce1 | 301 | __attribute__warn_unused_result__; |
7918f24d NC |
302 | #define PERL_ARGS_ASSERT_AV_SHIFT \ |
303 | assert(av) | |
7a5b473e | 304 | |
6ba07ce1 | 305 | PERL_CALLCONV SV** Perl_av_store(pTHX_ AV *av, SSize_t key, SV *val); |
7918f24d NC |
306 | #define PERL_ARGS_ASSERT_AV_STORE \ |
307 | assert(av) | |
ef9e3b4d | 308 | /* PERL_CALLCONV SSize_t av_tindex(pTHX_ AV *av) |
6ba07ce1 | 309 | __attribute__warn_unused_result__; */ |
2015d234 | 310 | #define PERL_ARGS_ASSERT_AV_TINDEX |
12719193 | 311 | |
bd5fa066 KW |
312 | /* PERL_CALLCONV SSize_t av_top_index(pTHX_ AV *av) |
313 | __attribute__warn_unused_result__; */ | |
314 | #define PERL_ARGS_ASSERT_AV_TOP_INDEX | |
a5d565cd | 315 | |
6ba07ce1 | 316 | PERL_CALLCONV void Perl_av_undef(pTHX_ AV *av); |
7918f24d NC |
317 | #define PERL_ARGS_ASSERT_AV_UNDEF \ |
318 | assert(av) | |
6ba07ce1 | 319 | PERL_CALLCONV void Perl_av_unshift(pTHX_ AV *av, SSize_t num); |
7918f24d NC |
320 | #define PERL_ARGS_ASSERT_AV_UNSHIFT \ |
321 | assert(av) | |
4048f010 | 322 | PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP *left, OP *right) |
6ba07ce1 | 323 | __attribute__warn_unused_result__; |
7918f24d NC |
324 | #define PERL_ARGS_ASSERT_BIND_MATCH \ |
325 | assert(left); assert(right) | |
a3b680e6 AL |
326 | |
327 | PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq) | |
6472dca1 | 328 | __attribute__warn_unused_result__; |
2015d234 | 329 | #define PERL_ARGS_ASSERT_BLOCK_END |
a3b680e6 | 330 | |
1c23e2bd | 331 | PERL_CALLCONV U8 Perl_block_gimme(pTHX) |
abb2c242 | 332 | __attribute__warn_unused_result__; |
2015d234 | 333 | #define PERL_ARGS_ASSERT_BLOCK_GIMME |
a3b680e6 AL |
334 | |
335 | PERL_CALLCONV int Perl_block_start(pTHX_ int full) | |
abb2c242 | 336 | __attribute__warn_unused_result__; |
2015d234 | 337 | #define PERL_ARGS_ASSERT_BLOCK_START |
a3b680e6 | 338 | |
6ba07ce1 | 339 | PERL_CALLCONV void Perl_blockhook_register(pTHX_ BHK *hk); |
bb6c22e7 BM |
340 | #define PERL_ARGS_ASSERT_BLOCKHOOK_REGISTER \ |
341 | assert(hk) | |
36ed5425 | 342 | PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); |
2015d234 | 343 | #define PERL_ARGS_ASSERT_BOOT_CORE_PERLIO |
e8a67806 | 344 | PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX); |
2015d234 | 345 | #define PERL_ARGS_ASSERT_BOOT_CORE_UNIVERSAL |
e8a67806 | 346 | PERL_CALLCONV void Perl_boot_core_mro(pTHX); |
2015d234 | 347 | #define PERL_ARGS_ASSERT_BOOT_CORE_MRO |
6ba07ce1 | 348 | PERL_CALLCONV int Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen); |
fed3ba5d NC |
349 | #define PERL_ARGS_ASSERT_BYTES_CMP_UTF8 \ |
350 | assert(b); assert(u) | |
41ae6089 | 351 | PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *lenp, bool *is_utf8p); |
e8a67806 | 352 | #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8 \ |
41ae6089 | 353 | assert(s); assert(lenp); assert(is_utf8p) |
976c1b08 KW |
354 | PERL_CALLCONV U8* Perl_bytes_from_utf8_loc(const U8 *s, STRLEN *lenp, bool *is_utf8p, const U8 ** first_unconverted); |
355 | #define PERL_ARGS_ASSERT_BYTES_FROM_UTF8_LOC \ | |
356 | assert(s); assert(lenp); assert(is_utf8p) | |
09af0336 | 357 | PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *lenp); |
e8a67806 | 358 | #define PERL_ARGS_ASSERT_BYTES_TO_UTF8 \ |
09af0336 | 359 | assert(s); assert(lenp) |
6ba07ce1 | 360 | PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv); |
e8a67806 NC |
361 | #define PERL_ARGS_ASSERT_CALL_ARGV \ |
362 | assert(sub_name); assert(argv) | |
e8a67806 | 363 | PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr); |
2015d234 | 364 | #define PERL_ARGS_ASSERT_CALL_ATEXIT |
6ba07ce1 | 365 | PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV *paramList); |
7918f24d NC |
366 | #define PERL_ARGS_ASSERT_CALL_LIST \ |
367 | assert(paramList) | |
6ba07ce1 | 368 | PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags); |
e8a67806 NC |
369 | #define PERL_ARGS_ASSERT_CALL_METHOD \ |
370 | assert(methname) | |
6ba07ce1 | 371 | PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags); |
e8a67806 NC |
372 | #define PERL_ARGS_ASSERT_CALL_PV \ |
373 | assert(sub_name) | |
8162b70e | 374 | PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, volatile I32 flags); |
e8a67806 NC |
375 | #define PERL_ARGS_ASSERT_CALL_SV \ |
376 | assert(sv) | |
2fefa6c7 | 377 | PERL_CALLCONV const PERL_CONTEXT * Perl_caller_cx(pTHX_ I32 level, const PERL_CONTEXT **dbcxp); |
2015d234 | 378 | #define PERL_ARGS_ASSERT_CALLER_CX |
e8a67806 NC |
379 | PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size) |
380 | __attribute__malloc__ | |
381 | __attribute__warn_unused_result__; | |
2015d234 | 382 | #define PERL_ARGS_ASSERT_CALLOC |
e8a67806 | 383 | |
ae1951c1 | 384 | PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t* statbufp) |
6ba07ce1 | 385 | __attribute__warn_unused_result__; |
7918f24d NC |
386 | #define PERL_ARGS_ASSERT_CANDO \ |
387 | assert(statbufp) | |
f54cb97a | 388 | |
ddeaf645 | 389 | PERL_CALLCONV I32 Perl_cast_i32(NV f) |
53c1dcc0 | 390 | __attribute__warn_unused_result__; |
2015d234 | 391 | #define PERL_ARGS_ASSERT_CAST_I32 |
53c1dcc0 | 392 | |
ddeaf645 | 393 | PERL_CALLCONV IV Perl_cast_iv(NV f) |
53c1dcc0 | 394 | __attribute__warn_unused_result__; |
2015d234 | 395 | #define PERL_ARGS_ASSERT_CAST_IV |
53c1dcc0 | 396 | |
ddeaf645 | 397 | PERL_CALLCONV U32 Perl_cast_ulong(NV f) |
53c1dcc0 | 398 | __attribute__warn_unused_result__; |
2015d234 | 399 | #define PERL_ARGS_ASSERT_CAST_ULONG |
53c1dcc0 | 400 | |
ddeaf645 | 401 | PERL_CALLCONV UV Perl_cast_uv(NV f) |
53c1dcc0 | 402 | __attribute__warn_unused_result__; |
2015d234 | 403 | #define PERL_ARGS_ASSERT_CAST_UV |
53c1dcc0 | 404 | |
6ba07ce1 | 405 | PERL_CALLCONV bool Perl_check_utf8_print(pTHX_ const U8 *s, const STRLEN len); |
0876b9a0 KW |
406 | #define PERL_ARGS_ASSERT_CHECK_UTF8_PRINT \ |
407 | assert(s) | |
e8a67806 | 408 | PERL_CALLCONV OP * Perl_ck_anoncode(pTHX_ OP *o) |
6ba07ce1 | 409 | __attribute__warn_unused_result__; |
e8a67806 NC |
410 | #define PERL_ARGS_ASSERT_CK_ANONCODE \ |
411 | assert(o) | |
2fefa6c7 | 412 | |
9ce1fb7d | 413 | PERL_CALLCONV OP * Perl_ck_backtick(pTHX_ OP *o) |
6ba07ce1 | 414 | __attribute__warn_unused_result__; |
9ce1fb7d FC |
415 | #define PERL_ARGS_ASSERT_CK_BACKTICK \ |
416 | assert(o) | |
417 | ||
e8a67806 | 418 | PERL_CALLCONV OP * Perl_ck_bitop(pTHX_ OP *o) |
6ba07ce1 | 419 | __attribute__warn_unused_result__; |
e8a67806 NC |
420 | #define PERL_ARGS_ASSERT_CK_BITOP \ |
421 | assert(o) | |
2fefa6c7 | 422 | |
89474f50 | 423 | PERL_CALLCONV OP * Perl_ck_cmp(pTHX_ OP *o) |
6ba07ce1 | 424 | __attribute__warn_unused_result__; |
89474f50 FC |
425 | #define PERL_ARGS_ASSERT_CK_CMP \ |
426 | assert(o) | |
427 | ||
e8a67806 | 428 | PERL_CALLCONV OP * Perl_ck_concat(pTHX_ OP *o) |
6ba07ce1 | 429 | __attribute__warn_unused_result__; |
e8a67806 NC |
430 | #define PERL_ARGS_ASSERT_CK_CONCAT \ |
431 | assert(o) | |
9dcc53ea | 432 | |
e8a67806 | 433 | PERL_CALLCONV OP * Perl_ck_defined(pTHX_ OP *o) |
6ba07ce1 | 434 | __attribute__warn_unused_result__; |
e8a67806 NC |
435 | #define PERL_ARGS_ASSERT_CK_DEFINED \ |
436 | assert(o) | |
f54cb97a | 437 | |
e8a67806 | 438 | PERL_CALLCONV OP * Perl_ck_delete(pTHX_ OP *o) |
6ba07ce1 | 439 | __attribute__warn_unused_result__; |
e8a67806 NC |
440 | #define PERL_ARGS_ASSERT_CK_DELETE \ |
441 | assert(o) | |
f54cb97a | 442 | |
e8a67806 | 443 | PERL_CALLCONV OP * Perl_ck_each(pTHX_ OP *o) |
6ba07ce1 | 444 | __attribute__warn_unused_result__; |
e8a67806 NC |
445 | #define PERL_ARGS_ASSERT_CK_EACH \ |
446 | assert(o) | |
f54cb97a | 447 | |
6ba07ce1 | 448 | PERL_CALLCONV OP* Perl_ck_entersub_args_core(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
4aaa4757 FC |
449 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_CORE \ |
450 | assert(entersubop); assert(namegv); assert(protosv) | |
6ba07ce1 | 451 | PERL_CALLCONV OP* Perl_ck_entersub_args_list(pTHX_ OP *entersubop); |
d9088386 Z |
452 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_LIST \ |
453 | assert(entersubop) | |
6ba07ce1 | 454 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
d9088386 Z |
455 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO \ |
456 | assert(entersubop); assert(namegv); assert(protosv) | |
6ba07ce1 | 457 | PERL_CALLCONV OP* Perl_ck_entersub_args_proto_or_list(pTHX_ OP *entersubop, GV *namegv, SV *protosv); |
d9088386 Z |
458 | #define PERL_ARGS_ASSERT_CK_ENTERSUB_ARGS_PROTO_OR_LIST \ |
459 | assert(entersubop); assert(namegv); assert(protosv) | |
e8a67806 | 460 | PERL_CALLCONV OP * Perl_ck_eof(pTHX_ OP *o) |
6ba07ce1 | 461 | __attribute__warn_unused_result__; |
e8a67806 NC |
462 | #define PERL_ARGS_ASSERT_CK_EOF \ |
463 | assert(o) | |
cbf82dd0 | 464 | |
e8a67806 | 465 | PERL_CALLCONV OP * Perl_ck_eval(pTHX_ OP *o) |
6ba07ce1 | 466 | __attribute__warn_unused_result__; |
e8a67806 NC |
467 | #define PERL_ARGS_ASSERT_CK_EVAL \ |
468 | assert(o) | |
f54cb97a | 469 | |
e8a67806 | 470 | PERL_CALLCONV OP * Perl_ck_exec(pTHX_ OP *o) |
6ba07ce1 | 471 | __attribute__warn_unused_result__; |
e8a67806 NC |
472 | #define PERL_ARGS_ASSERT_CK_EXEC \ |
473 | assert(o) | |
62d55b22 | 474 | |
e8a67806 | 475 | PERL_CALLCONV OP * Perl_ck_exists(pTHX_ OP *o) |
6ba07ce1 | 476 | __attribute__warn_unused_result__; |
e8a67806 NC |
477 | #define PERL_ARGS_ASSERT_CK_EXISTS \ |
478 | assert(o) | |
255164ba | 479 | |
e8a67806 | 480 | PERL_CALLCONV OP * Perl_ck_ftst(pTHX_ OP *o) |
6ba07ce1 | 481 | __attribute__warn_unused_result__; |
e8a67806 NC |
482 | #define PERL_ARGS_ASSERT_CK_FTST \ |
483 | assert(o) | |
255164ba | 484 | |
e8a67806 | 485 | PERL_CALLCONV OP * Perl_ck_fun(pTHX_ OP *o) |
6ba07ce1 | 486 | __attribute__warn_unused_result__; |
e8a67806 NC |
487 | #define PERL_ARGS_ASSERT_CK_FUN \ |
488 | assert(o) | |
255164ba | 489 | |
e8a67806 | 490 | PERL_CALLCONV OP * Perl_ck_glob(pTHX_ OP *o) |
6ba07ce1 | 491 | __attribute__warn_unused_result__; |
e8a67806 NC |
492 | #define PERL_ARGS_ASSERT_CK_GLOB \ |
493 | assert(o) | |
255164ba | 494 | |
e8a67806 | 495 | PERL_CALLCONV OP * Perl_ck_grep(pTHX_ OP *o) |
6ba07ce1 | 496 | __attribute__warn_unused_result__; |
e8a67806 NC |
497 | #define PERL_ARGS_ASSERT_CK_GREP \ |
498 | assert(o) | |
255164ba | 499 | |
e8a67806 | 500 | PERL_CALLCONV OP * Perl_ck_index(pTHX_ OP *o) |
6ba07ce1 | 501 | __attribute__warn_unused_result__; |
e8a67806 NC |
502 | #define PERL_ARGS_ASSERT_CK_INDEX \ |
503 | assert(o) | |
f54cb97a | 504 | |
813e85a0 PLE |
505 | PERL_CALLCONV OP * Perl_ck_isa(pTHX_ OP *o) |
506 | __attribute__warn_unused_result__; | |
507 | #define PERL_ARGS_ASSERT_CK_ISA \ | |
508 | assert(o) | |
509 | ||
e8a67806 | 510 | PERL_CALLCONV OP * Perl_ck_join(pTHX_ OP *o) |
6ba07ce1 | 511 | __attribute__warn_unused_result__; |
e8a67806 NC |
512 | #define PERL_ARGS_ASSERT_CK_JOIN \ |
513 | assert(o) | |
f54cb97a | 514 | |
e508c8a4 | 515 | PERL_CALLCONV OP * Perl_ck_length(pTHX_ OP *o) |
6ba07ce1 | 516 | __attribute__warn_unused_result__; |
e508c8a4 MH |
517 | #define PERL_ARGS_ASSERT_CK_LENGTH \ |
518 | assert(o) | |
519 | ||
e8a67806 | 520 | PERL_CALLCONV OP * Perl_ck_lfun(pTHX_ OP *o) |
6ba07ce1 | 521 | __attribute__warn_unused_result__; |
e8a67806 NC |
522 | #define PERL_ARGS_ASSERT_CK_LFUN \ |
523 | assert(o) | |
f54cb97a | 524 | |
e8a67806 | 525 | PERL_CALLCONV OP * Perl_ck_listiob(pTHX_ OP *o) |
6ba07ce1 | 526 | __attribute__warn_unused_result__; |
e8a67806 NC |
527 | #define PERL_ARGS_ASSERT_CK_LISTIOB \ |
528 | assert(o) | |
f54cb97a | 529 | |
e8a67806 | 530 | PERL_CALLCONV OP * Perl_ck_match(pTHX_ OP *o) |
6ba07ce1 | 531 | __attribute__warn_unused_result__; |
e8a67806 NC |
532 | #define PERL_ARGS_ASSERT_CK_MATCH \ |
533 | assert(o) | |
f54cb97a | 534 | |
e8a67806 | 535 | PERL_CALLCONV OP * Perl_ck_method(pTHX_ OP *o) |
6ba07ce1 | 536 | __attribute__warn_unused_result__; |
e8a67806 NC |
537 | #define PERL_ARGS_ASSERT_CK_METHOD \ |
538 | assert(o) | |
a3b680e6 | 539 | |
e8a67806 | 540 | PERL_CALLCONV OP * Perl_ck_null(pTHX_ OP *o) |
6ba07ce1 | 541 | __attribute__warn_unused_result__; |
e8a67806 NC |
542 | #define PERL_ARGS_ASSERT_CK_NULL \ |
543 | assert(o) | |
255164ba | 544 | |
e8a67806 | 545 | PERL_CALLCONV OP * Perl_ck_open(pTHX_ OP *o) |
6ba07ce1 | 546 | __attribute__warn_unused_result__; |
e8a67806 NC |
547 | #define PERL_ARGS_ASSERT_CK_OPEN \ |
548 | assert(o) | |
f54cb97a | 549 | |
eb4ec35b | 550 | PERL_CALLCONV OP * Perl_ck_prototype(pTHX_ OP *o) |
6ba07ce1 | 551 | __attribute__warn_unused_result__; |
eb4ec35b FC |
552 | #define PERL_ARGS_ASSERT_CK_PROTOTYPE \ |
553 | assert(o) | |
554 | ||
e8a67806 | 555 | PERL_CALLCONV OP * Perl_ck_readline(pTHX_ OP *o) |
6ba07ce1 | 556 | __attribute__warn_unused_result__; |
e8a67806 | 557 | #define PERL_ARGS_ASSERT_CK_READLINE \ |
7918f24d | 558 | assert(o) |
f54cb97a | 559 | |
4fec8804 | 560 | PERL_CALLCONV OP * Perl_ck_refassign(pTHX_ OP *o) |
6ba07ce1 | 561 | __attribute__warn_unused_result__; |
4fec8804 FC |
562 | #define PERL_ARGS_ASSERT_CK_REFASSIGN \ |
563 | assert(o) | |
564 | ||
e8a67806 | 565 | PERL_CALLCONV OP * Perl_ck_repeat(pTHX_ OP *o) |
6ba07ce1 | 566 | __attribute__warn_unused_result__; |
e8a67806 NC |
567 | #define PERL_ARGS_ASSERT_CK_REPEAT \ |
568 | assert(o) | |
569 | ||
570 | PERL_CALLCONV OP * Perl_ck_require(pTHX_ OP *o) | |
6ba07ce1 | 571 | __attribute__warn_unused_result__; |
e8a67806 NC |
572 | #define PERL_ARGS_ASSERT_CK_REQUIRE \ |
573 | assert(o) | |
574 | ||
575 | PERL_CALLCONV OP * Perl_ck_return(pTHX_ OP *o) | |
6ba07ce1 | 576 | __attribute__warn_unused_result__; |
e8a67806 NC |
577 | #define PERL_ARGS_ASSERT_CK_RETURN \ |
578 | assert(o) | |
579 | ||
580 | PERL_CALLCONV OP * Perl_ck_rfun(pTHX_ OP *o) | |
6ba07ce1 | 581 | __attribute__warn_unused_result__; |
e8a67806 NC |
582 | #define PERL_ARGS_ASSERT_CK_RFUN \ |
583 | assert(o) | |
584 | ||
585 | PERL_CALLCONV OP * Perl_ck_rvconst(pTHX_ OP *o) | |
6ba07ce1 | 586 | __attribute__warn_unused_result__; |
e8a67806 NC |
587 | #define PERL_ARGS_ASSERT_CK_RVCONST \ |
588 | assert(o) | |
589 | ||
590 | PERL_CALLCONV OP * Perl_ck_sassign(pTHX_ OP *o) | |
6ba07ce1 | 591 | __attribute__warn_unused_result__; |
e8a67806 NC |
592 | #define PERL_ARGS_ASSERT_CK_SASSIGN \ |
593 | assert(o) | |
594 | ||
595 | PERL_CALLCONV OP * Perl_ck_select(pTHX_ OP *o) | |
6ba07ce1 | 596 | __attribute__warn_unused_result__; |
e8a67806 NC |
597 | #define PERL_ARGS_ASSERT_CK_SELECT \ |
598 | assert(o) | |
599 | ||
600 | PERL_CALLCONV OP * Perl_ck_shift(pTHX_ OP *o) | |
6ba07ce1 | 601 | __attribute__warn_unused_result__; |
e8a67806 NC |
602 | #define PERL_ARGS_ASSERT_CK_SHIFT \ |
603 | assert(o) | |
604 | ||
7896dde7 Z |
605 | PERL_CALLCONV OP * Perl_ck_smartmatch(pTHX_ OP *o) |
606 | __attribute__warn_unused_result__; | |
607 | #define PERL_ARGS_ASSERT_CK_SMARTMATCH \ | |
608 | assert(o) | |
609 | ||
e8a67806 | 610 | PERL_CALLCONV OP * Perl_ck_sort(pTHX_ OP *o) |
6ba07ce1 | 611 | __attribute__warn_unused_result__; |
e8a67806 NC |
612 | #define PERL_ARGS_ASSERT_CK_SORT \ |
613 | assert(o) | |
614 | ||
615 | PERL_CALLCONV OP * Perl_ck_spair(pTHX_ OP *o) | |
6ba07ce1 | 616 | __attribute__warn_unused_result__; |
e8a67806 NC |
617 | #define PERL_ARGS_ASSERT_CK_SPAIR \ |
618 | assert(o) | |
619 | ||
620 | PERL_CALLCONV OP * Perl_ck_split(pTHX_ OP *o) | |
6ba07ce1 | 621 | __attribute__warn_unused_result__; |
e8a67806 NC |
622 | #define PERL_ARGS_ASSERT_CK_SPLIT \ |
623 | assert(o) | |
624 | ||
73f4c4fe | 625 | PERL_CALLCONV OP * Perl_ck_stringify(pTHX_ OP *o) |
6ba07ce1 | 626 | __attribute__warn_unused_result__; |
73f4c4fe FC |
627 | #define PERL_ARGS_ASSERT_CK_STRINGIFY \ |
628 | assert(o) | |
629 | ||
e8a67806 | 630 | PERL_CALLCONV OP * Perl_ck_subr(pTHX_ OP *o) |
6ba07ce1 | 631 | __attribute__warn_unused_result__; |
e8a67806 NC |
632 | #define PERL_ARGS_ASSERT_CK_SUBR \ |
633 | assert(o) | |
634 | ||
635 | PERL_CALLCONV OP * Perl_ck_substr(pTHX_ OP *o) | |
6ba07ce1 | 636 | __attribute__warn_unused_result__; |
e8a67806 NC |
637 | #define PERL_ARGS_ASSERT_CK_SUBSTR \ |
638 | assert(o) | |
639 | ||
640 | PERL_CALLCONV OP * Perl_ck_svconst(pTHX_ OP *o) | |
6ba07ce1 | 641 | __attribute__warn_unused_result__; |
e8a67806 NC |
642 | #define PERL_ARGS_ASSERT_CK_SVCONST \ |
643 | assert(o) | |
644 | ||
8dc99089 | 645 | PERL_CALLCONV OP * Perl_ck_tell(pTHX_ OP *o) |
6ba07ce1 | 646 | __attribute__warn_unused_result__; |
8dc99089 FC |
647 | #define PERL_ARGS_ASSERT_CK_TELL \ |
648 | assert(o) | |
649 | ||
e8a67806 | 650 | PERL_CALLCONV OP * Perl_ck_trunc(pTHX_ OP *o) |
6ba07ce1 | 651 | __attribute__warn_unused_result__; |
e8a67806 NC |
652 | #define PERL_ARGS_ASSERT_CK_TRUNC \ |
653 | assert(o) | |
654 | ||
e8a67806 | 655 | PERL_CALLCONV void Perl_ck_warner(pTHX_ U32 err, const char* pat, ...) |
6ba07ce1 | 656 | __attribute__format__(__printf__,pTHX_2,pTHX_3); |
e8a67806 NC |
657 | #define PERL_ARGS_ASSERT_CK_WARNER \ |
658 | assert(pat) | |
659 | ||
660 | PERL_CALLCONV void Perl_ck_warner_d(pTHX_ U32 err, const char* pat, ...) | |
6ba07ce1 | 661 | __attribute__format__(__printf__,pTHX_2,pTHX_3); |
e8a67806 NC |
662 | #define PERL_ARGS_ASSERT_CK_WARNER_D \ |
663 | assert(pat) | |
664 | ||
ca0c6e8c KW |
665 | PERL_CALLCONV bool Perl_ckwarn(pTHX_ U32 w) |
666 | __attribute__warn_unused_result__ | |
667 | __attribute__pure__; | |
2015d234 | 668 | #define PERL_ARGS_ASSERT_CKWARN |
ca0c6e8c KW |
669 | |
670 | PERL_CALLCONV bool Perl_ckwarn_d(pTHX_ U32 w) | |
671 | __attribute__warn_unused_result__ | |
672 | __attribute__pure__; | |
2015d234 | 673 | #define PERL_ARGS_ASSERT_CKWARN_D |
ca0c6e8c | 674 | |
6e45d846 DM |
675 | PERL_CALLCONV void Perl_clear_defarray(pTHX_ AV* av, bool abandon); |
676 | #define PERL_ARGS_ASSERT_CLEAR_DEFARRAY \ | |
677 | assert(av) | |
6ba07ce1 | 678 | PERL_CALLCONV const COP* Perl_closest_cop(pTHX_ const COP *cop, const OP *o, const OP *curop, bool opnext); |
25502127 FC |
679 | #define PERL_ARGS_ASSERT_CLOSEST_COP \ |
680 | assert(cop) | |
6b32f57d | 681 | PERL_CALLCONV OP* Perl_cmpchain_extend(pTHX_ I32 type, OP* ch, OP* right) |
02b85d3d Z |
682 | __attribute__warn_unused_result__; |
683 | #define PERL_ARGS_ASSERT_CMPCHAIN_EXTEND \ | |
684 | assert(ch) | |
685 | ||
686 | PERL_CALLCONV OP* Perl_cmpchain_finish(pTHX_ OP* ch) | |
687 | __attribute__warn_unused_result__; | |
688 | #define PERL_ARGS_ASSERT_CMPCHAIN_FINISH \ | |
689 | assert(ch) | |
690 | ||
6b32f57d | 691 | PERL_CALLCONV OP* Perl_cmpchain_start(pTHX_ I32 type, OP* left, OP* right) |
02b85d3d Z |
692 | __attribute__warn_unused_result__; |
693 | #define PERL_ARGS_ASSERT_CMPCHAIN_START | |
694 | ||
5e6ebb12 KW |
695 | PERL_CALLCONV const char * Perl_cntrl_to_mnemonic(const U8 c) |
696 | __attribute__warn_unused_result__; | |
697 | #define PERL_ARGS_ASSERT_CNTRL_TO_MNEMONIC | |
698 | ||
6ba07ce1 | 699 | PERL_CALLCONV const char * Perl_cop_fetch_label(pTHX_ COP *const cop, STRLEN *len, U32 *flags); |
aebc0cbe FC |
700 | #define PERL_ARGS_ASSERT_COP_FETCH_LABEL \ |
701 | assert(cop) | |
6ba07ce1 | 702 | PERL_CALLCONV void Perl_cop_store_label(pTHX_ COP *const cop, const char *label, STRLEN len, U32 flags); |
aebc0cbe FC |
703 | #define PERL_ARGS_ASSERT_COP_STORE_LABEL \ |
704 | assert(cop); assert(label) | |
6ba07ce1 | 705 | PERL_CALLCONV SV * Perl_core_prototype(pTHX_ SV *sv, const char *name, const int code, int * const opnum); |
b8c38f0a FC |
706 | #define PERL_ARGS_ASSERT_CORE_PROTOTYPE \ |
707 | assert(name) | |
6ba07ce1 | 708 | PERL_CALLCONV OP * Perl_coresub_op(pTHX_ SV *const coreargssv, const int code, const int opnum); |
1e4b6aa1 FC |
709 | #define PERL_ARGS_ASSERT_CORESUB_OP \ |
710 | assert(coreargssv) | |
274ed8ae | 711 | PERL_CALLCONV void Perl_create_eval_scope(pTHX_ OP *retop, U32 flags); |
2015d234 | 712 | #define PERL_ARGS_ASSERT_CREATE_EVAL_SCOPE |
12a2785c | 713 | PERL_CALLCONV_NO_RET void Perl_croak(pTHX_ const char* pat, ...) |
e8a67806 NC |
714 | __attribute__noreturn__ |
715 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
2015d234 | 716 | #define PERL_ARGS_ASSERT_CROAK |
e8a67806 | 717 | |
4fa06845 DM |
718 | PERL_CALLCONV_NO_RET void Perl_croak_caller(const char* pat, ...) |
719 | __attribute__noreturn__ | |
720 | __attribute__format__null_ok__(__printf__,1,2); | |
2015d234 | 721 | #define PERL_ARGS_ASSERT_CROAK_CALLER |
4fa06845 | 722 | |
d68c938a | 723 | PERL_CALLCONV_NO_RET void Perl_croak_memory_wrap(void) |
d1decf2b | 724 | __attribute__noreturn__; |
2015d234 | 725 | #define PERL_ARGS_ASSERT_CROAK_MEMORY_WRAP |
d1decf2b | 726 | |
4cbe3a7d DD |
727 | PERL_CALLCONV_NO_RET void Perl_croak_no_mem(void) |
728 | __attribute__noreturn__; | |
2015d234 | 729 | #define PERL_ARGS_ASSERT_CROAK_NO_MEM |
4cbe3a7d | 730 | |
cb077ed2 | 731 | PERL_CALLCONV_NO_RET void Perl_croak_no_modify(void) |
e8a67806 | 732 | __attribute__noreturn__; |
2015d234 | 733 | #define PERL_ARGS_ASSERT_CROAK_NO_MODIFY |
e8a67806 | 734 | |
3d04513d DD |
735 | PERL_CALLCONV_NO_RET void Perl_croak_popstack(void) |
736 | __attribute__noreturn__; | |
2015d234 | 737 | #define PERL_ARGS_ASSERT_CROAK_POPSTACK |
3d04513d | 738 | |
12a2785c | 739 | PERL_CALLCONV_NO_RET void Perl_croak_sv(pTHX_ SV *baseex) |
6ba07ce1 | 740 | __attribute__noreturn__; |
e8a67806 NC |
741 | #define PERL_ARGS_ASSERT_CROAK_SV \ |
742 | assert(baseex) | |
743 | ||
cb077ed2 | 744 | PERL_CALLCONV_NO_RET void Perl_croak_xs_usage(const CV *const cv, const char *const params) |
6ba07ce1 | 745 | __attribute__noreturn__; |
e8a67806 NC |
746 | #define PERL_ARGS_ASSERT_CROAK_XS_USAGE \ |
747 | assert(cv); assert(params) | |
748 | ||
dc37125b DM |
749 | PERL_CALLCONV Signal_t Perl_csighandler1(int sig); |
750 | #define PERL_ARGS_ASSERT_CSIGHANDLER1 | |
751 | PERL_CALLCONV Signal_t Perl_csighandler3(int sig, Siginfo_t *info, void *uap); | |
752 | #define PERL_ARGS_ASSERT_CSIGHANDLER3 | |
3c13cae6 | 753 | PERL_CALLCONV regexp_engine const * Perl_current_re_engine(pTHX); |
2015d234 | 754 | #define PERL_ARGS_ASSERT_CURRENT_RE_ENGINE |
1545ba5b | 755 | #ifndef NO_MATHOMS |
e8a67806 | 756 | PERL_CALLCONV const char * Perl_custom_op_desc(pTHX_ const OP *o) |
57f51a64 | 757 | __attribute__deprecated__ |
6ba07ce1 | 758 | __attribute__warn_unused_result__; |
e8a67806 NC |
759 | #define PERL_ARGS_ASSERT_CUSTOM_OP_DESC \ |
760 | assert(o) | |
1545ba5b | 761 | #endif |
e8a67806 | 762 | |
ae103e09 | 763 | PERL_CALLCONV XOPRETANY Perl_custom_op_get_field(pTHX_ const OP *o, const xop_flags_enum field) |
6ba07ce1 | 764 | __attribute__warn_unused_result__; |
ae103e09 DD |
765 | #define PERL_ARGS_ASSERT_CUSTOM_OP_GET_FIELD \ |
766 | assert(o) | |
767 | ||
1545ba5b | 768 | #ifndef NO_MATHOMS |
e8a67806 | 769 | PERL_CALLCONV const char * Perl_custom_op_name(pTHX_ const OP *o) |
57f51a64 | 770 | __attribute__deprecated__ |
6ba07ce1 | 771 | __attribute__warn_unused_result__; |
e8a67806 NC |
772 | #define PERL_ARGS_ASSERT_CUSTOM_OP_NAME \ |
773 | assert(o) | |
1545ba5b | 774 | #endif |
e8a67806 | 775 | |
6ba07ce1 | 776 | PERL_CALLCONV void Perl_custom_op_register(pTHX_ Perl_ppaddr_t ppaddr, const XOP *xop); |
1830b3d9 BM |
777 | #define PERL_ARGS_ASSERT_CUSTOM_OP_REGISTER \ |
778 | assert(ppaddr); assert(xop) | |
6ba07ce1 | 779 | PERL_CALLCONV void Perl_cv_ckproto_len_flags(pTHX_ const CV* cv, const GV* gv, const char* p, const STRLEN len, const U32 flags); |
dab1c735 BF |
780 | #define PERL_ARGS_ASSERT_CV_CKPROTO_LEN_FLAGS \ |
781 | assert(cv) | |
6ba07ce1 | 782 | PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto); |
e8a67806 NC |
783 | #define PERL_ARGS_ASSERT_CV_CLONE \ |
784 | assert(proto) | |
6ba07ce1 | 785 | PERL_CALLCONV CV* Perl_cv_clone_into(pTHX_ CV* proto, CV *target); |
6d5c2147 FC |
786 | #define PERL_ARGS_ASSERT_CV_CLONE_INTO \ |
787 | assert(proto); assert(target) | |
ddeaf645 | 788 | PERL_CALLCONV SV* Perl_cv_const_sv(const CV *const cv) |
e8a67806 | 789 | __attribute__warn_unused_result__; |
2015d234 | 790 | #define PERL_ARGS_ASSERT_CV_CONST_SV |
e8a67806 | 791 | |
ddeaf645 | 792 | PERL_CALLCONV SV* Perl_cv_const_sv_or_av(const CV *const cv) |
f815dc14 | 793 | __attribute__warn_unused_result__; |
2015d234 | 794 | #define PERL_ARGS_ASSERT_CV_CONST_SV_OR_AV |
f815dc14 | 795 | |
de0885da | 796 | PERL_CALLCONV void Perl_cv_forget_slab(pTHX_ CV *cv); |
2015d234 | 797 | #define PERL_ARGS_ASSERT_CV_FORGET_SLAB |
6ba07ce1 | 798 | PERL_CALLCONV void Perl_cv_get_call_checker(pTHX_ CV *cv, Perl_call_checker *ckfun_p, SV **ckobj_p); |
d9088386 Z |
799 | #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER \ |
800 | assert(cv); assert(ckfun_p); assert(ckobj_p) | |
71c697de Z |
801 | PERL_CALLCONV void Perl_cv_get_call_checker_flags(pTHX_ CV *cv, U32 gflags, Perl_call_checker *ckfun_p, SV **ckobj_p, U32 *ckflags_p); |
802 | #define PERL_ARGS_ASSERT_CV_GET_CALL_CHECKER_FLAGS \ | |
803 | assert(cv); assert(ckfun_p); assert(ckobj_p); assert(ckflags_p) | |
6ba07ce1 | 804 | PERL_CALLCONV SV * Perl_cv_name(pTHX_ CV *cv, SV *sv, U32 flags); |
c5569a55 FC |
805 | #define PERL_ARGS_ASSERT_CV_NAME \ |
806 | assert(cv) | |
6ba07ce1 | 807 | PERL_CALLCONV void Perl_cv_set_call_checker(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj); |
d9088386 Z |
808 | #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER \ |
809 | assert(cv); assert(ckfun); assert(ckobj) | |
71c697de | 810 | PERL_CALLCONV void Perl_cv_set_call_checker_flags(pTHX_ CV *cv, Perl_call_checker ckfun, SV *ckobj, U32 ckflags); |
aa38f4b1 FC |
811 | #define PERL_ARGS_ASSERT_CV_SET_CALL_CHECKER_FLAGS \ |
812 | assert(cv); assert(ckfun); assert(ckobj) | |
6ba07ce1 | 813 | PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv); |
e8a67806 NC |
814 | #define PERL_ARGS_ASSERT_CV_UNDEF \ |
815 | assert(cv) | |
6ba07ce1 | 816 | PERL_CALLCONV void Perl_cv_undef_flags(pTHX_ CV* cv, U32 flags); |
b7acb0a3 FC |
817 | #define PERL_ARGS_ASSERT_CV_UNDEF_FLAGS \ |
818 | assert(cv) | |
6ba07ce1 | 819 | PERL_CALLCONV GV * Perl_cvgv_from_hek(pTHX_ CV* cv); |
ae77754a FC |
820 | #define PERL_ARGS_ASSERT_CVGV_FROM_HEK \ |
821 | assert(cv) | |
6ba07ce1 | 822 | PERL_CALLCONV void Perl_cvgv_set(pTHX_ CV* cv, GV* gv); |
e8a67806 NC |
823 | #define PERL_ARGS_ASSERT_CVGV_SET \ |
824 | assert(cv) | |
6ba07ce1 | 825 | PERL_CALLCONV void Perl_cvstash_set(pTHX_ CV* cv, HV* stash); |
c68d9564 Z |
826 | #define PERL_ARGS_ASSERT_CVSTASH_SET \ |
827 | assert(cv) | |
6ba07ce1 | 828 | PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cx); |
e8a67806 NC |
829 | #define PERL_ARGS_ASSERT_CX_DUMP \ |
830 | assert(cx) | |
e8a67806 NC |
831 | PERL_CALLCONV I32 Perl_cxinc(pTHX) |
832 | __attribute__warn_unused_result__; | |
2015d234 | 833 | #define PERL_ARGS_ASSERT_CXINC |
e8a67806 NC |
834 | |
835 | PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...) | |
6ba07ce1 | 836 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
e8a67806 NC |
837 | #define PERL_ARGS_ASSERT_DEB \ |
838 | assert(pat) | |
839 | ||
840 | PERL_CALLCONV void Perl_deb_stack_all(pTHX); | |
2015d234 | 841 | #define PERL_ARGS_ASSERT_DEB_STACK_ALL |
6ba07ce1 | 842 | PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o); |
e8a67806 NC |
843 | #define PERL_ARGS_ASSERT_DEBOP \ |
844 | assert(o) | |
e8a67806 | 845 | PERL_CALLCONV void Perl_debprofdump(pTHX); |
2015d234 | 846 | #define PERL_ARGS_ASSERT_DEBPROFDUMP |
e8a67806 | 847 | PERL_CALLCONV I32 Perl_debstack(pTHX); |
2015d234 | 848 | #define PERL_ARGS_ASSERT_DEBSTACK |
e8a67806 | 849 | PERL_CALLCONV I32 Perl_debstackptrs(pTHX); |
2015d234 | 850 | #define PERL_ARGS_ASSERT_DEBSTACKPTRS |
13733cde | 851 | PERL_CALLCONV SV * Perl_defelem_target(pTHX_ SV *sv, MAGIC *mg) |
6ba07ce1 | 852 | __attribute__warn_unused_result__; |
13733cde FC |
853 | #define PERL_ARGS_ASSERT_DEFELEM_TARGET \ |
854 | assert(sv) | |
855 | ||
e8a67806 | 856 | PERL_CALLCONV void Perl_delete_eval_scope(pTHX); |
2015d234 | 857 | #define PERL_ARGS_ASSERT_DELETE_EVAL_SCOPE |
cc448cea | 858 | PERL_CALLCONV char* Perl_delimcpy(char* to, const char* to_end, const char* from, const char* from_end, const int delim, I32* retlen); |
7918f24d | 859 | #define PERL_ARGS_ASSERT_DELIMCPY \ |
cc448cea | 860 | assert(to); assert(to_end); assert(from); assert(from_end); assert(retlen) |
430f723e | 861 | PERL_CALLCONV char* Perl_delimcpy_no_escape(char* to, const char* to_end, const char* from, const char* from_end, const int delim, I32* retlen); |
ba0a4150 | 862 | #define PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE \ |
430f723e | 863 | assert(to); assert(to_end); assert(from); assert(from_end); assert(retlen) |
e8a67806 | 864 | PERL_CALLCONV void Perl_despatch_signals(pTHX); |
2015d234 | 865 | #define PERL_ARGS_ASSERT_DESPATCH_SIGNALS |
f8d5a522 DD |
866 | PERL_CALLCONV_NO_RET OP* Perl_die(pTHX_ const char* pat, ...) |
867 | __attribute__noreturn__ | |
868 | __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); | |
2015d234 | 869 | #define PERL_ARGS_ASSERT_DIE |
f8d5a522 DD |
870 | |
871 | PERL_CALLCONV_NO_RET OP* Perl_die_sv(pTHX_ SV *baseex) | |
6ba07ce1 | 872 | __attribute__noreturn__; |
f8d5a522 DD |
873 | #define PERL_ARGS_ASSERT_DIE_SV \ |
874 | assert(baseex) | |
875 | ||
12a2785c | 876 | PERL_CALLCONV_NO_RET void Perl_die_unwind(pTHX_ SV* msv) |
6ba07ce1 | 877 | __attribute__noreturn__; |
c5df3096 | 878 | #define PERL_ARGS_ASSERT_DIE_UNWIND \ |
62705b21 | 879 | assert(msv) |
bb4c52e0 | 880 | |
3f1866a8 KW |
881 | #ifndef NO_MATHOMS |
882 | PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp); | |
7918f24d NC |
883 | #define PERL_ARGS_ASSERT_DO_AEXEC \ |
884 | assert(mark); assert(sp) | |
3f1866a8 | 885 | #endif |
738ab09f | 886 | PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int do_report); |
7918f24d NC |
887 | #define PERL_ARGS_ASSERT_DO_AEXEC5 \ |
888 | assert(mark); assert(sp) | |
1545ba5b | 889 | #ifndef NO_MATHOMS |
57f51a64 KW |
890 | PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
891 | __attribute__deprecated__; | |
7918f24d NC |
892 | #define PERL_ARGS_ASSERT_DO_BINMODE \ |
893 | assert(fp) | |
1545ba5b | 894 | #endif |
57f51a64 | 895 | |
063df69c | 896 | PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit); |
2015d234 | 897 | #define PERL_ARGS_ASSERT_DO_CLOSE |
6ba07ce1 | 898 | PERL_CALLCONV void Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full); |
e8a67806 NC |
899 | #define PERL_ARGS_ASSERT_DO_DUMP_PAD \ |
900 | assert(file) | |
6ba07ce1 | 901 | PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv); |
7918f24d NC |
902 | #define PERL_ARGS_ASSERT_DO_EOF \ |
903 | assert(gv) | |
6ba07ce1 | 904 | PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv); |
e8a67806 NC |
905 | #define PERL_ARGS_ASSERT_DO_GV_DUMP \ |
906 | assert(file); assert(name) | |
6ba07ce1 | 907 | PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv); |
e8a67806 NC |
908 | #define PERL_ARGS_ASSERT_DO_GVGV_DUMP \ |
909 | assert(file); assert(name) | |
6ba07ce1 | 910 | PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv); |
e8a67806 NC |
911 | #define PERL_ARGS_ASSERT_DO_HV_DUMP \ |
912 | assert(file); assert(name) | |
6ba07ce1 | 913 | PERL_CALLCONV void Perl_do_join(pTHX_ SV *sv, SV *delim, SV **mark, SV **sp); |
7918f24d NC |
914 | #define PERL_ARGS_ASSERT_DO_JOIN \ |
915 | assert(sv); assert(delim); assert(mark); assert(sp) | |
6ba07ce1 | 916 | PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim); |
e8a67806 | 917 | #define PERL_ARGS_ASSERT_DO_MAGIC_DUMP \ |
3dc78631 | 918 | assert(file) |
33efebe6 | 919 | PERL_CALLCONV I32 Perl_do_ncmp(pTHX_ SV *const left, SV *const right) |
6ba07ce1 | 920 | __attribute__warn_unused_result__; |
33efebe6 DM |
921 | #define PERL_ARGS_ASSERT_DO_NCMP \ |
922 | assert(left); assert(right) | |
923 | ||
6ba07ce1 | 924 | PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o); |
e8a67806 NC |
925 | #define PERL_ARGS_ASSERT_DO_OP_DUMP \ |
926 | assert(file) | |
3f1866a8 KW |
927 | #ifndef NO_MATHOMS |
928 | PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, const char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp); | |
7918f24d NC |
929 | #define PERL_ARGS_ASSERT_DO_OPEN \ |
930 | assert(gv); assert(name) | |
3f1866a8 | 931 | #endif |
6ba07ce1 | 932 | PERL_CALLCONV bool Perl_do_open6(pTHX_ GV *gv, const char *oname, STRLEN len, PerlIO *supplied_fp, SV **svp, U32 num); |
4b451737 NC |
933 | #define PERL_ARGS_ASSERT_DO_OPEN6 \ |
934 | assert(gv); assert(oname) | |
1545ba5b | 935 | #ifndef NO_MATHOMS |
57f51a64 KW |
936 | 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) |
937 | __attribute__deprecated__; | |
7918f24d NC |
938 | #define PERL_ARGS_ASSERT_DO_OPEN9 \ |
939 | assert(gv); assert(name); assert(svs) | |
1545ba5b | 940 | #endif |
57f51a64 | 941 | |
7e30e49f | 942 | PERL_CALLCONV bool Perl_do_open_raw(pTHX_ GV *gv, const char *oname, STRLEN len, int rawmode, int rawperm, Stat_t *statbufp); |
4b451737 NC |
943 | #define PERL_ARGS_ASSERT_DO_OPEN_RAW \ |
944 | assert(gv); assert(oname) | |
6ba07ce1 | 945 | 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); |
7918f24d NC |
946 | #define PERL_ARGS_ASSERT_DO_OPENN \ |
947 | assert(gv); assert(oname) | |
6ba07ce1 | 948 | PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm); |
e8a67806 NC |
949 | #define PERL_ARGS_ASSERT_DO_PMOP_DUMP \ |
950 | assert(file) | |
6ba07ce1 | 951 | PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp); |
7918f24d NC |
952 | #define PERL_ARGS_ASSERT_DO_PRINT \ |
953 | assert(fp) | |
255164ba DM |
954 | PERL_CALLCONV OP* Perl_do_readline(pTHX) |
955 | __attribute__warn_unused_result__; | |
2015d234 | 956 | #define PERL_ARGS_ASSERT_DO_READLINE |
255164ba | 957 | |
1d7c1841 | 958 | PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence); |
2015d234 | 959 | #define PERL_ARGS_ASSERT_DO_SEEK |
03a22d83 | 960 | PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, SSize_t len, SV** sarg); |
7918f24d NC |
961 | #define PERL_ARGS_ASSERT_DO_SPRINTF \ |
962 | assert(sv); assert(sarg) | |
6ba07ce1 | 963 | PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim); |
e8a67806 NC |
964 | #define PERL_ARGS_ASSERT_DO_SV_DUMP \ |
965 | assert(file) | |
6ba07ce1 | 966 | PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence); |
7918f24d NC |
967 | #define PERL_ARGS_ASSERT_DO_SYSSEEK \ |
968 | assert(gv) | |
255164ba | 969 | PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv) |
6ba07ce1 | 970 | __attribute__warn_unused_result__; |
7918f24d NC |
971 | #define PERL_ARGS_ASSERT_DO_TELL \ |
972 | assert(gv) | |
255164ba | 973 | |
f0fd0980 | 974 | PERL_CALLCONV Size_t Perl_do_trans(pTHX_ SV* sv); |
7918f24d NC |
975 | #define PERL_ARGS_ASSERT_DO_TRANS \ |
976 | assert(sv) | |
be879013 KW |
977 | PERL_CALLCONV I16 Perl_do_uniprop_match(const char * const key, const U16 key_len) |
978 | __attribute__warn_unused_result__; | |
979 | #define PERL_ARGS_ASSERT_DO_UNIPROP_MATCH \ | |
980 | assert(key) | |
981 | ||
d69c4304 | 982 | PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, STRLEN offset, int size); |
7918f24d NC |
983 | #define PERL_ARGS_ASSERT_DO_VECGET \ |
984 | assert(sv) | |
6ba07ce1 | 985 | PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv); |
7918f24d NC |
986 | #define PERL_ARGS_ASSERT_DO_VECSET \ |
987 | assert(sv) | |
6ba07ce1 | 988 | PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right); |
7918f24d NC |
989 | #define PERL_ARGS_ASSERT_DO_VOP \ |
990 | assert(sv); assert(left); assert(right) | |
6ba07ce1 | 991 | PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term, I32 force_builtin); |
7918f24d NC |
992 | #define PERL_ARGS_ASSERT_DOFILE \ |
993 | assert(term) | |
e8a67806 NC |
994 | PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env) |
995 | __attribute__warn_unused_result__; | |
2015d234 | 996 | #define PERL_ARGS_ASSERT_DOING_TAINT |
e8a67806 | 997 | |
6ba07ce1 | 998 | PERL_CALLCONV OP * Perl_doref(pTHX_ OP *o, I32 type, bool set_op_ref); |
e8a67806 NC |
999 | #define PERL_ARGS_ASSERT_DOREF \ |
1000 | assert(o) | |
e8a67806 | 1001 | PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); |
2015d234 | 1002 | #define PERL_ARGS_ASSERT_DOUNWIND |
1c23e2bd | 1003 | PERL_CALLCONV U8 Perl_dowantarray(pTHX) |
255164ba | 1004 | __attribute__warn_unused_result__; |
2015d234 | 1005 | #define PERL_ARGS_ASSERT_DOWANTARRAY |
255164ba | 1006 | |
6ba07ce1 | 1007 | PERL_CALLCONV void Perl_drand48_init_r(perl_drand48_t *random_state, U32 seed); |
3be8f094 TC |
1008 | #define PERL_ARGS_ASSERT_DRAND48_INIT_R \ |
1009 | assert(random_state) | |
6ba07ce1 | 1010 | PERL_CALLCONV double Perl_drand48_r(perl_drand48_t *random_state); |
3be8f094 TC |
1011 | #define PERL_ARGS_ASSERT_DRAND48_R \ |
1012 | assert(random_state) | |
1d7c1841 | 1013 | PERL_CALLCONV void Perl_dump_all(pTHX); |
2015d234 | 1014 | #define PERL_ARGS_ASSERT_DUMP_ALL |
f0e3f042 | 1015 | PERL_CALLCONV void Perl_dump_all_perl(pTHX_ bool justperl); |
2015d234 | 1016 | #define PERL_ARGS_ASSERT_DUMP_ALL_PERL |
1d7c1841 | 1017 | PERL_CALLCONV void Perl_dump_eval(pTHX); |
2015d234 | 1018 | #define PERL_ARGS_ASSERT_DUMP_EVAL |
6ba07ce1 | 1019 | PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv); |
7918f24d NC |
1020 | #define PERL_ARGS_ASSERT_DUMP_FORM \ |
1021 | assert(gv) | |
e8a67806 | 1022 | PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) |
6ba07ce1 | 1023 | __attribute__format__(__printf__,pTHX_3,pTHX_4); |
e8a67806 NC |
1024 | #define PERL_ARGS_ASSERT_DUMP_INDENT \ |
1025 | assert(file); assert(pat) | |
255164ba | 1026 | |
6ba07ce1 | 1027 | PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash); |
7918f24d NC |
1028 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS \ |
1029 | assert(stash) | |
6ba07ce1 | 1030 | PERL_CALLCONV void Perl_dump_packsubs_perl(pTHX_ const HV* stash, bool justperl); |
f0e3f042 CS |
1031 | #define PERL_ARGS_ASSERT_DUMP_PACKSUBS_PERL \ |
1032 | assert(stash) | |
6ba07ce1 | 1033 | PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv); |
7918f24d NC |
1034 | #define PERL_ARGS_ASSERT_DUMP_SUB \ |
1035 | assert(gv) | |
6ba07ce1 | 1036 | PERL_CALLCONV void Perl_dump_sub_perl(pTHX_ const GV* gv, bool justperl); |
f0e3f042 CS |
1037 | #define PERL_ARGS_ASSERT_DUMP_SUB_PERL \ |
1038 | assert(gv) | |
6ba07ce1 | 1039 | PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args); |
e8a67806 NC |
1040 | #define PERL_ARGS_ASSERT_DUMP_VINDENT \ |
1041 | assert(file); assert(pat) | |
c1e47bad | 1042 | PERL_CALLCONV STRLEN* Perl_dup_warnings(pTHX_ STRLEN* warnings); |
2015d234 | 1043 | #define PERL_ARGS_ASSERT_DUP_WARNINGS |
6ba07ce1 | 1044 | PERL_CALLCONV void Perl_emulate_cop_io(pTHX_ const COP *const c, SV *const sv); |
e8a67806 NC |
1045 | #define PERL_ARGS_ASSERT_EMULATE_COP_IO \ |
1046 | assert(c); assert(sv) | |
6ba07ce1 | 1047 | PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error); |
e8a67806 NC |
1048 | #define PERL_ARGS_ASSERT_EVAL_PV \ |
1049 | assert(p) | |
6ba07ce1 | 1050 | PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags); |
e8a67806 NC |
1051 | #define PERL_ARGS_ASSERT_EVAL_SV \ |
1052 | assert(sv) | |
6ba07ce1 | 1053 | PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags); |
7918f24d NC |
1054 | #define PERL_ARGS_ASSERT_FBM_COMPILE \ |
1055 | assert(sv) | |
9f6cc744 | 1056 | PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlestr, U32 flags) |
6ba07ce1 | 1057 | __attribute__warn_unused_result__; |
7918f24d NC |
1058 | #define PERL_ARGS_ASSERT_FBM_INSTR \ |
1059 | assert(big); assert(bigend); assert(littlestr) | |
255164ba | 1060 | |
e8a67806 | 1061 | PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv); |
2015d234 | 1062 | #define PERL_ARGS_ASSERT_FILTER_ADD |
6ba07ce1 | 1063 | PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp); |
e8a67806 NC |
1064 | #define PERL_ARGS_ASSERT_FILTER_DEL \ |
1065 | assert(funcp) | |
e8a67806 | 1066 | PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen) |
6ba07ce1 | 1067 | __attribute__warn_unused_result__; |
e8a67806 NC |
1068 | #define PERL_ARGS_ASSERT_FILTER_READ \ |
1069 | assert(buf_sv) | |
1070 | ||
6ba07ce1 | 1071 | PERL_CALLCONV void Perl_finalize_optree(pTHX_ OP* o); |
d164302a GG |
1072 | #define PERL_ARGS_ASSERT_FINALIZE_OPTREE \ |
1073 | assert(o) | |
9a5e6f3c | 1074 | PERL_CALLCONV CV * Perl_find_lexical_cv(pTHX_ PADOFFSET off); |
2015d234 | 1075 | #define PERL_ARGS_ASSERT_FIND_LEXICAL_CV |
e8a67806 NC |
1076 | PERL_CALLCONV CV* Perl_find_runcv(pTHX_ U32 *db_seqp) |
1077 | __attribute__warn_unused_result__; | |
2015d234 | 1078 | #define PERL_ARGS_ASSERT_FIND_RUNCV |
e8a67806 | 1079 | |
db4cf31d | 1080 | PERL_CALLCONV CV* Perl_find_runcv_where(pTHX_ U8 cond, IV arg, U32 *db_seqp) |
70794f7b | 1081 | __attribute__warn_unused_result__; |
2015d234 | 1082 | #define PERL_ARGS_ASSERT_FIND_RUNCV_WHERE |
70794f7b | 1083 | |
e8a67806 | 1084 | PERL_CALLCONV SV* Perl_find_rundefsv(pTHX); |
2015d234 | 1085 | #define PERL_ARGS_ASSERT_FIND_RUNDEFSV |
e8a67806 NC |
1086 | PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX) |
1087 | __attribute__deprecated__; | |
2015d234 | 1088 | #define PERL_ARGS_ASSERT_FIND_RUNDEFSVOFFSET |
e8a67806 | 1089 | |
6ba07ce1 | 1090 | PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char *const *const search_ext, I32 flags); |
7918f24d NC |
1091 | #define PERL_ARGS_ASSERT_FIND_SCRIPT \ |
1092 | assert(scriptname) | |
a5d565cd | 1093 | #ifndef PERL_NO_INLINE_FUNCTIONS |
ec2c235b | 1094 | PERL_STATIC_INLINE I32 Perl_foldEQ(const char* a, const char* b, I32 len); |
e8a67806 NC |
1095 | #define PERL_ARGS_ASSERT_FOLDEQ \ |
1096 | assert(a); assert(b) | |
a5d565cd JH |
1097 | #endif |
1098 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
ec2c235b | 1099 | PERL_STATIC_INLINE I32 Perl_foldEQ_latin1(const char* a, const char* b, I32 len); |
1b9f127b KW |
1100 | #define PERL_ARGS_ASSERT_FOLDEQ_LATIN1 \ |
1101 | assert(a); assert(b) | |
a5d565cd JH |
1102 | #endif |
1103 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
ec2c235b | 1104 | PERL_STATIC_INLINE I32 Perl_foldEQ_locale(const char* a, const char* b, I32 len); |
e8a67806 NC |
1105 | #define PERL_ARGS_ASSERT_FOLDEQ_LOCALE \ |
1106 | assert(a); assert(b) | |
a5d565cd | 1107 | #endif |
6ba07ce1 | 1108 | /* PERL_CALLCONV I32 foldEQ_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */ |
2015d234 | 1109 | #define PERL_ARGS_ASSERT_FOLDEQ_UTF8 |
6ba07ce1 | 1110 | PERL_CALLCONV I32 Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2, U32 flags); |
eda9cac1 | 1111 | #define PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS \ |
e8a67806 | 1112 | assert(s1); assert(s2) |
894356b3 | 1113 | PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...) |
6ba07ce1 | 1114 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
7918f24d NC |
1115 | #define PERL_ARGS_ASSERT_FORM \ |
1116 | assert(pat) | |
aec46f14 | 1117 | |
e8a67806 | 1118 | PERL_CALLCONV void Perl_free_tied_hv_pool(pTHX); |
2015d234 | 1119 | #define PERL_ARGS_ASSERT_FREE_TIED_HV_POOL |
e8a67806 | 1120 | PERL_CALLCONV void Perl_free_tmps(pTHX); |
2015d234 | 1121 | #define PERL_ARGS_ASSERT_FREE_TMPS |
25c7fb78 KW |
1122 | PERL_CALLCONV SV* Perl_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e, const bool is_utf8, const char** error_msg) |
1123 | __attribute__warn_unused_result__; | |
1124 | #define PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME \ | |
1125 | assert(s); assert(e); assert(error_msg) | |
1126 | ||
6ba07ce1 | 1127 | PERL_CALLCONV AV* Perl_get_av(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1128 | #define PERL_ARGS_ASSERT_GET_AV \ |
1129 | assert(name) | |
e8a67806 NC |
1130 | PERL_CALLCONV void* Perl_get_context(void) |
1131 | __attribute__warn_unused_result__; | |
2015d234 | 1132 | #define PERL_ARGS_ASSERT_GET_CONTEXT |
e8a67806 | 1133 | |
6ba07ce1 | 1134 | PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 flags); |
e8a67806 NC |
1135 | #define PERL_ARGS_ASSERT_GET_CV \ |
1136 | assert(name) | |
6ba07ce1 | 1137 | PERL_CALLCONV CV* Perl_get_cvn_flags(pTHX_ const char* name, STRLEN len, I32 flags); |
e8a67806 NC |
1138 | #define PERL_ARGS_ASSERT_GET_CVN_FLAGS \ |
1139 | assert(name) | |
6ba07ce1 | 1140 | PERL_CALLCONV void Perl_get_db_sub(pTHX_ SV **svp, CV *cv); |
7918f24d NC |
1141 | #define PERL_ARGS_ASSERT_GET_DB_SUB \ |
1142 | assert(cv) | |
be879013 KW |
1143 | PERL_CALLCONV const char * Perl_get_deprecated_property_msg(const Size_t warning_offset) |
1144 | __attribute__warn_unused_result__; | |
1145 | #define PERL_ARGS_ASSERT_GET_DEPRECATED_PROPERTY_MSG | |
1146 | ||
6ba07ce1 | 1147 | PERL_CALLCONV void Perl_get_hash_seed(pTHX_ unsigned char * const seed_buffer); |
7dc86639 YO |
1148 | #define PERL_ARGS_ASSERT_GET_HASH_SEED \ |
1149 | assert(seed_buffer) | |
6ba07ce1 | 1150 | PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1151 | #define PERL_ARGS_ASSERT_GET_HV \ |
1152 | assert(name) | |
e8a67806 NC |
1153 | PERL_CALLCONV const char* Perl_get_no_modify(pTHX) |
1154 | __attribute__warn_unused_result__ | |
1155 | __attribute__pure__; | |
2015d234 | 1156 | #define PERL_ARGS_ASSERT_GET_NO_MODIFY |
e8a67806 NC |
1157 | |
1158 | PERL_CALLCONV char** Perl_get_op_descs(pTHX) | |
1159 | __attribute__warn_unused_result__ | |
1160 | __attribute__pure__; | |
2015d234 | 1161 | #define PERL_ARGS_ASSERT_GET_OP_DESCS |
e8a67806 NC |
1162 | |
1163 | PERL_CALLCONV char** Perl_get_op_names(pTHX) | |
1164 | __attribute__warn_unused_result__ | |
1165 | __attribute__pure__; | |
2015d234 | 1166 | #define PERL_ARGS_ASSERT_GET_OP_NAMES |
e8a67806 NC |
1167 | |
1168 | PERL_CALLCONV U32* Perl_get_opargs(pTHX) | |
1169 | __attribute__warn_unused_result__ | |
1170 | __attribute__pure__; | |
2015d234 | 1171 | #define PERL_ARGS_ASSERT_GET_OPARGS |
e8a67806 NC |
1172 | |
1173 | PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX) | |
1174 | __attribute__warn_unused_result__ | |
1175 | __attribute__pure__; | |
2015d234 | 1176 | #define PERL_ARGS_ASSERT_GET_PPADDR |
e8a67806 | 1177 | |
be879013 KW |
1178 | PERL_CALLCONV SV * Perl_get_prop_definition(pTHX_ const int table_index) |
1179 | __attribute__warn_unused_result__; | |
1180 | #define PERL_ARGS_ASSERT_GET_PROP_DEFINITION | |
1181 | ||
1182 | PERL_CALLCONV const char * const * Perl_get_prop_values(const int table_index) | |
1183 | __attribute__warn_unused_result__; | |
1184 | #define PERL_ARGS_ASSERT_GET_PROP_VALUES | |
1185 | ||
e8a67806 | 1186 | PERL_CALLCONV REGEXP * Perl_get_re_arg(pTHX_ SV *sv); |
2015d234 | 1187 | #define PERL_ARGS_ASSERT_GET_RE_ARG |
6ba07ce1 | 1188 | PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char *name, I32 flags); |
e8a67806 NC |
1189 | #define PERL_ARGS_ASSERT_GET_SV \ |
1190 | assert(name) | |
e8a67806 NC |
1191 | PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id) |
1192 | __attribute__warn_unused_result__; | |
2015d234 | 1193 | #define PERL_ARGS_ASSERT_GET_VTBL |
e8a67806 | 1194 | |
6ba07ce1 | 1195 | PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv); |
e8a67806 NC |
1196 | #define PERL_ARGS_ASSERT_GETCWD_SV \ |
1197 | assert(sv) | |
e8a67806 | 1198 | PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv); |
2015d234 | 1199 | #define PERL_ARGS_ASSERT_GP_FREE |
e8a67806 | 1200 | PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp); |
2015d234 | 1201 | #define PERL_ARGS_ASSERT_GP_REF |
6ba07ce1 | 1202 | PERL_CALLCONV bool Perl_grok_atoUV(const char* pv, UV* valptr, const char** endptr); |
22ff3130 HS |
1203 | #define PERL_ARGS_ASSERT_GROK_ATOUV \ |
1204 | assert(pv); assert(valptr) | |
6ba07ce1 | 1205 | PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1206 | #define PERL_ARGS_ASSERT_GROK_BIN \ |
1207 | assert(start); assert(len_p); assert(flags) | |
c969ff22 | 1208 | PERL_CALLCONV UV Perl_grok_bin_oct_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result, const unsigned shift, const U8 lookup_bit, const char prefix); |
bcfb98ec KW |
1209 | #define PERL_ARGS_ASSERT_GROK_BIN_OCT_HEX \ |
1210 | assert(start); assert(len_p); assert(flags) | |
6ba07ce1 | 1211 | PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1212 | #define PERL_ARGS_ASSERT_GROK_HEX \ |
1213 | assert(start); assert(len_p); assert(flags) | |
6ba07ce1 | 1214 | PERL_CALLCONV int Perl_grok_infnan(pTHX_ const char** sp, const char *send); |
ff4eb398 JH |
1215 | #define PERL_ARGS_ASSERT_GROK_INFNAN \ |
1216 | assert(sp); assert(send) | |
6ba07ce1 | 1217 | PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep); |
e8a67806 NC |
1218 | #define PERL_ARGS_ASSERT_GROK_NUMBER \ |
1219 | assert(pv) | |
6ba07ce1 | 1220 | PERL_CALLCONV int Perl_grok_number_flags(pTHX_ const char *pv, STRLEN len, UV *valuep, U32 flags); |
3f7602fa TC |
1221 | #define PERL_ARGS_ASSERT_GROK_NUMBER_FLAGS \ |
1222 | assert(pv) | |
e8a67806 | 1223 | PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) |
6ba07ce1 | 1224 | __attribute__warn_unused_result__; |
e8a67806 NC |
1225 | #define PERL_ARGS_ASSERT_GROK_NUMERIC_RADIX \ |
1226 | assert(sp); assert(send) | |
1227 | ||
6ba07ce1 | 1228 | PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
e8a67806 NC |
1229 | #define PERL_ARGS_ASSERT_GROK_OCT \ |
1230 | assert(start); assert(len_p); assert(flags) | |
3f1866a8 KW |
1231 | #ifndef NO_MATHOMS |
1232 | PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV *gv); | |
2015d234 | 1233 | #define PERL_ARGS_ASSERT_GV_AVADD |
3f1866a8 KW |
1234 | #endif |
1235 | #ifndef NO_MATHOMS | |
1236 | PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV *gv); | |
2015d234 | 1237 | #define PERL_ARGS_ASSERT_GV_HVADD |
3f1866a8 KW |
1238 | #endif |
1239 | #ifndef NO_MATHOMS | |
1240 | PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv); | |
2015d234 | 1241 | #define PERL_ARGS_ASSERT_GV_IOADD |
3f1866a8 | 1242 | #endif |
13c59d41 | 1243 | PERL_CALLCONV GV* Perl_gv_add_by_type(pTHX_ GV *gv, svtype type); |
2015d234 | 1244 | #define PERL_ARGS_ASSERT_GV_ADD_BY_TYPE |
aa1e761e | 1245 | /* PERL_CALLCONV GV* gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method) |
6ba07ce1 | 1246 | __attribute__warn_unused_result__; */ |
2015d234 | 1247 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD4 |
aa1e761e | 1248 | |
0eeb01b9 | 1249 | PERL_CALLCONV GV* Perl_gv_autoload_pv(pTHX_ HV* stash, const char* namepv, U32 flags) |
6ba07ce1 | 1250 | __attribute__warn_unused_result__; |
0fe84f7c | 1251 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PV \ |
5fba3c91 BF |
1252 | assert(namepv) |
1253 | ||
0eeb01b9 | 1254 | PERL_CALLCONV GV* Perl_gv_autoload_pvn(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags) |
6ba07ce1 | 1255 | __attribute__warn_unused_result__; |
0fe84f7c | 1256 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_PVN \ |
e8a67806 NC |
1257 | assert(name) |
1258 | ||
0eeb01b9 | 1259 | PERL_CALLCONV GV* Perl_gv_autoload_sv(pTHX_ HV* stash, SV* namesv, U32 flags) |
6ba07ce1 | 1260 | __attribute__warn_unused_result__; |
0fe84f7c | 1261 | #define PERL_ARGS_ASSERT_GV_AUTOLOAD_SV \ |
5fba3c91 BF |
1262 | assert(namesv) |
1263 | ||
6ba07ce1 | 1264 | PERL_CALLCONV void Perl_gv_check(pTHX_ HV* stash); |
e8a67806 NC |
1265 | #define PERL_ARGS_ASSERT_GV_CHECK \ |
1266 | assert(stash) | |
e8a67806 | 1267 | PERL_CALLCONV SV* Perl_gv_const_sv(pTHX_ GV* gv) |
6ba07ce1 | 1268 | __attribute__warn_unused_result__; |
e8a67806 NC |
1269 | #define PERL_ARGS_ASSERT_GV_CONST_SV \ |
1270 | assert(gv) | |
1271 | ||
3dc78631 | 1272 | PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv); |
2015d234 | 1273 | #define PERL_ARGS_ASSERT_GV_DUMP |
1545ba5b | 1274 | #ifndef NO_MATHOMS |
57f51a64 KW |
1275 | PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv) |
1276 | __attribute__deprecated__; | |
7918f24d NC |
1277 | #define PERL_ARGS_ASSERT_GV_EFULLNAME \ |
1278 | assert(sv); assert(gv) | |
1545ba5b | 1279 | #endif |
57f51a64 | 1280 | |
3f1866a8 KW |
1281 | #ifndef NO_MATHOMS |
1282 | PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); | |
7918f24d NC |
1283 | #define PERL_ARGS_ASSERT_GV_EFULLNAME3 \ |
1284 | assert(sv); assert(gv) | |
3f1866a8 | 1285 | #endif |
6ba07ce1 | 1286 | PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain); |
7918f24d NC |
1287 | #define PERL_ARGS_ASSERT_GV_EFULLNAME4 \ |
1288 | assert(sv); assert(gv) | |
6ba07ce1 | 1289 | PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name); |
7918f24d NC |
1290 | #define PERL_ARGS_ASSERT_GV_FETCHFILE \ |
1291 | assert(name) | |
6ba07ce1 | 1292 | PERL_CALLCONV GV* Perl_gv_fetchfile_flags(pTHX_ const char *const name, const STRLEN len, const U32 flags); |
7918f24d NC |
1293 | #define PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS \ |
1294 | assert(name) | |
6ba07ce1 | 1295 | /* PERL_CALLCONV GV* gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */ |
2015d234 | 1296 | #define PERL_ARGS_ASSERT_GV_FETCHMETH |
6ba07ce1 | 1297 | /* PERL_CALLCONV GV* gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); */ |
2015d234 | 1298 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_AUTOLOAD |
6ba07ce1 | 1299 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pv(pTHX_ HV* stash, const char* name, I32 level, U32 flags); |
d21989ed | 1300 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV \ |
7918f24d | 1301 | assert(name) |
6ba07ce1 | 1302 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pv_autoload(pTHX_ HV* stash, const char* name, I32 level, U32 flags); |
d21989ed | 1303 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PV_AUTOLOAD \ |
7918f24d | 1304 | assert(name) |
6ba07ce1 | 1305 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pvn(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags); |
e6919483 BF |
1306 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN \ |
1307 | assert(name) | |
6ba07ce1 | 1308 | PERL_CALLCONV GV* Perl_gv_fetchmeth_pvn_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level, U32 flags); |
d21989ed BF |
1309 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_PVN_AUTOLOAD \ |
1310 | assert(name) | |
6ba07ce1 | 1311 | PERL_CALLCONV GV* Perl_gv_fetchmeth_sv(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags); |
e6919483 BF |
1312 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV \ |
1313 | assert(namesv) | |
6ba07ce1 | 1314 | PERL_CALLCONV GV* Perl_gv_fetchmeth_sv_autoload(pTHX_ HV* stash, SV* namesv, I32 level, U32 flags); |
d21989ed BF |
1315 | #define PERL_ARGS_ASSERT_GV_FETCHMETH_SV_AUTOLOAD \ |
1316 | assert(namesv) | |
3f1866a8 KW |
1317 | #ifndef NO_MATHOMS |
1318 | PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name); | |
7918f24d | 1319 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD \ |
eff494dd | 1320 | assert(stash); assert(name) |
3f1866a8 | 1321 | #endif |
6ba07ce1 | 1322 | PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload); |
7918f24d | 1323 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD \ |
eff494dd | 1324 | assert(stash); assert(name) |
6ba07ce1 | 1325 | PERL_CALLCONV GV* Perl_gv_fetchmethod_pv_flags(pTHX_ HV* stash, const char* name, U32 flags); |
44130a26 | 1326 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PV_FLAGS \ |
eff494dd | 1327 | assert(stash); assert(name) |
6ba07ce1 | 1328 | PERL_CALLCONV GV* Perl_gv_fetchmethod_pvn_flags(pTHX_ HV* stash, const char* name, const STRLEN len, U32 flags); |
44130a26 BF |
1329 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_PVN_FLAGS \ |
1330 | assert(stash); assert(name) | |
6ba07ce1 | 1331 | PERL_CALLCONV GV* Perl_gv_fetchmethod_sv_flags(pTHX_ HV* stash, SV* namesv, U32 flags); |
44130a26 BF |
1332 | #define PERL_ARGS_ASSERT_GV_FETCHMETHOD_SV_FLAGS \ |
1333 | assert(stash); assert(namesv) | |
3752a9fe | 1334 | PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 flags, const svtype sv_type); |
7918f24d NC |
1335 | #define PERL_ARGS_ASSERT_GV_FETCHPV \ |
1336 | assert(nambeg) | |
6ba07ce1 | 1337 | PERL_CALLCONV GV* Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, const svtype sv_type); |
e8a67806 NC |
1338 | #define PERL_ARGS_ASSERT_GV_FETCHPVN_FLAGS \ |
1339 | assert(name) | |
6ba07ce1 | 1340 | PERL_CALLCONV GV* Perl_gv_fetchsv(pTHX_ SV *name, I32 flags, const svtype sv_type); |
e8a67806 NC |
1341 | #define PERL_ARGS_ASSERT_GV_FETCHSV \ |
1342 | assert(name) | |
1545ba5b | 1343 | #ifndef NO_MATHOMS |
57f51a64 KW |
1344 | PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv) |
1345 | __attribute__deprecated__; | |
7918f24d NC |
1346 | #define PERL_ARGS_ASSERT_GV_FULLNAME \ |
1347 | assert(sv); assert(gv) | |
1545ba5b | 1348 | #endif |
57f51a64 | 1349 | |
3f1866a8 KW |
1350 | #ifndef NO_MATHOMS |
1351 | PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); | |
7918f24d NC |
1352 | #define PERL_ARGS_ASSERT_GV_FULLNAME3 \ |
1353 | assert(sv); assert(gv) | |
3f1866a8 | 1354 | #endif |
6ba07ce1 | 1355 | PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain); |
7918f24d NC |
1356 | #define PERL_ARGS_ASSERT_GV_FULLNAME4 \ |
1357 | assert(sv); assert(gv) | |
e8a67806 NC |
1358 | PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id) |
1359 | __attribute__warn_unused_result__; | |
2015d234 | 1360 | #define PERL_ARGS_ASSERT_GV_HANDLER |
803f2748 | 1361 | |
6ba07ce1 | 1362 | /* PERL_CALLCONV void gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi); */ |
2015d234 | 1363 | #define PERL_ARGS_ASSERT_GV_INIT |
6ba07ce1 | 1364 | PERL_CALLCONV void Perl_gv_init_pv(pTHX_ GV* gv, HV* stash, const char* name, U32 flags); |
e6066781 | 1365 | #define PERL_ARGS_ASSERT_GV_INIT_PV \ |
7918f24d | 1366 | assert(gv); assert(name) |
6ba07ce1 | 1367 | PERL_CALLCONV void Perl_gv_init_pvn(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, U32 flags); |
e6066781 BF |
1368 | #define PERL_ARGS_ASSERT_GV_INIT_PVN \ |
1369 | assert(gv); assert(name) | |
6ba07ce1 | 1370 | PERL_CALLCONV void Perl_gv_init_sv(pTHX_ GV* gv, HV* stash, SV* namesv, U32 flags); |
e6066781 BF |
1371 | #define PERL_ARGS_ASSERT_GV_INIT_SV \ |
1372 | assert(gv); assert(namesv) | |
6ba07ce1 | 1373 | PERL_CALLCONV void Perl_gv_name_set(pTHX_ GV* gv, const char *name, U32 len, U32 flags); |
7918f24d NC |
1374 | #define PERL_ARGS_ASSERT_GV_NAME_SET \ |
1375 | assert(gv); assert(name) | |
6ba07ce1 | 1376 | PERL_CALLCONV GV * Perl_gv_override(pTHX_ const char * const name, const STRLEN len); |
9e3fb20c FC |
1377 | #define PERL_ARGS_ASSERT_GV_OVERRIDE \ |
1378 | assert(name) | |
37ee558d | 1379 | PERL_CALLCONV void Perl_gv_setref(pTHX_ SV *const dsv, SV *const ssv); |
d8a875d9 | 1380 | #define PERL_ARGS_ASSERT_GV_SETREF \ |
37ee558d | 1381 | assert(dsv); assert(ssv) |
6ba07ce1 | 1382 | PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 flags); |
7918f24d NC |
1383 | #define PERL_ARGS_ASSERT_GV_STASHPV \ |
1384 | assert(name) | |
6ba07ce1 | 1385 | PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 flags); |
7918f24d NC |
1386 | #define PERL_ARGS_ASSERT_GV_STASHPVN \ |
1387 | assert(name) | |
6ba07ce1 | 1388 | PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 flags); |
7918f24d NC |
1389 | #define PERL_ARGS_ASSERT_GV_STASHSV \ |
1390 | assert(sv) | |
6ba07ce1 | 1391 | PERL_CALLCONV void Perl_gv_try_downgrade(pTHX_ GV* gv); |
e8a67806 NC |
1392 | #define PERL_ARGS_ASSERT_GV_TRY_DOWNGRADE \ |
1393 | assert(gv) | |
6ba07ce1 | 1394 | PERL_CALLCONV AV** Perl_hv_backreferences_p(pTHX_ HV *hv); |
e8a67806 NC |
1395 | #define PERL_ARGS_ASSERT_HV_BACKREFERENCES_P \ |
1396 | assert(hv) | |
8bf4c401 | 1397 | PERL_CALLCONV SV* Perl_hv_bucket_ratio(pTHX_ HV *hv) |
8bf4c401 YO |
1398 | __attribute__warn_unused_result__; |
1399 | #define PERL_ARGS_ASSERT_HV_BUCKET_RATIO \ | |
1400 | assert(hv) | |
1401 | ||
4048f010 | 1402 | PERL_CALLCONV void Perl_hv_clear(pTHX_ HV *hv); |
2015d234 | 1403 | #define PERL_ARGS_ASSERT_HV_CLEAR |
6ba07ce1 | 1404 | PERL_CALLCONV void Perl_hv_clear_placeholders(pTHX_ HV *hv); |
e8a67806 NC |
1405 | #define PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS \ |
1406 | assert(hv) | |
e8a67806 | 1407 | PERL_CALLCONV void* Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char* key, STRLEN klen, int flags, int action, SV *val, U32 hash); |
2015d234 | 1408 | #define PERL_ARGS_ASSERT_HV_COMMON |
6ba07ce1 | 1409 | 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); |
e8a67806 NC |
1410 | #define PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN \ |
1411 | assert(key) | |
defdfed5 Z |
1412 | PERL_CALLCONV HV * Perl_hv_copy_hints_hv(pTHX_ HV *const ohv) |
1413 | __attribute__warn_unused_result__; | |
2015d234 | 1414 | #define PERL_ARGS_ASSERT_HV_COPY_HINTS_HV |
defdfed5 | 1415 | |
6ba07ce1 | 1416 | PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV *hv, HE *entry); |
7918f24d NC |
1417 | #define PERL_ARGS_ASSERT_HV_DELAYFREE_ENT \ |
1418 | assert(hv) | |
3f1866a8 KW |
1419 | #ifndef NO_MATHOMS |
1420 | PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen, I32 flags); | |
7918f24d NC |
1421 | #define PERL_ARGS_ASSERT_HV_DELETE \ |
1422 | assert(key) | |
3f1866a8 KW |
1423 | #endif |
1424 | #ifndef NO_MATHOMS | |
1425 | PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash); | |
7918f24d NC |
1426 | #define PERL_ARGS_ASSERT_HV_DELETE_ENT \ |
1427 | assert(keysv) | |
3f1866a8 | 1428 | #endif |
e8a67806 | 1429 | PERL_CALLCONV HE** Perl_hv_eiter_p(pTHX_ HV *hv) |
6ba07ce1 | 1430 | __attribute__warn_unused_result__; |
e8a67806 NC |
1431 | #define PERL_ARGS_ASSERT_HV_EITER_P \ |
1432 | assert(hv) | |
1433 | ||
6ba07ce1 | 1434 | PERL_CALLCONV void Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter); |
e8a67806 NC |
1435 | #define PERL_ARGS_ASSERT_HV_EITER_SET \ |
1436 | assert(hv) | |
6ba07ce1 | 1437 | PERL_CALLCONV void Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
78b79c77 FC |
1438 | #define PERL_ARGS_ASSERT_HV_ENAME_ADD \ |
1439 | assert(hv); assert(name) | |
6ba07ce1 | 1440 | PERL_CALLCONV void Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
78b79c77 FC |
1441 | #define PERL_ARGS_ASSERT_HV_ENAME_DELETE \ |
1442 | assert(hv); assert(name) | |
3f1866a8 KW |
1443 | #ifndef NO_MATHOMS |
1444 | PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen) | |
1445 | __attribute__warn_unused_result__; | |
7918f24d NC |
1446 | #define PERL_ARGS_ASSERT_HV_EXISTS \ |
1447 | assert(key) | |
3f1866a8 | 1448 | #endif |
901017d6 | 1449 | |
3f1866a8 KW |
1450 | #ifndef NO_MATHOMS |
1451 | PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash) | |
1452 | __attribute__warn_unused_result__; | |
7918f24d NC |
1453 | #define PERL_ARGS_ASSERT_HV_EXISTS_ENT \ |
1454 | assert(keysv) | |
3f1866a8 | 1455 | #endif |
aa924a5a | 1456 | |
3f1866a8 KW |
1457 | #ifndef NO_MATHOMS |
1458 | PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen, I32 lval); | |
7918f24d NC |
1459 | #define PERL_ARGS_ASSERT_HV_FETCH \ |
1460 | assert(key) | |
3f1866a8 KW |
1461 | #endif |
1462 | #ifndef NO_MATHOMS | |
1463 | PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash); | |
7918f24d NC |
1464 | #define PERL_ARGS_ASSERT_HV_FETCH_ENT \ |
1465 | assert(keysv) | |
3f1866a8 | 1466 | #endif |
6ba07ce1 | 1467 | PERL_CALLCONV STRLEN Perl_hv_fill(pTHX_ HV *const hv); |
4d0fbddd NC |
1468 | #define PERL_ARGS_ASSERT_HV_FILL \ |
1469 | assert(hv) | |
6ba07ce1 | 1470 | PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV *hv, HE *entry); |
7918f24d NC |
1471 | #define PERL_ARGS_ASSERT_HV_FREE_ENT \ |
1472 | assert(hv) | |
6ba07ce1 | 1473 | PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV *hv); |
7918f24d NC |
1474 | #define PERL_ARGS_ASSERT_HV_ITERINIT \ |
1475 | assert(hv) | |
a3b680e6 | 1476 | PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen) |
6ba07ce1 | 1477 | __attribute__warn_unused_result__; |
7918f24d NC |
1478 | #define PERL_ARGS_ASSERT_HV_ITERKEY \ |
1479 | assert(entry); assert(retlen) | |
a3b680e6 AL |
1480 | |
1481 | PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry) | |
6ba07ce1 | 1482 | __attribute__warn_unused_result__; |
7918f24d NC |
1483 | #define PERL_ARGS_ASSERT_HV_ITERKEYSV \ |
1484 | assert(entry) | |
a3b680e6 | 1485 | |
3f1866a8 KW |
1486 | #ifndef NO_MATHOMS |
1487 | PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV *hv) | |
1488 | __attribute__warn_unused_result__; | |
7918f24d NC |
1489 | #define PERL_ARGS_ASSERT_HV_ITERNEXT \ |
1490 | assert(hv) | |
3f1866a8 | 1491 | #endif |
a3b680e6 | 1492 | |
e8a67806 | 1493 | PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags) |
6ba07ce1 | 1494 | __attribute__warn_unused_result__; |
e8a67806 NC |
1495 | #define PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS \ |
1496 | assert(hv) | |
1497 | ||
4048f010 | 1498 | PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen) |
6ba07ce1 | 1499 | __attribute__warn_unused_result__; |
7918f24d NC |
1500 | #define PERL_ARGS_ASSERT_HV_ITERNEXTSV \ |
1501 | assert(hv); assert(key); assert(retlen) | |
a3b680e6 | 1502 | |
4048f010 | 1503 | PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV *hv, HE *entry) |
6ba07ce1 | 1504 | __attribute__warn_unused_result__; |
7918f24d NC |
1505 | #define PERL_ARGS_ASSERT_HV_ITERVAL \ |
1506 | assert(hv); assert(entry) | |
a3b680e6 | 1507 | |
6ba07ce1 | 1508 | PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV *hv, IV newmax); |
7918f24d NC |
1509 | #define PERL_ARGS_ASSERT_HV_KSPLIT \ |
1510 | assert(hv) | |
3f1866a8 KW |
1511 | #ifndef NO_MATHOMS |
1512 | PERL_CALLCONV void Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how); | |
7918f24d NC |
1513 | #define PERL_ARGS_ASSERT_HV_MAGIC \ |
1514 | assert(hv) | |
3f1866a8 | 1515 | #endif |
6ba07ce1 | 1516 | PERL_CALLCONV void Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags); |
e8a67806 NC |
1517 | #define PERL_ARGS_ASSERT_HV_NAME_SET \ |
1518 | assert(hv) | |
e8a67806 | 1519 | PERL_CALLCONV I32 Perl_hv_placeholders_get(pTHX_ const HV *hv) |
6ba07ce1 | 1520 | __attribute__warn_unused_result__; |
e8a67806 NC |
1521 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET \ |
1522 | assert(hv) | |
1523 | ||
6174b39a | 1524 | PERL_CALLCONV SSize_t* Perl_hv_placeholders_p(pTHX_ HV *hv) |
6ba07ce1 | 1525 | __attribute__warn_unused_result__; |
e8a67806 NC |
1526 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P \ |
1527 | assert(hv) | |
1528 | ||
6ba07ce1 | 1529 | PERL_CALLCONV void Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph); |
e8a67806 NC |
1530 | #define PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET \ |
1531 | assert(hv) | |
8dc9003f | 1532 | PERL_CALLCONV void Perl_hv_pushkv(pTHX_ HV *hv, U32 flags); |
af3b1cba DM |
1533 | #define PERL_ARGS_ASSERT_HV_PUSHKV \ |
1534 | assert(hv) | |
6ba07ce1 | 1535 | PERL_CALLCONV void Perl_hv_rand_set(pTHX_ HV *hv, U32 new_xhv_rand); |
6a5b4183 YO |
1536 | #define PERL_ARGS_ASSERT_HV_RAND_SET \ |
1537 | assert(hv) | |
e8a67806 | 1538 | PERL_CALLCONV I32* Perl_hv_riter_p(pTHX_ HV *hv) |
6ba07ce1 | 1539 | __attribute__warn_unused_result__; |
e8a67806 NC |
1540 | #define PERL_ARGS_ASSERT_HV_RITER_P \ |
1541 | assert(hv) | |
1542 | ||
6ba07ce1 | 1543 | PERL_CALLCONV void Perl_hv_riter_set(pTHX_ HV *hv, I32 riter); |
e8a67806 NC |
1544 | #define PERL_ARGS_ASSERT_HV_RITER_SET \ |
1545 | assert(hv) | |
e8a67806 | 1546 | PERL_CALLCONV SV* Perl_hv_scalar(pTHX_ HV *hv) |
6ba07ce1 | 1547 | __attribute__warn_unused_result__; |
e8a67806 NC |
1548 | #define PERL_ARGS_ASSERT_HV_SCALAR \ |
1549 | assert(hv) | |
012da8e5 | 1550 | |
3f1866a8 KW |
1551 | #ifndef NO_MATHOMS |
1552 | PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash); | |
2015d234 | 1553 | #define PERL_ARGS_ASSERT_HV_STORE |
3f1866a8 KW |
1554 | #endif |
1555 | #ifndef NO_MATHOMS | |
1556 | PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV *hv, SV *key, SV *val, U32 hash); | |
2015d234 | 1557 | #define PERL_ARGS_ASSERT_HV_STORE_ENT |
3f1866a8 KW |
1558 | #endif |
1559 | #ifndef NO_MATHOMS | |
1560 | PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash, int flags); | |
2015d234 | 1561 | #define PERL_ARGS_ASSERT_HV_STORE_FLAGS |
3f1866a8 | 1562 | #endif |
8581adba | 1563 | /* PERL_CALLCONV void hv_undef(pTHX_ HV *hv); */ |
2015d234 | 1564 | #define PERL_ARGS_ASSERT_HV_UNDEF |
8581adba | 1565 | PERL_CALLCONV void Perl_hv_undef_flags(pTHX_ HV *hv, U32 flags); |
2015d234 | 1566 | #define PERL_ARGS_ASSERT_HV_UNDEF_FLAGS |
ca0c6e8c KW |
1567 | /* PERL_CALLCONV I32 ibcmp(pTHX_ const char* a, const char* b, I32 len) |
1568 | __attribute__warn_unused_result__ | |
1569 | __attribute__pure__; */ | |
2015d234 | 1570 | #define PERL_ARGS_ASSERT_IBCMP |
ca0c6e8c KW |
1571 | |
1572 | /* PERL_CALLCONV I32 ibcmp_locale(pTHX_ const char* a, const char* b, I32 len) | |
1573 | __attribute__warn_unused_result__ | |
1574 | __attribute__pure__; */ | |
2015d234 | 1575 | #define PERL_ARGS_ASSERT_IBCMP_LOCALE |
ca0c6e8c | 1576 | |
6ba07ce1 | 1577 | /* PERL_CALLCONV I32 ibcmp_utf8(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2); */ |
2015d234 | 1578 | #define PERL_ARGS_ASSERT_IBCMP_UTF8 |
6ba07ce1 | 1579 | PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv); |
7918f24d NC |
1580 | #define PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS \ |
1581 | assert(argv) | |
0d96b528 | 1582 | PERL_CALLCONV void Perl_init_constants(pTHX); |
2015d234 | 1583 | #define PERL_ARGS_ASSERT_INIT_CONSTANTS |
8af6f985 | 1584 | PERL_CALLCONV void Perl_init_dbargs(pTHX); |
2015d234 | 1585 | #define PERL_ARGS_ASSERT_INIT_DBARGS |
1d7c1841 | 1586 | PERL_CALLCONV void Perl_init_debugger(pTHX); |
2015d234 | 1587 | #define PERL_ARGS_ASSERT_INIT_DEBUGGER |
e8a67806 | 1588 | PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |
2015d234 | 1589 | #define PERL_ARGS_ASSERT_INIT_I18NL10N |
1545ba5b | 1590 | #ifndef NO_MATHOMS |
57f51a64 KW |
1591 | PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn) |
1592 | __attribute__deprecated__; | |
2015d234 | 1593 | #define PERL_ARGS_ASSERT_INIT_I18NL14N |
1545ba5b | 1594 | #endif |
57f51a64 | 1595 | |
50333c97 DM |
1596 | PERL_CALLCONV void Perl_init_named_cv(pTHX_ CV *cv, OP *nameop); |
1597 | #define PERL_ARGS_ASSERT_INIT_NAMED_CV \ | |
1598 | assert(cv); assert(nameop) | |
1d7c1841 | 1599 | PERL_CALLCONV void Perl_init_stacks(pTHX); |
2015d234 | 1600 | #define PERL_ARGS_ASSERT_INIT_STACKS |
6ba07ce1 | 1601 | PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm); |
7918f24d NC |
1602 | #define PERL_ARGS_ASSERT_INIT_TM \ |
1603 | assert(ptm) | |
95e064d9 | 1604 | PERL_CALLCONV void Perl_init_uniprops(pTHX); |
2015d234 | 1605 | #define PERL_ARGS_ASSERT_INIT_UNIPROPS |
3f1866a8 KW |
1606 | #ifndef NO_MATHOMS |
1607 | PERL_CALLCONV char* Perl_instr(const char* big, const char* little) | |
b464bac0 | 1608 | __attribute__warn_unused_result__ |
3f1866a8 | 1609 | __attribute__pure__; |
7918f24d NC |
1610 | #define PERL_ARGS_ASSERT_INSTR \ |
1611 | assert(big); assert(little) | |
3f1866a8 | 1612 | #endif |
f54cb97a | 1613 | |
e8a67806 | 1614 | PERL_CALLCONV U32 Perl_intro_my(pTHX); |
2015d234 | 1615 | #define PERL_ARGS_ASSERT_INTRO_MY |
e8a67806 NC |
1616 | PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd) |
1617 | __attribute__warn_unused_result__; | |
2015d234 | 1618 | #define PERL_ARGS_ASSERT_INVERT |
e8a67806 | 1619 | |
58a0d047 KW |
1620 | PERL_CALLCONV void Perl_invmap_dump(pTHX_ SV* invlist, UV * map); |
1621 | #define PERL_ARGS_ASSERT_INVMAP_DUMP \ | |
1622 | assert(invlist); assert(map) | |
6ba07ce1 | 1623 | PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, GV *gv, bool not_implicit, bool warn_on_fail); |
7918f24d NC |
1624 | #define PERL_ARGS_ASSERT_IO_CLOSE \ |
1625 | assert(io) | |
8ed185f9 | 1626 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1627 | PERL_STATIC_INLINE Size_t Perl_isC9_STRICT_UTF8_CHAR(const U8 * const s0, const U8 * const e) |
c5bfbb64 KW |
1628 | __attribute__warn_unused_result__; |
1629 | #define PERL_ARGS_ASSERT_ISC9_STRICT_UTF8_CHAR \ | |
1630 | assert(s0); assert(e) | |
1631 | #endif | |
1632 | ||
1633 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1634 | PERL_STATIC_INLINE Size_t Perl_isSTRICT_UTF8_CHAR(const U8 * const s0, const U8 * const e) |
67049a5f KW |
1635 | __attribute__warn_unused_result__; |
1636 | #define PERL_ARGS_ASSERT_ISSTRICT_UTF8_CHAR \ | |
1637 | assert(s0); assert(e) | |
1638 | #endif | |
1639 | ||
1640 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1641 | PERL_STATIC_INLINE Size_t Perl_isUTF8_CHAR(const U8 * const s0, const U8 * const e) |
8ed185f9 KW |
1642 | __attribute__warn_unused_result__; |
1643 | #define PERL_ARGS_ASSERT_ISUTF8_CHAR \ | |
1644 | assert(s0); assert(e) | |
1645 | #endif | |
1646 | ||
ef9e3b4d | 1647 | /* PERL_CALLCONV bool is_ascii_string(const U8* const s, STRLEN len) |
a4c56e8a KW |
1648 | __attribute__warn_unused_result__ |
1649 | __attribute__pure__; */ | |
2015d234 | 1650 | #define PERL_ARGS_ASSERT_IS_ASCII_STRING |
7bbfa158 | 1651 | |
ef9e3b4d | 1652 | /* PERL_CALLCONV bool is_c9strict_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1653 | __attribute__warn_unused_result__; */ |
2015d234 | 1654 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING |
9f2abfde | 1655 | |
33756530 | 1656 | /* PERL_CALLCONV bool is_c9strict_utf8_string_loc(const U8 *s, STRLEN len, const U8 **ep); */ |
2015d234 | 1657 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING_LOC |
a5d565cd | 1658 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1659 | PERL_STATIC_INLINE bool Perl_is_c9strict_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
9f2abfde KW |
1660 | #define PERL_ARGS_ASSERT_IS_C9STRICT_UTF8_STRING_LOCLEN \ |
1661 | assert(s) | |
a5d565cd | 1662 | #endif |
ef9e3b4d | 1663 | /* PERL_CALLCONV bool is_invariant_string(const U8* const s, STRLEN len) |
a4c56e8a KW |
1664 | __attribute__warn_unused_result__ |
1665 | __attribute__pure__; */ | |
2015d234 | 1666 | #define PERL_ARGS_ASSERT_IS_INVARIANT_STRING |
f54cb97a | 1667 | |
e8a67806 NC |
1668 | PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX) |
1669 | __attribute__warn_unused_result__; | |
2015d234 | 1670 | #define PERL_ARGS_ASSERT_IS_LVALUE_SUB |
f54cb97a | 1671 | |
a5d565cd | 1672 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1673 | PERL_STATIC_INLINE bool Perl_is_safe_syscall(pTHX_ const char *pv, STRLEN len, const char *what, const char *op_name) |
a5d565cd JH |
1674 | __attribute__warn_unused_result__; |
1675 | #define PERL_ARGS_ASSERT_IS_SAFE_SYSCALL \ | |
1676 | assert(pv); assert(what); assert(op_name) | |
1677 | #endif | |
1678 | ||
ef9e3b4d | 1679 | /* PERL_CALLCONV bool is_strict_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1680 | __attribute__warn_unused_result__; */ |
2015d234 | 1681 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING |
9f2abfde | 1682 | |
33756530 | 1683 | /* PERL_CALLCONV bool is_strict_utf8_string_loc(const U8 *s, STRLEN len, const U8 **ep); */ |
2015d234 | 1684 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING_LOC |
a5d565cd | 1685 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1686 | PERL_STATIC_INLINE bool Perl_is_strict_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
9f2abfde KW |
1687 | #define PERL_ARGS_ASSERT_IS_STRICT_UTF8_STRING_LOCLEN \ |
1688 | assert(s) | |
a5d565cd | 1689 | #endif |
1545ba5b | 1690 | #ifndef NO_MATHOMS |
e8a67806 | 1691 | PERL_CALLCONV STRLEN Perl_is_utf8_char(const U8 *s) |
6ba07ce1 | 1692 | __attribute__deprecated__; |
e8a67806 NC |
1693 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR \ |
1694 | assert(s) | |
1545ba5b | 1695 | #endif |
e8a67806 | 1696 | |
3f1866a8 KW |
1697 | #ifndef NO_MATHOMS |
1698 | PERL_CALLCONV STRLEN Perl_is_utf8_char_buf(const U8 *buf, const U8 *buf_end); | |
492a624f KW |
1699 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF \ |
1700 | assert(buf); assert(buf_end) | |
3f1866a8 | 1701 | #endif |
1376b35c KW |
1702 | PERL_CALLCONV STRLEN Perl_is_utf8_char_helper(const U8 * const s, const U8 * e, const U32 flags) |
1703 | __attribute__warn_unused_result__ | |
1704 | __attribute__pure__; | |
1705 | #define PERL_ARGS_ASSERT_IS_UTF8_CHAR_HELPER \ | |
1706 | assert(s); assert(e) | |
1707 | ||
33756530 | 1708 | /* PERL_CALLCONV bool is_utf8_fixed_width_buf_flags(const U8 * const s, STRLEN len, const U32 flags); */ |
2015d234 | 1709 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_FLAGS |
33756530 | 1710 | /* PERL_CALLCONV bool is_utf8_fixed_width_buf_loc_flags(const U8 * const s, STRLEN len, const U8 **ep, const U32 flags); */ |
2015d234 | 1711 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_LOC_FLAGS |
a5d565cd | 1712 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1713 | PERL_STATIC_INLINE bool Perl_is_utf8_fixed_width_buf_loclen_flags(const U8 * const s, STRLEN len, const U8 **ep, STRLEN *el, const U32 flags); |
8bc127bf KW |
1714 | #define PERL_ARGS_ASSERT_IS_UTF8_FIXED_WIDTH_BUF_LOCLEN_FLAGS \ |
1715 | assert(s) | |
a5d565cd | 1716 | #endif |
e17544a6 | 1717 | /* PERL_CALLCONV bool is_utf8_invariant_string(const U8* const s, STRLEN len) |
0cbf5865 | 1718 | __attribute__warn_unused_result__; */ |
2015d234 | 1719 | #define PERL_ARGS_ASSERT_IS_UTF8_INVARIANT_STRING |
0cbf5865 | 1720 | |
a5d565cd | 1721 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1722 | PERL_STATIC_INLINE bool Perl_is_utf8_invariant_string_loc(const U8* const s, STRLEN len, const U8 ** ep) |
cfe24c19 | 1723 | __attribute__warn_unused_result__; |
0cbf5865 | 1724 | #define PERL_ARGS_ASSERT_IS_UTF8_INVARIANT_STRING_LOC \ |
8871a094 | 1725 | assert(s) |
a5d565cd | 1726 | #endif |
8871a094 | 1727 | |
ef9e3b4d | 1728 | /* PERL_CALLCONV bool is_utf8_string(const U8 *s, STRLEN len) |
dd237e82 | 1729 | __attribute__warn_unused_result__; */ |
2015d234 | 1730 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING |
35936d22 | 1731 | |
a5d565cd | 1732 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1733 | PERL_STATIC_INLINE bool Perl_is_utf8_string_flags(const U8 *s, STRLEN len, const U32 flags) |
cfe24c19 | 1734 | __attribute__warn_unused_result__; |
9f2abfde KW |
1735 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_FLAGS \ |
1736 | assert(s) | |
a5d565cd | 1737 | #endif |
9f2abfde | 1738 | |
3f1866a8 | 1739 | #ifndef NO_MATHOMS |
8d1c5bf7 | 1740 | PERL_CALLCONV bool Perl_is_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep); |
e8a67806 | 1741 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC \ |
55c5b58b | 1742 | assert(s); assert(ep) |
3f1866a8 | 1743 | #endif |
f60f61fd | 1744 | /* PERL_CALLCONV bool is_utf8_string_loc_flags(const U8 *s, STRLEN len, const U8 **ep, const U32 flags); */ |
2015d234 | 1745 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC_FLAGS |
a5d565cd | 1746 | #ifndef PERL_NO_INLINE_FUNCTIONS |
f60f61fd | 1747 | PERL_STATIC_INLINE bool Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el); |
e8a67806 NC |
1748 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN \ |
1749 | assert(s) | |
a5d565cd JH |
1750 | #endif |
1751 | #ifndef PERL_NO_INLINE_FUNCTIONS | |
c9182d9c | 1752 | PERL_STATIC_INLINE bool Perl_is_utf8_string_loclen_flags(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el, const U32 flags); |
9f2abfde KW |
1753 | #define PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN_FLAGS \ |
1754 | assert(s) | |
a5d565cd | 1755 | #endif |
f1c999a7 | 1756 | /* PERL_CALLCONV bool is_utf8_valid_partial_char(const U8 * const s, const U8 * const e) |
b289a0bd | 1757 | __attribute__warn_unused_result__ |
f1c999a7 | 1758 | __attribute__pure__; */ |
2015d234 | 1759 | #define PERL_ARGS_ASSERT_IS_UTF8_VALID_PARTIAL_CHAR |
f1c999a7 | 1760 | |
a5d565cd | 1761 | #ifndef PERL_NO_INLINE_FUNCTIONS |
c9182d9c | 1762 | PERL_STATIC_INLINE bool Perl_is_utf8_valid_partial_char_flags(const U8 * const s, const U8 * const e, const U32 flags) |
cfe24c19 | 1763 | __attribute__warn_unused_result__; |
f1c999a7 | 1764 | #define PERL_ARGS_ASSERT_IS_UTF8_VALID_PARTIAL_CHAR_FLAGS \ |
4dab108f | 1765 | assert(s); assert(e) |
a5d565cd | 1766 | #endif |
4dab108f | 1767 | |
ca0c6e8c KW |
1768 | PERL_CALLCONV bool Perl_isinfnan(NV nv) |
1769 | __attribute__warn_unused_result__ | |
1770 | __attribute__pure__; | |
2015d234 | 1771 | #define PERL_ARGS_ASSERT_ISINFNAN |
ca0c6e8c | 1772 | |
6ba07ce1 | 1773 | PERL_CALLCONV bool Perl_isinfnansv(pTHX_ SV *sv); |
354b74ae FC |
1774 | #define PERL_ARGS_ASSERT_ISINFNANSV \ |
1775 | assert(sv) | |
6ba07ce1 | 1776 | PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP *o); |
7918f24d NC |
1777 | #define PERL_ARGS_ASSERT_JMAYBE \ |
1778 | assert(o) | |
4048f010 | 1779 | PERL_CALLCONV I32 Perl_keyword(pTHX_ const char *name, I32 len, bool all_keywords) |
b289a0bd | 1780 | __attribute__warn_unused_result__ |
6ba07ce1 | 1781 | __attribute__pure__; |
7918f24d NC |
1782 | #define PERL_ARGS_ASSERT_KEYWORD \ |
1783 | assert(name) | |
f54cb97a | 1784 | |
6ba07ce1 | 1785 | PERL_CALLCONV int Perl_keyword_plugin_standard(pTHX_ char* keyword_ptr, STRLEN keyword_len, OP** op_ptr); |
e8a67806 NC |
1786 | #define PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD \ |
1787 | assert(keyword_ptr); assert(op_ptr) | |
1c23e2bd | 1788 | PERL_CALLCONV void Perl_leave_adjust_stacks(pTHX_ SV **from_sp, SV **to_sp, U8 gimme, int filter); |
799da9d7 | 1789 | #define PERL_ARGS_ASSERT_LEAVE_ADJUST_STACKS \ |
e02ce34b | 1790 | assert(from_sp); assert(to_sp) |
e8a67806 | 1791 | PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base); |
2015d234 | 1792 | #define PERL_ARGS_ASSERT_LEAVE_SCOPE |
e8a67806 | 1793 | PERL_CALLCONV bool Perl_lex_bufutf8(pTHX); |
2015d234 | 1794 | #define PERL_ARGS_ASSERT_LEX_BUFUTF8 |
6ba07ce1 | 1795 | PERL_CALLCONV void Perl_lex_discard_to(pTHX_ char* ptr); |
e8a67806 NC |
1796 | #define PERL_ARGS_ASSERT_LEX_DISCARD_TO \ |
1797 | assert(ptr) | |
f0e67a1d | 1798 | PERL_CALLCONV char* Perl_lex_grow_linestr(pTHX_ STRLEN len); |
2015d234 | 1799 | #define PERL_ARGS_ASSERT_LEX_GROW_LINESTR |
e8a67806 | 1800 | PERL_CALLCONV bool Perl_lex_next_chunk(pTHX_ U32 flags); |
2015d234 | 1801 | #define PERL_ARGS_ASSERT_LEX_NEXT_CHUNK |
e8a67806 | 1802 | PERL_CALLCONV I32 Perl_lex_peek_unichar(pTHX_ U32 flags); |
2015d234 | 1803 | #define PERL_ARGS_ASSERT_LEX_PEEK_UNICHAR |
e8a67806 | 1804 | PERL_CALLCONV void Perl_lex_read_space(pTHX_ U32 flags); |
2015d234 | 1805 | #define PERL_ARGS_ASSERT_LEX_READ_SPACE |
6ba07ce1 | 1806 | PERL_CALLCONV void Perl_lex_read_to(pTHX_ char* ptr); |
e8a67806 NC |
1807 | #define PERL_ARGS_ASSERT_LEX_READ_TO \ |
1808 | assert(ptr) | |
e8a67806 | 1809 | PERL_CALLCONV I32 Perl_lex_read_unichar(pTHX_ U32 flags); |
2015d234 | 1810 | #define PERL_ARGS_ASSERT_LEX_READ_UNICHAR |
8eaa0acf | 1811 | PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp, U32 flags); |
2015d234 | 1812 | #define PERL_ARGS_ASSERT_LEX_START |
6ba07ce1 | 1813 | PERL_CALLCONV void Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags); |
9dcc53ea Z |
1814 | #define PERL_ARGS_ASSERT_LEX_STUFF_PV \ |
1815 | assert(pv) | |
6ba07ce1 | 1816 | PERL_CALLCONV void Perl_lex_stuff_pvn(pTHX_ const char* pv, STRLEN len, U32 flags); |
e8a67806 NC |
1817 | #define PERL_ARGS_ASSERT_LEX_STUFF_PVN \ |
1818 | assert(pv) | |
6ba07ce1 | 1819 | PERL_CALLCONV void Perl_lex_stuff_sv(pTHX_ SV* sv, U32 flags); |
f0e67a1d Z |
1820 | #define PERL_ARGS_ASSERT_LEX_STUFF_SV \ |
1821 | assert(sv) | |
6ba07ce1 | 1822 | PERL_CALLCONV void Perl_lex_unstuff(pTHX_ char* ptr); |
f0e67a1d Z |
1823 | #define PERL_ARGS_ASSERT_LEX_UNSTUFF \ |
1824 | assert(ptr) | |
1d7c1841 | 1825 | PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); |
2015d234 | 1826 | #define PERL_ARGS_ASSERT_LIST |
4e8ee35f KW |
1827 | PERL_CALLCONV HV* Perl_load_charnames(pTHX_ SV * char_name, const char * context, const STRLEN context_len, const char ** error_msg) |
1828 | __attribute__warn_unused_result__; | |
1829 | #define PERL_ARGS_ASSERT_LOAD_CHARNAMES \ | |
1830 | assert(char_name); assert(context); assert(error_msg) | |
1831 | ||
6ba07ce1 | 1832 | PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...); |
7918f24d NC |
1833 | #define PERL_ARGS_ASSERT_LOAD_MODULE \ |
1834 | assert(name) | |
6ba07ce1 | 1835 | PERL_CALLCONV OP* Perl_localize(pTHX_ OP *o, I32 lex); |
7918f24d NC |
1836 | #define PERL_ARGS_ASSERT_LOCALIZE \ |
1837 | assert(o) | |
aad570aa | 1838 | PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV *const sv) |
6ba07ce1 | 1839 | __attribute__warn_unused_result__; |
7918f24d NC |
1840 | #define PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER \ |
1841 | assert(sv) | |
f54cb97a | 1842 | |
6ba07ce1 | 1843 | PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 NC |
1844 | #define PERL_ARGS_ASSERT_MAGIC_CLEAR_ALL_ENV \ |
1845 | assert(sv); assert(mg) | |
6ba07ce1 | 1846 | PERL_CALLCONV int Perl_magic_cleararylen_p(pTHX_ SV* sv, MAGIC* mg); |
83f29afa VP |
1847 | #define PERL_ARGS_ASSERT_MAGIC_CLEARARYLEN_P \ |
1848 | assert(sv); assert(mg) | |
6ba07ce1 | 1849 | PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1850 | #define PERL_ARGS_ASSERT_MAGIC_CLEARENV \ |
1851 | assert(sv); assert(mg) | |
6ba07ce1 | 1852 | PERL_CALLCONV int Perl_magic_clearhint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1853 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINT \ |
1854 | assert(sv); assert(mg) | |
6ba07ce1 | 1855 | PERL_CALLCONV int Perl_magic_clearhints(pTHX_ SV* sv, MAGIC* mg); |
f747ebd6 Z |
1856 | #define PERL_ARGS_ASSERT_MAGIC_CLEARHINTS \ |
1857 | assert(sv); assert(mg) | |
6ba07ce1 | 1858 | PERL_CALLCONV int Perl_magic_clearisa(pTHX_ SV* sv, MAGIC* mg); |
7918f24d | 1859 | #define PERL_ARGS_ASSERT_MAGIC_CLEARISA \ |
0e446081 | 1860 | assert(mg) |
6ba07ce1 | 1861 | PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1862 | #define PERL_ARGS_ASSERT_MAGIC_CLEARPACK \ |
1863 | assert(sv); assert(mg) | |
6ba07ce1 | 1864 | PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1865 | #define PERL_ARGS_ASSERT_MAGIC_CLEARSIG \ |
1866 | assert(sv); assert(mg) | |
6ba07ce1 | 1867 | PERL_CALLCONV int Perl_magic_copycallchecker(pTHX_ SV* sv, MAGIC *mg, SV *nsv, const char *name, I32 namlen); |
09fb282d FC |
1868 | #define PERL_ARGS_ASSERT_MAGIC_COPYCALLCHECKER \ |
1869 | assert(sv); assert(mg); assert(nsv) | |
e8a67806 | 1870 | PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg); |
2015d234 | 1871 | #define PERL_ARGS_ASSERT_MAGIC_DUMP |
6ba07ce1 | 1872 | PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, const MAGIC* mg); |
7918f24d NC |
1873 | #define PERL_ARGS_ASSERT_MAGIC_EXISTSPACK \ |
1874 | assert(sv); assert(mg) | |
6ba07ce1 | 1875 | PERL_CALLCONV int Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 NC |
1876 | #define PERL_ARGS_ASSERT_MAGIC_FREEARYLEN_P \ |
1877 | assert(sv); assert(mg) | |
02a48966 DM |
1878 | PERL_CALLCONV int Perl_magic_freemglob(pTHX_ SV* sv, MAGIC* mg); |
1879 | #define PERL_ARGS_ASSERT_MAGIC_FREEMGLOB \ | |
1880 | assert(sv); assert(mg) | |
6ba07ce1 | 1881 | PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1882 | #define PERL_ARGS_ASSERT_MAGIC_FREEOVRLD \ |
1883 | assert(sv); assert(mg) | |
032a4919 DM |
1884 | PERL_CALLCONV int Perl_magic_freeutf8(pTHX_ SV* sv, MAGIC* mg); |
1885 | #define PERL_ARGS_ASSERT_MAGIC_FREEUTF8 \ | |
1886 | assert(sv); assert(mg) | |
6ba07ce1 | 1887 | PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1888 | #define PERL_ARGS_ASSERT_MAGIC_GET \ |
1889 | assert(sv); assert(mg) | |
6ba07ce1 | 1890 | PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg); |
7918f24d NC |
1891 | #define PERL_ARGS_ASSERT_MAGIC_GETARYLEN \ |
1892 | assert(sv); assert(mg) | |
6ba07ce1 | 1893 | PERL_CALLCONV int Perl_magic_getdebugvar(pTHX_ SV* sv, MAGIC* mg); |
a6d69523 TC |
1894 | #define PERL_ARGS_ASSERT_MAGIC_GETDEBUGVAR \ |
1895 | assert(sv); assert(mg) | |
6ba07ce1 | 1896 | PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1897 | #define PERL_ARGS_ASSERT_MAGIC_GETDEFELEM \ |
1898 | assert(sv); assert(mg) | |
6ba07ce1 | 1899 | PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1900 | #define PERL_ARGS_ASSERT_MAGIC_GETNKEYS \ |
1901 | assert(sv); assert(mg) | |
6ba07ce1 | 1902 | PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1903 | #define PERL_ARGS_ASSERT_MAGIC_GETPACK \ |
1904 | assert(sv); assert(mg) | |
6ba07ce1 | 1905 | PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1906 | #define PERL_ARGS_ASSERT_MAGIC_GETPOS \ |
1907 | assert(sv); assert(mg) | |
6ba07ce1 | 1908 | PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1909 | #define PERL_ARGS_ASSERT_MAGIC_GETSIG \ |
1910 | assert(sv); assert(mg) | |
6ba07ce1 | 1911 | PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1912 | #define PERL_ARGS_ASSERT_MAGIC_GETSUBSTR \ |
1913 | assert(sv); assert(mg) | |
6ba07ce1 | 1914 | PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1915 | #define PERL_ARGS_ASSERT_MAGIC_GETTAINT \ |
1916 | assert(sv); assert(mg) | |
6ba07ce1 | 1917 | PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1918 | #define PERL_ARGS_ASSERT_MAGIC_GETUVAR \ |
1919 | assert(sv); assert(mg) | |
6ba07ce1 | 1920 | PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1921 | #define PERL_ARGS_ASSERT_MAGIC_GETVEC \ |
1922 | assert(sv); assert(mg) | |
6ba07ce1 | 1923 | PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg); |
e8a67806 NC |
1924 | #define PERL_ARGS_ASSERT_MAGIC_KILLBACKREFS \ |
1925 | assert(sv); assert(mg) | |
6ba07ce1 | 1926 | PERL_CALLCONV SV* Perl_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, SV *meth, U32 flags, U32 argc, ...); |
e8a67806 NC |
1927 | #define PERL_ARGS_ASSERT_MAGIC_METHCALL \ |
1928 | assert(sv); assert(mg); assert(meth) | |
6ba07ce1 | 1929 | PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV *sv, MAGIC *mg, SV *key); |
7918f24d NC |
1930 | #define PERL_ARGS_ASSERT_MAGIC_NEXTPACK \ |
1931 | assert(sv); assert(mg); assert(key) | |
6ba07ce1 | 1932 | PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1933 | #define PERL_ARGS_ASSERT_MAGIC_REGDATA_CNT \ |
1934 | assert(sv); assert(mg) | |
6ba07ce1 | 1935 | PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1936 | #define PERL_ARGS_ASSERT_MAGIC_REGDATUM_GET \ |
1937 | assert(sv); assert(mg) | |
6ba07ce1 | 1938 | PERL_CALLCONV SV* Perl_magic_scalarpack(pTHX_ HV *hv, MAGIC *mg); |
e8a67806 NC |
1939 | #define PERL_ARGS_ASSERT_MAGIC_SCALARPACK \ |
1940 | assert(hv); assert(mg) | |
6ba07ce1 | 1941 | PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1942 | #define PERL_ARGS_ASSERT_MAGIC_SET \ |
1943 | assert(sv); assert(mg) | |
6ba07ce1 | 1944 | PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1945 | #define PERL_ARGS_ASSERT_MAGIC_SET_ALL_ENV \ |
7918f24d | 1946 | assert(sv); assert(mg) |
6ba07ce1 | 1947 | PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1948 | #define PERL_ARGS_ASSERT_MAGIC_SETARYLEN \ |
7918f24d | 1949 | assert(sv); assert(mg) |
6ba07ce1 | 1950 | PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1951 | #define PERL_ARGS_ASSERT_MAGIC_SETDBLINE \ |
1952 | assert(sv); assert(mg) | |
6ba07ce1 | 1953 | PERL_CALLCONV int Perl_magic_setdebugvar(pTHX_ SV* sv, MAGIC* mg); |
a6d69523 TC |
1954 | #define PERL_ARGS_ASSERT_MAGIC_SETDEBUGVAR \ |
1955 | assert(sv); assert(mg) | |
6ba07ce1 | 1956 | PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1957 | #define PERL_ARGS_ASSERT_MAGIC_SETDEFELEM \ |
1958 | assert(sv); assert(mg) | |
6ba07ce1 | 1959 | PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1960 | #define PERL_ARGS_ASSERT_MAGIC_SETENV \ |
1961 | assert(sv); assert(mg) | |
6ba07ce1 | 1962 | PERL_CALLCONV int Perl_magic_sethint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1963 | #define PERL_ARGS_ASSERT_MAGIC_SETHINT \ |
1964 | assert(sv); assert(mg) | |
6ba07ce1 | 1965 | PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1966 | #define PERL_ARGS_ASSERT_MAGIC_SETISA \ |
1967 | assert(sv); assert(mg) | |
6ba07ce1 | 1968 | PERL_CALLCONV int Perl_magic_setlvref(pTHX_ SV* sv, MAGIC* mg); |
9cce4f9a FC |
1969 | #define PERL_ARGS_ASSERT_MAGIC_SETLVREF \ |
1970 | assert(sv); assert(mg) | |
6ba07ce1 | 1971 | PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1972 | #define PERL_ARGS_ASSERT_MAGIC_SETMGLOB \ |
1973 | assert(sv); assert(mg) | |
6ba07ce1 | 1974 | PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1975 | #define PERL_ARGS_ASSERT_MAGIC_SETNKEYS \ |
1976 | assert(sv); assert(mg) | |
1f1dcfb5 FC |
1977 | PERL_CALLCONV int Perl_magic_setnonelem(pTHX_ SV* sv, MAGIC* mg); |
1978 | #define PERL_ARGS_ASSERT_MAGIC_SETNONELEM \ | |
1979 | assert(sv); assert(mg) | |
6ba07ce1 | 1980 | PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1981 | #define PERL_ARGS_ASSERT_MAGIC_SETPACK \ |
1982 | assert(sv); assert(mg) | |
6ba07ce1 | 1983 | PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1984 | #define PERL_ARGS_ASSERT_MAGIC_SETPOS \ |
1985 | assert(sv); assert(mg) | |
6ba07ce1 | 1986 | PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1987 | #define PERL_ARGS_ASSERT_MAGIC_SETREGEXP \ |
1988 | assert(sv); assert(mg) | |
6ba07ce1 | 1989 | PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg); |
7918f24d | 1990 | #define PERL_ARGS_ASSERT_MAGIC_SETSIG \ |
38a124f0 | 1991 | assert(mg) |
6ba07ce1 | 1992 | PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1993 | #define PERL_ARGS_ASSERT_MAGIC_SETSUBSTR \ |
1994 | assert(sv); assert(mg) | |
6ba07ce1 | 1995 | PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
1996 | #define PERL_ARGS_ASSERT_MAGIC_SETTAINT \ |
1997 | assert(sv); assert(mg) | |
6ba07ce1 | 1998 | PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 1999 | #define PERL_ARGS_ASSERT_MAGIC_SETUTF8 \ |
7918f24d | 2000 | assert(sv); assert(mg) |
6ba07ce1 | 2001 | PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 2002 | #define PERL_ARGS_ASSERT_MAGIC_SETUVAR \ |
7918f24d | 2003 | assert(sv); assert(mg) |
6ba07ce1 | 2004 | PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg); |
e8a67806 | 2005 | #define PERL_ARGS_ASSERT_MAGIC_SETVEC \ |
7918f24d | 2006 | assert(sv); assert(mg) |
6ba07ce1 | 2007 | PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
2008 | #define PERL_ARGS_ASSERT_MAGIC_SIZEPACK \ |
2009 | assert(sv); assert(mg) | |
6ba07ce1 | 2010 | PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg); |
7918f24d NC |
2011 | #define PERL_ARGS_ASSERT_MAGIC_WIPEPACK \ |
2012 | assert(sv); assert(mg) | |
e8a67806 NC |
2013 | PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes) |
2014 | __attribute__malloc__ | |
2015 | __attribute__warn_unused_result__; | |
2015d234 | 2016 | #define PERL_ARGS_ASSERT_MALLOC |
efaf3674 | 2017 | |
ba5248fc | 2018 | PERL_CALLCONV I32 * Perl_markstack_grow(pTHX); |
2015d234 | 2019 | #define PERL_ARGS_ASSERT_MARKSTACK_GROW |
894356b3 | 2020 | PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...) |
6ba07ce1 | 2021 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
7918f24d NC |
2022 | #define PERL_ARGS_ASSERT_MESS \ |
2023 | assert(pat) | |
aec46f14 | 2024 | |
6ba07ce1 | 2025 | PERL_CALLCONV SV* Perl_mess_sv(pTHX_ SV* basemsg, bool consume); |
c5df3096 Z |
2026 | #define PERL_ARGS_ASSERT_MESS_SV \ |
2027 | assert(basemsg) | |
e8a67806 | 2028 | PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); |
2015d234 | 2029 | #define PERL_ARGS_ASSERT_MFREE |
6ba07ce1 | 2030 | PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv); |
7918f24d NC |
2031 | #define PERL_ARGS_ASSERT_MG_CLEAR \ |
2032 | assert(sv) | |
6ba07ce1 | 2033 | PERL_CALLCONV int Perl_mg_copy(pTHX_ SV *sv, SV *nsv, const char *key, I32 klen); |
7918f24d NC |
2034 | #define PERL_ARGS_ASSERT_MG_COPY \ |
2035 | assert(sv); assert(nsv) | |
ddeaf645 | 2036 | PERL_CALLCONV MAGIC* Perl_mg_find(const SV* sv, int type) |
255164ba | 2037 | __attribute__warn_unused_result__; |
2015d234 | 2038 | #define PERL_ARGS_ASSERT_MG_FIND |
255164ba | 2039 | |
96c2a8ff | 2040 | PERL_CALLCONV MAGIC* Perl_mg_find_mglob(pTHX_ SV* sv) |
6ba07ce1 | 2041 | __attribute__warn_unused_result__; |
96c2a8ff FC |
2042 | #define PERL_ARGS_ASSERT_MG_FIND_MGLOB \ |
2043 | assert(sv) | |
2044 | ||
ddeaf645 | 2045 | PERL_CALLCONV MAGIC* Perl_mg_findext(const SV* sv, int type, const MGVTBL *vtbl) |
39de7f53 | 2046 | __attribute__warn_unused_result__; |
2015d234 | 2047 | #define PERL_ARGS_ASSERT_MG_FINDEXT |
39de7f53 | 2048 | |
6ba07ce1 | 2049 | PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv); |
7918f24d NC |
2050 | #define PERL_ARGS_ASSERT_MG_FREE \ |
2051 | assert(sv) | |
6ba07ce1 | 2052 | PERL_CALLCONV void Perl_mg_free_type(pTHX_ SV* sv, int how); |
d9088386 Z |
2053 | #define PERL_ARGS_ASSERT_MG_FREE_TYPE \ |
2054 | assert(sv) | |
e0d4aead TC |
2055 | PERL_CALLCONV void Perl_mg_freeext(pTHX_ SV* sv, int how, const MGVTBL *vtbl); |
2056 | #define PERL_ARGS_ASSERT_MG_FREEEXT \ | |
2057 | assert(sv) | |
6ba07ce1 | 2058 | PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv); |
7918f24d NC |
2059 | #define PERL_ARGS_ASSERT_MG_GET \ |
2060 | assert(sv) | |
9a957fbc | 2061 | PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv) |
6ba07ce1 | 2062 | __attribute__deprecated__; |
7918f24d NC |
2063 | #define PERL_ARGS_ASSERT_MG_LENGTH \ |
2064 | assert(sv) | |
9a957fbc | 2065 | |
6ba07ce1 | 2066 | PERL_CALLCONV void Perl_mg_localize(pTHX_ SV* sv, SV* nsv, bool setmagic); |
e8a67806 NC |
2067 | #define PERL_ARGS_ASSERT_MG_LOCALIZE \ |
2068 | assert(sv); assert(nsv) | |
6ba07ce1 | 2069 | PERL_CALLCONV void Perl_mg_magical(SV* sv); |
7918f24d NC |
2070 | #define PERL_ARGS_ASSERT_MG_MAGICAL \ |
2071 | assert(sv) | |
6ba07ce1 | 2072 | PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv); |
7918f24d NC |
2073 | #define PERL_ARGS_ASSERT_MG_SET \ |
2074 | assert(sv) | |
6ba07ce1 | 2075 | PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv); |
7918f24d NC |
2076 | #define PERL_ARGS_ASSERT_MG_SIZE \ |
2077 | assert(sv) | |
6ba07ce1 | 2078 | PERL_CALLCONV void Perl_mini_mktime(struct tm *ptm); |
7918f24d NC |
2079 | #define PERL_ARGS_ASSERT_MINI_MKTIME \ |
2080 | assert(ptm) | |
a79b25b7 | 2081 | PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ const char* s, STRLEN len); |
2015d234 | 2082 | #define PERL_ARGS_ASSERT_MODE_FROM_DISCIPLINE |
e8a67806 | 2083 | PERL_CALLCONV void * Perl_more_bodies(pTHX_ const svtype sv_type, const size_t body_size, const size_t arena_size); |
2015d234 | 2084 | #define PERL_ARGS_ASSERT_MORE_BODIES |
6ba07ce1 | 2085 | PERL_CALLCONV const char* Perl_moreswitches(pTHX_ const char* s); |
7918f24d NC |
2086 | #define PERL_ARGS_ASSERT_MORESWITCHES \ |
2087 | assert(s) | |
24f3e849 KW |
2088 | #ifndef PERL_NO_INLINE_FUNCTIONS |
2089 | PERL_STATIC_INLINE char * Perl_mortal_getenv(const char * str) | |
2090 | __attribute__warn_unused_result__; | |
2091 | #define PERL_ARGS_ASSERT_MORTAL_GETENV \ | |
2092 | assert(str) | |
2093 | #endif | |
2094 | ||
6ba07ce1 | 2095 | PERL_CALLCONV const struct mro_alg * Perl_mro_get_from_name(pTHX_ SV *name); |
e8a67806 NC |
2096 | #define PERL_ARGS_ASSERT_MRO_GET_FROM_NAME \ |
2097 | assert(name) | |
6ba07ce1 | 2098 | PERL_CALLCONV AV* Perl_mro_get_linear_isa(pTHX_ HV* stash); |
e8a67806 NC |
2099 | #define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA \ |
2100 | assert(stash) | |
6ba07ce1 | 2101 | PERL_CALLCONV SV* Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which); |
e8a67806 NC |
2102 | #define PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA \ |
2103 | assert(smeta); assert(which) | |
6ba07ce1 | 2104 | PERL_CALLCONV void Perl_mro_isa_changed_in(pTHX_ HV* stash); |
4df35a07 FC |
2105 | #define PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN \ |
2106 | assert(stash) | |
6ba07ce1 | 2107 | PERL_CALLCONV struct mro_meta* Perl_mro_meta_init(pTHX_ HV* stash); |
e8a67806 NC |
2108 | #define PERL_ARGS_ASSERT_MRO_META_INIT \ |
2109 | assert(stash) | |
6ba07ce1 | 2110 | PERL_CALLCONV void Perl_mro_method_changed_in(pTHX_ HV* stash); |
e8a67806 NC |
2111 | #define PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN \ |
2112 | assert(stash) | |
6ba07ce1 | 2113 | PERL_CALLCONV void Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash, const GV * const gv, U32 flags); |
afdbe55d FC |
2114 | #define PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED \ |
2115 | assert(gv) | |
6ba07ce1 | 2116 | PERL_CALLCONV void Perl_mro_register(pTHX_ const struct mro_alg *mro); |
e8a67806 NC |
2117 | #define PERL_ARGS_ASSERT_MRO_REGISTER \ |
2118 | assert(mro) | |
6ba07ce1 | 2119 | PERL_CALLCONV void Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name); |
e8a67806 NC |
2120 | #define PERL_ARGS_ASSERT_MRO_SET_MRO \ |
2121 | assert(meta); assert(name) | |
6ba07ce1 | 2122 | PERL_CALLCONV SV* Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta, const struct mro_alg *const which, SV *const data); |
e8a67806 NC |
2123 | #define PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA \ |
2124 | assert(smeta); assert(which); assert(data) | |
e839e6ed DM |
2125 | PERL_CALLCONV SV* Perl_multiconcat_stringify(pTHX_ const OP* o); |
2126 | #define PERL_ARGS_ASSERT_MULTICONCAT_STRINGIFY \ | |
2127 | assert(o) | |
6ba07ce1 | 2128 | PERL_CALLCONV SV* Perl_multideref_stringify(pTHX_ const OP* o, CV *cv); |
48ee9c0e | 2129 | #define PERL_ARGS_ASSERT_MULTIDEREF_STRINGIFY \ |
dc3c1c70 | 2130 | assert(o) |
6ba07ce1 | 2131 | PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s); |
e8a67806 NC |
2132 | #define PERL_ARGS_ASSERT_MY_ATOF \ |
2133 | assert(s) | |
808ea3ad | 2134 | PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *orig, NV* value); |
e8a67806 | 2135 | #define PERL_ARGS_ASSERT_MY_ATOF2 \ |
808ea3ad | 2136 | assert(orig); assert(value) |
6928bedc KW |
2137 | PERL_CALLCONV char* Perl_my_atof3(pTHX_ const char *orig, NV* value, const STRLEN len); |
2138 | #define PERL_ARGS_ASSERT_MY_ATOF3 \ | |
2139 | assert(orig); assert(value) | |
6ba07ce1 | 2140 | PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs); |
e8a67806 NC |
2141 | #define PERL_ARGS_ASSERT_MY_ATTRS \ |
2142 | assert(o) | |
e8a67806 | 2143 | PERL_CALLCONV void Perl_my_clearenv(pTHX); |
2015d234 | 2144 | #define PERL_ARGS_ASSERT_MY_CLEARENV |
ddeaf645 | 2145 | PERL_CALLCONV int Perl_my_dirfd(DIR* dir); |
2015d234 | 2146 | #define PERL_ARGS_ASSERT_MY_DIRFD |
12a2785c | 2147 | PERL_CALLCONV_NO_RET void Perl_my_exit(pTHX_ U32 status) |
abb2c242 | 2148 | __attribute__noreturn__; |
2015d234 | 2149 | #define PERL_ARGS_ASSERT_MY_EXIT |
f54cb97a | 2150 | |
12a2785c | 2151 | PERL_CALLCONV_NO_RET void Perl_my_failure_exit(pTHX) |
abb2c242 | 2152 | __attribute__noreturn__; |
2015d234 | 2153 | #define PERL_ARGS_ASSERT_MY_FAILURE_EXIT |
f54cb97a | 2154 | |
1d7c1841 | 2155 | PERL_CALLCONV I32 Perl_my_fflush_all(pTHX); |
2015d234 | 2156 | #define PERL_ARGS_ASSERT_MY_FFLUSH_ALL |
52e18b1f | 2157 | PERL_CALLCONV Pid_t Perl_my_fork(void); |
2015d234 | 2158 | #define PERL_ARGS_ASSERT_MY_FORK |
8528a39b | 2159 | /* PERL_CALLCONV I32 my_lstat(pTHX); */ |
2015d234 | 2160 | #define PERL_ARGS_ASSERT_MY_LSTAT |
0d7d409d | 2161 | PERL_CALLCONV I32 Perl_my_lstat_flags(pTHX_ const U32 flags); |
2015d234 | 2162 | #define PERL_ARGS_ASSERT_MY_LSTAT_FLAGS |
ae73d7ec TC |
2163 | PERL_CALLCONV int Perl_my_mkostemp_cloexec(char *templte, int flags) |
2164 | __attribute__warn_unused_result__; | |
2165 | #define PERL_ARGS_ASSERT_MY_MKOSTEMP_CLOEXEC \ | |
2166 | assert(templte) | |
2167 | ||
1cdb2692 Z |
2168 | PERL_CALLCONV int Perl_my_mkstemp_cloexec(char *templte) |
2169 | __attribute__warn_unused_result__; | |
2170 | #define PERL_ARGS_ASSERT_MY_MKSTEMP_CLOEXEC \ | |
2171 | assert(templte) | |
2172 | ||
6ba07ce1 | 2173 | PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ const char* mode, int n, SV ** args); |
7918f24d NC |
2174 | #define PERL_ARGS_ASSERT_MY_POPEN_LIST \ |
2175 | assert(mode); assert(args) | |
e1ec3a88 | 2176 | PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val); |
2015d234 | 2177 | #define PERL_ARGS_ASSERT_MY_SETENV |
e8a67806 | 2178 | PERL_CALLCONV int Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) |
6ba07ce1 | 2179 | __attribute__format__(__printf__,3,4); |
e8a67806 NC |
2180 | #define PERL_ARGS_ASSERT_MY_SNPRINTF \ |
2181 | assert(buffer); assert(format) | |
2182 | ||
2183 | PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]); | |
2015d234 | 2184 | #define PERL_ARGS_ASSERT_MY_SOCKETPAIR |
8528a39b | 2185 | /* PERL_CALLCONV I32 my_stat(pTHX); */ |
2015d234 | 2186 | #define PERL_ARGS_ASSERT_MY_STAT |
0d7d409d | 2187 | PERL_CALLCONV I32 Perl_my_stat_flags(pTHX_ const U32 flags); |
2015d234 | 2188 | #define PERL_ARGS_ASSERT_MY_STAT_FLAGS |
2c6ee1a7 | 2189 | PERL_CALLCONV char* Perl_my_strerror(pTHX_ const int errnum); |
2015d234 | 2190 | #define PERL_ARGS_ASSERT_MY_STRERROR |
bfce84ec | 2191 | 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) |
6ba07ce1 | 2192 | __attribute__format__(__strftime__,pTHX_1,0); |
7918f24d NC |
2193 | #define PERL_ARGS_ASSERT_MY_STRFTIME \ |
2194 | assert(fmt) | |
bfce84ec | 2195 | |
9ec8aea5 KW |
2196 | PERL_CALLCONV NV Perl_my_strtod(const char * const s, char ** e) |
2197 | __attribute__warn_unused_result__; | |
2198 | #define PERL_ARGS_ASSERT_MY_STRTOD \ | |
2199 | assert(s) | |
2200 | ||
e8a67806 | 2201 | PERL_CALLCONV void Perl_my_unexec(pTHX); |
2015d234 | 2202 | #define PERL_ARGS_ASSERT_MY_UNEXEC |
6ba07ce1 | 2203 | PERL_CALLCONV int Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap); |
e8a67806 NC |
2204 | #define PERL_ARGS_ASSERT_MY_VSNPRINTF \ |
2205 | assert(buffer); assert(format) | |
e8a67806 | 2206 | PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block); |
2015d234 | 2207 | #define PERL_ARGS_ASSERT_NEWANONATTRSUB |
e8a67806 | 2208 | PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o) |
e8a67806 | 2209 | __attribute__warn_unused_result__; |
2015d234 | 2210 | #define PERL_ARGS_ASSERT_NEWANONHASH |
f54cb97a | 2211 | |
f54cb97a | 2212 | PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o) |
abb2c242 | 2213 | __attribute__warn_unused_result__; |
2015d234 | 2214 | #define PERL_ARGS_ASSERT_NEWANONLIST |
f54cb97a | 2215 | |
e8a67806 | 2216 | PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block); |
2015d234 | 2217 | #define PERL_ARGS_ASSERT_NEWANONSUB |
e8a67806 | 2218 | PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right) |
abb2c242 | 2219 | __attribute__warn_unused_result__; |
2015d234 | 2220 | #define PERL_ARGS_ASSERT_NEWASSIGNOP |
f54cb97a | 2221 | |
e8f91c91 | 2222 | /* PERL_CALLCONV CV* newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); */ |
2015d234 | 2223 | #define PERL_ARGS_ASSERT_NEWATTRSUB |
e8f91c91 | 2224 | PERL_CALLCONV CV* Perl_newATTRSUB_x(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block, bool o_is_gv); |
2015d234 | 2225 | #define PERL_ARGS_ASSERT_NEWATTRSUB_X |
3f1866a8 KW |
2226 | #ifndef NO_MATHOMS |
2227 | PERL_CALLCONV AV* Perl_newAV(pTHX) | |
2228 | __attribute__warn_unused_result__; | |
2015d234 | 2229 | #define PERL_ARGS_ASSERT_NEWAV |
3f1866a8 | 2230 | #endif |
e8a67806 NC |
2231 | |
2232 | PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o) | |
6ba07ce1 | 2233 | __attribute__warn_unused_result__; |
e8a67806 NC |
2234 | #define PERL_ARGS_ASSERT_NEWAVREF \ |
2235 | assert(o) | |
2236 | ||
2237 | PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 | 2238 | __attribute__warn_unused_result__; |
2015d234 | 2239 | #define PERL_ARGS_ASSERT_NEWBINOP |
f54cb97a | 2240 | |
aec46f14 | 2241 | PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop) |
6ba07ce1 | 2242 | __attribute__warn_unused_result__; |
7918f24d NC |
2243 | #define PERL_ARGS_ASSERT_NEWCONDOP \ |
2244 | assert(first) | |
aec46f14 | 2245 | |
99ab892b | 2246 | PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv); |
2015d234 | 2247 | #define PERL_ARGS_ASSERT_NEWCONSTSUB |
9c0a6090 | 2248 | PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags, SV* sv); |
2015d234 | 2249 | #define PERL_ARGS_ASSERT_NEWCONSTSUB_FLAGS |
e8a67806 | 2250 | PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) |
e8a67806 | 2251 | __attribute__warn_unused_result__; |
2015d234 | 2252 | #define PERL_ARGS_ASSERT_NEWCVREF |
e8a67806 | 2253 | |
ce409cc8 LM |
2254 | PERL_CALLCONV OP* Perl_newDEFSVOP(pTHX) |
2255 | __attribute__warn_unused_result__; | |
2015d234 | 2256 | #define PERL_ARGS_ASSERT_NEWDEFSVOP |
ce409cc8 | 2257 | |
b5bbe64a | 2258 | PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block); |
2015d234 | 2259 | #define PERL_ARGS_ASSERT_NEWFORM |
94bf0465 | 2260 | PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, OP* sv, OP* expr, OP* block, OP* cont) |
6ba07ce1 | 2261 | __attribute__warn_unused_result__; |
7918f24d NC |
2262 | #define PERL_ARGS_ASSERT_NEWFOROP \ |
2263 | assert(expr) | |
f54cb97a | 2264 | |
7896dde7 | 2265 | PERL_CALLCONV OP* Perl_newGIVENOP(pTHX_ OP* cond, OP* block, PADOFFSET defsv_off) |
6ba07ce1 | 2266 | __attribute__warn_unused_result__; |
7918f24d | 2267 | #define PERL_ARGS_ASSERT_NEWGIVENOP \ |
7896dde7 | 2268 | assert(cond); assert(block) |
0d863452 | 2269 | |
6ba07ce1 | 2270 | PERL_CALLCONV GP * Perl_newGP(pTHX_ GV *const gv); |
e8a67806 NC |
2271 | #define PERL_ARGS_ASSERT_NEWGP \ |
2272 | assert(gv) | |
e8a67806 | 2273 | PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv) |
6ba07ce1 | 2274 | __attribute__warn_unused_result__; |
e8a67806 NC |
2275 | #define PERL_ARGS_ASSERT_NEWGVOP \ |
2276 | assert(gv) | |
2277 | ||
2278 | PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) | |
e8a67806 | 2279 | __attribute__warn_unused_result__; |
2015d234 | 2280 | #define PERL_ARGS_ASSERT_NEWGVREF |
e8a67806 | 2281 | |
6ba07ce1 | 2282 | /* PERL_CALLCONV GV* newGVgen(pTHX_ const char* pack); */ |
2015d234 | 2283 | #define PERL_ARGS_ASSERT_NEWGVGEN |
9cc50d5b | 2284 | PERL_CALLCONV GV* Perl_newGVgen_flags(pTHX_ const char* pack, U32 flags) |
6ba07ce1 | 2285 | __attribute__warn_unused_result__; |
9cc50d5b | 2286 | #define PERL_ARGS_ASSERT_NEWGVGEN_FLAGS \ |
e8a67806 NC |
2287 | assert(pack) |
2288 | ||
3f1866a8 KW |
2289 | #ifndef NO_MATHOMS |
2290 | PERL_CALLCONV HV* Perl_newHV(pTHX) | |
2291 | __attribute__warn_unused_result__; | |
2015d234 | 2292 | #define PERL_ARGS_ASSERT_NEWHV |
3f1866a8 | 2293 | #endif |
e8a67806 NC |
2294 | |
2295 | PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o) | |
6ba07ce1 | 2296 | __attribute__warn_unused_result__; |
e8a67806 NC |
2297 | #define PERL_ARGS_ASSERT_NEWHVREF \ |
2298 | assert(o) | |
2299 | ||
2300 | PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV *hv) | |
e8a67806 | 2301 | __attribute__warn_unused_result__; |
2015d234 | 2302 | #define PERL_ARGS_ASSERT_NEWHVHV |
e8a67806 | 2303 | |
3f1866a8 KW |
2304 | #ifndef NO_MATHOMS |
2305 | PERL_CALLCONV IO* Perl_newIO(pTHX) | |
3f1866a8 | 2306 | __attribute__warn_unused_result__; |
2015d234 | 2307 | #define PERL_ARGS_ASSERT_NEWIO |
3f1866a8 | 2308 | #endif |
e8a67806 NC |
2309 | |
2310 | PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
e8a67806 | 2311 | __attribute__warn_unused_result__; |
2015d234 | 2312 | #define PERL_ARGS_ASSERT_NEWLISTOP |
e8a67806 | 2313 | |
4048f010 | 2314 | PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP *first, OP *other) |
6ba07ce1 | 2315 | __attribute__warn_unused_result__; |
7918f24d NC |
2316 | #define PERL_ARGS_ASSERT_NEWLOGOP \ |
2317 | assert(first); assert(other) | |
f54cb97a AL |
2318 | |
2319 | PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label) | |
6ba07ce1 | 2320 | __attribute__warn_unused_result__; |
7918f24d NC |
2321 | #define PERL_ARGS_ASSERT_NEWLOOPEX \ |
2322 | assert(label) | |
f54cb97a AL |
2323 | |
2324 | PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block) | |
abb2c242 | 2325 | __attribute__warn_unused_result__; |
2015d234 | 2326 | #define PERL_ARGS_ASSERT_NEWLOOPOP |
f54cb97a | 2327 | |
b46e009d | 2328 | PERL_CALLCONV OP* Perl_newMETHOP(pTHX_ I32 type, I32 flags, OP* dynamic_meth) |
6ba07ce1 | 2329 | __attribute__warn_unused_result__; |
b46e009d | 2330 | #define PERL_ARGS_ASSERT_NEWMETHOP \ |
2331 | assert(dynamic_meth) | |
2332 | ||
2333 | PERL_CALLCONV OP* Perl_newMETHOP_named(pTHX_ I32 type, I32 flags, SV* const_meth) | |
6ba07ce1 | 2334 | __attribute__warn_unused_result__; |
b46e009d | 2335 | #define PERL_ARGS_ASSERT_NEWMETHOP_NAMED \ |
2336 | assert(const_meth) | |
2337 | ||
6ba07ce1 | 2338 | PERL_CALLCONV CV * Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); |
50278755 FC |
2339 | #define PERL_ARGS_ASSERT_NEWMYSUB \ |
2340 | assert(o) | |
4373e329 | 2341 | PERL_CALLCONV OP* Perl_newNULLLIST(pTHX) |
abb2c242 | 2342 | __attribute__warn_unused_result__; |
2015d234 | 2343 | #define PERL_ARGS_ASSERT_NEWNULLLIST |
f54cb97a AL |
2344 | |
2345 | PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags) | |
abb2c242 | 2346 | __attribute__warn_unused_result__; |
2015d234 | 2347 | #define PERL_ARGS_ASSERT_NEWOP |
f54cb97a | 2348 | |
a0e9f837 | 2349 | PERL_CALLCONV PADNAMELIST * Perl_newPADNAMELIST(size_t max) |
9b7476d7 | 2350 | __attribute__warn_unused_result__; |
2015d234 | 2351 | #define PERL_ARGS_ASSERT_NEWPADNAMELIST |
9b7476d7 | 2352 | |
a0e9f837 | 2353 | PERL_CALLCONV PADNAME * Perl_newPADNAMEouter(PADNAME *outer) |
6ba07ce1 | 2354 | __attribute__warn_unused_result__; |
0f94cb1f FC |
2355 | #define PERL_ARGS_ASSERT_NEWPADNAMEOUTER \ |
2356 | assert(outer) | |
2357 | ||
a0e9f837 | 2358 | PERL_CALLCONV PADNAME * Perl_newPADNAMEpvn(const char *s, STRLEN len) |
6ba07ce1 | 2359 | __attribute__warn_unused_result__; |
0f94cb1f FC |
2360 | #define PERL_ARGS_ASSERT_NEWPADNAMEPVN \ |
2361 | assert(s) | |
2362 | ||
e8a67806 | 2363 | PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) |
e8a67806 | 2364 | __attribute__warn_unused_result__; |
2015d234 | 2365 | #define PERL_ARGS_ASSERT_NEWPMOP |
e8a67806 | 2366 | |
6ba07ce1 | 2367 | PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o); |
7918f24d NC |
2368 | #define PERL_ARGS_ASSERT_NEWPROG \ |
2369 | assert(o) | |
e8a67806 | 2370 | PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv) |
e8a67806 | 2371 | __attribute__warn_unused_result__; |
2015d234 | 2372 | #define PERL_ARGS_ASSERT_NEWPVOP |
e8a67806 | 2373 | |
f54cb97a | 2374 | PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right) |
6ba07ce1 | 2375 | __attribute__warn_unused_result__; |
7918f24d NC |
2376 | #define PERL_ARGS_ASSERT_NEWRANGE \ |
2377 | assert(left); assert(right) | |
f54cb97a | 2378 | |
e8a67806 | 2379 | PERL_CALLCONV SV* Perl_newRV(pTHX_ SV *const sv) |
6ba07ce1 | 2380 | __attribute__warn_unused_result__; |
e8a67806 NC |
2381 | #define PERL_ARGS_ASSERT_NEWRV \ |
2382 | assert(sv) | |
2383 | ||
38ee6910 | 2384 | PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *const tmpRef) |
6ba07ce1 | 2385 | __attribute__warn_unused_result__; |
e8a67806 | 2386 | #define PERL_ARGS_ASSERT_NEWRV_NOINC \ |
38ee6910 | 2387 | assert(tmpRef) |
e8a67806 | 2388 | |
f54cb97a | 2389 | PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop) |
abb2c242 | 2390 | __attribute__warn_unused_result__; |
2015d234 | 2391 | #define PERL_ARGS_ASSERT_NEWSLICEOP |
f54cb97a AL |
2392 | |
2393 | PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o) | |
abb2c242 | 2394 | __attribute__warn_unused_result__; |
2015d234 | 2395 | #define PERL_ARGS_ASSERT_NEWSTATEOP |
f54cb97a | 2396 | |
6ba07ce1 | 2397 | PERL_CALLCONV CV* Perl_newSTUB(pTHX_ GV *gv, bool fake); |
186a5ba8 FC |
2398 | #define PERL_ARGS_ASSERT_NEWSTUB \ |
2399 | assert(gv) | |
3f1866a8 KW |
2400 | #ifndef NO_MATHOMS |
2401 | PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block); | |
2015d234 | 2402 | #define PERL_ARGS_ASSERT_NEWSUB |
3f1866a8 | 2403 | #endif |
e8a67806 | 2404 | PERL_CALLCONV SV* Perl_newSV(pTHX_ const STRLEN len) |
e8a67806 | 2405 | __attribute__warn_unused_result__; |
2015d234 | 2406 | #define PERL_ARGS_ASSERT_NEWSV |
77004dee | 2407 | |
e8a67806 | 2408 | PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv) |
6ba07ce1 | 2409 | __attribute__warn_unused_result__; |
e8a67806 NC |
2410 | #define PERL_ARGS_ASSERT_NEWSVOP \ |
2411 | assert(sv) | |
f54cb97a | 2412 | |
e8a67806 | 2413 | PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o) |
6ba07ce1 | 2414 | __attribute__warn_unused_result__; |
e8a67806 | 2415 | #define PERL_ARGS_ASSERT_NEWSVREF \ |
7918f24d | 2416 | assert(o) |
f54cb97a | 2417 | |
e8a67806 | 2418 | PERL_CALLCONV SV* Perl_newSV_type(pTHX_ const svtype type) |
abb2c242 | 2419 | __attribute__warn_unused_result__; |
2015d234 | 2420 | #define PERL_ARGS_ASSERT_NEWSV_TYPE |
f54cb97a | 2421 | |
199f858d | 2422 | PERL_CALLCONV SV* Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible) |
6ba07ce1 | 2423 | __attribute__warn_unused_result__; |
199f858d FC |
2424 | #define PERL_ARGS_ASSERT_NEWSVAVDEFELEM \ |
2425 | assert(av) | |
2426 | ||
e8a67806 | 2427 | PERL_CALLCONV SV* Perl_newSVhek(pTHX_ const HEK *const hek) |
abb2c242 | 2428 | __attribute__warn_unused_result__; |
2015d234 | 2429 | #define PERL_ARGS_ASSERT_NEWSVHEK |
f54cb97a | 2430 | |
e8a67806 | 2431 | PERL_CALLCONV SV* Perl_newSViv(pTHX_ const IV i) |
e8a67806 | 2432 | __attribute__warn_unused_result__; |
2015d234 | 2433 | #define PERL_ARGS_ASSERT_NEWSVIV |
f54cb97a | 2434 | |
e8a67806 | 2435 | PERL_CALLCONV SV* Perl_newSVnv(pTHX_ const NV n) |
abb2c242 | 2436 | __attribute__warn_unused_result__; |
2015d234 | 2437 | #define PERL_ARGS_ASSERT_NEWSVNV |
f54cb97a | 2438 | |
e8a67806 | 2439 | PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char *const s, const STRLEN len) |
abb2c242 | 2440 | __attribute__warn_unused_result__; |
2015d234 | 2441 | #define PERL_ARGS_ASSERT_NEWSVPV |
f54cb97a | 2442 | |
e8a67806 | 2443 | PERL_CALLCONV SV* Perl_newSVpv_share(pTHX_ const char* s, U32 hash) |
abb2c242 | 2444 | __attribute__warn_unused_result__; |
2015d234 | 2445 | #define PERL_ARGS_ASSERT_NEWSVPV_SHARE |
f54cb97a | 2446 | |
e8a67806 | 2447 | PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char *const pat, ...) |
abb2c242 | 2448 | __attribute__warn_unused_result__ |
6ba07ce1 | 2449 | __attribute__format__(__printf__,pTHX_1,pTHX_2); |
e8a67806 NC |
2450 | #define PERL_ARGS_ASSERT_NEWSVPVF \ |
2451 | assert(pat) | |
f54cb97a | 2452 | |
a5ba2527 | 2453 | PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len) |
abb2c242 | 2454 | __attribute__warn_unused_result__; |
2015d234 | 2455 | #define PERL_ARGS_ASSERT_NEWSVPVN |
f54cb97a | 2456 | |
23f13727 | 2457 | PERL_CALLCONV SV* Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags) |
740cce10 | 2458 | __attribute__warn_unused_result__; |
2015d234 | 2459 | #define PERL_ARGS_ASSERT_NEWSVPVN_FLAGS |
740cce10 | 2460 | |
f54cb97a | 2461 | PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash) |
abb2c242 | 2462 | __attribute__warn_unused_result__; |
2015d234 | 2463 | #define PERL_ARGS_ASSERT_NEWSVPVN_SHARE |
f54cb97a | 2464 | |
6ba07ce1 | 2465 | PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV *const rv, const char *const classname); |
7918f24d NC |
2466 | #define PERL_ARGS_ASSERT_NEWSVRV \ |
2467 | assert(rv) | |
238f2c13 | 2468 | #ifndef NO_MATHOMS |
23f13727 | 2469 | PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV *const old) |
abb2c242 | 2470 | __attribute__warn_unused_result__; |
2015d234 | 2471 | #define PERL_ARGS_ASSERT_NEWSVSV |
238f2c13 P |
2472 | #endif |
2473 | ||
2474 | PERL_CALLCONV SV* Perl_newSVsv_flags(pTHX_ SV *const old, I32 flags) | |
2475 | __attribute__warn_unused_result__; | |
2015d234 | 2476 | #define PERL_ARGS_ASSERT_NEWSVSV_FLAGS |
238f2c13 | 2477 | |
ef9e3b4d | 2478 | /* PERL_CALLCONV SV* newSVsv_nomg(pTHX_ SV *const old) |
238f2c13 | 2479 | __attribute__warn_unused_result__; */ |
2015d234 | 2480 | #define PERL_ARGS_ASSERT_NEWSVSV_NOMG |
f54cb97a | 2481 | |
e8a67806 | 2482 | PERL_CALLCONV SV* Perl_newSVuv(pTHX_ const UV u) |
b9f83d2f | 2483 | __attribute__warn_unused_result__; |
2015d234 | 2484 | #define PERL_ARGS_ASSERT_NEWSVUV |
b9f83d2f | 2485 | |
f54cb97a | 2486 | PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first) |
abb2c242 | 2487 | __attribute__warn_unused_result__; |
2015d234 | 2488 | #define PERL_ARGS_ASSERT_NEWUNOP |
f54cb97a | 2489 | |
2f7c6295 | 2490 | PERL_CALLCONV OP* Perl_newUNOP_AUX(pTHX_ I32 type, I32 flags, OP* first, UNOP_AUX_item *aux) |
2f7c6295 | 2491 | __attribute__warn_unused_result__; |
2015d234 | 2492 | #define PERL_ARGS_ASSERT_NEWUNOP_AUX |
2f7c6295 | 2493 | |
7896dde7 | 2494 | PERL_CALLCONV OP* Perl_newWHENOP(pTHX_ OP* cond, OP* block) |
6ba07ce1 | 2495 | __attribute__warn_unused_result__; |
7896dde7 Z |
2496 | #define PERL_ARGS_ASSERT_NEWWHENOP \ |
2497 | assert(block) | |
0d863452 | 2498 | |
94bf0465 | 2499 | PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, OP* expr, OP* block, OP* cont, I32 has_my) |
abb2c242 | 2500 | __attribute__warn_unused_result__; |
2015d234 | 2501 | #define PERL_ARGS_ASSERT_NEWWHILEOP |
f54cb97a | 2502 | |
6ba07ce1 | 2503 | PERL_CALLCONV CV* Perl_newXS(pTHX_ const char *name, XSUBADDR_t subaddr, const char *filename); |
e8a67806 NC |
2504 | #define PERL_ARGS_ASSERT_NEWXS \ |
2505 | assert(subaddr); assert(filename) | |
6ba07ce1 | 2506 | PERL_CALLCONV CV * Perl_newXS_deffile(pTHX_ const char *name, XSUBADDR_t subaddr); |
9a189793 DD |
2507 | #define PERL_ARGS_ASSERT_NEWXS_DEFFILE \ |
2508 | assert(name); assert(subaddr) | |
6ba07ce1 | 2509 | PERL_CALLCONV CV * Perl_newXS_flags(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags); |
e8a67806 NC |
2510 | #define PERL_ARGS_ASSERT_NEWXS_FLAGS \ |
2511 | assert(subaddr); assert(filename) | |
6ba07ce1 | 2512 | PERL_CALLCONV CV * Perl_newXS_len_flags(pTHX_ const char *name, STRLEN len, XSUBADDR_t subaddr, const char *const filename, const char *const proto, SV **const_svp, U32 flags); |
032a0447 | 2513 | #define PERL_ARGS_ASSERT_NEWXS_LEN_FLAGS \ |
9a189793 | 2514 | assert(subaddr) |
e8a67806 | 2515 | PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) |
e8a67806 | 2516 | __attribute__warn_unused_result__; |
2015d234 | 2517 | #define PERL_ARGS_ASSERT_NEW_STACKINFO |
91152fc1 | 2518 | |
6ba07ce1 | 2519 | PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver); |
7918f24d NC |
2520 | #define PERL_ARGS_ASSERT_NEW_VERSION \ |
2521 | assert(ver) | |
e8a67806 | 2522 | PERL_CALLCONV STRLEN * Perl_new_warnings_bitfield(pTHX_ STRLEN *buffer, const char *const bits, STRLEN size) |
6ba07ce1 | 2523 | __attribute__warn_unused_result__; |
e8a67806 NC |
2524 | #define PERL_ARGS_ASSERT_NEW_WARNINGS_BITFIELD \ |
2525 | assert(bits) | |
f54cb97a | 2526 | |
6ba07ce1 | 2527 | PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv, bool nomagicopen); |
7918f24d NC |
2528 | #define PERL_ARGS_ASSERT_NEXTARGV \ |
2529 | assert(gv) | |
54c193ae KW |
2530 | PERL_CALLCONV char* Perl_ninstr(const char* big, const char* bigend, const char* little, const char* lend) |
2531 | __attribute__warn_unused_result__ | |
2532 | __attribute__pure__; | |
2533 | #define PERL_ARGS_ASSERT_NINSTR \ | |
2534 | assert(big); assert(bigend); assert(little); assert(lend) | |
2535 | ||
0f2beabb TC |
2536 | PERL_CALLCONV void Perl_no_bareword_filehandle(pTHX_ const char *fhname); |
2537 | #define PERL_ARGS_ASSERT_NO_BAREWORD_FILEHANDLE \ | |
2538 | assert(fhname) | |
db6e00bd DD |
2539 | PERL_CALLCONV_NO_RET void Perl_noperl_die(const char* pat, ...) |
2540 | __attribute__noreturn__ | |
6ba07ce1 | 2541 | __attribute__format__(__printf__,1,2); |
db6e00bd DD |
2542 | #define PERL_ARGS_ASSERT_NOPERL_DIE \ |
2543 | assert(pat) | |
2544 | ||
e8a67806 | 2545 | PERL_CALLCONV int Perl_nothreadhook(pTHX); |
2015d234 | 2546 | #define PERL_ARGS_ASSERT_NOTHREADHOOK |
efa571ab | 2547 | PERL_CALLCONV void Perl_notify_parser_that_changed_to_utf8(pTHX); |
2015d234 | 2548 | #define PERL_ARGS_ASSERT_NOTIFY_PARSER_THAT_CHANGED_TO_UTF8 |
e8a67806 | 2549 | PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o) |
6ba07ce1 | 2550 | __attribute__warn_unused_result__; |
e8a67806 | 2551 | #define PERL_ARGS_ASSERT_OOPSAV \ |
7918f24d | 2552 | assert(o) |
eb8433b7 | 2553 | |
e8a67806 | 2554 | PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o) |
6ba07ce1 | 2555 | __attribute__warn_unused_result__; |
e8a67806 | 2556 | #define PERL_ARGS_ASSERT_OOPSHV \ |
7918f24d | 2557 | assert(o) |
f54cb97a | 2558 | |
2fcb4757 | 2559 | PERL_CALLCONV OP* Perl_op_append_elem(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2560 | #define PERL_ARGS_ASSERT_OP_APPEND_ELEM |
2fcb4757 | 2561 | PERL_CALLCONV OP* Perl_op_append_list(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2562 | #define PERL_ARGS_ASSERT_OP_APPEND_LIST |
1e85b658 | 2563 | PERL_CALLCONV OPclass Perl_op_class(pTHX_ const OP *o); |
2015d234 | 2564 | #define PERL_ARGS_ASSERT_OP_CLASS |
6ba07ce1 | 2565 | PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o); |
e8a67806 NC |
2566 | #define PERL_ARGS_ASSERT_OP_CLEAR \ |
2567 | assert(o) | |
6ba07ce1 | 2568 | PERL_CALLCONV OP* Perl_op_contextualize(pTHX_ OP* o, I32 context); |
d9088386 Z |
2569 | #define PERL_ARGS_ASSERT_OP_CONTEXTUALIZE \ |
2570 | assert(o) | |
03d05f6e LM |
2571 | PERL_CALLCONV OP* Perl_op_convert_list(pTHX_ I32 optype, I32 flags, OP* o) |
2572 | __attribute__warn_unused_result__; | |
2015d234 | 2573 | #define PERL_ARGS_ASSERT_OP_CONVERT_LIST |
03d05f6e | 2574 | |
6ba07ce1 | 2575 | PERL_CALLCONV void Perl_op_dump(pTHX_ const OP *o); |
e8a67806 NC |
2576 | #define PERL_ARGS_ASSERT_OP_DUMP \ |
2577 | assert(o) | |
e8a67806 | 2578 | PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg); |
2015d234 | 2579 | #define PERL_ARGS_ASSERT_OP_FREE |
6ba07ce1 | 2580 | PERL_CALLCONV OP* Perl_op_linklist(pTHX_ OP *o); |
5983a79d BM |
2581 | #define PERL_ARGS_ASSERT_OP_LINKLIST \ |
2582 | assert(o) | |
d3d7d28f | 2583 | /* PERL_CALLCONV OP* op_lvalue(pTHX_ OP* o, I32 type); */ |
2015d234 | 2584 | #define PERL_ARGS_ASSERT_OP_LVALUE |
d3d7d28f | 2585 | PERL_CALLCONV OP* Perl_op_lvalue_flags(pTHX_ OP* o, I32 type, U32 flags); |
2015d234 | 2586 | #define PERL_ARGS_ASSERT_OP_LVALUE_FLAGS |
6ba07ce1 | 2587 | PERL_CALLCONV void Perl_op_null(pTHX_ OP* o); |
e8a67806 NC |
2588 | #define PERL_ARGS_ASSERT_OP_NULL \ |
2589 | assert(o) | |
0f9a6232 TC |
2590 | PERL_CALLCONV OP* Perl_op_parent(OP *o); |
2591 | #define PERL_ARGS_ASSERT_OP_PARENT \ | |
2592 | assert(o) | |
2fcb4757 | 2593 | PERL_CALLCONV OP* Perl_op_prepend_elem(pTHX_ I32 optype, OP* first, OP* last); |
2015d234 | 2594 | #define PERL_ARGS_ASSERT_OP_PREPEND_ELEM |
e8a67806 | 2595 | PERL_CALLCONV void Perl_op_refcnt_lock(pTHX); |
2015d234 | 2596 | #define PERL_ARGS_ASSERT_OP_REFCNT_LOCK |
e8a67806 | 2597 | PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX); |
2015d234 | 2598 | #define PERL_ARGS_ASSERT_OP_REFCNT_UNLOCK |
3ad73efd | 2599 | PERL_CALLCONV OP* Perl_op_scope(pTHX_ OP* o); |
2015d234 | 2600 | #define PERL_ARGS_ASSERT_OP_SCOPE |
3269ea41 | 2601 | PERL_CALLCONV OP* Perl_op_sibling_splice(OP *parent, OP *start, int del_count, OP* insert); |
2015d234 | 2602 | #define PERL_ARGS_ASSERT_OP_SIBLING_SPLICE |
705fe0e5 | 2603 | PERL_CALLCONV OP* Perl_op_unscope(pTHX_ OP* o); |
2015d234 | 2604 | #define PERL_ARGS_ASSERT_OP_UNSCOPE |
d2905138 DM |
2605 | PERL_CALLCONV void Perl_optimize_optree(pTHX_ OP* o); |
2606 | #define PERL_ARGS_ASSERT_OPTIMIZE_OPTREE \ | |
2607 | assert(o) | |
1545ba5b | 2608 | #ifndef NO_MATHOMS |
550697d6 KW |
2609 | 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) |
2610 | __attribute__deprecated__; | |
e8a67806 NC |
2611 | #define PERL_ARGS_ASSERT_PACK_CAT \ |
2612 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist); assert(next_in_list) | |
1545ba5b | 2613 | #endif |
550697d6 | 2614 | |
6ba07ce1 | 2615 | PERL_CALLCONV void Perl_package(pTHX_ OP* o); |
b5bbe64a JH |
2616 | #define PERL_ARGS_ASSERT_PACKAGE \ |
2617 | assert(o) | |
6ba07ce1 | 2618 | PERL_CALLCONV void Perl_package_version(pTHX_ OP* v); |
6fa4d285 DG |
2619 | #define PERL_ARGS_ASSERT_PACKAGE_VERSION \ |
2620 | assert(v) | |
6ba07ce1 | 2621 | PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist); |
e8a67806 NC |
2622 | #define PERL_ARGS_ASSERT_PACKLIST \ |
2623 | assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist) | |
6ba07ce1 | 2624 | PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ CV* func, I32 optype); |
e8a67806 | 2625 | #define PERL_ARGS_ASSERT_PAD_ADD_ANON \ |
cc76b5cc | 2626 | assert(func) |
6ba07ce1 | 2627 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_pv(pTHX_ const char *name, const U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc Z |
2628 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PV \ |
2629 | assert(name) | |
6ba07ce1 | 2630 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_pvn(pTHX_ const char *namepv, STRLEN namelen, U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc Z |
2631 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_PVN \ |
2632 | assert(namepv) | |
6ba07ce1 | 2633 | PERL_CALLCONV PADOFFSET Perl_pad_add_name_sv(pTHX_ SV *name, U32 flags, HV *typestash, HV *ourstash); |
cc76b5cc | 2634 | #define PERL_ARGS_ASSERT_PAD_ADD_NAME_SV \ |
7918f24d | 2635 | assert(name) |
6ba07ce1 | 2636 | PERL_CALLCONV void Perl_pad_add_weakref(pTHX_ CV* func); |
a70f21d0 FC |
2637 | #define PERL_ARGS_ASSERT_PAD_ADD_WEAKREF \ |
2638 | assert(func) | |
e8a67806 | 2639 | PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype); |
2015d234 | 2640 | #define PERL_ARGS_ASSERT_PAD_ALLOC |
e8a67806 | 2641 | PERL_CALLCONV void Perl_pad_block_start(pTHX_ int full); |
2015d234 | 2642 | #define PERL_ARGS_ASSERT_PAD_BLOCK_START |
3f1866a8 | 2643 | #ifndef NO_MATHOMS |
e8a67806 | 2644 | PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po) |
5c27e8a2 | 2645 | __attribute__deprecated__ |
e8a67806 | 2646 | __attribute__warn_unused_result__; |
2015d234 | 2647 | #define PERL_ARGS_ASSERT_PAD_COMPNAME_TYPE |
3f1866a8 | 2648 | #endif |
e8a67806 | 2649 | |
6ba07ce1 | 2650 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_pv(pTHX_ const char* name, U32 flags); |
cc76b5cc Z |
2651 | #define PERL_ARGS_ASSERT_PAD_FINDMY_PV \ |
2652 | assert(name) | |
6ba07ce1 | 2653 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_pvn(pTHX_ const char* namepv, STRLEN namelen, U32 flags); |
cc76b5cc Z |
2654 | #define PERL_ARGS_ASSERT_PAD_FINDMY_PVN \ |
2655 | assert(namepv) | |
6ba07ce1 | 2656 | PERL_CALLCONV PADOFFSET Perl_pad_findmy_sv(pTHX_ SV* name, U32 flags); |
cc76b5cc | 2657 | #define PERL_ARGS_ASSERT_PAD_FINDMY_SV \ |
7918f24d | 2658 | assert(name) |
6ba07ce1 | 2659 | PERL_CALLCONV void Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv); |
e8a67806 NC |
2660 | #define PERL_ARGS_ASSERT_PAD_FIXUP_INNER_ANONS \ |
2661 | assert(padlist); assert(old_cv); assert(new_cv) | |
e8a67806 | 2662 | PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po); |
2015d234 | 2663 | #define PERL_ARGS_ASSERT_PAD_FREE |
6d5c2147 | 2664 | PERL_CALLCONV OP * Perl_pad_leavemy(pTHX); |
2015d234 | 2665 | #define PERL_ARGS_ASSERT_PAD_LEAVEMY |
e8a67806 | 2666 | PERL_CALLCONV PADLIST* Perl_pad_new(pTHX_ int flags) |
e8a67806 | 2667 | __attribute__warn_unused_result__; |
2015d234 | 2668 | #define PERL_ARGS_ASSERT_PAD_NEW |
f54cb97a | 2669 | |
6ba07ce1 | 2670 | PERL_CALLCONV void Perl_pad_push(pTHX_ PADLIST *padlist, int depth); |
e8a67806 NC |
2671 | #define PERL_ARGS_ASSERT_PAD_PUSH \ |
2672 | assert(padlist) | |
e8a67806 | 2673 | PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust); |
2015d234 | 2674 | #define PERL_ARGS_ASSERT_PAD_SWIPE |
e8a67806 | 2675 | PERL_CALLCONV void Perl_pad_tidy(pTHX_ padtidy_type type); |
2015d234 | 2676 | #define PERL_ARGS_ASSERT_PAD_TIDY |
6ba07ce1 | 2677 | PERL_CALLCONV PAD ** Perl_padlist_store(pTHX_ PADLIST *padlist, I32 key, PAD *val); |
7261499d FC |
2678 | #define PERL_ARGS_ASSERT_PADLIST_STORE \ |
2679 | assert(padlist) | |
6ba07ce1 | 2680 | PERL_CALLCONV void Perl_padname_free(pTHX_ PADNAME *pn); |
0f94cb1f FC |
2681 | #define PERL_ARGS_ASSERT_PADNAME_FREE \ |
2682 | assert(pn) | |
a0e9f837 | 2683 | PERL_CALLCONV PADNAME * Perl_padnamelist_fetch(PADNAMELIST *pnl, SSize_t key) |
6ba07ce1 | 2684 | __attribute__warn_unused_result__; |
9b7476d7 FC |
2685 | #define PERL_ARGS_ASSERT_PADNAMELIST_FETCH \ |
2686 | assert(pnl) | |
2687 | ||
6ba07ce1 | 2688 | PERL_CALLCONV void Perl_padnamelist_free(pTHX_ PADNAMELIST *pnl); |
9b7476d7 FC |
2689 | #define PERL_ARGS_ASSERT_PADNAMELIST_FREE \ |
2690 | assert(pnl) | |
6ba07ce1 | 2691 | PERL_CALLCONV PADNAME ** Perl_padnamelist_store(pTHX_ PADNAMELIST *pnl, SSize_t key, PADNAME *val); |
9b7476d7 FC |
2692 | #define PERL_ARGS_ASSERT_PADNAMELIST_STORE \ |
2693 | assert(pnl) | |
78cdf107 | 2694 | PERL_CALLCONV OP* Perl_parse_arithexpr(pTHX_ U32 flags); |
2015d234 | 2695 | #define PERL_ARGS_ASSERT_PARSE_ARITHEXPR |
8359b381 | 2696 | PERL_CALLCONV OP* Perl_parse_barestmt(pTHX_ U32 flags); |
2015d234 | 2697 | #define PERL_ARGS_ASSERT_PARSE_BARESTMT |
e53d8f76 | 2698 | PERL_CALLCONV OP* Perl_parse_block(pTHX_ U32 flags); |
2015d234 | 2699 | #define PERL_ARGS_ASSERT_PARSE_BLOCK |
78cdf107 | 2700 | PERL_CALLCONV OP* Perl_parse_fullexpr(pTHX_ U32 flags); |
2015d234 | 2701 | #define PERL_ARGS_ASSERT_PARSE_FULLEXPR |
e8a67806 | 2702 | PERL_CALLCONV OP* Perl_parse_fullstmt(pTHX_ U32 flags); |
2015d234 | 2703 | #define PERL_ARGS_ASSERT_PARSE_FULLSTMT |
361d9b55 | 2704 | PERL_CALLCONV SV* Perl_parse_label(pTHX_ U32 flags); |
2015d234 | 2705 | #define PERL_ARGS_ASSERT_PARSE_LABEL |
78cdf107 | 2706 | PERL_CALLCONV OP* Perl_parse_listexpr(pTHX_ U32 flags); |
2015d234 | 2707 | #define PERL_ARGS_ASSERT_PARSE_LISTEXPR |
07ffcb73 | 2708 | PERL_CALLCONV OP* Perl_parse_stmtseq(pTHX_ U32 flags); |
2015d234 | 2709 | #define PERL_ARGS_ASSERT_PARSE_STMTSEQ |
996b0cb8 | 2710 | PERL_CALLCONV OP* Perl_parse_subsignature(pTHX_ U32 flags); |
2015d234 | 2711 | #define PERL_ARGS_ASSERT_PARSE_SUBSIGNATURE |
78cdf107 | 2712 | PERL_CALLCONV OP* Perl_parse_termexpr(pTHX_ U32 flags); |
2015d234 | 2713 | #define PERL_ARGS_ASSERT_PARSE_TERMEXPR |
6ba07ce1 | 2714 | PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt); |
e8a67806 NC |
2715 | #define PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS \ |
2716 | assert(popt) | |
6ba07ce1 | 2717 | PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser); |
e8a67806 NC |
2718 | #define PERL_ARGS_ASSERT_PARSER_FREE \ |
2719 | assert(parser) | |
e8a67806 | 2720 | PERL_CALLCONV void Perl_peep(pTHX_ OP* o); |
2015d234 | 2721 | #define PERL_ARGS_ASSERT_PEEP |
e8a67806 | 2722 | PERL_CALLCONV PerlInterpreter* perl_alloc(void); |
2015d234 | 2723 | #define PERL_ARGS_ASSERT_PERL_ALLOC |
6ba07ce1 | 2724 | PERL_CALLCONV void perl_construct(PerlInterpreter *my_perl); |
e8a67806 NC |
2725 | #define PERL_ARGS_ASSERT_PERL_CONSTRUCT \ |
2726 | assert(my_perl) | |
6ba07ce1 | 2727 | PERL_CALLCONV int perl_destruct(PerlInterpreter *my_perl); |
e8a67806 NC |
2728 | #define PERL_ARGS_ASSERT_PERL_DESTRUCT \ |
2729 | assert(my_perl) | |
6ba07ce1 | 2730 | PERL_CALLCONV void perl_free(PerlInterpreter *my_perl); |
e8a67806 NC |
2731 | #define PERL_ARGS_ASSERT_PERL_FREE \ |
2732 | assert(my_perl) | |
6ba07ce1 | 2733 | PERL_CALLCONV int perl_parse(PerlInterpreter *my_perl, XSINIT_t xsinit, int argc, char** argv, char** env); |
e8a67806 NC |
2734 | #define PERL_ARGS_ASSERT_PERL_PARSE \ |
2735 | assert(my_perl) | |
6ba07ce1 | 2736 | PERL_CALLCONV int perl_run(PerlInterpreter *my_perl); |
e8a67806 NC |
2737 | #define PERL_ARGS_ASSERT_PERL_RUN \ |
2738 | assert(my_perl) | |
8a5e470b DM |
2739 | PERL_CALLCONV Signal_t Perl_perly_sighandler(int sig, Siginfo_t *info, void *uap, bool safe); |
2740 | #define PERL_ARGS_ASSERT_PERLY_SIGHANDLER | |
e8a67806 | 2741 | PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm); |
2015d234 | 2742 | #define PERL_ARGS_ASSERT_PMOP_DUMP |
5012eebe | 2743 | PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP *o, OP *expr, OP *repl, UV flags, I32 floor); |
7918f24d NC |
2744 | #define PERL_ARGS_ASSERT_PMRUNTIME \ |
2745 | assert(o); assert(expr) | |
1d7c1841 | 2746 | PERL_CALLCONV void Perl_pop_scope(pTHX); |
2015d234 | 2747 | #define PERL_ARGS_ASSERT_POP_SCOPE |
6ba07ce1 | 2748 | PERL_CALLCONV void Perl_populate_isa(pTHX_ const char *name, STRLEN len, ...); |
74e8ce34 NC |
2749 | #define PERL_ARGS_ASSERT_POPULATE_ISA \ |
2750 | assert(name) | |
6ba07ce1 | 2751 | PERL_CALLCONV REGEXP* Perl_pregcomp(pTHX_ SV * const pattern, const U32 flags); |
e8a67806 NC |
2752 | #define PERL_ARGS_ASSERT_PREGCOMP \ |
2753 | assert(pattern) | |
6ba07ce1 | 2754 | PERL_CALLCONV I32 Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, SSize_t minend, SV* screamer, U32 nosave); |
e8a67806 NC |
2755 | #define PERL_ARGS_ASSERT_PREGEXEC \ |
2756 | assert(prog); assert(stringarg); assert(strend); assert(strbeg); assert(screamer) | |
e8a67806 | 2757 | PERL_CALLCONV void Perl_pregfree(pTHX_ REGEXP* r); |
2015d234 | 2758 | #define PERL_ARGS_ASSERT_PREGFREE |
6ba07ce1 | 2759 | PERL_CALLCONV void Perl_pregfree2(pTHX_ REGEXP *rx); |
e8a67806 NC |
2760 | #define PERL_ARGS_ASSERT_PREGFREE2 \ |
2761 | assert(rx) | |
6ba07ce1 | 2762 | 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); |
e8a67806 NC |
2763 | #define PERL_ARGS_ASSERT_PRESCAN_VERSION \ |
2764 | assert(s) | |
e8a67806 NC |
2765 | PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl) |
2766 | __attribute__deprecated__; | |
2015d234 | 2767 | #define PERL_ARGS_ASSERT_PTR_TABLE_CLEAR |
e8a67806 NC |
2768 | |
2769 | PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv) | |
6ba07ce1 | 2770 | __attribute__warn_unused_result__; |
e8a67806 NC |
2771 | #define PERL_ARGS_ASSERT_PTR_TABLE_FETCH \ |
2772 | assert(tbl) | |
2773 | ||
2774 | PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl); | |
2015d234 | 2775 | #define PERL_ARGS_ASSERT_PTR_TABLE_FREE |
e8a67806 | 2776 | PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX) |
e8a67806 | 2777 | __attribute__warn_unused_result__; |
2015d234 | 2778 | #define PERL_ARGS_ASSERT_PTR_TABLE_NEW |
e8a67806 | 2779 | |
6ba07ce1 | 2780 | PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl); |
e8a67806 NC |
2781 | #define PERL_ARGS_ASSERT_PTR_TABLE_SPLIT \ |
2782 | assert(tbl) | |
6ba07ce1 | 2783 | PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv); |
e8a67806 NC |
2784 | #define PERL_ARGS_ASSERT_PTR_TABLE_STORE \ |
2785 | assert(tbl); assert(newsv) | |
e8a67806 | 2786 | PERL_CALLCONV void Perl_push_scope(pTHX); |
2015d234 | 2787 | #define PERL_ARGS_ASSERT_PUSH_SCOPE |
6ba07ce1 | 2788 | PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim); |
e8a67806 NC |
2789 | #define PERL_ARGS_ASSERT_PV_DISPLAY \ |
2790 | assert(dsv); assert(pv) | |
6ba07ce1 | 2791 | 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); |
e8a67806 | 2792 | #define PERL_ARGS_ASSERT_PV_ESCAPE \ |
4420a417 | 2793 | assert(str) |
6ba07ce1 | 2794 | 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); |
e8a67806 NC |
2795 | #define PERL_ARGS_ASSERT_PV_PRETTY \ |
2796 | assert(dsv); assert(str) | |
6ba07ce1 | 2797 | PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags); |
e8a67806 NC |
2798 | #define PERL_ARGS_ASSERT_PV_UNI_DISPLAY \ |
2799 | assert(dsv); assert(spv) | |
6ba07ce1 | 2800 | PERL_CALLCONV void Perl_qerror(pTHX_ SV* err); |
e8a67806 NC |
2801 | #define PERL_ARGS_ASSERT_QERROR \ |
2802 | assert(err) | |
6ba07ce1 | 2803 | PERL_CALLCONV REGEXP* Perl_re_compile(pTHX_ SV * const pattern, U32 orig_rx_flags); |
e8a67806 NC |
2804 | #define PERL_ARGS_ASSERT_RE_COMPILE \ |
2805 | assert(pattern) | |
6ba07ce1 | 2806 | PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV* sv, const char* const strbeg, char* strpos, char* strend, const U32 flags, re_scream_pos_data *data); |
e8a67806 | 2807 | #define PERL_ARGS_ASSERT_RE_INTUIT_START \ |
52a21eb3 | 2808 | assert(rx); assert(strbeg); assert(strpos); assert(strend) |
6ba07ce1 | 2809 | PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ REGEXP *const r); |
e8a67806 NC |
2810 | #define PERL_ARGS_ASSERT_RE_INTUIT_STRING \ |
2811 | assert(r) | |
fb1ab119 | 2812 | PERL_CALLCONV REGEXP* Perl_re_op_compile(pTHX_ SV ** const patternp, int pat_count, OP *expr, const regexp_engine* eng, REGEXP *old_re, bool *is_bare_re, const U32 rx_flags, const U32 pm_flags); |
3c13cae6 DM |
2813 | #define PERL_ARGS_ASSERT_RE_OP_COMPILE \ |
2814 | assert(eng) | |
e8a67806 | 2815 | PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes) |
e8a67806 | 2816 | __attribute__warn_unused_result__; |
2015d234 | 2817 | #define PERL_ARGS_ASSERT_REALLOC |
e8a67806 | 2818 | |
f59c1a32 | 2819 | PERL_CALLCONV void Perl_reentrant_free(pTHX); |
2015d234 | 2820 | #define PERL_ARGS_ASSERT_REENTRANT_FREE |
f59c1a32 | 2821 | PERL_CALLCONV void Perl_reentrant_init(pTHX); |
2015d234 | 2822 | #define PERL_ARGS_ASSERT_REENTRANT_INIT |
6ba07ce1 | 2823 | PERL_CALLCONV void* Perl_reentrant_retry(const char *f, ...); |
f59c1a32 CB |
2824 | #define PERL_ARGS_ASSERT_REENTRANT_RETRY \ |
2825 | assert(f) | |
f59c1a32 | 2826 | PERL_CALLCONV void Perl_reentrant_size(pTHX); |
2015d234 | 2827 | #define PERL_ARGS_ASSERT_REENTRANT_SIZE |
20439bc7 | 2828 | PERL_CALLCONV HV * Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *c, U32 flags); |
2015d234 | 2829 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_CHAIN_2HV |
6ba07ce1 | 2830 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pv(pTHX_ const struct refcounted_he *chain, const char *key, U32 hash, U32 flags); |
20439bc7 Z |
2831 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PV \ |
2832 | assert(key) | |
6ba07ce1 | 2833 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_pvn(pTHX_ const struct refcounted_he *chain, const char *keypv, STRLEN keylen, U32 hash, U32 flags); |
20439bc7 Z |
2834 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PVN \ |
2835 | assert(keypv) | |
6ba07ce1 | 2836 | PERL_CALLCONV SV * Perl_refcounted_he_fetch_sv(pTHX_ const struct refcounted_he *chain, SV *key, U32 hash, U32 flags); |
20439bc7 Z |
2837 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_SV \ |
2838 | assert(key) | |
e8a67806 | 2839 | PERL_CALLCONV void Perl_refcounted_he_free(pTHX_ struct refcounted_he *he); |
2015d234 | 2840 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_FREE |
20439bc7 | 2841 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he); |
2015d234 | 2842 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_INC |
6ba07ce1 | 2843 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_pv(pTHX_ struct refcounted_he *parent, const char *key, U32 hash, SV *value, U32 flags); |
20439bc7 Z |
2844 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PV \ |
2845 | assert(key) | |
6ba07ce1 | 2846 | 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); |
20439bc7 Z |
2847 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PVN \ |
2848 | assert(keypv) | |
6ba07ce1 | 2849 | PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new_sv(pTHX_ struct refcounted_he *parent, SV *key, U32 hash, SV *value, U32 flags); |
20439bc7 Z |
2850 | #define PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_SV \ |
2851 | assert(key) | |
6ba07ce1 | 2852 | PERL_CALLCONV SV* Perl_reg_named_buff(pTHX_ REGEXP * const rx, SV * const key, SV * const value, const U32 flags); |
e8a67806 NC |
2853 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF \ |
2854 | assert(rx) | |
6ba07ce1 | 2855 | PERL_CALLCONV SV* Perl_reg_named_buff_all(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2856 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ALL \ |
2857 | assert(rx) | |
6ba07ce1 | 2858 | PERL_CALLCONV bool Perl_reg_named_buff_exists(pTHX_ REGEXP * const rx, SV * const key, const U32 flags); |
e8a67806 NC |
2859 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_EXISTS \ |
2860 | assert(rx); assert(key) | |
6ba07ce1 | 2861 | PERL_CALLCONV SV* Perl_reg_named_buff_fetch(pTHX_ REGEXP * const rx, SV * const namesv, const U32 flags); |
e8a67806 NC |
2862 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FETCH \ |
2863 | assert(rx); assert(namesv) | |
6ba07ce1 | 2864 | PERL_CALLCONV SV* Perl_reg_named_buff_firstkey(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2865 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_FIRSTKEY \ |
2866 | assert(rx) | |
6ba07ce1 | 2867 | PERL_CALLCONV SV* Perl_reg_named_buff_iter(pTHX_ REGEXP * const rx, const SV * const lastkey, const U32 flags); |
e8a67806 NC |
2868 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_ITER \ |
2869 | assert(rx) | |
6ba07ce1 | 2870 | PERL_CALLCONV SV* Perl_reg_named_buff_nextkey(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2871 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_NEXTKEY \ |
2872 | assert(rx) | |
6ba07ce1 | 2873 | PERL_CALLCONV SV* Perl_reg_named_buff_scalar(pTHX_ REGEXP * const rx, const U32 flags); |
e8a67806 NC |
2874 | #define PERL_ARGS_ASSERT_REG_NAMED_BUFF_SCALAR \ |
2875 | assert(rx) | |
6ba07ce1 | 2876 | PERL_CALLCONV void Perl_reg_numbered_buff_fetch(pTHX_ REGEXP * const rx, const I32 paren, SV * const sv); |
e8a67806 NC |
2877 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_FETCH \ |
2878 | assert(rx) | |
6ba07ce1 | 2879 | PERL_CALLCONV I32 Perl_reg_numbered_buff_length(pTHX_ REGEXP * const rx, const SV * const sv, const I32 paren); |
e8a67806 NC |
2880 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_LENGTH \ |
2881 | assert(rx); assert(sv) | |
6ba07ce1 | 2882 | PERL_CALLCONV void Perl_reg_numbered_buff_store(pTHX_ REGEXP * const rx, const I32 paren, SV const * const value); |
e8a67806 NC |
2883 | #define PERL_ARGS_ASSERT_REG_NUMBERED_BUFF_STORE \ |
2884 | assert(rx) | |
6ba07ce1 | 2885 | PERL_CALLCONV SV* Perl_reg_qr_package(pTHX_ REGEXP * const rx); |
e8a67806 NC |
2886 | #define PERL_ARGS_ASSERT_REG_QR_PACKAGE \ |
2887 | assert(rx) | |
89699a04 | 2888 | PERL_CALLCONV REGEXP* Perl_reg_temp_copy(pTHX_ REGEXP* dsv, REGEXP* ssv); |
e8a67806 | 2889 | #define PERL_ARGS_ASSERT_REG_TEMP_COPY \ |
89699a04 | 2890 | assert(ssv) |
6ba07ce1 | 2891 | PERL_CALLCONV void Perl_regdump(pTHX_ const regexp* r); |
e8a67806 NC |
2892 | #define PERL_ARGS_ASSERT_REGDUMP \ |
2893 | assert(r) | |
6ba07ce1 | 2894 | PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ REGEXP *const rx, char *stringarg, char *strend, char *strbeg, SSize_t minend, SV *sv, void *data, U32 flags); |
e8a67806 NC |
2895 | #define PERL_ARGS_ASSERT_REGEXEC_FLAGS \ |
2896 | assert(rx); assert(stringarg); assert(strend); assert(strbeg); assert(sv) | |
6ba07ce1 | 2897 | PERL_CALLCONV void Perl_regfree_internal(pTHX_ REGEXP *const rx); |
e8a67806 NC |
2898 | #define PERL_ARGS_ASSERT_REGFREE_INTERNAL \ |
2899 | assert(rx) | |
e8a67806 | 2900 | PERL_CALLCONV void Perl_reginitcolors(pTHX); |
2015d234 | 2901 | #define PERL_ARGS_ASSERT_REGINITCOLORS |
e8a67806 NC |
2902 | PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) |
2903 | __attribute__warn_unused_result__; | |
2015d234 | 2904 | #define PERL_ARGS_ASSERT_REGNEXT |
e8a67806 | 2905 | |
6ba07ce1 | 2906 | PERL_CALLCONV void Perl_repeatcpy(char* to, const char* from, I32 len, IV count); |
e8a67806 NC |
2907 | #define PERL_ARGS_ASSERT_REPEATCPY \ |
2908 | assert(to); assert(from) | |
831e4cc3 | 2909 | PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv); |
2015d234 | 2910 | #define PERL_ARGS_ASSERT_REPORT_EVIL_FH |
e8a67806 | 2911 | PERL_CALLCONV void Perl_report_uninit(pTHX_ const SV *uninit_sv); |
2015d234 | 2912 | #define PERL_ARGS_ASSERT_REPORT_UNINIT |
a5390457 | 2913 | PERL_CALLCONV void Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have); |
2015d234 | 2914 | #define PERL_ARGS_ASSERT_REPORT_WRONGWAY_FH |
6ba07ce1 | 2915 | PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv); |
e8a67806 NC |
2916 | #define PERL_ARGS_ASSERT_REQUIRE_PV \ |
2917 | assert(pv) | |
e8a67806 | 2918 | PERL_CALLCONV char* Perl_rninstr(const char* big, const char* bigend, const char* little, const char* lend) |
b289a0bd | 2919 | __attribute__warn_unused_result__ |
6ba07ce1 | 2920 | __attribute__pure__; |
e8a67806 NC |
2921 | #define PERL_ARGS_ASSERT_RNINSTR \ |
2922 | assert(big); assert(bigend); assert(little); assert(lend) | |
2923 | ||
2924 | PERL_CALLCONV void Perl_rpeep(pTHX_ OP* o); | |
2015d234 | 2925 | #define PERL_ARGS_ASSERT_RPEEP |
e8a67806 | 2926 | PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t); |
2015d234 | 2927 | #define PERL_ARGS_ASSERT_RSIGNAL |
e8a67806 | 2928 | PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t); |
2015d234 | 2929 | #define PERL_ARGS_ASSERT_RSIGNAL_RESTORE |
6ba07ce1 | 2930 | PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* save); |
e8a67806 NC |
2931 | #define PERL_ARGS_ASSERT_RSIGNAL_SAVE \ |
2932 | assert(save) | |
e8a67806 | 2933 | PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i); |
2015d234 | 2934 | #define PERL_ARGS_ASSERT_RSIGNAL_STATE |
e8a67806 | 2935 | PERL_CALLCONV int Perl_runops_debug(pTHX); |
2015d234 | 2936 | #define PERL_ARGS_ASSERT_RUNOPS_DEBUG |
e8a67806 | 2937 | PERL_CALLCONV int Perl_runops_standard(pTHX); |
2015d234 | 2938 | #define PERL_ARGS_ASSERT_RUNOPS_STANDARD |
6ba07ce1 | 2939 | PERL_CALLCONV CV* Perl_rv2cv_op_cv(pTHX_ OP *cvop, U32 flags); |
d9088386 Z |
2940 | #define PERL_ARGS_ASSERT_RV2CV_OP_CV \ |
2941 | assert(cvop) | |
6ba07ce1 | 2942 | PERL_CALLCONV void Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx); |
e8a67806 NC |
2943 | #define PERL_ARGS_ASSERT_RXRES_SAVE \ |
2944 | assert(rsp); assert(rx) | |
e8a67806 NC |
2945 | PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size) |
2946 | __attribute__malloc__ | |
2947 | __attribute__warn_unused_result__; | |
2015d234 | 2948 | #define PERL_ARGS_ASSERT_SAFESYSCALLOC |
e8a67806 NC |
2949 | |
2950 | PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); | |
2015d234 | 2951 | #define PERL_ARGS_ASSERT_SAFESYSFREE |
e8a67806 NC |
2952 | PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes) |
2953 | __attribute__malloc__ | |
2954 | __attribute__warn_unused_result__; | |
2015d234 | 2955 | #define PERL_ARGS_ASSERT_SAFESYSMALLOC |
e8a67806 NC |
2956 | |
2957 | PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes) | |
e8a67806 | 2958 | __attribute__warn_unused_result__; |
2015d234 | 2959 | #define PERL_ARGS_ASSERT_SAFESYSREALLOC |
e8a67806 | 2960 | |
6ba07ce1 | 2961 | PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp); |
e8a67806 NC |
2962 | #define PERL_ARGS_ASSERT_SAVE_I16 \ |
2963 | assert(intp) | |
6ba07ce1 | 2964 | PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp); |
e8a67806 NC |
2965 | #define PERL_ARGS_ASSERT_SAVE_I32 \ |
2966 | assert(intp) | |
6ba07ce1 | 2967 | PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep); |
e8a67806 NC |
2968 | #define PERL_ARGS_ASSERT_SAVE_I8 \ |
2969 | assert(bytep) | |
6ba07ce1 | 2970 | PERL_CALLCONV void Perl_save_adelete(pTHX_ AV *av, SSize_t key); |
e8a67806 NC |
2971 | #define PERL_ARGS_ASSERT_SAVE_ADELETE \ |
2972 | assert(av) | |
5178f485 | 2973 | /* PERL_CALLCONV void save_aelem(pTHX_ AV* av, SSize_t idx, SV **sptr); */ |
2015d234 | 2974 | #define PERL_ARGS_ASSERT_SAVE_AELEM |
6ba07ce1 | 2975 | PERL_CALLCONV void Perl_save_aelem_flags(pTHX_ AV* av, SSize_t idx, SV **sptr, const U32 flags); |
e8a67806 NC |
2976 | #define PERL_ARGS_ASSERT_SAVE_AELEM_FLAGS \ |
2977 | assert(av); assert(sptr) | |
e8a67806 | 2978 | PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad); |
2015d234 | 2979 | #define PERL_ARGS_ASSERT_SAVE_ALLOC |
6ba07ce1 | 2980 | PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr); |
e8a67806 NC |
2981 | #define PERL_ARGS_ASSERT_SAVE_APTR \ |
2982 | assert(aptr) | |
6ba07ce1 | 2983 | PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv); |
e8a67806 NC |
2984 | #define PERL_ARGS_ASSERT_SAVE_ARY \ |
2985 | assert(gv) | |
6ba07ce1 | 2986 | PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp); |
e8a67806 NC |
2987 | #define PERL_ARGS_ASSERT_SAVE_BOOL \ |
2988 | assert(boolp) | |
6ba07ce1 | 2989 | PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp); |
e8a67806 NC |
2990 | #define PERL_ARGS_ASSERT_SAVE_CLEARSV \ |
2991 | assert(svp) | |
6ba07ce1 | 2992 | PERL_CALLCONV void Perl_save_delete(pTHX_ HV *hv, char *key, I32 klen); |
e8a67806 NC |
2993 | #define PERL_ARGS_ASSERT_SAVE_DELETE \ |
2994 | assert(hv); assert(key) | |
6ba07ce1 | 2995 | PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p); |
e8a67806 NC |
2996 | #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR \ |
2997 | assert(p) | |
e8a67806 | 2998 | PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p); |
2015d234 | 2999 | #define PERL_ARGS_ASSERT_SAVE_DESTRUCTOR_X |
3f1866a8 KW |
3000 | #ifndef NO_MATHOMS |
3001 | PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o); | |
2015d234 | 3002 | #define PERL_ARGS_ASSERT_SAVE_FREEOP |
3f1866a8 KW |
3003 | #endif |
3004 | #ifndef NO_MATHOMS | |
3005 | PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv); | |
2015d234 | 3006 | #define PERL_ARGS_ASSERT_SAVE_FREEPV |
3f1866a8 KW |
3007 | #endif |
3008 | #ifndef NO_MATHOMS | |
3009 | PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv); | |
2015d234 | 3010 | #define PERL_ARGS_ASSERT_SAVE_FREESV |
3f1866a8 | 3011 | #endif |
6ba07ce1 | 3012 | PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str); |
e8a67806 NC |
3013 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_PVREF \ |
3014 | assert(str) | |
6ba07ce1 | 3015 | PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr); |
e8a67806 NC |
3016 | #define PERL_ARGS_ASSERT_SAVE_GENERIC_SVREF \ |
3017 | assert(sptr) | |
6ba07ce1 | 3018 | PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty); |
e8a67806 NC |
3019 | #define PERL_ARGS_ASSERT_SAVE_GP \ |
3020 | assert(gv) | |
6ba07ce1 | 3021 | PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv); |
e8a67806 NC |
3022 | #define PERL_ARGS_ASSERT_SAVE_HASH \ |
3023 | assert(gv) | |
6ba07ce1 | 3024 | PERL_CALLCONV void Perl_save_hdelete(pTHX_ HV *hv, SV *keysv); |
e8a67806 NC |
3025 | #define PERL_ARGS_ASSERT_SAVE_HDELETE \ |
3026 | assert(hv); assert(keysv) | |
5178f485 | 3027 | /* PERL_CALLCONV void save_helem(pTHX_ HV *hv, SV *key, SV **sptr); */ |
2015d234 | 3028 | #define PERL_ARGS_ASSERT_SAVE_HELEM |
6ba07ce1 | 3029 | PERL_CALLCONV void Perl_save_helem_flags(pTHX_ HV *hv, SV *key, SV **sptr, const U32 flags); |
e8a67806 NC |
3030 | #define PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS \ |
3031 | assert(hv); assert(key); assert(sptr) | |
e8a67806 | 3032 | PERL_CALLCONV void Perl_save_hints(pTHX); |
2015d234 | 3033 | #define PERL_ARGS_ASSERT_SAVE_HINTS |
6ba07ce1 | 3034 | PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr); |
e8a67806 NC |