This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA]: Make class_name_from_physname part of language vector


Ping.

Jeff Johnston wrote:
The attached patch is a fix for Java support. Currently, dwarf2read.c calls class_name_from_physname to get a class name. This code currently resides in the cp-support.c file and is C++ specific as it parses looking for "::".

This patch changes it so the class_name_from_physname becomes a function in the language definition. The current class_name_from_physname routine is the C++ version and is renamed.

Ok to commit?

2004-05-14 Jeff Johnston <jjohnstn@redhat.com>

    * language.h (struct_language_defn): Add new function pointer:
    la_class_name_from_physname.  Also add new prototype for
    language_class_name_from_physname.
    * language.c (language_class_name_from_physname): New function.
    (unk_lang_class_name): Ditto.
    (unknown_language_defn, auto_language_defn): Change
    to add unk_lang_class_name function pointer for
    la_class_name_from_physname.
    (local_language_defn): Ditto.
    * dwarf2read.c (guess_structure_name): Change to call
    language_class_name_from_physname.
    (determine_class_name): Ditto.
    * cp-support.c (class_name_from_physname): Renamed.
    (cp_class_name_from_physname): New name of function.
    * cp-support.h: Ditto.
    * c-lang.c (c_language_defn): Change to add NULL
    for class_name_from_physname function pointer.
    (cplus_language_defn): Change to add cp_class_name_from_physname.
    * jv-lang.c (java_class_name_physname): New function.
    (find_last_component): New static routine.
    (java_language_defn): Add java_class_name_from_physname pointer.
    * ada-lang.c (ada_language_defn): Change to add NULL
    for class_name_from_physname function pointer.
    * f-lang.c (f_language_defn): Ditto.
    * m2-lang.c (m2_language_defn): Ditto.
    * objc-lang.c (objc_language_defn): Ditto.
    * p-lang.c (pascal_language_defn): Ditto.
    * scm-lang.c (scm_language_defn): Ditto.



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]