]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR libstdc++/12600 (Demangler goes in infinite loop for certain invalid mangled...
authorCarlo Wood <carlo@alinoe.com>
Tue, 14 Oct 2003 17:46:19 +0000 (17:46 +0000)
committerCarlo Wood <carlo@gcc.gnu.org>
Tue, 14 Oct 2003 17:46:19 +0000 (17:46 +0000)
PR libstdc++/12600
* include/bits/demangle.h (session<Allocator>::
  decode_unqualified_name(string_type& output)): Fail on a
  <operator-name> when decoding <template-argument>.
* testsuite/demangle/regression/cw-15.cc: New.

From-SVN: r72480

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/demangle.h
libstdc++-v3/testsuite/demangle/regression/cw-15.cc [new file with mode: 0644]

index 481dd3729ccb063908e799071da81e13573a763e..9b3d320989efb315181d8d60ee2fc4a24edabe8c 100644 (file)
@@ -1,3 +1,11 @@
+2003-10-14  Carlo Wood  <carlo@alinoe.com>
+
+       PR libstdc++/12600
+       * include/bits/demangle.h (session<Allocator>::
+         decode_unqualified_name(string_type& output)): Fail on a
+         <operator-name> when decoding <template-argument>.
+       * testsuite/demangle/regression/cw-15.cc: New.
+
 2003-10-14  Paolo Carlini  <pcarlini@unitus.it>
 
        PR libstdc++/11480
index e5481b332cd03395ca21abe5be64afbf06a605e5..4d2fa395a42d719cbae444573c049c25cde5bcf6 100644 (file)
@@ -1938,48 +1938,41 @@ namespace __gnu_cxx
       session<Allocator>::decode_unqualified_name(string_type& output)
       {
        _GLIBCXX_DEMANGLER_DOUT_ENTERING("decode_unqualified_name");
-       if (isdigit(current()))
+       if (M_inside_template_args)
        {
-         if (!M_inside_template_args)
-         {
-           bool recursive_unqualified_name = (&M_function_name == &output);
-           // This can be a recursive call when we are decoding
-           // an <operator-name> that is a cast operator for a some
-           // <unqualified-name>; for example "operator Foo()".
-           // In that case this is thus not a ctor or dtor and we
-           // are not interested in updating M_function_name.
-           if (!recursive_unqualified_name)
-             M_function_name.clear();
-           M_name_is_template = false;
-           M_name_is_cdtor = false;
-           M_name_is_conversion_operator = false;
-           if (!decode_source_name(M_function_name))
-             _GLIBCXX_DEMANGLER_FAILURE;
-           if (!recursive_unqualified_name)
-             output += M_function_name;
-         }
-         else if (!decode_source_name(output))
+         if (!decode_source_name(output))
            _GLIBCXX_DEMANGLER_FAILURE;
-         _GLIBCXX_DEMANGLER_RETURN;
        }
-       if (islower(current()))
+       else if (isdigit(current()))
        {
-         if (!M_inside_template_args)
-         {
+         bool recursive_unqualified_name = (&M_function_name == &output);
+         // This can be a recursive call when we are decoding
+         // an <operator-name> that is a cast operator for a some
+         // <unqualified-name>; for example "operator Foo()".
+         // In that case this is thus not a ctor or dtor and we
+         // are not interested in updating M_function_name.
+         if (!recursive_unqualified_name)
            M_function_name.clear();
-           M_name_is_template = false;
-           M_name_is_cdtor = false;
-           M_name_is_conversion_operator = false;
-           if (!decode_operator_name(M_function_name))
-             _GLIBCXX_DEMANGLER_FAILURE;
+         M_name_is_template = false;
+         M_name_is_cdtor = false;
+         M_name_is_conversion_operator = false;
+         if (!decode_source_name(M_function_name))
+           _GLIBCXX_DEMANGLER_FAILURE;
+         if (!recursive_unqualified_name)
            output += M_function_name;
-         }
-         _GLIBCXX_DEMANGLER_RETURN;
        }
-       if (current() == 'C' || current() == 'D')
+       else if (islower(current()))
        {
-         if (M_inside_template_args)
+         M_function_name.clear();
+         M_name_is_template = false;
+         M_name_is_cdtor = false;
+         M_name_is_conversion_operator = false;
+         if (!decode_operator_name(M_function_name))
            _GLIBCXX_DEMANGLER_FAILURE;
+         output += M_function_name;
+       }
+       else if (current() == 'C' || current() == 'D')
+       {
          // <ctor-dtor-name> ::=
          //   C1       # complete object (in-charge) constructor
          //   C2       # base object (not-in-charge) constructor
@@ -2005,9 +1998,10 @@ namespace __gnu_cxx
          M_name_is_cdtor = true;
          eat_current();
          output += M_function_name;
-         _GLIBCXX_DEMANGLER_RETURN;
        }
-       _GLIBCXX_DEMANGLER_FAILURE;
+       else
+         _GLIBCXX_DEMANGLER_FAILURE;
+       _GLIBCXX_DEMANGLER_RETURN;
       }
 
     // <unscoped-name> ::=
diff --git a/libstdc++-v3/testsuite/demangle/regression/cw-15.cc b/libstdc++-v3/testsuite/demangle/regression/cw-15.cc
new file mode 100644 (file)
index 0000000..8cf0bde
--- /dev/null
@@ -0,0 +1,35 @@
+// 2003-10-14  Carlo Wood  <carlo@alinoe.com>
+
+// Copyright (C) 2003 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING.  If not, write to the Free
+// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+// USA.
+
+// IA 64 C++ ABI - 5.1 External Names (a.k.a. Mangling)
+
+#include <testsuite_hooks.h>
+
+// libcwd tests
+int main()
+{
+  using namespace __gnu_test;
+
+  // cplus-dem CORE
+verify_demangle("_Z1xNiEE",
+               "error code = -2: invalid mangled name");
+
+  return 0;
+}