ee98b19
From 0f57482a9969a0f9edc9e0e765e3a311824eb792 Mon Sep 17 00:00:00 2001
ee98b19
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
ee98b19
Date: Fri, 19 May 2017 10:54:13 +0200
ee98b19
Subject: [PATCH] Port to OpSIBLING-like macros required since Perl 5.25.1
ee98b19
MIME-Version: 1.0
ee98b19
Content-Type: text/plain; charset=UTF-8
ee98b19
Content-Transfer-Encoding: 8bit
ee98b19
ee98b19
This fixes a build failure on Perl >= 5.25.1 by means of
ee98b19
<https://rt.perl.org/Public/Bug/Display.html?id=128179#txn-1405910%3E>.
ee98b19
ee98b19
It bundles ppport.h from Devel::PPPort 3.36.
ee98b19
ee98b19
CPAN RT#117350
ee98b19
ee98b19
Signed-off-by: Petr Písař <ppisar@redhat.com>
ee98b19
---
ee98b19
 ConstOptree/ConstOptree.xs |   22 +-
ee98b19
 ConstOptree/ppport.h       | 7908 ++++++++++++++++++++++++++++++++++++++++++++
ee98b19
 MANIFEST                   |    1 +
ee98b19
 3 files changed, 7926 insertions(+), 5 deletions(-)
ee98b19
 create mode 100644 ConstOptree/ppport.h
ee98b19
ee98b19
diff --git a/ConstOptree/ConstOptree.xs b/ConstOptree/ConstOptree.xs
ee98b19
index f3e10d3..5876dac 100644
ee98b19
--- a/ConstOptree/ConstOptree.xs
ee98b19
+++ b/ConstOptree/ConstOptree.xs
ee98b19
@@ -3,6 +3,7 @@
ee98b19
 #include "EXTERN.h"
ee98b19
 #include "perl.h"
ee98b19
 #include "XSUB.h"
ee98b19
+#include "ppport.h"
ee98b19
 
ee98b19
 static OP *convert_arg(pTHX_ OP *op)
