1 : BEGIN{die "You meant to run regen/embed.pl"} # Stop early if fed to perl.
3 : This file is processed by regen/embed.pl and autodoc.pl
4 : It is used to declare the interfaces to the functions defined by perl. All
5 : non-static functions must have entries here. Static functions need not, but
6 : there is benefit to declaring them here, as it generally handles the thread
7 : context parameter invisibly, as well as making sure a PERL_ARGS_ASSERT_foo
8 : macro is defined, which can save you debugging time.
10 : Lines are of the form:
11 : flags|return_type|function_name|arg1|arg2|...|argN
13 : A line may be continued on another by ending it with a backslash.
14 : Leading and trailing whitespace will be ignored in each component.
16 : The default without flags is to declare a function for internal perl-core use
17 : only, not visible to XS code nor to Perl extensions. Use the A and E flags to
18 : modify this. Most non-static functions should have the 'p' flag to avoid
19 : namespace clashes with programs that embed perl.
21 : flags are single letters with following meanings:
23 : A Available fully everywhere (usually part of the public API):
25 : add entry to the list of exported symbols (unless e or m);
26 : any doc entry goes in perlapi.pod rather than perlintern.pod. If no
27 : documentation is furnished for this function, and M is also
28 : specified, the function is not listed as part of the public API.
29 : If M isn't specified, and no documentation is furnished, the
30 : function is listed in perlapi as existing and being undocumented
31 : makes '#define foo Perl_foo' scope not just for PERL_CORE/PERL_EXT
33 : If the function is only exported for use in a public
36 : a Allocates memory a la malloc/calloc. Also implies "R".
37 : This should only be on functions which returns 'empty' memory
38 : which has no other pointers to it, and which does not contain
39 : any pointers to other things. So for example realloc() can't be
42 : proto.h: add __attribute__malloc__
44 : b Binary backward compatibility. This is used for functions which are
45 : kept only to not have to change legacy applications that call them. If
46 : there are no such legacy applications in a Perl installation for all
47 : functions flagged with this, the installation can run Configure with the
48 : -Accflags='-DNO_MATHOMS' parameter to not even compile them. If there
49 : is a macro form of this function that provides equivalent functionality
50 : (using a different implementation), also specify the 'm' flag. The 'b'
51 : functions are normally moved to mathoms.c, but if circumstances dictate
52 : otherwise, they can be anywhere, provided the whole function is wrapped
58 : Note that this flag no longer automatically adds a 'Perl_' prefix to the
59 : name. Additionally specify 'p' to do that.
61 : For functions, like wrappers, whose macro shortcut doesn't call the
62 : function, but which, for whatever reason, aren't considered legacy-only,
65 : This flag effectively causes nothing to happen if the perl interpreter
66 : is compiled with -DNO_MATHOMS; otherwise these happen:
67 : add entry to the list of exported symbols;
68 : create PERL_ARGS_ASSERT_foo;
69 : add embed.h entry (unless overridden by the 'm' flag)
71 : D Function is deprecated:
73 : proto.h: add __attribute__deprecated__
75 : d Function has documentation (somewhere) in the source:
77 : enables 'no docs for foo" warning in autodoc.pl
79 : E Visible to extensions included in the Perl core:
81 : in embed.h, change "#ifdef PERL_CORE"
82 : into "#if defined(PERL_CORE) || defined(PERL_EXT)"
84 : To be usable from dynamically loaded extensions, either:
85 : 1) must be static to its containing file ("i" or "s" flag); or
86 : 2) be combined with the "X" flag.
89 : suppress entry in the list of exported symbols
91 : f Function takes a format string. If the function name =~ qr/strftime/
92 : then its assumed to take a strftime-style format string as 1st arg;
93 : otherwise it's assumed to be a printf style format string, varargs
94 : (hence any entry that would otherwise go in embed.h is suppressed):
96 : proto.h: add __attribute__format__ (or ...null_ok__)
98 : i Static inline: function in source code has a S_ prefix:
100 : proto.h: function is declared as S_foo rather than foo unless the 'p'
101 : flag is also given in which case 'Perl_foo' is used,
102 : PERL_STATIC_INLINE is added to declaration;
103 : embed.h: "#define foo S_foo" or Perl_foo entries added
105 : M There is an extra macro that bypasses this function
107 : (requires 'p', and implies 'o') The function exists so that callers who
108 : used the 'Perl_' form can continue to do so, but there is a macro
109 : available with out the 'Perl_' prefix that bypasses the function call,
110 : such as when the function has been reduced to a wrapper around another
113 : m Implemented as a macro:
115 : suppress proto.h entry unless 'b' also specified (actually, not
116 : suppressed, but commented out)
117 : suppress entry in the list of exported symbols
118 : suppress embed.h entry
122 : O Has a perl_ compatibility macro.
124 : The really OLD name for API funcs
126 : o Has no Perl_foo or S_foo compatibility macro:
128 : This can be used when you define a macro with this entry's name that
129 : doesn't call the function specified by this entry. This is typically
130 : done for a function that effectively just wraps another one, and where
131 : the macro form calls the underlying function directly. For these, also
132 : specify the 'm' flag. Legacy-only functions should instead use 'b'.
134 : embed.h: suppress "#define foo Perl_foo"
138 : A pure function has no effects except the return value, and the return
139 : value depends only on params and/or globals. This is a hint to the
140 : compiler that it can optimize calls to this function out of common
141 : subexpressions. Consequently if this flag is wrongly specified, it can
142 : lead to subtle bugs that vary by platform, compiler, compiler version,
143 : and optimization level. Also, a future commit could easily change a
144 : currently-pure function without even noticing this flag. So it should
145 : be used sparingly, only for functions that are unlikely to ever become
146 : not pure by future commits. It should not be used for static
147 : functions, as the compiler already has the information needed to make
148 : the 'pure' determination and doesn't need any hint; so it doesn't add
149 : value in those cases, and could be dangerous if it causes the compiler
150 : to skip doing its own checks. It should not be used on functions that
151 : touch SVs, as those can trigger unexpected magic. Also implies "R":
153 : proto.h: add __attribute__pure__
155 : p Function in source code has a Perl_ prefix:
157 : proto.h: function is declared as Perl_foo rather than foo
158 : embed.h: "#define foo Perl_foo" entries added
160 : R Return value must not be ignored (also implied by 'a' and 'P' flags):
162 : proto.h: add __attribute__warn_unused_result__
164 : r Function never returns:
166 : proto.h: add __attribute__noreturn__
168 : S Static function: function in source code has a S_ prefix:
170 : proto.h: function is declared as S_foo rather than foo,
171 : STATIC is added to declaration;
172 : embed.h: "#define foo S_foo" entries added
174 : T Has no implicit interpreter/thread context argument:
176 : suppress the pTHX part of "foo(pTHX...)" in proto.h;
177 : In the PERL_IMPLICIT_SYS branch of embed.h, generates
178 : "#define foo Perl_foo", rather than
179 : "#define foo(a,b,c) Perl_foo(aTHX_ a,b,c)
181 : U Suppress usage example in autogenerated documentation
183 : (currently no effect)
185 : W Add a _pDEPTH argument to function prototypes, and an _aDEPTH
186 : argument to the function calls. This means that under DEBUGGING
187 : a depth argument is added to the functions, which is used for
188 : example by the regex engine for debugging and trace output.
189 : A non DEBUGGING build will not pass the unused argument.
190 : Currently restricted to functions with at least one argument.
192 : X Explicitly exported:
194 : add entry to the list of exported symbols, unless e or m
196 : This is often used for private functions that are used by public
197 : macros. In those cases the macros must use the long form of the
198 : name (Perl_blah(aTHX_ ...)).
200 : x Experimental, may change:
202 : any doc entry is marked that it may change. Also used to suppress
203 : making a doc entry if it would just be a placeholder.
205 : (see also L<perlguts/Internal Functions> for those flags.)
207 : Pointer parameters that must not be passed NULLs should be prefixed with NN.
209 : Pointer parameters that may be NULL should be prefixed with NULLOK. This has
210 : no effect on output yet. It's a notation for the maintainers to know "I have
211 : defined whether NULL is OK or not" rather than having neither NULL or NULLOK,
212 : which is ambiguous.
214 : Individual flags may be separated by whitespace.
216 #if defined(PERL_IMPLICIT_SYS)
217 ATo |PerlInterpreter*|perl_alloc_using \
218 |NN struct IPerlMem *ipM \
219 |NN struct IPerlMem *ipMS \
220 |NN struct IPerlMem *ipMP \
221 |NN struct IPerlEnv *ipE \
222 |NN struct IPerlStdIO *ipStd \
223 |NN struct IPerlLIO *ipLIO \
224 |NN struct IPerlDir *ipD \
225 |NN struct IPerlSock *ipS \
226 |NN struct IPerlProc *ipP
228 ATod |PerlInterpreter* |perl_alloc
229 ATod |void |perl_construct |NN PerlInterpreter *my_perl
230 ATod |int |perl_destruct |NN PerlInterpreter *my_perl
231 ATod |void |perl_free |NN PerlInterpreter *my_perl
232 ATod |int |perl_run |NN PerlInterpreter *my_perl
233 ATod |int |perl_parse |NN PerlInterpreter *my_perl|XSINIT_t xsinit \
234 |int argc|NULLOK char** argv|NULLOK char** env
235 ATpR |bool |doing_taint |int argc|NULLOK char** argv|NULLOK char** env
236 #if defined(USE_ITHREADS)
237 ATod |PerlInterpreter*|perl_clone|NN PerlInterpreter *proto_perl|UV flags
238 # if defined(PERL_IMPLICIT_SYS)
239 ATo |PerlInterpreter*|perl_clone_using \
240 |NN PerlInterpreter *proto_perl \
242 |NN struct IPerlMem* ipM \
243 |NN struct IPerlMem* ipMS \
244 |NN struct IPerlMem* ipMP \
245 |NN struct IPerlEnv* ipE \
246 |NN struct IPerlStdIO* ipStd \
247 |NN struct IPerlLIO* ipLIO \
248 |NN struct IPerlDir* ipD \
249 |NN struct IPerlSock* ipS \
250 |NN struct IPerlProc* ipP
254 AaTop |Malloc_t|malloc |MEM_SIZE nbytes
255 AaTop |Malloc_t|calloc |MEM_SIZE elements|MEM_SIZE size
256 ARTop |Malloc_t|realloc |Malloc_t where|MEM_SIZE nbytes
257 ATop |Free_t |mfree |Malloc_t where
258 #if defined(MYMALLOC)
259 TpR |MEM_SIZE|malloced_size |NN void *p
260 TpR |MEM_SIZE|malloc_good_size |size_t nbytes
262 #if defined(PERL_IN_MALLOC_C)
263 ST |int |adjust_size_and_find_bucket |NN size_t *nbytes_p
266 ATpR |void* |get_context
267 ATp |void |set_context |NN void *t
269 XEop |bool |try_amagic_bin |int method|int flags
270 XEop |bool |try_amagic_un |int method|int flags
271 Ap |SV* |amagic_call |NN SV* left|NN SV* right|int method|int dir
272 Ap |SV * |amagic_deref_call|NN SV *ref|int method
273 p |bool |amagic_is_enabled|int method
274 Ap |int |Gv_AMupdate |NN HV* stash|bool destructing
275 ApR |CV* |gv_handler |NULLOK HV* stash|I32 id
276 Apd |OP* |op_append_elem |I32 optype|NULLOK OP* first|NULLOK OP* last
277 Apd |OP* |op_append_list |I32 optype|NULLOK OP* first|NULLOK OP* last
278 Apd |OP* |op_linklist |NN OP *o
279 Apd |OP* |op_prepend_elem|I32 optype|NULLOK OP* first|NULLOK OP* last
280 : FIXME - this is only called by pp_chown. They should be merged.
281 p |I32 |apply |I32 type|NN SV** mark|NN SV** sp
282 Apx |void |apply_attrs_string|NN const char *stashpv|NN CV *cv|NN const char *attrstr|STRLEN len
283 Apd |void |av_clear |NN AV *av
284 Apd |SV* |av_delete |NN AV *av|SSize_t key|I32 flags
285 ApdR |bool |av_exists |NN AV *av|SSize_t key
286 Apd |void |av_extend |NN AV *av|SSize_t key
287 p |void |av_extend_guts |NULLOK AV *av|SSize_t key \
289 |NN SV ***allocp|NN SV ***arrayp
290 ApdR |SV** |av_fetch |NN AV *av|SSize_t key|I32 lval
291 Apd |void |av_fill |NN AV *av|SSize_t fill
292 ApdR |SSize_t|av_len |NN AV *av
293 ApdR |AV* |av_make |SSize_t size|NN SV **strp
294 p |SV* |av_nonelem |NN AV *av|SSize_t ix
295 Apd |SV* |av_pop |NN AV *av
296 Apdoex |void |av_create_and_push|NN AV **const avp|NN SV *const val
297 Apd |void |av_push |NN AV *av|NN SV *val
298 : Used in scope.c, and by Data::Alias
299 EXp |void |av_reify |NN AV *av
300 ApdR |SV* |av_shift |NN AV *av
301 Apd |SV** |av_store |NN AV *av|SSize_t key|NULLOK SV *val
302 AidR |SSize_t|av_top_index |NN AV *av
303 AmpdR |SSize_t|av_tindex |NN AV *av
304 Apd |void |av_undef |NN AV *av
305 Apdoex |SV** |av_create_and_unshift_one|NN AV **const avp|NN SV *const val
306 Apd |void |av_unshift |NN AV *av|SSize_t num
307 Apo |SV** |av_arylen_p |NN AV *av
308 Apo |IV* |av_iter_p |NN AV *av
309 #if defined(PERL_IN_AV_C)
310 S |MAGIC* |get_aux_mg |NN AV *av
313 pR |OP* |bind_match |I32 type|NN OP *left|NN OP *right
315 ApdR |OP* |block_end |I32 floor|NULLOK OP* seq
318 ApdR |int |block_start |int full
319 Aodxp |void |blockhook_register |NN BHK *hk
321 p |void |boot_core_UNIVERSAL
323 p |void |boot_core_PerlIO
324 Ap |void |call_list |I32 oldscope|NN AV *paramList
325 Apd |const PERL_CONTEXT * |caller_cx|I32 level \
326 |NULLOK const PERL_CONTEXT **dbcxp
327 : Used in several source files
328 pR |bool |cando |Mode_t mode|bool effective|NN const Stat_t* statbufp
329 ApRT |U32 |cast_ulong |NV f
330 ApRT |I32 |cast_i32 |NV f
331 ApRT |IV |cast_iv |NV f
332 ApRT |UV |cast_uv |NV f
333 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
334 ApR |I32 |my_chsize |int fd|Off_t length
336 p |const COP*|closest_cop |NN const COP *cop|NULLOK const OP *o \
337 |NULLOK const OP *curop|bool opnext
339 ApdR |OP* |op_convert_list |I32 optype|I32 flags|NULLOK OP* o
340 : Used in op.c and perl.c
341 px |void |create_eval_scope|NULLOK OP *retop|U32 flags
342 Aprd |void |croak_sv |NN SV *baseex
343 : croak()'s first parm can be NULL. Otherwise, mod_perl breaks.
344 Afprd |void |croak |NULLOK const char* pat|...
345 Aprd |void |vcroak |NULLOK const char* pat|NULLOK va_list* args
346 ATprd |void |croak_no_modify
347 ATprd |void |croak_xs_usage |NN const CV *const cv \
348 |NN const char *const params
349 Tpr |void |croak_no_mem
350 TprX |void |croak_popstack
351 fTrp |void |croak_caller|NULLOK const char* pat|...
352 fTpre |void |noperl_die|NN const char* pat|...
354 Tore |void |win32_croak_not_implemented|NN const char * fname
356 #if defined(PERL_IMPLICIT_CONTEXT)
357 AfTrp |void |croak_nocontext|NULLOK const char* pat|...
358 AfTrp |OP* |die_nocontext |NULLOK const char* pat|...
359 AfTp |void |deb_nocontext |NN const char* pat|...
360 AfTp |char* |form_nocontext |NN const char* pat|...
361 ATp |void |load_module_nocontext|U32 flags|NN SV* name|NULLOK SV* ver|...
362 AfTp |SV* |mess_nocontext |NN const char* pat|...
363 AfTp |void |warn_nocontext |NN const char* pat|...
364 AfTp |void |warner_nocontext|U32 err|NN const char* pat|...
365 AfTp |SV* |newSVpvf_nocontext|NN const char *const pat|...
366 AfTp |void |sv_catpvf_nocontext|NN SV *const sv|NN const char *const pat|...
367 AfTp |void |sv_setpvf_nocontext|NN SV *const sv|NN const char *const pat|...
368 AfTp |void |sv_catpvf_mg_nocontext|NN SV *const sv|NN const char *const pat|...
369 AfTp |void |sv_setpvf_mg_nocontext|NN SV *const sv|NN const char *const pat|...
370 AbfTp |int |fprintf_nocontext|NN PerlIO *stream|NN const char *format|...
371 AbfTp |int |printf_nocontext|NN const char *format|...
374 p |SV * |core_prototype |NULLOK SV *sv|NN const char *name \
375 |const int code|NULLOK int * const opnum
377 p |OP * |coresub_op |NN SV *const coreargssv|const int code \
380 ExXp |void |cv_ckproto_len_flags |NN const CV* cv|NULLOK const GV* gv\
381 |NULLOK const char* p|const STRLEN len \
383 : Used in pp.c and pp_sys.c
384 ApdR |SV* |gv_const_sv |NN GV* gv
385 ApdRT |SV* |cv_const_sv |NULLOK const CV *const cv
386 pRT |SV* |cv_const_sv_or_av|NULLOK const CV *const cv
387 Apd |SV * |cv_name |NN CV *cv|NULLOK SV *sv|U32 flags
388 Apd |void |cv_undef |NN CV* cv
389 p |void |cv_undef_flags |NN CV* cv|U32 flags
390 p |void |cv_forget_slab |NULLOK CV *cv
391 Ap |void |cx_dump |NN PERL_CONTEXT* cx
392 Ap |SV* |filter_add |NULLOK filter_t funcp|NULLOK SV* datasv
393 Ap |void |filter_del |NN filter_t funcp
394 ApR |I32 |filter_read |int idx|NN SV *buf_sv|int maxlen
395 ApPR |char** |get_op_descs
396 ApPR |char** |get_op_names
397 : FIXME discussion on p5p
398 pPR |const char* |get_no_modify
399 : FIXME discussion on p5p
400 pPR |U32* |get_opargs
401 ApPR |PPADDR_t*|get_ppaddr
402 : Used by CXINC, which appears to be in widespread use
404 Afp |void |deb |NN const char* pat|...
405 Ap |void |vdeb |NN const char* pat|NULLOK va_list* args
406 Ap |void |debprofdump
407 EXp |SV* |multideref_stringify |NN const OP* o|NULLOK CV *cv
408 EXp |SV* |multiconcat_stringify |NN const OP* o
409 Ap |I32 |debop |NN const OP* o
411 Ap |I32 |debstackptrs
412 pR |SV * |defelem_target |NN SV *sv|NULLOK MAGIC *mg
413 ATp |char* |delimcpy |NN char* to|NN const char* toend|NN const char* from \
414 |NN const char* fromend|int delim|NN I32* retlen
415 Tp |char* |delimcpy_no_escape|NN char* to|NN const char* toend \
416 |NN const char* from \
417 |NN const char* fromend|int delim \
419 : Used in op.c, perl.c
420 px |void |delete_eval_scope
421 Aprd |OP* |die_sv |NN SV *baseex
422 Afrpd |OP* |die |NULLOK const char* pat|...
424 pr |void |die_unwind |NN SV* msv
425 Ap |void |dounwind |I32 cxix
427 pmb |bool|do_aexec |NULLOK SV* really|NN SV** mark|NN SV** sp
429 p |bool|do_aexec5 |NULLOK SV* really|NN SV** mark|NN SV** sp|int fd|int do_report
430 Abp |int |do_binmode |NN PerlIO *fp|int iotype|int mode
432 Ap |bool |do_close |NULLOK GV* gv|bool not_implicit
433 : Defined in doio.c, used only in pp_sys.c
434 p |bool |do_eof |NN GV* gv
436 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
437 pm |bool|do_exec |NN const char* cmd
439 p |bool|do_exec |NN const char* cmd
442 #if defined(WIN32) || defined(__SYMBIAN32__) || defined(VMS)
443 Ap |int |do_aspawn |NULLOK SV* really|NN SV** mark|NN SV** sp
444 Ap |int |do_spawn |NN char* cmd
445 Ap |int |do_spawn_nowait|NN char* cmd
448 p |bool|do_exec3 |NN const char *incmd|int fd|int do_report
450 #if defined(PERL_IN_DOIO_C)
451 S |void |exec_failed |NN const char *cmd|int fd|int do_report
452 S |bool |argvout_final |NN MAGIC *mg|NN IO *io|bool not_implicit
454 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
455 : Defined in doio.c, used only in pp_sys.c
456 p |I32 |do_ipcctl |I32 optype|NN SV** mark|NN SV** sp
457 : Defined in doio.c, used only in pp_sys.c
458 p |I32 |do_ipcget |I32 optype|NN SV** mark|NN SV** sp
459 : Defined in doio.c, used only in pp_sys.c
460 p |I32 |do_msgrcv |NN SV** mark|NN SV** sp
461 : Defined in doio.c, used only in pp_sys.c
462 p |I32 |do_msgsnd |NN SV** mark|NN SV** sp
463 : Defined in doio.c, used only in pp_sys.c
464 p |I32 |do_semop |NN SV** mark|NN SV** sp
465 : Defined in doio.c, used only in pp_sys.c
466 p |I32 |do_shmio |I32 optype|NN SV** mark|NN SV** sp
468 Ap |void |do_join |NN SV *sv|NN SV *delim|NN SV **mark|NN SV **sp
469 : Used in pp.c and pp_hot.c, prototype generated by regen/opcode.pl
471 : used in pp.c, pp_hot.c
472 pR |I32 |do_ncmp |NN SV *const left|NN SV *const right
473 Apmb |bool |do_open |NN GV* gv|NN const char* name|I32 len|int as_raw \
474 |int rawmode|int rawperm|NULLOK PerlIO* supplied_fp
475 Abp |bool |do_open9 |NN GV *gv|NN const char *name|I32 len|int as_raw \
476 |int rawmode|int rawperm|NULLOK PerlIO *supplied_fp \
478 pT |void |setfd_cloexec|int fd
479 pT |void |setfd_inhexec|int fd
480 p |void |setfd_cloexec_for_nonsysfd|int fd
481 p |void |setfd_inhexec_for_sysfd|int fd
482 p |void |setfd_cloexec_or_inhexec_by_sysfdness|int fd
483 pR |int |PerlLIO_dup_cloexec|int oldfd
484 p |int |PerlLIO_dup2_cloexec|int oldfd|int newfd
485 pR |int |PerlLIO_open_cloexec|NN const char *file|int flag
486 pR |int |PerlLIO_open3_cloexec|NN const char *file|int flag|int perm
487 pToR |int |my_mkstemp_cloexec|NN char *templte
489 pR |int |PerlProc_pipe_cloexec|NN int *pipefd
492 pR |int |PerlSock_socket_cloexec|int domain|int type|int protocol
493 pR |int |PerlSock_accept_cloexec|int listenfd \
494 |NULLOK struct sockaddr *addr \
495 |NULLOK Sock_size_t *addrlen
497 #if defined (HAS_SOCKETPAIR) || \
498 (defined (HAS_SOCKET) && defined(SOCK_DGRAM) && \
499 defined(AF_INET) && defined(PF_INET))
500 pR |int |PerlSock_socketpair_cloexec|int domain|int type|int protocol \
503 #if defined(PERL_IN_DOIO_C)
504 S |IO * |openn_setup |NN GV *gv|NN char *mode|NN PerlIO **saveifp \
505 |NN PerlIO **saveofp|NN int *savefd \
507 S |bool |openn_cleanup |NN GV *gv|NN IO *io|NULLOK PerlIO *fp \
508 |NN char *mode|NN const char *oname \
509 |NULLOK PerlIO *saveifp|NULLOK PerlIO *saveofp \
510 |int savefd|char savetype|int writing \
511 |bool was_fdopen|NULLOK const char *type \
512 |NULLOK Stat_t *statbufp
514 Ap |bool |do_openn |NN GV *gv|NN const char *oname|I32 len \
515 |int as_raw|int rawmode|int rawperm \
516 |NULLOK PerlIO *supplied_fp|NULLOK SV **svp \
518 xp |bool |do_open_raw |NN GV *gv|NN const char *oname|STRLEN len \
519 |int rawmode|int rawperm|NULLOK Stat_t *statbufp
520 xp |bool |do_open6 |NN GV *gv|NN const char *oname|STRLEN len \
521 |NULLOK PerlIO *supplied_fp|NULLOK SV **svp \
523 : Used in pp_hot.c and pp_sys.c
524 p |bool |do_print |NULLOK SV* sv|NN PerlIO* fp
527 : Defined in doio.c, used only in pp_sys.c
528 p |bool |do_seek |NULLOK GV* gv|Off_t pos|int whence
529 Ap |void |do_sprintf |NN SV* sv|SSize_t len|NN SV** sarg
530 : Defined in doio.c, used only in pp_sys.c
531 p |Off_t |do_sysseek |NN GV* gv|Off_t pos|int whence
532 : Defined in doio.c, used only in pp_sys.c
533 pR |Off_t |do_tell |NN GV* gv
534 : Defined in doop.c, used only in pp.c
535 p |Size_t |do_trans |NN SV* sv
536 : Used in my.c and pp.c
537 p |UV |do_vecget |NN SV* sv|STRLEN offset|int size
538 : Defined in doop.c, used only in mg.c (with /* XXX slurp this routine */)
539 p |void |do_vecset |NN SV* sv
540 : Defined in doop.c, used only in pp.c
541 p |void |do_vop |I32 optype|NN SV* sv|NN SV* left|NN SV* right
543 p |OP* |dofile |NN OP* term|I32 force_builtin
546 p |void |dump_all_perl |bool justperl
548 Ap |void |dump_form |NN const GV* gv
549 Ap |void |gv_dump |NULLOK GV* gv
550 Apd |OPclass|op_class |NULLOK const OP *o
551 Ap |void |op_dump |NN const OP *o
552 Ap |void |pmop_dump |NULLOK PMOP* pm
553 Ap |void |dump_packsubs |NN const HV* stash
554 p |void |dump_packsubs_perl |NN const HV* stash|bool justperl
555 Ap |void |dump_sub |NN const GV* gv
556 p |void |dump_sub_perl |NN const GV* gv|bool justperl
557 Apd |void |fbm_compile |NN SV* sv|U32 flags
558 ApdR |char* |fbm_instr |NN unsigned char* big|NN unsigned char* bigend \
559 |NN SV* littlestr|U32 flags
560 p |CV * |find_lexical_cv|PADOFFSET off
561 : Defined in util.c, used only in perl.c
562 p |char* |find_script |NN const char *scriptname|bool dosearch \
563 |NULLOK const char *const *const search_ext|I32 flags
564 #if defined(PERL_IN_OP_C)
565 S |OP* |force_list |NULLOK OP* arg|bool nullit
566 i |OP* |op_integerize |NN OP *o
567 i |OP* |op_std_init |NN OP *o
568 #if defined(USE_ITHREADS)
569 i |void |op_relocate_sv |NN SV** svp|NN PADOFFSET* targp
571 i |OP* |newMETHOP_internal |I32 type|I32 flags|NULLOK OP* dynamic_meth \
572 |NULLOK SV* const_meth
574 S |OP* |fold_constants |NN OP * const o
575 S |OP* |traverse_op_tree|NN OP* top|NN OP* o
577 Afpd |char* |form |NN const char* pat|...
578 Ap |char* |vform |NN const char* pat|NULLOK va_list* args
580 #if defined(PERL_IN_OP_C)
581 S |OP* |gen_constant_list|NULLOK OP* o
583 #if !defined(HAS_GETENV_LEN)
585 p |char* |getenv_len |NN const char *env_elem|NN unsigned long *len
587 : Used in pp_ctl.c and pp_hot.c
588 poe |void |get_db_sub |NULLOK SV **svp|NN CV *cv
589 Ap |void |gp_free |NULLOK GV* gv
590 Ap |GP* |gp_ref |NULLOK GP* gp
591 Ap |GV* |gv_add_by_type |NULLOK GV *gv|svtype type
592 Apmb |GV* |gv_AVadd |NULLOK GV *gv
593 Apmb |GV* |gv_HVadd |NULLOK GV *gv
594 Apmb |GV* |gv_IOadd |NULLOK GV* gv
595 AmR |GV* |gv_autoload4 |NULLOK HV* stash|NN const char* name \
596 |STRLEN len|I32 method
597 ApR |GV* |gv_autoload_sv |NULLOK HV* stash|NN SV* namesv|U32 flags
598 ApR |GV* |gv_autoload_pv |NULLOK HV* stash|NN const char* namepv \
600 ApR |GV* |gv_autoload_pvn |NULLOK HV* stash|NN const char* name \
601 |STRLEN len|U32 flags
602 Ap |void |gv_check |NN HV* stash
603 Abp |void |gv_efullname |NN SV* sv|NN const GV* gv
604 Apmb |void |gv_efullname3 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix
605 Ap |void |gv_efullname4 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix|bool keepmain
606 Ap |GV* |gv_fetchfile |NN const char* name
607 Ap |GV* |gv_fetchfile_flags|NN const char *const name|const STRLEN len\
609 Amd |GV* |gv_fetchmeth |NULLOK HV* stash|NN const char* name \
610 |STRLEN len|I32 level
611 Apd |GV* |gv_fetchmeth_sv |NULLOK HV* stash|NN SV* namesv|I32 level|U32 flags
612 Apd |GV* |gv_fetchmeth_pv |NULLOK HV* stash|NN const char* name \
614 Apd |GV* |gv_fetchmeth_pvn |NULLOK HV* stash|NN const char* name \
615 |STRLEN len|I32 level|U32 flags
616 Amd |GV* |gv_fetchmeth_autoload |NULLOK HV* stash \
617 |NN const char* name|STRLEN len \
619 Apd |GV* |gv_fetchmeth_sv_autoload |NULLOK HV* stash|NN SV* namesv|I32 level|U32 flags
620 Apd |GV* |gv_fetchmeth_pv_autoload |NULLOK HV* stash|NN const char* name \
622 Apd |GV* |gv_fetchmeth_pvn_autoload |NULLOK HV* stash|NN const char* name \
623 |STRLEN len|I32 level|U32 flags
624 Apdmb |GV* |gv_fetchmethod |NN HV* stash|NN const char* name
625 Apd |GV* |gv_fetchmethod_autoload|NN HV* stash|NN const char* name \
627 Apx |GV* |gv_fetchmethod_sv_flags|NN HV* stash|NN SV* namesv|U32 flags
628 Apx |GV* |gv_fetchmethod_pv_flags|NN HV* stash|NN const char* name \
630 Apx |GV* |gv_fetchmethod_pvn_flags|NN HV* stash|NN const char* name \
631 |const STRLEN len|U32 flags
632 Ap |GV* |gv_fetchpv |NN const char *nambeg|I32 add|const svtype sv_type
633 Abp |void |gv_fullname |NN SV* sv|NN const GV* gv
634 Apmb |void |gv_fullname3 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix
635 Ap |void |gv_fullname4 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix|bool keepmain
637 pxoe |GP * |newGP |NN GV *const gv
638 pX |void |cvgv_set |NN CV* cv|NULLOK GV* gv
639 poX |GV * |cvgv_from_hek |NN CV* cv
640 pX |void |cvstash_set |NN CV* cv|NULLOK HV* stash
641 Amd |void |gv_init |NN GV* gv|NULLOK HV* stash \
642 |NN const char* name|STRLEN len|int multi
643 Ap |void |gv_init_sv |NN GV* gv|NULLOK HV* stash|NN SV* namesv|U32 flags
644 Ap |void |gv_init_pv |NN GV* gv|NULLOK HV* stash|NN const char* name \
646 Ap |void |gv_init_pvn |NN GV* gv|NULLOK HV* stash|NN const char* name \
647 |STRLEN len|U32 flags
648 Ap |void |gv_name_set |NN GV* gv|NN const char *name|U32 len|U32 flags
649 pe |GV * |gv_override |NN const char * const name \
651 Xxpd |void |gv_try_downgrade|NN GV* gv
652 p |void |gv_setref |NN SV *const dstr|NN SV *const sstr
653 Apd |HV* |gv_stashpv |NN const char* name|I32 flags
654 Apd |HV* |gv_stashpvn |NN const char* name|U32 namelen|I32 flags
655 #if defined(PERL_IN_GV_C)
656 i |HV* |gv_stashpvn_internal |NN const char* name|U32 namelen|I32 flags
657 i |HV* |gv_stashsvpvn_cached |NULLOK SV *namesv|NULLOK const char* name|U32 namelen|I32 flags
658 i |GV* |gv_fetchmeth_internal |NULLOK HV* stash|NULLOK SV* meth|NULLOK const char* name \
659 |STRLEN len|I32 level|U32 flags
661 Apd |HV* |gv_stashsv |NN SV* sv|I32 flags
662 Apd |void |hv_clear |NULLOK HV *hv
663 : used in SAVEHINTS() and op.c
664 ApdR |HV * |hv_copy_hints_hv|NULLOK HV *const ohv
665 Ap |void |hv_delayfree_ent|NN HV *hv|NULLOK HE *entry
666 Abmdp |SV* |hv_delete |NULLOK HV *hv|NN const char *key|I32 klen \
668 Abmdp |SV* |hv_delete_ent |NULLOK HV *hv|NN SV *keysv|I32 flags|U32 hash
669 AbmdRp |bool |hv_exists |NULLOK HV *hv|NN const char *key|I32 klen
670 AbmdRp |bool |hv_exists_ent |NULLOK HV *hv|NN SV *keysv|U32 hash
671 Abmdp |SV** |hv_fetch |NULLOK HV *hv|NN const char *key|I32 klen \
673 Abmdp |HE* |hv_fetch_ent |NULLOK HV *hv|NN SV *keysv|I32 lval|U32 hash
674 Ap |void* |hv_common |NULLOK HV *hv|NULLOK SV *keysv \
675 |NULLOK const char* key|STRLEN klen|int flags \
676 |int action|NULLOK SV *val|U32 hash
677 Ap |void* |hv_common_key_len|NULLOK HV *hv|NN const char *key \
678 |I32 klen_i32|const int action|NULLOK SV *val \
680 AMpod |STRLEN |hv_fill |NN HV *const hv
681 Ap |void |hv_free_ent |NN HV *hv|NULLOK HE *entry
682 Apd |I32 |hv_iterinit |NN HV *hv
683 ApdR |char* |hv_iterkey |NN HE* entry|NN I32* retlen
684 ApdR |SV* |hv_iterkeysv |NN HE* entry
685 ApdRbm |HE* |hv_iternext |NN HV *hv
686 ApdR |SV* |hv_iternextsv |NN HV *hv|NN char **key|NN I32 *retlen
687 ApxdR |HE* |hv_iternext_flags|NN HV *hv|I32 flags
688 ApdR |SV* |hv_iterval |NN HV *hv|NN HE *entry
689 Ap |void |hv_ksplit |NN HV *hv|IV newmax
690 Apdbm |void |hv_magic |NN HV *hv|NULLOK GV *gv|int how
691 #if defined(PERL_IN_HV_C)
692 S |SV * |refcounted_he_value |NN const struct refcounted_he *he
694 Xpd |HV * |refcounted_he_chain_2hv|NULLOK const struct refcounted_he *c|U32 flags
695 Xpd |SV * |refcounted_he_fetch_pvn|NULLOK const struct refcounted_he *chain \
696 |NN const char *keypv|STRLEN keylen|U32 hash|U32 flags
697 Xpd |SV * |refcounted_he_fetch_pv|NULLOK const struct refcounted_he *chain \
698 |NN const char *key|U32 hash|U32 flags
699 Xpd |SV * |refcounted_he_fetch_sv|NULLOK const struct refcounted_he *chain \
700 |NN SV *key|U32 hash|U32 flags
701 Xpd |struct refcounted_he *|refcounted_he_new_pvn \
702 |NULLOK struct refcounted_he *parent \
703 |NN const char *keypv|STRLEN keylen \
704 |U32 hash|NULLOK SV *value|U32 flags
705 Xpd |struct refcounted_he *|refcounted_he_new_pv \
706 |NULLOK struct refcounted_he *parent \
707 |NN const char *key \
708 |U32 hash|NULLOK SV *value|U32 flags
709 Xpd |struct refcounted_he *|refcounted_he_new_sv \
710 |NULLOK struct refcounted_he *parent \
712 |U32 hash|NULLOK SV *value|U32 flags
713 Xpd |void |refcounted_he_free|NULLOK struct refcounted_he *he
714 Xpd |struct refcounted_he *|refcounted_he_inc|NULLOK struct refcounted_he *he
715 Apbmd |SV** |hv_store |NULLOK HV *hv|NULLOK const char *key \
716 |I32 klen|NULLOK SV *val|U32 hash
717 Apbmd |HE* |hv_store_ent |NULLOK HV *hv|NULLOK SV *key|NULLOK SV *val\
719 Apbmx |SV** |hv_store_flags |NULLOK HV *hv|NULLOK const char *key \
720 |I32 klen|NULLOK SV *val|U32 hash|int flags
721 Amd |void |hv_undef |NULLOK HV *hv
722 poX |void |hv_undef_flags |NULLOK HV *hv|U32 flags
723 AmP |I32 |ibcmp |NN const char* a|NN const char* b|I32 len
724 AiTp |I32 |foldEQ |NN const char* a|NN const char* b|I32 len
725 AmP |I32 |ibcmp_locale |NN const char* a|NN const char* b|I32 len
726 AiTp |I32 |foldEQ_locale |NN const char* a|NN const char* b|I32 len
727 Am |I32 |ibcmp_utf8 |NN const char *s1|NULLOK char **pe1|UV l1 \
728 |bool u1|NN const char *s2|NULLOK char **pe2 \
730 Amd |I32 |foldEQ_utf8 |NN const char *s1|NULLOK char **pe1|UV l1 \
731 |bool u1|NN const char *s2|NULLOK char **pe2 \
733 Axp |I32 |foldEQ_utf8_flags |NN const char *s1|NULLOK char **pe1|UV l1 \
734 |bool u1|NN const char *s2|NULLOK char **pe2 \
735 |UV l2|bool u2|U32 flags
736 AiTp |I32 |foldEQ_latin1 |NN const char* a|NN const char* b|I32 len
737 #if defined(PERL_IN_DOIO_C)
738 SR |bool |ingroup |Gid_t testgid|bool effective
741 p |void |init_argv_symbols|int argc|NN char **argv
743 po |void |init_dbargs
745 p |void |init_debugger
746 Ap |void |init_stacks
747 Ap |void |init_tm |NN struct tm *ptm
749 AbmTpPR |char* |instr |NN const char* big|NN const char* little
751 p |bool |io_close |NN IO* io|NULLOK GV *gv \
752 |bool not_implicit|bool warn_on_fail
754 pR |OP* |invert |NULLOK OP* cmd
755 ApR |I32 |is_lvalue_sub
757 XopR |I32 |was_lvalue_sub
758 ApxRTP |STRLEN |_is_utf8_char_helper|NN const U8 * const s|NN const U8 * e|const U32 flags
759 AbDxpR |U32 |to_uni_upper_lc|U32 c
760 AbDxpR |U32 |to_uni_title_lc|U32 c
761 AbDxpR |U32 |to_uni_lower_lc|U32 c
762 AbDxpR |bool |is_uni_alnum |UV c
763 AbDxpR |bool |is_uni_alnumc |UV c
764 AbDxpR |bool |is_uni_idfirst |UV c
765 AbDxpR |bool |is_uni_alpha |UV c
766 AbDxpPR |bool |is_uni_ascii |UV c
767 AbDxpPR |bool |is_uni_blank |UV c
768 AbDxpPR |bool |is_uni_space |UV c
769 AbDxpPR |bool |is_uni_cntrl |UV c
770 AbDxpR |bool |is_uni_graph |UV c
771 AbDxpR |bool |is_uni_digit |UV c
772 AbDxpR |bool |is_uni_upper |UV c
773 AbDxpR |bool |is_uni_lower |UV c
774 AbDxpR |bool |is_uni_print |UV c
775 AbDxpR |bool |is_uni_punct |UV c
776 AbDxpPR |bool |is_uni_xdigit |UV c
777 Axp |UV |to_uni_upper |UV c|NN U8 *p|NN STRLEN *lenp
778 Axp |UV |to_uni_title |UV c|NN U8 *p|NN STRLEN *lenp
779 AbDxpR |bool |isIDFIRST_lazy |NN const char* p
780 AbDxpR |bool |isALNUM_lazy |NN const char* p
781 p |void |init_uniprops
782 #ifdef PERL_IN_UTF8_C
783 STR |U8 |to_lower_latin1|const U8 c|NULLOK U8 *p|NULLOK STRLEN *lenp \
786 STR |int |is_utf8_cp_above_31_bits|NN const U8 * const s \
787 |NN const U8 * const e \
788 |const bool consider_overlongs
791 #if defined(PERL_IN_UTF8_C) || defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
792 EXTp |UV |_to_fold_latin1|const U8 c|NN U8 *p|NN STRLEN *lenp|const unsigned int flags
794 #if defined(PERL_IN_UTF8_C) || defined(PERL_IN_PP_C)
795 p |UV |_to_upper_title_latin1|const U8 c|NN U8 *p|NN STRLEN *lenp|const char S_or_s
797 Axp |UV |to_uni_lower |UV c|NN U8 *p|NN STRLEN *lenp
798 Axmp |UV |to_uni_fold |UV c|NN U8 *p|NN STRLEN *lenp
799 Axp |UV |_to_uni_fold_flags|UV c|NN U8 *p|NN STRLEN *lenp|U8 flags
800 AbDxpR |bool |is_uni_alnum_lc|UV c
801 AbDxpR |bool |is_uni_alnumc_lc|UV c
802 AbDxpR |bool |is_uni_idfirst_lc|UV c
803 AxpR |bool |_is_uni_perl_idcont|UV c
804 AxpR |bool |_is_uni_perl_idstart|UV c
805 AbDxpR |bool |is_uni_alpha_lc|UV c
806 AbDxpPR |bool |is_uni_ascii_lc|UV c
807 AbDxpPR |bool |is_uni_space_lc|UV c
808 AbDxpPR |bool |is_uni_blank_lc|UV c
809 AbDxpPR |bool |is_uni_cntrl_lc|UV c
810 AbDxpR |bool |is_uni_graph_lc|UV c
811 AbDxpR |bool |is_uni_digit_lc|UV c
812 AbDxpR |bool |is_uni_upper_lc|UV c
813 AbDxpR |bool |is_uni_lower_lc|UV c
814 AbDxpR |bool |is_uni_print_lc|UV c
815 AbDxpR |bool |is_uni_punct_lc|UV c
816 AbDxpPR |bool |is_uni_xdigit_lc|UV c
817 ATdmoR |bool |is_utf8_invariant_string|NN const U8* const s \
819 ATidR |bool |is_utf8_invariant_string_loc|NN const U8* const s \
821 |NULLOK const U8 ** ep
823 ATiR |unsigned int|_variant_byte_number|PERL_UINTMAX_T word
825 #if defined(PERL_CORE) || defined(PERL_EXT)
826 EiTR |Size_t |variant_under_utf8_count|NN const U8* const s \
827 |NN const U8* const e
829 AmTpdRP |bool |is_ascii_string|NN const U8* const s|STRLEN len
830 AmTpdRP |bool |is_invariant_string|NN const U8* const s|STRLEN len
831 #if defined(PERL_CORE) || defined (PERL_EXT)
832 EXTidR |bool |is_utf8_non_invariant_string|NN const U8* const s \
835 AbTpdD |STRLEN |is_utf8_char |NN const U8 *s
836 AbmTpd |STRLEN |is_utf8_char_buf|NN const U8 *buf|NN const U8 *buf_end
837 ATidR |Size_t |isUTF8_CHAR|NN const U8 * const s0 \
838 |NN const U8 * const e
839 ATidR |Size_t |isSTRICT_UTF8_CHAR |NN const U8 * const s0 \
840 |NN const U8 * const e
841 ATidR |Size_t |isC9_STRICT_UTF8_CHAR |NN const U8 * const s0 \
842 |NN const U8 * const e
843 ATmdpR |bool |is_utf8_string |NN const U8 *s|STRLEN len
844 ATidR |bool |is_utf8_string_flags \
845 |NN const U8 *s|STRLEN len|const U32 flags
846 ATmdpR |bool |is_strict_utf8_string|NN const U8 *s|STRLEN len
847 ATmdpR |bool |is_c9strict_utf8_string|NN const U8 *s|STRLEN len
848 ATpdmb |bool |is_utf8_string_loc \
849 |NN const U8 *s|const STRLEN len|NN const U8 **ep
850 ATdm |bool |is_utf8_string_loc_flags \
851 |NN const U8 *s|STRLEN len|NN const U8 **ep \
853 ATdm |bool |is_strict_utf8_string_loc \
854 |NN const U8 *s|STRLEN len|NN const U8 **ep
855 ATdm |bool |is_c9strict_utf8_string_loc \
856 |NN const U8 *s|STRLEN len|NN const U8 **ep
857 ATipd |bool |is_utf8_string_loclen \
858 |NN const U8 *s|STRLEN len|NULLOK const U8 **ep \
860 ATid |bool |is_utf8_string_loclen_flags \
861 |NN const U8 *s|STRLEN len|NULLOK const U8 **ep \
862 |NULLOK STRLEN *el|const U32 flags
863 ATid |bool |is_strict_utf8_string_loclen \
864 |NN const U8 *s|STRLEN len|NULLOK const U8 **ep \
866 ATid |bool |is_c9strict_utf8_string_loclen \
867 |NN const U8 *s|STRLEN len|NULLOK const U8 **ep \
869 AmTd |bool |is_utf8_fixed_width_buf_flags \
870 |NN const U8 * const s|STRLEN len|const U32 flags
871 AmTd |bool |is_utf8_fixed_width_buf_loc_flags \
872 |NN const U8 * const s|STRLEN len \
873 |NULLOK const U8 **ep|const U32 flags
874 ATid |bool |is_utf8_fixed_width_buf_loclen_flags \
875 |NN const U8 * const s|STRLEN len \
876 |NULLOK const U8 **ep|NULLOK STRLEN *el|const U32 flags
877 AmTdP |bool |is_utf8_valid_partial_char \
878 |NN const U8 * const s|NN const U8 * const e
879 ATidR |bool |is_utf8_valid_partial_char_flags \
880 |NN const U8 * const s|NN const U8 * const e|const U32 flags
881 AxpR |bool |_is_uni_FOO|const U8 classnum|const UV c
882 AxpR |bool |_is_utf8_FOO|U8 classnum|NN const U8 * const p \
883 |NN const char * const name \
884 |NN const char * const alternative \
885 |const bool use_utf8|const bool use_locale \
886 |NN const char * const file|const unsigned line
887 AxpR |bool |_is_utf8_FOO_with_len|const U8 classnum|NN const U8 *p \
888 |NN const U8 * const e
889 AbDxpR |bool |is_utf8_alnum |NN const U8 *p
890 AbDxpR |bool |is_utf8_alnumc |NN const U8 *p
891 AbDxpR |bool |is_utf8_idfirst|NN const U8 *p
892 AbDxpR |bool |is_utf8_xidfirst|NN const U8 *p
893 AxpR |bool |_is_utf8_idcont|NN const U8 *p
894 AxpR |bool |_is_utf8_idstart|NN const U8 *p
895 AxpR |bool |_is_utf8_xidcont|NN const U8 *p
896 AxpR |bool |_is_utf8_xidstart|NN const U8 *p
897 AxpR |bool |_is_utf8_perl_idcont_with_len|NN const U8 *p \
898 |NN const U8 * const e
899 AxpR |bool |_is_utf8_perl_idstart_with_len|NN const U8 *p \
900 |NN const U8 * const e
901 AbDxpR |bool |is_utf8_idcont |NN const U8 *p
902 AbDxpR |bool |is_utf8_xidcont |NN const U8 *p
903 AbDxpR |bool |is_utf8_alpha |NN const U8 *p
904 AbDxpR |bool |is_utf8_ascii |NN const U8 *p
905 AbDxpR |bool |is_utf8_blank |NN const U8 *p
906 AbDxpR |bool |is_utf8_space |NN const U8 *p
907 AbDxpR |bool |is_utf8_perl_space |NN const U8 *p
908 AbDxpR |bool |is_utf8_perl_word |NN const U8 *p
909 AbDxpR |bool |is_utf8_cntrl |NN const U8 *p
910 AbDxpR |bool |is_utf8_digit |NN const U8 *p
911 AbDxpR |bool |is_utf8_posix_digit |NN const U8 *p
912 AbDxpR |bool |is_utf8_graph |NN const U8 *p
913 AbDxpR |bool |is_utf8_upper |NN const U8 *p
914 AbDxpR |bool |is_utf8_lower |NN const U8 *p
915 AbDxpR |bool |is_utf8_print |NN const U8 *p
916 AbDxpR |bool |is_utf8_punct |NN const U8 *p
917 AbDxpR |bool |is_utf8_xdigit |NN const U8 *p
918 AxpR |bool |_is_utf8_mark |NN const U8 *p
919 AbDxpR |bool |is_utf8_mark |NN const U8 *p
920 #if defined(PERL_CORE) || defined(PERL_EXT)
921 EXdpR |bool |isSCRIPT_RUN |NN const U8 *s|NN const U8 *send \
922 |const bool utf8_target
925 p |OP* |jmaybe |NN OP *o
927 pP |I32 |keyword |NN const char *name|I32 len|bool all_keywords
928 #if defined(PERL_IN_OP_C)
929 S |void |inplace_aassign |NN OP* o
931 Ap |void |leave_scope |I32 base
932 p |void |notify_parser_that_changed_to_utf8
934 Axpd |void |lex_start |NULLOK SV* line|NULLOK PerlIO *rsfp|U32 flags
935 Axpd |bool |lex_bufutf8
936 Axpd |char* |lex_grow_linestr|STRLEN len
937 Axpd |void |lex_stuff_pvn |NN const char* pv|STRLEN len|U32 flags
938 Axpd |void |lex_stuff_pv |NN const char* pv|U32 flags
939 Axpd |void |lex_stuff_sv |NN SV* sv|U32 flags
940 Axpd |void |lex_unstuff |NN char* ptr
941 Axpd |void |lex_read_to |NN char* ptr
942 Axpd |void |lex_discard_to |NN char* ptr
943 Axpd |bool |lex_next_chunk |U32 flags
944 Axpd |I32 |lex_peek_unichar|U32 flags
945 Axpd |I32 |lex_read_unichar|U32 flags
946 Axpd |void |lex_read_space |U32 flags
948 Axpd |OP* |parse_arithexpr|U32 flags
949 Axpd |OP* |parse_termexpr |U32 flags
950 Axpd |OP* |parse_listexpr |U32 flags
951 Axpd |OP* |parse_fullexpr |U32 flags
952 Axpd |OP* |parse_block |U32 flags
953 Axpd |OP* |parse_barestmt |U32 flags
954 Axpd |SV* |parse_label |U32 flags
955 Axpd |OP* |parse_fullstmt |U32 flags
956 Axpd |OP* |parse_stmtseq |U32 flags
957 : Used in various files
958 Apd |void |op_null |NN OP* o
959 : FIXME. Used by Data::Alias
960 EXp |void |op_clear |NN OP* o
961 Ap |void |op_refcnt_lock
962 Ap |void |op_refcnt_unlock
963 ApdT |OP* |op_sibling_splice|NULLOK OP *parent|NULLOK OP *start \
964 |int del_count|NULLOK OP* insert
965 ApdT |OP* |op_parent|NN OP *o
966 #if defined(PERL_IN_OP_C)
967 S |OP* |listkids |NULLOK OP* o
969 p |OP* |list |NULLOK OP* o
970 Apd |void |load_module|U32 flags|NN SV* name|NULLOK SV* ver|...
971 Ap |void |vload_module|U32 flags|NN SV* name|NULLOK SV* ver|NULLOK va_list* args
973 p |OP* |localize |NN OP *o|I32 lex
974 ApdR |I32 |looks_like_number|NN SV *const sv
975 Apd |UV |grok_bin |NN const char* start|NN STRLEN* len_p|NN I32* flags|NULLOK NV *result
976 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_TOKE_C) || defined(PERL_IN_DQUOTE_C)
977 ExpRX |bool |grok_bslash_x |NN char** s \
978 |NN const char* const send \
980 |NN const char** error_msg \
981 |const bool output_warning \
983 |const bool silence_non_portable \
985 ExpRX |char |grok_bslash_c |const char source|const bool output_warning
986 ExpRX |bool |grok_bslash_o |NN char** s \
987 |NN const char* const send \
989 |NN const char** error_msg \
990 |const bool output_warning \
992 |const bool silence_non_portable \
994 ExiR |char*|form_short_octal_warning|NN const char * const s \
996 EiRT |I32 |regcurly |NN const char *s
998 Apd |UV |grok_hex |NN const char* start|NN STRLEN* len_p|NN I32* flags|NULLOK NV *result
999 Apd |int |grok_infnan |NN const char** sp|NN const char *send
1000 Apd |int |grok_number |NN const char *pv|STRLEN len|NULLOK UV *valuep
1001 Apd |int |grok_number_flags|NN const char *pv|STRLEN len|NULLOK UV *valuep|U32 flags
1002 ApdR |bool |grok_numeric_radix|NN const char **sp|NN const char *send
1003 Apd |UV |grok_oct |NN const char* start|NN STRLEN* len_p|NN I32* flags|NULLOK NV *result
1004 EXpT |bool |grok_atoUV |NN const char* pv|NN UV* valptr|NULLOK const char** endptr
1005 : These are all indirectly referenced by globals.c. This is somewhat annoying.
1006 p |int |magic_clearenv |NN SV* sv|NN MAGIC* mg
1007 p |int |magic_clear_all_env|NN SV* sv|NN MAGIC* mg
1008 dp |int |magic_clearhint|NN SV* sv|NN MAGIC* mg
1009 dp |int |magic_clearhints|NN SV* sv|NN MAGIC* mg
1010 p |int |magic_clearisa |NULLOK SV* sv|NN MAGIC* mg
1011 p |int |magic_clearpack|NN SV* sv|NN MAGIC* mg
1012 p |int |magic_clearsig |NN SV* sv|NN MAGIC* mg
1013 p |int |magic_copycallchecker|NN SV* sv|NN MAGIC *mg|NN SV *nsv \
1014 |NULLOK const char *name|I32 namlen
1015 p |int |magic_existspack|NN SV* sv|NN const MAGIC* mg
1016 p |int |magic_freeovrld|NN SV* sv|NN MAGIC* mg
1017 p |int |magic_get |NN SV* sv|NN MAGIC* mg
1018 p |int |magic_getarylen|NN SV* sv|NN const MAGIC* mg
1019 p |int |magic_getdefelem|NN SV* sv|NN MAGIC* mg
1020 p |int |magic_getdebugvar|NN SV* sv|NN MAGIC* mg
1021 p |int |magic_getnkeys |NN SV* sv|NN MAGIC* mg
1022 p |int |magic_getpack |NN SV* sv|NN MAGIC* mg
1023 p |int |magic_getpos |NN SV* sv|NN MAGIC* mg
1024 p |int |magic_getsig |NN SV* sv|NN MAGIC* mg
1025 p |int |magic_getsubstr|NN SV* sv|NN MAGIC* mg
1026 p |int |magic_gettaint |NN SV* sv|NN MAGIC* mg
1027 p |int |magic_getuvar |NN SV* sv|NN MAGIC* mg
1028 p |int |magic_getvec |NN SV* sv|NN MAGIC* mg
1029 p |int |magic_nextpack |NN SV *sv|NN MAGIC *mg|NN SV *key
1030 p |U32 |magic_regdata_cnt|NN SV* sv|NN MAGIC* mg
1031 p |int |magic_regdatum_get|NN SV* sv|NN MAGIC* mg
1032 :removing noreturn to silence a warning for this function resulted in no
1033 :change to the interpreter DLL image under VS 2003 -O1 -GL 32 bits only because
1034 :this is used in a magic vtable, do not use this on conventionally called funcs
1036 p |int |magic_regdatum_set|NN SV* sv|NN MAGIC* mg
1038 pr |int |magic_regdatum_set|NN SV* sv|NN MAGIC* mg
1040 p |int |magic_set |NN SV* sv|NN MAGIC* mg
1041 p |int |magic_setarylen|NN SV* sv|NN MAGIC* mg
1042 p |int |magic_cleararylen_p|NN SV* sv|NN MAGIC* mg
1043 p |int |magic_freearylen_p|NN SV* sv|NN MAGIC* mg
1044 p |int |magic_setdbline|NN SV* sv|NN MAGIC* mg
1045 p |int |magic_setdebugvar|NN SV* sv|NN MAGIC* mg
1046 p |int |magic_setdefelem|NN SV* sv|NN MAGIC* mg
1047 p |int |magic_setnonelem|NN SV* sv|NN MAGIC* mg
1048 p |int |magic_setenv |NN SV* sv|NN MAGIC* mg
1049 dp |int |magic_sethint |NN SV* sv|NN MAGIC* mg
1050 p |int |magic_setisa |NN SV* sv|NN MAGIC* mg
1051 p |int |magic_setlvref |NN SV* sv|NN MAGIC* mg
1052 p |int |magic_setmglob |NN SV* sv|NN MAGIC* mg
1053 p |int |magic_setnkeys |NN SV* sv|NN MAGIC* mg
1054 p |int |magic_setpack |NN SV* sv|NN MAGIC* mg
1055 p |int |magic_setpos |NN SV* sv|NN MAGIC* mg
1056 p |int |magic_setregexp|NN SV* sv|NN MAGIC* mg
1057 p |int |magic_setsig |NULLOK SV* sv|NN MAGIC* mg
1058 p |int |magic_setsubstr|NN SV* sv|NN MAGIC* mg
1059 p |int |magic_settaint |NN SV* sv|NN MAGIC* mg
1060 p |int |magic_setuvar |NN SV* sv|NN MAGIC* mg
1061 p |int |magic_setvec |NN SV* sv|NN MAGIC* mg
1062 p |int |magic_setutf8 |NN SV* sv|NN MAGIC* mg
1063 p |int |magic_set_all_env|NN SV* sv|NN MAGIC* mg
1064 p |U32 |magic_sizepack |NN SV* sv|NN MAGIC* mg
1065 p |int |magic_wipepack |NN SV* sv|NN MAGIC* mg
1066 pod |SV* |magic_methcall |NN SV *sv|NN const MAGIC *mg \
1067 |NN SV *meth|U32 flags \
1069 Ap |I32 * |markstack_grow
1070 #if defined(USE_LOCALE_COLLATE)
1071 p |int |magic_setcollxfrm|NN SV* sv|NN MAGIC* mg
1072 pb |char* |mem_collxfrm |NN const char* input_string|STRLEN len|NN STRLEN* xlen
1073 : Defined in locale.c, used only in sv.c
1074 # if defined(PERL_IN_LOCALE_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_MATHOMS_C)
1075 px |char* |_mem_collxfrm |NN const char* input_string \
1081 Afpd |SV* |mess |NN const char* pat|...
1082 Apd |SV* |mess_sv |NN SV* basemsg|bool consume
1083 Apd |SV* |vmess |NN const char* pat|NULLOK va_list* args
1084 : FIXME - either make it public, or stop exporting it. (Data::Alias uses this)
1085 : Used in gv.c, op.c, toke.c
1086 EXp |void |qerror |NN SV* err
1087 Apd |void |sortsv |NULLOK SV** array|size_t num_elts|NN SVCOMPARE_t cmp
1088 Apd |void |sortsv_flags |NULLOK SV** array|size_t num_elts|NN SVCOMPARE_t cmp|U32 flags
1089 Apd |int |mg_clear |NN SV* sv
1090 Apd |int |mg_copy |NN SV *sv|NN SV *nsv|NULLOK const char *key \
1092 : Defined in mg.c, used only in scope.c
1093 pd |void |mg_localize |NN SV* sv|NN SV* nsv|bool setmagic
1094 Apd |SV* |sv_string_from_errnum|int errnum|NULLOK SV* tgtsv
1095 ApdRT |MAGIC* |mg_find |NULLOK const SV* sv|int type
1096 ApdRT |MAGIC* |mg_findext |NULLOK const SV* sv|int type|NULLOK const MGVTBL *vtbl
1097 : exported for re.pm
1098 EXpR |MAGIC* |mg_find_mglob |NN SV* sv
1099 Apd |int |mg_free |NN SV* sv
1100 Apd |void |mg_free_type |NN SV* sv|int how
1101 Apd |void |mg_freeext |NN SV* sv|int how|NULLOK const MGVTBL *vtbl
1102 Apd |int |mg_get |NN SV* sv
1103 ApdD |U32 |mg_length |NN SV* sv
1104 ApdT |void |mg_magical |NN SV* sv
1105 Apd |int |mg_set |NN SV* sv
1106 Ap |I32 |mg_size |NN SV* sv
1107 ApT |void |mini_mktime |NN struct tm *ptm
1108 Axmd |OP* |op_lvalue |NULLOK OP* o|I32 type
1109 poX |OP* |op_lvalue_flags|NULLOK OP* o|I32 type|U32 flags
1110 p |void |finalize_optree |NN OP* o
1111 p |void |optimize_optree|NN OP* o
1112 #if defined(PERL_IN_OP_C)
1113 S |void |optimize_op |NN OP* o
1114 S |void |finalize_op |NN OP* o
1115 S |void |move_proto_attr|NN OP **proto|NN OP **attrs \
1116 |NN const GV *name|bool curstash
1118 : Used in op.c and pp_sys.c
1119 p |int |mode_from_discipline|NULLOK const char* s|STRLEN len
1120 Ap |const char* |moreswitches |NN const char* s
1121 Ap |NV |my_atof |NN const char *s
1122 ATpR |NV |my_strtod |NN const char * const s|NULLOK char ** e
1123 Apr |void |my_exit |U32 status
1124 Apr |void |my_failure_exit
1125 Ap |I32 |my_fflush_all
1127 ATp |void |atfork_lock
1128 ATp |void |atfork_unlock
1130 pX |I32 |my_lstat_flags |NULLOK const U32 flags
1131 #if ! defined(HAS_MEMRCHR) && (defined(PERL_CORE) || defined(PERL_EXT))
1132 EeiT |void * |my_memrchr |NN const char * s|const char c|const STRLEN len
1134 #if !defined(PERL_IMPLICIT_SYS)
1135 Ap |I32 |my_pclose |NULLOK PerlIO* ptr
1136 Ap |PerlIO*|my_popen |NN const char* cmd|NN const char* mode
1138 Ap |PerlIO*|my_popen_list |NN const char* mode|int n|NN SV ** args
1139 Ap |void |my_setenv |NULLOK const char* nam|NULLOK const char* val
1141 pX |I32 |my_stat_flags |NULLOK const U32 flags
1142 Afp |char * |my_strftime |NN const char *fmt|int sec|int min|int hour|int mday|int mon|int year|int wday|int yday|int isdst
1145 AbDxTPR |UV |NATIVE_TO_NEED |const UV enc|const UV ch
1146 AbDxTPR |UV |ASCII_TO_NEED |const UV enc|const UV ch
1147 ApR |OP* |newANONLIST |NULLOK OP* o
1148 ApR |OP* |newANONHASH |NULLOK OP* o
1149 Ap |OP* |newANONSUB |I32 floor|NULLOK OP* proto|NULLOK OP* block
1150 ApdR |OP* |newASSIGNOP |I32 flags|NULLOK OP* left|I32 optype|NULLOK OP* right
1151 ApdR |OP* |newCONDOP |I32 flags|NN OP* first|NULLOK OP* trueop|NULLOK OP* falseop
1152 Apd |CV* |newCONSTSUB |NULLOK HV* stash|NULLOK const char* name|NULLOK SV* sv
1153 Apd |CV* |newCONSTSUB_flags|NULLOK HV* stash \
1154 |NULLOK const char* name|STRLEN len \
1155 |U32 flags|NULLOK SV* sv
1156 Ap |void |newFORM |I32 floor|NULLOK OP* o|NULLOK OP* block
1157 ApdR |OP* |newFOROP |I32 flags|NULLOK OP* sv|NN OP* expr|NULLOK OP* block|NULLOK OP* cont
1158 ApdR |OP* |newGIVENOP |NN OP* cond|NN OP* block|PADOFFSET defsv_off
1159 ApdR |OP* |newLOGOP |I32 optype|I32 flags|NN OP *first|NN OP *other
1160 px |LOGOP* |alloc_LOGOP |I32 type|NULLOK OP *first|NULLOK OP *other
1161 ApdR |OP* |newLOOPEX |I32 type|NN OP* label
1162 ApdR |OP* |newLOOPOP |I32 flags|I32 debuggable|NULLOK OP* expr|NULLOK OP* block
1163 ApdR |OP* |newNULLLIST
1164 ApdR |OP* |newOP |I32 optype|I32 flags
1165 Ap |void |newPROG |NN OP* o
1166 ApdR |OP* |newRANGE |I32 flags|NN OP* left|NN OP* right
1167 ApdR |OP* |newSLICEOP |I32 flags|NULLOK OP* subscript|NULLOK OP* listop
1168 ApdR |OP* |newSTATEOP |I32 flags|NULLOK char* label|NULLOK OP* o
1169 Apbm |CV* |newSUB |I32 floor|NULLOK OP* o|NULLOK OP* proto \
1171 pd |CV * |newXS_len_flags|NULLOK const char *name|STRLEN len \
1172 |NN XSUBADDR_t subaddr\
1173 |NULLOK const char *const filename \
1174 |NULLOK const char *const proto \
1175 |NULLOK SV **const_svp|U32 flags
1176 pX |CV * |newXS_deffile |NN const char *name|NN XSUBADDR_t subaddr
1177 Apx |CV * |newXS_flags |NULLOK const char *name|NN XSUBADDR_t subaddr\
1178 |NN const char *const filename \
1179 |NULLOK const char *const proto|U32 flags
1180 Apd |CV* |newXS |NULLOK const char *name|NN XSUBADDR_t subaddr\
1181 |NN const char *filename
1183 ApR |OP* |newAVREF |NN OP* o
1184 ApdR |OP* |newBINOP |I32 type|I32 flags|NULLOK OP* first|NULLOK OP* last
1185 ApR |OP* |newCVREF |I32 flags|NULLOK OP* o
1186 ApdR |OP* |newGVOP |I32 type|I32 flags|NN GV* gv
1187 Am |GV* |newGVgen |NN const char* pack
1188 ApR |GV* |newGVgen_flags |NN const char* pack|U32 flags
1189 ApR |OP* |newGVREF |I32 type|NULLOK OP* o
1190 ApR |OP* |newHVREF |NN OP* o
1192 ApR |HV* |newHVhv |NULLOK HV *hv
1194 ApdR |OP* |newLISTOP |I32 type|I32 flags|NULLOK OP* first|NULLOK OP* last
1195 AxpdRT |PADNAME *|newPADNAMEouter|NN PADNAME *outer
1196 AxpdRT |PADNAME *|newPADNAMEpvn|NN const char *s|STRLEN len
1197 AxpdRT |PADNAMELIST *|newPADNAMELIST|size_t max
1199 ApdR |OP* |newPADOP |I32 type|I32 flags|NN SV* sv
1201 ApdR |OP* |newPMOP |I32 type|I32 flags
1202 ApdR |OP* |newPVOP |I32 type|I32 flags|NULLOK char* pv
1203 ApR |SV* |newRV |NN SV *const sv
1204 ApdR |SV* |newRV_noinc |NN SV *const tmpRef
1205 ApdR |SV* |newSV |const STRLEN len
1206 ApR |OP* |newSVREF |NN OP* o
1207 ApdR |OP* |newSVOP |I32 type|I32 flags|NN SV* sv
1208 ApdR |OP* |newDEFSVOP
1209 pR |SV* |newSVavdefelem |NN AV *av|SSize_t ix|bool extendible
1210 ApdR |SV* |newSViv |const IV i
1211 ApdR |SV* |newSVuv |const UV u
1212 ApdR |SV* |newSVnv |const NV n
1213 ApdR |SV* |newSVpv |NULLOK const char *const s|const STRLEN len
1214 ApdR |SV* |newSVpvn |NULLOK const char *const buffer|const STRLEN len
1215 ApdR |SV* |newSVpvn_flags |NULLOK const char *const s|const STRLEN len|const U32 flags
1216 ApdR |SV* |newSVhek |NULLOK const HEK *const hek
1217 ApdR |SV* |newSVpvn_share |NULLOK const char* s|I32 len|U32 hash
1218 ApdR |SV* |newSVpv_share |NULLOK const char* s|U32 hash
1219 AfpdR |SV* |newSVpvf |NN const char *const pat|...
1220 ApR |SV* |vnewSVpvf |NN const char *const pat|NULLOK va_list *const args
1221 Apd |SV* |newSVrv |NN SV *const rv|NULLOK const char *const classname
1222 ApmbdR |SV* |newSVsv |NULLOK SV *const old
1223 ApmdR |SV* |newSVsv_nomg |NULLOK SV *const old
1224 ApR |SV* |newSVsv_flags |NULLOK SV *const old|I32 flags
1225 ApdR |SV* |newSV_type |const svtype type
1226 ApdR |OP* |newUNOP |I32 type|I32 flags|NULLOK OP* first
1227 ApdR |OP* |newUNOP_AUX |I32 type|I32 flags|NULLOK OP* first \
1228 |NULLOK UNOP_AUX_item *aux
1229 ApdR |OP* |newWHENOP |NULLOK OP* cond|NN OP* block
1230 ApdR |OP* |newWHILEOP |I32 flags|I32 debuggable|NULLOK LOOP* loop \
1231 |NULLOK OP* expr|NULLOK OP* block|NULLOK OP* cont \
1233 ApdR |OP* |newMETHOP |I32 type|I32 flags|NN OP* dynamic_meth
1234 ApdR |OP* |newMETHOP_named|I32 type|I32 flags|NN SV* const_meth
1235 Apd |CV* |rv2cv_op_cv |NN OP *cvop|U32 flags
1236 Apd |OP* |ck_entersub_args_list|NN OP *entersubop
1237 Apd |OP* |ck_entersub_args_proto|NN OP *entersubop|NN GV *namegv|NN SV *protosv
1238 Apd |OP* |ck_entersub_args_proto_or_list|NN OP *entersubop|NN GV *namegv|NN SV *protosv
1239 po |OP* |ck_entersub_args_core|NN OP *entersubop|NN GV *namegv \
1241 Apd |void |cv_get_call_checker|NN CV *cv|NN Perl_call_checker *ckfun_p|NN SV **ckobj_p
1242 Apd |void |cv_get_call_checker_flags|NN CV *cv|U32 gflags|NN Perl_call_checker *ckfun_p|NN SV **ckobj_p|NN U32 *ckflags_p
1243 Apd |void |cv_set_call_checker|NN CV *cv|NN Perl_call_checker ckfun|NN SV *ckobj
1244 Apd |void |cv_set_call_checker_flags|NN CV *cv \
1245 |NN Perl_call_checker ckfun \
1246 |NN SV *ckobj|U32 ckflags
1247 Apd |void |wrap_op_checker|Optype opcode|NN Perl_check_t new_checker|NN Perl_check_t *old_checker_p
1248 Axpd |void |wrap_keyword_plugin|NN Perl_keyword_plugin_t new_plugin|NN Perl_keyword_plugin_t *old_plugin_p
1249 ApR |PERL_SI*|new_stackinfo|I32 stitems|I32 cxitems
1250 Ap |char* |scan_vstring |NN const char *s|NN const char *const e \
1252 Apd |const char* |scan_version |NN const char *s|NN SV *rv|bool qv
1253 Apd |const char* |prescan_version |NN const char *s\
1254 |bool strict|NULLOK const char** errstr|NULLOK bool *sqv\
1255 |NULLOK int *ssaw_decimal|NULLOK int *swidth|NULLOK bool *salpha
1256 Apd |SV* |new_version |NN SV *ver
1257 Apd |SV* |upg_version |NN SV *ver|bool qv
1258 Apd |SV* |vverify |NN SV *vs
1259 Apd |SV* |vnumify |NN SV *vs
1260 Apd |SV* |vnormal |NN SV *vs
1261 Apd |SV* |vstringify |NN SV *vs
1262 Apd |int |vcmp |NN SV *lhv|NN SV *rhv
1263 : Used in pp_hot.c and pp_sys.c
1264 p |PerlIO*|nextargv |NN GV* gv|bool nomagicopen
1265 AdMTpP |char* |ninstr |NN const char* big|NN const char* bigend \
1266 |NN const char* little|NN const char* lend
1267 Apd |void |op_free |NULLOK OP* arg
1268 xp |OP* |op_unscope |NULLOK OP* o
1270 p |void |opslab_free |NN OPSLAB *slab
1271 p |void |opslab_free_nopad|NN OPSLAB *slab
1272 p |void |opslab_force_free|NN OPSLAB *slab
1275 p |void |package |NN OP* o
1277 p |void |package_version|NN OP* v
1278 : Used in toke.c and perly.y
1279 p |PADOFFSET|allocmy |NN const char *const name|const STRLEN len\
1282 Axp |PADOFFSET|alloccopstash|NN HV *hv
1285 pR |OP* |oopsAV |NN OP* o
1287 pR |OP* |oopsHV |NN OP* o
1289 : peephole optimiser
1290 p |void |peep |NULLOK OP* o
1291 p |void |rpeep |NULLOK OP* o
1292 : Defined in doio.c, used only in pp_hot.c
1293 dopx |PerlIO*|start_glob |NN SV *tmpglob|NN IO *io
1295 Ap |void |reentrant_size
1296 Ap |void |reentrant_init
1297 Ap |void |reentrant_free
1298 ATp |void* |reentrant_retry|NN const char *f|...
1300 : "Very" special - can't use the O flag for this one:
1301 : (The rename from perl_atexit to Perl_call_atexit was in 864dbfa3ca8032ef)
1302 Ap |void |call_atexit |ATEXIT_t fn|NULLOK void *ptr
1303 ApdO |I32 |call_argv |NN const char* sub_name|I32 flags|NN char** argv
1304 ApdO |I32 |call_method |NN const char* methname|I32 flags
1305 ApdO |I32 |call_pv |NN const char* sub_name|I32 flags
1306 ApdO |I32 |call_sv |NN SV* sv|volatile I32 flags
1307 Ap |void |despatch_signals
1308 Ap |OP * |doref |NN OP *o|I32 type|bool set_op_ref
1309 ApdO |SV* |eval_pv |NN const char* p|I32 croak_on_error
1310 ApdO |I32 |eval_sv |NN SV* sv|I32 flags
1311 ApdO |SV* |get_sv |NN const char *name|I32 flags
1312 ApdO |AV* |get_av |NN const char *name|I32 flags
1313 ApdO |HV* |get_hv |NN const char *name|I32 flags
1314 ApdO |CV* |get_cv |NN const char* name|I32 flags
1315 Apd |CV* |get_cvn_flags |NN const char* name|STRLEN len|I32 flags
1316 ATdo |const char*|Perl_setlocale|const int category|NULLOK const char* locale
1317 #if defined(HAS_NL_LANGINFO) && defined(PERL_LANGINFO_H)
1318 ATdo |const char*|Perl_langinfo|const nl_item item
1320 ATdo |const char*|Perl_langinfo|const int item
1322 ApOx |int |init_i18nl10n |int printwarn
1323 AbpOx |int |init_i18nl14n |int printwarn
1324 p |char* |my_strerror |const int errnum
1325 XpT |void |_warn_problematic_locale
1326 Xp |void |set_numeric_underlying
1327 Xp |void |set_numeric_standard
1328 Xp |bool |_is_in_locale_category|const bool compiling|const int category
1329 ApdT |void |switch_to_global_locale
1330 ApdT |bool |sync_locale
1331 ApxT |void |thread_locale_init
1332 ApxT |void |thread_locale_term
1333 ApdO |void |require_pv |NN const char* pv
1334 Abpd |void |pack_cat |NN SV *cat|NN const char *pat|NN const char *patend \
1335 |NN SV **beglist|NN SV **endlist|NN SV ***next_in_list|U32 flags
1336 Apd |void |packlist |NN SV *cat|NN const char *pat|NN const char *patend|NN SV **beglist|NN SV **endlist
1337 #if defined(PERL_USES_PL_PIDSTATUS) && defined(PERL_IN_UTIL_C)
1338 S |void |pidgone |Pid_t pid|int status
1341 p |OP* |pmruntime |NN OP *o|NN OP *expr|NULLOK OP *repl \
1343 #if defined(PERL_IN_OP_C)
1344 S |OP* |pmtrans |NN OP* o|NN OP* expr|NN OP* repl
1347 Ap |void |push_scope
1348 Apmb |OP* |ref |NULLOK OP* o|I32 type
1349 #if defined(PERL_IN_OP_C)
1350 S |OP* |refkids |NULLOK OP* o|I32 type
1352 Ap |void |regdump |NN const regexp* r
1353 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_PERL_C) || defined(PERL_IN_UTF8_C)
1354 EXpR |SV* |_new_invlist_C_array|NN const UV* const list
1355 EXxp |bool |_invlistEQ |NN SV* const a|NN SV* const b|const bool complement_b
1357 Ap |I32 |pregexec |NN REGEXP * const prog|NN char* stringarg \
1358 |NN char* strend|NN char* strbeg \
1359 |SSize_t minend |NN SV* screamer|U32 nosave
1360 Ap |void |pregfree |NULLOK REGEXP* r
1361 Ap |void |pregfree2 |NN REGEXP *rx
1362 : FIXME - is anything in re using this now?
1363 EXp |REGEXP*|reg_temp_copy |NULLOK REGEXP* dsv|NN REGEXP* ssv
1364 Ap |void |regfree_internal|NN REGEXP *const rx
1365 #if defined(USE_ITHREADS)
1366 Ap |void* |regdupe_internal|NN REGEXP * const r|NN CLONE_PARAMS* param
1368 EXp |regexp_engine const *|current_re_engine
1369 Ap |REGEXP*|pregcomp |NN SV * const pattern|const U32 flags
1370 p |REGEXP*|re_op_compile |NULLOK SV ** const patternp \
1371 |int pat_count|NULLOK OP *expr \
1372 |NN const regexp_engine* eng \
1373 |NULLOK REGEXP *old_re \
1374 |NULLOK bool *is_bare_re \
1375 |const U32 rx_flags|const U32 pm_flags
1376 Ap |REGEXP*|re_compile |NN SV * const pattern|U32 orig_rx_flags
1377 Ap |char* |re_intuit_start|NN REGEXP * const rx \
1379 |NN const char* const strbeg \
1383 |NULLOK re_scream_pos_data *data
1384 Ap |SV* |re_intuit_string|NN REGEXP *const r
1385 Ap |I32 |regexec_flags |NN REGEXP *const rx|NN char *stringarg \
1386 |NN char *strend|NN char *strbeg \
1387 |SSize_t minend|NN SV *sv \
1388 |NULLOK void *data|U32 flags
1389 ApR |regnode*|regnext |NULLOK regnode* p
1390 EXp |SV*|reg_named_buff |NN REGEXP * const rx|NULLOK SV * const key \
1391 |NULLOK SV * const value|const U32 flags
1392 EXp |SV*|reg_named_buff_iter |NN REGEXP * const rx|NULLOK const SV * const lastkey \
1394 Ap |SV*|reg_named_buff_fetch |NN REGEXP * const rx|NN SV * const namesv|const U32 flags
1395 Ap |bool|reg_named_buff_exists |NN REGEXP * const rx|NN SV * const key|const U32 flags
1396 Ap |SV*|reg_named_buff_firstkey |NN REGEXP * const rx|const U32 flags
1397 Ap |SV*|reg_named_buff_nextkey |NN REGEXP * const rx|const U32 flags
1398 Ap |SV*|reg_named_buff_scalar |NN REGEXP * const rx|const U32 flags
1399 Ap |SV*|reg_named_buff_all |NN REGEXP * const rx|const U32 flags
1401 : FIXME - is anything in re using this now?
1402 EXp |void|reg_numbered_buff_fetch|NN REGEXP * const rx|const I32 paren|NULLOK SV * const sv
1403 : FIXME - is anything in re using this now?
1404 EXp |void|reg_numbered_buff_store|NN REGEXP * const rx|const I32 paren|NULLOK SV const * const value
1405 : FIXME - is anything in re using this now?
1406 EXp |I32|reg_numbered_buff_length|NN REGEXP * const rx|NN const SV * const sv|const I32 paren
1408 : FIXME - is anything in re using this now?
1409 EXp |SV*|reg_qr_package|NN REGEXP * const rx
1411 ATp |void |repeatcpy |NN char* to|NN const char* from|I32 len|IV count
1412 AdTpP |char* |rninstr |NN const char* big|NN const char* bigend \
1413 |NN const char* little|NN const char* lend
1414 Ap |Sighandler_t|rsignal |int i|Sighandler_t t
1416 p |int |rsignal_restore|int i|NULLOK Sigsave_t* t
1418 p |int |rsignal_save |int i|Sighandler_t t1|NN Sigsave_t* save
1419 Ap |Sighandler_t|rsignal_state|int i
1420 #if defined(PERL_IN_PP_CTL_C)
1421 S |void |rxres_free |NN void** rsp
1422 S |void |rxres_restore |NN void **rsp|NN REGEXP *rx
1425 p |void |rxres_save |NN void **rsp|NN REGEXP *rx
1426 #if !defined(HAS_RENAME)
1428 p |I32 |same_dirent |NN const char* a|NN const char* b
1430 Apda |char* |savepv |NULLOK const char* pv
1431 Apda |char* |savepvn |NULLOK const char* pv|I32 len
1432 Apda |char* |savesharedpv |NULLOK const char* pv
1434 : NULLOK only to suppress a compiler warning
1435 Apda |char* |savesharedpvn |NULLOK const char *const pv \
1437 Apda |char* |savesharedsvpv |NN SV *sv
1438 Apda |char* |savesvpv |NN SV* sv
1439 Ap |void |savestack_grow
1440 Ap |void |savestack_grow_cnt |I32 need
1441 Amp |void |save_aelem |NN AV* av|SSize_t idx|NN SV **sptr
1442 Ap |void |save_aelem_flags|NN AV* av|SSize_t idx|NN SV **sptr \
1444 Ap |I32 |save_alloc |I32 size|I32 pad
1445 Ap |void |save_aptr |NN AV** aptr
1446 Ap |AV* |save_ary |NN GV* gv
1447 Ap |void |save_bool |NN bool* boolp
1448 Ap |void |save_clearsv |NN SV** svp
1449 Ap |void |save_delete |NN HV *hv|NN char *key|I32 klen
1450 Ap |void |save_hdelete |NN HV *hv|NN SV *keysv
1451 Ap |void |save_adelete |NN AV *av|SSize_t key
1452 Ap |void |save_destructor|DESTRUCTORFUNC_NOCONTEXT_t f|NN void* p
1453 Ap |void |save_destructor_x|DESTRUCTORFUNC_t f|NULLOK void* p
1454 Apmb |void |save_freesv |NULLOK SV* sv
1455 : Used in SAVEFREOP(), used in op.c, pp_ctl.c
1456 Apmb |void |save_freeop |NULLOK OP* o
1457 Apmb |void |save_freepv |NULLOK char* pv
1458 Ap |void |save_generic_svref|NN SV** sptr
1459 Ap |void |save_generic_pvref|NN char** str
1460 Ap |void |save_shared_pvref|NN char** str
1461 Adp |void |save_gp |NN GV* gv|I32 empty
1462 Ap |HV* |save_hash |NN GV* gv
1463 Ap |void |save_hints
1464 Amp |void |save_helem |NN HV *hv|NN SV *key|NN SV **sptr
1465 Ap |void |save_helem_flags|NN HV *hv|NN SV *key|NN SV **sptr|const U32 flags
1466 Ap |void |save_hptr |NN HV** hptr
1467 Ap |void |save_I16 |NN I16* intp
1468 Ap |void |save_I32 |NN I32* intp
1469 Ap |void |save_I8 |NN I8* bytep
1470 Ap |void |save_int |NN int* intp
1471 Ap |void |save_item |NN SV* item
1472 Ap |void |save_iv |NN IV *ivp
1473 Abp |void |save_list |NN SV** sarg|I32 maxsarg
1474 Abp |void |save_long |NN long* longp
1475 Apmb |void |save_mortalizesv|NN SV* sv
1476 Abp |void |save_nogv |NN GV* gv
1477 : Used in SAVEFREOP(), used in gv.c, op.c, perl.c, pp_ctl.c, pp_sort.c
1479 Ap |SV* |save_scalar |NN GV* gv
1480 Ap |void |save_pptr |NN char** pptr
1481 Ap |void |save_vptr |NN void *ptr
1482 Ap |void |save_re_context
1483 Ap |void |save_padsv_and_mortalize|PADOFFSET off
1484 Ap |void |save_sptr |NN SV** sptr
1485 Xp |void |save_strlen |NN STRLEN* ptr
1486 Ap |SV* |save_svref |NN SV** sptr
1487 Axpo |void |savetmps
1488 Ap |void |save_pushptr |NULLOK void *const ptr|const int type
1489 Ap |void |save_pushi32ptr|const I32 i|NULLOK void *const ptr|const int type
1490 : Used by SAVESWITCHSTACK() in pp.c
1491 Ap |void |save_pushptrptr|NULLOK void *const ptr1 \
1492 |NULLOK void *const ptr2|const int type
1493 #if defined(PERL_IN_SCOPE_C)
1494 S |void |save_pushptri32ptr|NULLOK void *const ptr1|const I32 i \
1495 |NULLOK void *const ptr2|const int type
1498 p |OP* |sawparens |NULLOK OP* o
1499 Apd |OP* |op_contextualize|NN OP* o|I32 context
1501 p |OP* |scalar |NULLOK OP* o
1502 #if defined(PERL_IN_OP_C)
1503 S |OP* |scalarkids |NULLOK OP* o
1504 S |OP* |scalarseq |NULLOK OP* o
1507 p |OP* |scalarvoid |NN OP* o
1508 Apd |NV |scan_bin |NN const char* start|STRLEN len|NN STRLEN* retlen
1509 Apd |NV |scan_hex |NN const char* start|STRLEN len|NN STRLEN* retlen
1510 Ap |char* |scan_num |NN const char* s|NN YYSTYPE *lvalp
1511 Apd |NV |scan_oct |NN const char* start|STRLEN len|NN STRLEN* retlen
1512 Axpd |OP* |op_scope |NULLOK OP* o
1513 : Only used by perl.c/miniperl.c, but defined in caretx.c
1514 pe |void |set_caret_X
1515 Apd |void |setdefout |NN GV* gv
1516 Ap |HEK* |share_hek |NN const char* str|SSize_t len|U32 hash
1517 #if defined(HAS_SIGACTION) && defined(SA_SIGINFO)
1519 Tp |Signal_t |sighandler |int sig|NULLOK siginfo_t *info|NULLOK void *uap
1520 ATp |Signal_t |csighandler |int sig|NULLOK siginfo_t *info|NULLOK void *uap
1522 Tp |Signal_t |sighandler |int sig
1523 ATp |Signal_t |csighandler |int sig
1525 Ap |SV** |stack_grow |NN SV** sp|NN SV** p|SSize_t n
1526 Ap |I32 |start_subparse |I32 is_format|U32 flags
1527 Xp |void |init_named_cv |NN CV *cv|NN OP *nameop
1529 p |void |sub_crush_depth|NN CV* cv
1530 Apbmd |bool |sv_2bool |NN SV *const sv
1531 Apd |bool |sv_2bool_flags |NN SV *sv|I32 flags
1532 Apd |CV* |sv_2cv |NULLOK SV* sv|NN HV **const st|NN GV **const gvp \
1534 Apd |IO* |sv_2io |NN SV *const sv
1535 #if defined(PERL_IN_SV_C)
1536 S |bool |glob_2number |NN GV* const gv
1538 Apmb |IV |sv_2iv |NN SV *sv
1539 Apd |IV |sv_2iv_flags |NN SV *const sv|const I32 flags
1540 Apd |SV* |sv_2mortal |NULLOK SV *const sv
1541 Apd |NV |sv_2nv_flags |NN SV *const sv|const I32 flags
1542 : Used in pp.c, pp_hot.c, sv.c
1543 pxd |SV* |sv_2num |NN SV *const sv
1544 Apmb |char* |sv_2pv |NN SV *sv|NULLOK STRLEN *lp
1545 Apd |char* |sv_2pv_flags |NN SV *const sv|NULLOK STRLEN *const lp|const I32 flags
1546 Apd |char* |sv_2pvutf8 |NN SV *sv|NULLOK STRLEN *const lp
1547 Apd |char* |sv_2pvbyte |NN SV *sv|NULLOK STRLEN *const lp
1548 Abp |char* |sv_pvn_nomg |NN SV* sv|NULLOK STRLEN* lp
1549 Apmb |UV |sv_2uv |NN SV *sv
1550 Apd |UV |sv_2uv_flags |NN SV *const sv|const I32 flags
1551 Abpd |IV |sv_iv |NN SV* sv
1552 Abpd |UV |sv_uv |NN SV* sv
1553 Abpd |NV |sv_nv |NN SV* sv
1554 Abpd |char* |sv_pvn |NN SV *sv|NN STRLEN *lp
1555 Abpd |char* |sv_pvutf8n |NN SV *sv|NN STRLEN *lp
1556 Abpd |char* |sv_pvbyten |NN SV *sv|NN STRLEN *lp
1557 Apd |I32 |sv_true |NULLOK SV *const sv
1558 #if defined(PERL_IN_SV_C)
1559 Sd |void |sv_add_arena |NN char *const ptr|const U32 size \
1562 ApdT |void |sv_backoff |NN SV *const sv
1563 Apd |SV* |sv_bless |NN SV *const sv|NN HV *const stash
1564 #if defined(PERL_DEBUG_READONLY_COW)
1565 p |void |sv_buf_to_ro |NN SV *sv
1566 # if defined(PERL_IN_SV_C)
1567 S |void |sv_buf_to_rw |NN SV *sv
1570 Afpd |void |sv_catpvf |NN SV *const sv|NN const char *const pat|...
1571 Apd |void |sv_vcatpvf |NN SV *const sv|NN const char *const pat \
1572 |NULLOK va_list *const args
1573 Apd |void |sv_catpv |NN SV *const sv|NULLOK const char* ptr
1574 Apmdb |void |sv_catpvn |NN SV *dsv|NN const char *sstr|STRLEN len
1575 Apmdb |void |sv_catsv |NN SV *dstr|NULLOK SV *sstr
1576 Apd |void |sv_chop |NN SV *const sv|NULLOK const char *const ptr
1577 : Used only in perl.c
1578 pd |I32 |sv_clean_all
1579 : Used only in perl.c
1580 pd |void |sv_clean_objs
1581 Apd |void |sv_clear |NN SV *const orig_sv
1582 #if defined(PERL_IN_SV_C)
1583 S |bool |curse |NN SV * const sv|const bool check_refcnt
1585 AMopd |I32 |sv_cmp |NULLOK SV *const sv1|NULLOK SV *const sv2
1586 Apd |I32 |sv_cmp_flags |NULLOK SV *const sv1|NULLOK SV *const sv2 \
1588 AMopd |I32 |sv_cmp_locale |NULLOK SV *const sv1|NULLOK SV *const sv2
1589 Apd |I32 |sv_cmp_locale_flags |NULLOK SV *const sv1 \
1590 |NULLOK SV *const sv2|const U32 flags
1591 #if defined(USE_LOCALE_COLLATE)
1592 Apbmd |char* |sv_collxfrm |NN SV *const sv|NN STRLEN *const nxp
1593 Apd |char* |sv_collxfrm_flags |NN SV *const sv|NN STRLEN *const nxp|I32 const flags
1595 Apd |int |getcwd_sv |NN SV* sv
1596 Apd |void |sv_dec |NULLOK SV *const sv
1597 Apd |void |sv_dec_nomg |NULLOK SV *const sv
1598 Ap |void |sv_dump |NULLOK SV* sv
1599 ApdR |bool |sv_derived_from|NN SV* sv|NN const char *const name
1600 ApdR |bool |sv_derived_from_sv|NN SV* sv|NN SV *namesv|U32 flags
1601 ApdR |bool |sv_derived_from_pv|NN SV* sv|NN const char *const name|U32 flags
1602 ApdR |bool |sv_derived_from_pvn|NN SV* sv|NN const char *const name \
1603 |const STRLEN len|U32 flags
1604 ApdR |bool |sv_does |NN SV* sv|NN const char *const name
1605 ApdR |bool |sv_does_sv |NN SV* sv|NN SV* namesv|U32 flags
1606 ApdR |bool |sv_does_pv |NN SV* sv|NN const char *const name|U32 flags
1607 ApdR |bool |sv_does_pvn |NN SV* sv|NN const char *const name|const STRLEN len \
1609 Apbmd |I32 |sv_eq |NULLOK SV* sv1|NULLOK SV* sv2
1610 Apd |I32 |sv_eq_flags |NULLOK SV* sv1|NULLOK SV* sv2|const U32 flags
1611 Apd |void |sv_free |NULLOK SV *const sv
1612 poxX |void |sv_free2 |NN SV *const sv|const U32 refcnt
1613 : Used only in perl.c
1614 pd |void |sv_free_arenas
1615 Apd |char* |sv_gets |NN SV *const sv|NN PerlIO *const fp|I32 append
1616 Apd |char* |sv_grow |NN SV *const sv|STRLEN newlen
1617 Apd |void |sv_inc |NULLOK SV *const sv
1618 Apd |void |sv_inc_nomg |NULLOK SV *const sv
1619 Apmdb |void |sv_insert |NN SV *const bigstr|const STRLEN offset \
1620 |const STRLEN len|NN const char *const little \
1621 |const STRLEN littlelen
1622 Apd |void |sv_insert_flags|NN SV *const bigstr|const STRLEN offset|const STRLEN len \
1623 |NN const char *little|const STRLEN littlelen|const U32 flags
1624 Apd |int |sv_isa |NULLOK SV* sv|NN const char *const name
1625 Apd |int |sv_isobject |NULLOK SV* sv
1626 Apd |STRLEN |sv_len |NULLOK SV *const sv
1627 Apd |STRLEN |sv_len_utf8 |NULLOK SV *const sv
1628 p |STRLEN |sv_len_utf8_nomg|NN SV *const sv
1629 Apd |void |sv_magic |NN SV *const sv|NULLOK SV *const obj|const int how \
1630 |NULLOK const char *const name|const I32 namlen
1631 Apd |MAGIC *|sv_magicext |NN SV *const sv|NULLOK SV *const obj|const int how \
1632 |NULLOK const MGVTBL *const vtbl|NULLOK const char *const name \
1634 EiT |bool |sv_only_taint_gmagic|NN SV *sv
1635 : exported for re.pm
1636 EXp |MAGIC *|sv_magicext_mglob|NN SV *sv
1637 ApdbmR |SV* |sv_mortalcopy |NULLOK SV *const oldsv
1638 ApdR |SV* |sv_mortalcopy_flags|NULLOK SV *const oldsv|U32 flags
1639 ApdR |SV* |sv_newmortal
1640 Apd |SV* |sv_newref |NULLOK SV *const sv
1641 Ap |char* |sv_peek |NULLOK SV* sv
1642 Apd |void |sv_pos_u2b |NULLOK SV *const sv|NN I32 *const offsetp|NULLOK I32 *const lenp
1643 Apd |STRLEN |sv_pos_u2b_flags|NN SV *const sv|STRLEN uoffset \
1644 |NULLOK STRLEN *const lenp|U32 flags
1645 Apd |void |sv_pos_b2u |NULLOK SV *const sv|NN I32 *const offsetp
1646 Apd |STRLEN |sv_pos_b2u_flags|NN SV *const sv|STRLEN const offset \
1648 Apmdb |char* |sv_pvn_force |NN SV* sv|NULLOK STRLEN* lp
1649 Apd |char* |sv_pvutf8n_force|NN SV *const sv|NULLOK STRLEN *const lp
1650 Apd |char* |sv_pvbyten_force|NN SV *const sv|NULLOK STRLEN *const lp
1651 Apd |char* |sv_recode_to_utf8 |NN SV* sv|NN SV *encoding
1652 Apd |bool |sv_cat_decode |NN SV* dsv|NN SV *encoding|NN SV *ssv|NN int *offset \
1653 |NN char* tstr|int tlen
1654 ApdR |const char* |sv_reftype |NN const SV *const sv|const int ob
1655 Apd |SV* |sv_ref |NULLOK SV *dst|NN const SV *const sv|const int ob
1656 Apd |void |sv_replace |NN SV *const sv|NN SV *const nsv
1657 Apd |void |sv_report_used
1658 Apd |void |sv_reset |NN const char* s|NULLOK HV *const stash
1659 p |void |sv_resetpvn |NULLOK const char* s|STRLEN len \
1660 |NULLOK HV *const stash
1661 Afpd |void |sv_setpvf |NN SV *const sv|NN const char *const pat|...
1662 Apd |void |sv_vsetpvf |NN SV *const sv|NN const char *const pat|NULLOK va_list *const args
1663 Apd |void |sv_setiv |NN SV *const sv|const IV num
1664 Apdb |void |sv_setpviv |NN SV *const sv|const IV num
1665 Apd |void |sv_setuv |NN SV *const sv|const UV num
1666 Apd |void |sv_setnv |NN SV *const sv|const NV num
1667 Apd |SV* |sv_setref_iv |NN SV *const rv|NULLOK const char *const classname|const IV iv
1668 Apd |SV* |sv_setref_uv |NN SV *const rv|NULLOK const char *const classname|const UV uv
1669 Apd |SV* |sv_setref_nv |NN SV *const rv|NULLOK const char *const classname|const NV nv
1670 Apd |SV* |sv_setref_pv |NN SV *const rv|NULLOK const char *const classname \
1671 |NULLOK void *const pv
1672 Apd |SV* |sv_setref_pvn |NN SV *const rv|NULLOK const char *const classname \
1673 |NN const char *const pv|const STRLEN n
1674 Apd |void |sv_setpv |NN SV *const sv|NULLOK const char *const ptr
1675 Apd |void |sv_setpvn |NN SV *const sv|NULLOK const char *const ptr|const STRLEN len
1676 Apd |char *|sv_setpv_bufsize|NN SV *const sv|const STRLEN cur|const STRLEN len
1677 Xp |void |sv_sethek |NN SV *const sv|NULLOK const HEK *const hek
1678 Apmdb |void |sv_setsv |NN SV *dstr|NULLOK SV *sstr
1679 Apmdb |void |sv_taint |NN SV* sv
1680 ApdR |bool |sv_tainted |NN SV *const sv
1681 Apd |int |sv_unmagic |NN SV *const sv|const int type
1682 Apd |int |sv_unmagicext |NN SV *const sv|const int type|NULLOK MGVTBL *vtbl
1683 Apdmb |void |sv_unref |NN SV* sv
1684 Apd |void |sv_unref_flags |NN SV *const ref|const U32 flags
1685 Apd |void |sv_untaint |NN SV *const sv
1686 Apd |void |sv_upgrade |NN SV *const sv|svtype new_type
1687 Apdmb |void |sv_usepvn |NN SV* sv|NULLOK char* ptr|STRLEN len
1688 Apd |void |sv_usepvn_flags|NN SV *const sv|NULLOK char* ptr|const STRLEN len\
1690 Apd |void |sv_vcatpvfn |NN SV *const sv|NN const char *const pat|const STRLEN patlen \
1691 |NULLOK va_list *const args|NULLOK SV **const svargs|const Size_t sv_count \
1692 |NULLOK bool *const maybe_tainted
1693 Apd |void |sv_vcatpvfn_flags|NN SV *const sv|NN const char *const pat|const STRLEN patlen \
1694 |NULLOK va_list *const args|NULLOK SV **const svargs|const Size_t sv_count \
1695 |NULLOK bool *const maybe_tainted|const U32 flags
1696 Apd |void |sv_vsetpvfn |NN SV *const sv|NN const char *const pat|const STRLEN patlen \
1697 |NULLOK va_list *const args|NULLOK SV **const svargs \
1698 |const Size_t sv_count|NULLOK bool *const maybe_tainted
1699 ApR |NV |str_to_version |NN SV *sv
1700 EXpRx |SV* |swash_init |NN const char* pkg|NN const char* name|NN SV* listsv|I32 minbits|I32 none
1701 EXpx |UV |swash_fetch |NN SV *swash|NN const U8 *ptr|bool do_utf8
1702 #ifdef PERL_IN_REGCOMP_C
1703 EixR |SV* |add_cp_to_invlist |NULLOK SV* invlist|const UV cp
1704 EixRT |bool |invlist_is_iterating|NN SV* const invlist
1705 #ifndef PERL_EXT_RE_BUILD
1706 EixRT |UV* |_invlist_array_init |NN SV* const invlist|const bool will_have_0
1707 EixRT |UV |invlist_max |NN SV* const invlist
1708 ESx |void |_append_range_to_invlist |NN SV* const invlist|const UV start|const UV end
1709 ESx |void |invlist_extend |NN SV* const invlist|const UV len
1710 ESx |void |invlist_replace_list_destroys_src|NN SV *dest|NN SV *src
1711 EixRT |IV* |get_invlist_previous_index_addr|NN SV* invlist
1712 Eix |void |invlist_set_len|NN SV* const invlist|const UV len|const bool offset
1713 EixT |void |invlist_set_previous_index|NN SV* const invlist|const IV index
1714 EixRT |IV |invlist_previous_index|NN SV* const invlist
1715 EixT |void |invlist_trim |NN SV* invlist
1716 Eix |void |invlist_clear |NN SV* invlist
1717 Sx |void |initialize_invlist_guts|NN SV* invlist|const Size_t initial_size
1719 EixRT |STRLEN*|get_invlist_iter_addr |NN SV* invlist
1720 EixT |void |invlist_iterinit|NN SV* invlist
1721 ESxRT |bool |invlist_iternext|NN SV* invlist|NN UV* start|NN UV* end
1722 EixT |void |invlist_iterfinish|NN SV* invlist
1723 EixRT |UV |invlist_highest|NN SV* const invlist
1724 ExRS |SV* |_make_exactf_invlist |NN RExC_state_t *pRExC_state \
1726 ESxR |SV* |invlist_contents|NN SV* const invlist \
1727 |const bool traditional_style
1728 ESRT |bool |new_regcurly |NN const char *s|NN const char *e
1730 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)
1731 EXmx |void |_invlist_intersection |NN SV* const a|NN SV* const b|NN SV** i
1732 EXpx |void |_invlist_intersection_maybe_complement_2nd \
1733 |NULLOK SV* const a|NN SV* const b \
1734 |const bool complement_b|NN SV** i
1735 EXmx |void |_invlist_union |NULLOK SV* const a|NN SV* const b|NN SV** output
1736 EXpx |void |_invlist_union_maybe_complement_2nd \
1737 |NULLOK SV* const a|NN SV* const b \
1738 |const bool complement_b|NN SV** output
1739 EXmx |void |_invlist_subtract|NN SV* const a|NN SV* const b|NN SV** result
1740 EXpx |void |_invlist_invert|NN SV* const invlist
1741 EXxpR |SV* |_new_invlist |IV initial_size
1742 EXxpR |SV* |_add_range_to_invlist |NULLOK SV* invlist|UV start|UV end
1743 EXxpR |SV* |_setup_canned_invlist|const STRLEN size|const UV element0|NN UV** other_elements_ptr
1745 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_SV_C)
1746 ExpX |SV* |invlist_clone |NN SV* const invlist|NULLOK SV* newlist
1748 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_TOKE_C) || defined(PERL_IN_UTF8_C) || defined(PERL_IN_PP_C)
1749 EixRT |UV* |invlist_array |NN SV* const invlist
1750 EixRT |bool |is_invlist |NULLOK SV* const invlist
1751 EixRT |bool* |get_invlist_offset_addr|NN SV* invlist
1752 EixRT |UV |_invlist_len |NN SV* const invlist
1753 ExiRT |bool |_invlist_contains_cp|NN SV* const invlist|const UV cp
1754 EXpxRT |SSize_t|_invlist_search |NN SV* const invlist|const UV cp
1756 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
1757 EXpx |SV* |_get_regclass_nonbitmap_data \
1758 |NULLOK const regexp *prog \
1759 |NN const struct regnode *node \
1761 |NULLOK SV **listsvp \
1762 |NULLOK SV **lonly_utf8_locale \
1763 |NULLOK SV **output_invlist
1765 #if defined(PERL_IN_REGCOMP_C) || defined (PERL_IN_DUMP_C)
1766 EXxp |void |_invlist_dump |NN PerlIO *file|I32 level \
1767 |NN const char* const indent \
1768 |NN SV* const invlist
1771 Ap |void |taint_proper |NULLOK const char* f|NN const char *const s
1772 Epx |char * |_byte_dump_string \
1773 |NN const U8 * const start \
1776 #if defined(PERL_IN_UTF8_C)
1777 iTR |int |does_utf8_overflow|NN const U8 * const s \
1779 |const bool consider_overlongs
1780 iTR |int |is_utf8_overlong_given_start_byte_ok|NN const U8 * const s \
1782 iTR |int |isFF_OVERLONG |NN const U8 * const s|const STRLEN len
1783 SxR |char * |unexpected_non_continuation_text \
1784 |NN const U8 * const s \
1786 |const STRLEN non_cont_byte_pos \
1787 |const STRLEN expect_len
1788 S |void |warn_on_first_deprecated_use \
1789 |NN const char * const name \
1790 |NN const char * const alternative \
1791 |const bool use_locale \
1792 |NN const char * const file \
1793 |const unsigned line
1794 S |U32 |check_and_deprecate \
1797 |const unsigned type \
1798 |const bool use_locale \
1799 |NN const char * const file \
1800 |const unsigned line
1801 S |UV |_to_utf8_case |const UV uv1 \
1802 |NULLOK const U8 *p \
1806 |NN const int * const invmap \
1807 |NULLOK const unsigned int * const * const aux_tables \
1808 |NULLOK const U8 * const aux_table_lengths \
1809 |NN const char * const normal
1810 S |UV |turkic_fc |NN const U8 * const p |NN const U8 * const e|NN U8* ustrp|NN STRLEN *lenp
1811 S |UV |turkic_lc |NN const U8 * const p0|NN const U8 * const e|NN U8* ustrp|NN STRLEN *lenp
1812 S |UV |turkic_uc |NN const U8 * const p |NN const U8 * const e|NN U8* ustrp|NN STRLEN *lenp
1814 ApbmdD |UV |to_utf8_lower |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp
1815 Axp |UV |_to_utf8_lower_flags|NN const U8 *p|NULLOK const U8* e \
1816 |NN U8* ustrp|NULLOK STRLEN *lenp|bool flags \
1817 |NN const char * const file|const int line
1818 ApbmdD |UV |to_utf8_upper |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp
1819 Axp |UV |_to_utf8_upper_flags |NN const U8 *p|NULLOK const U8 *e \
1820 |NN U8* ustrp|NULLOK STRLEN *lenp|bool flags \
1821 |NN const char * const file|const int line
1822 ApbmdD |UV |to_utf8_title |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp
1823 Axp |UV |_to_utf8_title_flags |NN const U8 *p|NULLOK const U8* e \
1824 |NN U8* ustrp|NULLOK STRLEN *lenp|bool flags \
1825 |NN const char * const file|const int line
1826 ApbmdD |UV |to_utf8_fold |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp
1827 Axp |UV |_to_utf8_fold_flags|NN const U8 *p|NULLOK const U8 *e \
1828 |NN U8* ustrp|NULLOK STRLEN *lenp|U8 flags \
1829 |NN const char * const file|const int line
1830 #if defined(PERL_IN_MG_C) || defined(PERL_IN_PP_C)
1831 pT |bool |translate_substr_offsets|STRLEN curlen|IV pos1_iv \
1832 |bool pos1_is_uv|IV len_iv \
1833 |bool len_is_uv|NN STRLEN *posp \
1836 #if defined(UNLINK_ALL_VERSIONS)
1837 Ap |I32 |unlnk |NN const char* f
1839 Abpd |SSize_t|unpack_str |NN const char *pat|NN const char *patend|NN const char *s \
1840 |NULLOK const char *strbeg|NN const char *strend|NULLOK char **new_s \
1842 Apd |SSize_t|unpackstring |NN const char *pat|NN const char *patend|NN const char *s \
1843 |NN const char *strend|U32 flags
1844 Ap |void |unsharepvn |NULLOK const char* sv|I32 len|U32 hash
1845 : Used in gv.c, hv.c
1846 p |void |unshare_hek |NULLOK HEK* hek
1848 p |void |utilize |int aver|I32 floor|NULLOK OP* version|NN OP* idop|NULLOK OP* arg
1849 Apx |void |_force_out_malformed_utf8_message \
1850 |NN const U8 *const p|NN const U8 * const e|const U32 flags \
1851 |const bool die_here
1852 EXp |U8* |utf16_to_utf8 |NN U8* p|NN U8 *d|I32 bytelen|NN I32 *newlen
1853 EXp |U8* |utf16_to_utf8_reversed|NN U8* p|NN U8 *d|I32 bytelen|NN I32 *newlen
1854 AdpR |STRLEN |utf8_length |NN const U8* s|NN const U8 *e
1855 AipdR |IV |utf8_distance |NN const U8 *a|NN const U8 *b
1856 AipdRT |U8* |utf8_hop |NN const U8 *s|SSize_t off
1857 AipdRT |U8* |utf8_hop_back|NN const U8 *s|SSize_t off|NN const U8 *start
1858 AipdRT |U8* |utf8_hop_forward|NN const U8 *s|SSize_t off|NN const U8 *end
1859 AipdRT |U8* |utf8_hop_safe |NN const U8 *s|SSize_t off|NN const U8 *start|NN const U8 *end
1860 Apxd |U8* |utf8_to_bytes |NN U8 *s|NN STRLEN *lenp
1861 Apd |int |bytes_cmp_utf8 |NN const U8 *b|STRLEN blen|NN const U8 *u \
1863 AMxdp |U8* |bytes_from_utf8|NN const U8 *s|NN STRLEN *lenp|NN bool *is_utf8p
1864 AxTp |U8* |bytes_from_utf8_loc|NN const U8 *s \
1866 |NN bool *is_utf8p \
1867 |NULLOK const U8 ** first_unconverted
1868 Apxd |U8* |bytes_to_utf8 |NN const U8 *s|NN STRLEN *lenp
1869 ApdD |UV |utf8_to_uvchr |NN const U8 *s|NULLOK STRLEN *retlen
1870 AbpdD |UV |utf8_to_uvuni |NN const U8 *s|NULLOK STRLEN *retlen
1871 AbpxD |UV |valid_utf8_to_uvuni |NN const U8 *s|NULLOK STRLEN *retlen
1872 AMpd |UV |utf8_to_uvchr_buf |NN const U8 *s|NN const U8 *send|NULLOK STRLEN *retlen
1873 ApdD |UV |utf8_to_uvuni_buf |NN const U8 *s|NN const U8 *send|NULLOK STRLEN *retlen
1874 px |bool |check_utf8_print |NN const U8 *s|const STRLEN len
1876 AdMTp |UV |utf8n_to_uvchr |NN const U8 *s \
1878 |NULLOK STRLEN *retlen \
1880 AdMTp |UV |utf8n_to_uvchr_error|NN const U8 *s \
1882 |NULLOK STRLEN *retlen \
1884 |NULLOK U32 * errors
1885 AxTdi |UV |utf8n_to_uvchr_msgs|NN const U8 *s \
1887 |NULLOK STRLEN *retlen \
1889 |NULLOK U32 * errors \
1891 AxTp |UV |_utf8n_to_uvchr_msgs_helper \
1894 |NULLOK STRLEN *retlen \
1896 |NULLOK U32 * errors \
1898 AipTR |UV |valid_utf8_to_uvchr |NN const U8 *s|NULLOK STRLEN *retlen
1899 Ap |UV |utf8n_to_uvuni|NN const U8 *s|STRLEN curlen|NULLOK STRLEN *retlen|U32 flags
1901 Adm |U8* |uvchr_to_utf8 |NN U8 *d|UV uv
1902 Ap |U8* |uvuni_to_utf8 |NN U8 *d|UV uv
1903 Adm |U8* |uvchr_to_utf8_flags |NN U8 *d|UV uv|UV flags
1904 Admx |U8* |uvchr_to_utf8_flags_msgs|NN U8 *d|UV uv|UV flags|NULLOK HV ** msgs
1905 AMpod |U8* |uvoffuni_to_utf8_flags |NN U8 *d|UV uv|const UV flags
1906 Apx |U8* |uvoffuni_to_utf8_flags_msgs|NN U8 *d|UV uv|const UV flags|NULLOK HV** msgs
1907 Ap |U8* |uvuni_to_utf8_flags |NN U8 *d|UV uv|UV flags
1908 Apd |char* |pv_uni_display |NN SV *dsv|NN const U8 *spv|STRLEN len|STRLEN pvlim|UV flags
1909 ApdR |char* |sv_uni_display |NN SV *dsv|NN SV *ssv|STRLEN pvlim|UV flags
1910 EXpR |Size_t |_inverse_folds |const UV cp \
1911 |NN unsigned int * first_folds_to \
1912 |NN const unsigned int ** remaining_folds_to
1913 : Used by Data::Alias
1914 EXp |void |vivify_defelem |NN SV* sv
1916 pR |SV* |vivify_ref |NN SV* sv|U32 to_what
1918 p |I32 |wait4pid |Pid_t pid|NN int* statusp|int flags
1919 : Used in locale.c and perl.c
1920 p |U32 |parse_unicode_opts|NN const char **popt
1922 XpTo |double |drand48_r |NN perl_drand48_t *random_state
1923 XpTo |void |drand48_init_r |NN perl_drand48_t *random_state|U32 seed
1924 : Only used in perl.c
1925 p |void |get_hash_seed |NN unsigned char * const seed_buffer
1926 : Used in doio.c, pp_hot.c, pp_sys.c
1927 p |void |report_evil_fh |NULLOK const GV *gv
1928 : Used in doio.c, pp_hot.c, pp_sys.c
1929 p |void |report_wrongway_fh|NULLOK const GV *gv|const char have
1930 : Used in mg.c, pp.c, pp_hot.c, regcomp.c
1931 XEpd |void |report_uninit |NULLOK const SV *uninit_sv
1932 #if defined(PERL_IN_OP_C) || defined(PERL_IN_SV_C)
1933 p |void |report_redefined_cv|NN const SV *name \
1934 |NN const CV *old_cv \
1935 |NULLOK SV * const *new_const_svp
1937 Apd |void |warn_sv |NN SV *baseex
1938 Afpd |void |warn |NN const char* pat|...
1939 Apd |void |vwarn |NN const char* pat|NULLOK va_list* args
1940 Afp |void |warner |U32 err|NN const char* pat|...
1941 Afp |void |ck_warner |U32 err|NN const char* pat|...
1942 Afp |void |ck_warner_d |U32 err|NN const char* pat|...
1943 Ap |void |vwarner |U32 err|NN const char* pat|NULLOK va_list* args
1944 #ifdef USE_C_BACKTRACE
1945 pd |Perl_c_backtrace*|get_c_backtrace|int max_depth|int skip
1946 dm |void |free_c_backtrace|NN Perl_c_backtrace* bt
1947 Apd |SV* |get_c_backtrace_dump|int max_depth|int skip
1948 Apd |bool |dump_c_backtrace|NN PerlIO* fp|int max_depth|int skip
1951 p |void |watch |NN char** addr
1952 Am |I32 |whichsig |NN const char* sig
1953 Ap |I32 |whichsig_sv |NN SV* sigsv
1954 Ap |I32 |whichsig_pv |NN const char* sig
1955 Ap |I32 |whichsig_pvn |NN const char* sig|STRLEN len
1956 : used to check for NULs in pathnames and other names
1957 AiR |bool |is_safe_syscall|NN const char *pv|STRLEN len|NN const char *what|NN const char *op_name
1959 iTR |bool |should_warn_nl|NN const char *pv
1962 p |void |write_to_stderr|NN SV* msv
1964 p |int |yyerror |NN const char *const s
1966 pr |void |abort_execution|NN const char * const msg|NN const char * const name
1967 p |int |yyerror_pv |NN const char *const s|U32 flags
1968 p |int |yyerror_pvn |NULLOK const char *const s|STRLEN len|U32 flags
1969 : Used in perly.y, and by Data::Alias
1972 : Used in perl.c, pp_ctl.c
1973 p |int |yyparse |int gramtype
1974 : Only used in scope.c
1975 p |void |parser_free |NN const yy_parser *parser
1977 p |void |parser_free_nexttoke_ops|NN yy_parser *parser \
1980 #if defined(PERL_IN_TOKE_C)
1981 S |int |yywarn |NN const char *const s|U32 flags
1983 #if defined(MYMALLOC)
1984 Ap |void |dump_mstats |NN const char* s
1985 Ap |int |get_mstats |NN perl_mstats_t *buf|int buflen|int level
1987 ATpa |Malloc_t|safesysmalloc |MEM_SIZE nbytes
1988 ATpa |Malloc_t|safesyscalloc |MEM_SIZE elements|MEM_SIZE size
1989 ATpR |Malloc_t|safesysrealloc|Malloc_t where|MEM_SIZE nbytes
1990 ATp |Free_t |safesysfree |Malloc_t where
1991 AirTe |void |croak_memory_wrap
1992 #if defined(PERL_GLOBAL_STRUCT)
1993 Ap |struct perl_vars *|GetVars
1994 Ap |struct perl_vars*|init_global_struct
1995 Ap |void |free_global_struct|NN struct perl_vars *plvarsp
1997 Ap |int |runops_standard
1998 Ap |int |runops_debug
1999 Afpd |void |sv_catpvf_mg |NN SV *const sv|NN const char *const pat|...
2000 Apd |void |sv_vcatpvf_mg |NN SV *const sv|NN const char *const pat \
2001 |NULLOK va_list *const args
2002 Apd |void |sv_catpv_mg |NN SV *const sv|NULLOK const char *const ptr
2003 Apdbm |void |sv_catpvn_mg |NN SV *sv|NN const char *ptr|STRLEN len
2004 Apdbm |void |sv_catsv_mg |NN SV *dsv|NULLOK SV *ssv
2005 Afpd |void |sv_setpvf_mg |NN SV *const sv|NN const char *const pat|...
2006 Apd |void |sv_vsetpvf_mg |NN SV *const sv|NN const char *const pat \
2007 |NULLOK va_list *const args
2008 Apd |void |sv_setiv_mg |NN SV *const sv|const IV i
2009 Apdb |void |sv_setpviv_mg |NN SV *const sv|const IV iv
2010 Apd |void |sv_setuv_mg |NN SV *const sv|const UV u
2011 Apd |void |sv_setnv_mg |NN SV *const sv|const NV num
2012 Apd |void |sv_setpv_mg |NN SV *const sv|NULLOK const char *const ptr
2013 Apd |void |sv_setpvn_mg |NN SV *const sv|NN const char *const ptr|const STRLEN len
2014 Apd |void |sv_setsv_mg |NN SV *const dstr|NULLOK SV *const sstr
2015 Apdbm |void |sv_usepvn_mg |NN SV *sv|NULLOK char *ptr|STRLEN len
2016 ApR |MGVTBL*|get_vtbl |int vtbl_id
2017 Apd |char* |pv_display |NN SV *dsv|NN const char *pv|STRLEN cur|STRLEN len \
2019 Apd |char* |pv_escape |NULLOK SV *dsv|NN char const * const str\
2020 |const STRLEN count|const STRLEN max\
2021 |NULLOK STRLEN * const escaped\
2023 Apd |char* |pv_pretty |NN SV *dsv|NN char const * const str\
2024 |const STRLEN count|const STRLEN max\
2025 |NULLOK char const * const start_color\
2026 |NULLOK char const * const end_color\
2028 Afp |void |dump_indent |I32 level|NN PerlIO *file|NN const char* pat|...
2029 Ap |void |dump_vindent |I32 level|NN PerlIO *file|NN const char* pat \
2030 |NULLOK va_list *args
2031 Ap |void |do_gv_dump |I32 level|NN PerlIO *file|NN const char *name\
2033 Ap |void |do_gvgv_dump |I32 level|NN PerlIO *file|NN const char *name\
2035 Ap |void |do_hv_dump |I32 level|NN PerlIO *file|NN const char *name\
2037 Ap |void |do_magic_dump |I32 level|NN PerlIO *file|NULLOK const MAGIC *mg|I32 nest \
2038 |I32 maxnest|bool dumpops|STRLEN pvlim
2039 Ap |void |do_op_dump |I32 level|NN PerlIO *file|NULLOK const OP *o
2040 Ap |void |do_pmop_dump |I32 level|NN PerlIO *file|NULLOK const PMOP *pm
2041 Ap |void |do_sv_dump |I32 level|NN PerlIO *file|NULLOK SV *sv|I32 nest \
2042 |I32 maxnest|bool dumpops|STRLEN pvlim
2043 Ap |void |magic_dump |NULLOK const MAGIC *mg
2044 Ap |void |reginitcolors
2045 ApdRmb |char* |sv_2pv_nolen |NN SV* sv
2046 ApdRmb |char* |sv_2pvutf8_nolen|NN SV* sv
2047 ApdRmb |char* |sv_2pvbyte_nolen|NN SV* sv
2048 ApmdbR |char* |sv_pv |NN SV *sv
2049 ApmdbR |char* |sv_pvutf8 |NN SV *sv
2050 ApmdbR |char* |sv_pvbyte |NN SV *sv
2051 Apmdb |STRLEN |sv_utf8_upgrade|NN SV *sv
2052 Amd |STRLEN |sv_utf8_upgrade_nomg|NN SV *sv
2053 Apd |bool |sv_utf8_downgrade|NN SV *const sv|const bool fail_ok
2054 Apd |void |sv_utf8_encode |NN SV *const sv
2055 Apd |bool |sv_utf8_decode |NN SV *const sv
2056 Apdmb |void |sv_force_normal|NN SV *sv
2057 Apd |void |sv_force_normal_flags|NN SV *const sv|const U32 flags
2058 pX |SSize_t|tmps_grow_p |SSize_t ix
2059 Apd |SV* |sv_rvweaken |NN SV *const sv
2060 Apd |SV* |sv_rvunweaken |NN SV *const sv
2061 ATpxd |SV* |sv_get_backrefs|NN SV *const sv
2062 : This is indirectly referenced by globals.c. This is somewhat annoying.
2063 p |int |magic_killbackrefs|NN SV *sv|NN MAGIC *mg
2064 Ap |OP* |newANONATTRSUB |I32 floor|NULLOK OP *proto|NULLOK OP *attrs|NULLOK OP *block
2065 Am |CV* |newATTRSUB |I32 floor|NULLOK OP *o|NULLOK OP *proto|NULLOK OP *attrs|NULLOK OP *block
2066 pdX |CV* |newATTRSUB_x |I32 floor|NULLOK OP *o|NULLOK OP *proto \
2067 |NULLOK OP *attrs|NULLOK OP *block \
2069 Ap |CV * |newMYSUB |I32 floor|NN OP *o|NULLOK OP *proto \
2070 |NULLOK OP *attrs|NULLOK OP *block
2071 p |CV* |newSTUB |NN GV *gv|bool fake
2073 p |OP * |my_attrs |NN OP *o|NULLOK OP *attrs
2074 #if defined(USE_ITHREADS)
2075 ApR |PERL_CONTEXT*|cx_dup |NULLOK PERL_CONTEXT* cx|I32 ix|I32 max|NN CLONE_PARAMS* param
2076 ApR |PERL_SI*|si_dup |NULLOK PERL_SI* si|NN CLONE_PARAMS* param
2077 ApR |ANY* |ss_dup |NN PerlInterpreter* proto_perl|NN CLONE_PARAMS* param
2078 ApR |void* |any_dup |NULLOK void* v|NN const PerlInterpreter* proto_perl
2079 ApR |HE* |he_dup |NULLOK const HE* e|bool shared|NN CLONE_PARAMS* param
2080 ApR |HEK* |hek_dup |NULLOK HEK* e|NN CLONE_PARAMS* param
2081 Ap |void |re_dup_guts |NN const REGEXP *sstr|NN REGEXP *dstr \
2082 |NN CLONE_PARAMS* param
2083 Ap |PerlIO*|fp_dup |NULLOK PerlIO *const fp|const char type|NN CLONE_PARAMS *const param
2084 ApR |DIR* |dirp_dup |NULLOK DIR *const dp|NN CLONE_PARAMS *const param
2085 ApR |GP* |gp_dup |NULLOK GP *const gp|NN CLONE_PARAMS *const param
2086 ApR |MAGIC* |mg_dup |NULLOK MAGIC *mg|NN CLONE_PARAMS *const param
2087 #if defined(PERL_IN_SV_C)
2088 S |SV ** |sv_dup_inc_multiple|NN SV *const *source|NN SV **dest \
2089 |SSize_t items|NN CLONE_PARAMS *const param
2090 SR |SV* |sv_dup_common |NN const SV *const sstr \
2091 |NN CLONE_PARAMS *const param
2093 ApR |SV* |sv_dup |NULLOK const SV *const sstr|NN CLONE_PARAMS *const param
2094 ApR |SV* |sv_dup_inc |NULLOK const SV *const sstr \
2095 |NN CLONE_PARAMS *const param
2096 Ap |void |rvpv_dup |NN SV *const dstr|NN const SV *const sstr|NN CLONE_PARAMS *const param
2097 Ap |yy_parser*|parser_dup |NULLOK const yy_parser *const proto|NN CLONE_PARAMS *const param
2099 ApR |PTR_TBL_t*|ptr_table_new
2100 ApR |void* |ptr_table_fetch|NN PTR_TBL_t *const tbl|NULLOK const void *const sv
2101 Ap |void |ptr_table_store|NN PTR_TBL_t *const tbl|NULLOK const void *const oldsv \
2102 |NN void *const newsv
2103 Ap |void |ptr_table_split|NN PTR_TBL_t *const tbl
2104 ApD |void |ptr_table_clear|NULLOK PTR_TBL_t *const tbl
2105 Ap |void |ptr_table_free|NULLOK PTR_TBL_t *const tbl
2106 #if defined(HAVE_INTERP_INTERN)
2107 Ap |void |sys_intern_clear
2108 Ap |void |sys_intern_init
2109 # if defined(USE_ITHREADS)
2110 Ap |void |sys_intern_dup |NN struct interp_intern* src|NN struct interp_intern* dst
2114 Amop |const XOP * |custom_op_xop |NN const OP *o
2115 AbpR |const char * |custom_op_name |NN const OP *o
2116 AbpR |const char * |custom_op_desc |NN const OP *o
2117 pRX |XOPRETANY |custom_op_get_field |NN const OP *o|const xop_flags_enum field
2118 Aop |void |custom_op_register |NN Perl_ppaddr_t ppaddr \
2121 Adp |void |sv_nosharing |NULLOK SV *sv
2122 Adpbm |void |sv_nolocking |NULLOK SV *sv
2123 Adp |bool |sv_destroyable |NULLOK SV *sv
2124 Adpb |void |sv_nounlocking |NULLOK SV *sv
2125 Adp |int |nothreadhook
2126 p |void |init_constants
2128 #if defined(PERL_IN_DOOP_C)
2129 SR |Size_t |do_trans_simple |NN SV * const sv
2130 SR |Size_t |do_trans_count |NN SV * const sv
2131 SR |Size_t |do_trans_complex |NN SV * const sv
2132 SR |Size_t |do_trans_simple_utf8 |NN SV * const sv
2133 SR |Size_t |do_trans_count_utf8 |NN SV * const sv
2134 SR |Size_t |do_trans_complex_utf8 |NN SV * const sv
2137 #if defined(PERL_IN_GV_C)
2138 S |void |gv_init_svtype |NN GV *gv|const svtype sv_type
2139 S |void |gv_magicalize_isa |NN GV *gv
2140 S |bool|parse_gv_stash_name|NN HV **stash|NN GV **gv \
2141 |NN const char **name|NN STRLEN *len \
2142 |NN const char *nambeg|STRLEN full_len \
2143 |const U32 is_utf8|const I32 add
2144 S |bool|find_default_stash|NN HV **stash|NN const char *name \
2145 |STRLEN len|const U32 is_utf8|const I32 add \
2146 |const svtype sv_type
2147 S |bool|gv_magicalize|NN GV *gv|NN HV *stash|NN const char *name \
2149 |const svtype sv_type
2150 S |void|maybe_multimagic_gv|NN GV *gv|NN const char *name|const svtype sv_type
2151 S |bool|gv_is_in_main|NN const char *name|STRLEN len \
2153 S |void |require_tie_mod|NN GV *gv|NN const char varname \
2154 |NN const char * name|STRLEN len \
2158 #if defined(PERL_IN_HV_C) || defined(PERL_IN_SV_C)
2159 po |SV* |hfree_next_entry |NN HV *hv|NN STRLEN *indexp
2162 #if defined(PERL_IN_HV_C)
2163 S |void |hsplit |NN HV *hv|STRLEN const oldsize|STRLEN newsize
2164 S |void |hv_free_entries|NN HV *hv
2165 S |SV* |hv_free_ent_ret|NN HV *hv|NN HE *entry
2167 SaTR |HEK* |save_hek_flags |NN const char *str|I32 len|U32 hash|int flags
2168 ST |void |hv_magic_check |NN HV *hv|NN bool *needs_copy|NN bool *needs_store
2169 S |void |unshare_hek_or_pvn|NULLOK const HEK* hek|NULLOK const char* str|I32 len|U32 hash
2170 SR |HEK* |share_hek_flags|NN const char *str|STRLEN len|U32 hash|int flags
2171 rS |void |hv_notallowed |int flags|NN const char *key|I32 klen|NN const char *msg
2172 iT |U32|ptr_hash|PTRV u
2173 S |struct xpvhv_aux*|hv_auxinit|NN HV *hv
2174 ST |struct xpvhv_aux*|hv_auxinit_internal|NN struct xpvhv_aux *iter
2175 Sx |SV* |hv_delete_common|NULLOK HV *hv|NULLOK SV *keysv \
2176 |NULLOK const char *key|STRLEN klen|int k_flags|I32 d_flags \
2178 Sx |void |clear_placeholders |NN HV *hv|U32 items
2181 #if defined(PERL_IN_MG_C)
2182 S |void |save_magic_flags|I32 mgs_ix|NN SV *sv|U32 flags
2183 S |int |magic_methpack |NN SV *sv|NN const MAGIC *mg|NN SV *meth
2184 S |SV* |magic_methcall1|NN SV *sv|NN const MAGIC *mg \
2185 |NN SV *meth|U32 flags \
2186 |int n|NULLOK SV *val
2187 S |void |restore_magic |NULLOK const void *p
2188 S |void |unwind_handler_stack|NULLOK const void *p
2189 S |void |fixup_errno_string|NN SV* sv
2193 #if defined(PERL_IN_OP_C)
2194 SRT |bool |is_handle_constructor|NN const OP *o|I32 numargs
2195 SR |I32 |assignment_type|NULLOK const OP *o
2196 S |void |forget_pmop |NN PMOP *const o
2197 S |void |find_and_forget_pmops |NN OP *o
2198 S |void |cop_free |NN COP *cop
2199 S |OP* |modkids |NULLOK OP *o|I32 type
2200 S |OP* |scalarboolean |NN OP *o
2201 SR |OP* |search_const |NN OP *o
2202 SR |OP* |new_logop |I32 type|I32 flags|NN OP **firstp|NN OP **otherp
2203 S |void |simplify_sort |NN OP *o
2204 SRT |bool |scalar_mod_type|NULLOK const OP *o|I32 type
2205 S |OP * |my_kid |NULLOK OP *o|NULLOK OP *attrs|NN OP **imopsp
2206 S |OP * |dup_attrlist |NN OP *o
2207 S |void |apply_attrs |NN HV *stash|NN SV *target|NULLOK OP *attrs
2208 S |void |apply_attrs_my |NN HV *stash|NN OP *target|NULLOK OP *attrs|NN OP **imopsp
2209 S |void |bad_type_pv |I32 n|NN const char *t|NN const OP *o|NN const OP *kid
2210 S |void |bad_type_gv |I32 n|NN GV *gv|NN const OP *kid|NN const char *t
2211 S |void |no_bareword_allowed|NN OP *o
2212 SR |OP* |no_fh_allowed|NN OP *o
2213 SR |OP* |too_few_arguments_pv|NN OP *o|NN const char* name|U32 flags
2214 S |OP* |too_many_arguments_pv|NN OP *o|NN const char* name|U32 flags
2215 S |bool |looks_like_bool|NN const OP* o
2216 S |OP* |newGIVWHENOP |NULLOK OP* cond|NN OP *block \
2217 |I32 enter_opcode|I32 leave_opcode \
2218 |PADOFFSET entertarg
2219 S |OP* |ref_array_or_hash|NULLOK OP* cond
2220 S |bool |process_special_blocks |I32 floor \
2221 |NN const char *const fullname\
2222 |NN GV *const gv|NN CV *const cv
2223 S |void |clear_special_blocks |NN const char *const fullname\
2224 |NN GV *const gv|NN CV *const cv
2226 XpR |void* |Slab_Alloc |size_t sz
2227 Xp |void |Slab_Free |NN void *op
2228 #if defined(PERL_DEBUG_READONLY_OPS)
2229 # if defined(PERL_CORE)
2230 pe |void |Slab_to_ro |NN OPSLAB *slab
2231 pe |void |Slab_to_rw |NN OPSLAB *const slab
2233 : Used in OpREFCNT_inc() in sv.c
2234 poex |OP * |op_refcnt_inc |NULLOK OP *o
2235 : FIXME - can be static.
2236 poex |PADOFFSET |op_refcnt_dec |NN OP *o
2239 #if defined(PERL_IN_PERL_C)
2240 S |void |find_beginning |NN SV* linestr_sv|NN PerlIO *rsfp
2241 S |void |forbid_setid |const char flag|const bool suidscript
2242 S |void |incpush |NN const char *const dir|STRLEN len \
2244 S |SV* |mayberelocate |NN const char *const dir|STRLEN len \
2246 S |void |incpush_use_sep|NN const char *p|STRLEN len|U32 flags
2247 S |void |init_interp
2249 S |void |init_main_stash
2250 S |void |init_perllib
2251 S |void |init_postdump_symbols|int argc|NN char **argv|NULLOK char **env
2252 S |void |init_predump_symbols
2253 rS |void |my_exit_jump
2254 S |void |nuke_stacks
2255 S |PerlIO *|open_script |NN const char *scriptname|bool dosearch \
2256 |NN bool *suidscript
2258 #ifndef SETUID_SCRIPTS_ARE_SECURE_NOW
2259 So |void |validate_suid |NN PerlIO *rsfp
2263 S |void* |parse_body |NULLOK char **env|XSINIT_t xsinit
2264 rS |void |run_body |I32 oldscope
2265 # ifndef PERL_IS_MINIPERL
2266 S |SV * |incpush_if_exists|NN AV *const av|NN SV *dir|NN SV *const stem
2270 #if defined(PERL_IN_PP_C)
2271 S |size_t |do_chomp |NN SV *retval|NN SV *sv|bool chomping
2272 S |OP* |do_delete_local
2273 SR |SV* |refto |NN SV* sv
2275 #if defined(PERL_IN_PP_C) || defined(PERL_IN_PP_HOT_C)
2277 pReo |GV* |softref2xv |NN SV *const sv|NN const char *const what \
2278 |const svtype type|NN SV ***spp
2279 iTR |bool |lossless_NV_to_IV|const NV nv|NN IV * ivp
2282 #if defined(PERL_IN_PP_PACK_C)
2283 S |SSize_t|unpack_rec |NN struct tempsym* symptr|NN const char *s \
2284 |NN const char *strbeg|NN const char *strend|NULLOK const char **new_s
2285 S |SV ** |pack_rec |NN SV *cat|NN struct tempsym* symptr|NN SV **beglist|NN SV **endlist
2286 S |SV* |mul128 |NN SV *sv|U8 m
2287 S |SSize_t|measure_struct |NN struct tempsym* symptr
2288 S |bool |next_symbol |NN struct tempsym* symptr
2289 SR |SV* |is_an_int |NN const char *s|STRLEN l
2290 S |int |div128 |NN SV *pnum|NN bool *done
2291 S |const char *|group_end |NN const char *patptr|NN const char *patend \
2293 SR |const char *|get_num |NN const char *patptr|NN SSize_t *lenptr
2294 TS |bool |need_utf8 |NN const char *pat|NN const char *patend
2295 TS |char |first_symbol |NN const char *pat|NN const char *patend
2296 SR |char * |sv_exp_grow |NN SV *sv|STRLEN needed
2297 STR |char * |my_bytes_to_utf8|NN const U8 *start|STRLEN len|NN char *dest \
2298 |const bool needs_swap
2301 #if defined(PERL_IN_PP_CTL_C)
2302 SR |OP* |docatch |Perl_ppaddr_t firstpp
2303 SR |OP* |dofindlabel |NN OP *o|NN const char *label|STRLEN len \
2304 |U32 flags|NN OP **opstack|NN OP **oplimit
2305 S |MAGIC *|doparseform |NN SV *sv
2306 STR |bool |num_overflow |NV value|I32 fldsize|I32 frcsize
2307 SR |I32 |dopoptoeval |I32 startingblock
2308 SR |I32 |dopoptogivenfor|I32 startingblock
2309 SR |I32 |dopoptolabel |NN const char *label|STRLEN len|U32 flags
2310 SR |I32 |dopoptoloop |I32 startingblock
2311 SR |I32 |dopoptosub_at |NN const PERL_CONTEXT* cxstk|I32 startingblock
2312 SR |I32 |dopoptowhen |I32 startingblock
2313 S |void |save_lines |NULLOK AV *array|NN SV *sv
2314 S |bool |doeval_compile |U8 gimme \
2315 |NULLOK CV* outside|U32 seq|NULLOK HV* hh
2316 SR |PerlIO *|check_type_and_open|NN SV *name
2317 #ifndef PERL_DISABLE_PMC
2318 SR |PerlIO *|doopen_pm |NN SV *name
2320 iRT |bool |path_is_searchable|NN const char *name
2321 SR |I32 |run_user_filter|int idx|NN SV *buf_sv|int maxlen
2322 SR |PMOP* |make_matcher |NN REGEXP* re
2323 SR |bool |matcher_matches_sv|NN PMOP* matcher|NN SV* sv
2324 S |void |destroy_matcher|NN PMOP* matcher
2325 S |OP* |do_smartmatch |NULLOK HV* seen_this \
2326 |NULLOK HV* seen_other|const bool copied
2329 #if defined(PERL_IN_PP_HOT_C)
2330 S |void |do_oddball |NN SV **oddkey|NN SV **firstkey
2331 i |HV* |opmethod_stash |NN SV* meth
2334 #if defined(PERL_IN_PP_SORT_C)
2335 S |I32 |sv_ncmp |NN SV *const a|NN SV *const b
2336 S |I32 |sv_i_ncmp |NN SV *const a|NN SV *const b
2337 S |I32 |amagic_ncmp |NN SV *const a|NN SV *const b
2338 S |I32 |amagic_i_ncmp |NN SV *const a|NN SV *const b
2339 S |I32 |amagic_cmp |NN SV *const str1|NN SV *const str2
2340 # ifdef USE_LOCALE_COLLATE
2341 S |I32 |amagic_cmp_locale|NN SV *const str1|NN SV *const str2
2343 S |I32 |sortcv |NN SV *const a|NN SV *const b
2344 S |I32 |sortcv_xsub |NN SV *const a|NN SV *const b
2345 S |I32 |sortcv_stacked |NN SV *const a|NN SV *const b
2348 #if defined(PERL_IN_PP_SYS_C)
2349 S |OP* |doform |NN CV *cv|NN GV *gv|NULLOK OP *retop
2350 # if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
2351 SR |int |dooneliner |NN const char *cmd|NN const char *filename
2353 S |SV * |space_join_names_mortal|NULLOK char *const *array
2355 p |OP * |tied_method|NN SV *methname|NN SV **sp \
2356 |NN SV *const sv|NN const MAGIC *const mg \
2357 |const U32 flags|U32 argc|...
2359 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
2360 Ep |void |regprop |NULLOK const regexp *prog|NN SV* sv|NN const regnode* o|NULLOK const regmatch_info *reginfo \
2361 |NULLOK const RExC_state_t *pRExC_state
2362 Ep |int |re_printf |NN const char *fmt|...
2364 #if defined(PERL_IN_REGCOMP_C)
2365 ES |regnode_offset|reg |NN RExC_state_t *pRExC_state \
2366 |I32 paren|NN I32 *flagp|U32 depth
2367 ES |regnode_offset|regnode_guts|NN RExC_state_t *pRExC_state \
2369 |const STRLEN extra_len \
2370 |NN const char* const name
2371 ES |void |change_engine_size|NN RExC_state_t *pRExC_state|const Ptrdiff_t size
2372 ES |regnode_offset|reganode|NN RExC_state_t *pRExC_state|U8 op \
2374 ES |regnode_offset|reg2Lanode|NN RExC_state_t *pRExC_state \
2378 ES |regnode_offset|regatom |NN RExC_state_t *pRExC_state \
2379 |NN I32 *flagp|U32 depth
2380 ES |regnode_offset|regbranch |NN RExC_state_t *pRExC_state \
2381 |NN I32 *flagp|I32 first|U32 depth
2382 ES |void |set_ANYOF_arg |NN RExC_state_t* const pRExC_state \
2383 |NN regnode* const node \
2384 |NULLOK SV* const cp_list \
2385 |NULLOK SV* const runtime_defns \
2386 |NULLOK SV* const only_utf8_locale_list
2387 ES |void |output_posix_warnings \
2388 |NN RExC_state_t *pRExC_state \
2389 |NN AV* posix_warnings
2390 ES |AV* |add_multi_match|NULLOK AV* multi_char_matches \
2391 |NN SV* multi_string \
2392 |const STRLEN cp_count
2393 ES |regnode_offset|regclass|NN RExC_state_t *pRExC_state \
2394 |NN I32 *flagp|U32 depth|const bool stop_at_1 \
2395 |bool allow_multi_fold \
2396 |const bool silence_non_portable \
2397 |const bool strict \
2399 |NULLOK SV** ret_invlist
2400 ES |void|add_above_Latin1_folds|NN RExC_state_t *pRExC_state|const U8 cp \
2402 Ei |regnode_offset|handle_named_backref|NN RExC_state_t *pRExC_state \
2404 |NN char * parse_start \
2406 ESTR |unsigned int|regex_set_precedence|const U8 my_operator
2407 ES |regnode_offset|handle_regex_sets|NN RExC_state_t *pRExC_state \
2408 |NULLOK SV ** return_invlist \
2409 |NN I32 *flagp|U32 depth \
2410 |NN char * const oregcomp_parse
2411 ES |void |set_regex_pv |NN RExC_state_t *pRExC_state|NN REGEXP *Rx
2412 #if defined(DEBUGGING) && defined(ENABLE_REGEX_SETS_DEBUGGING)
2413 ES |void |dump_regex_sets_structures \
2414 |NN RExC_state_t *pRExC_state \
2416 |const IV fence|NN AV * fence_stack
2418 ES |void|parse_lparen_question_flags|NN RExC_state_t *pRExC_state
2419 ES |regnode_offset|reg_node|NN RExC_state_t *pRExC_state|U8 op
2420 ES |regnode_offset|regpiece|NN RExC_state_t *pRExC_state \
2421 |NN I32 *flagp|U32 depth
2422 ES |bool |grok_bslash_N |NN RExC_state_t *pRExC_state \
2423 |NULLOK regnode_offset* nodep \
2424 |NULLOK UV *code_point_p \
2425 |NULLOK int* cp_count \
2427 |const bool strict \
2429 ES |void |reginsert |NN RExC_state_t *pRExC_state \
2431 |const regnode_offset operand \
2433 ES |bool |regtail |NN RExC_state_t * pRExC_state \
2434 |NN const regnode_offset p \
2435 |NN const regnode_offset val \
2437 ES |SV * |reg_scan_name |NN RExC_state_t *pRExC_state \
2439 ES |U32 |join_exact |NN RExC_state_t *pRExC_state \
2440 |NN regnode *scan|NN UV *min_subtract \
2441 |NN bool *unfolded_multi_char \
2442 |U32 flags|NULLOK regnode *val|U32 depth
2443 EiT |U8 |compute_EXACTish|NN RExC_state_t *pRExC_state
2444 ES |void |nextchar |NN RExC_state_t *pRExC_state
2445 ES |void |skip_to_be_ignored_text|NN RExC_state_t *pRExC_state \
2447 |const bool force_to_xmod
2448 EiT |char * |reg_skipcomment|NN RExC_state_t *pRExC_state|NN char * p
2449 ES |void |scan_commit |NN const RExC_state_t *pRExC_state \
2450 |NN struct scan_data_t *data \
2451 |NN SSize_t *minlenp \
2453 ES |void |populate_ANYOF_from_invlist|NN regnode *node|NN SV** invlist_ptr
2454 ES |void |ssc_anything |NN regnode_ssc *ssc
2455 ESRT |int |ssc_is_anything|NN const regnode_ssc *ssc
2456 ES |void |ssc_init |NN const RExC_state_t *pRExC_state \
2457 |NN regnode_ssc *ssc
2458 ESRT |int |ssc_is_cp_posixl_init|NN const RExC_state_t *pRExC_state \
2459 |NN const regnode_ssc *ssc
2460 ES |void |ssc_and |NN const RExC_state_t *pRExC_state \
2461 |NN regnode_ssc *ssc \
2462 |NN const regnode_charclass *and_with
2463 ES |void |ssc_or |NN const RExC_state_t *pRExC_state \
2464 |NN regnode_ssc *ssc \
2465 |NN const regnode_charclass *or_with
2466 ES |SV* |get_ANYOF_cp_list_for_ssc \
2467 |NN const RExC_state_t *pRExC_state \
2468 |NN const regnode_charclass* const node
2469 Ei |void |ssc_intersection|NN regnode_ssc *ssc \
2470 |NN SV* const invlist|const bool invert_2nd
2471 Ei |void |ssc_union |NN regnode_ssc *ssc \
2472 |NN SV* const invlist|const bool invert_2nd
2473 Ei |void |ssc_add_range |NN regnode_ssc *ssc \
2474 |UV const start|UV const end
2475 Ei |void |ssc_cp_and |NN regnode_ssc *ssc \
2477 EiT |void |ssc_clear_locale|NN regnode_ssc *ssc
2478 ETS |bool |is_ssc_worth_it|NN const RExC_state_t * pRExC_state \
2479 |NN const regnode_ssc * ssc
2480 ES |void |ssc_finalize |NN RExC_state_t *pRExC_state \
2481 |NN regnode_ssc *ssc
2482 ES |SSize_t|study_chunk |NN RExC_state_t *pRExC_state \
2483 |NN regnode **scanp|NN SSize_t *minlenp \
2484 |NN SSize_t *deltap|NN regnode *last \
2485 |NULLOK struct scan_data_t *data \
2486 |I32 stopparen|U32 recursed_depth \
2487 |NULLOK regnode_ssc *and_withp \
2488 |U32 flags|U32 depth
2489 ESR |SV * |get_ANYOFM_contents|NN const regnode * n
2490 ESRT |U32 |add_data |NN RExC_state_t* const pRExC_state \
2491 |NN const char* const s|const U32 n
2492 rS |void |re_croak2 |bool utf8|NN const char* pat1|NN const char* pat2|...
2493 ES |int |handle_possible_posix \
2494 |NN RExC_state_t *pRExC_state \
2495 |NN const char* const s \
2496 |NULLOK char ** updated_parse_ptr \
2497 |NULLOK AV** posix_warnings \
2498 |const bool check_only
2499 ES |I32 |make_trie |NN RExC_state_t *pRExC_state \
2500 |NN regnode *startbranch|NN regnode *first \
2501 |NN regnode *last|NN regnode *tail \
2502 |U32 word_count|U32 flags|U32 depth
2503 ES |regnode *|construct_ahocorasick_from_trie|NN RExC_state_t *pRExC_state \
2504 |NN regnode *source|U32 depth
2505 ETSR |const char *|cntrl_to_mnemonic|const U8 c
2506 ETSR |int |edit_distance |NN const UV *src \
2510 |const SSize_t maxDistance
2511 EpX |SV * |parse_uniprop_string|NN const char * const name \
2512 |const Size_t name_len \
2513 |const bool is_utf8 \
2514 |const bool to_fold \
2515 |const bool runtime \
2516 |const bool deferrable \
2517 |NN bool * user_defined_ptr \
2520 EXp |SV * |handle_user_defined_property|NN const char * name \
2521 |const STRLEN name_len \
2522 |const bool is_utf8 \
2523 |const bool to_fold \
2524 |const bool runtime \
2525 |const bool deferrable \
2527 |NN bool *user_defined_ptr \
2531 Ep |int |re_indentf |NN const char *fmt|U32 depth|...
2532 ES |void |regdump_intflags|NULLOK const char *lead| const U32 flags
2533 ES |void |regdump_extflags|NULLOK const char *lead| const U32 flags
2534 ES |const regnode*|dumpuntil|NN const regexp *r|NN const regnode *start \
2535 |NN const regnode *node \
2536 |NULLOK const regnode *last \
2537 |NULLOK const regnode *plast \
2538 |NN SV* sv|I32 indent|U32 depth
2539 ES |void |put_code_point |NN SV* sv|UV c
2540 ES |bool |put_charclass_bitmap_innards|NN SV* sv \
2541 |NULLOK char* bitmap \
2542 |NULLOK SV* nonbitmap_invlist \
2543 |NULLOK SV* only_utf8_locale_invlist\
2544 |NULLOK const regnode * const node \
2545 |const bool force_as_is_display
2546 ES |SV* |put_charclass_bitmap_innards_common \
2548 |NULLOK SV* posixes \
2549 |NULLOK SV* only_utf8 \
2550 |NULLOK SV* not_utf8 \
2551 |NULLOK SV* only_utf8_locale \
2553 ES |void |put_charclass_bitmap_innards_invlist \
2556 ES |void |put_range |NN SV* sv|UV start|const UV end \
2557 |const bool allow_literals
2558 ES |void |dump_trie |NN const struct _reg_trie_data *trie\
2559 |NULLOK HV* widecharmap|NN AV *revcharmap\
2561 ES |void |dump_trie_interim_list|NN const struct _reg_trie_data *trie\
2562 |NULLOK HV* widecharmap|NN AV *revcharmap\
2563 |U32 next_alloc|U32 depth
2564 ES |void |dump_trie_interim_table|NN const struct _reg_trie_data *trie\
2565 |NULLOK HV* widecharmap|NN AV *revcharmap\
2566 |U32 next_alloc|U32 depth
2567 ES |bool |regtail_study |NN RExC_state_t *pRExC_state \
2568 |NN regnode_offset p|NN const regnode_offset val|U32 depth
2572 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_UTF8_C)
2573 EXRpx |bool |isFOO_lc |const U8 classnum|const U8 character
2576 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_TOKE_C)
2577 ERp |bool |_is_grapheme |NN const U8 * strbeg|NN const U8 * s|NN const U8 *strend|const UV cp
2580 #if defined(PERL_IN_REGEXEC_C)
2581 ERS |bool |isFOO_utf8_lc |const U8 classnum|NN const U8* character|NN const U8* e
2582 ERTS |U8 * |find_next_masked|NN U8 * s \
2583 |NN const U8 * send \
2584 |const U8 byte|const U8 mask
2585 ERTS |U8 *|find_span_end |NN U8* s|NN const U8 * send|const U8 span_byte
2586 ERTS |U8 *|find_span_end_mask|NN U8 * s|NN const U8 * send \
2587 |const U8 span_byte|const U8 mask
2588 ERS |SSize_t|regmatch |NN regmatch_info *reginfo|NN char *startpos|NN regnode *prog
2589 WERS |I32 |regrepeat |NN regexp *prog|NN char **startposp \
2590 |NN const regnode *p \
2592 |NN regmatch_info *const reginfo \
2594 ERS |bool |regtry |NN regmatch_info *reginfo|NN char **startposp
2595 ERS |bool |reginclass |NULLOK regexp * const prog \
2596 |NN const regnode * const n \
2597 |NN const U8 * const p \
2598 |NN const U8 * const p_end \
2599 |bool const utf8_target
2600 WES |CHECKPOINT|regcppush |NN const regexp *rex|I32 parenfloor\
2602 WES |void |regcppop |NN regexp *rex|NN U32 *maxopenparen_p
2603 WES |void |regcp_restore |NN regexp *rex|I32 ix|NN U32 *maxopenparen_p
2604 ERST |U8* |reghop3 |NN U8 *s|SSize_t off|NN const U8 *lim
2605 ERST |U8* |reghop4 |NN U8 *s|SSize_t off|NN const U8 *llim \
2607 ERST |U8* |reghopmaybe3 |NN U8 *s|SSize_t off|NN const U8 * const lim
2608 ERS |char* |find_byclass |NN regexp * prog|NN const regnode *c \
2609 |NN char *s|NN const char *strend \
2610 |NULLOK regmatch_info *reginfo
2611 ES |void |to_utf8_substr |NN regexp * prog
2612 ES |bool |to_byte_substr |NN regexp * prog
2613 ERST |I32 |reg_check_named_buff_matched |NN const regexp *rex \
2614 |NN const regnode *scan
2615 ESR |bool |isGCB |const GCB_enum before \
2616 |const GCB_enum after \
2617 |NN const U8 * const strbeg \
2618 |NN const U8 * const curpos \
2619 |const bool utf8_target
2620 ESR |GCB_enum|backup_one_GCB|NN const U8 * const strbeg \
2622 |const bool utf8_target
2623 ESR |bool |isLB |LB_enum before \
2625 |NN const U8 * const strbeg \
2626 |NN const U8 * const curpos \
2627 |NN const U8 * const strend \
2628 |const bool utf8_target
2629 ESR |LB_enum|advance_one_LB |NN U8 ** curpos \
2630 |NN const U8 * const strend \
2631 |const bool utf8_target
2632 ESR |LB_enum|backup_one_LB |NN const U8 * const strbeg \
2634 |const bool utf8_target
2635 ESR |bool |isSB |SB_enum before \
2637 |NN const U8 * const strbeg \
2638 |NN const U8 * const curpos \
2639 |NN const U8 * const strend \
2640 |const bool utf8_target
2641 ESR |SB_enum|advance_one_SB |NN U8 ** curpos \
2642 |NN const U8 * const strend \
2643 |const bool utf8_target
2644 ESR |SB_enum|backup_one_SB |NN const U8 * const strbeg \
2646 |const bool utf8_target
2647 ESR |bool |isWB |WB_enum previous \
2650 |NN const U8 * const strbeg \
2651 |NN const U8 * const curpos \
2652 |NN const U8 * const strend \
2653 |const bool utf8_target
2654 ESR |WB_enum|advance_one_WB |NN U8 ** curpos \
2655 |NN const U8 * const strend \
2656 |const bool utf8_target \
2657 |const bool skip_Extend_Format
2658 ESR |WB_enum|backup_one_WB |NN WB_enum * previous \
2659 |NN const U8 * const strbeg \
2661 |const bool utf8_target
2662 EiT |I32 |foldEQ_latin1_s2_folded|NN const char* a|NN const char* b|I32 len
2664 ES |void |dump_exec_pos |NN const char *locinput|NN const regnode *scan|NN const char *loc_regeol\
2665 |NN const char *loc_bostr|NN const char *loc_reg_starttry|const bool do_utf8|const U32 depth
2666 ES |void |debug_start_match|NN const REGEXP *prog|const bool do_utf8\
2667 |NN const char *start|NN const char *end\
2668 |NN const char *blurb
2670 Ep |int |re_exec_indentf |NN const char *fmt|U32 depth|...
2674 #if defined(PERL_IN_DUMP_C)
2675 S |CV* |deb_curcv |I32 ix
2676 S |void |debprof |NN const OP *o
2677 S |UV |sequence_num |NULLOK const OP *o
2678 S |SV* |pm_description |NN const PMOP *pm
2681 #if defined(PERL_IN_SCOPE_C)
2682 S |SV* |save_scalar_at |NN SV **sptr|const U32 flags
2685 #if defined(PERL_IN_GV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_PAD_C) || defined(PERL_IN_OP_C)
2687 po |void |sv_add_backref |NN SV *const tsv|NN SV *const sv
2690 #if defined(PERL_IN_HV_C) || defined(PERL_IN_MG_C) || defined(PERL_IN_SV_C)
2691 : Used in hv.c and mg.c
2692 pox |void |sv_kill_backrefs |NN SV *const sv|NULLOK AV *const av
2695 #if defined(PERL_IN_SV_C) || defined (PERL_IN_OP_C)
2696 pR |SV * |varname |NULLOK const GV *const gv|const char gvtype \
2697 |PADOFFSET targ|NULLOK const SV *const keyname \
2698 |SSize_t aindex|int subscript_type
2701 pX |void |sv_del_backref |NN SV *const tsv|NN SV *const sv
2702 #if defined(PERL_IN_SV_C)
2703 TiR |char * |uiv_2buf |NN char *const buf|const IV iv|UV uv|const int is_uv|NN char **const peob
2704 i |void |sv_unglob |NN SV *const sv|U32 flags
2705 S |const char *|sv_display |NN SV *const sv|NN char *tmpbuf|STRLEN tmpbuf_size
2706 S |void |not_a_number |NN SV *const sv
2707 S |void |not_incrementable |NN SV *const sv
2708 S |I32 |visit |NN SVFUNC_t f|const U32 flags|const U32 mask
2710 S |void |del_sv |NN SV *p
2712 # if !defined(NV_PRESERVES_UV)
2714 S |int |sv_2iuv_non_preserve |NN SV *const sv|I32 numtype
2716 S |int |sv_2iuv_non_preserve |NN SV *const sv
2719 SR |STRLEN |expect_number |NN const char **const pattern
2720 ST |STRLEN |sv_pos_u2b_forwards|NN const U8 *const start \
2721 |NN const U8 *const send|NN STRLEN *const uoffset \
2722 |NN bool *const at_end
2723 ST |STRLEN |sv_pos_u2b_midway|NN const U8 *const start \
2724 |NN const U8 *send|STRLEN uoffset|const STRLEN uend
2725 S |STRLEN |sv_pos_u2b_cached|NN SV *const sv|NN MAGIC **const mgp \
2726 |NN const U8 *const start|NN const U8 *const send \
2727 |STRLEN uoffset|STRLEN uoffset0|STRLEN boffset0
2728 S |void |utf8_mg_len_cache_update|NN SV *const sv|NN MAGIC **const mgp \
2730 S |void |utf8_mg_pos_cache_update|NN SV *const sv|NN MAGIC **const mgp \
2731 |const STRLEN byte|const STRLEN utf8|const STRLEN blen
2732 S |STRLEN |sv_pos_b2u_midway|NN const U8 *const s|NN const U8 *const target \
2733 |NN const U8 *end|STRLEN endu
2734 S |void |assert_uft8_cache_coherent|NN const char *const func \
2735 |STRLEN from_cache|STRLEN real|NN SV *const sv
2736 ST |char * |F0convert |NV nv|NN char *const endbuf|NN STRLEN *const len
2738 S |bool |sv_2iuv_common |NN SV *const sv
2739 S |void |glob_assign_glob|NN SV *const dstr|NN SV *const sstr \
2741 SRT |PTR_TBL_ENT_t *|ptr_table_find|NN PTR_TBL_t *const tbl|NULLOK const void *const sv
2742 S |void |anonymise_cv_maybe |NN GV *gv|NN CV *cv
2745 : Used in sv.c and hv.c
2746 po |void * |more_bodies |const svtype sv_type|const size_t body_size \
2747 |const size_t arena_size
2748 EXpR |SV* |get_and_check_backslash_N_name|NN const char* s \
2749 |NN const char* const e \
2750 |const bool is_utf8 \
2751 |NN const char** error_msg
2753 : For use ONLY in B::Hooks::Parser, by special dispensation
2754 EXpxR |char* |scan_str |NN char *start|int keep_quoted \
2755 |int keep_delims|int re_reparse \
2756 |NULLOK char **delimp
2757 EXpx |char* |scan_word |NN char *s|NN char *dest|STRLEN destlen \
2758 |int allow_package|NN STRLEN *slp
2759 EXpxR |char* |skipspace_flags|NN char *s|U32 flags
2760 #if defined(PERL_IN_TOKE_C)
2762 S |void |force_next |I32 type
2763 S |char* |force_version |NN char *s|int guessing
2764 S |char* |force_strict_version |NN char *s
2765 S |char* |force_word |NN char *start|int token|int check_keyword \
2767 S |SV* |tokeq |NN SV *sv
2768 SR |char* |scan_const |NN char *start
2769 SR |SV* |get_and_check_backslash_N_name_wrapper|NN const char* s \
2770 |NN const char* const e
2771 SR |char* |scan_formline |NN char *s
2772 SR |char* |scan_heredoc |NN char *s
2773 S |char* |scan_ident |NN char *s|NN char *dest \
2774 |STRLEN destlen|I32 ck_uni
2775 SR |char* |scan_inputsymbol|NN char *start
2776 SR |char* |scan_pat |NN char *start|I32 type
2777 SR |char* |scan_subst |NN char *start
2778 SR |char* |scan_trans |NN char *start
2779 S |void |update_debugger_info|NULLOK SV *orig_sv \
2780 |NULLOK const char *const buf|STRLEN len
2781 SR |char* |swallow_bom |NN U8 *s
2782 #ifndef PERL_NO_UTF16_FILTER
2783 S |I32 |utf16_textfilter|int idx|NN SV *sv|int maxlen
2784 S |U8* |add_utf16_textfilter|NN U8 *const s|bool reversed
2786 S |void |checkcomma |NN const char *s|NN const char *name \
2787 |NN const char *what
2788 S |void |force_ident |NN const char *s|int kind
2789 S |void |force_ident_maybe_lex|char pit
2790 S |void |incline |NN const char *s|NN const char *end
2791 S |int |intuit_method |NN char *s|NULLOK SV *ioname|NULLOK CV *cv
2792 S |int |intuit_more |NN char *s|NN char *e
2793 S |I32 |lop |I32 f|U8 x|NN char *s
2794 rS |void |missingterm |NULLOK char *s|STRLEN len
2795 S |void |no_op |NN const char *const what|NULLOK char *s
2796 S |int |pending_ident
2797 SR |I32 |sublex_done
2798 SR |I32 |sublex_push
2799 SR |I32 |sublex_start
2800 SR |char * |filter_gets |NN SV *sv|STRLEN append
2801 SR |HV * |find_in_my_stash|NN const char *pkgname|STRLEN len
2802 SR |char * |tokenize_use |int is_use|NN char *s
2803 So |SV* |new_constant |NULLOK const char *s|STRLEN len \
2804 |NN const char *key|STRLEN keylen|NN SV *sv \
2805 |NULLOK SV *pv|NULLOK const char *type \
2807 |NULLOK const char ** error_msg
2808 S |int |ao |int toketype
2809 S |void|parse_ident|NN char **s|NN char **d \
2810 |NN char * const e|int allow_package \
2811 |bool is_utf8|bool check_dollar \
2813 # if defined(PERL_CR_FILTER)
2814 S |I32 |cr_textfilter |int idx|NULLOK SV *sv|int maxlen
2815 S |void |strip_return |NN SV *sv
2817 # if defined(DEBUGGING)
2818 S |int |tokereport |I32 rv|NN const YYSTYPE* lvalp
2819 Sf |void |printbuf |NN const char *const fmt|NN const char *const s
2822 EXxp |bool |validate_proto |NN SV *name|NULLOK SV *proto|bool warn \
2825 #if defined(PERL_IN_UNIVERSAL_C)
2826 S |bool |isa_lookup |NN HV *stash|NN const char * const name \
2827 |STRLEN len|U32 flags
2830 #if defined(PERL_IN_LOCALE_C)
2832 ST |const char*|category_name |const int category
2833 S |const char*|switch_category_locale_to_template|const int switch_category|const int template_category|NULLOK const char * template_locale
2834 S |void |restore_switched_locale|const int category|NULLOK const char * const original_locale
2836 # ifdef HAS_NL_LANGINFO
2837 ST |const char*|my_nl_langinfo|const nl_item item|bool toggle
2839 ST |const char*|my_nl_langinfo|const int item|bool toggle
2841 iTR |const char *|save_to_buffer|NULLOK const char * string \
2842 |NULLOK char **buf \
2843 |NN Size_t *buf_size \
2844 |const Size_t offset
2845 # if defined(USE_LOCALE)
2846 S |char* |stdize_locale |NN char* locs
2847 S |void |new_collate |NULLOK const char* newcoll
2848 S |void |new_ctype |NN const char* newctype
2849 S |void |set_numeric_radix|const bool use_locale
2850 S |void |new_numeric |NULLOK const char* newnum
2851 # ifdef USE_POSIX_2008_LOCALE
2852 ST |const char*|emulate_setlocale|const int category \
2853 |NULLOK const char* locale \
2854 |unsigned int index \
2855 |const bool is_index_valid
2858 S |char* |win32_setlocale|int category|NULLOK const char* locale
2861 S |void |print_collxfrm_input_and_return \
2862 |NN const char * const s \
2863 |NN const char * const e \
2864 |NULLOK const STRLEN * const xlen \
2866 S |void |print_bytes_for_locale |NN const char * const s \
2867 |NN const char * const e \
2869 STR |char * |setlocale_debug_string |const int category \
2870 |NULLOK const char* const locale \
2871 |NULLOK const char* const retval
2876 #if defined(USE_LOCALE) \
2877 && ( defined(PERL_IN_LOCALE_C) \
2878 || defined(PERL_IN_MG_C) \
2879 || defined (PERL_EXT_POSIX) \
2880 || defined (PERL_EXT_LANGINFO))
2881 Apx |bool |_is_cur_LC_category_utf8|int category
2885 #if defined(PERL_IN_UTIL_C)
2887 S |SV * |with_queued_errors|NN SV *ex
2888 S |bool |invoke_exception_hook|NULLOK SV *ex|bool warn
2889 #if defined(PERL_MEM_LOG) && !defined(PERL_MEM_LOG_NOIMPL)
2890 ST |void |mem_log_common |enum mem_log_type mlt|const UV n|const UV typesize \
2891 |NN const char *type_name|NULLOK const SV *sv \
2892 |Malloc_t oldalloc|Malloc_t newalloc \
2893 |NN const char *filename|const int linenumber \
2894 |NN const char *funcname
2898 #if defined(PERL_MEM_LOG)
2899 pT |Malloc_t |mem_log_alloc |const UV nconst|UV typesize|NN const char *type_name|Malloc_t newalloc|NN const char *filename|const int linenumber|NN const char *funcname
2900 pT |Malloc_t |mem_log_realloc |const UV n|const UV typesize|NN const char *type_name|Malloc_t oldalloc|Malloc_t newalloc|NN const char *filename|const int linenumber|NN const char *funcname
2901 pT |Malloc_t |mem_log_free |Malloc_t oldalloc|NN const char *filename|const int linenumber|NN const char *funcname
2904 #if defined(PERL_IN_UTF8_C)
2905 SR |HV * |new_msg_hv |NN const char * const message \
2908 SRx |UV |check_locale_boundary_crossing \
2909 |NN const U8* const p \
2911 |NN U8* const ustrp \
2913 iR |bool |is_utf8_common |NN const U8 *const p \
2914 |NULLOK SV* const invlist
2915 iR |bool |is_utf8_common_with_len|NN const U8 *const p \
2916 |NN const U8 *const e \
2917 |NULLOK SV* const invlist
2918 SR |SV* |swatch_get |NN SV* swash|UV start|UV span
2919 SRx |U8* |swash_scan_list_line|NN U8* l|NN U8* const lend|NN UV* min \
2920 |NN UV* max|NN UV* val|const bool wants_value \
2921 |NN const U8* const typestr
2924 EXixT |void |append_utf8_from_native_byte|const U8 byte|NN U8** dest
2926 Apd |void |sv_set_undef |NN SV *sv
2927 Apd |void |sv_setsv_flags |NN SV *dstr|NULLOK SV *sstr|const I32 flags
2928 Apd |void |sv_catpvn_flags|NN SV *const dstr|NN const char *sstr|const STRLEN len \
2930 Apd |void |sv_catpv_flags |NN SV *dstr|NN const char *sstr \
2932 Apd |void |sv_catsv_flags |NN SV *const dsv|NULLOK SV *const ssv|const I32 flags
2933 Apmd |STRLEN |sv_utf8_upgrade_flags|NN SV *const sv|const I32 flags
2934 Ap |STRLEN |sv_utf8_upgrade_flags_grow|NN SV *const sv|const I32 flags|STRLEN extra
2935 Apd |char* |sv_pvn_force_flags|NN SV *const sv|NULLOK STRLEN *const lp|const I32 flags
2936 Apmb |void |sv_copypv |NN SV *const dsv|NN SV *const ssv
2937 Apmd |void |sv_copypv_nomg |NN SV *const dsv|NN SV *const ssv
2938 Apd |void |sv_copypv_flags |NN SV *const dsv|NN SV *const ssv|const I32 flags
2939 Apo |char* |my_atof2 |NN const char *orig|NN NV* value
2940 Ap |char* |my_atof3 |NN const char *orig|NN NV* value|const STRLEN len
2941 ApT |int |my_socketpair |int family|int type|int protocol|int fd[2]
2942 ApT |int |my_dirfd |NULLOK DIR* dir
2944 : Used in pp_hot.c and regexec.c
2945 pxXE |SV* |sv_setsv_cow |NULLOK SV* dstr|NN SV* sstr
2948 Aop |const char *|PerlIO_context_layers|NULLOK const char *mode
2950 #if defined(USE_PERLIO)
2951 Ap |int |PerlIO_close |NULLOK PerlIO *f
2952 Ap |int |PerlIO_fill |NULLOK PerlIO *f
2953 Ap |int |PerlIO_fileno |NULLOK PerlIO *f
2954 Ap |int |PerlIO_eof |NULLOK PerlIO *f
2955 Ap |int |PerlIO_error |NULLOK PerlIO *f
2956 Ap |int |PerlIO_flush |NULLOK PerlIO *f
2957 Ap |void |PerlIO_clearerr |NULLOK PerlIO *f
2958 Ap |void |PerlIO_set_cnt |NULLOK PerlIO *f|SSize_t cnt
2959 Ap |void |PerlIO_set_ptrcnt |NULLOK PerlIO *f|NULLOK STDCHAR *ptr \
2961 Ap |void |PerlIO_setlinebuf |NULLOK PerlIO *f
2962 Ap |SSize_t|PerlIO_read |NULLOK PerlIO *f|NN void *vbuf \
2964 Ap |SSize_t|PerlIO_write |NULLOK PerlIO *f|NN const void *vbuf \
2966 Ap |SSize_t|PerlIO_unread |NULLOK PerlIO *f|NN const void *vbuf \
2968 Ap |Off_t |PerlIO_tell |NULLOK PerlIO *f
2969 Ap |int |PerlIO_seek |NULLOK PerlIO *f|Off_t offset|int whence
2970 Xp |void |PerlIO_save_errno |NULLOK PerlIO *f
2971 Xp |void |PerlIO_restore_errno |NULLOK PerlIO *f
2973 Ap |STDCHAR *|PerlIO_get_base |NULLOK PerlIO *f
2974 Ap |STDCHAR *|PerlIO_get_ptr |NULLOK PerlIO *f
2975 ApR |SSize_t |PerlIO_get_bufsiz |NULLOK PerlIO *f
2976 ApR |SSize_t |PerlIO_get_cnt |NULLOK PerlIO *f
2978 ApR |PerlIO *|PerlIO_stdin
2979 ApR |PerlIO *|PerlIO_stdout
2980 ApR |PerlIO *|PerlIO_stderr
2981 #endif /* USE_PERLIO */
2983 : Only used in dump.c
2984 p |void |deb_stack_all
2985 #if defined(PERL_IN_DEB_C)
2986 S |void |deb_stack_n |NN SV** stack_base|I32 stack_min \
2987 |I32 stack_max|I32 mark_min|I32 mark_max
2991 ApdR |PADLIST*|pad_new |int flags
2993 pTX |void|set_padlist| NN CV * cv | NULLOK PADLIST * padlist
2995 #if defined(PERL_IN_PAD_C)
2996 S |PADOFFSET|pad_alloc_name|NN PADNAME *name|U32 flags \
2997 |NULLOK HV *typestash|NULLOK HV *ourstash
2999 Apd |PADOFFSET|pad_add_name_pvn|NN const char *namepv|STRLEN namelen\
3000 |U32 flags|NULLOK HV *typestash\
3001 |NULLOK HV *ourstash
3002 Apd |PADOFFSET|pad_add_name_pv|NN const char *name\
3003 |const U32 flags|NULLOK HV *typestash\
3004 |NULLOK HV *ourstash
3005 Apd |PADOFFSET|pad_add_name_sv|NN SV *name\
3006 |U32 flags|NULLOK HV *typestash\
3007 |NULLOK HV *ourstash
3008 Axpd |PADOFFSET|pad_alloc |I32 optype|U32 tmptype
3009 Apd |PADOFFSET|pad_add_anon |NN CV* func|I32 optype
3010 p |void |pad_add_weakref|NN CV* func
3011 #if defined(PERL_IN_PAD_C)
3012 Sd |void |pad_check_dup |NN PADNAME *name|U32 flags \
3013 |NULLOK const HV *ourstash
3015 Apd |PADOFFSET|pad_findmy_pvn|NN const char* namepv|STRLEN namelen|U32 flags
3016 Apd |PADOFFSET|pad_findmy_pv|NN const char* name|U32 flags
3017 Apd |PADOFFSET|pad_findmy_sv|NN SV* name|U32 flags
3018 ApdD |PADOFFSET|find_rundefsvoffset |
3019 Apd |SV* |find_rundefsv |
3020 #if defined(PERL_IN_PAD_C)
3021 Sd |PADOFFSET|pad_findlex |NN const char *namepv|STRLEN namelen|U32 flags \
3022 |NN const CV* cv|U32 seq|int warn \
3023 |NULLOK SV** out_capture \
3024 |NN PADNAME** out_name|NN int *out_flags
3027 Apd |SV* |pad_sv |PADOFFSET po
3028 Apd |void |pad_setsv |PADOFFSET po|NN SV* sv
3030 pd |void |pad_block_start|int full
3032 pd |OP * |pad_leavemy
3033 pd |void |pad_swipe |PADOFFSET po|bool refadjust
3034 #if defined(PERL_IN_PAD_C)
3037 Axpd |void |pad_tidy |padtidy_type type
3038 pd |void |pad_free |PADOFFSET po
3039 pd |void |do_dump_pad |I32 level|NN PerlIO *file|NULLOK PADLIST *padlist|int full
3040 #if defined(PERL_IN_PAD_C)
3041 # if defined(DEBUGGING)
3042 Sd |void |cv_dump |NN const CV *cv|NN const char *title
3045 Apd |CV* |cv_clone |NN CV* proto
3046 p |CV* |cv_clone_into |NN CV* proto|NN CV *target
3047 pd |void |pad_fixup_inner_anons|NN PADLIST *padlist|NN CV *old_cv|NN CV *new_cv
3048 pdX |void |pad_push |NN PADLIST *padlist|int depth
3049 ApbdR |HV* |pad_compname_type|const PADOFFSET po
3050 AxpdRT |PADNAME *|padnamelist_fetch|NN PADNAMELIST *pnl|SSize_t key
3051 Xop |void |padnamelist_free|NN PADNAMELIST *pnl
3052 Axpd |PADNAME **|padnamelist_store|NN PADNAMELIST *pnl|SSize_t key \
3053 |NULLOK PADNAME *val
3054 Xop |void |padname_free |NN PADNAME *pn
3055 #if defined(USE_ITHREADS)
3056 pdR |PADNAME *|padname_dup |NN PADNAME *src|NN CLONE_PARAMS *param
3057 pR |PADNAMELIST *|padnamelist_dup|NN PADNAMELIST *srcpad \
3058 |NN CLONE_PARAMS *param
3059 pdR |PADLIST *|padlist_dup |NN PADLIST *srcpad \
3060 |NN CLONE_PARAMS *param
3062 p |PAD ** |padlist_store |NN PADLIST *padlist|I32 key \
3065 ApdR |CV* |find_runcv |NULLOK U32 *db_seqp
3066 pR |CV* |find_runcv_where|U8 cond|IV arg \
3067 |NULLOK U32 *db_seqp
3068 : Only used in perl.c
3069 p |void |free_tied_hv_pool
3070 #if defined(DEBUGGING)
3072 pR |int |get_debug_opts |NN const char **s|bool givehelp
3074 Ap |void |save_set_svflags|NN SV *sv|U32 mask|U32 val
3076 Apod |void |hv_assert |NN HV *hv
3079 ApdR |SV* |hv_scalar |NN HV *hv
3080 p |void |hv_pushkv |NN HV *hv|U32 flags
3081 ApdRx |SV* |hv_bucket_ratio|NN HV *hv
3082 ApoR |I32* |hv_riter_p |NN HV *hv
3083 ApoR |HE** |hv_eiter_p |NN HV *hv
3084 Apo |void |hv_riter_set |NN HV *hv|I32 riter
3085 Apo |void |hv_eiter_set |NN HV *hv|NULLOK HE *eiter
3086 Ap |void |hv_rand_set |NN HV *hv|U32 new_xhv_rand
3087 Ap |void |hv_name_set |NN HV *hv|NULLOK const char *name|U32 len|U32 flags
3088 p |void |hv_ename_add |NN HV *hv|NN const char *name|U32 len \
3090 p |void |hv_ename_delete|NN HV *hv|NN const char *name|U32 len \
3092 : Used in dump.c and hv.c
3093 pox |AV** |hv_backreferences_p |NN HV *hv
3094 #if defined(PERL_IN_DUMP_C) || defined(PERL_IN_HV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_SCOPE_C)
3095 pox |void |hv_kill_backrefs |NN HV *hv
3097 Apd |void |hv_clear_placeholders |NN HV *hv
3098 XpoR |SSize_t*|hv_placeholders_p |NN HV *hv
3099 ApoR |I32 |hv_placeholders_get |NN const HV *hv
3100 Apo |void |hv_placeholders_set |NN HV *hv|I32 ph
3102 : This is indirectly referenced by globals.c. This is somewhat annoying.
3103 p |SV* |magic_scalarpack|NN HV *hv|NN MAGIC *mg
3105 #if defined(PERL_IN_SV_C)
3106 S |SV * |find_hash_subscript|NULLOK const HV *const hv \
3107 |NN const SV *const val
3108 S |SSize_t|find_array_subscript|NULLOK const AV *const av \
3109 |NN const SV *const val
3110 Sxd |SV* |find_uninit_var|NULLOK const OP *const obase \
3111 |NULLOK const SV *const uninit_sv|bool match \
3112 |NN const char **desc_p
3115 Ap |GV* |gv_fetchpvn_flags|NN const char* name|STRLEN len|I32 flags|const svtype sv_type
3116 Ap |GV* |gv_fetchsv|NN SV *name|I32 flags|const svtype sv_type
3118 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
3120 p |void |dump_sv_child |NN SV *sv
3123 #ifdef PERL_DONT_CREATE_GVSV
3124 Apbm |GV* |gv_SVadd |NULLOK GV *gv
3126 #if defined(PERL_IN_UTIL_C)
3127 S |bool |ckwarn_common |U32 w
3129 ApoP |bool |ckwarn |U32 w
3130 ApoP |bool |ckwarn_d |U32 w
3131 : FIXME - exported for ByteLoader - public or private?
3132 XEopxR |STRLEN *|new_warnings_bitfield|NULLOK STRLEN *buffer \
3133 |NN const char *const bits|STRLEN size
3135 AMpTodf |int |my_snprintf |NN char *buffer|const Size_t len|NN const char *format|...
3136 AMpTod |int |my_vsnprintf |NN char *buffer|const Size_t len|NN const char *format|va_list ap
3138 ApTd |const char* |quadmath_format_single|NN const char* format
3139 ApTd |bool|quadmath_format_needed|NN const char* format
3142 : Used in mg.c, sv.c
3143 pe |void |my_clearenv
3145 #ifdef PERL_IMPLICIT_CONTEXT
3146 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
3147 Apo |void* |my_cxt_init |NN const char *my_cxt_key|size_t size
3148 Apo |int |my_cxt_index |NN const char *my_cxt_key
3150 Apo |void* |my_cxt_init |NN int *indexp|size_t size
3153 #if defined(PERL_IN_UTIL_C)
3154 So |void |xs_version_bootcheck|U32 items|U32 ax|NN const char *xs_p \
3157 XpoT |I32 |xs_handshake |const U32 key|NN void * v_my_perl\
3158 |NN const char * file| ...
3159 Xp |void |xs_boot_epilog |const I32 ax
3161 ApTd |Size_t |my_strlcat |NULLOK char *dst|NULLOK const char *src|Size_t size
3165 ApTd |Size_t |my_strlcpy |NULLOK char *dst|NULLOK const char *src|Size_t size
3169 ApTd |Size_t |my_strnlen |NN const char *str|Size_t maxlen
3172 #ifndef HAS_MKOSTEMP
3173 pTo |int |my_mkostemp |NN char *templte|int flags
3176 pTo |int |my_mkstemp |NN char *templte
3179 APpdT |bool |isinfnan |NV nv
3180 p |bool |isinfnansv |NN SV *sv
3182 #if !defined(HAS_SIGNBIT)
3183 AxdToP |int |Perl_signbit |NV f
3187 XExop |void |emulate_cop_io |NN const COP *const c|NN SV *const sv
3188 : Used by SvRX and SvRXOK
3189 XExop |REGEXP *|get_re_arg|NULLOK SV *sv
3191 Aop |SV* |mro_get_private_data|NN struct mro_meta *const smeta \
3192 |NN const struct mro_alg *const which
3193 Aop |SV* |mro_set_private_data|NN struct mro_meta *const smeta \
3194 |NN const struct mro_alg *const which \
3196 Aop |const struct mro_alg *|mro_get_from_name|NN SV *name
3197 Aop |void |mro_register |NN const struct mro_alg *mro
3198 Aop |void |mro_set_mro |NN struct mro_meta *const meta \
3200 : Used in HvMROMETA(), which is public.
3201 Xpo |struct mro_meta* |mro_meta_init |NN HV* stash
3202 #if defined(USE_ITHREADS)
3204 p |struct mro_meta* |mro_meta_dup |NN struct mro_meta* smeta|NN CLONE_PARAMS* param
3206 Apd |AV* |mro_get_linear_isa|NN HV* stash
3207 #if defined(PERL_IN_MRO_C)
3208 Sd |AV* |mro_get_linear_isa_dfs|NN HV* stash|U32 level
3209 S |void |mro_clean_isarev|NN HV * const isa \
3210 |NN const char * const name \
3212 |NULLOK HV * const exceptions \
3214 S |void |mro_gather_and_rename|NN HV * const stashes \
3215 |NN HV * const seen_stashes \
3217 |NULLOK HV *oldstash \
3220 : Used in hv.c, mg.c, pp.c, sv.c
3221 pd |void |mro_isa_changed_in|NN HV* stash
3222 Apd |void |mro_method_changed_in |NN HV* stash
3223 pde |void |mro_package_moved |NULLOK HV * const stash|NULLOK HV * const oldstash|NN const GV * const gv|U32 flags
3224 : Only used in perl.c
3225 p |void |boot_core_mro
3226 ApoT |void |sys_init |NN int* argc|NN char*** argv
3227 ApoT |void |sys_init3 |NN int* argc|NN char*** argv|NN char*** env
3228 ApoT |void |sys_term
3229 AMpx |const char *|cop_fetch_label|NN COP *const cop \
3230 |NULLOK STRLEN *len|NULLOK U32 *flags
3231 : Only used in op.c and the perl compiler
3232 AMpx |void|cop_store_label \
3233 |NN COP *const cop|NN const char *label|STRLEN len|U32 flags
3235 epo |int |keyword_plugin_standard|NN char* keyword_ptr|STRLEN keyword_len|NN OP** op_ptr
3237 #if defined(USE_ITHREADS)
3238 # if defined(PERL_IN_SV_C)
3239 S |void |unreferenced_to_tmp_stack|NN AV *const unreferenced
3241 ARTop |CLONE_PARAMS *|clone_params_new|NN PerlInterpreter *const from \
3242 |NN PerlInterpreter *const to
3243 ATop |void |clone_params_del|NN CLONE_PARAMS *param
3246 : Used in perl.c and toke.c
3247 op |void |populate_isa |NN const char *name|STRLEN len|...
3249 : Used in keywords.c and toke.c
3250 Xop |bool |feature_is_enabled|NN const char *const name \
3253 : Some static inline functions need predeclaration because they are used
3254 : inside other static inline functions.
3255 #if defined(PERL_CORE) || defined (PERL_EXT)
3256 Ei |STRLEN |sv_or_pv_pos_u2b|NN SV *sv|NN const char *pv|STRLEN pos \
3257 |NULLOK STRLEN *lenp
3260 Ap |void |clear_defarray |NN AV* av|bool abandon
3262 Apx |void |leave_adjust_stacks|NN SV **from_sp|NN SV **to_sp \
3263 |U8 gimme|int filter
3265 #ifndef PERL_NO_INLINE_FUNCTIONS
3266 Aix |PERL_CONTEXT * |cx_pushblock|U8 type|U8 gimme|NN SV** sp|I32 saveix
3267 Aix |void |cx_popblock|NN PERL_CONTEXT *cx
3268 Aix |void |cx_topblock|NN PERL_CONTEXT *cx
3269 Aix |void |cx_pushsub |NN PERL_CONTEXT *cx|NN CV *cv \
3270 |NULLOK OP *retop|bool hasargs
3271 Aix |void |cx_popsub_common|NN PERL_CONTEXT *cx
3272 Aix |void |cx_popsub_args |NN PERL_CONTEXT *cx
3273 Aix |void |cx_popsub |NN PERL_CONTEXT *cx
3274 Aix |void |cx_pushformat |NN PERL_CONTEXT *cx|NN CV *cv \
3275 |NULLOK OP *retop|NULLOK GV *gv
3276 Aix |void |cx_popformat |NN PERL_CONTEXT *cx
3277 Aix |void |cx_pusheval |NN PERL_CONTEXT *cx \
3278 |NULLOK OP *retop|NULLOK SV *namesv
3279 Aix |void |cx_popeval |NN PERL_CONTEXT *cx
3280 Aix |void |cx_pushloop_plain|NN PERL_CONTEXT *cx
3281 Aix |void |cx_pushloop_for |NN PERL_CONTEXT *cx \
3282 |NN void *itervarp|NULLOK SV *itersave
3283 Aix |void |cx_poploop |NN PERL_CONTEXT *cx
3284 Aix |void |cx_pushwhen |NN PERL_CONTEXT *cx
3285 Aix |void |cx_popwhen |NN PERL_CONTEXT *cx
3286 Aix |void |cx_pushgiven |NN PERL_CONTEXT *cx|NULLOK SV *orig_defsv
3287 Aix |void |cx_popgiven |NN PERL_CONTEXT *cx
3291 XEop |void |dtrace_probe_call |NN CV *cv|bool is_call
3292 XEop |void |dtrace_probe_load |NN const char *name|bool is_loading
3293 XEop |void |dtrace_probe_op |NN const OP *op
3294 XEop |void |dtrace_probe_phase|enum perl_phase phase
3297 XEop |STRLEN*|dup_warnings |NULLOK STRLEN* warnings
3299 : ex: set ts=8 sts=4 sw=4 noet: