"Fossies" - the Fresh Open Source Software Archive

Member "mpr-2.8/demangle/demangle.h" (25 Jun 2002, 6053 Bytes) of package /linux/misc/old/mpr-2.8.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /* Defs for interface to demanglers.
    2    Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002
    3    Free Software Foundation, Inc.
    4    
    5    This program is free software; you can redistribute it and/or modify
    6    it under the terms of the GNU General Public License as published by
    7    the Free Software Foundation; either version 2, or (at your option)
    8    any later version.
    9 
   10    This program is distributed in the hope that it will be useful,
   11    but WITHOUT ANY WARRANTY; without even the implied warranty of
   12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13    GNU General Public License for more details.
   14 
   15    You should have received a copy of the GNU General Public License
   16    along with this program; if not, write to the Free Software
   17    Foundation, Inc., 59 Temple Place - Suite 330,
   18    Boston, MA 02111-1307, USA.  */
   19 
   20 
   21 #if !defined (DEMANGLE_H)
   22 #define DEMANGLE_H
   23 
   24 #include "ansidecl.h"
   25 
   26 /* Options passed to cplus_demangle (in 2nd parameter). */
   27 
   28 #define DMGL_NO_OPTS     0      /* For readability... */
   29 #define DMGL_PARAMS  (1 << 0)   /* Include function args */
   30 #define DMGL_ANSI    (1 << 1)   /* Include const, volatile, etc */
   31 #define DMGL_JAVA    (1 << 2)   /* Demangle as Java rather than C++. */
   32 #define DMGL_VERBOSE     (1 << 3)   /* Include implementation details.  */
   33 #define DMGL_TYPES   (1 << 4)   /* Also try to demangle type encodings.  */
   34 
   35 #define DMGL_AUTO    (1 << 8)
   36 #define DMGL_GNU     (1 << 9)
   37 #define DMGL_LUCID   (1 << 10)
   38 #define DMGL_ARM     (1 << 11)
   39 #define DMGL_HP      (1 << 12)       /* For the HP aCC compiler;
   40                                             same as ARM except for
   41                                             template arguments, etc. */
   42 #define DMGL_EDG     (1 << 13)
   43 #define DMGL_GNU_V3  (1 << 14)
   44 #define DMGL_GNAT    (1 << 15)
   45 
   46 /* If none of these are set, use 'current_demangling_style' as the default. */
   47 #define DMGL_STYLE_MASK (DMGL_AUTO|DMGL_GNU|DMGL_LUCID|DMGL_ARM|DMGL_HP|DMGL_EDG|DMGL_GNU_V3|DMGL_JAVA|DMGL_GNAT)
   48 
   49 /* Enumeration of possible demangling styles.
   50 
   51    Lucid and ARM styles are still kept logically distinct, even though
   52    they now both behave identically.  The resulting style is actual the
   53    union of both.  I.E. either style recognizes both "__pt__" and "__rf__"
   54    for operator "->", even though the first is lucid style and the second
   55    is ARM style. (FIXME?) */
   56 
   57 extern enum demangling_styles
   58 {
   59   no_demangling = -1,
   60   unknown_demangling = 0,
   61   auto_demangling = DMGL_AUTO,
   62   gnu_demangling = DMGL_GNU,
   63   lucid_demangling = DMGL_LUCID,
   64   arm_demangling = DMGL_ARM,
   65   hp_demangling = DMGL_HP,
   66   edg_demangling = DMGL_EDG,
   67   gnu_v3_demangling = DMGL_GNU_V3,
   68   java_demangling = DMGL_JAVA,
   69   gnat_demangling = DMGL_GNAT
   70 } current_demangling_style;
   71 
   72 /* Define string names for the various demangling styles. */
   73 
   74 #define NO_DEMANGLING_STYLE_STRING            "none"
   75 #define AUTO_DEMANGLING_STYLE_STRING          "auto"
   76 #define GNU_DEMANGLING_STYLE_STRING           "gnu"
   77 #define LUCID_DEMANGLING_STYLE_STRING         "lucid"
   78 #define ARM_DEMANGLING_STYLE_STRING       "arm"
   79 #define HP_DEMANGLING_STYLE_STRING        "hp"
   80 #define EDG_DEMANGLING_STYLE_STRING       "edg"
   81 #define GNU_V3_DEMANGLING_STYLE_STRING        "gnu-v3"
   82 #define JAVA_DEMANGLING_STYLE_STRING          "java"
   83 #define GNAT_DEMANGLING_STYLE_STRING          "gnat"
   84 
   85 /* Some macros to test what demangling style is active. */
   86 
   87 #define CURRENT_DEMANGLING_STYLE current_demangling_style
   88 #define AUTO_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_AUTO)
   89 #define GNU_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_GNU)
   90 #define LUCID_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_LUCID)
   91 #define ARM_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_ARM)
   92 #define HP_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_HP)
   93 #define EDG_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_EDG)
   94 #define GNU_V3_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_GNU_V3)
   95 #define JAVA_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_JAVA)
   96 #define GNAT_DEMANGLING (((int) CURRENT_DEMANGLING_STYLE) & DMGL_GNAT)
   97 
   98 /* Provide information about the available demangle styles. This code is
   99    pulled from gdb into libiberty because it is useful to binutils also.  */
  100 
  101 extern const struct demangler_engine
  102 {
  103   const char *const demangling_style_name;
  104   const enum demangling_styles demangling_style;
  105   const char *const demangling_style_doc;
  106 } libiberty_demanglers[];
  107 
  108 extern char *
  109 cplus_demangle PARAMS ((const char *mangled, int options));
  110 
  111 extern int
  112 cplus_demangle_opname PARAMS ((const char *opname, char *result, int options));
  113 
  114 extern const char *
  115 cplus_mangle_opname PARAMS ((const char *opname, int options));
  116 
  117 /* Note: This sets global state.  FIXME if you care about multi-threading. */
  118 
  119 extern void
  120 set_cplus_marker_for_demangling PARAMS ((int ch));
  121 
  122 extern enum demangling_styles 
  123 cplus_demangle_set_style PARAMS ((enum demangling_styles style));
  124 
  125 extern enum demangling_styles 
  126 cplus_demangle_name_to_style PARAMS ((const char *name));
  127 
  128 /* V3 ABI demangling entry points, defined in cp-demangle.c.  */
  129 extern char*
  130 cplus_demangle_v3 PARAMS ((const char* mangled, int options));
  131 
  132 extern char*
  133 java_demangle_v3 PARAMS ((const char* mangled));
  134 
  135 
  136 enum gnu_v3_ctor_kinds {
  137   gnu_v3_complete_object_ctor = 1,
  138   gnu_v3_base_object_ctor,
  139   gnu_v3_complete_object_allocating_ctor
  140 };
  141 
  142 /* Return non-zero iff NAME is the mangled form of a constructor name
  143    in the G++ V3 ABI demangling style.  Specifically, return an `enum
  144    gnu_v3_ctor_kinds' value indicating what kind of constructor
  145    it is.  */
  146 extern enum gnu_v3_ctor_kinds
  147     is_gnu_v3_mangled_ctor PARAMS ((const char *name));
  148 
  149 
  150 enum gnu_v3_dtor_kinds {
  151   gnu_v3_deleting_dtor = 1,
  152   gnu_v3_complete_object_dtor,
  153   gnu_v3_base_object_dtor
  154 };
  155 
  156 /* Return non-zero iff NAME is the mangled form of a destructor name
  157    in the G++ V3 ABI demangling style.  Specifically, return an `enum
  158    gnu_v3_dtor_kinds' value, indicating what kind of destructor
  159    it is.  */
  160 extern enum gnu_v3_dtor_kinds
  161     is_gnu_v3_mangled_dtor PARAMS ((const char *name));
  162 
  163 #endif  /* DEMANGLE_H */