mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-28 14:08:09 +08:00

Move the go_language class into go-lang.h, this allows us to have member functions implemented directly in the different go-*.c files instead of having to trampoline out to global functions. There should be no user visible changes after this commit. gdb/ChangeLog: * go-exp.y (go_parse): Rename to... (go_language::parser): ...this. * go-lang.c (go_demangle): Rename to... (go_language::demangle_symbol): ...this. (go_language::expression_ops): Implementation moved here out of class declaration. (go_op_print_tab): Rename to... (go_language::op_print_tab): ...this, update comment. (class go_language): Declaration moved to go-lang.h. (go_language::language_arch_info): Implementation moved here out of class declaration. * go-lang.h (go_parse): Delete declaration. (go_demangle): Delete declaration. (go_print_type): Delete declaration. (go_value_print_inner): Delete declaration. (class go_language): Declaration moved here from go-lang.c. * go-typeprint.c (go_print_type): Rename to... (go_language::print_type): ...this. * go-valprint.c (go_value_print_inner): Rename to... (go_language::value_print_inner): ...this. * symtab.c (demangle_for_lookup): Call demangle_symbol method on the go_language object.
64 lines
2.1 KiB
C
64 lines
2.1 KiB
C
/* Support for printing Go types for GDB, the GNU debugger.
|
|
|
|
Copyright (C) 2012-2020 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/>. */
|
|
|
|
/* TODO:
|
|
- lots
|
|
- if the more complex types get Python pretty-printers, we'll
|
|
want a Python API for type printing
|
|
*/
|
|
|
|
#include "defs.h"
|
|
#include "gdbtypes.h"
|
|
#include "c-lang.h"
|
|
#include "go-lang.h"
|
|
|
|
/* Print a description of a type TYPE.
|
|
Output goes to STREAM (via stdio).
|
|
If VARSTRING is a non-empty string, print as an Ada variable/field
|
|
declaration.
|
|
SHOW+1 is the maximum number of levels of internal type structure
|
|
to show (this applies to record types, enumerated types, and
|
|
array types).
|
|
SHOW is the number of levels of internal type structure to show
|
|
when there is a type name for the SHOWth deepest level (0th is
|
|
outer level).
|
|
When SHOW<0, no inner structure is shown.
|
|
LEVEL indicates level of recursion (for nested definitions). */
|
|
|
|
void
|
|
go_language::print_type (struct type *type, const char *varstring,
|
|
struct ui_file *stream, int show, int level,
|
|
const struct type_print_options *flags) const
|
|
{
|
|
/* Borrowed from c-typeprint.c. */
|
|
if (show > 0)
|
|
type = check_typedef (type);
|
|
|
|
/* Print the type of "abc" as "string", not char[4]. */
|
|
if (type->code () == TYPE_CODE_ARRAY
|
|
&& TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_CHAR)
|
|
{
|
|
fputs_filtered ("string", stream);
|
|
return;
|
|
}
|
|
|
|
/* Punt the rest to C for now. */
|
|
c_print_type (type, varstring, stream, show, level, flags);
|
|
}
|