ee98b19
 {
ee98b19
@@ -25,7 +26,7 @@ static OP *convert_arg(pTHX_ OP *op)
ee98b19
     if (*name == ']')    /* $]  */
ee98b19
 	newop = (SVOP *) newSVOP(OP_CONST, 0, vnumify(PL_patchlevel));
ee98b19
     if (newop) {
ee98b19
-	newop->op_sibling = op1->op_sibling;
ee98b19
+	OpMAYBESIB_set(newop, OpSIBLING(op1), op_parent(op1));
ee98b19
 	newop->op_next = (OP *) newop;
ee98b19
 	op_free(op);
ee98b19
 	return (OP *) newop;
ee98b19
@@ -35,11 +36,22 @@ static OP *convert_arg(pTHX_ OP *op)
ee98b19
 
ee98b19
 static OP *my_ck_op(pTHX_ OP *op)
ee98b19
 {
ee98b19
-    OP **argp = &cUNOPx(op)->op_first;
ee98b19
-    while (*argp) {
ee98b19
-	*argp = convert_arg(aTHX_ *argp);
ee98b19
-	argp = &(*argp)->op_sibling;
ee98b19
+    OP *argp = cUNOPx(op)->op_first;
ee98b19
+    OP *prev;
ee98b19
+
ee98b19
+    if (!argp)
ee98b19
+	return op;
ee98b19
+
ee98b19
+    cUNOPx(op)->op_first = argp = convert_arg(aTHX_ argp);
ee98b19
+
ee98b19
+    while (OpHAS_SIBLING(argp)) {
ee98b19
+	prev = argp;
ee98b19
+	argp = OpSIBLING(argp);
ee98b19
+
ee98b19
+	argp = convert_arg(aTHX_ argp);
ee98b19
+	OpMORESIB_set(prev, argp);
ee98b19
     }
ee98b19
+
ee98b19
     return op;
ee98b19
 }
ee98b19
 
ee98b19
diff --git a/ConstOptree/ppport.h b/ConstOptree/ppport.h
ee98b19
new file mode 100644
ee98b19
index 0000000..4691be5
ee98b19
--- /dev/null
ee98b19
+++ b/ConstOptree/ppport.h
ee98b19
@@ -0,0 +1,7908 @@
ee98b19
+#if 0
ee98b19
+<<'SKIP';
ee98b19
+#endif
ee98b19
+/*
ee98b19
+----------------------------------------------------------------------
ee98b19
+
ee98b19
+    ppport.h -- Perl/Pollution/Portability Version 3.36
ee98b19
+
ee98b19
+    Automatically created by Devel::PPPort running under perl 5.024001.
ee98b19
+
ee98b19
+    Do NOT edit this file directly! -- Edit PPPort_pm.PL and the
ee98b19
+    includes in parts/inc/ instead.
ee98b19
+
ee98b19
+    Use 'perldoc ppport.h' to view the documentation below.
ee98b19
+
ee98b19
+----------------------------------------------------------------------
ee98b19
+
ee98b19
+SKIP
ee98b19
+
ee98b19
+=pod
ee98b19
+
ee98b19
+=head1 NAME
ee98b19
+
ee98b19
+ppport.h - Perl/Pollution/Portability version 3.36
ee98b19
+
ee98b19
+=head1 SYNOPSIS
ee98b19
+
ee98b19
+  perl ppport.h [options] [source files]
ee98b19
+
ee98b19
+  Searches current directory for files if no [source files] are given
ee98b19
+
ee98b19
+  --help                      show short help
ee98b19
+
ee98b19
+  --version                   show version
ee98b19
+
ee98b19
+  --patch=file                write one patch file with changes
ee98b19
+  --copy=suffix               write changed copies with suffix
ee98b19
+  --diff=program              use diff program and options
ee98b19
+
ee98b19
+  --compat-version=version    provide compatibility with Perl version
ee98b19
+  --cplusplus                 accept C++ comments
ee98b19
+
ee98b19
+  --quiet                     don't output anything except fatal errors
ee98b19
+  --nodiag                    don't show diagnostics
ee98b19
+  --nohints                   don't show hints
ee98b19
+  --nochanges                 don't suggest changes
ee98b19
+  --nofilter                  don't filter input files
ee98b19
+
ee98b19
+  --strip                     strip all script and doc functionality from
ee98b19
+                              ppport.h
ee98b19
+
ee98b19
+  --list-provided             list provided API
ee98b19
+  --list-unsupported          list unsupported API
ee98b19
+  --api-info=name             show Perl API portability information
ee98b19
+
ee98b19
+=head1 COMPATIBILITY
ee98b19
+
ee98b19
+This version of F<ppport.h> is designed to support operation with Perl
ee98b19
+installations back to 5.003, and has been tested up to 5.20.
ee98b19
+
ee98b19
+=head1 OPTIONS
ee98b19
+
ee98b19
+=head2 --help
ee98b19
+
ee98b19
+Display a brief usage summary.
ee98b19
+
ee98b19
+=head2 --version
ee98b19
+
ee98b19
+Display the version of F<ppport.h>.
ee98b19
+
ee98b19
+=head2 --patch=I<file>
ee98b19
+
ee98b19
+If this option is given, a single patch file will be created if
ee98b19
+any changes are suggested. This requires a working diff program
ee98b19
+to be installed on your system.
ee98b19
+
ee98b19
+=head2 --copy=I<suffix>
ee98b19
+
ee98b19
+If this option is given, a copy of each file will be saved with
ee98b19
+the given suffix that contains the suggested changes. This does
ee98b19
+not require any external programs. Note that this does not
ee98b19
+automagically add a dot between the original filename and the
ee98b19
+suffix. If you want the dot, you have to include it in the option
ee98b19
+argument.
ee98b19
+
ee98b19
+If neither C<--patch> or C<--copy> are given, the default is to
ee98b19
+simply print the diffs for each file. This requires either
ee98b19
+C<Text::Diff> or a C<diff> program to be installed.
ee98b19
+
ee98b19
+=head2 --diff=I<program>
ee98b19
+
ee98b19
+Manually set the diff program and options to use. The default
ee98b19
+is to use C<Text::Diff>, when installed, and output unified
ee98b19
+context diffs.
ee98b19
+
ee98b19
+=head2 --compat-version=I<version>
ee98b19
+
ee98b19
+Tell F<ppport.h> to check for compatibility with the given
ee98b19
+Perl version. The default is to check for compatibility with Perl
ee98b19
+version 5.003. You can use this option to reduce the output
ee98b19
+of F<ppport.h> if you intend to be backward compatible only
ee98b19
+down to a certain Perl version.
ee98b19
+
ee98b19
+=head2 --cplusplus
ee98b19
+
ee98b19
+Usually, F<ppport.h> will detect C++ style comments and
ee98b19
+replace them with C style comments for portability reasons.
ee98b19
+Using this option instructs F<ppport.h> to leave C++
ee98b19
+comments untouched.
ee98b19
+
ee98b19
+=head2 --quiet
ee98b19
+
ee98b19
+Be quiet. Don't print anything except fatal errors.
ee98b19
+
ee98b19
+=head2 --nodiag
ee98b19
+
ee98b19
+Don't output any diagnostic messages. Only portability
ee98b19
+alerts will be printed.
ee98b19
+
ee98b19
+=head2 --nohints
ee98b19
+
ee98b19
+Don't output any hints. Hints often contain useful portability
ee98b19
+notes. Warnings will still be displayed.
ee98b19
+
ee98b19
+=head2 --nochanges
ee98b19
+
ee98b19
+Don't suggest any changes. Only give diagnostic output and hints
ee98b19
+unless these are also deactivated.
ee98b19
+
ee98b19
+=head2 --nofilter
ee98b19
+
ee98b19
+Don't filter the list of input files. By default, files not looking
ee98b19
+like source code (i.e. not *.xs, *.c, *.cc, *.cpp or *.h) are skipped.
ee98b19
+
ee98b19
+=head2 --strip
ee98b19
+
ee98b19
+Strip all script and documentation functionality from F<ppport.h>.
ee98b19
+This reduces the size of F<ppport.h> dramatically and may be useful
ee98b19
+if you want to include F<ppport.h> in smaller modules without
ee98b19
+increasing their distribution size too much.
ee98b19
+
ee98b19
+The stripped F<ppport.h> will have a C<--unstrip> option that allows
ee98b19
+you to undo the stripping, but only if an appropriate C<Devel::PPPort>
ee98b19
+module is installed.
ee98b19
+
ee98b19
+=head2 --list-provided
ee98b19
+
ee98b19
+Lists the API elements for which compatibility is provided by
ee98b19
+F<ppport.h>. Also lists if it must be explicitly requested,
ee98b19
+if it has dependencies, and if there are hints or warnings for it.
ee98b19
+
ee98b19
+=head2 --list-unsupported
ee98b19
+
ee98b19
+Lists the API elements that are known not to be supported by
ee98b19
+F<ppport.h> and below which version of Perl they probably
ee98b19
+won't be available or work.
ee98b19
+
ee98b19
+=head2 --api-info=I<name>
ee98b19
+
ee98b19
+Show portability information for API elements matching I<name>.
ee98b19
+If I<name> is surrounded by slashes, it is interpreted as a regular
ee98b19
+expression.
ee98b19
+
ee98b19
+=head1 DESCRIPTION
ee98b19
+
ee98b19
+In order for a Perl extension (XS) module to be as portable as possible
ee98b19
+across differing versions of Perl itself, certain steps need to be taken.
ee98b19
+
ee98b19
+=over 4
ee98b19
+
ee98b19
+=item *
ee98b19
+
ee98b19
+Including this header is the first major one. This alone will give you
ee98b19
+access to a large part of the Perl API that hasn't been available in
ee98b19
+earlier Perl releases. Use
ee98b19
+
ee98b19
+    perl ppport.h --list-provided
ee98b19
+
ee98b19
+to see which API elements are provided by ppport.h.
ee98b19
+
ee98b19
+=item *
ee98b19
+
ee98b19
+You should avoid using deprecated parts of the API. For example, using
ee98b19
+global Perl variables without the C<PL_> prefix is deprecated. Also,
ee98b19
+some API functions used to have a C<perl_> prefix. Using this form is
ee98b19
+also deprecated. You can safely use the supported API, as F<ppport.h>
ee98b19
+will provide wrappers for older Perl versions.
ee98b19
+
ee98b19
+=item *
ee98b19
+
ee98b19
+If you use one of a few functions or variables that were not present in
ee98b19
+earlier versions of Perl, and that can't be provided using a macro, you
ee98b19
+have to explicitly request support for these functions by adding one or
ee98b19
+more C<#define>s in your source code before the inclusion of F<ppport.h>.
ee98b19
+
ee98b19
+These functions or variables will be marked C<explicit> in the list shown
ee98b19
+by C<--list-provided>.
ee98b19
+
ee98b19
+Depending on whether you module has a single or multiple files that
ee98b19
+use such functions or variables, you want either C<static> or global
ee98b19
+variants.
ee98b19
+
ee98b19
+For a C<static> function or variable (used only in a single source
ee98b19
+file), use:
ee98b19
+
ee98b19
+    #define NEED_function
ee98b19
+    #define NEED_variable
ee98b19
+
ee98b19
+For a global function or variable (used in multiple source files),
ee98b19
+use:
ee98b19
+
ee98b19
+    #define NEED_function_GLOBAL
ee98b19
+    #define NEED_variable_GLOBAL
ee98b19
+
ee98b19
+Note that you mustn't have more than one global request for the
ee98b19
+same function or variable in your project.
ee98b19
+
ee98b19
+    Function / Variable       Static Request               Global Request
ee98b19
+    -----------------------------------------------------------------------------------------
ee98b19
+    PL_parser                 NEED_PL_parser               NEED_PL_parser_GLOBAL
ee98b19
+    PL_signals                NEED_PL_signals              NEED_PL_signals_GLOBAL
ee98b19
+    SvRX()                    NEED_SvRX                    NEED_SvRX_GLOBAL
ee98b19
+    caller_cx()               NEED_caller_cx               NEED_caller_cx_GLOBAL
ee98b19
+    eval_pv()                 NEED_eval_pv                 NEED_eval_pv_GLOBAL
ee98b19
+    grok_bin()                NEED_grok_bin                NEED_grok_bin_GLOBAL
ee98b19
+    grok_hex()                NEED_grok_hex                NEED_grok_hex_GLOBAL
ee98b19
+    grok_number()             NEED_grok_number             NEED_grok_number_GLOBAL
ee98b19
+    grok_numeric_radix()      NEED_grok_numeric_radix      NEED_grok_numeric_radix_GLOBAL
ee98b19
+    grok_oct()                NEED_grok_oct                NEED_grok_oct_GLOBAL
ee98b19
+    gv_fetchpvn_flags()       NEED_gv_fetchpvn_flags       NEED_gv_fetchpvn_flags_GLOBAL
ee98b19
+    load_module()             NEED_load_module             NEED_load_module_GLOBAL
ee98b19
+    mg_findext()              NEED_mg_findext              NEED_mg_findext_GLOBAL
ee98b19
+    my_snprintf()             NEED_my_snprintf             NEED_my_snprintf_GLOBAL
ee98b19
+    my_sprintf()              NEED_my_sprintf              NEED_my_sprintf_GLOBAL
ee98b19
+    my_strlcat()              NEED_my_strlcat              NEED_my_strlcat_GLOBAL
ee98b19
+    my_strlcpy()              NEED_my_strlcpy              NEED_my_strlcpy_GLOBAL
ee98b19
+    newCONSTSUB()             NEED_newCONSTSUB             NEED_newCONSTSUB_GLOBAL
ee98b19
+    newRV_noinc()             NEED_newRV_noinc             NEED_newRV_noinc_GLOBAL
ee98b19
+    newSV_type()              NEED_newSV_type              NEED_newSV_type_GLOBAL
ee98b19
+    newSVpvn_flags()          NEED_newSVpvn_flags          NEED_newSVpvn_flags_GLOBAL
ee98b19
+    newSVpvn_share()          NEED_newSVpvn_share          NEED_newSVpvn_share_GLOBAL
ee98b19
+    pv_display()              NEED_pv_display              NEED_pv_display_GLOBAL
ee98b19
+    pv_escape()               NEED_pv_escape               NEED_pv_escape_GLOBAL
ee98b19
+    pv_pretty()               NEED_pv_pretty               NEED_pv_pretty_GLOBAL
ee98b19
+    sv_2pv_flags()            NEED_sv_2pv_flags            NEED_sv_2pv_flags_GLOBAL
ee98b19
+    sv_2pvbyte()              NEED_sv_2pvbyte              NEED_sv_2pvbyte_GLOBAL
ee98b19
+    sv_catpvf_mg()            NEED_sv_catpvf_mg            NEED_sv_catpvf_mg_GLOBAL
ee98b19
+    sv_catpvf_mg_nocontext()  NEED_sv_catpvf_mg_nocontext  NEED_sv_catpvf_mg_nocontext_GLOBAL
ee98b19
+    sv_pvn_force_flags()      NEED_sv_pvn_force_flags      NEED_sv_pvn_force_flags_GLOBAL
ee98b19
+    sv_setpvf_mg()            NEED_sv_setpvf_mg            NEED_sv_setpvf_mg_GLOBAL
ee98b19
+    sv_setpvf_mg_nocontext()  NEED_sv_setpvf_mg_nocontext  NEED_sv_setpvf_mg_nocontext_GLOBAL
ee98b19
+    sv_unmagicext()           NEED_sv_unmagicext           NEED_sv_unmagicext_GLOBAL
ee98b19
+    vload_module()            NEED_vload_module            NEED_vload_module_GLOBAL
ee98b19
+    vnewSVpvf()               NEED_vnewSVpvf               NEED_vnewSVpvf_GLOBAL
ee98b19
+    warner()                  NEED_warner                  NEED_warner_GLOBAL
ee98b19
+
ee98b19
+To avoid namespace conflicts, you can change the namespace of the
ee98b19
+explicitly exported functions / variables using the C<DPPP_NAMESPACE>
ee98b19
+macro. Just C<#define> the macro before including C<ppport.h>:
ee98b19
+
ee98b19
+    #define DPPP_NAMESPACE MyOwnNamespace_
ee98b19
+    #include "ppport.h"
ee98b19
+
ee98b19
+The default namespace is C<DPPP_>.
ee98b19
+
ee98b19
+=back
ee98b19
+
ee98b19
+The good thing is that most of the above can be checked by running
ee98b19
+F<ppport.h> on your source code. See the next section for
ee98b19
+details.
ee98b19
+
ee98b19
+=head1 EXAMPLES
ee98b19
+
ee98b19
+To verify whether F<ppport.h> is needed for your module, whether you
ee98b19
+should make any changes to your code, and whether any special defines
ee98b19
+should be used, F<ppport.h> can be run as a Perl script to check your
ee98b19
+source code. Simply say:
ee98b19
+
ee98b19
+    perl ppport.h
ee98b19
+
ee98b19
+The result will usually be a list of patches suggesting changes
ee98b19
+that should at least be acceptable, if not necessarily the most
ee98b19
+efficient solution, or a fix for all possible problems.
ee98b19
+
ee98b19
+If you know that your XS module uses features only available in
ee98b19
+newer Perl releases, if you're aware that it uses C++ comments,
ee98b19
+and if you want all suggestions as a single patch file, you could
ee98b19
+use something like this:
ee98b19
+
ee98b19
+    perl ppport.h --compat-version=5.6.0 --cplusplus --patch=test.diff
ee98b19
+
ee98b19
+If you only want your code to be scanned without any suggestions
ee98b19
+for changes, use:
ee98b19
+
ee98b19
+    perl ppport.h --nochanges
ee98b19
+
ee98b19
+You can specify a different C<diff> program or options, using
ee98b19
+the C<--diff> option:
ee98b19
+
ee98b19
+    perl ppport.h --diff='diff -C 10'
ee98b19
+
ee98b19
+This would output context diffs with 10 lines of context.
ee98b19
+
ee98b19
+If you want to create patched copies of your files instead, use:
ee98b19
+
ee98b19
+    perl ppport.h --copy=.new
ee98b19
+
ee98b19
+To display portability information for the C<newSVpvn> function,
ee98b19
+use:
ee98b19
+
ee98b19
+    perl ppport.h --api-info=newSVpvn
ee98b19
+
ee98b19
+Since the argument to C<--api-info> can be a regular expression,
ee98b19
+you can use
ee98b19
+
ee98b19
+    perl ppport.h --api-info=/_nomg$/
ee98b19
+
ee98b19
+to display portability information for all C<_nomg> functions or
ee98b19
+
ee98b19
+    perl ppport.h --api-info=/./
ee98b19
+
ee98b19
+to display information for all known API elements.
ee98b19
+
ee98b19
+=head1 BUGS
ee98b19
+
ee98b19
+If this version of F<ppport.h> is causing failure during
ee98b19
+the compilation of this module, please check if newer versions
ee98b19
+of either this module or C<Devel::PPPort> are available on CPAN
ee98b19
+before sending a bug report.
ee98b19
+
ee98b19
+If F<ppport.h> was generated using the latest version of
ee98b19
+C<Devel::PPPort> and is causing failure of this module, please
ee98b19
+file a bug report here: L<https://github.com/mhx/Devel-PPPort/issues/>
ee98b19
+
ee98b19
+Please include the following information:
ee98b19
+
ee98b19
+=over 4
ee98b19
+
ee98b19
+=item 1.
ee98b19
+
ee98b19
+The complete output from running "perl -V"
ee98b19
+
ee98b19
+=item 2.
ee98b19
+
ee98b19
+This file.
ee98b19
+
ee98b19
+=item 3.
ee98b19
+
ee98b19
+The name and version of the module you were trying to build.
ee98b19
+
ee98b19
+=item 4.
ee98b19
+
ee98b19
+A full log of the build that failed.
ee98b19
+
ee98b19
+=item 5.
ee98b19
+
ee98b19
+Any other information that you think could be relevant.
ee98b19
+
ee98b19
+=back
ee98b19
+
ee98b19
+For the latest version of this code, please get the C<Devel::PPPort>
ee98b19
+module from CPAN.
ee98b19
+
ee98b19
+=head1 COPYRIGHT
ee98b19
+
ee98b19
+Version 3.x, Copyright (c) 2004-2013, Marcus Holland-Moritz.
ee98b19
+
ee98b19
+Version 2.x, Copyright (C) 2001, Paul Marquess.
ee98b19
+
ee98b19
+Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
ee98b19
+
ee98b19
+This program is free software; you can redistribute it and/or
ee98b19
+modify it under the same terms as Perl itself.
ee98b19
+
ee98b19
+=head1 SEE ALSO
ee98b19
+
ee98b19
+See L<Devel::PPPort>.
ee98b19
+
ee98b19
+=cut
ee98b19
+
ee98b19
+use strict;
ee98b19
+
ee98b19
+# Disable broken TRIE-optimization
ee98b19
+BEGIN { eval '${^RE_TRIE_MAXBUF} = -1' if $] >= 5.009004 && $] <= 5.009005 }
ee98b19
+
ee98b19
+my $VERSION = 3.36;
ee98b19
+
ee98b19
+my %opt = (
ee98b19
+  quiet     => 0,
ee98b19
+  diag      => 1,
ee98b19
+  hints     => 1,
ee98b19
+  changes   => 1,
ee98b19
+  cplusplus => 0,
ee98b19
+  filter    => 1,
ee98b19
+  strip     => 0,
ee98b19
+  version   => 0,
ee98b19
+);
ee98b19
+
ee98b19
+my($ppport) = $0 =~ /([\w.]+)$/;
ee98b19
+my $LF = '(?:\r\n|[\r\n])';   # line feed
ee98b19
+my $HS = "[ \t]";             # horizontal whitespace
ee98b19
+
ee98b19
+# Never use C comments in this file!
ee98b19
+my $ccs  = '/'.'*';
ee98b19
+my $cce  = '*'.'/';
ee98b19
+my $rccs = quotemeta $ccs;
ee98b19
+my $rcce = quotemeta $cce;
ee98b19
+
ee98b19
+eval {
ee98b19
+  require Getopt::Long;
ee98b19
+  Getopt::Long::GetOptions(\%opt, qw(
ee98b19
+    help quiet diag! filter! hints! changes! cplusplus strip version
ee98b19
+    patch=s copy=s diff=s compat-version=s
ee98b19
+    list-provided list-unsupported api-info=s
ee98b19
+  )) or usage();
ee98b19
+};
ee98b19
+
ee98b19
+if ($@ and grep /^-/, @ARGV) {
ee98b19
+  usage() if "@ARGV" =~ /^--?h(?:elp)?$/;
ee98b19
+  die "Getopt::Long not found. Please don't use any options.\n";
ee98b19
+}
ee98b19
+
ee98b19
+if ($opt{version}) {
ee98b19
+  print "This is $0 $VERSION.\n";
ee98b19
+  exit 0;
ee98b19
+}
ee98b19
+
ee98b19
+usage() if $opt{help};
ee98b19
+strip() if $opt{strip};
ee98b19
+
ee98b19
+if (exists $opt{'compat-version'}) {
ee98b19
+  my($r,$v,$s) = eval { parse_version($opt{'compat-version'}) };
ee98b19
+  if ($@) {
ee98b19
+    die "Invalid version number format: '$opt{'compat-version'}'\n";
ee98b19
+  }
ee98b19
+  die "Only Perl 5 is supported\n" if $r != 5;
ee98b19
+  die "Invalid version number: $opt{'compat-version'}\n" if $v >= 1000 || $s >= 1000;
ee98b19
+  $opt{'compat-version'} = sprintf "%d.%03d%03d", $r, $v, $s;
ee98b19
+}
ee98b19
+else {
ee98b19
+  $opt{'compat-version'} = 5;
ee98b19
+}
ee98b19
+
ee98b19
+my %API = map { /^(\w+)\|([^|]*)\|([^|]*)\|(\w*)$/
ee98b19
+                ? ( $1 => {
ee98b19
+                      ($2                  ? ( base     => $2 ) : ()),
ee98b19
+                      ($3                  ? ( todo     => $3 ) : ()),
ee98b19
+                      (index($4, 'v') >= 0 ? ( varargs  => 1  ) : ()),
ee98b19
+                      (index($4, 'p') >= 0 ? ( provided => 1  ) : ()),
ee98b19
+                      (index($4, 'n') >= 0 ? ( nothxarg => 1  ) : ()),
ee98b19
+                    } )
ee98b19
+                : die "invalid spec: $_" } qw(
ee98b19
+ASCII_TO_NEED||5.007001|n
ee98b19
+AvFILLp|5.004050||p
ee98b19
+AvFILL|||
ee98b19
+BhkDISABLE||5.024000|
ee98b19
+BhkENABLE||5.024000|
ee98b19
+BhkENTRY_set||5.024000|
ee98b19
+BhkENTRY|||
ee98b19
+BhkFLAGS|||
ee98b19
+CALL_BLOCK_HOOKS|||
ee98b19
+CLASS|||n
ee98b19
+CPERLscope|5.005000||p
ee98b19
+CX_CURPAD_SAVE|||
ee98b19
+CX_CURPAD_SV|||
ee98b19
+C_ARRAY_END|5.013002||p
ee98b19
+C_ARRAY_LENGTH|5.008001||p
ee98b19
+CopFILEAV|5.006000||p
ee98b19
+CopFILEGV_set|5.006000||p
ee98b19
+CopFILEGV|5.006000||p
ee98b19
+CopFILESV|5.006000||p
ee98b19
+CopFILE_set|5.006000||p
ee98b19
+CopFILE|5.006000||p
ee98b19
+CopSTASHPV_set|5.006000||p
ee98b19
+CopSTASHPV|5.006000||p
ee98b19
+CopSTASH_eq|5.006000||p
ee98b19
+CopSTASH_set|5.006000||p
ee98b19
+CopSTASH|5.006000||p
ee98b19
+CopyD|5.009002|5.004050|p
ee98b19
+Copy|||
ee98b19
+CvPADLIST||5.008001|
ee98b19
+CvSTASH|||
ee98b19
+CvWEAKOUTSIDE|||
ee98b19
+DECLARATION_FOR_LC_NUMERIC_MANIPULATION||5.021010|n
ee98b19
+DEFSV_set|5.010001||p
ee98b19
+DEFSV|5.004050||p
ee98b19
+DO_UTF8||5.006000|
ee98b19
+END_EXTERN_C|5.005000||p
ee98b19
+ENTER|||
ee98b19
+ERRSV|5.004050||p
ee98b19
+EXTEND|||
ee98b19
+EXTERN_C|5.005000||p
ee98b19
+F0convert|||n
ee98b19
+FREETMPS|||
ee98b19
+GIMME_V||5.004000|n
ee98b19
+GIMME|||n
ee98b19
+GROK_NUMERIC_RADIX|5.007002||p
ee98b19
+G_ARRAY|||
ee98b19
+G_DISCARD|||
ee98b19
+G_EVAL|||
ee98b19
+G_METHOD|5.006001||p
ee98b19
+G_NOARGS|||
ee98b19
+G_SCALAR|||
ee98b19
+G_VOID||5.004000|
ee98b19
+GetVars|||
ee98b19
+GvAV|||
ee98b19
+GvCV|||
ee98b19
+GvHV|||
ee98b19
+GvSV|||
ee98b19
+Gv_AMupdate||5.011000|
ee98b19
+HEf_SVKEY|5.003070||p
ee98b19
+HeHASH||5.003070|
ee98b19
+HeKEY||5.003070|
ee98b19
+HeKLEN||5.003070|
ee98b19
+HePV||5.004000|
ee98b19
+HeSVKEY_force||5.003070|
ee98b19
+HeSVKEY_set||5.004000|
ee98b19
+HeSVKEY||5.003070|
ee98b19
+HeUTF8|5.010001|5.008000|p
ee98b19
+HeVAL||5.003070|
ee98b19
+HvENAMELEN||5.015004|
ee98b19
+HvENAMEUTF8||5.015004|
ee98b19
+HvENAME||5.013007|
ee98b19
+HvNAMELEN_get|5.009003||p
ee98b19
+HvNAMELEN||5.015004|
ee98b19
+HvNAMEUTF8||5.015004|
ee98b19
+HvNAME_get|5.009003||p
ee98b19
+HvNAME|||
ee98b19
+INT2PTR|5.006000||p
ee98b19
+IN_LOCALE_COMPILETIME|5.007002||p
ee98b19
+IN_LOCALE_RUNTIME|5.007002||p
ee98b19
+IN_LOCALE|5.007002||p
ee98b19
+IN_PERL_COMPILETIME|5.008001||p
ee98b19
+IS_NUMBER_GREATER_THAN_UV_MAX|5.007002||p
ee98b19
+IS_NUMBER_INFINITY|5.007002||p
ee98b19
+IS_NUMBER_IN_UV|5.007002||p
ee98b19
+IS_NUMBER_NAN|5.007003||p
ee98b19
+IS_NUMBER_NEG|5.007002||p
ee98b19
+IS_NUMBER_NOT_INT|5.007002||p
ee98b19
+IVSIZE|5.006000||p
ee98b19
+IVTYPE|5.006000||p
ee98b19
+IVdf|5.006000||p
ee98b19
+LEAVE|||
ee98b19
+LINKLIST||5.013006|
ee98b19
+LVRET|||
ee98b19
+MARK|||
ee98b19
+MULTICALL||5.024000|
ee98b19
+MUTABLE_PTR|5.010001||p
ee98b19
+MUTABLE_SV|5.010001||p
ee98b19
+MY_CXT_CLONE|5.009002||p
ee98b19
+MY_CXT_INIT|5.007003||p
ee98b19
+MY_CXT|5.007003||p
ee98b19
+MoveD|5.009002|5.004050|p
ee98b19
+Move|||
ee98b19
+NATIVE_TO_NEED||5.007001|n
ee98b19
+NOOP|5.005000||p
ee98b19
+NUM2PTR|5.006000||p
ee98b19
+NVTYPE|5.006000||p
ee98b19
+NVef|5.006001||p
ee98b19
+NVff|5.006001||p
ee98b19
+NVgf|5.006001||p
ee98b19
+Newxc|5.009003||p
ee98b19
+Newxz|5.009003||p
ee98b19
+Newx|5.009003||p
ee98b19
+Nullav|||
ee98b19
+Nullch|||
ee98b19
+Nullcv|||
ee98b19
+Nullhv|||
ee98b19
+Nullsv|||
ee98b19
+OP_CLASS||5.013007|
ee98b19
+OP_DESC||5.007003|
ee98b19
+OP_NAME||5.007003|
ee98b19
+OP_TYPE_IS_OR_WAS||5.019010|
ee98b19
+OP_TYPE_IS||5.019007|
ee98b19
+ORIGMARK|||
ee98b19
+OpHAS_SIBLING|5.021007||p
ee98b19
+OpLASTSIB_set|5.021011||p
ee98b19
+OpMAYBESIB_set|5.021011||p
ee98b19
+OpMORESIB_set|5.021011||p
ee98b19
+OpSIBLING|5.021007||p
ee98b19
+PAD_BASE_SV|||
ee98b19
+PAD_CLONE_VARS|||
ee98b19
+PAD_COMPNAME_FLAGS|||
ee98b19
+PAD_COMPNAME_GEN_set|||
ee98b19
+PAD_COMPNAME_GEN|||
ee98b19
+PAD_COMPNAME_OURSTASH|||
ee98b19
+PAD_COMPNAME_PV|||
ee98b19
+PAD_COMPNAME_TYPE|||
ee98b19
+PAD_RESTORE_LOCAL|||
ee98b19
+PAD_SAVE_LOCAL|||
ee98b19
+PAD_SAVE_SETNULLPAD|||
ee98b19
+PAD_SETSV|||
ee98b19
+PAD_SET_CUR_NOSAVE|||
ee98b19
+PAD_SET_CUR|||
ee98b19
+PAD_SVl|||
ee98b19
+PAD_SV|||
ee98b19
+PERLIO_FUNCS_CAST|5.009003||p
ee98b19
+PERLIO_FUNCS_DECL|5.009003||p
ee98b19
+PERL_ABS|5.008001||p
ee98b19
+PERL_BCDVERSION|5.024000||p
ee98b19
+PERL_GCC_BRACE_GROUPS_FORBIDDEN|5.008001||p
ee98b19
+PERL_HASH|5.003070||p
ee98b19
+PERL_INT_MAX|5.003070||p
ee98b19
+PERL_INT_MIN|5.003070||p
ee98b19
+PERL_LONG_MAX|5.003070||p
ee98b19
+PERL_LONG_MIN|5.003070||p
ee98b19
+PERL_MAGIC_arylen|5.007002||p
ee98b19
+PERL_MAGIC_backref|5.007002||p
ee98b19
+PERL_MAGIC_bm|5.007002||p
ee98b19
+PERL_MAGIC_collxfrm|5.007002||p
ee98b19
+PERL_MAGIC_dbfile|5.007002||p
ee98b19
+PERL_MAGIC_dbline|5.007002||p
ee98b19
+PERL_MAGIC_defelem|5.007002||p
ee98b19
+PERL_MAGIC_envelem|5.007002||p
ee98b19
+PERL_MAGIC_env|5.007002||p
ee98b19
+PERL_MAGIC_ext|5.007002||p
ee98b19
+PERL_MAGIC_fm|5.007002||p
ee98b19
+PERL_MAGIC_glob|5.024000||p
ee98b19
+PERL_MAGIC_isaelem|5.007002||p
ee98b19
+PERL_MAGIC_isa|5.007002||p
ee98b19
+PERL_MAGIC_mutex|5.024000||p
ee98b19
+PERL_MAGIC_nkeys|5.007002||p
ee98b19
+PERL_MAGIC_overload_elem|5.024000||p
ee98b19
+PERL_MAGIC_overload_table|5.007002||p
ee98b19
+PERL_MAGIC_overload|5.024000||p
ee98b19
+PERL_MAGIC_pos|5.007002||p
ee98b19
+PERL_MAGIC_qr|5.007002||p
ee98b19
+PERL_MAGIC_regdata|5.007002||p
ee98b19
+PERL_MAGIC_regdatum|5.007002||p
ee98b19
+PERL_MAGIC_regex_global|5.007002||p
ee98b19
+PERL_MAGIC_shared_scalar|5.007003||p
ee98b19
+PERL_MAGIC_shared|5.007003||p
ee98b19
+PERL_MAGIC_sigelem|5.007002||p
ee98b19
+PERL_MAGIC_sig|5.007002||p
ee98b19
+PERL_MAGIC_substr|5.007002||p
ee98b19
+PERL_MAGIC_sv|5.007002||p
ee98b19
+PERL_MAGIC_taint|5.007002||p
ee98b19
+PERL_MAGIC_tiedelem|5.007002||p
ee98b19
+PERL_MAGIC_tiedscalar|5.007002||p
ee98b19
+PERL_MAGIC_tied|5.007002||p
ee98b19
+PERL_MAGIC_utf8|5.008001||p
ee98b19
+PERL_MAGIC_uvar_elem|5.007003||p
ee98b19
+PERL_MAGIC_uvar|5.007002||p
ee98b19
+PERL_MAGIC_vec|5.007002||p
ee98b19
+PERL_MAGIC_vstring|5.008001||p
ee98b19
+PERL_PV_ESCAPE_ALL|5.009004||p
ee98b19
+PERL_PV_ESCAPE_FIRSTCHAR|5.009004||p
ee98b19
+PERL_PV_ESCAPE_NOBACKSLASH|5.009004||p
ee98b19
+PERL_PV_ESCAPE_NOCLEAR|5.009004||p
ee98b19
+PERL_PV_ESCAPE_QUOTE|5.009004||p
ee98b19
+PERL_PV_ESCAPE_RE|5.009005||p
ee98b19
+PERL_PV_ESCAPE_UNI_DETECT|5.009004||p
ee98b19
+PERL_PV_ESCAPE_UNI|5.009004||p
ee98b19
+PERL_PV_PRETTY_DUMP|5.009004||p
ee98b19
+PERL_PV_PRETTY_ELLIPSES|5.010000||p
ee98b19
+PERL_PV_PRETTY_LTGT|5.009004||p
ee98b19
+PERL_PV_PRETTY_NOCLEAR|5.010000||p
ee98b19
+PERL_PV_PRETTY_QUOTE|5.009004||p
ee98b19
+PERL_PV_PRETTY_REGPROP|5.009004||p
ee98b19
+PERL_QUAD_MAX|5.003070||p
ee98b19
+PERL_QUAD_MIN|5.003070||p
ee98b19
+PERL_REVISION|5.006000||p
ee98b19
+PERL_SCAN_ALLOW_UNDERSCORES|5.007003||p
ee98b19
+PERL_SCAN_DISALLOW_PREFIX|5.007003||p
ee98b19
+PERL_SCAN_GREATER_THAN_UV_MAX|5.007003||p
ee98b19
+PERL_SCAN_SILENT_ILLDIGIT|5.008001||p
ee98b19
+PERL_SHORT_MAX|5.003070||p
ee98b19
+PERL_SHORT_MIN|5.003070||p
ee98b19
+PERL_SIGNALS_UNSAFE_FLAG|5.008001||p
ee98b19
+PERL_SUBVERSION|5.006000||p
ee98b19
+PERL_SYS_INIT3||5.006000|
ee98b19
+PERL_SYS_INIT|||
ee98b19
+PERL_SYS_TERM||5.024000|
ee98b19
+PERL_UCHAR_MAX|5.003070||p
ee98b19
+PERL_UCHAR_MIN|5.003070||p
ee98b19
+PERL_UINT_MAX|5.003070||p
ee98b19
+PERL_UINT_MIN|5.003070||p
ee98b19
+PERL_ULONG_MAX|5.003070||p
ee98b19
+PERL_ULONG_MIN|5.003070||p
ee98b19
+PERL_UNUSED_ARG|5.009003||p
ee98b19
+PERL_UNUSED_CONTEXT|5.009004||p
ee98b19
+PERL_UNUSED_DECL|5.007002||p
ee98b19
+PERL_UNUSED_RESULT|5.021001||p
ee98b19
+PERL_UNUSED_VAR|5.007002||p
ee98b19
+PERL_UQUAD_MAX|5.003070||p
ee98b19
+PERL_UQUAD_MIN|5.003070||p
ee98b19
+PERL_USE_GCC_BRACE_GROUPS|5.009004||p
ee98b19
+PERL_USHORT_MAX|5.003070||p
ee98b19
+PERL_USHORT_MIN|5.003070||p
ee98b19
+PERL_VERSION|5.006000||p
ee98b19
+PL_DBsignal|5.005000||p
ee98b19
+PL_DBsingle|||pn
ee98b19
+PL_DBsub|||pn
ee98b19
+PL_DBtrace|||pn
ee98b19
+PL_Sv|5.005000||p
ee98b19
+PL_bufend|5.024000||p
ee98b19
+PL_bufptr|5.024000||p
ee98b19
+PL_check||5.006000|
ee98b19
+PL_compiling|5.004050||p
ee98b19
+PL_comppad_name||5.017004|
ee98b19
+PL_comppad||5.008001|
ee98b19
+PL_copline|5.024000||p
ee98b19
+PL_curcop|5.004050||p
ee98b19
+PL_curpad||5.005000|
ee98b19
+PL_curstash|5.004050||p
ee98b19
+PL_debstash|5.004050||p
ee98b19
+PL_defgv|5.004050||p
ee98b19
+PL_diehook|5.004050||p
ee98b19
+PL_dirty|5.004050||p
ee98b19
+PL_dowarn|||pn
ee98b19
+PL_errgv|5.004050||p
ee98b19
+PL_error_count|5.024000||p
ee98b19
+PL_expect|5.024000||p
ee98b19
+PL_hexdigit|5.005000||p
ee98b19
+PL_hints|5.005000||p
ee98b19
+PL_in_my_stash|5.024000||p
ee98b19
+PL_in_my|5.024000||p
ee98b19
+PL_keyword_plugin||5.011002|
ee98b19
+PL_last_in_gv|||n
ee98b19
+PL_laststatval|5.005000||p
ee98b19
+PL_lex_state|5.024000||p
ee98b19
+PL_lex_stuff|5.024000||p
ee98b19
+PL_linestr|5.024000||p
ee98b19
+PL_modglobal||5.005000|n
ee98b19
+PL_na|5.004050||pn
ee98b19
+PL_no_modify|5.006000||p
ee98b19
+PL_ofsgv|||n
ee98b19
+PL_opfreehook||5.011000|n
ee98b19
+PL_parser|5.009005||p
ee98b19
+PL_peepp||5.007003|n
ee98b19
+PL_perl_destruct_level|5.004050||p
ee98b19
+PL_perldb|5.004050||p
ee98b19
+PL_ppaddr|5.006000||p
ee98b19
+PL_rpeepp||5.013005|n
ee98b19
+PL_rsfp_filters|5.024000||p
ee98b19
+PL_rsfp|5.024000||p
ee98b19
+PL_rs|||n
ee98b19
+PL_signals|5.008001||p
ee98b19
+PL_stack_base|5.004050||p
ee98b19
+PL_stack_sp|5.004050||p
ee98b19
+PL_statcache|5.005000||p
ee98b19
+PL_stdingv|5.004050||p
ee98b19
+PL_sv_arenaroot|5.004050||p
ee98b19
+PL_sv_no|5.004050||pn
ee98b19
+PL_sv_undef|5.004050||pn
ee98b19
+PL_sv_yes|5.004050||pn
ee98b19
+PL_tainted|5.004050||p
ee98b19
+PL_tainting|5.004050||p
ee98b19
+PL_tokenbuf|5.024000||p
ee98b19
+POP_MULTICALL||5.024000|
ee98b19
+POPi|||n
ee98b19
+POPl|||n
ee98b19
+POPn|||n
ee98b19
+POPpbytex||5.007001|n
ee98b19
+POPpx||5.005030|n
ee98b19
+POPp|||n
ee98b19
+POPs|||n
ee98b19
+POPul||5.006000|n
ee98b19
+POPu||5.004000|n
ee98b19
+PTR2IV|5.006000||p
ee98b19
+PTR2NV|5.006000||p
ee98b19
+PTR2UV|5.006000||p
ee98b19
+PTR2nat|5.009003||p
ee98b19
+PTR2ul|5.007001||p
ee98b19
+PTRV|5.006000||p
ee98b19
+PUSHMARK|||
ee98b19
+PUSH_MULTICALL||5.024000|
ee98b19
+PUSHi|||
ee98b19
+PUSHmortal|5.009002||p
ee98b19
+PUSHn|||
ee98b19
+PUSHp|||
ee98b19
+PUSHs|||
ee98b19
+PUSHu|5.004000||p
ee98b19
+PUTBACK|||
ee98b19
+PadARRAY||5.024000|
ee98b19
+PadMAX||5.024000|
ee98b19
+PadlistARRAY||5.024000|
ee98b19
+PadlistMAX||5.024000|
ee98b19
+PadlistNAMESARRAY||5.024000|
ee98b19
+PadlistNAMESMAX||5.024000|
ee98b19
+PadlistNAMES||5.024000|
ee98b19
+PadlistREFCNT||5.017004|
ee98b19
+PadnameIsOUR|||
ee98b19
+PadnameIsSTATE|||
ee98b19
+PadnameLEN||5.024000|
ee98b19
+PadnameOURSTASH|||
ee98b19
+PadnameOUTER|||
ee98b19
+PadnamePV||5.024000|
ee98b19
+PadnameREFCNT_dec||5.024000|
ee98b19
+PadnameREFCNT||5.024000|
ee98b19
+PadnameSV||5.024000|
ee98b19
+PadnameTYPE|||
ee98b19
+PadnameUTF8||5.021007|
ee98b19
+PadnamelistARRAY||5.024000|
ee98b19
+PadnamelistMAX||5.024000|
ee98b19
+PadnamelistREFCNT_dec||5.024000|
ee98b19
+PadnamelistREFCNT||5.024000|
ee98b19
+PerlIO_clearerr||5.007003|
ee98b19
+PerlIO_close||5.007003|
ee98b19
+PerlIO_context_layers||5.009004|
ee98b19
+PerlIO_eof||5.007003|
ee98b19
+PerlIO_error||5.007003|
ee98b19
+PerlIO_fileno||5.007003|
ee98b19
+PerlIO_fill||5.007003|
ee98b19
+PerlIO_flush||5.007003|
ee98b19
+PerlIO_get_base||5.007003|
ee98b19
+PerlIO_get_bufsiz||5.007003|
ee98b19
+PerlIO_get_cnt||5.007003|
ee98b19
+PerlIO_get_ptr||5.007003|
ee98b19
+PerlIO_read||5.007003|
ee98b19
+PerlIO_restore_errno|||
ee98b19
+PerlIO_save_errno|||
ee98b19
+PerlIO_seek||5.007003|
ee98b19
+PerlIO_set_cnt||5.007003|
ee98b19
+PerlIO_set_ptrcnt||5.007003|
ee98b19
+PerlIO_setlinebuf||5.007003|
ee98b19
+PerlIO_stderr||5.007003|
ee98b19
+PerlIO_stdin||5.007003|
ee98b19
+PerlIO_stdout||5.007003|
ee98b19
+PerlIO_tell||5.007003|
ee98b19
+PerlIO_unread||5.007003|
ee98b19
+PerlIO_write||5.007003|
ee98b19
+Perl_signbit||5.009005|n
ee98b19
+PoisonFree|5.009004||p
ee98b19
+PoisonNew|5.009004||p
ee98b19
+PoisonWith|5.009004||p
ee98b19
+Poison|5.008000||p
ee98b19
+READ_XDIGIT||5.017006|
ee98b19
+RESTORE_LC_NUMERIC||5.024000|
ee98b19
+RETVAL|||n
ee98b19
+Renewc|||
ee98b19
+Renew|||
ee98b19
+SAVECLEARSV|||
ee98b19
+SAVECOMPPAD|||
ee98b19
+SAVEPADSV|||
ee98b19
+SAVETMPS|||
ee98b19
+SAVE_DEFSV|5.004050||p
ee98b19
+SPAGAIN|||
ee98b19
+SP|||
ee98b19
+START_EXTERN_C|5.005000||p
ee98b19
+START_MY_CXT|5.007003||p
ee98b19
+STMT_END|||p
ee98b19
+STMT_START|||p
ee98b19
+STORE_LC_NUMERIC_FORCE_TO_UNDERLYING||5.024000|
ee98b19
+STORE_LC_NUMERIC_SET_TO_NEEDED||5.024000|
ee98b19
+STR_WITH_LEN|5.009003||p
ee98b19
+ST|||
ee98b19
+SV_CONST_RETURN|5.009003||p
ee98b19
+SV_COW_DROP_PV|5.008001||p
ee98b19
+SV_COW_SHARED_HASH_KEYS|5.009005||p
ee98b19
+SV_GMAGIC|5.007002||p
ee98b19
+SV_HAS_TRAILING_NUL|5.009004||p
ee98b19
+SV_IMMEDIATE_UNREF|5.007001||p
ee98b19
+SV_MUTABLE_RETURN|5.009003||p
ee98b19
+SV_NOSTEAL|5.009002||p
ee98b19
+SV_SMAGIC|5.009003||p
ee98b19
+SV_UTF8_NO_ENCODING|5.008001||p
ee98b19
+SVfARG|5.009005||p
ee98b19
+SVf_UTF8|5.006000||p
ee98b19
+SVf|5.006000||p
ee98b19
+SVt_INVLIST||5.019002|
ee98b19
+SVt_IV|||
ee98b19
+SVt_NULL|||
ee98b19
+SVt_NV|||
ee98b19
+SVt_PVAV|||
ee98b19
+SVt_PVCV|||
ee98b19
+SVt_PVFM|||
ee98b19
+SVt_PVGV|||
ee98b19
+SVt_PVHV|||
ee98b19
+SVt_PVIO|||
ee98b19
+SVt_PVIV|||
ee98b19
+SVt_PVLV|||
ee98b19
+SVt_PVMG|||
ee98b19
+SVt_PVNV|||
ee98b19
+SVt_PV|||
ee98b19
+SVt_REGEXP||5.011000|
ee98b19
+Safefree|||
ee98b19
+Slab_Alloc|||
ee98b19
+Slab_Free|||
ee98b19
+Slab_to_ro|||
ee98b19
+Slab_to_rw|||
ee98b19
+StructCopy|||
ee98b19
+SvCUR_set|||
ee98b19
+SvCUR|||
ee98b19
+SvEND|||
ee98b19
+SvGAMAGIC||5.006001|
ee98b19
+SvGETMAGIC|5.004050||p
ee98b19
+SvGROW|||
ee98b19
+SvIOK_UV||5.006000|
ee98b19
+SvIOK_notUV||5.006000|
ee98b19
+SvIOK_off|||
ee98b19
+SvIOK_only_UV||5.006000|
ee98b19
+SvIOK_only|||
ee98b19
+SvIOK_on|||
ee98b19
+SvIOKp|||
ee98b19
+SvIOK|||
ee98b19
+SvIVX|||
ee98b19
+SvIV_nomg|5.009001||p
ee98b19
+SvIV_set|||
ee98b19
+SvIVx|||
ee98b19
+SvIV|||
ee98b19
+SvIsCOW_shared_hash||5.008003|
ee98b19
+SvIsCOW||5.008003|
ee98b19
+SvLEN_set|||
ee98b19
+SvLEN|||
ee98b19
+SvLOCK||5.007003|
ee98b19
+SvMAGIC_set|5.009003||p
ee98b19
+SvNIOK_off|||
ee98b19
+SvNIOKp|||
ee98b19
+SvNIOK|||
ee98b19
+SvNOK_off|||
ee98b19
+SvNOK_only|||
ee98b19
+SvNOK_on|||
ee98b19
+SvNOKp|||
ee98b19
+SvNOK|||
ee98b19
+SvNVX|||
ee98b19
+SvNV_nomg||5.013002|
ee98b19
+SvNV_set|||
ee98b19
+SvNVx|||
ee98b19
+SvNV|||
ee98b19
+SvOK|||
ee98b19
+SvOOK_offset||5.011000|
ee98b19
+SvOOK|||
ee98b19
+SvPOK_off|||
ee98b19
+SvPOK_only_UTF8||5.006000|
ee98b19
+SvPOK_only|||
ee98b19
+SvPOK_on|||
ee98b19
+SvPOKp|||
ee98b19
+SvPOK|||
ee98b19
+SvPVX_const|5.009003||p
ee98b19
+SvPVX_mutable|5.009003||p
ee98b19
+SvPVX|||
ee98b19
+SvPV_const|5.009003||p
ee98b19
+SvPV_flags_const_nolen|5.009003||p
ee98b19
+SvPV_flags_const|5.009003||p
ee98b19
+SvPV_flags_mutable|5.009003||p
ee98b19
+SvPV_flags|5.007002||p
ee98b19
+SvPV_force_flags_mutable|5.009003||p
ee98b19
+SvPV_force_flags_nolen|5.009003||p
ee98b19
+SvPV_force_flags|5.007002||p
ee98b19
+SvPV_force_mutable|5.009003||p
ee98b19
+SvPV_force_nolen|5.009003||p
ee98b19
+SvPV_force_nomg_nolen|5.009003||p
ee98b19
+SvPV_force_nomg|5.007002||p
ee98b19
+SvPV_force|||p
ee98b19
+SvPV_mutable|5.009003||p
ee98b19
+SvPV_nolen_const|5.009003||p
ee98b19
+SvPV_nolen|5.006000||p
ee98b19
+SvPV_nomg_const_nolen|5.009003||p
ee98b19
+SvPV_nomg_const|5.009003||p
ee98b19
+SvPV_nomg_nolen|5.013007||p
ee98b19
+SvPV_nomg|5.007002||p
ee98b19
+SvPV_renew|5.009003||p
ee98b19
+SvPV_set|||
ee98b19
+SvPVbyte_force||5.009002|
ee98b19
+SvPVbyte_nolen||5.006000|
ee98b19
+SvPVbytex_force||5.006000|
ee98b19
+SvPVbytex||5.006000|
ee98b19
+SvPVbyte|5.006000||p
ee98b19
+SvPVutf8_force||5.006000|
ee98b19
+SvPVutf8_nolen||5.006000|
ee98b19
+SvPVutf8x_force||5.006000|
ee98b19
+SvPVutf8x||5.006000|
ee98b19
+SvPVutf8||5.006000|
ee98b19
+SvPVx|||
ee98b19
+SvPV|||
ee98b19
+SvREFCNT_dec_NN||5.017007|
ee98b19
+SvREFCNT_dec|||
ee98b19
+SvREFCNT_inc_NN|5.009004||p
ee98b19
+SvREFCNT_inc_simple_NN|5.009004||p
ee98b19
+SvREFCNT_inc_simple_void_NN|5.009004||p
ee98b19
+SvREFCNT_inc_simple_void|5.009004||p
ee98b19
+SvREFCNT_inc_simple|5.009004||p
ee98b19
+SvREFCNT_inc_void_NN|5.009004||p
ee98b19
+SvREFCNT_inc_void|5.009004||p
ee98b19
+SvREFCNT_inc|||p
ee98b19
+SvREFCNT|||
ee98b19
+SvROK_off|||
ee98b19
+SvROK_on|||
ee98b19
+SvROK|||
ee98b19
+SvRV_set|5.009003||p
ee98b19
+SvRV|||
ee98b19
+SvRXOK|5.009005||p
ee98b19
+SvRX|5.009005||p
ee98b19
+SvSETMAGIC|||
ee98b19
+SvSHARED_HASH|5.009003||p
ee98b19
+SvSHARE||5.007003|
ee98b19
+SvSTASH_set|5.009003||p
ee98b19
+SvSTASH|||
ee98b19
+SvSetMagicSV_nosteal||5.004000|
ee98b19
+SvSetMagicSV||5.004000|
ee98b19
+SvSetSV_nosteal||5.004000|
ee98b19
+SvSetSV|||
ee98b19
+SvTAINTED_off||5.004000|
ee98b19
+SvTAINTED_on||5.004000|
ee98b19
+SvTAINTED||5.004000|
ee98b19
+SvTAINT|||
ee98b19
+SvTHINKFIRST|||
ee98b19
+SvTRUE_nomg||5.013006|
ee98b19
+SvTRUE|||
ee98b19
+SvTYPE|||
ee98b19
+SvUNLOCK||5.007003|
ee98b19
+SvUOK|5.007001|5.006000|p
ee98b19
+SvUPGRADE|||
ee98b19
+SvUTF8_off||5.006000|
ee98b19
+SvUTF8_on||5.006000|
ee98b19
+SvUTF8||5.006000|
ee98b19
+SvUVXx|5.004000||p
ee98b19
+SvUVX|5.004000||p
ee98b19
+SvUV_nomg|5.009001||p
ee98b19
+SvUV_set|5.009003||p
ee98b19
+SvUVx|5.004000||p
ee98b19
+SvUV|5.004000||p
ee98b19
+SvVOK||5.008001|
ee98b19
+SvVSTRING_mg|5.009004||p
ee98b19
+THIS|||n
ee98b19
+UNDERBAR|5.009002||p
ee98b19
+UTF8SKIP||5.006000|
ee98b19
+UTF8_MAXBYTES|5.009002||p
ee98b19
+UVCHR_SKIP||5.022000|
ee98b19
+UVSIZE|5.006000||p
ee98b19
+UVTYPE|5.006000||p
ee98b19
+UVXf|5.007001||p
ee98b19
+UVof|5.006000||p
ee98b19
+UVuf|5.006000||p
ee98b19
+UVxf|5.006000||p
ee98b19
+WARN_ALL|5.006000||p
ee98b19
+WARN_AMBIGUOUS|5.006000||p
ee98b19
+WARN_ASSERTIONS|5.024000||p
ee98b19
+WARN_BAREWORD|5.006000||p
ee98b19
+WARN_CLOSED|5.006000||p
ee98b19
+WARN_CLOSURE|5.006000||p
ee98b19
+WARN_DEBUGGING|5.006000||p
ee98b19
+WARN_DEPRECATED|5.006000||p
ee98b19
+WARN_DIGIT|5.006000||p
ee98b19
+WARN_EXEC|5.006000||p
ee98b19
+WARN_EXITING|5.006000||p
ee98b19
+WARN_GLOB|5.006000||p
ee98b19
+WARN_INPLACE|5.006000||p
ee98b19
+WARN_INTERNAL|5.006000||p
ee98b19
+WARN_IO|5.006000||p
ee98b19
+WARN_LAYER|5.008000||p
ee98b19
+WARN_MALLOC|5.006000||p
ee98b19
+WARN_MISC|5.006000||p
ee98b19
+WARN_NEWLINE|5.006000||p
ee98b19
+WARN_NUMERIC|5.006000||p
ee98b19
+WARN_ONCE|5.006000||p
ee98b19
+WARN_OVERFLOW|5.006000||p
ee98b19
+WARN_PACK|5.006000||p
ee98b19
+WARN_PARENTHESIS|5.006000||p
ee98b19
+WARN_PIPE|5.006000||p
ee98b19
+WARN_PORTABLE|5.006000||p
ee98b19
+WARN_PRECEDENCE|5.006000||p
ee98b19
+WARN_PRINTF|5.006000||p
ee98b19
+WARN_PROTOTYPE|5.006000||p
ee98b19
+WARN_QW|5.006000||p
ee98b19
+WARN_RECURSION|5.006000||p
ee98b19
+WARN_REDEFINE|5.006000||p
ee98b19
+WARN_REGEXP|5.006000||p
ee98b19
+WARN_RESERVED|5.006000||p
ee98b19
+WARN_SEMICOLON|5.006000||p
ee98b19
+WARN_SEVERE|5.006000||p
ee98b19
+WARN_SIGNAL|5.006000||p
ee98b19
+WARN_SUBSTR|5.006000||p
ee98b19
+WARN_SYNTAX|5.006000||p
ee98b19
+WARN_TAINT|5.006000||p
ee98b19
+WARN_THREADS|5.008000||p
ee98b19
+WARN_UNINITIALIZED|5.006000||p
ee98b19
+WARN_UNOPENED|5.006000||p
ee98b19
+WARN_UNPACK|5.006000||p
ee98b19
+WARN_UNTIE|5.006000||p
ee98b19
+WARN_UTF8|5.006000||p
ee98b19
+WARN_VOID|5.006000||p
ee98b19
+WIDEST_UTYPE|5.015004||p
ee98b19
+XCPT_CATCH|5.009002||p
ee98b19
+XCPT_RETHROW|5.009002||p
ee98b19
+XCPT_TRY_END|5.009002||p
ee98b19
+XCPT_TRY_START|5.009002||p
ee98b19
+XPUSHi|||
ee98b19
+XPUSHmortal|5.009002||p
ee98b19
+XPUSHn|||
ee98b19
+XPUSHp|||
ee98b19
+XPUSHs|||
ee98b19
+XPUSHu|5.004000||p
ee98b19
+XSPROTO|5.010000||p
ee98b19
+XSRETURN_EMPTY|||
ee98b19
+XSRETURN_IV|||
ee98b19
+XSRETURN_NO|||
ee98b19
+XSRETURN_NV|||
ee98b19
+XSRETURN_PV|||
ee98b19
+XSRETURN_UNDEF|||
ee98b19
+XSRETURN_UV|5.008001||p
ee98b19
+XSRETURN_YES|||
ee98b19
+XSRETURN|||p
ee98b19
+XST_mIV|||
ee98b19
+XST_mNO|||
ee98b19
+XST_mNV|||
ee98b19
+XST_mPV|||
ee98b19
+XST_mUNDEF|||
ee98b19
+XST_mUV|5.008001||p
ee98b19
+XST_mYES|||
ee98b19
+XS_APIVERSION_BOOTCHECK||5.024000|
ee98b19
+XS_EXTERNAL||5.024000|
ee98b19
+XS_INTERNAL||5.024000|
ee98b19
+XS_VERSION_BOOTCHECK||5.024000|
ee98b19
+XS_VERSION|||
ee98b19
+XSprePUSH|5.006000||p
ee98b19
+XS|||
ee98b19
+XopDISABLE||5.024000|
ee98b19
+XopENABLE||5.024000|
ee98b19
+XopENTRYCUSTOM||5.024000|
ee98b19
+XopENTRY_set||5.024000|
ee98b19
+XopENTRY||5.024000|
ee98b19
+XopFLAGS||5.013007|
ee98b19
+ZeroD|5.009002||p
ee98b19
+Zero|||
ee98b19
+_aMY_CXT|5.007003||p
ee98b19
+_add_range_to_invlist|||
ee98b19
+_append_range_to_invlist|||
ee98b19
+_core_swash_init|||
ee98b19
+_get_encoding|||
ee98b19
+_get_regclass_nonbitmap_data|||
ee98b19
+_get_swash_invlist|||
ee98b19
+_invlistEQ|||
ee98b19
+_invlist_array_init|||n
ee98b19
+_invlist_contains_cp|||n
ee98b19
+_invlist_dump|||
ee98b19
+_invlist_intersection_maybe_complement_2nd|||
ee98b19
+_invlist_intersection|||
ee98b19
+_invlist_invert|||
ee98b19
+_invlist_len|||n
ee98b19
+_invlist_populate_swatch|||n
ee98b19
+_invlist_search|||n
ee98b19
+_invlist_subtract|||
ee98b19
+_invlist_union_maybe_complement_2nd|||
ee98b19
+_invlist_union|||
ee98b19
+_is_cur_LC_category_utf8|||
ee98b19
+_is_in_locale_category||5.021001|
ee98b19
+_is_uni_FOO||5.017008|
ee98b19
+_is_uni_perl_idcont||5.017008|
ee98b19
+_is_uni_perl_idstart||5.017007|
ee98b19
+_is_utf8_FOO||5.017008|
ee98b19
+_is_utf8_char_slow||5.021001|n
ee98b19
+_is_utf8_idcont||5.021001|
ee98b19
+_is_utf8_idstart||5.021001|
ee98b19
+_is_utf8_mark||5.017008|
ee98b19
+_is_utf8_perl_idcont||5.017008|
ee98b19
+_is_utf8_perl_idstart||5.017007|
ee98b19
+_is_utf8_xidcont||5.021001|
ee98b19
+_is_utf8_xidstart||5.021001|
ee98b19
+_load_PL_utf8_foldclosures|||
ee98b19
+_make_exactf_invlist|||
ee98b19
+_new_invlist_C_array|||
ee98b19
+_new_invlist|||
ee98b19
+_pMY_CXT|5.007003||p
ee98b19
+_setlocale_debug_string|||n
ee98b19
+_setup_canned_invlist|||
ee98b19
+_swash_inversion_hash|||
ee98b19
+_swash_to_invlist|||
ee98b19
+_to_fold_latin1|||
ee98b19
+_to_uni_fold_flags||5.014000|
ee98b19
+_to_upper_title_latin1|||
ee98b19
+_to_utf8_case|||
ee98b19
+_to_utf8_fold_flags||5.019009|
ee98b19
+_to_utf8_lower_flags||5.019009|
ee98b19
+_to_utf8_title_flags||5.019009|
ee98b19
+_to_utf8_upper_flags||5.019009|
ee98b19
+_warn_problematic_locale|||n
ee98b19
+aMY_CXT_|5.007003||p
ee98b19
+aMY_CXT|5.007003||p
ee98b19
+aTHXR_|5.024000||p
ee98b19
+aTHXR|5.024000||p
ee98b19
+aTHX_|5.006000||p
ee98b19
+aTHX|5.006000||p
ee98b19
+add_above_Latin1_folds|||
ee98b19
+add_cp_to_invlist|||
ee98b19
+add_data|||n
ee98b19
+add_multi_match|||
ee98b19
+add_utf16_textfilter|||
ee98b19
+adjust_size_and_find_bucket|||n
ee98b19
+advance_one_LB|||
ee98b19
+advance_one_SB|||
ee98b19
+advance_one_WB|||
ee98b19
+alloc_maybe_populate_EXACT|||
ee98b19
+alloccopstash|||
ee98b19
+allocmy|||
ee98b19
+amagic_call|||
ee98b19
+amagic_cmp_locale|||
ee98b19
+amagic_cmp|||
ee98b19
+amagic_deref_call||5.013007|
ee98b19
+amagic_i_ncmp|||
ee98b19
+amagic_is_enabled|||
ee98b19
+amagic_ncmp|||
ee98b19
+anonymise_cv_maybe|||
ee98b19
+any_dup|||
ee98b19
+ao|||
ee98b19
+append_utf8_from_native_byte||5.019004|n
ee98b19
+apply_attrs_my|||
ee98b19
+apply_attrs_string||5.006001|
ee98b19
+apply_attrs|||
ee98b19
+apply|||
ee98b19
+assert_uft8_cache_coherent|||
ee98b19
+assignment_type|||
ee98b19
+atfork_lock||5.007003|n
ee98b19
+atfork_unlock||5.007003|n
ee98b19
+av_arylen_p||5.009003|
ee98b19
+av_clear|||
ee98b19
+av_create_and_push||5.009005|
ee98b19
+av_create_and_unshift_one||5.009005|
ee98b19
+av_delete||5.006000|
ee98b19
+av_exists||5.006000|
ee98b19
+av_extend_guts|||
ee98b19
+av_extend|||
ee98b19
+av_fetch|||
ee98b19
+av_fill|||
ee98b19
+av_iter_p||5.011000|
ee98b19
+av_len|||
ee98b19
+av_make|||
ee98b19
+av_pop|||
ee98b19
+av_push|||
ee98b19
+av_reify|||
ee98b19
+av_shift|||
ee98b19
+av_store|||
ee98b19
+av_tindex||5.017009|
ee98b19
+av_top_index||5.017009|
ee98b19
+av_undef|||
ee98b19
+av_unshift|||
ee98b19
+ax|||n
ee98b19
+backup_one_LB|||
ee98b19
+backup_one_SB|||
ee98b19
+backup_one_WB|||
ee98b19
+bad_type_gv|||
ee98b19
+bad_type_pv|||
ee98b19
+bind_match|||
ee98b19
+block_end||5.004000|
ee98b19
+block_gimme||5.004000|
ee98b19
+block_start||5.004000|
ee98b19
+blockhook_register||5.013003|
ee98b19
+boolSV|5.004000||p
ee98b19
+boot_core_PerlIO|||
ee98b19
+boot_core_UNIVERSAL|||
ee98b19
+boot_core_mro|||
ee98b19
+bytes_cmp_utf8||5.013007|
ee98b19
+bytes_from_utf8||5.007001|
ee98b19
+bytes_to_utf8||5.006001|
ee98b19
+cBOOL|5.013000||p
ee98b19
+call_argv|5.006000||p
ee98b19
+call_atexit||5.006000|
ee98b19
+call_list||5.004000|
ee98b19
+call_method|5.006000||p
ee98b19
+call_pv|5.006000||p
ee98b19
+call_sv|5.006000||p
ee98b19
+caller_cx|5.013005|5.006000|p
ee98b19
+calloc||5.007002|n
ee98b19
+cando|||
ee98b19
+cast_i32||5.006000|n
ee98b19
+cast_iv||5.006000|n
ee98b19
+cast_ulong||5.006000|n
ee98b19
+cast_uv||5.006000|n
ee98b19
+check_locale_boundary_crossing|||
ee98b19
+check_type_and_open|||
ee98b19
+check_uni|||
ee98b19
+check_utf8_print|||
ee98b19
+checkcomma|||
ee98b19
+ckWARN|5.006000||p
ee98b19
+ck_entersub_args_core|||
ee98b19
+ck_entersub_args_list||5.013006|
ee98b19
+ck_entersub_args_proto_or_list||5.013006|
ee98b19
+ck_entersub_args_proto||5.013006|
ee98b19
+ck_warner_d||5.011001|v
ee98b19
+ck_warner||5.011001|v
ee98b19
+ckwarn_common|||
ee98b19
+ckwarn_d||5.009003|
ee98b19
+ckwarn||5.009003|
ee98b19
+clear_defarray||5.023008|
ee98b19
+clear_placeholders|||
ee98b19
+clear_special_blocks|||
ee98b19
+clone_params_del|||n
ee98b19
+clone_params_new|||n
ee98b19
+closest_cop|||
ee98b19
+cntrl_to_mnemonic|||n
ee98b19
+compute_EXACTish|||n
ee98b19
+construct_ahocorasick_from_trie|||
ee98b19
+cop_fetch_label||5.015001|
ee98b19
+cop_free|||
ee98b19
+cop_hints_2hv||5.013007|
ee98b19
+cop_hints_fetch_pvn||5.013007|
ee98b19
+cop_hints_fetch_pvs||5.013007|
ee98b19
+cop_hints_fetch_pv||5.013007|
ee98b19
+cop_hints_fetch_sv||5.013007|
ee98b19
+cop_store_label||5.015001|
ee98b19
+cophh_2hv||5.013007|
ee98b19
+cophh_copy||5.013007|
ee98b19
+cophh_delete_pvn||5.013007|
ee98b19
+cophh_delete_pvs||5.013007|
ee98b19
+cophh_delete_pv||5.013007|
ee98b19
+cophh_delete_sv||5.013007|
ee98b19
+cophh_fetch_pvn||5.013007|
ee98b19
+cophh_fetch_pvs||5.013007|
ee98b19
+cophh_fetch_pv||5.013007|
ee98b19
+cophh_fetch_sv||5.013007|
ee98b19
+cophh_free||5.013007|
ee98b19
+cophh_new_empty||5.024000|
ee98b19
+cophh_store_pvn||5.013007|
ee98b19
+cophh_store_pvs||5.013007|
ee98b19
+cophh_store_pv||5.013007|
ee98b19
+cophh_store_sv||5.013007|
ee98b19
+core_prototype|||
ee98b19
+coresub_op|||
ee98b19
+cr_textfilter|||
ee98b19
+create_eval_scope|||
ee98b19
+croak_memory_wrap||5.019003|n
ee98b19
+croak_no_mem|||n
ee98b19
+croak_no_modify||5.013003|n
ee98b19
+croak_nocontext|||vn
ee98b19
+croak_popstack|||n
ee98b19
+croak_sv||5.013001|
ee98b19
+croak_xs_usage||5.010001|n
ee98b19
+croak|||v
ee98b19
+csighandler||5.009003|n
ee98b19
+current_re_engine|||
ee98b19
+curse|||
ee98b19
+custom_op_desc||5.007003|
ee98b19
+custom_op_get_field|||
ee98b19
+custom_op_name||5.007003|
ee98b19
+custom_op_register||5.013007|
ee98b19
+custom_op_xop||5.013007|
ee98b19
+cv_ckproto_len_flags|||
ee98b19
+cv_clone_into|||
ee98b19
+cv_clone|||
ee98b19
+cv_const_sv_or_av|||n
ee98b19
+cv_const_sv||5.003070|n
ee98b19
+cv_dump|||
ee98b19
+cv_forget_slab|||
ee98b19
+cv_get_call_checker||5.013006|
ee98b19
+cv_name||5.021005|
ee98b19
+cv_set_call_checker_flags||5.021004|
ee98b19
+cv_set_call_checker||5.013006|
ee98b19
+cv_undef_flags|||
ee98b19
+cv_undef|||
ee98b19
+cvgv_from_hek|||
ee98b19
+cvgv_set|||
ee98b19
+cvstash_set|||
ee98b19
+cx_dump||5.005000|
ee98b19
+cx_dup|||
ee98b19
+cx_popblock||5.023008|
ee98b19
+cx_popeval||5.023008|
ee98b19
+cx_popformat||5.023008|
ee98b19
+cx_popgiven||5.023008|
ee98b19
+cx_poploop||5.023008|
ee98b19
+cx_popsub_args||5.023008|
ee98b19
+cx_popsub_common||5.023008|
ee98b19
+cx_popsub||5.023008|
ee98b19
+cx_popwhen||5.023008|
ee98b19
+cx_pushblock||5.023008|
ee98b19
+cx_pusheval||5.023008|
ee98b19
+cx_pushformat||5.023008|
ee98b19
+cx_pushgiven||5.023008|
ee98b19
+cx_pushloop_for||5.023008|
ee98b19
+cx_pushloop_plain||5.023008|
ee98b19
+cx_pushsub||5.023008|
ee98b19
+cx_pushwhen||5.023008|
ee98b19
+cx_topblock||5.023008|
ee98b19
+cxinc|||
ee98b19
+dAXMARK|5.009003||p
ee98b19
+dAX|5.007002||p
ee98b19
+dITEMS|5.007002||p
ee98b19
+dMARK|||
ee98b19
+dMULTICALL||5.009003|
ee98b19
+dMY_CXT_SV|5.007003||p
ee98b19
+dMY_CXT|5.007003||p
ee98b19
+dNOOP|5.006000||p
ee98b19
+dORIGMARK|||
ee98b19
+dSP|||
ee98b19
+dTHR|5.004050||p
ee98b19
+dTHXR|5.024000||p
ee98b19
+dTHXa|5.006000||p
ee98b19
+dTHXoa|5.006000||p
ee98b19
+dTHX|5.006000||p
ee98b19
+dUNDERBAR|5.009002||p
ee98b19
+dVAR|5.009003||p
ee98b19
+dXCPT|5.009002||p
ee98b19
+dXSARGS|||
ee98b19
+dXSI32|||
ee98b19
+dXSTARG|5.006000||p
ee98b19
+deb_curcv|||
ee98b19
+deb_nocontext|||vn
ee98b19
+deb_stack_all|||
ee98b19
+deb_stack_n|||
ee98b19
+debop||5.005000|
ee98b19
+debprofdump||5.005000|
ee98b19
+debprof|||
ee98b19
+debstackptrs||5.007003|
ee98b19
+debstack||5.007003|
ee98b19
+debug_start_match|||
ee98b19
+deb||5.007003|v
ee98b19
+defelem_target|||
ee98b19
+del_sv|||
ee98b19
+delete_eval_scope|||
ee98b19
+delimcpy||5.004000|n
ee98b19
+deprecate_commaless_var_list|||
ee98b19
+despatch_signals||5.007001|
ee98b19
+destroy_matcher|||
ee98b19
+die_nocontext|||vn
ee98b19
+die_sv||5.013001|
ee98b19
+die_unwind|||
ee98b19
+die|||v
ee98b19
+dirp_dup|||
ee98b19
+div128|||
ee98b19
+djSP|||
ee98b19
+do_aexec5|||
ee98b19
+do_aexec|||
ee98b19
+do_aspawn|||
ee98b19
+do_binmode||5.004050|
ee98b19
+do_chomp|||
ee98b19
+do_close|||
ee98b19
+do_delete_local|||
ee98b19
+do_dump_pad|||
ee98b19
+do_eof|||
ee98b19
+do_exec3|||
ee98b19
+do_execfree|||
ee98b19
+do_exec|||
ee98b19
+do_gv_dump||5.006000|
ee98b19
+do_gvgv_dump||5.006000|
ee98b19
+do_hv_dump||5.006000|
ee98b19
+do_ipcctl|||
ee98b19
+do_ipcget|||
ee98b19
+do_join|||
ee98b19
+do_magic_dump||5.006000|
ee98b19
+do_msgrcv|||
ee98b19
+do_msgsnd|||
ee98b19
+do_ncmp|||
ee98b19
+do_oddball|||
ee98b19
+do_op_dump||5.006000|
ee98b19
+do_open6|||
ee98b19
+do_open9||5.006000|
ee98b19
+do_open_raw|||
ee98b19
+do_openn||5.007001|
ee98b19
+do_open||5.003070|
ee98b19
+do_pmop_dump||5.006000|
ee98b19
+do_print|||
ee98b19
+do_readline|||
ee98b19
+do_seek|||
ee98b19
+do_semop|||
ee98b19
+do_shmio|||
ee98b19
+do_smartmatch|||
ee98b19
+do_spawn_nowait|||
ee98b19
+do_spawn|||
ee98b19
+do_sprintf|||
ee98b19
+do_sv_dump||5.006000|
ee98b19
+do_sysseek|||
ee98b19
+do_tell|||
ee98b19
+do_trans_complex_utf8|||
ee98b19
+do_trans_complex|||
ee98b19
+do_trans_count_utf8|||
ee98b19
+do_trans_count|||
ee98b19
+do_trans_simple_utf8|||
ee98b19
+do_trans_simple|||
ee98b19
+do_trans|||
ee98b19
+do_vecget|||
ee98b19
+do_vecset|||
ee98b19
+do_vop|||
ee98b19
+docatch|||
ee98b19
+doeval_compile|||
ee98b19
+dofile|||
ee98b19
+dofindlabel|||
ee98b19
+doform|||
ee98b19
+doing_taint||5.008001|n
ee98b19
+dooneliner|||
ee98b19
+doopen_pm|||
ee98b19
+doparseform|||
ee98b19
+dopoptoeval|||
ee98b19
+dopoptogivenfor|||
ee98b19
+dopoptolabel|||
ee98b19
+dopoptoloop|||
ee98b19
+dopoptosub_at|||
ee98b19
+dopoptowhen|||
ee98b19
+doref||5.009003|
ee98b19
+dounwind|||
ee98b19
+dowantarray|||
ee98b19
+drand48_init_r|||n
ee98b19
+drand48_r|||n
ee98b19
+dtrace_probe_call|||
ee98b19
+dtrace_probe_load|||
ee98b19
+dtrace_probe_op|||
ee98b19
+dtrace_probe_phase|||
ee98b19
+dump_all_perl|||
ee98b19
+dump_all||5.006000|
ee98b19
+dump_c_backtrace|||
ee98b19
+dump_eval||5.006000|
ee98b19
+dump_exec_pos|||
ee98b19
+dump_form||5.006000|
ee98b19
+dump_indent||5.006000|v
ee98b19
+dump_mstats|||
ee98b19
+dump_packsubs_perl|||
ee98b19
+dump_packsubs||5.006000|
ee98b19
+dump_sub_perl|||
ee98b19
+dump_sub||5.006000|
ee98b19
+dump_sv_child|||
ee98b19
+dump_trie_interim_list|||
ee98b19
+dump_trie_interim_table|||
ee98b19
+dump_trie|||
ee98b19
+dump_vindent||5.006000|
ee98b19
+dumpuntil|||
ee98b19
+dup_attrlist|||
ee98b19
+edit_distance|||n
ee98b19
+emulate_cop_io|||
ee98b19
+eval_pv|5.006000||p
ee98b19
+eval_sv|5.006000||p
ee98b19
+exec_failed|||
ee98b19
+expect_number|||
ee98b19
+fbm_compile||5.005000|
ee98b19
+fbm_instr||5.005000|
ee98b19
+feature_is_enabled|||
ee98b19
+filter_add|||
ee98b19
+filter_del|||
ee98b19
+filter_gets|||
ee98b19
+filter_read|||
ee98b19
+finalize_optree|||
ee98b19
+finalize_op|||
ee98b19
+find_and_forget_pmops|||
ee98b19
+find_array_subscript|||
ee98b19
+find_beginning|||
ee98b19
+find_byclass|||
ee98b19
+find_default_stash|||
ee98b19
+find_hash_subscript|||
ee98b19
+find_in_my_stash|||
ee98b19
+find_lexical_cv|||
ee98b19
+find_runcv_where|||
ee98b19
+find_runcv||5.008001|
ee98b19
+find_rundefsvoffset||5.009002|
ee98b19
+find_rundefsv||5.013002|
ee98b19
+find_script|||
ee98b19
+find_uninit_var|||
ee98b19
+first_symbol|||n
ee98b19
+fixup_errno_string|||
ee98b19
+foldEQ_latin1||5.013008|n
ee98b19
+foldEQ_locale||5.013002|n
ee98b19
+foldEQ_utf8_flags||5.013010|
ee98b19
+foldEQ_utf8||5.013002|
ee98b19
+foldEQ||5.013002|n
ee98b19
+fold_constants|||
ee98b19
+forbid_setid|||
ee98b19
+force_ident_maybe_lex|||
ee98b19
+force_ident|||
ee98b19
+force_list|||
ee98b19
+force_next|||
ee98b19
+force_strict_version|||
ee98b19
+force_version|||
ee98b19
+force_word|||
ee98b19
+forget_pmop|||
ee98b19
+form_nocontext|||vn
ee98b19
+form_short_octal_warning|||
ee98b19
+form||5.004000|v
ee98b19
+fp_dup|||
ee98b19
+fprintf_nocontext|||vn
ee98b19
+free_c_backtrace|||
ee98b19
+free_global_struct|||
ee98b19
+free_tied_hv_pool|||
ee98b19
+free_tmps|||
ee98b19
+gen_constant_list|||
ee98b19
+get_ANYOF_cp_list_for_ssc|||
ee98b19
+get_and_check_backslash_N_name|||
ee98b19
+get_aux_mg|||
ee98b19
+get_av|5.006000||p
ee98b19
+get_c_backtrace_dump|||
ee98b19
+get_c_backtrace|||
ee98b19
+get_context||5.006000|n
ee98b19
+get_cvn_flags|||
ee98b19
+get_cvs|5.011000||p
ee98b19
+get_cv|5.006000||p
ee98b19
+get_db_sub|||
ee98b19
+get_debug_opts|||
ee98b19
+get_hash_seed|||
ee98b19
+get_hv|5.006000||p
ee98b19
+get_invlist_iter_addr|||n
ee98b19
+get_invlist_offset_addr|||n
ee98b19
+get_invlist_previous_index_addr|||n
ee98b19
+get_mstats|||
ee98b19
+get_no_modify|||
ee98b19
+get_num|||
ee98b19
+get_op_descs||5.005000|
ee98b19
+get_op_names||5.005000|
ee98b19
+get_opargs|||
ee98b19
+get_ppaddr||5.006000|
ee98b19
+get_re_arg|||
ee98b19
+get_sv|5.006000||p
ee98b19
+get_vtbl||5.005030|
ee98b19
+getcwd_sv||5.007002|
ee98b19
+getenv_len|||
ee98b19
+glob_2number|||
ee98b19
+glob_assign_glob|||
ee98b19
+gp_dup|||
ee98b19
+gp_free|||
ee98b19
+gp_ref|||
ee98b19
+grok_atoUV|||n
ee98b19
+grok_bin|5.007003||p
ee98b19
+grok_bslash_N|||
ee98b19
+grok_bslash_c|||
ee98b19
+grok_bslash_o|||
ee98b19
+grok_bslash_x|||
ee98b19
+grok_hex|5.007003||p
ee98b19
+grok_infnan||5.021004|
ee98b19
+grok_number_flags||5.021002|
ee98b19
+grok_number|5.007002||p
ee98b19
+grok_numeric_radix|5.007002||p
ee98b19
+grok_oct|5.007003||p
ee98b19
+group_end|||
ee98b19
+gv_AVadd|||
ee98b19
+gv_HVadd|||
ee98b19
+gv_IOadd|||
ee98b19
+gv_SVadd|||
ee98b19
+gv_add_by_type||5.011000|
ee98b19
+gv_autoload4||5.004000|
ee98b19
+gv_autoload_pvn||5.015004|
ee98b19
+gv_autoload_pv||5.015004|
ee98b19
+gv_autoload_sv||5.015004|
ee98b19
+gv_check|||
ee98b19
+gv_const_sv||5.009003|
ee98b19
+gv_dump||5.006000|
ee98b19
+gv_efullname3||5.003070|
ee98b19
+gv_efullname4||5.006001|
ee98b19
+gv_efullname|||
ee98b19
+gv_fetchfile_flags||5.009005|
ee98b19
+gv_fetchfile|||
ee98b19
+gv_fetchmeth_autoload||5.007003|
ee98b19
+gv_fetchmeth_internal|||
ee98b19
+gv_fetchmeth_pv_autoload||5.015004|
ee98b19
+gv_fetchmeth_pvn_autoload||5.015004|
ee98b19
+gv_fetchmeth_pvn||5.015004|
ee98b19
+gv_fetchmeth_pv||5.015004|
ee98b19
+gv_fetchmeth_sv_autoload||5.015004|
ee98b19
+gv_fetchmeth_sv||5.015004|
ee98b19
+gv_fetchmethod_autoload||5.004000|
ee98b19
+gv_fetchmethod_pv_flags||5.015004|
ee98b19
+gv_fetchmethod_pvn_flags||5.015004|
ee98b19
+gv_fetchmethod_sv_flags||5.015004|
ee98b19
+gv_fetchmethod|||
ee98b19
+gv_fetchmeth|||
ee98b19
+gv_fetchpvn_flags|5.009002||p
ee98b19
+gv_fetchpvs|5.009004||p
ee98b19
+gv_fetchpv|||
ee98b19
+gv_fetchsv|||
ee98b19
+gv_fullname3||5.003070|
ee98b19
+gv_fullname4||5.006001|
ee98b19
+gv_fullname|||
ee98b19
+gv_handler||5.007001|
ee98b19
+gv_init_pvn|||
ee98b19
+gv_init_pv||5.015004|
ee98b19
+gv_init_svtype|||
ee98b19
+gv_init_sv||5.015004|
ee98b19
+gv_init|||
ee98b19
+gv_is_in_main|||
ee98b19
+gv_magicalize_isa|||
ee98b19
+gv_magicalize|||
ee98b19
+gv_name_set||5.009004|
ee98b19
+gv_override|||
ee98b19
+gv_setref|||
ee98b19
+gv_stashpvn_internal|||
ee98b19
+gv_stashpvn|5.003070||p
ee98b19
+gv_stashpvs|5.009003||p
ee98b19
+gv_stashpv|||
ee98b19
+gv_stashsvpvn_cached|||
ee98b19
+gv_stashsv|||
ee98b19
+gv_try_downgrade|||
ee98b19
+handle_named_backref|||
ee98b19
+handle_possible_posix|||
ee98b19
+handle_regex_sets|||
ee98b19
+he_dup|||
ee98b19
+hek_dup|||
ee98b19
+hfree_next_entry|||
ee98b19
+hfreeentries|||
ee98b19
+hsplit|||
ee98b19
+hv_assert|||
ee98b19
+hv_auxinit_internal|||n
ee98b19
+hv_auxinit|||
ee98b19
+hv_backreferences_p|||
ee98b19
+hv_clear_placeholders||5.009001|
ee98b19
+hv_clear|||
ee98b19
+hv_common_key_len||5.010000|
ee98b19
+hv_common||5.010000|
ee98b19
+hv_copy_hints_hv||5.009004|
ee98b19
+hv_delayfree_ent||5.004000|
ee98b19
+hv_delete_common|||
ee98b19
+hv_delete_ent||5.003070|
ee98b19
+hv_delete|||
ee98b19
+hv_eiter_p||5.009003|
ee98b19
+hv_eiter_set||5.009003|
ee98b19
+hv_ename_add|||
ee98b19
+hv_ename_delete|||
ee98b19
+hv_exists_ent||5.003070|
ee98b19
+hv_exists|||
ee98b19
+hv_fetch_ent||5.003070|
ee98b19
+hv_fetchs|5.009003||p
ee98b19
+hv_fetch|||
ee98b19
+hv_fill||5.013002|
ee98b19
+hv_free_ent_ret|||
ee98b19
+hv_free_ent||5.004000|
ee98b19
+hv_iterinit|||
ee98b19
+hv_iterkeysv||5.003070|
ee98b19
+hv_iterkey|||
ee98b19
+hv_iternext_flags||5.008000|
ee98b19
+hv_iternextsv|||
ee98b19
+hv_iternext|||
ee98b19
+hv_iterval|||
ee98b19
+hv_kill_backrefs|||
ee98b19
+hv_ksplit||5.003070|
ee98b19
+hv_magic_check|||n
ee98b19
+hv_magic|||
ee98b19
+hv_name_set||5.009003|
ee98b19
+hv_notallowed|||
ee98b19
+hv_placeholders_get||5.009003|
ee98b19
+hv_placeholders_p|||
ee98b19
+hv_placeholders_set||5.009003|
ee98b19
+hv_rand_set||5.018000|
ee98b19
+hv_riter_p||5.009003|
ee98b19
+hv_riter_set||5.009003|
ee98b19
+hv_scalar||5.009001|
ee98b19
+hv_store_ent||5.003070|
ee98b19
+hv_store_flags||5.008000|
ee98b19
+hv_stores|5.009004||p
ee98b19
+hv_store|||
ee98b19
+hv_undef_flags|||
ee98b19
+hv_undef|||
ee98b19
+ibcmp_locale||5.004000|
ee98b19
+ibcmp_utf8||5.007003|
ee98b19
+ibcmp|||
ee98b19
+incline|||
ee98b19
+incpush_if_exists|||
ee98b19
+incpush_use_sep|||
ee98b19
+incpush|||
ee98b19
+ingroup|||
ee98b19
+init_argv_symbols|||
ee98b19
+init_constants|||
ee98b19
+init_dbargs|||
ee98b19
+init_debugger|||
ee98b19
+init_global_struct|||
ee98b19
+init_i18nl10n||5.006000|
ee98b19
+init_i18nl14n||5.006000|
ee98b19
+init_ids|||
ee98b19
+init_interp|||
ee98b19
+init_main_stash|||
ee98b19
+init_perllib|||
ee98b19
+init_postdump_symbols|||
ee98b19
+init_predump_symbols|||
ee98b19
+init_stacks||5.005000|
ee98b19
+init_tm||5.007002|
ee98b19
+inplace_aassign|||
ee98b19
+instr|||n
ee98b19
+intro_my||5.004000|
ee98b19
+intuit_method|||
ee98b19
+intuit_more|||
ee98b19
+invert|||
ee98b19
+invlist_array|||n
ee98b19
+invlist_clear|||
ee98b19
+invlist_clone|||
ee98b19
+invlist_contents|||
ee98b19
+invlist_extend|||
ee98b19
+invlist_highest|||n
ee98b19
+invlist_is_iterating|||n
ee98b19
+invlist_iterfinish|||n
ee98b19
+invlist_iterinit|||n
ee98b19
+invlist_iternext|||n
ee98b19
+invlist_max|||n
ee98b19
+invlist_previous_index|||n
ee98b19
+invlist_replace_list_destroys_src|||
ee98b19
+invlist_set_len|||
ee98b19
+invlist_set_previous_index|||n
ee98b19
+invlist_trim|||n
ee98b19
+invoke_exception_hook|||
ee98b19
+io_close|||
ee98b19
+isALNUMC|5.006000||p
ee98b19
+isALNUM_lazy||5.021001|
ee98b19
+isALPHANUMERIC||5.017008|
ee98b19
+isALPHA|||
ee98b19
+isASCII|5.006000||p
ee98b19
+isBLANK|5.006001||p
ee98b19
+isCNTRL|5.006000||p
ee98b19
+isDIGIT|||
ee98b19
+isFOO_lc|||
ee98b19
+isFOO_utf8_lc|||
ee98b19
+isGCB|||n
ee98b19
+isGRAPH|5.006000||p
ee98b19
+isIDCONT||5.017008|
ee98b19
+isIDFIRST_lazy||5.021001|
ee98b19
+isIDFIRST|||
ee98b19
+isLB|||
ee98b19
+isLOWER|||
ee98b19
+isOCTAL||5.013005|
ee98b19
+isPRINT|5.004000||p
ee98b19
+isPSXSPC|5.006001||p
ee98b19
+isPUNCT|5.006000||p
ee98b19
+isSB|||
ee98b19
+isSPACE|||
ee98b19
+isUPPER|||
ee98b19
+isUTF8_CHAR||5.021001|
ee98b19
+isWB|||
ee98b19
+isWORDCHAR||5.013006|
ee98b19
+isXDIGIT|5.006000||p
ee98b19
+is_an_int|||
ee98b19
+is_ascii_string||5.011000|
ee98b19
+is_handle_constructor|||n
ee98b19
+is_invariant_string||5.021007|n
ee98b19
+is_lvalue_sub||5.007001|
ee98b19
+is_safe_syscall||5.019004|
ee98b19
+is_ssc_worth_it|||n
ee98b19
+is_uni_alnum_lc||5.006000|
ee98b19
+is_uni_alnumc_lc||5.017007|
ee98b19
+is_uni_alnumc||5.017007|
ee98b19
+is_uni_alnum||5.006000|
ee98b19
+is_uni_alpha_lc||5.006000|
ee98b19
+is_uni_alpha||5.006000|
ee98b19
+is_uni_ascii_lc||5.006000|
ee98b19
+is_uni_ascii||5.006000|
ee98b19
+is_uni_blank_lc||5.017002|
ee98b19
+is_uni_blank||5.017002|
ee98b19
+is_uni_cntrl_lc||5.006000|
ee98b19
+is_uni_cntrl||5.006000|
ee98b19
+is_uni_digit_lc||5.006000|
ee98b19
+is_uni_digit||5.006000|
ee98b19
+is_uni_graph_lc||5.006000|
ee98b19
+is_uni_graph||5.006000|
ee98b19
+is_uni_idfirst_lc||5.006000|
ee98b19
+is_uni_idfirst||5.006000|
ee98b19
+is_uni_lower_lc||5.006000|
ee98b19
+is_uni_lower||5.006000|
ee98b19
+is_uni_print_lc||5.006000|
ee98b19
+is_uni_print||5.006000|
ee98b19
+is_uni_punct_lc||5.006000|
ee98b19
+is_uni_punct||5.006000|
ee98b19
+is_uni_space_lc||5.006000|
ee98b19
+is_uni_space||5.006000|
ee98b19
+is_uni_upper_lc||5.006000|
ee98b19
+is_uni_upper||5.006000|
ee98b19
+is_uni_xdigit_lc||5.006000|
ee98b19
+is_uni_xdigit||5.006000|
ee98b19
+is_utf8_alnumc||5.017007|
ee98b19
+is_utf8_alnum||5.006000|
ee98b19
+is_utf8_alpha||5.006000|
ee98b19
+is_utf8_ascii||5.006000|
ee98b19
+is_utf8_blank||5.017002|
ee98b19
+is_utf8_char_buf||5.015008|n
ee98b19
+is_utf8_char||5.006000|n
ee98b19
+is_utf8_cntrl||5.006000|
ee98b19
+is_utf8_common|||
ee98b19
+is_utf8_digit||5.006000|
ee98b19
+is_utf8_graph||5.006000|
ee98b19
+is_utf8_idcont||5.008000|
ee98b19
+is_utf8_idfirst||5.006000|
ee98b19
+is_utf8_lower||5.006000|
ee98b19
+is_utf8_mark||5.006000|
ee98b19
+is_utf8_perl_space||5.011001|
ee98b19
+is_utf8_perl_word||5.011001|
ee98b19
+is_utf8_posix_digit||5.011001|
ee98b19
+is_utf8_print||5.006000|
ee98b19
+is_utf8_punct||5.006000|
ee98b19
+is_utf8_space||5.006000|
ee98b19
+is_utf8_string_loclen||5.009003|n
ee98b19
+is_utf8_string_loc||5.008001|n
ee98b19
+is_utf8_string||5.006001|n
ee98b19
+is_utf8_upper||5.006000|
ee98b19
+is_utf8_xdigit||5.006000|
ee98b19
+is_utf8_xidcont||5.013010|
ee98b19
+is_utf8_xidfirst||5.013010|
ee98b19
+isa_lookup|||
ee98b19
+isinfnansv|||
ee98b19
+isinfnan||5.021004|n
ee98b19
+items|||n
ee98b19
+ix|||n
ee98b19
+jmaybe|||
ee98b19
+join_exact|||
ee98b19
+keyword_plugin_standard|||
ee98b19
+keyword|||
ee98b19
+leave_adjust_stacks||5.023008|
ee98b19
+leave_scope|||
ee98b19
+lex_bufutf8||5.011002|
ee98b19
+lex_discard_to||5.011002|
ee98b19
+lex_grow_linestr||5.011002|
ee98b19
+lex_next_chunk||5.011002|
ee98b19
+lex_peek_unichar||5.011002|
ee98b19
+lex_read_space||5.011002|
ee98b19
+lex_read_to||5.011002|
ee98b19
+lex_read_unichar||5.011002|
ee98b19
+lex_start||5.009005|
ee98b19
+lex_stuff_pvn||5.011002|
ee98b19
+lex_stuff_pvs||5.013005|
ee98b19
+lex_stuff_pv||5.013006|
ee98b19
+lex_stuff_sv||5.011002|
ee98b19
+lex_unstuff||5.011002|
ee98b19
+listkids|||
ee98b19
+list|||
ee98b19
+load_module_nocontext|||vn
ee98b19
+load_module|5.006000||pv
ee98b19
+localize|||
ee98b19
+looks_like_bool|||
ee98b19
+looks_like_number|||
ee98b19
+lop|||
ee98b19
+mPUSHi|5.009002||p
ee98b19
+mPUSHn|5.009002||p
ee98b19
+mPUSHp|5.009002||p
ee98b19
+mPUSHs|5.010001||p
ee98b19
+mPUSHu|5.009002||p
ee98b19
+mXPUSHi|5.009002||p
ee98b19
+mXPUSHn|5.009002||p
ee98b19
+mXPUSHp|5.009002||p
ee98b19
+mXPUSHs|5.010001||p
ee98b19
+mXPUSHu|5.009002||p
ee98b19
+magic_clear_all_env|||
ee98b19
+magic_cleararylen_p|||
ee98b19
+magic_clearenv|||
ee98b19
+magic_clearhints|||
ee98b19
+magic_clearhint|||
ee98b19
+magic_clearisa|||
ee98b19
+magic_clearpack|||
ee98b19
+magic_clearsig|||
ee98b19
+magic_copycallchecker|||
ee98b19
+magic_dump||5.006000|
ee98b19
+magic_existspack|||
ee98b19
+magic_freearylen_p|||
ee98b19
+magic_freeovrld|||
ee98b19
+magic_getarylen|||
ee98b19
+magic_getdebugvar|||
ee98b19
+magic_getdefelem|||
ee98b19
+magic_getnkeys|||
ee98b19
+magic_getpack|||
ee98b19
+magic_getpos|||
ee98b19
+magic_getsig|||
ee98b19
+magic_getsubstr|||
ee98b19
+magic_gettaint|||
ee98b19
+magic_getuvar|||
ee98b19
+magic_getvec|||
ee98b19
+magic_get|||
ee98b19
+magic_killbackrefs|||
ee98b19
+magic_methcall1|||
ee98b19
+magic_methcall|||v
ee98b19
+magic_methpack|||
ee98b19
+magic_nextpack|||