mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
gdb: Convert language la_value_print field to a method
This commit changes the language_data::la_value_print function pointer member variable into a member function of language_defn. There should be no user visible changes after this commit. gdb/ChangeLog: * ada-lang.c (ada_language_data): Delete la_value_print initializer. (ada_language::value_print): New member function. * c-lang.c (c_language_data): Delete la_value_print initializer. (cplus_language_data): Likewise. (asm_language_data): Likewise. (minimal_language_data): Likewise. * d-lang.c (d_language_data): Likewise. * f-lang.c (f_language_data): Likewise. * go-lang.c (go_language_data): Likewise. * language.c (unk_lang_value_print): Delete. (language_defn::value_print): Define new member function. (unknown_language_data): Delete la_value_print initializer. (unknown_language::value_print): New member function. (auto_language_data): Delete la_value_print initializer. (auto_language::value_print): New member function. * language.h (language_data): Delete la_value_print field. (language_defn::value_print): Declare new member function. (LA_VALUE_PRINT): Update call to value_print. * m2-lang.c (m2_language_data): Delete la_value_print initializer. * objc-lang.c (objc_language_data): Likewise. * opencl-lang.c (opencl_language_data): Likewise. * p-lang.c (pascal_language_data): Likewise. (pascal_language::value_print): New member function. * rust-lang.c (rust_language_data): Delete la_value_print initializer.
This commit is contained in:
parent
f16a9f57b5
commit
a1d1fa3e41
@ -1,3 +1,32 @@
|
||||
2020-06-17 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* ada-lang.c (ada_language_data): Delete la_value_print
|
||||
initializer.
|
||||
(ada_language::value_print): New member function.
|
||||
* c-lang.c (c_language_data): Delete la_value_print initializer.
|
||||
(cplus_language_data): Likewise.
|
||||
(asm_language_data): Likewise.
|
||||
(minimal_language_data): Likewise.
|
||||
* d-lang.c (d_language_data): Likewise.
|
||||
* f-lang.c (f_language_data): Likewise.
|
||||
* go-lang.c (go_language_data): Likewise.
|
||||
* language.c (unk_lang_value_print): Delete.
|
||||
(language_defn::value_print): Define new member function.
|
||||
(unknown_language_data): Delete la_value_print initializer.
|
||||
(unknown_language::value_print): New member function.
|
||||
(auto_language_data): Delete la_value_print initializer.
|
||||
(auto_language::value_print): New member function.
|
||||
* language.h (language_data): Delete la_value_print field.
|
||||
(language_defn::value_print): Declare new member function.
|
||||
(LA_VALUE_PRINT): Update call to value_print.
|
||||
* m2-lang.c (m2_language_data): Delete la_value_print initializer.
|
||||
* objc-lang.c (objc_language_data): Likewise.
|
||||
* opencl-lang.c (opencl_language_data): Likewise.
|
||||
* p-lang.c (pascal_language_data): Likewise.
|
||||
(pascal_language::value_print): New member function.
|
||||
* rust-lang.c (rust_language_data): Delete la_value_print
|
||||
initializer.
|
||||
|
||||
2020-06-17 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* ada-lang.c (ada_watch_location_expression): Rename to
|
||||
|
@ -13765,7 +13765,6 @@ extern const struct language_data ada_language_data =
|
||||
emit_char, /* Function to print single char (not used) */
|
||||
ada_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
ada_value_print_inner, /* la_value_print_inner */
|
||||
ada_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
true, /* la_store_sym_names_in_linkage_form_p */
|
||||
ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */
|
||||
@ -14101,6 +14100,14 @@ class ada_language : public language_defn
|
||||
(xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
|
||||
}
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
void value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const override
|
||||
{
|
||||
return ada_value_print (val, stream, options);
|
||||
}
|
||||
|
||||
protected:
|
||||
/* See language.h. */
|
||||
|
||||
|
@ -896,7 +896,6 @@ extern const struct language_data c_language_data =
|
||||
c_emit_char, /* Print a single char */
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
true, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -1007,7 +1006,6 @@ extern const struct language_data cplus_language_data =
|
||||
c_emit_char, /* Print a single char */
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
"this", /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -1206,7 +1204,6 @@ extern const struct language_data asm_language_data =
|
||||
c_emit_char, /* Print a single char */
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
true, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -1272,7 +1269,6 @@ extern const struct language_data minimal_language_data =
|
||||
c_emit_char, /* Print a single char */
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
true, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
@ -150,7 +150,6 @@ extern const struct language_data d_language_data =
|
||||
c_print_typedef, /* Print a typedef using appropriate
|
||||
syntax. */
|
||||
d_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value. */
|
||||
"this",
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
d_lookup_symbol_nonlocal,
|
||||
|
@ -571,7 +571,6 @@ extern const struct language_data f_language_data =
|
||||
f_emit_char, /* Function to print a single character */
|
||||
f_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
f_value_print_innner, /* la_value_print_inner */
|
||||
c_value_print, /* FIXME */
|
||||
NULL, /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
@ -535,7 +535,6 @@ extern const struct language_data go_language_data =
|
||||
c_print_typedef, /* Print a typedef using appropriate
|
||||
syntax. */
|
||||
go_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value. */
|
||||
NULL, /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal,
|
||||
|
@ -57,9 +57,6 @@ static void unk_lang_emit_char (int c, struct type *type,
|
||||
static void unk_lang_printchar (int c, struct type *type,
|
||||
struct ui_file *stream);
|
||||
|
||||
static void unk_lang_value_print (struct value *, struct ui_file *,
|
||||
const struct value_print_options *);
|
||||
|
||||
/* The current (default at startup) state of type and range checking.
|
||||
(If the modes are set to "auto", though, these are changed based
|
||||
on the default language at startup, and then again based on the
|
||||
@ -635,6 +632,15 @@ language_defn::watch_location_expression (struct type *type,
|
||||
(xstrprintf ("* (%s *) %s", name.c_str (), core_addr_to_string (addr)));
|
||||
}
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
void
|
||||
language_defn::value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const
|
||||
{
|
||||
return c_value_print (val, stream, options);
|
||||
}
|
||||
|
||||
/* The default implementation of the get_symbol_name_matcher_inner method
|
||||
from the language_defn class. Matches with strncmp_iw. */
|
||||
|
||||
@ -742,14 +748,6 @@ unk_lang_value_print_inner (struct value *val,
|
||||
"function unk_lang_value_print_inner called."));
|
||||
}
|
||||
|
||||
static void
|
||||
unk_lang_value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options)
|
||||
{
|
||||
error (_("internal error - unimplemented "
|
||||
"function unk_lang_value_print called."));
|
||||
}
|
||||
|
||||
static const struct op_print unk_op_print_tab[] =
|
||||
{
|
||||
{NULL, OP_NULL, PREC_NULL, 0}
|
||||
@ -785,7 +783,6 @@ extern const struct language_data unknown_language_data =
|
||||
unk_lang_emit_char,
|
||||
default_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
unk_lang_value_print_inner, /* la_value_print_inner */
|
||||
unk_lang_value_print, /* Print a top-level value */
|
||||
"this", /* name_of_this */
|
||||
true, /* store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -829,6 +826,14 @@ class unknown_language : public language_defn
|
||||
/* The unknown language just uses the C++ demangler. */
|
||||
return gdb_demangle (mangled, options);
|
||||
}
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
void value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const override
|
||||
{
|
||||
error (_("unimplemented unknown_language::value_print called"));
|
||||
}
|
||||
};
|
||||
|
||||
/* Single instance of the unknown language class. */
|
||||
@ -855,7 +860,6 @@ extern const struct language_data auto_language_data =
|
||||
unk_lang_emit_char,
|
||||
default_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
unk_lang_value_print_inner, /* la_value_print_inner */
|
||||
unk_lang_value_print, /* Print a top-level value */
|
||||
"this", /* name_of_this */
|
||||
false, /* store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -899,6 +903,14 @@ class auto_language : public language_defn
|
||||
/* The auto language just uses the C++ demangler. */
|
||||
return gdb_demangle (mangled, options);
|
||||
}
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
void value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const override
|
||||
{
|
||||
error (_("unimplemented auto_language::value_print called"));
|
||||
}
|
||||
};
|
||||
|
||||
/* Single instance of the fake "auto" language. */
|
||||
|
@ -265,11 +265,6 @@ struct language_data
|
||||
int recurse,
|
||||
const struct value_print_options *);
|
||||
|
||||
/* Print a top-level value using syntax appropriate for this language. */
|
||||
|
||||
void (*la_value_print) (struct value *, struct ui_file *,
|
||||
const struct value_print_options *);
|
||||
|
||||
/* Now come some hooks for lookup_symbol. */
|
||||
|
||||
/* If this is non-NULL, specifies the name that of the implicit
|
||||
@ -543,6 +538,10 @@ struct language_defn : language_data
|
||||
/* List of all known languages. */
|
||||
static const struct language_defn *languages[nr_languages];
|
||||
|
||||
/* Print a top-level value using syntax appropriate for this language. */
|
||||
virtual void value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const;
|
||||
|
||||
protected:
|
||||
|
||||
/* This is the overridable part of the GET_SYMBOL_NAME_MATCHER method.
|
||||
@ -642,7 +641,7 @@ extern enum language set_language (enum language);
|
||||
(current_language->la_print_typedef(type,new_symbol,stream))
|
||||
|
||||
#define LA_VALUE_PRINT(val,stream,options) \
|
||||
(current_language->la_value_print(val,stream,options))
|
||||
(current_language->value_print (val,stream,options))
|
||||
|
||||
#define LA_PRINT_CHAR(ch, type, stream) \
|
||||
(current_language->la_printchar(ch, type, stream))
|
||||
|
@ -369,7 +369,6 @@ extern const struct language_data m2_language_data =
|
||||
m2_emit_char, /* Function to print a single character */
|
||||
m2_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
m2_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
@ -344,7 +344,6 @@ extern const struct language_data objc_language_data =
|
||||
c_emit_char,
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
"self", /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
@ -1023,7 +1023,6 @@ extern const struct language_data opencl_language_data =
|
||||
c_emit_char, /* Print a single char */
|
||||
c_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
c_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
@ -400,7 +400,6 @@ extern const struct language_data pascal_language_data =
|
||||
pascal_emit_char, /* Print a single char */
|
||||
pascal_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
pascal_value_print_inner, /* la_value_print_inner */
|
||||
pascal_value_print, /* Print a top-level value */
|
||||
"this", /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
@ -478,6 +477,14 @@ class pascal_language : public language_defn
|
||||
{
|
||||
pascal_print_type (type, varstring, stream, show, level, flags);
|
||||
}
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
void value_print (struct value *val, struct ui_file *stream,
|
||||
const struct value_print_options *options) const override
|
||||
{
|
||||
return pascal_value_print (val, stream, options);
|
||||
}
|
||||
};
|
||||
|
||||
/* Single instance of the Pascal language class. */
|
||||
|
@ -2041,7 +2041,6 @@ extern const struct language_data rust_language_data =
|
||||
rust_emitchar, /* Print a single char */
|
||||
rust_print_typedef, /* Print a typedef using appropriate syntax */
|
||||
rust_value_print_inner, /* la_value_print_inner */
|
||||
c_value_print, /* Print a top-level value */
|
||||
NULL, /* name_of_this */
|
||||
false, /* la_store_sym_names_in_linkage_form_p */
|
||||
rust_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
||||
|
Loading…
Reference in New Issue
Block a user