Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char* xend
[p5sagit/p5-mst-13.2.git] / universal.c
CommitLineData
d6376244 1/* universal.c
2 *
b5f8cc5c 3 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
fdf8c088 4 * 2005, 2006, 2007 by Larry Wall and others
d6376244 5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
d31a8517 11/*
12 * "The roots of those mountains must be roots indeed; there must be
13 * great secrets buried there which have not been discovered since the
14 * beginning." --Gandalf, relating Gollum's story
15 */
16
166f8a29 17/* This file contains the code that implements the functions in Perl's
18 * UNIVERSAL package, such as UNIVERSAL->can().
19 */
20
6d4a7be2 21#include "EXTERN.h"
864dbfa3 22#define PERL_IN_UNIVERSAL_C
6d4a7be2 23#include "perl.h"
6d4a7be2 24
39f7a870 25#ifdef USE_PERLIO
26#include "perliol.h" /* For the PERLIO_F_XXX */
27#endif
28
6d4a7be2 29/*
30 * Contributed by Graham Barr <Graham.Barr@tiuk.ti.com>
31 * The main guts of traverse_isa was actually copied from gv_fetchmeth
32 */
33
a9ec700e 34STATIC bool
34692224 35S_isa_lookup(pTHX_ HV *stash, const char *name, const HV* const name_stash,
301daebc 36 int len, int level)
6d4a7be2 37{
97aff369 38 dVAR;
e1a479c5 39 AV* stash_linear_isa;
40 SV** svp;
bfcb3514 41 const char *hvname;
e1a479c5 42 I32 items;
43 PERL_UNUSED_ARG(len);
44 PERL_UNUSED_ARG(level);
6d4a7be2 45
301daebc 46 /* A stash/class can go by many names (ie. User == main::User), so
47 we compare the stash itself just in case */
34692224 48 if (name_stash && ((const HV *)stash == name_stash))
a9ec700e 49 return TRUE;
6d4a7be2 50
bfcb3514 51 hvname = HvNAME_get(stash);
52
53 if (strEQ(hvname, name))
a9ec700e 54 return TRUE;
6d4a7be2 55
a1d407e8 56 if (strEQ(name, "UNIVERSAL"))
a9ec700e 57 return TRUE;
a1d407e8 58
e1a479c5 59 stash_linear_isa = mro_get_linear_isa(stash);
60 svp = AvARRAY(stash_linear_isa) + 1;
61 items = AvFILLp(stash_linear_isa);
62 while (items--) {
63 SV* const basename_sv = *svp++;
64 HV* basestash = gv_stashsv(basename_sv, 0);
e62fbf8b 65 if (!basestash || (HvMROMETA(basestash)->fake && !HvFILL(basestash))) {
b0c482e3 66 if (ckWARN(WARN_SYNTAX))
e1a479c5 67 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
68 "Can't locate package %"SVf" for the parents of %s",
69 SVfARG(basename_sv), hvname);
70 continue;
46e4b22b 71 }
e1a479c5 72 if(name_stash == basestash || strEQ(name, SvPVX(basename_sv)))
73 return TRUE;
6d4a7be2 74 }
75
a9ec700e 76 return FALSE;
6d4a7be2 77}
78
954c1994 79/*
ccfc67b7 80=head1 SV Manipulation Functions
81
954c1994 82=for apidoc sv_derived_from
83
6885da0e 84Returns a boolean indicating whether the SV is derived from the specified class
85I<at the C level>. To check derivation at the Perl level, call C<isa()> as a
86normal Perl method.
954c1994 87
88=cut
89*/
90
55497cff 91bool
864dbfa3 92Perl_sv_derived_from(pTHX_ SV *sv, const char *name)
55497cff 93{
97aff369 94 dVAR;
0b6f4f5c 95 HV *stash;
46e4b22b 96
5b295bef 97 SvGETMAGIC(sv);
55497cff 98
99 if (SvROK(sv)) {
0b6f4f5c 100 const char *type;
55497cff 101 sv = SvRV(sv);
102 type = sv_reftype(sv,0);
0b6f4f5c 103 if (type && strEQ(type,name))
104 return TRUE;
105 stash = SvOBJECT(sv) ? SvSTASH(sv) : NULL;
55497cff 106 }
107 else {
da51bb9b 108 stash = gv_stashsv(sv, 0);
55497cff 109 }
46e4b22b 110
0b6f4f5c 111 if (stash) {
da51bb9b 112 HV * const name_stash = gv_stashpv(name, 0);
a9ec700e 113 return isa_lookup(stash, name, name_stash, strlen(name), 0);
0b6f4f5c 114 }
115 else
116 return FALSE;
301daebc 117
55497cff 118}
119
cbc021f9 120/*
121=for apidoc sv_does
122
123Returns a boolean indicating whether the SV performs a specific, named role.
124The SV can be a Perl object or the name of a Perl class.
125
126=cut
127*/
128
1b026014 129#include "XSUB.h"
130
cbc021f9 131bool
132Perl_sv_does(pTHX_ SV *sv, const char *name)
133{
134 const char *classname;
135 bool does_it;
59e7186f 136 SV *methodname;
cbc021f9 137
138 dSP;
139 ENTER;
140 SAVETMPS;
141
142 SvGETMAGIC(sv);
143
144 if (!SvOK(sv) || !(SvROK(sv) || (SvPOK(sv) && SvCUR(sv))
145 || (SvGMAGICAL(sv) && SvPOKp(sv) && SvCUR(sv))))
146 return FALSE;
147
148 if (sv_isobject(sv)) {
149 classname = sv_reftype(SvRV(sv),TRUE);
150 } else {
94707740 151 classname = SvPV_nolen(sv);
cbc021f9 152 }
153
154 if (strEQ(name,classname))
155 return TRUE;
156
157 PUSHMARK(SP);
158 XPUSHs(sv);
159 XPUSHs(sv_2mortal(newSVpv(name, 0)));
160 PUTBACK;
161
59e7186f 162 methodname = sv_2mortal(newSVpv("isa", 0));
163 /* ugly hack: use the SvSCREAM flag so S_method_common
164 * can figure out we're calling DOES() and not isa(),
165 * and report eventual errors correctly. --rgs */
166 SvSCREAM_on(methodname);
167 call_sv(methodname, G_SCALAR | G_METHOD);
cbc021f9 168 SPAGAIN;
169
170 does_it = SvTRUE( TOPs );
171 FREETMPS;
172 LEAVE;
173
174 return does_it;
175}
176
80305961 177regexp *
178Perl_get_re_arg( pTHX_ SV *sv, U32 flags, MAGIC **mgp) {
179 MAGIC *mg;
180 if (sv) {
181 if (SvMAGICAL(sv))
182 mg_get(sv);
183 if (SvROK(sv) &&
184 (sv = (SV*)SvRV(sv)) && /* assign deliberate */
185 SvTYPE(sv) == SVt_PVMG &&
186 (mg = mg_find(sv, PERL_MAGIC_qr))) /* assign deliberate */
187 {
188 if (mgp) *mgp = mg;
189 return (regexp *)mg->mg_obj;
190 }
191 }
192 if (mgp) *mgp = NULL;
193 return ((flags && PL_curpm) ? PM_GETRE(PL_curpm) : NULL);
194}
195
196
27da23d5 197PERL_XS_EXPORT_C void XS_UNIVERSAL_isa(pTHX_ CV *cv);
198PERL_XS_EXPORT_C void XS_UNIVERSAL_can(pTHX_ CV *cv);
cbc021f9 199PERL_XS_EXPORT_C void XS_UNIVERSAL_DOES(pTHX_ CV *cv);
27da23d5 200PERL_XS_EXPORT_C void XS_UNIVERSAL_VERSION(pTHX_ CV *cv);
439cb1c4 201XS(XS_version_new);
202XS(XS_version_stringify);
203XS(XS_version_numify);
9137345a 204XS(XS_version_normal);
439cb1c4 205XS(XS_version_vcmp);
206XS(XS_version_boolean);
2dfd8427 207#ifdef HASATTRIBUTE_NORETURN
208XS(XS_version_noop) __attribute__noreturn__;
209#else
439cb1c4 210XS(XS_version_noop);
2dfd8427 211#endif
c8d69e4a 212XS(XS_version_is_alpha);
137d6fc0 213XS(XS_version_qv);
8800c35a 214XS(XS_utf8_is_utf8);
1b026014 215XS(XS_utf8_valid);
216XS(XS_utf8_encode);
217XS(XS_utf8_decode);
218XS(XS_utf8_upgrade);
219XS(XS_utf8_downgrade);
220XS(XS_utf8_unicode_to_native);
221XS(XS_utf8_native_to_unicode);
29569577 222XS(XS_Internals_SvREADONLY);
223XS(XS_Internals_SvREFCNT);
f044d0d1 224XS(XS_Internals_hv_clear_placehold);
39f7a870 225XS(XS_PerlIO_get_layers);
39cff0d9 226XS(XS_Regexp_DESTROY);
9a7034eb 227XS(XS_Internals_hash_seed);
008fb0c0 228XS(XS_Internals_rehash_seed);
05619474 229XS(XS_Internals_HvREHASH);
e1234d8e 230XS(XS_Internals_inc_sub_generation);
80305961 231XS(XS_re_is_regexp);
232XS(XS_re_regname);
233XS(XS_re_regnames);
234XS(XS_re_regnames_iterinit);
235XS(XS_re_regnames_iternext);
236XS(XS_re_regnames_count);
0cb96387 237
238void
239Perl_boot_core_UNIVERSAL(pTHX)
240{
97aff369 241 dVAR;
157e3fc8 242 static const char file[] = __FILE__;
0cb96387 243
244 newXS("UNIVERSAL::isa", XS_UNIVERSAL_isa, file);
245 newXS("UNIVERSAL::can", XS_UNIVERSAL_can, file);
cbc021f9 246 newXS("UNIVERSAL::DOES", XS_UNIVERSAL_DOES, file);
0cb96387 247 newXS("UNIVERSAL::VERSION", XS_UNIVERSAL_VERSION, file);
439cb1c4 248 {
ad63d80f 249 /* register the overloading (type 'A') magic */
250 PL_amagic_generation++;
439cb1c4 251 /* Make it findable via fetchmethod */
be2ebcad 252 newXS("version::()", XS_version_noop, file);
439cb1c4 253 newXS("version::new", XS_version_new, file);
254 newXS("version::(\"\"", XS_version_stringify, file);
255 newXS("version::stringify", XS_version_stringify, file);
256 newXS("version::(0+", XS_version_numify, file);
257 newXS("version::numify", XS_version_numify, file);
9137345a 258 newXS("version::normal", XS_version_normal, file);
439cb1c4 259 newXS("version::(cmp", XS_version_vcmp, file);
260 newXS("version::(<=>", XS_version_vcmp, file);
261 newXS("version::vcmp", XS_version_vcmp, file);
262 newXS("version::(bool", XS_version_boolean, file);
263 newXS("version::boolean", XS_version_boolean, file);
264 newXS("version::(nomethod", XS_version_noop, file);
265 newXS("version::noop", XS_version_noop, file);
c8d69e4a 266 newXS("version::is_alpha", XS_version_is_alpha, file);
137d6fc0 267 newXS("version::qv", XS_version_qv, file);
439cb1c4 268 }
8800c35a 269 newXS("utf8::is_utf8", XS_utf8_is_utf8, file);
1b026014 270 newXS("utf8::valid", XS_utf8_valid, file);
271 newXS("utf8::encode", XS_utf8_encode, file);
272 newXS("utf8::decode", XS_utf8_decode, file);
273 newXS("utf8::upgrade", XS_utf8_upgrade, file);
274 newXS("utf8::downgrade", XS_utf8_downgrade, file);
275 newXS("utf8::native_to_unicode", XS_utf8_native_to_unicode, file);
276 newXS("utf8::unicode_to_native", XS_utf8_unicode_to_native, file);
29569577 277 newXSproto("Internals::SvREADONLY",XS_Internals_SvREADONLY, file, "\\[$%@];$");
278 newXSproto("Internals::SvREFCNT",XS_Internals_SvREFCNT, file, "\\[$%@];$");
dfd4ef2f 279 newXSproto("Internals::hv_clear_placeholders",
f044d0d1 280 XS_Internals_hv_clear_placehold, file, "\\%");
9d569fce 281 newXSproto("PerlIO::get_layers",
282 XS_PerlIO_get_layers, file, "*;@");
39cff0d9 283 newXS("Regexp::DESTROY", XS_Regexp_DESTROY, file);
9a7034eb 284 newXSproto("Internals::hash_seed",XS_Internals_hash_seed, file, "");
008fb0c0 285 newXSproto("Internals::rehash_seed",XS_Internals_rehash_seed, file, "");
05619474 286 newXSproto("Internals::HvREHASH", XS_Internals_HvREHASH, file, "\\%");
80305961 287 newXSproto("re::is_regexp", XS_re_is_regexp, file, "$");
28d8d7f4 288 newXSproto("re::regname", XS_re_regname, file, ";$$");
289 newXSproto("re::regnames", XS_re_regnames, file, ";$");
290 newXSproto("re::regnames_iterinit", XS_re_regnames_iterinit, file, "");
291 newXSproto("re::regnames_iternext", XS_re_regnames_iternext, file, ";$");
292 newXSproto("re::regnames_count", XS_re_regnames_count, file, "");
0cb96387 293}
294
55497cff 295
6d4a7be2 296XS(XS_UNIVERSAL_isa)
297{
97aff369 298 dVAR;
6d4a7be2 299 dXSARGS;
58c0efa5 300 PERL_UNUSED_ARG(cv);
6d4a7be2 301
302 if (items != 2)
cea2e8a9 303 Perl_croak(aTHX_ "Usage: UNIVERSAL::isa(reference, kind)");
c4420975 304 else {
305 SV * const sv = ST(0);
306 const char *name;
6d4a7be2 307
c4420975 308 SvGETMAGIC(sv);
d3f7f2b2 309
c4420975 310 if (!SvOK(sv) || !(SvROK(sv) || (SvPOK(sv) && SvCUR(sv))
311 || (SvGMAGICAL(sv) && SvPOKp(sv) && SvCUR(sv))))
312 XSRETURN_UNDEF;
f8f70380 313
c4420975 314 name = SvPV_nolen_const(ST(1));
6d4a7be2 315
c4420975 316 ST(0) = boolSV(sv_derived_from(sv, name));
317 XSRETURN(1);
318 }
6d4a7be2 319}
320
6d4a7be2 321XS(XS_UNIVERSAL_can)
322{
97aff369 323 dVAR;
6d4a7be2 324 dXSARGS;
325 SV *sv;
6867be6d 326 const char *name;
6d4a7be2 327 SV *rv;
6f08146e 328 HV *pkg = NULL;
58c0efa5 329 PERL_UNUSED_ARG(cv);
6d4a7be2 330
331 if (items != 2)
cea2e8a9 332 Perl_croak(aTHX_ "Usage: UNIVERSAL::can(object-ref, method)");
6d4a7be2 333
334 sv = ST(0);
f8f70380 335
5b295bef 336 SvGETMAGIC(sv);
d3f7f2b2 337
253ecd6d 338 if (!SvOK(sv) || !(SvROK(sv) || (SvPOK(sv) && SvCUR(sv))
339 || (SvGMAGICAL(sv) && SvPOKp(sv) && SvCUR(sv))))
f8f70380 340 XSRETURN_UNDEF;
341
0510663f 342 name = SvPV_nolen_const(ST(1));
3280af22 343 rv = &PL_sv_undef;
6d4a7be2 344
46e4b22b 345 if (SvROK(sv)) {
6f08146e 346 sv = (SV*)SvRV(sv);
46e4b22b 347 if (SvOBJECT(sv))
6f08146e 348 pkg = SvSTASH(sv);
349 }
350 else {
da51bb9b 351 pkg = gv_stashsv(sv, 0);
6f08146e 352 }
353
354 if (pkg) {
c4420975 355 GV * const gv = gv_fetchmethod_autoload(pkg, name, FALSE);
dc848c6f 356 if (gv && isGV(gv))
357 rv = sv_2mortal(newRV((SV*)GvCV(gv)));
6d4a7be2 358 }
359
360 ST(0) = rv;
361 XSRETURN(1);
362}
363
cbc021f9 364XS(XS_UNIVERSAL_DOES)
365{
366 dVAR;
367 dXSARGS;
58c0efa5 368 PERL_UNUSED_ARG(cv);
cbc021f9 369
370 if (items != 2)
26be3db7 371 Perl_croak(aTHX_ "Usage: invocant->DOES(kind)");
cbc021f9 372 else {
373 SV * const sv = ST(0);
374 const char *name;
375
376 name = SvPV_nolen_const(ST(1));
377 if (sv_does( sv, name ))
378 XSRETURN_YES;
379
380 XSRETURN_NO;
381 }
382}
383
6d4a7be2 384XS(XS_UNIVERSAL_VERSION)
385{
97aff369 386 dVAR;
6d4a7be2 387 dXSARGS;
388 HV *pkg;
389 GV **gvp;
390 GV *gv;
391 SV *sv;
e1ec3a88 392 const char *undef;
58c0efa5 393 PERL_UNUSED_ARG(cv);
6d4a7be2 394
1571675a 395 if (SvROK(ST(0))) {
6d4a7be2 396 sv = (SV*)SvRV(ST(0));
1571675a 397 if (!SvOBJECT(sv))
cea2e8a9 398 Perl_croak(aTHX_ "Cannot find version of an unblessed reference");
6d4a7be2 399 pkg = SvSTASH(sv);
400 }
401 else {
da51bb9b 402 pkg = gv_stashsv(ST(0), 0);
6d4a7be2 403 }
404
4608196e 405 gvp = pkg ? (GV**)hv_fetchs(pkg, "VERSION", FALSE) : NULL;
6d4a7be2 406
0008872a 407 if (gvp && isGV(gv = *gvp) && (sv = GvSV(gv)) && SvOK(sv)) {
c4420975 408 SV * const nsv = sv_newmortal();
6d4a7be2 409 sv_setsv(nsv, sv);
410 sv = nsv;
137d6fc0 411 if ( !sv_derived_from(sv, "version"))
ac0e6a2f 412 upg_version(sv, FALSE);
c445ea15 413 undef = NULL;
6d4a7be2 414 }
415 else {
3280af22 416 sv = (SV*)&PL_sv_undef;
6d4a7be2 417 undef = "(undef)";
418 }
419
1571675a 420 if (items > 1) {
1571675a 421 SV *req = ST(1);
422
62658f4d 423 if (undef) {
bfcb3514 424 if (pkg) {
c4420975 425 const char * const name = HvNAME_get(pkg);
a3b680e6 426 Perl_croak(aTHX_
bfcb3514 427 "%s does not define $%s::VERSION--version check failed",
428 name, name);
429 } else {
a3b680e6 430 Perl_croak(aTHX_
431 "%s defines neither package nor VERSION--version check failed",
0510663f 432 SvPVx_nolen_const(ST(0)) );
62658f4d 433 }
434 }
ad63d80f 435
137d6fc0 436 if ( !sv_derived_from(req, "version")) {
437 /* req may very well be R/O, so create a new object */
ac0e6a2f 438 req = sv_2mortal( new_version(req) );
137d6fc0 439 }
1571675a 440
ac0e6a2f 441 if ( vcmp( req, sv ) > 0 ) {
442 if ( hv_exists((HV*)SvRV(req), "qv", 2 ) ) {
443 Perl_croak(aTHX_ "%s version %"SVf" required--"
444 "this is only version %"SVf"", HvNAME_get(pkg),
be2597df 445 SVfARG(vnormal(req)),
be2597df 446 SVfARG(vnormal(sv)));
ac0e6a2f 447 } else {
448 Perl_croak(aTHX_ "%s version %"SVf" required--"
449 "this is only version %"SVf"", HvNAME_get(pkg),
8cb289bd 450 SVfARG(vstringify(req)),
451 SVfARG(vstringify(sv)));
ac0e6a2f 452 }
453 }
454
2d8e6c8d 455 }
6d4a7be2 456
2b140d5b 457 if ( SvOK(sv) && sv_derived_from(sv, "version") ) {
8cb289bd 458 ST(0) = vstringify(sv);
13f8f398 459 } else {
460 ST(0) = sv;
b38a9dc5 461 }
6d4a7be2 462
463 XSRETURN(1);
464}
465
439cb1c4 466XS(XS_version_new)
467{
97aff369 468 dVAR;
439cb1c4 469 dXSARGS;
58c0efa5 470 PERL_UNUSED_ARG(cv);
129318bd 471 if (items > 3)
439cb1c4 472 Perl_croak(aTHX_ "Usage: version::new(class, version)");
473 SP -= items;
474 {
137d6fc0 475 SV *vs = ST(1);
476 SV *rv;
c4420975 477 const char * const classname =
478 sv_isobject(ST(0)) /* get the class if called as an object method */
479 ? HvNAME(SvSTASH(SvRV(ST(0))))
480 : (char *)SvPV_nolen(ST(0));
9137345a 481
92dcf8ce 482 if ( items == 1 || vs == &PL_sv_undef ) { /* no param or explicit undef */
483 /* create empty object */
484 vs = sv_newmortal();
485 sv_setpvn(vs,"",0);
9137345a 486 }
487 else if ( items == 3 ) {
488 vs = sv_newmortal();
cfd0369c 489 Perl_sv_setpvf(aTHX_ vs,"v%s",SvPV_nolen_const(ST(2)));
129318bd 490 }
439cb1c4 491
137d6fc0 492 rv = new_version(vs);
0723351e 493 if ( strcmp(classname,"version") != 0 ) /* inherited new() */
da51bb9b 494 sv_bless(rv, gv_stashpv(classname, GV_ADD));
137d6fc0 495
496 PUSHs(sv_2mortal(rv));
439cb1c4 497 PUTBACK;
498 return;
499 }
500}
501
502XS(XS_version_stringify)
503{
97aff369 504 dVAR;
41be1fbd 505 dXSARGS;
58c0efa5 506 PERL_UNUSED_ARG(cv);
41be1fbd 507 if (items < 1)
508 Perl_croak(aTHX_ "Usage: version::stringify(lobj, ...)");
509 SP -= items;
510 {
7452cf6a 511 SV * lobj;
41be1fbd 512
513 if (sv_derived_from(ST(0), "version")) {
9137345a 514 lobj = SvRV(ST(0));
41be1fbd 515 }
516 else
517 Perl_croak(aTHX_ "lobj is not of type version");
518
137d6fc0 519 PUSHs(sv_2mortal(vstringify(lobj)));
41be1fbd 520
521 PUTBACK;
522 return;
523 }
439cb1c4 524}
525
526XS(XS_version_numify)
527{
97aff369 528 dVAR;
41be1fbd 529 dXSARGS;
58c0efa5 530 PERL_UNUSED_ARG(cv);
41be1fbd 531 if (items < 1)
532 Perl_croak(aTHX_ "Usage: version::numify(lobj, ...)");
533 SP -= items;
534 {
7452cf6a 535 SV * lobj;
41be1fbd 536
537 if (sv_derived_from(ST(0), "version")) {
9137345a 538 lobj = SvRV(ST(0));
41be1fbd 539 }
540 else
541 Perl_croak(aTHX_ "lobj is not of type version");
542
137d6fc0 543 PUSHs(sv_2mortal(vnumify(lobj)));
41be1fbd 544
545 PUTBACK;
546 return;
547 }
439cb1c4 548}
549
9137345a 550XS(XS_version_normal)
551{
97aff369 552 dVAR;
9137345a 553 dXSARGS;
58c0efa5 554 PERL_UNUSED_ARG(cv);
9137345a 555 if (items < 1)
556 Perl_croak(aTHX_ "Usage: version::normal(lobj, ...)");
557 SP -= items;
558 {
7452cf6a 559 SV * lobj;
9137345a 560
561 if (sv_derived_from(ST(0), "version")) {
562 lobj = SvRV(ST(0));
563 }
564 else
565 Perl_croak(aTHX_ "lobj is not of type version");
566
567 PUSHs(sv_2mortal(vnormal(lobj)));
568
569 PUTBACK;
570 return;
571 }
572}
573
439cb1c4 574XS(XS_version_vcmp)
575{
97aff369 576 dVAR;
41be1fbd 577 dXSARGS;
58c0efa5 578 PERL_UNUSED_ARG(cv);
41be1fbd 579 if (items < 1)
580 Perl_croak(aTHX_ "Usage: version::vcmp(lobj, ...)");
581 SP -= items;
582 {
7452cf6a 583 SV * lobj;
41be1fbd 584
585 if (sv_derived_from(ST(0), "version")) {
9137345a 586 lobj = SvRV(ST(0));
41be1fbd 587 }
588 else
589 Perl_croak(aTHX_ "lobj is not of type version");
590
591 {
592 SV *rs;
593 SV *rvs;
594 SV * robj = ST(1);
7452cf6a 595 const IV swap = (IV)SvIV(ST(2));
41be1fbd 596
597 if ( ! sv_derived_from(robj, "version") )
598 {
599 robj = new_version(robj);
600 }
601 rvs = SvRV(robj);
602
603 if ( swap )
604 {
605 rs = newSViv(vcmp(rvs,lobj));
606 }
607 else
608 {
609 rs = newSViv(vcmp(lobj,rvs));
610 }
611
137d6fc0 612 PUSHs(sv_2mortal(rs));
41be1fbd 613 }
614
615 PUTBACK;
616 return;
617 }
439cb1c4 618}
619
620XS(XS_version_boolean)
621{
97aff369 622 dVAR;
623 dXSARGS;
58c0efa5 624 PERL_UNUSED_ARG(cv);
97aff369 625 if (items < 1)
626 Perl_croak(aTHX_ "Usage: version::boolean(lobj, ...)");
627 SP -= items;
c4420975 628 if (sv_derived_from(ST(0), "version")) {
629 SV * const lobj = SvRV(ST(0));
396482e1 630 SV * const rs = newSViv( vcmp(lobj,new_version(newSVpvs("0"))) );
c4420975 631 PUSHs(sv_2mortal(rs));
632 PUTBACK;
633 return;
634 }
635 else
636 Perl_croak(aTHX_ "lobj is not of type version");
439cb1c4 637}
638
639XS(XS_version_noop)
640{
97aff369 641 dVAR;
2dfd8427 642 dXSARGS;
58c0efa5 643 PERL_UNUSED_ARG(cv);
2dfd8427 644 if (items < 1)
645 Perl_croak(aTHX_ "Usage: version::noop(lobj, ...)");
646 if (sv_derived_from(ST(0), "version"))
647 Perl_croak(aTHX_ "operation not supported with version object");
648 else
649 Perl_croak(aTHX_ "lobj is not of type version");
650#ifndef HASATTRIBUTE_NORETURN
651 XSRETURN_EMPTY;
652#endif
439cb1c4 653}
654
c8d69e4a 655XS(XS_version_is_alpha)
656{
97aff369 657 dVAR;
c8d69e4a 658 dXSARGS;
58c0efa5 659 PERL_UNUSED_ARG(cv);
c8d69e4a 660 if (items != 1)
661 Perl_croak(aTHX_ "Usage: version::is_alpha(lobj)");
662 SP -= items;
c4420975 663 if (sv_derived_from(ST(0), "version")) {
664 SV * const lobj = ST(0);
665 if ( hv_exists((HV*)SvRV(lobj), "alpha", 5 ) )
666 XSRETURN_YES;
667 else
668 XSRETURN_NO;
c8d69e4a 669 PUTBACK;
670 return;
671 }
c4420975 672 else
673 Perl_croak(aTHX_ "lobj is not of type version");
c8d69e4a 674}
675
137d6fc0 676XS(XS_version_qv)
677{
97aff369 678 dVAR;
137d6fc0 679 dXSARGS;
58c0efa5 680 PERL_UNUSED_ARG(cv);
137d6fc0 681 if (items != 1)
682 Perl_croak(aTHX_ "Usage: version::qv(ver)");
683 SP -= items;
684 {
685 SV * ver = ST(0);
c4420975 686 if ( !SvVOK(ver) ) { /* only need to do with if not already v-string */
ac0e6a2f 687 SV * const rv = sv_newmortal();
688 sv_setsv(rv,ver); /* make a duplicate */
689 upg_version(rv, TRUE);
690 PUSHs(rv);
137d6fc0 691 }
692 else
693 {
694 PUSHs(sv_2mortal(new_version(ver)));
695 }
696
697 PUTBACK;
698 return;
699 }
700}
701
8800c35a 702XS(XS_utf8_is_utf8)
703{
97aff369 704 dVAR;
41be1fbd 705 dXSARGS;
58c0efa5 706 PERL_UNUSED_ARG(cv);
41be1fbd 707 if (items != 1)
708 Perl_croak(aTHX_ "Usage: utf8::is_utf8(sv)");
c4420975 709 else {
710 const SV * const sv = ST(0);
711 if (SvUTF8(sv))
712 XSRETURN_YES;
713 else
714 XSRETURN_NO;
41be1fbd 715 }
716 XSRETURN_EMPTY;
8800c35a 717}
718
1b026014 719XS(XS_utf8_valid)
720{
97aff369 721 dVAR;
41be1fbd 722 dXSARGS;
58c0efa5 723 PERL_UNUSED_ARG(cv);
41be1fbd 724 if (items != 1)
725 Perl_croak(aTHX_ "Usage: utf8::valid(sv)");
c4420975 726 else {
727 SV * const sv = ST(0);
728 STRLEN len;
729 const char * const s = SvPV_const(sv,len);
730 if (!SvUTF8(sv) || is_utf8_string((const U8*)s,len))
731 XSRETURN_YES;
732 else
733 XSRETURN_NO;
734 }
41be1fbd 735 XSRETURN_EMPTY;
1b026014 736}
737
738XS(XS_utf8_encode)
739{
97aff369 740 dVAR;
1b026014 741 dXSARGS;
58c0efa5 742 PERL_UNUSED_ARG(cv);
1b026014 743 if (items != 1)
744 Perl_croak(aTHX_ "Usage: utf8::encode(sv)");
c4420975 745 sv_utf8_encode(ST(0));
1b026014 746 XSRETURN_EMPTY;
747}
748
749XS(XS_utf8_decode)
750{
97aff369 751 dVAR;
1b026014 752 dXSARGS;
58c0efa5 753 PERL_UNUSED_ARG(cv);
1b026014 754 if (items != 1)
755 Perl_croak(aTHX_ "Usage: utf8::decode(sv)");
c4420975 756 else {
757 SV * const sv = ST(0);
6867be6d 758 const bool RETVAL = sv_utf8_decode(sv);
1b026014 759 ST(0) = boolSV(RETVAL);
760 sv_2mortal(ST(0));
761 }
762 XSRETURN(1);
763}
764
765XS(XS_utf8_upgrade)
766{
97aff369 767 dVAR;
1b026014 768 dXSARGS;
58c0efa5 769 PERL_UNUSED_ARG(cv);
1b026014 770 if (items != 1)
771 Perl_croak(aTHX_ "Usage: utf8::upgrade(sv)");
c4420975 772 else {
773 SV * const sv = ST(0);
1b026014 774 STRLEN RETVAL;
775 dXSTARG;
776
777 RETVAL = sv_utf8_upgrade(sv);
778 XSprePUSH; PUSHi((IV)RETVAL);
779 }
780 XSRETURN(1);
781}
782
783XS(XS_utf8_downgrade)
784{
97aff369 785 dVAR;
1b026014 786 dXSARGS;
58c0efa5 787 PERL_UNUSED_ARG(cv);
1b026014 788 if (items < 1 || items > 2)
789 Perl_croak(aTHX_ "Usage: utf8::downgrade(sv, failok=0)");
c4420975 790 else {
791 SV * const sv = ST(0);
6867be6d 792 const bool failok = (items < 2) ? 0 : (int)SvIV(ST(1));
793 const bool RETVAL = sv_utf8_downgrade(sv, failok);
1b026014 794
1b026014 795 ST(0) = boolSV(RETVAL);
796 sv_2mortal(ST(0));
797 }
798 XSRETURN(1);
799}
800
801XS(XS_utf8_native_to_unicode)
802{
97aff369 803 dVAR;
1b026014 804 dXSARGS;
6867be6d 805 const UV uv = SvUV(ST(0));
58c0efa5 806 PERL_UNUSED_ARG(cv);
b7953727 807
808 if (items > 1)
809 Perl_croak(aTHX_ "Usage: utf8::native_to_unicode(sv)");
810
1b026014 811 ST(0) = sv_2mortal(newSViv(NATIVE_TO_UNI(uv)));
812 XSRETURN(1);
813}
814
815XS(XS_utf8_unicode_to_native)
816{
97aff369 817 dVAR;
1b026014 818 dXSARGS;
6867be6d 819 const UV uv = SvUV(ST(0));
58c0efa5 820 PERL_UNUSED_ARG(cv);
b7953727 821
822 if (items > 1)
823 Perl_croak(aTHX_ "Usage: utf8::unicode_to_native(sv)");
824
1b026014 825 ST(0) = sv_2mortal(newSViv(UNI_TO_NATIVE(uv)));
826 XSRETURN(1);
827}
828
14a976d6 829XS(XS_Internals_SvREADONLY) /* This is dangerous stuff. */
29569577 830{
97aff369 831 dVAR;
29569577 832 dXSARGS;
c4420975 833 SV * const sv = SvRV(ST(0));
58c0efa5 834 PERL_UNUSED_ARG(cv);
6867be6d 835
29569577 836 if (items == 1) {
837 if (SvREADONLY(sv))
838 XSRETURN_YES;
839 else
840 XSRETURN_NO;
841 }
842 else if (items == 2) {
843 if (SvTRUE(ST(1))) {
844 SvREADONLY_on(sv);
845 XSRETURN_YES;
846 }
847 else {
14a976d6 848 /* I hope you really know what you are doing. */
29569577 849 SvREADONLY_off(sv);
850 XSRETURN_NO;
851 }
852 }
14a976d6 853 XSRETURN_UNDEF; /* Can't happen. */
29569577 854}
855
14a976d6 856XS(XS_Internals_SvREFCNT) /* This is dangerous stuff. */
29569577 857{
97aff369 858 dVAR;
29569577 859 dXSARGS;
c4420975 860 SV * const sv = SvRV(ST(0));
58c0efa5 861 PERL_UNUSED_ARG(cv);
6867be6d 862
29569577 863 if (items == 1)
14a976d6 864 XSRETURN_IV(SvREFCNT(sv) - 1); /* Minus the ref created for us. */
29569577 865 else if (items == 2) {
14a976d6 866 /* I hope you really know what you are doing. */
29569577 867 SvREFCNT(sv) = SvIV(ST(1));
868 XSRETURN_IV(SvREFCNT(sv));
869 }
14a976d6 870 XSRETURN_UNDEF; /* Can't happen. */
29569577 871}
872
f044d0d1 873XS(XS_Internals_hv_clear_placehold)
dfd4ef2f 874{
97aff369 875 dVAR;
dfd4ef2f 876 dXSARGS;
58c0efa5 877 PERL_UNUSED_ARG(cv);
6867be6d 878
3540d4ce 879 if (items != 1)
880 Perl_croak(aTHX_ "Usage: UNIVERSAL::hv_clear_placeholders(hv)");
c4420975 881 else {
882 HV * const hv = (HV *) SvRV(ST(0));
883 hv_clear_placeholders(hv);
884 XSRETURN(0);
885 }
dfd4ef2f 886}
39f7a870 887
39cff0d9 888XS(XS_Regexp_DESTROY)
889{
96a5add6 890 PERL_UNUSED_CONTEXT;
53c1dcc0 891 PERL_UNUSED_ARG(cv);
39cff0d9 892}
893
39f7a870 894XS(XS_PerlIO_get_layers)
895{
97aff369 896 dVAR;
39f7a870 897 dXSARGS;
58c0efa5 898 PERL_UNUSED_ARG(cv);
39f7a870 899 if (items < 1 || items % 2 == 0)
900 Perl_croak(aTHX_ "Usage: PerlIO_get_layers(filehandle[,args])");
5fef3b4a 901#ifdef USE_PERLIO
39f7a870 902 {
903 SV * sv;
904 GV * gv;
905 IO * io;
906 bool input = TRUE;
907 bool details = FALSE;
908
909 if (items > 1) {
c4420975 910 SV * const *svp;
39f7a870 911 for (svp = MARK + 2; svp <= SP; svp += 2) {
c4420975 912 SV * const * const varp = svp;
913 SV * const * const valp = svp + 1;
39f7a870 914 STRLEN klen;
c4420975 915 const char * const key = SvPV_const(*varp, klen);
39f7a870 916
917 switch (*key) {
918 case 'i':
919 if (klen == 5 && memEQ(key, "input", 5)) {
920 input = SvTRUE(*valp);
921 break;
922 }
923 goto fail;
924 case 'o':
925 if (klen == 6 && memEQ(key, "output", 6)) {
926 input = !SvTRUE(*valp);
927 break;
928 }
929 goto fail;
930 case 'd':
931 if (klen == 7 && memEQ(key, "details", 7)) {
932 details = SvTRUE(*valp);
933 break;
934 }
935 goto fail;
936 default:
937 fail:
938 Perl_croak(aTHX_
939 "get_layers: unknown argument '%s'",
940 key);
941 }
942 }
943
944 SP -= (items - 1);
945 }
946
947 sv = POPs;
948 gv = (GV*)sv;
949
950 if (!isGV(sv)) {
951 if (SvROK(sv) && isGV(SvRV(sv)))
952 gv = (GV*)SvRV(sv);
671d49be 953 else if (SvPOKp(sv))
f776e3cd 954 gv = gv_fetchsv(sv, 0, SVt_PVIO);
39f7a870 955 }
956
957 if (gv && (io = GvIO(gv))) {
958 dTARGET;
c4420975 959 AV* const av = PerlIO_get_layers(aTHX_ input ?
39f7a870 960 IoIFP(io) : IoOFP(io));
961 I32 i;
c4420975 962 const I32 last = av_len(av);
39f7a870 963 I32 nitem = 0;
964
965 for (i = last; i >= 0; i -= 3) {
c4420975 966 SV * const * const namsvp = av_fetch(av, i - 2, FALSE);
967 SV * const * const argsvp = av_fetch(av, i - 1, FALSE);
968 SV * const * const flgsvp = av_fetch(av, i, FALSE);
39f7a870 969
c4420975 970 const bool namok = namsvp && *namsvp && SvPOK(*namsvp);
971 const bool argok = argsvp && *argsvp && SvPOK(*argsvp);
972 const bool flgok = flgsvp && *flgsvp && SvIOK(*flgsvp);
39f7a870 973
974 if (details) {
ec3bab8e 975 XPUSHs(namok
976 ? newSVpvn(SvPVX_const(*namsvp), SvCUR(*namsvp))
977 : &PL_sv_undef);
978 XPUSHs(argok
979 ? newSVpvn(SvPVX_const(*argsvp), SvCUR(*argsvp))
980 : &PL_sv_undef);
39f7a870 981 if (flgok)
982 XPUSHi(SvIVX(*flgsvp));
983 else
984 XPUSHs(&PL_sv_undef);
985 nitem += 3;
986 }
987 else {
988 if (namok && argok)
989 XPUSHs(Perl_newSVpvf(aTHX_ "%"SVf"(%"SVf")",
be2597df 990 SVfARG(*namsvp),
991 SVfARG(*argsvp)));
39f7a870 992 else if (namok)
95b63a38 993 XPUSHs(Perl_newSVpvf(aTHX_ "%"SVf,
be2597df 994 SVfARG(*namsvp)));
39f7a870 995 else
996 XPUSHs(&PL_sv_undef);
997 nitem++;
998 if (flgok) {
c4420975 999 const IV flags = SvIVX(*flgsvp);
39f7a870 1000
1001 if (flags & PERLIO_F_UTF8) {
396482e1 1002 XPUSHs(newSVpvs("utf8"));
39f7a870 1003 nitem++;
1004 }
1005 }
1006 }
1007 }
1008
1009 SvREFCNT_dec(av);
1010
1011 XSRETURN(nitem);
1012 }
1013 }
5fef3b4a 1014#endif
39f7a870 1015
1016 XSRETURN(0);
1017}
1018
9a7034eb 1019XS(XS_Internals_hash_seed)
c910b28a 1020{
97aff369 1021 dVAR;
c85d3f85 1022 /* Using dXSARGS would also have dITEM and dSP,
1023 * which define 2 unused local variables. */
557b887a 1024 dAXMARK;
53c1dcc0 1025 PERL_UNUSED_ARG(cv);
ad73156c 1026 PERL_UNUSED_VAR(mark);
81eaca17 1027 XSRETURN_UV(PERL_HASH_SEED);
c910b28a 1028}
1029
008fb0c0 1030XS(XS_Internals_rehash_seed)
8e90d776 1031{
97aff369 1032 dVAR;
8e90d776 1033 /* Using dXSARGS would also have dITEM and dSP,
1034 * which define 2 unused local variables. */
557b887a 1035 dAXMARK;
53c1dcc0 1036 PERL_UNUSED_ARG(cv);
ad73156c 1037 PERL_UNUSED_VAR(mark);
008fb0c0 1038 XSRETURN_UV(PL_rehash_seed);
8e90d776 1039}
1040
05619474 1041XS(XS_Internals_HvREHASH) /* Subject to change */
1042{
97aff369 1043 dVAR;
05619474 1044 dXSARGS;
58c0efa5 1045 PERL_UNUSED_ARG(cv);
05619474 1046 if (SvROK(ST(0))) {
c4420975 1047 const HV * const hv = (HV *) SvRV(ST(0));
05619474 1048 if (items == 1 && SvTYPE(hv) == SVt_PVHV) {
1049 if (HvREHASH(hv))
1050 XSRETURN_YES;
1051 else
1052 XSRETURN_NO;
1053 }
1054 }
1055 Perl_croak(aTHX_ "Internals::HvREHASH $hashref");
1056}
241d1a3b 1057
80305961 1058XS(XS_re_is_regexp)
1059{
1060 dVAR;
1061 dXSARGS;
1062 if (items != 1)
1063 Perl_croak(aTHX_ "Usage: %s(%s)", "re::is_regexp", "sv");
1064 PERL_UNUSED_VAR(cv); /* -W */
1065 PERL_UNUSED_VAR(ax); /* -Wall */
1066 SP -= items;
1067 {
1068 SV * sv = ST(0);
1069 if ( Perl_get_re_arg( aTHX_ sv, 0, NULL ) )
1070 {
1071 XSRETURN_YES;
1072 } else {
1073 XSRETURN_NO;
1074 }
1075 /* NOTREACHED */
1076 PUTBACK;
1077 return;
1078 }
1079}
1080
1081XS(XS_re_regname)
1082{
1083
1084 dVAR;
1085 dXSARGS;
28d8d7f4 1086 if (items < 1 || items > 2)
1087 Perl_croak(aTHX_ "Usage: %s(%s)", "re::regname", "name[, all ]");
80305961 1088 PERL_UNUSED_VAR(cv); /* -W */
1089 PERL_UNUSED_VAR(ax); /* -Wall */
1090 SP -= items;
1091 {
1092 SV * sv = ST(0);
80305961 1093 SV * all;
28d8d7f4 1094 regexp *re = PL_curpm ? PM_GETRE(PL_curpm) : NULL;
80305961 1095 SV *bufs = NULL;
1096
1097 if (items < 2)
80305961 1098 all = NULL;
1099 else {
28d8d7f4 1100 all = ST(1);
80305961 1101 }
1102 {
80305961 1103 if (SvPOK(sv) && re && re->paren_names) {
1104 bufs = CALLREG_NAMEDBUF(re,sv,all && SvTRUE(all));
1105 if (bufs) {
1106 if (all && SvTRUE(all))
1107 XPUSHs(newRV(bufs));
1108 else
1109 XPUSHs(SvREFCNT_inc(bufs));
1110 XSRETURN(1);
1111 }
1112 }
1113 XSRETURN_UNDEF;
1114 }
1115 PUTBACK;
1116 return;
1117 }
1118}
1119
1120XS(XS_re_regnames)
1121{
1122 dVAR;
1123 dXSARGS;
28d8d7f4 1124 if (items < 0 || items > 1)
1125 Perl_croak(aTHX_ "Usage: %s(%s)", "re::regnames", "[all]");
80305961 1126 PERL_UNUSED_VAR(cv); /* -W */
1127 PERL_UNUSED_VAR(ax); /* -Wall */
1128 SP -= items;
1129 {
80305961 1130 SV * all;
28d8d7f4 1131 regexp *re = PL_curpm ? PM_GETRE(PL_curpm) : NULL;
80305961 1132 IV count = 0;
1133
1134 if (items < 1)
80305961 1135 all = NULL;
1136 else {
28d8d7f4 1137 all = ST(0);
80305961 1138 }
1139 {
80305961 1140 if (re && re->paren_names) {
1141 HV *hv= re->paren_names;
1142 (void)hv_iterinit(hv);
1143 while (1) {
1144 HE *temphe = hv_iternext_flags(hv,0);
1145 if (temphe) {
1146 IV i;
1147 IV parno = 0;
1148 SV* sv_dat = HeVAL(temphe);
1149 I32 *nums = (I32*)SvPVX(sv_dat);
1150 for ( i = 0; i < SvIVX(sv_dat); i++ ) {
1151 if ((I32)(re->lastcloseparen) >= nums[i] &&
f0ab9afb 1152 re->offs[nums[i]].start != -1 &&
1153 re->offs[nums[i]].end != -1)
80305961 1154 {
1155 parno = nums[i];
1156 break;
1157 }
1158 }
1159 if (parno || (all && SvTRUE(all))) {
1160 STRLEN len;
1161 char *pv = HePV(temphe, len);
1162 if ( GIMME_V == G_ARRAY )
1163 XPUSHs(newSVpvn(pv,len));
1164 count++;
1165 }
1166 } else {
1167 break;
1168 }
1169 }
1170 }
1171 if ( GIMME_V == G_ARRAY )
1172 XSRETURN(count);
1173 else
1174 XSRETURN_UNDEF;
1175 }
1176 PUTBACK;
1177 return;
1178 }
1179}
1180
1181
1182XS(XS_re_regnames_iterinit)
1183{
1184 dVAR;
1185 dXSARGS;
a2e78f72 1186 if (items != 0)
1187 Perl_croak(aTHX_ "Usage: re::regnames_iterinit()");
80305961 1188 PERL_UNUSED_VAR(cv); /* -W */
1189 PERL_UNUSED_VAR(ax); /* -Wall */
1190 SP -= items;
1191 {
28d8d7f4 1192 regexp *re = PL_curpm ? PM_GETRE(PL_curpm) : NULL;
1193 if (re && re->paren_names) {
1194 (void)hv_iterinit(re->paren_names);
1195 XPUSHs(newSViv(HvTOTALKEYS(re->paren_names)));
1196 } else {
1197 XSRETURN_UNDEF;
1198 }
80305961 1199 PUTBACK;
1200 return;
1201 }
1202}
1203
1204
1205XS(XS_re_regnames_iternext)
1206{
1207 dVAR;
1208 dXSARGS;
28d8d7f4 1209 if (items < 0 || items > 1)
1210 Perl_croak(aTHX_ "Usage: %s(%s)", "re::regnames_iternext", "[all]");
80305961 1211 PERL_UNUSED_VAR(cv); /* -W */
1212 PERL_UNUSED_VAR(ax); /* -Wall */
1213 SP -= items;
1214 {
80305961 1215 SV * all;
28d8d7f4 1216 regexp *re = PL_curpm ? PM_GETRE(PL_curpm) : NULL;
80305961 1217
1218 if (items < 1)
80305961 1219 all = NULL;
1220 else {
28d8d7f4 1221 all = ST(0);
80305961 1222 }
28d8d7f4 1223 if (re && re->paren_names) {
1224 HV *hv= re->paren_names;
1225 while (1) {
1226 HE *temphe = hv_iternext_flags(hv,0);
1227 if (temphe) {
1228 IV i;
1229 IV parno = 0;
1230 SV* sv_dat = HeVAL(temphe);
1231 I32 *nums = (I32*)SvPVX(sv_dat);
1232 for ( i = 0; i < SvIVX(sv_dat); i++ ) {
1233 if ((I32)(re->lastcloseparen) >= nums[i] &&
f0ab9afb 1234 re->offs[nums[i]].start != -1 &&
1235 re->offs[nums[i]].end != -1)
28d8d7f4 1236 {
1237 parno = nums[i];
1238 break;
80305961 1239 }
80305961 1240 }
28d8d7f4 1241 if (parno || (all && SvTRUE(all))) {
1242 STRLEN len;
1243 char *pv = HePV(temphe, len);
1244 XPUSHs(newSVpvn(pv,len));
1245 XSRETURN(1);
1246 }
1247 } else {
1248 break;
80305961 1249 }
1250 }
28d8d7f4 1251 }
1252 XSRETURN_UNDEF;
80305961 1253 PUTBACK;
1254 return;
1255 }
1256}
1257
1258
1259XS(XS_re_regnames_count)
1260{
28d8d7f4 1261 regexp *re = PL_curpm ? PM_GETRE(PL_curpm) : NULL;
80305961 1262 dVAR;
1263 dXSARGS;
1264
28d8d7f4 1265 if (items != 0)
1266 Perl_croak(aTHX_ "Usage: %s(%s)", "re::regnames_count", "");
80305961 1267 PERL_UNUSED_VAR(cv); /* -W */
1268 PERL_UNUSED_VAR(ax); /* -Wall */
1269 SP -= items;
28d8d7f4 1270
80305961 1271 if (re && re->paren_names) {
1272 XPUSHs(newSViv(HvTOTALKEYS(re->paren_names)));
1273 } else {
1274 XSRETURN_UNDEF;
1275 }
1276 PUTBACK;
1277 return;
1278}
1279
1280
241d1a3b 1281/*
1282 * Local variables:
1283 * c-indentation-style: bsd
1284 * c-basic-offset: 4
1285 * indent-tabs-mode: t
1286 * End:
1287 *
37442d52 1288 * ex: set ts=8 sts=4 sw=4 noet:
1289 */