summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-10-08 16:13:38 +0100
committerNicholas Clark <nick@ccl4.org>2010-10-08 16:58:10 +0100
commit379a89070cf5bdcfa33b12551d2c9ef0a3e11418 (patch)
treecb9b0b65bb4e6d39f6ab346c09997551637e148f /util.c
parent88c4b02d8afbe13e65dd6f677f5056354ec301cb (diff)
downloadperl-379a89070cf5bdcfa33b12551d2c9ef0a3e11418.tar.gz
Convert the implementation of XS_APIVERSION_BOOTCHECK to a function.
The previous macro generated over .5K of object code. This is in every shared object, and is only called once. Hence this change increases the perl binary by about .5K (once), to save .5K for every XS module loaded.
Diffstat (limited to 'util.c')
-rw-r--r--util.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/util.c b/util.c
index 427f053a79..9375bd2789 100644
--- a/util.c
+++ b/util.c
@@ -6514,6 +6514,31 @@ Perl_xs_version_bootcheck(pTHX_ U32 items, U32 ax, const char *xs_p,
}
}
+void
+Perl_xs_apiversion_bootcheck(pTHX_ SV *module, const char *api_p,
+ STRLEN api_len)
+{
+ SV *xpt = NULL;
+ SV *compver = Perl_newSVpvn(aTHX_ api_p, api_len);
+ SV *runver = new_version(PL_apiversion);
+
+ PERL_ARGS_ASSERT_XS_APIVERSION_BOOTCHECK;
+
+ compver = upg_version(compver, 0);
+ if (vcmp(compver, runver)) {
+ xpt = Perl_newSVpvf(aTHX_ "Perl API version %"SVf
+ " of %s does not match %"SVf,
+ SVfARG(Perl_sv_2mortal(aTHX_ vstringify(compver))),
+ SvPV_nolen_const(module),
+ SVfARG(Perl_sv_2mortal(aTHX_ vstringify(runver))));
+ Perl_sv_2mortal(aTHX_ xpt);
+ }
+ SvREFCNT_dec(compver);
+ SvREFCNT_dec(runver);
+ if (xpt)
+ Perl_croak_sv(aTHX_ xpt);
+}
+
#ifndef HAS_STRLCAT
Size_t
Perl_my_strlcat(char *dst, const char *src, Size_t size)