This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: (patch blead) Extend t/harness to allow filtering of the file list by regex.
[perl5.git] / xsutils.c
index 39bf560..c09a376 100644 (file)
--- a/xsutils.c
+++ b/xsutils.c
@@ -1,6 +1,6 @@
 /*    xsutils.c
  *
- *    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
+ *    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
  *    by Larry Wall and others
  *
  *    You may distribute under the terms of either the GNU General Public
@@ -71,28 +71,32 @@ modify_SV_attributes(pTHX_ SV *sv, SV **retlist, SV **attrlist, int numattrs)
        switch (SvTYPE(sv)) {
        case SVt_PVCV:
            switch ((int)len) {
+#ifdef CVf_ASSERTION
+           case 9:
+               if (memEQ(name, "assertion", 9)) {
+                   if (negated)
+                       CvFLAGS((CV*)sv) &= ~CVf_ASSERTION;
+                   else
+                       CvFLAGS((CV*)sv) |= CVf_ASSERTION;
+                   continue;
+               }
+               break;
+#endif
            case 6:
-               switch (*name) {
-               case 'a':
-                   if (strEQ(name, "assertion")) {
-                       if (negated)
-                           CvFLAGS((CV*)sv) &= ~CVf_ASSERTION;
-                       else
-                           CvFLAGS((CV*)sv) |= CVf_ASSERTION;
-                       continue;
-                   }
-                   break;
+               switch (name[3]) {
                case 'l':
 #ifdef CVf_LVALUE
-                   if (strEQ(name, "lvalue")) {
+                   if (memEQ(name, "lvalue", 6)) {
                        if (negated)
                            CvFLAGS((CV*)sv) &= ~CVf_LVALUE;
                        else
                            CvFLAGS((CV*)sv) |= CVf_LVALUE;
                        continue;
                    }
+                   break;
+               case 'k':
 #endif /* defined CVf_LVALUE */
-                   if (strEQ(name, "locked")) {
+                   if (memEQ(name, "locked", 6)) {
                        if (negated)
                            CvFLAGS((CV*)sv) &= ~CVf_LOCKED;
                        else
@@ -100,8 +104,8 @@ modify_SV_attributes(pTHX_ SV *sv, SV **retlist, SV **attrlist, int numattrs)
                        continue;
                    }
                    break;
-               case 'm':
-                   if (strEQ(name, "method")) {
+               case 'h':
+                   if (memEQ(name, "method", 6)) {
                        if (negated)
                            CvFLAGS((CV*)sv) &= ~CVf_METHOD;
                        else
@@ -116,17 +120,17 @@ modify_SV_attributes(pTHX_ SV *sv, SV **retlist, SV **attrlist, int numattrs)
        default:
            switch ((int)len) {
            case 6:
-               switch (*name) {
-               case 's':
-                   if (strEQ(name, "shared")) {
+               switch (name[5]) {
+               case 'd':
+                   if (memEQ(name, "share", 5)) {
                        if (negated)
                            Perl_croak(aTHX_ "A variable may not be unshared");
                        SvSHARE(sv);
                         continue;
                     }
                    break;
-               case 'u':
-                   if (strEQ(name, "unique")) {
+               case 'e':
+                   if (memEQ(name, "uniqu", 5)) {
                        if (SvTYPE(sv) == SVt_PVGV) {
                            if (negated)
                                GvUNIQUE_off(sv);