diff options
author | Doug Evans <dje@google.com> | 2011-11-10 20:21:29 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2011-11-10 20:21:29 +0000 |
commit | 50f182aa6671dea0fdcf063d5974c623332f3e63 (patch) | |
tree | 305e9bf4cddbeadeaa410ab4ad250ded684a83b8 /gdb/gdb-demangle.h | |
parent | 6953d2240a9e4d4f5d6b8369c2367377b7d2ef47 (diff) | |
download | gdb-50f182aa6671dea0fdcf063d5974c623332f3e63.zip gdb-50f182aa6671dea0fdcf063d5974c623332f3e63.tar.gz gdb-50f182aa6671dea0fdcf063d5974c623332f3e63.tar.bz2 |
* 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.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gdb/gdb-demangle.h b/gdb/gdb-demangle.h new file mode 100644 index 0000000..2b8c6ac --- /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 */ |