Implement demangling for rvalue reference type names
authorArtemiy Volkov <artemiyv@acm.org>
Mon, 20 Mar 2017 20:47:46 +0000 (13:47 -0700)
committerKeith Seitz <keiths@redhat.com>
Mon, 20 Mar 2017 20:47:46 +0000 (13:47 -0700)
This patch fixes demangling of names containing rvalue reference typenames by
handling DEMANGLE_COMPONENT_RVALUE_REFERENCE demangle component.

gdb/ChangeLog

PR gdb/14441
* cp-name-parser.y (ptr_operator): Handle the '&&' token in
typename.
* cp-support.c (replace_typedefs): Handle
DEMANGLE_COMPONENT_RVALUE_REFERENCE.
* python/py-type.c (typy_lookup_type): Likewise.

gdb/ChangeLog
gdb/cp-name-parser.y
gdb/cp-support.c
gdb/python/py-type.c

index 5df48e5fffa3e57b0d43f8571f8a8477a9e14bf8..39f1e682a3d79ce79805af70dccc82cb8374e533 100644 (file)
@@ -1,3 +1,12 @@
+2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
+
+       PR gdb/14441
+       * cp-name-parser.y (ptr_operator): Handle the '&&' token in
+       typename.
+       * cp-support.c (replace_typedefs): Handle
+       DEMANGLE_COMPONENT_RVALUE_REFERENCE.
+       * python/py-type.c (typy_lookup_type): Likewise.
+
 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
 
        PR gdb/14441
index 70790fc1a3667bca52ef94aa43109f1cedfea168..b51c5e2e4879ab2424ed3e05b5096af3f103f91f 100644 (file)
@@ -770,6 +770,10 @@ ptr_operator       :       '*' qualifiers_opt
                        { $$.comp = make_empty (DEMANGLE_COMPONENT_REFERENCE);
                          $$.comp->u.s_binary.left = $$.comp->u.s_binary.right = NULL;
                          $$.last = &d_left ($$.comp); }
+               |       ANDAND
+                       { $$.comp = make_empty (DEMANGLE_COMPONENT_RVALUE_REFERENCE);
+                         $$.comp->u.s_binary.left = $$.comp->u.s_binary.right = NULL;
+                         $$.last = &d_left ($$.comp); }
                |       nested_name '*' qualifiers_opt
                        { $$.comp = make_empty (DEMANGLE_COMPONENT_PTRMEM_TYPE);
                          $$.comp->u.s_binary.left = $1.comp;
index 1b0900e489f1361b62a6d7528af9501da16da379..b1b96c8f0577ba21b99c5133ca923aa881abb927 100644 (file)
@@ -494,6 +494,7 @@ replace_typedefs (struct demangle_parse_info *info,
        case DEMANGLE_COMPONENT_RESTRICT_THIS:
        case DEMANGLE_COMPONENT_POINTER:
        case DEMANGLE_COMPONENT_REFERENCE:
+       case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
          replace_typedefs (info, d_left (ret_comp), finder, data);
          break;
 
index c4d5917d84bafef8e385b4ee1974d390acc1a133..0249cbbdd9c5ad88a58cd871f0af389b40b546f6 100644 (file)
@@ -770,6 +770,7 @@ typy_lookup_type (struct demangle_component *demangled,
 
   if (demangled_type == DEMANGLE_COMPONENT_POINTER
       || demangled_type == DEMANGLE_COMPONENT_REFERENCE
+      || demangled_type == DEMANGLE_COMPONENT_RVALUE_REFERENCE
       || demangled_type == DEMANGLE_COMPONENT_CONST
       || demangled_type == DEMANGLE_COMPONENT_VOLATILE)
     {
@@ -788,6 +789,9 @@ typy_lookup_type (struct demangle_component *demangled,
            case DEMANGLE_COMPONENT_REFERENCE:
              rtype = lookup_lvalue_reference_type (type);
              break;
+           case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
+             rtype = lookup_rvalue_reference_type (type);
+             break;
            case DEMANGLE_COMPONENT_POINTER:
              rtype = lookup_pointer_type (type);
              break;
This page took 0.028275 seconds and 4 git commands to generate.