aboutsummaryrefslogtreecommitdiff
path: root/gdb/demangle.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/demangle.h')
-rw-r--r--gdb/demangle.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/gdb/demangle.h b/gdb/demangle.h
index ce50eb7..cc3fc60 100644
--- a/gdb/demangle.h
+++ b/gdb/demangle.h
@@ -19,6 +19,14 @@
#define DMGL_PARAMS (1 << 0) /* Include function args */
#define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
+/* Enumeration of possible demangling styles.
+
+ Lucid and cfront styles are still kept logically distinct, even though
+ they now both behave identically. The resulting style is actual the
+ union of both. I.E. either style recognizes both "__pt__" and "__rf__"
+ for operator "->", even though the first is lucid style and the second
+ is cfront/ARM style. (FIXME?) */
+
extern enum demangling_styles
{
unknown_demangling = 0,
@@ -28,10 +36,19 @@ extern enum demangling_styles
cfront_demangling
} current_demangling_style;
+/* Define string names for the various demangling styles. */
+
+#define AUTO_DEMANGLING_STYLE_STRING "auto"
#define GNU_DEMANGLING_STYLE_STRING "gnu"
#define LUCID_DEMANGLING_STYLE_STRING "lucid"
#define CFRONT_DEMANGLING_STYLE_STRING "cfront"
-#define AUTO_DEMANGLING_STYLE_STRING "auto"
+
+/* Some macros to test what demangling style is active. */
+
+#define AUTO_DEMANGLING (current_demangling_style == auto_demangling)
+#define GNU_DEMANGLING (current_demangling_style == gnu_demangling)
+#define LUCID_DEMANGLING (current_demangling_style == lucid_demangling)
+#define CFRONT_DEMANGLING (current_demangling_style == cfront_demangling)
extern void
set_demangling_style PARAMS ((char *));