1 /* Multiple source language support for GDB.
3 Copyright (C) 1991-2023 Free Software Foundation, Inc.
5 Contributed by the Department of Computer Science at the State University
6 of New York at Buffalo.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* This file contains functions that return things that are specific
24 to languages. Each function should examine current_language if necessary,
25 and return the appropriate result. */
27 /* FIXME: Most of these would be better organized as macros which
28 return data out of a "language-specific" struct pointer that is set
29 whenever the working language changes. That would be a lot faster. */
37 #include "expression.h"
41 #include "parser-defs.h"
44 #include "cp-support.h"
49 #include "compile/compile-internal.h"
51 static void set_range_case (void);
54 range_mode_auto: range_check set automatically to default of language.
55 range_mode_manual: range_check set manually by user. */
59 range_mode_auto
, range_mode_manual
63 case_mode_auto: case_sensitivity set upon selection of scope.
64 case_mode_manual: case_sensitivity set only by user. */
68 case_mode_auto
, case_mode_manual
71 /* The current (default at startup) state of type and range checking.
72 (If the modes are set to "auto", though, these are changed based
73 on the default language at startup, and then again based on the
74 language of the first source file. */
76 static enum range_mode range_mode
= range_mode_auto
;
77 enum range_check range_check
= range_check_off
;
78 static enum case_mode case_mode
= case_mode_auto
;
79 enum case_sensitivity case_sensitivity
= case_sensitive_on
;
81 /* The current language and language_mode (see language.h). */
83 const struct language_defn
*current_language
= nullptr;
84 enum language_mode language_mode
= language_mode_auto
;
86 /* The language that the user expects to be typing in (the language
87 of main(), or the last language we notified them about, or C). */
89 const struct language_defn
*expected_language
;
91 /* Define the array containing all languages. */
93 const struct language_defn
*language_defn::languages
[nr_languages
];
95 /* The current values of the "set language/range/case-sensitive" enum
97 static const char *language
;
98 static const char *range
;
99 static const char *case_sensitive
;
101 /* See language.h. */
102 const char lang_frame_mismatch_warn
[] =
103 N_("Warning: the current language does not match this frame.");
105 /* This page contains the functions corresponding to GDB commands
106 and their helpers. */
108 /* Show command. Display a warning if the language set
109 does not match the frame. */
111 show_language_command (struct ui_file
*file
, int from_tty
,
112 struct cmd_list_element
*c
, const char *value
)
114 enum language flang
; /* The language of the frame. */
116 if (language_mode
== language_mode_auto
)
118 _("The current source language is "
119 "\"auto; currently %s\".\n"),
120 current_language
->name ());
123 _("The current source language is \"%s\".\n"),
124 current_language
->name ());
126 if (has_stack_frames ())
128 frame_info_ptr frame
;
130 frame
= get_selected_frame (NULL
);
131 flang
= get_frame_language (frame
);
132 if (flang
!= language_unknown
133 && language_mode
== language_mode_manual
134 && current_language
->la_language
!= flang
)
135 gdb_printf (file
, "%s\n", _(lang_frame_mismatch_warn
));
139 /* Set command. Change the current working language. */
141 set_language_command (const char *ignore
,
142 int from_tty
, struct cmd_list_element
*c
)
144 enum language flang
= language_unknown
;
146 /* "local" is a synonym of "auto". */
147 if (strcmp (language
, "local") == 0)
150 /* Search the list of languages for a match. */
151 for (const auto &lang
: language_defn::languages
)
153 if (strcmp (lang
->name (), language
) == 0)
155 /* Found it! Go into manual mode, and use this language. */
156 if (lang
->la_language
== language_auto
)
158 /* Enter auto mode. Set to the current frame's language, if
159 known, or fallback to the initial language. */
160 language_mode
= language_mode_auto
;
163 frame_info_ptr frame
;
165 frame
= get_selected_frame (NULL
);
166 flang
= get_frame_language (frame
);
168 catch (const gdb_exception_error
&ex
)
170 flang
= language_unknown
;
173 if (flang
!= language_unknown
)
174 set_language (flang
);
176 set_initial_language ();
177 expected_language
= current_language
;
182 /* Enter manual mode. Set the specified language. */
183 language_mode
= language_mode_manual
;
184 current_language
= lang
;
186 expected_language
= current_language
;
192 internal_error ("Couldn't find language `%s' in known languages list.",
196 /* Show command. Display a warning if the range setting does
197 not match the current language. */
199 show_range_command (struct ui_file
*file
, int from_tty
,
200 struct cmd_list_element
*c
, const char *value
)
202 if (range_mode
== range_mode_auto
)
211 case range_check_off
:
214 case range_check_warn
:
218 internal_error ("Unrecognized range check setting.");
222 _("Range checking is \"auto; currently %s\".\n"),
226 gdb_printf (file
, _("Range checking is \"%s\".\n"),
229 if (range_check
== range_check_warn
230 || ((range_check
== range_check_on
)
231 != current_language
->range_checking_on_by_default ()))
232 warning (_("the current range check setting "
233 "does not match the language.\n"));
236 /* Set command. Change the setting for range checking. */
238 set_range_command (const char *ignore
,
239 int from_tty
, struct cmd_list_element
*c
)
241 if (strcmp (range
, "on") == 0)
243 range_check
= range_check_on
;
244 range_mode
= range_mode_manual
;
246 else if (strcmp (range
, "warn") == 0)
248 range_check
= range_check_warn
;
249 range_mode
= range_mode_manual
;
251 else if (strcmp (range
, "off") == 0)
253 range_check
= range_check_off
;
254 range_mode
= range_mode_manual
;
256 else if (strcmp (range
, "auto") == 0)
258 range_mode
= range_mode_auto
;
264 internal_error (_("Unrecognized range check setting: \"%s\""), range
);
266 if (range_check
== range_check_warn
267 || ((range_check
== range_check_on
)
268 != current_language
->range_checking_on_by_default ()))
269 warning (_("the current range check setting "
270 "does not match the language.\n"));
273 /* Show command. Display a warning if the case sensitivity setting does
274 not match the current language. */
276 show_case_command (struct ui_file
*file
, int from_tty
,
277 struct cmd_list_element
*c
, const char *value
)
279 if (case_mode
== case_mode_auto
)
281 const char *tmp
= NULL
;
283 switch (case_sensitivity
)
285 case case_sensitive_on
:
288 case case_sensitive_off
:
292 internal_error ("Unrecognized case-sensitive setting.");
296 _("Case sensitivity in "
297 "name search is \"auto; currently %s\".\n"),
302 _("Case sensitivity in name search is \"%s\".\n"),
305 if (case_sensitivity
!= current_language
->case_sensitivity ())
306 warning (_("the current case sensitivity setting does not match "
310 /* Set command. Change the setting for case sensitivity. */
313 set_case_command (const char *ignore
, int from_tty
, struct cmd_list_element
*c
)
315 if (strcmp (case_sensitive
, "on") == 0)
317 case_sensitivity
= case_sensitive_on
;
318 case_mode
= case_mode_manual
;
320 else if (strcmp (case_sensitive
, "off") == 0)
322 case_sensitivity
= case_sensitive_off
;
323 case_mode
= case_mode_manual
;
325 else if (strcmp (case_sensitive
, "auto") == 0)
327 case_mode
= case_mode_auto
;
333 internal_error ("Unrecognized case-sensitive setting: \"%s\"",
337 if (case_sensitivity
!= current_language
->case_sensitivity ())
338 warning (_("the current case sensitivity setting does not match "
342 /* Set the status of range and type checking and case sensitivity based on
343 the current modes and the current language.
344 If SHOW is non-zero, then print out the current language,
345 type and range checking status. */
347 set_range_case (void)
349 if (range_mode
== range_mode_auto
)
350 range_check
= (current_language
->range_checking_on_by_default ()
351 ? range_check_on
: range_check_off
);
353 if (case_mode
== case_mode_auto
)
354 case_sensitivity
= current_language
->case_sensitivity ();
357 /* Set current language to (enum language) LANG. Returns previous
361 set_language (enum language lang
)
363 enum language prev_language
;
365 prev_language
= current_language
->la_language
;
366 current_language
= language_def (lang
);
368 return prev_language
;
372 /* See language.h. */
377 if (expected_language
== current_language
)
380 expected_language
= current_language
;
381 gdb_printf (_("Current language: %s\n"), language
);
382 show_language_command (gdb_stdout
, 1, NULL
, NULL
);
385 /* This page contains functions for the printing out of
386 error messages that occur during type- and range-
389 /* This is called when a language fails a range-check. The
390 first argument should be a printf()-style format string, and the
391 rest of the arguments should be its arguments. If range_check is
392 range_check_on, an error is printed; if range_check_warn, a warning;
393 otherwise just the message. */
396 range_error (const char *string
,...)
400 va_start (args
, string
);
403 case range_check_warn
:
404 vwarning (string
, args
);
407 verror (string
, args
);
409 case range_check_off
:
410 /* FIXME: cagney/2002-01-30: Should this function print anything
411 when range error is off? */
412 gdb_vprintf (gdb_stderr
, string
, args
);
413 gdb_printf (gdb_stderr
, "\n");
416 internal_error (_("bad switch"));
422 /* This page contains miscellaneous functions. */
424 /* Return the language enum for a given language string. */
427 language_enum (const char *str
)
429 for (const auto &lang
: language_defn::languages
)
430 if (strcmp (lang
->name (), str
) == 0)
431 return lang
->la_language
;
433 if (strcmp (str
, "local") == 0)
434 return language_auto
;
436 return language_unknown
;
439 /* Return the language struct for a given language enum. */
441 const struct language_defn
*
442 language_def (enum language lang
)
444 const struct language_defn
*l
= language_defn::languages
[lang
];
445 gdb_assert (l
!= nullptr);
449 /* Return the language as a string. */
452 language_str (enum language lang
)
454 return language_def (lang
)->name ();
459 /* Build and install the "set language LANG" command. */
462 add_set_language_command ()
464 static const char **language_names
;
466 /* Build the language names array, to be used as enumeration in the
467 "set language" enum command. +1 for "local" and +1 for NULL
469 language_names
= new const char *[ARRAY_SIZE (language_defn::languages
) + 2];
471 /* Display "auto", "local" and "unknown" first, and then the rest,
473 const char **language_names_p
= language_names
;
474 language
= language_def (language_auto
)->name ();
475 *language_names_p
++ = language
;
476 *language_names_p
++ = "local";
477 *language_names_p
++ = language_def (language_unknown
)->name ();
478 const char **sort_begin
= language_names_p
;
479 for (const auto &lang
: language_defn::languages
)
481 /* Already handled above. */
482 if (lang
->la_language
== language_auto
483 || lang
->la_language
== language_unknown
)
485 *language_names_p
++ = lang
->name ();
487 *language_names_p
= NULL
;
488 std::sort (sort_begin
, language_names_p
, compare_cstrings
);
490 /* Add the filename extensions. */
491 for (const auto &lang
: language_defn::languages
)
492 for (const char * const &ext
: lang
->filename_extensions ())
493 add_filename_language (ext
, lang
->la_language
);
495 /* Build the "help set language" docs. */
498 doc
.printf (_("Set the current source language.\n"
499 "The currently understood settings are:\n\nlocal or "
500 "auto Automatic setting based on source file"));
502 for (const auto &lang
: language_defn::languages
)
504 /* Already dealt with these above. */
505 if (lang
->la_language
== language_unknown
506 || lang
->la_language
== language_auto
)
509 /* Note that we add the newline at the front, so we don't wind
510 up with a trailing newline. */
511 doc
.printf ("\n%-16s Use the %s language",
513 lang
->natural_name ());
516 add_setshow_enum_cmd ("language", class_support
,
520 _("Show the current source language."),
521 NULL
, set_language_command
,
522 show_language_command
,
523 &setlist
, &showlist
);
526 /* Iterate through all registered languages looking for and calling
527 any non-NULL struct language_defn.skip_trampoline() functions.
528 Return the result from the first that returns non-zero, or 0 if all
531 skip_language_trampoline (frame_info_ptr frame
, CORE_ADDR pc
)
533 for (const auto &lang
: language_defn::languages
)
535 CORE_ADDR real_pc
= lang
->skip_trampoline (frame
, pc
);
544 /* Return demangled language symbol, or NULL.
545 FIXME: Options are only useful for certain languages and ignored
546 by others, so it would be better to remove them here and have a
547 more flexible demangler for the languages that need it.
548 FIXME: Sometimes the demangler is invoked when we don't know the
549 language, so we can't use this everywhere. */
550 gdb::unique_xmalloc_ptr
<char>
551 language_demangle (const struct language_defn
*current_language
,
552 const char *mangled
, int options
)
554 if (current_language
!= NULL
)
555 return current_language
->demangle_symbol (mangled
, options
);
559 /* Return information about whether TYPE should be passed
560 (and returned) by reference at the language level. */
562 struct language_pass_by_ref_info
563 language_pass_by_reference (struct type
*type
)
565 return current_language
->pass_by_reference_info (type
);
568 /* Return the default string containing the list of characters
569 delimiting words. This is a reasonable default value that
570 most languages should be able to use. */
573 default_word_break_characters (void)
575 return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
578 /* See language.h. */
581 language_defn::print_array_index (struct type
*index_type
, LONGEST index
,
582 struct ui_file
*stream
,
583 const value_print_options
*options
) const
585 struct value
*index_value
= value_from_longest (index_type
, index
);
587 gdb_printf (stream
, "[");
588 value_print (index_value
, stream
, options
);
589 gdb_printf (stream
, "] = ");
592 /* See language.h. */
594 gdb::unique_xmalloc_ptr
<char>
595 language_defn::watch_location_expression (struct type
*type
,
596 CORE_ADDR addr
) const
598 /* Generates an expression that assumes a C like syntax is valid. */
599 type
= check_typedef (check_typedef (type
)->target_type ());
600 std::string name
= type_to_string (type
);
601 return xstrprintf ("* (%s *) %s", name
.c_str (), core_addr_to_string (addr
));
604 /* See language.h. */
607 language_defn::value_print (struct value
*val
, struct ui_file
*stream
,
608 const struct value_print_options
*options
) const
610 return c_value_print (val
, stream
, options
);
613 /* See language.h. */
616 language_defn::parser (struct parser_state
*ps
) const
621 /* See language.h. */
624 language_defn::value_print_inner
625 (struct value
*val
, struct ui_file
*stream
, int recurse
,
626 const struct value_print_options
*options
) const
628 return c_value_print_inner (val
, stream
, recurse
, options
);
631 /* See language.h. */
634 language_defn::print_typedef (struct type
*type
, struct symbol
*new_symbol
,
635 struct ui_file
*stream
) const
637 c_print_typedef (type
, new_symbol
, stream
);
640 /* See language.h. */
643 language_defn::is_string_type_p (struct type
*type
) const
645 return c_is_string_type_p (type
);
648 /* See language.h. */
650 std::unique_ptr
<compile_instance
>
651 language_defn::get_compile_instance () const
656 /* The default implementation of the get_symbol_name_matcher_inner method
657 from the language_defn class. Matches with strncmp_iw. */
660 default_symbol_name_matcher (const char *symbol_search_name
,
661 const lookup_name_info
&lookup_name
,
662 completion_match_result
*comp_match_res
)
664 gdb::string_view name
= lookup_name
.name ();
665 completion_match_for_lcd
*match_for_lcd
666 = (comp_match_res
!= NULL
? &comp_match_res
->match_for_lcd
: NULL
);
667 strncmp_iw_mode mode
= (lookup_name
.completion_mode ()
668 ? strncmp_iw_mode::NORMAL
669 : strncmp_iw_mode::MATCH_PARAMS
);
671 if (strncmp_iw_with_mode (symbol_search_name
, name
.data (), name
.size (),
672 mode
, language_minimal
, match_for_lcd
) == 0)
674 if (comp_match_res
!= NULL
)
675 comp_match_res
->set_match (symbol_search_name
);
682 /* See language.h. */
684 symbol_name_matcher_ftype
*
685 language_defn::get_symbol_name_matcher
686 (const lookup_name_info
&lookup_name
) const
688 /* If currently in Ada mode, and the lookup name is wrapped in
689 '<...>', hijack all symbol name comparisons using the Ada
690 matcher, which handles the verbatim matching. */
691 if (current_language
->la_language
== language_ada
692 && lookup_name
.ada ().verbatim_p ())
693 return current_language
->get_symbol_name_matcher_inner (lookup_name
);
695 return this->get_symbol_name_matcher_inner (lookup_name
);
698 /* See language.h. */
700 symbol_name_matcher_ftype
*
701 language_defn::get_symbol_name_matcher_inner
702 (const lookup_name_info
&lookup_name
) const
704 return default_symbol_name_matcher
;
707 /* See language.h. */
709 const struct lang_varobj_ops
*
710 language_defn::varobj_ops () const
712 /* The ops for the C language are suitable for the vast majority of the
713 supported languages. */
714 return &c_varobj_ops
;
717 /* Parent class for both the "auto" and "unknown" languages. These two
718 pseudo-languages are very similar so merging their implementations like
721 class auto_or_unknown_language
: public language_defn
724 auto_or_unknown_language (enum language lang
)
725 : language_defn (lang
)
728 /* See language.h. */
729 void language_arch_info (struct gdbarch
*gdbarch
,
730 struct language_arch_info
*lai
) const override
732 lai
->set_string_char_type (builtin_type (gdbarch
)->builtin_char
);
733 lai
->set_bool_type (builtin_type (gdbarch
)->builtin_int
);
736 /* See language.h. */
738 void print_type (struct type
*type
, const char *varstring
,
739 struct ui_file
*stream
, int show
, int level
,
740 const struct type_print_options
*flags
) const override
742 error (_("type printing not implemented for language \"%s\""),
746 /* See language.h. */
748 gdb::unique_xmalloc_ptr
<char> demangle_symbol (const char *mangled
,
749 int options
) const override
751 /* The auto language just uses the C++ demangler. */
752 return gdb_demangle (mangled
, options
);
755 /* See language.h. */
757 void value_print (struct value
*val
, struct ui_file
*stream
,
758 const struct value_print_options
*options
) const override
760 error (_("value printing not implemented for language \"%s\""),
764 /* See language.h. */
766 void value_print_inner
767 (struct value
*val
, struct ui_file
*stream
, int recurse
,
768 const struct value_print_options
*options
) const override
770 error (_("inner value printing not implemented for language \"%s\""),
774 /* See language.h. */
776 int parser (struct parser_state
*ps
) const override
778 error (_("expression parsing not implemented for language \"%s\""),
782 /* See language.h. */
784 void emitchar (int ch
, struct type
*chtype
,
785 struct ui_file
*stream
, int quoter
) const override
787 error (_("emit character not implemented for language \"%s\""),
791 /* See language.h. */
793 void printchar (int ch
, struct type
*chtype
,
794 struct ui_file
*stream
) const override
796 error (_("print character not implemented for language \"%s\""),
800 /* See language.h. */
802 void printstr (struct ui_file
*stream
, struct type
*elttype
,
803 const gdb_byte
*string
, unsigned int length
,
804 const char *encoding
, int force_ellipses
,
805 const struct value_print_options
*options
) const override
807 error (_("print string not implemented for language \"%s\""),
811 /* See language.h. */
813 void print_typedef (struct type
*type
, struct symbol
*new_symbol
,
814 struct ui_file
*stream
) const override
816 error (_("print typedef not implemented for language \"%s\""),
820 /* See language.h. */
822 bool is_string_type_p (struct type
*type
) const override
824 type
= check_typedef (type
);
825 while (type
->code () == TYPE_CODE_REF
)
827 type
= type
->target_type ();
828 type
= check_typedef (type
);
830 return (type
->code () == TYPE_CODE_STRING
);
833 /* See language.h. */
835 const char *name_of_this () const override
839 /* Class representing the fake "auto" language. */
841 class auto_language
: public auto_or_unknown_language
845 : auto_or_unknown_language (language_auto
)
848 /* See language.h. */
850 const char *name () const override
853 /* See language.h. */
855 const char *natural_name () const override
859 /* Single instance of the fake "auto" language. */
861 static auto_language auto_language_defn
;
863 /* Class representing the unknown language. */
865 class unknown_language
: public auto_or_unknown_language
869 : auto_or_unknown_language (language_unknown
)
872 /* See language.h. */
874 const char *name () const override
875 { return "unknown"; }
877 /* See language.h. */
879 const char *natural_name () const override
880 { return "Unknown"; }
882 /* See language.h. */
884 bool store_sym_names_in_linkage_form_p () const override
888 /* Single instance of the unknown language class. */
890 static unknown_language unknown_language_defn
;
893 /* Per-architecture language information. */
895 struct language_gdbarch
897 /* A vector of per-language per-architecture info. Indexed by "enum
899 struct language_arch_info arch_info
[nr_languages
];
902 static const registry
<gdbarch
>::key
<language_gdbarch
> language_gdbarch_data
;
904 static language_gdbarch
*
905 get_language_gdbarch (struct gdbarch
*gdbarch
)
907 struct language_gdbarch
*l
= language_gdbarch_data
.get (gdbarch
);
910 l
= new struct language_gdbarch
;
911 for (const auto &lang
: language_defn::languages
)
913 gdb_assert (lang
!= nullptr);
914 lang
->language_arch_info (gdbarch
, &l
->arch_info
[lang
->la_language
]);
916 language_gdbarch_data
.set (gdbarch
, l
);
922 /* See language.h. */
925 language_string_char_type (const struct language_defn
*la
,
926 struct gdbarch
*gdbarch
)
928 struct language_gdbarch
*ld
= get_language_gdbarch (gdbarch
);
929 return ld
->arch_info
[la
->la_language
].string_char_type ();
932 /* See language.h. */
935 language_bool_type (const struct language_defn
*la
,
936 struct gdbarch
*gdbarch
)
938 struct language_gdbarch
*ld
= get_language_gdbarch (gdbarch
);
939 return ld
->arch_info
[la
->la_language
].bool_type ();
942 /* See language.h. */
945 language_arch_info::bool_type () const
947 if (m_bool_type_name
!= nullptr)
951 sym
= lookup_symbol (m_bool_type_name
, NULL
, VAR_DOMAIN
, NULL
).symbol
;
954 struct type
*type
= sym
->type ();
955 if (type
!= nullptr && type
->code () == TYPE_CODE_BOOL
)
960 return m_bool_type_default
;
963 /* See language.h. */
966 language_arch_info::type_and_symbol::alloc_type_symbol
967 (enum language lang
, struct type
*type
)
969 struct symbol
*symbol
;
970 struct gdbarch
*gdbarch
;
971 gdb_assert (!type
->is_objfile_owned ());
972 gdbarch
= type
->arch_owner ();
973 symbol
= new (gdbarch_obstack (gdbarch
)) struct symbol ();
974 symbol
->m_name
= type
->name ();
975 symbol
->set_language (lang
, nullptr);
976 symbol
->owner
.arch
= gdbarch
;
977 symbol
->set_is_objfile_owned (0);
978 symbol
->set_section_index (0);
979 symbol
->set_type (type
);
980 symbol
->set_domain (VAR_DOMAIN
);
981 symbol
->set_aclass_index (LOC_TYPEDEF
);
985 /* See language.h. */
987 language_arch_info::type_and_symbol
*
988 language_arch_info::lookup_primitive_type_and_symbol (const char *name
)
990 for (struct type_and_symbol
&tas
: primitive_types_and_symbols
)
992 if (strcmp (tas
.type ()->name (), name
) == 0)
999 /* See language.h. */
1002 language_arch_info::lookup_primitive_type (const char *name
)
1004 type_and_symbol
*tas
= lookup_primitive_type_and_symbol (name
);
1006 return tas
->type ();
1010 /* See language.h. */
1013 language_arch_info::lookup_primitive_type
1014 (gdb::function_view
<bool (struct type
*)> filter
)
1016 for (struct type_and_symbol
&tas
: primitive_types_and_symbols
)
1018 if (filter (tas
.type ()))
1025 /* See language.h. */
1028 language_arch_info::lookup_primitive_type_as_symbol (const char *name
,
1031 type_and_symbol
*tas
= lookup_primitive_type_and_symbol (name
);
1033 return tas
->symbol (lang
);
1037 /* Helper for the language_lookup_primitive_type overloads to forward
1038 to the corresponding language's lookup_primitive_type overload. */
1040 template<typename T
>
1041 static struct type
*
1042 language_lookup_primitive_type_1 (const struct language_defn
*la
,
1043 struct gdbarch
*gdbarch
,
1046 struct language_gdbarch
*ld
= get_language_gdbarch (gdbarch
);
1047 return ld
->arch_info
[la
->la_language
].lookup_primitive_type (arg
);
1050 /* See language.h. */
1053 language_lookup_primitive_type (const struct language_defn
*la
,
1054 struct gdbarch
*gdbarch
,
1057 return language_lookup_primitive_type_1 (la
, gdbarch
, name
);
1060 /* See language.h. */
1063 language_lookup_primitive_type (const struct language_defn
*la
,
1064 struct gdbarch
*gdbarch
,
1065 gdb::function_view
<bool (struct type
*)> filter
)
1067 return language_lookup_primitive_type_1 (la
, gdbarch
, filter
);
1070 /* See language.h. */
1073 language_lookup_primitive_type_as_symbol (const struct language_defn
*la
,
1074 struct gdbarch
*gdbarch
,
1077 struct language_gdbarch
*ld
= get_language_gdbarch (gdbarch
);
1078 struct language_arch_info
*lai
= &ld
->arch_info
[la
->la_language
];
1080 symbol_lookup_debug_printf
1081 ("language = \"%s\", gdbarch @ %s, type = \"%s\")",
1082 la
->name (), host_address_to_string (gdbarch
), name
);
1085 = lai
->lookup_primitive_type_as_symbol (name
, la
->la_language
);
1087 symbol_lookup_debug_printf ("found symbol @ %s",
1088 host_address_to_string (sym
));
1090 /* Note: The result of symbol lookup is normally a symbol *and* the block
1091 it was found in. Builtin types don't live in blocks. We *could* give
1092 them one, but there is no current need so to keep things simple symbol
1093 lookup is extended to allow for BLOCK_FOUND to be NULL. */
1098 /* Initialize the language routines. */
1100 void _initialize_language ();
1102 _initialize_language ()
1104 static const char *const type_or_range_names
[]
1105 = { "on", "off", "warn", "auto", NULL
};
1107 static const char *const case_sensitive_names
[]
1108 = { "on", "off", "auto", NULL
};
1110 /* GDB commands for language specific stuff. */
1112 set_show_commands setshow_check_cmds
1113 = add_setshow_prefix_cmd ("check", no_class
,
1114 _("Set the status of the type/range checker."),
1115 _("Show the status of the type/range checker."),
1116 &setchecklist
, &showchecklist
,
1117 &setlist
, &showlist
);
1118 add_alias_cmd ("c", setshow_check_cmds
.set
, no_class
, 1, &setlist
);
1119 add_alias_cmd ("ch", setshow_check_cmds
.set
, no_class
, 1, &setlist
);
1120 add_alias_cmd ("c", setshow_check_cmds
.show
, no_class
, 1, &showlist
);
1121 add_alias_cmd ("ch", setshow_check_cmds
.show
, no_class
, 1, &showlist
);
1123 range
= type_or_range_names
[3];
1124 gdb_assert (strcmp (range
, "auto") == 0);
1125 add_setshow_enum_cmd ("range", class_support
, type_or_range_names
,
1127 _("Set range checking (on/warn/off/auto)."),
1128 _("Show range checking (on/warn/off/auto)."),
1129 NULL
, set_range_command
,
1131 &setchecklist
, &showchecklist
);
1133 case_sensitive
= case_sensitive_names
[2];
1134 gdb_assert (strcmp (case_sensitive
, "auto") == 0);
1135 add_setshow_enum_cmd ("case-sensitive", class_support
, case_sensitive_names
,
1136 &case_sensitive
, _("\
1137 Set case sensitivity in name search (on/off/auto)."), _("\
1138 Show case sensitivity in name search (on/off/auto)."), _("\
1139 For Fortran the default is off; for other languages the default is on."),
1142 &setlist
, &showlist
);
1144 /* In order to call SET_LANGUAGE (below) we need to make sure that
1145 CURRENT_LANGUAGE is not NULL. So first set the language to unknown,
1146 then we can change the language to 'auto'. */
1147 current_language
= language_def (language_unknown
);
1149 add_set_language_command ();
1151 /* Have the above take effect. */
1152 set_language (language_auto
);