summaryrefslogtreecommitdiff
path: root/gdb/gdb-demangle.h
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2011-11-10 20:21:26 +0000
committerDoug Evans <dje@google.com>2011-11-10 20:21:26 +0000
commit19f173f49a22850c424736e95bc45f76d62aa3c0 (patch)
tree7690424d7777bada6b9e615d282e481463d1362c /gdb/gdb-demangle.h
parentc810e2afe0d47098b9dad9203b6f68e719a2e360 (diff)
downloadgdb-19f173f49a22850c424736e95bc45f76d62aa3c0.tar.gz
* defs.h (is_cplus_marker, set_demangling_style): Moved to ...
* gdb-demangle.h: ... here. New file. * demangle.c: #include "gdb-demangle.h". (_initialize_demangler): Use initialize_file_ftype for prototype. Move "set demangle" and "set asm-demangle" parameters here from utils.c (demangle, show_demangle, asm_demangle, show_asm_demangle): Move here from utils.c * utils.c: Update. #include "gdb-demangle.h". * symtab.h (asm_demangle): Delete. (demangle): Move declaration next to use. * breakpoint.c: #include "gdb-demangle.h" instead of "demangle.h". * dwarf2read.c: #include "gdb-demangle.h". * gnu-v2-abi.c: Ditto. * jv-typeprint.c: Ditto. * mdebugread.c: Ditto. * p-typeprint.c: Ditto. * stabsread.c: Ditto. * printcmd.c: Ditto. (asm_demangle): Delete declaration. * tui/tui-stack.c: #include "gdb-demangle.h".
Diffstat (limited to 'gdb/gdb-demangle.h')
-rw-r--r--gdb/gdb-demangle.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/gdb/gdb-demangle.h b/gdb/gdb-demangle.h
new file mode 100644
index 00000000000..2b8c6ac9092
--- /dev/null
+++ b/gdb/gdb-demangle.h
@@ -0,0 +1,37 @@
+/* Basic C++ demangling support for GDB.
+ Copyright (c) 2011 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program 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 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef GDB_DEMANGLE_H
+#define GDB_DEMANGLE_H
+
+/* Nonzero means that encoded C++/ObjC names should be printed out in their
+ C++/ObjC form rather than raw. */
+extern int demangle;
+
+/* Nonzero means that encoded C++/ObjC names should be printed out in their
+ C++/ObjC form even in assembler language displays. If this is set, but
+ DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
+extern int asm_demangle;
+
+/* Fake a "set demangle-style" command. */
+extern void set_demangling_style (char *);
+
+/* Check if a character is one of the commonly used C++ marker characters. */
+extern int is_cplus_marker (int);
+
+#endif /* GDB_DEMANGLE_H */