1 /* Multiple source language support for GDB.
3 Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
7 Contributed by the Department of Computer Science at the State University
8 of New York at Buffalo.
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 /* This file contains functions that return things that are specific
26 to languages. Each function should examine current_language if necessary,
27 and return the appropriate result. */
29 /* FIXME: Most of these would be better organized as macros which
30 return data out of a "language-specific" struct pointer that is set
31 whenever the working language changes. That would be a lot faster. */
35 #include "gdb_string.h"
41 #include "expression.h"
44 #include "parser-defs.h"
49 extern void _initialize_language (void);
51 static void unk_lang_error (char *);
53 static int unk_lang_parser (void);
55 static void show_check (char *, int);
57 static void set_check (char *, int);
59 static void set_type_range_case (void);
61 static void unk_lang_emit_char (int c
, struct type
*type
,
62 struct ui_file
*stream
, int quoter
);
64 static void unk_lang_printchar (int c
, struct type
*type
,
65 struct ui_file
*stream
);
67 static void unk_lang_print_type (struct type
*, const char *, struct ui_file
*,
70 static int unk_lang_value_print (struct value
*, struct ui_file
*,
71 const struct value_print_options
*);
73 static CORE_ADDR
unk_lang_trampoline (struct frame_info
*, CORE_ADDR pc
);
75 /* Forward declaration */
76 extern const struct language_defn unknown_language_defn
;
78 /* The current (default at startup) state of type and range checking.
79 (If the modes are set to "auto", though, these are changed based
80 on the default language at startup, and then again based on the
81 language of the first source file. */
83 enum range_mode range_mode
= range_mode_auto
;
84 enum range_check range_check
= range_check_off
;
85 enum type_mode type_mode
= type_mode_auto
;
86 enum type_check type_check
= type_check_off
;
87 enum case_mode case_mode
= case_mode_auto
;
88 enum case_sensitivity case_sensitivity
= case_sensitive_on
;
90 /* The current language and language_mode (see language.h) */
92 const struct language_defn
*current_language
= &unknown_language_defn
;
93 enum language_mode language_mode
= language_mode_auto
;
95 /* The language that the user expects to be typing in (the language
96 of main(), or the last language we notified them about, or C). */
98 const struct language_defn
*expected_language
;
100 /* The list of supported languages. The list itself is malloc'd. */
102 static const struct language_defn
**languages
;
103 static unsigned languages_size
;
104 static unsigned languages_allocsize
;
105 #define DEFAULT_ALLOCSIZE 4
107 /* The current values of the "set language/type/range" enum
109 static const char *language
;
110 static const char *type
;
111 static const char *range
;
112 static const char *case_sensitive
;
114 /* Warning issued when current_language and the language of the current
115 frame do not match. */
116 char lang_frame_mismatch_warn
[] =
117 "Warning: the current language does not match this frame.";
119 /* This page contains the functions corresponding to GDB commands
120 and their helpers. */
122 /* Show command. Display a warning if the language set
123 does not match the frame. */
125 show_language_command (struct ui_file
*file
, int from_tty
,
126 struct cmd_list_element
*c
, const char *value
)
128 enum language flang
; /* The language of the current frame */
130 if (language_mode
== language_mode_auto
)
131 fprintf_filtered (gdb_stdout
,
132 _("The current source language is "
133 "\"auto; currently %s\".\n"),
134 current_language
->la_name
);
136 fprintf_filtered (gdb_stdout
, _("The current source language is \"%s\".\n"),
137 current_language
->la_name
);
139 flang
= get_frame_language ();
140 if (flang
!= language_unknown
&&
141 language_mode
== language_mode_manual
&&
142 current_language
->la_language
!= flang
)
143 printf_filtered ("%s\n", lang_frame_mismatch_warn
);
146 /* Set command. Change the current working language. */
148 set_language_command (char *ignore
, int from_tty
, struct cmd_list_element
*c
)
153 /* Search the list of languages for a match. */
154 for (i
= 0; i
< languages_size
; i
++)
156 if (strcmp (languages
[i
]->la_name
, language
) == 0)
158 /* Found it! Go into manual mode, and use this language. */
159 if (languages
[i
]->la_language
== language_auto
)
161 /* Enter auto mode. Set to the current frame's language, if
162 known, or fallback to the initial language. */
163 language_mode
= language_mode_auto
;
164 flang
= get_frame_language ();
165 if (flang
!= language_unknown
)
166 set_language (flang
);
168 set_initial_language ();
169 expected_language
= current_language
;
174 /* Enter manual mode. Set the specified language. */
175 language_mode
= language_mode_manual
;
176 current_language
= languages
[i
];
177 set_type_range_case ();
178 expected_language
= current_language
;
184 internal_error (__FILE__
, __LINE__
,
185 "Couldn't find language `%s' in known languages list.",
189 /* Show command. Display a warning if the type setting does
190 not match the current language. */
192 show_type_command (struct ui_file
*file
, int from_tty
,
193 struct cmd_list_element
*c
, const char *value
)
195 if (type_mode
== type_mode_auto
)
207 case type_check_warn
:
211 internal_error (__FILE__
, __LINE__
,
212 "Unrecognized type check setting.");
215 fprintf_filtered (gdb_stdout
,
216 _("Type checking is \"auto; currently %s\".\n"),
220 fprintf_filtered (gdb_stdout
, _("Type checking is \"%s\".\n"),
223 if (type_check
!= current_language
->la_type_check
)
224 warning (_("the current type check setting"
225 " does not match the language.\n"));
228 /* Set command. Change the setting for type checking. */
230 set_type_command (char *ignore
, int from_tty
, struct cmd_list_element
*c
)
232 if (strcmp (type
, "on") == 0)
234 type_check
= type_check_on
;
235 type_mode
= type_mode_manual
;
237 else if (strcmp (type
, "warn") == 0)
239 type_check
= type_check_warn
;
240 type_mode
= type_mode_manual
;
242 else if (strcmp (type
, "off") == 0)
244 type_check
= type_check_off
;
245 type_mode
= type_mode_manual
;
247 else if (strcmp (type
, "auto") == 0)
249 type_mode
= type_mode_auto
;
250 set_type_range_case ();
254 internal_error (__FILE__
, __LINE__
,
255 _("Unrecognized type check setting: \"%s\""), type
);
257 if (type_check
!= current_language
->la_type_check
)
258 warning (_("the current type check setting"
259 " does not match the language.\n"));
262 /* Show command. Display a warning if the range setting does
263 not match the current language. */
265 show_range_command (struct ui_file
*file
, int from_tty
,
266 struct cmd_list_element
*c
, const char *value
)
268 if (range_mode
== range_mode_auto
)
277 case range_check_off
:
280 case range_check_warn
:
284 internal_error (__FILE__
, __LINE__
,
285 "Unrecognized range check setting.");
288 fprintf_filtered (gdb_stdout
,
289 _("Range checking is \"auto; currently %s\".\n"),
293 fprintf_filtered (gdb_stdout
, _("Range checking is \"%s\".\n"),
296 if (range_check
!= current_language
->la_range_check
)
297 warning (_("the current range check setting "
298 "does not match the language.\n"));
301 /* Set command. Change the setting for range checking. */
303 set_range_command (char *ignore
, int from_tty
, struct cmd_list_element
*c
)
305 if (strcmp (range
, "on") == 0)
307 range_check
= range_check_on
;
308 range_mode
= range_mode_manual
;
310 else if (strcmp (range
, "warn") == 0)
312 range_check
= range_check_warn
;
313 range_mode
= range_mode_manual
;
315 else if (strcmp (range
, "off") == 0)
317 range_check
= range_check_off
;
318 range_mode
= range_mode_manual
;
320 else if (strcmp (range
, "auto") == 0)
322 range_mode
= range_mode_auto
;
323 set_type_range_case ();
328 internal_error (__FILE__
, __LINE__
,
329 _("Unrecognized range check setting: \"%s\""), range
);
331 if (range_check
!= current_language
->la_range_check
)
332 warning (_("the current range check setting "
333 "does not match the language.\n"));
336 /* Show command. Display a warning if the case sensitivity setting does
337 not match the current language. */
339 show_case_command (struct ui_file
*file
, int from_tty
,
340 struct cmd_list_element
*c
, const char *value
)
342 if (case_mode
== case_mode_auto
)
346 switch (case_sensitivity
)
348 case case_sensitive_on
:
351 case case_sensitive_off
:
355 internal_error (__FILE__
, __LINE__
,
356 "Unrecognized case-sensitive setting.");
359 fprintf_filtered (gdb_stdout
,
360 _("Case sensitivity in "
361 "name search is \"auto; currently %s\".\n"),
365 fprintf_filtered (gdb_stdout
, _("Case sensitivity in name search is \"%s\".\n"),
368 if (case_sensitivity
!= current_language
->la_case_sensitivity
)
369 warning (_("the current case sensitivity setting does not match "
373 /* Set command. Change the setting for case sensitivity. */
376 set_case_command (char *ignore
, int from_tty
, struct cmd_list_element
*c
)
378 if (strcmp (case_sensitive
, "on") == 0)
380 case_sensitivity
= case_sensitive_on
;
381 case_mode
= case_mode_manual
;
383 else if (strcmp (case_sensitive
, "off") == 0)
385 case_sensitivity
= case_sensitive_off
;
386 case_mode
= case_mode_manual
;
388 else if (strcmp (case_sensitive
, "auto") == 0)
390 case_mode
= case_mode_auto
;
391 set_type_range_case ();
396 internal_error (__FILE__
, __LINE__
,
397 "Unrecognized case-sensitive setting: \"%s\"",
401 if (case_sensitivity
!= current_language
->la_case_sensitivity
)
402 warning (_("the current case sensitivity setting does not match "
406 /* Set the status of range and type checking and case sensitivity based on
407 the current modes and the current language.
408 If SHOW is non-zero, then print out the current language,
409 type and range checking status. */
411 set_type_range_case (void)
413 if (range_mode
== range_mode_auto
)
414 range_check
= current_language
->la_range_check
;
416 if (type_mode
== type_mode_auto
)
417 type_check
= current_language
->la_type_check
;
419 if (case_mode
== case_mode_auto
)
420 case_sensitivity
= current_language
->la_case_sensitivity
;
423 /* Set current language to (enum language) LANG. Returns previous language. */
426 set_language (enum language lang
)
429 enum language prev_language
;
431 prev_language
= current_language
->la_language
;
433 for (i
= 0; i
< languages_size
; i
++)
435 if (languages
[i
]->la_language
== lang
)
437 current_language
= languages
[i
];
438 set_type_range_case ();
443 return prev_language
;
447 /* Print out the current language settings: language, range and
448 type checking. If QUIETLY, print only what has changed. */
451 language_info (int quietly
)
453 if (quietly
&& expected_language
== current_language
)
456 expected_language
= current_language
;
457 printf_unfiltered (_("Current language: %s\n"), language
);
458 show_language_command (NULL
, 1, NULL
, NULL
);
462 printf_unfiltered (_("Type checking: %s\n"), type
);
463 show_type_command (NULL
, 1, NULL
, NULL
);
464 printf_unfiltered (_("Range checking: %s\n"), range
);
465 show_range_command (NULL
, 1, NULL
, NULL
);
466 printf_unfiltered (_("Case sensitivity: %s\n"), case_sensitive
);
467 show_case_command (NULL
, 1, NULL
, NULL
);
471 /* Return the result of a binary operation. */
473 #if 0 /* Currently unused */
476 binop_result_type (struct value
*v1
, struct value
*v2
)
479 struct type
*t1
= check_typedef (VALUE_TYPE (v1
));
480 struct type
*t2
= check_typedef (VALUE_TYPE (v2
));
482 int l1
= TYPE_LENGTH (t1
);
483 int l2
= TYPE_LENGTH (t2
);
485 switch (current_language
->la_language
)
491 if (TYPE_CODE (t1
) == TYPE_CODE_FLT
)
492 return TYPE_CODE (t2
) == TYPE_CODE_FLT
&& l2
> l1
?
493 VALUE_TYPE (v2
) : VALUE_TYPE (v1
);
494 else if (TYPE_CODE (t2
) == TYPE_CODE_FLT
)
495 return TYPE_CODE (t1
) == TYPE_CODE_FLT
&& l1
> l2
?
496 VALUE_TYPE (v1
) : VALUE_TYPE (v2
);
497 else if (TYPE_UNSIGNED (t1
) && l1
> l2
)
498 return VALUE_TYPE (v1
);
499 else if (TYPE_UNSIGNED (t2
) && l2
> l1
)
500 return VALUE_TYPE (v2
);
501 else /* Both are signed. Result is the longer type */
502 return l1
> l2
? VALUE_TYPE (v1
) : VALUE_TYPE (v2
);
505 /* If we are doing type-checking, l1 should equal l2, so this is
507 return l1
> l2
? VALUE_TYPE (v1
) : VALUE_TYPE (v2
);
510 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
511 return (struct type
*) 0; /* For lint */
516 /* This page contains functions that are used in type/range checking.
517 They all return zero if the type/range check fails.
519 It is hoped that these will make extending GDB to parse different
520 languages a little easier. These are primarily used in eval.c when
521 evaluating expressions and making sure that their types are correct.
522 Instead of having a mess of conjucted/disjuncted expressions in an "if",
523 the ideas of type can be wrapped up in the following functions.
525 Note that some of them are not currently dependent upon which language
526 is currently being parsed. For example, floats are the same in
527 C and Modula-2 (ie. the only floating point type has TYPE_CODE of
528 TYPE_CODE_FLT), while booleans are different. */
530 /* Returns non-zero if its argument is a simple type. This is the same for
531 both Modula-2 and for C. In the C case, TYPE_CODE_CHAR will never occur,
532 and thus will never cause the failure of the test. */
534 simple_type (struct type
*type
)
536 CHECK_TYPEDEF (type
);
537 switch (TYPE_CODE (type
))
543 case TYPE_CODE_RANGE
:
552 /* Returns non-zero if its argument is of an ordered type.
553 An ordered type is one in which the elements can be tested for the
554 properties of "greater than", "less than", etc, or for which the
555 operations "increment" or "decrement" make sense. */
557 ordered_type (struct type
*type
)
559 CHECK_TYPEDEF (type
);
560 switch (TYPE_CODE (type
))
566 case TYPE_CODE_RANGE
:
574 /* Returns non-zero if the two types are the same */
576 same_type (struct type
*arg1
, struct type
*arg2
)
578 CHECK_TYPEDEF (type
);
579 if (structured_type (arg1
) ? !structured_type (arg2
) : structured_type (arg2
))
580 /* One is structured and one isn't */
582 else if (structured_type (arg1
) && structured_type (arg2
))
584 else if (numeric_type (arg1
) && numeric_type (arg2
))
585 return (TYPE_CODE (arg2
) == TYPE_CODE (arg1
)) &&
586 (TYPE_UNSIGNED (arg1
) == TYPE_UNSIGNED (arg2
))
592 /* Returns non-zero if the type is integral */
594 integral_type (struct type
*type
)
596 CHECK_TYPEDEF (type
);
597 switch (current_language
->la_language
)
603 return (TYPE_CODE (type
) != TYPE_CODE_INT
) &&
604 (TYPE_CODE (type
) != TYPE_CODE_ENUM
) ? 0 : 1;
606 case language_pascal
:
607 return TYPE_CODE (type
) != TYPE_CODE_INT
? 0 : 1;
609 error (_("Language not supported."));
613 /* Returns non-zero if the value is numeric */
615 numeric_type (struct type
*type
)
617 CHECK_TYPEDEF (type
);
618 switch (TYPE_CODE (type
))
629 /* Returns non-zero if the value is a character type */
631 character_type (struct type
*type
)
633 CHECK_TYPEDEF (type
);
634 switch (current_language
->la_language
)
637 case language_pascal
:
638 return TYPE_CODE (type
) != TYPE_CODE_CHAR
? 0 : 1;
644 return (TYPE_CODE (type
) == TYPE_CODE_INT
) &&
645 TYPE_LENGTH (type
) == sizeof (char)
652 /* Returns non-zero if the value is a string type */
654 string_type (struct type
*type
)
656 CHECK_TYPEDEF (type
);
657 switch (current_language
->la_language
)
660 case language_pascal
:
661 return TYPE_CODE (type
) != TYPE_CODE_STRING
? 0 : 1;
667 /* C does not have distinct string type. */
674 /* Returns non-zero if the value is a boolean type */
676 boolean_type (struct type
*type
)
678 CHECK_TYPEDEF (type
);
679 if (TYPE_CODE (type
) == TYPE_CODE_BOOL
)
681 switch (current_language
->la_language
)
687 /* Might be more cleanly handled by having a
688 TYPE_CODE_INT_NOT_BOOL for (the deleted) CHILL and such
689 languages, or a TYPE_CODE_INT_OR_BOOL for C. */
690 if (TYPE_CODE (type
) == TYPE_CODE_INT
)
698 /* Returns non-zero if the value is a floating-point type */
700 float_type (struct type
*type
)
702 CHECK_TYPEDEF (type
);
703 return TYPE_CODE (type
) == TYPE_CODE_FLT
;
707 /* Returns non-zero if the value is a pointer type */
709 pointer_type (struct type
*type
)
711 return TYPE_CODE (type
) == TYPE_CODE_PTR
||
712 TYPE_CODE (type
) == TYPE_CODE_REF
;
716 /* Returns non-zero if the value is a structured type */
718 structured_type (struct type
*type
)
720 CHECK_TYPEDEF (type
);
721 switch (current_language
->la_language
)
727 return (TYPE_CODE (type
) == TYPE_CODE_STRUCT
) ||
728 (TYPE_CODE (type
) == TYPE_CODE_UNION
) ||
729 (TYPE_CODE (type
) == TYPE_CODE_ARRAY
);
730 case language_pascal
:
731 return (TYPE_CODE(type
) == TYPE_CODE_STRUCT
) ||
732 (TYPE_CODE(type
) == TYPE_CODE_UNION
) ||
733 (TYPE_CODE(type
) == TYPE_CODE_SET
) ||
734 (TYPE_CODE(type
) == TYPE_CODE_ARRAY
);
736 return (TYPE_CODE (type
) == TYPE_CODE_STRUCT
) ||
737 (TYPE_CODE (type
) == TYPE_CODE_SET
) ||
738 (TYPE_CODE (type
) == TYPE_CODE_ARRAY
);
745 /* This page contains functions that return info about
746 (struct value) values used in GDB. */
748 /* Returns non-zero if the value VAL represents a true value. */
750 value_true (struct value
*val
)
752 /* It is possible that we should have some sort of error if a non-boolean
753 value is used in this context. Possibly dependent on some kind of
754 "boolean-checking" option like range checking. But it should probably
755 not depend on the language except insofar as is necessary to identify
756 a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean
757 should be an error, probably). */
758 return !value_logical_not (val
);
761 /* This page contains functions for the printing out of
762 error messages that occur during type- and range-
765 /* These are called when a language fails a type- or range-check. The
766 first argument should be a printf()-style format string, and the
767 rest of the arguments should be its arguments. If
768 [type|range]_check is [type|range]_check_on, an error is printed;
769 if [type|range]_check_warn, a warning; otherwise just the
773 type_error (const char *string
,...)
777 va_start (args
, string
);
780 case type_check_warn
:
781 vwarning (string
, args
);
784 verror (string
, args
);
787 /* FIXME: cagney/2002-01-30: Should this function print anything
788 when type error is off? */
789 vfprintf_filtered (gdb_stderr
, string
, args
);
790 fprintf_filtered (gdb_stderr
, "\n");
793 internal_error (__FILE__
, __LINE__
, _("bad switch"));
799 range_error (const char *string
,...)
803 va_start (args
, string
);
806 case range_check_warn
:
807 vwarning (string
, args
);
810 verror (string
, args
);
812 case range_check_off
:
813 /* FIXME: cagney/2002-01-30: Should this function print anything
814 when range error is off? */
815 vfprintf_filtered (gdb_stderr
, string
, args
);
816 fprintf_filtered (gdb_stderr
, "\n");
819 internal_error (__FILE__
, __LINE__
, _("bad switch"));
825 /* This page contains miscellaneous functions */
827 /* Return the language enum for a given language string. */
830 language_enum (char *str
)
834 for (i
= 0; i
< languages_size
; i
++)
835 if (strcmp (languages
[i
]->la_name
, str
) == 0)
836 return languages
[i
]->la_language
;
838 return language_unknown
;
841 /* Return the language struct for a given language enum. */
843 const struct language_defn
*
844 language_def (enum language lang
)
848 for (i
= 0; i
< languages_size
; i
++)
850 if (languages
[i
]->la_language
== lang
)
858 /* Return the language as a string */
860 language_str (enum language lang
)
864 for (i
= 0; i
< languages_size
; i
++)
866 if (languages
[i
]->la_language
== lang
)
868 return languages
[i
]->la_name
;
875 set_check (char *ignore
, int from_tty
)
878 "\"set check\" must be followed by the name of a check subcommand.\n");
879 help_list (setchecklist
, "set check ", -1, gdb_stdout
);
883 show_check (char *ignore
, int from_tty
)
885 cmd_show_list (showchecklist
, from_tty
, "");
888 /* Add a language to the set of known languages. */
891 add_language (const struct language_defn
*lang
)
893 /* For the "set language" command. */
894 static char **language_names
= NULL
;
895 /* For the "help set language" command. */
896 char *language_set_doc
= NULL
;
899 struct ui_file
*tmp_stream
;
901 if (lang
->la_magic
!= LANG_MAGIC
)
903 fprintf_unfiltered (gdb_stderr
, "Magic number of %s language struct wrong\n",
905 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
910 languages_allocsize
= DEFAULT_ALLOCSIZE
;
911 languages
= (const struct language_defn
**) xmalloc
912 (languages_allocsize
* sizeof (*languages
));
914 if (languages_size
>= languages_allocsize
)
916 languages_allocsize
*= 2;
917 languages
= (const struct language_defn
**) xrealloc ((char *) languages
,
918 languages_allocsize
* sizeof (*languages
));
920 languages
[languages_size
++] = lang
;
922 /* Build the language names array, to be used as enumeration in the
923 set language" enum command. */
924 language_names
= xrealloc (language_names
,
925 (languages_size
+ 1) * sizeof (const char *));
926 for (i
= 0; i
< languages_size
; ++i
)
927 language_names
[i
] = languages
[i
]->la_name
;
928 language_names
[i
] = NULL
;
930 /* Build the "help set language" docs. */
931 tmp_stream
= mem_fileopen ();
933 fprintf_unfiltered (tmp_stream
, _("\
934 Set the current source language.\n\
935 The currently understood settings are:\n\n\
936 local or auto Automatic setting based on source file\n"));
938 for (i
= 0; i
< languages_size
; ++i
)
940 /* Already dealt with these above. */
941 if (languages
[i
]->la_language
== language_unknown
942 || languages
[i
]->la_language
== language_auto
)
945 /* FIXME: i18n: for now assume that the human-readable name
946 is just a capitalization of the internal name. */
947 fprintf_unfiltered (tmp_stream
, "%-16s Use the %c%s language\n",
948 languages
[i
]->la_name
,
949 /* Capitalize first letter of language
951 toupper (languages
[i
]->la_name
[0]),
952 languages
[i
]->la_name
+ 1);
955 language_set_doc
= ui_file_xstrdup (tmp_stream
, NULL
);
956 ui_file_delete (tmp_stream
);
958 add_setshow_enum_cmd ("language", class_support
,
959 (const char **) language_names
,
961 language_set_doc
, _("\
962 Show the current source language."), NULL
,
963 set_language_command
,
964 show_language_command
,
965 &setlist
, &showlist
);
967 xfree (language_set_doc
);
970 /* Iterate through all registered languages looking for and calling
971 any non-NULL struct language_defn.skip_trampoline() functions.
972 Return the result from the first that returns non-zero, or 0 if all
975 skip_language_trampoline (struct frame_info
*frame
, CORE_ADDR pc
)
979 for (i
= 0; i
< languages_size
; i
++)
981 if (languages
[i
]->skip_trampoline
)
983 CORE_ADDR real_pc
= (languages
[i
]->skip_trampoline
) (frame
, pc
);
993 /* Return demangled language symbol, or NULL.
994 FIXME: Options are only useful for certain languages and ignored
995 by others, so it would be better to remove them here and have a
996 more flexible demangler for the languages that need it.
997 FIXME: Sometimes the demangler is invoked when we don't know the
998 language, so we can't use this everywhere. */
1000 language_demangle (const struct language_defn
*current_language
,
1001 const char *mangled
, int options
)
1003 if (current_language
!= NULL
&& current_language
->la_demangle
)
1004 return current_language
->la_demangle (mangled
, options
);
1008 /* Return class name from physname or NULL. */
1010 language_class_name_from_physname (const struct language_defn
*current_language
,
1011 const char *physname
)
1013 if (current_language
!= NULL
&& current_language
->la_class_name_from_physname
)
1014 return current_language
->la_class_name_from_physname (physname
);
1018 /* Return non-zero if TYPE should be passed (and returned) by
1019 reference at the language level. */
1021 language_pass_by_reference (struct type
*type
)
1023 return current_language
->la_pass_by_reference (type
);
1026 /* Return zero; by default, types are passed by value at the language
1027 level. The target ABI may pass or return some structs by reference
1028 independent of this. */
1030 default_pass_by_reference (struct type
*type
)
1035 /* Return the default string containing the list of characters
1036 delimiting words. This is a reasonable default value that
1037 most languages should be able to use. */
1040 default_word_break_characters (void)
1042 return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1045 /* Print the index of array elements using the C99 syntax. */
1048 default_print_array_index (struct value
*index_value
, struct ui_file
*stream
,
1049 const struct value_print_options
*options
)
1051 fprintf_filtered (stream
, "[");
1052 LA_VALUE_PRINT (index_value
, stream
, options
);
1053 fprintf_filtered (stream
, "] = ");
1057 default_get_string (struct value
*value
, gdb_byte
**buffer
, int *length
,
1058 struct type
**char_type
, const char **charset
)
1060 error (_("Getting a string is unsupported in this language."));
1063 /* Define the language that is no language. */
1066 unk_lang_parser (void)
1072 unk_lang_error (char *msg
)
1074 error (_("Attempted to parse an expression with unknown language"));
1078 unk_lang_emit_char (int c
, struct type
*type
, struct ui_file
*stream
,
1081 error (_("internal error - unimplemented function unk_lang_emit_char called."));
1085 unk_lang_printchar (int c
, struct type
*type
, struct ui_file
*stream
)
1087 error (_("internal error - unimplemented function unk_lang_printchar called."));
1091 unk_lang_printstr (struct ui_file
*stream
, struct type
*type
,
1092 const gdb_byte
*string
, unsigned int length
,
1093 const char *encoding
, int force_ellipses
,
1094 const struct value_print_options
*options
)
1096 error (_("internal error - unimplemented function unk_lang_printstr called."));
1100 unk_lang_print_type (struct type
*type
, const char *varstring
,
1101 struct ui_file
*stream
, int show
, int level
)
1103 error (_("internal error - unimplemented function unk_lang_print_type called."));
1107 unk_lang_val_print (struct type
*type
, const gdb_byte
*valaddr
,
1108 int embedded_offset
, CORE_ADDR address
,
1109 struct ui_file
*stream
, int recurse
,
1110 const struct value
*val
,
1111 const struct value_print_options
*options
)
1113 error (_("internal error - unimplemented function unk_lang_val_print called."));
1117 unk_lang_value_print (struct value
*val
, struct ui_file
*stream
,
1118 const struct value_print_options
*options
)
1120 error (_("internal error - unimplemented function unk_lang_value_print called."));
1123 static CORE_ADDR
unk_lang_trampoline (struct frame_info
*frame
, CORE_ADDR pc
)
1128 /* Unknown languages just use the cplus demangler. */
1129 static char *unk_lang_demangle (const char *mangled
, int options
)
1131 return cplus_demangle (mangled
, options
);
1134 static char *unk_lang_class_name (const char *mangled
)
1139 static const struct op_print unk_op_print_tab
[] =
1141 {NULL
, OP_NULL
, PREC_NULL
, 0}
1145 unknown_language_arch_info (struct gdbarch
*gdbarch
,
1146 struct language_arch_info
*lai
)
1148 lai
->string_char_type
= builtin_type (gdbarch
)->builtin_char
;
1149 lai
->bool_type_default
= builtin_type (gdbarch
)->builtin_int
;
1150 lai
->primitive_type_vector
= GDBARCH_OBSTACK_CALLOC (gdbarch
, 1,
1154 const struct language_defn unknown_language_defn
=
1163 &exp_descriptor_standard
,
1167 unk_lang_printchar
, /* Print character constant */
1170 unk_lang_print_type
, /* Print a type using appropriate syntax */
1171 default_print_typedef
, /* Print a typedef using appropriate syntax */
1172 unk_lang_val_print
, /* Print a value using appropriate syntax */
1173 unk_lang_value_print
, /* Print a top-level value */
1174 unk_lang_trampoline
, /* Language specific skip_trampoline */
1175 "this", /* name_of_this */
1176 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
1177 basic_lookup_transparent_type
,/* lookup_transparent_type */
1178 unk_lang_demangle
, /* Language specific symbol demangler */
1179 unk_lang_class_name
, /* Language specific class_name_from_physname */
1180 unk_op_print_tab
, /* expression operators for printing */
1181 1, /* c-style arrays */
1182 0, /* String lower bound */
1183 default_word_break_characters
,
1184 default_make_symbol_completion_list
,
1185 unknown_language_arch_info
, /* la_language_arch_info. */
1186 default_print_array_index
,
1187 default_pass_by_reference
,
1192 /* These two structs define fake entries for the "local" and "auto" options. */
1193 const struct language_defn auto_language_defn
=
1202 &exp_descriptor_standard
,
1206 unk_lang_printchar
, /* Print character constant */
1209 unk_lang_print_type
, /* Print a type using appropriate syntax */
1210 default_print_typedef
, /* Print a typedef using appropriate syntax */
1211 unk_lang_val_print
, /* Print a value using appropriate syntax */
1212 unk_lang_value_print
, /* Print a top-level value */
1213 unk_lang_trampoline
, /* Language specific skip_trampoline */
1214 "this", /* name_of_this */
1215 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
1216 basic_lookup_transparent_type
,/* lookup_transparent_type */
1217 unk_lang_demangle
, /* Language specific symbol demangler */
1218 unk_lang_class_name
, /* Language specific class_name_from_physname */
1219 unk_op_print_tab
, /* expression operators for printing */
1220 1, /* c-style arrays */
1221 0, /* String lower bound */
1222 default_word_break_characters
,
1223 default_make_symbol_completion_list
,
1224 unknown_language_arch_info
, /* la_language_arch_info. */
1225 default_print_array_index
,
1226 default_pass_by_reference
,
1231 const struct language_defn local_language_defn
=
1240 &exp_descriptor_standard
,
1244 unk_lang_printchar
, /* Print character constant */
1247 unk_lang_print_type
, /* Print a type using appropriate syntax */
1248 default_print_typedef
, /* Print a typedef using appropriate syntax */
1249 unk_lang_val_print
, /* Print a value using appropriate syntax */
1250 unk_lang_value_print
, /* Print a top-level value */
1251 unk_lang_trampoline
, /* Language specific skip_trampoline */
1252 "this", /* name_of_this */
1253 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
1254 basic_lookup_transparent_type
,/* lookup_transparent_type */
1255 unk_lang_demangle
, /* Language specific symbol demangler */
1256 unk_lang_class_name
, /* Language specific class_name_from_physname */
1257 unk_op_print_tab
, /* expression operators for printing */
1258 1, /* c-style arrays */
1259 0, /* String lower bound */
1260 default_word_break_characters
,
1261 default_make_symbol_completion_list
,
1262 unknown_language_arch_info
, /* la_language_arch_info. */
1263 default_print_array_index
,
1264 default_pass_by_reference
,
1269 /* Per-architecture language information. */
1271 static struct gdbarch_data
*language_gdbarch_data
;
1273 struct language_gdbarch
1275 /* A vector of per-language per-architecture info. Indexed by "enum
1277 struct language_arch_info arch_info
[nr_languages
];
1281 language_gdbarch_post_init (struct gdbarch
*gdbarch
)
1283 struct language_gdbarch
*l
;
1286 l
= GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct language_gdbarch
);
1287 for (i
= 0; i
< languages_size
; i
++)
1289 if (languages
[i
] != NULL
1290 && languages
[i
]->la_language_arch_info
!= NULL
)
1291 languages
[i
]->la_language_arch_info
1292 (gdbarch
, l
->arch_info
+ languages
[i
]->la_language
);
1298 language_string_char_type (const struct language_defn
*la
,
1299 struct gdbarch
*gdbarch
)
1301 struct language_gdbarch
*ld
= gdbarch_data (gdbarch
,
1302 language_gdbarch_data
);
1304 return ld
->arch_info
[la
->la_language
].string_char_type
;
1308 language_bool_type (const struct language_defn
*la
,
1309 struct gdbarch
*gdbarch
)
1311 struct language_gdbarch
*ld
= gdbarch_data (gdbarch
,
1312 language_gdbarch_data
);
1314 if (ld
->arch_info
[la
->la_language
].bool_type_symbol
)
1318 sym
= lookup_symbol (ld
->arch_info
[la
->la_language
].bool_type_symbol
,
1319 NULL
, VAR_DOMAIN
, NULL
);
1322 struct type
*type
= SYMBOL_TYPE (sym
);
1324 if (type
&& TYPE_CODE (type
) == TYPE_CODE_BOOL
)
1329 return ld
->arch_info
[la
->la_language
].bool_type_default
;
1333 language_lookup_primitive_type_by_name (const struct language_defn
*la
,
1334 struct gdbarch
*gdbarch
,
1337 struct language_gdbarch
*ld
= gdbarch_data (gdbarch
,
1338 language_gdbarch_data
);
1339 struct type
*const *p
;
1341 for (p
= ld
->arch_info
[la
->la_language
].primitive_type_vector
;
1345 if (strcmp (TYPE_NAME (*p
), name
) == 0)
1351 /* Initialize the language routines */
1354 _initialize_language (void)
1356 static const char *type_or_range_names
[]
1357 = { "on", "off", "warn", "auto", NULL
};
1359 static const char *case_sensitive_names
[]
1360 = { "on", "off", "auto", NULL
};
1362 language_gdbarch_data
1363 = gdbarch_data_register_post_init (language_gdbarch_post_init
);
1365 /* GDB commands for language specific stuff */
1367 add_prefix_cmd ("check", no_class
, set_check
,
1368 _("Set the status of the type/range checker."),
1369 &setchecklist
, "set check ", 0, &setlist
);
1370 add_alias_cmd ("c", "check", no_class
, 1, &setlist
);
1371 add_alias_cmd ("ch", "check", no_class
, 1, &setlist
);
1373 add_prefix_cmd ("check", no_class
, show_check
,
1374 _("Show the status of the type/range checker."),
1375 &showchecklist
, "show check ", 0, &showlist
);
1376 add_alias_cmd ("c", "check", no_class
, 1, &showlist
);
1377 add_alias_cmd ("ch", "check", no_class
, 1, &showlist
);
1379 add_setshow_enum_cmd ("type", class_support
, type_or_range_names
, &type
, _("\
1380 Set type checking. (on/warn/off/auto)"), _("\
1381 Show type checking. (on/warn/off/auto)"), NULL
,
1384 &setchecklist
, &showchecklist
);
1386 add_setshow_enum_cmd ("range", class_support
, type_or_range_names
,
1388 Set range checking. (on/warn/off/auto)"), _("\
1389 Show range checking. (on/warn/off/auto)"), NULL
,
1392 &setchecklist
, &showchecklist
);
1394 add_setshow_enum_cmd ("case-sensitive", class_support
, case_sensitive_names
,
1395 &case_sensitive
, _("\
1396 Set case sensitivity in name search. (on/off/auto)"), _("\
1397 Show case sensitivity in name search. (on/off/auto)"), _("\
1398 For Fortran the default is off; for other languages the default is on."),
1401 &setlist
, &showlist
);
1403 add_language (&auto_language_defn
);
1404 add_language (&local_language_defn
);
1405 add_language (&unknown_language_defn
);
1407 language
= xstrdup ("auto");
1408 type
= xstrdup ("auto");
1409 range
= xstrdup ("auto");
1410 case_sensitive
= xstrdup ("auto");
1412 /* Have the above take effect */
1413 set_language (language_auto
);