~ubuntu-branches/debian/sid/gdb/sid

« back to all changes in this revision

Viewing changes to include/demangle.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2010-03-20 01:21:29 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320012129-t7h25y8zgr8c2369
Tags: 7.1-1
* New upstream release, including:
  - PIE support (Closes: #346409).
  - C++ improvements, including static_cast<> et al, namespace imports,
    and bug fixes in printing virtual base classes.
  - Multi-program debugging.  One GDB can now debug multiple programs
    at the same time.
  - Python scripting improvements, including gdb.parse_and_eval.
  - Updated MIPS Linux signal frame layout (Closes: #570875).
  - No internal error stepping over _dl_debug_state (Closes: #569551).
* Update to Standards-Version: 3.8.4 (no changes required).
* Include more relevant (and smaller) docs in the gdbserver package
  (Closes: #571132).
* Do not duplicate documentation in gdb64, gdb-source, and libgdb-dev.
* Fix crash when switching into TUI mode (Closes: #568489).

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
extern char*
161
161
java_demangle_v3 (const char *mangled);
162
162
 
 
163
char *
 
164
ada_demangle (const char *mangled, int options);
 
165
 
163
166
enum gnu_v3_ctor_kinds {
164
167
  gnu_v3_complete_object_ctor = 1,
165
168
  gnu_v3_base_object_ctor,
323
326
  DEMANGLE_COMPONENT_PTRMEM_TYPE,
324
327
  /* A fixed-point type.  */
325
328
  DEMANGLE_COMPONENT_FIXED_TYPE,
 
329
  /* A vector type.  The left subtree is the number of elements,
 
330
     the right subtree is the element type.  */
 
331
  DEMANGLE_COMPONENT_VECTOR_TYPE,
326
332
  /* An argument list.  The left subtree is the current argument, and
327
333
     the right subtree is either NULL or another ARGLIST node.  */
328
334
  DEMANGLE_COMPONENT_ARGLIST,
375
381
  DEMANGLE_COMPONENT_COMPOUND_NAME,
376
382
  /* A name formed by a single character.  */
377
383
  DEMANGLE_COMPONENT_CHARACTER,
 
384
  /* A number.  */
 
385
  DEMANGLE_COMPONENT_NUMBER,
378
386
  /* A decltype type.  */
379
387
  DEMANGLE_COMPONENT_DECLTYPE,
380
388
  /* Global constructors keyed to name.  */
381
389
  DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS,
382
390
  /* Global destructors keyed to name.  */
383
391
  DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS,
 
392
  /* A lambda closure type.  */
 
393
  DEMANGLE_COMPONENT_LAMBDA,
 
394
  /* A default argument scope.  */
 
395
  DEMANGLE_COMPONENT_DEFAULT_ARG,
 
396
  /* An unnamed type.  */
 
397
  DEMANGLE_COMPONENT_UNNAMED_TYPE,
384
398
  /* A pack expansion.  */
385
399
  DEMANGLE_COMPONENT_PACK_EXPANSION
386
400
};
494
508
      struct demangle_component *right;
495
509
    } s_binary;
496
510
 
 
511
    struct
 
512
    {
 
513
      /* subtree, same place as d_left.  */
 
514
      struct demangle_component *sub;
 
515
      /* integer.  */
 
516
      int num;
 
517
    } s_unary_num;
 
518
 
497
519
  } u;
498
520
};
499
521