aboutsummaryrefslogtreecommitdiff
path: root/gdb/language.h
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2020-08-04 15:59:52 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2020-09-16 11:04:03 +0100
commitb63a3f3fc4e998b4efd5fd49aa0eb044e9cee261 (patch)
tree314d88378bc6f02e7679166ec0bdda40d0ecd88e /gdb/language.h
parent1ac14a04025b105c1975ceb3b07245c811518bcb (diff)
downloadfsf-binutils-gdb-b63a3f3fc4e998b4efd5fd49aa0eb044e9cee261.zip
fsf-binutils-gdb-b63a3f3fc4e998b4efd5fd49aa0eb044e9cee261.tar.gz
fsf-binutils-gdb-b63a3f3fc4e998b4efd5fd49aa0eb044e9cee261.tar.bz2
gdb: Convert language_data::la_varobj_ops to a method
Convert language_data::la_varobj_ops member variable to a virtual method language_defn::varobj_ops. There should be no user visible changes after this commit. gdb/ChangeLog: * ada-lang.c (ada_language_data): Remove la_varobj_ops initializer. (ada_language::varobj_ops): New member function. * c-lang.c (c_language_data): Remove la_varobj_ops initializer. (cplus_language_data): Likewise. (cplus_language::varobj_ops): New member function. (asm_language_data): Remove la_varobj_ops initializer. (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 (language_defn::varobj_ops): New function. (unknown_language_data): Remove la_varobj_ops initializer. (auto_language_data): Likewise. * language.h (language_data): Remove la_varobj_ops field. (language_defn::varobj_ops): Declare new member function. * m2-lang.c (m2_language_data): Remove la_varobj_ops initializer. * objc-lang.c (objc_language_data): Likewise. * opencl-lang.c (opencl_language_data): Likewise. * p-lang.c (pascal_language_data): Likewise. * rust-lang.c (rust_language_data): Likewise. * varobj.c (varobj_create): Update call to varobj_ops. * varobj.h (default_varobj_ops): Delete define.
Diffstat (limited to 'gdb/language.h')
-rw-r--r--gdb/language.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/language.h b/gdb/language.h
index a2a970e..414488d 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -176,9 +176,6 @@ struct language_data
/* Table for printing expressions. */
const struct op_print *la_op_print_tab;
-
- /* Various operations on varobj. */
- const struct lang_varobj_ops *la_varobj_ops;
};
/* Base class from which all other language classes derive. */
@@ -565,6 +562,11 @@ struct language_defn : language_data
virtual enum macro_expansion macro_expansion () const
{ return macro_expansion_no; }
+ /* Return a structure containing various operations on varobj specific
+ for this language. */
+
+ virtual const struct lang_varobj_ops *varobj_ops () const;
+
protected:
/* This is the overridable part of the GET_SYMBOL_NAME_MATCHER method.