diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-05-02 09:12:30 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-06-02 13:53:10 +0100 |
commit | 8e25bafe932b090850854321b816685b2462c17e (patch) | |
tree | 1880a9eb0b407aa9aa4286a8dc2f2a2a6e36d153 /gdb/c-lang.h | |
parent | 4009ee92c4ec3ee63f455c5abd761e26a819ef4a (diff) | |
download | gdb-8e25bafe932b090850854321b816685b2462c17e.zip gdb-8e25bafe932b090850854321b816685b2462c17e.tar.gz gdb-8e25bafe932b090850854321b816685b2462c17e.tar.bz2 |
gdb: Convert language la_get_compile_instance field to a method
This commit changes the language_data::la_get_compile_instance
function pointer member variable into a member function of
language_defn. Unlike previous commits converting fields of
language_data to member function in language_defn, this field is NULL
for some languages. As a result I had to change the API slightly so
that the base language_defn class provides an implementation.
There should be no user visible changes after this commit.
gdb/ChangeLog:
* ada-lang.c (ada_language_data): Delete la_get_compile_instance
initializer.
* c-lang.c (class compile_instance): Declare.
(c_language_data): Delete la_get_compile_instance initializer.
(c_language::get_compile_instance): New member function.
(cplus_language_data): Delete la_get_compile_instance initializer.
(cplus_language::get_compile_instance): New member function.
(asm_language_data): Delete la_get_compile_instance initializer.
(minimal_language_data): Likewise.
* c-lang.h (c_get_compile_context): Update comment.
(cplus_get_compile_context): Update comment.
* compile/compile.c (compile_to_object): Update calls, don't rely
on function pointer being NULL.
* d-lang.c (d_language_data): Delete la_get_compile_instance
initializer.
* f-lang.c (f_language_data): Likewise.
* go-lang.c (go_language_data): Likewise.
* language.c (unknown_language_data): Likewise.
(auto_language_data): Likewise.
* language.h (language_data): Delete la_get_compile_instance field.
(language_defn::get_compile_instance): New member function.
* m2-lang.c (m2_language_data): Delete la_get_compile_instance
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.
Diffstat (limited to 'gdb/c-lang.h')
-rw-r--r-- | gdb/c-lang.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/c-lang.h b/gdb/c-lang.h index 6421571..3e07dc9 100644 --- a/gdb/c-lang.h +++ b/gdb/c-lang.h @@ -157,7 +157,7 @@ extern int c_textual_element_type (struct type *, char); compiler is owned by the caller and must be freed using the destroy method. This function never returns NULL, but rather throws an exception on failure. This is suitable for use as the - la_get_compile_instance language method. */ + language_defn::get_compile_instance method. */ extern compile_instance *c_get_compile_context (void); @@ -165,7 +165,7 @@ extern compile_instance *c_get_compile_context (void); compiler is owned by the caller and must be freed using the destroy method. This function never returns NULL, but rather throws an exception on failure. This is suitable for use as the - la_get_compile_instance language method. */ + language_defn::get_compile_instance method. */ extern compile_instance *cplus_get_compile_context (); |