1 /* Multiple source language support for GDB.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4 Contributed by the Department of Computer Science at the State University
5 of New York at Buffalo.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* This file contains functions that return things that are specific
25 to languages. Each function should examine current_language if necessary,
26 and return the appropriate result. */
28 /* FIXME: Most of these would be better organized as macros which
29 return data out of a "language-specific" struct pointer that is set
30 whenever the working language changes. That would be a lot faster. */
34 #include "gdb_string.h"
40 #include "expression.h"
43 #include "parser-defs.h"
46 extern void _initialize_language (void);
48 static void show_language_command (char *, int);
50 static void set_language_command (char *, int);
52 static void show_type_command (char *, int);
54 static void set_type_command (char *, int);
56 static void show_range_command (char *, int);
58 static void set_range_command (char *, int);
60 static void show_case_command (char *, int);
62 static void set_case_command (char *, int);
64 static void set_case_str (void);
66 static void set_range_str (void);
68 static void set_type_str (void);
70 static void set_lang_str (void);
72 static void unk_lang_error (char *);
74 static int unk_lang_parser (void);
76 static void show_check (char *, int);
78 static void set_check (char *, int);
80 static void set_type_range_case (void);
82 static void unk_lang_emit_char (int c, struct ui_file *stream, int quoter);
84 static void unk_lang_printchar (int c, struct ui_file *stream);
86 static void unk_lang_printstr (struct ui_file * stream, char *string,
87 unsigned int length, int width,
90 static struct type *unk_lang_create_fundamental_type (struct objfile *, int);
92 static void unk_lang_print_type (struct type *, char *, struct ui_file *,
95 static int unk_lang_val_print (struct type *, char *, int, CORE_ADDR,
96 struct ui_file *, int, int, int,
97 enum val_prettyprint);
99 static int unk_lang_value_print (struct value *, struct ui_file *, int, enum val_prettyprint);
101 /* Forward declaration */
102 extern const struct language_defn unknown_language_defn;
103 extern char *warning_pre_print;
105 /* The current (default at startup) state of type and range checking.
106 (If the modes are set to "auto", though, these are changed based
107 on the default language at startup, and then again based on the
108 language of the first source file. */
110 enum range_mode range_mode = range_mode_auto;
111 enum range_check range_check = range_check_off;
112 enum type_mode type_mode = type_mode_auto;
113 enum type_check type_check = type_check_off;
114 enum case_mode case_mode = case_mode_auto;
115 enum case_sensitivity case_sensitivity = case_sensitive_on;
117 /* The current language and language_mode (see language.h) */
119 const struct language_defn *current_language = &unknown_language_defn;
120 enum language_mode language_mode = language_mode_auto;
122 /* The language that the user expects to be typing in (the language
123 of main(), or the last language we notified them about, or C). */
125 const struct language_defn *expected_language;
127 /* The list of supported languages. The list itself is malloc'd. */
129 static const struct language_defn **languages;
130 static unsigned languages_size;
131 static unsigned languages_allocsize;
132 #define DEFAULT_ALLOCSIZE 4
134 /* The "set language/type/range" commands all put stuff in these
135 buffers. This is to make them work as set/show commands. The
136 user's string is copied here, then the set_* commands look at
137 them and update them to something that looks nice when it is
140 static char *language;
143 static char *case_sensitive;
145 /* Warning issued when current_language and the language of the current
146 frame do not match. */
147 char lang_frame_mismatch_warn[] =
148 "Warning: the current language does not match this frame.";
151 /* This page contains the functions corresponding to GDB commands
152 and their helpers. */
154 /* Show command. Display a warning if the language set
155 does not match the frame. */
157 show_language_command (char *ignore, int from_tty)
159 enum language flang; /* The language of the current frame */
161 flang = get_frame_language ();
162 if (flang != language_unknown &&
163 language_mode == language_mode_manual &&
164 current_language->la_language != flang)
165 printf_filtered ("%s\n", lang_frame_mismatch_warn);
168 /* Set command. Change the current working language. */
170 set_language_command (char *ignore, int from_tty)
176 if (!language || !language[0])
178 printf_unfiltered ("The currently understood settings are:\n\n");
179 printf_unfiltered ("local or auto Automatic setting based on source file\n");
181 for (i = 0; i < languages_size; ++i)
183 /* Already dealt with these above. */
184 if (languages[i]->la_language == language_unknown
185 || languages[i]->la_language == language_auto)
188 /* FIXME for now assume that the human-readable name is just
189 a capitalization of the internal name. */
190 printf_unfiltered ("%-16s Use the %c%s language\n",
191 languages[i]->la_name,
192 /* Capitalize first letter of language
194 toupper (languages[i]->la_name[0]),
195 languages[i]->la_name + 1);
197 /* Restore the silly string. */
198 set_language (current_language->la_language);
202 /* Search the list of languages for a match. */
203 for (i = 0; i < languages_size; i++)
205 if (STREQ (languages[i]->la_name, language))
207 /* Found it! Go into manual mode, and use this language. */
208 if (languages[i]->la_language == language_auto)
210 /* Enter auto mode. Set to the current frame's language, if known. */
211 language_mode = language_mode_auto;
212 flang = get_frame_language ();
213 if (flang != language_unknown)
214 set_language (flang);
215 expected_language = current_language;
220 /* Enter manual mode. Set the specified language. */
221 language_mode = language_mode_manual;
222 current_language = languages[i];
223 set_type_range_case ();
225 expected_language = current_language;
231 /* Reset the language (esp. the global string "language") to the
233 err_lang = savestring (language, strlen (language));
234 make_cleanup (xfree, err_lang); /* Free it after error */
235 set_language (current_language->la_language);
236 error ("Unknown language `%s'.", err_lang);
239 /* Show command. Display a warning if the type setting does
240 not match the current language. */
242 show_type_command (char *ignore, int from_tty)
244 if (type_check != current_language->la_type_check)
246 "Warning: the current type check setting does not match the language.\n");
249 /* Set command. Change the setting for type checking. */
251 set_type_command (char *ignore, int from_tty)
253 if (STREQ (type, "on"))
255 type_check = type_check_on;
256 type_mode = type_mode_manual;
258 else if (STREQ (type, "warn"))
260 type_check = type_check_warn;
261 type_mode = type_mode_manual;
263 else if (STREQ (type, "off"))
265 type_check = type_check_off;
266 type_mode = type_mode_manual;
268 else if (STREQ (type, "auto"))
270 type_mode = type_mode_auto;
271 set_type_range_case ();
272 /* Avoid hitting the set_type_str call below. We
273 did it in set_type_range_case. */
278 warning ("Unrecognized type check setting: \"%s\"", type);
281 show_type_command ((char *) NULL, from_tty);
284 /* Show command. Display a warning if the range setting does
285 not match the current language. */
287 show_range_command (char *ignore, int from_tty)
290 if (range_check != current_language->la_range_check)
292 "Warning: the current range check setting does not match the language.\n");
295 /* Set command. Change the setting for range checking. */
297 set_range_command (char *ignore, int from_tty)
299 if (STREQ (range, "on"))
301 range_check = range_check_on;
302 range_mode = range_mode_manual;
304 else if (STREQ (range, "warn"))
306 range_check = range_check_warn;
307 range_mode = range_mode_manual;
309 else if (STREQ (range, "off"))
311 range_check = range_check_off;
312 range_mode = range_mode_manual;
314 else if (STREQ (range, "auto"))
316 range_mode = range_mode_auto;
317 set_type_range_case ();
318 /* Avoid hitting the set_range_str call below. We
319 did it in set_type_range_case. */
324 warning ("Unrecognized range check setting: \"%s\"", range);
327 show_range_command ((char *) 0, from_tty);
330 /* Show command. Display a warning if the case sensitivity setting does
331 not match the current language. */
333 show_case_command (char *ignore, int from_tty)
335 if (case_sensitivity != current_language->la_case_sensitivity)
337 "Warning: the current case sensitivity setting does not match the language.\n");
340 /* Set command. Change the setting for case sensitivity. */
342 set_case_command (char *ignore, int from_tty)
344 if (STREQ (case_sensitive, "on"))
346 case_sensitivity = case_sensitive_on;
347 case_mode = case_mode_manual;
349 else if (STREQ (case_sensitive, "off"))
351 case_sensitivity = case_sensitive_off;
352 case_mode = case_mode_manual;
354 else if (STREQ (case_sensitive, "auto"))
356 case_mode = case_mode_auto;
357 set_type_range_case ();
358 /* Avoid hitting the set_case_str call below. We
359 did it in set_type_range_case. */
364 warning ("Unrecognized case-sensitive setting: \"%s\"", case_sensitive);
367 show_case_command ((char *) NULL, from_tty);
370 /* Set the status of range and type checking and case sensitivity based on
371 the current modes and the current language.
372 If SHOW is non-zero, then print out the current language,
373 type and range checking status. */
375 set_type_range_case (void)
378 if (range_mode == range_mode_auto)
379 range_check = current_language->la_range_check;
381 if (type_mode == type_mode_auto)
382 type_check = current_language->la_type_check;
384 if (case_mode == case_mode_auto)
385 case_sensitivity = current_language->la_case_sensitivity;
392 /* Set current language to (enum language) LANG. Returns previous language. */
395 set_language (enum language lang)
398 enum language prev_language;
400 prev_language = current_language->la_language;
402 for (i = 0; i < languages_size; i++)
404 if (languages[i]->la_language == lang)
406 current_language = languages[i];
407 set_type_range_case ();
413 return prev_language;
416 /* This page contains functions that update the global vars
417 language, type and range. */
425 if (language_mode == language_mode_auto)
426 prefix = "auto; currently ";
428 language = concat (prefix, current_language->la_name, NULL);
434 char *tmp = NULL, *prefix = "";
438 if (type_mode == type_mode_auto)
439 prefix = "auto; currently ";
449 case type_check_warn:
453 error ("Unrecognized type check setting.");
456 type = concat (prefix, tmp, NULL);
462 char *tmp, *pref = "";
464 if (range_mode == range_mode_auto)
465 pref = "auto; currently ";
472 case range_check_off:
475 case range_check_warn:
479 error ("Unrecognized range check setting.");
484 range = concat (pref, tmp, NULL);
490 char *tmp = NULL, *prefix = "";
492 if (case_mode==case_mode_auto)
493 prefix = "auto; currently ";
495 switch (case_sensitivity)
497 case case_sensitive_on:
500 case case_sensitive_off:
504 error ("Unrecognized case-sensitive setting.");
507 xfree (case_sensitive);
508 case_sensitive = concat (prefix, tmp, NULL);
511 /* Print out the current language settings: language, range and
512 type checking. If QUIETLY, print only what has changed. */
515 language_info (int quietly)
517 if (quietly && expected_language == current_language)
520 expected_language = current_language;
521 printf_unfiltered ("Current language: %s\n", language);
522 show_language_command ((char *) 0, 1);
526 printf_unfiltered ("Type checking: %s\n", type);
527 show_type_command ((char *) 0, 1);
528 printf_unfiltered ("Range checking: %s\n", range);
529 show_range_command ((char *) 0, 1);
530 printf_unfiltered ("Case sensitivity: %s\n", case_sensitive);
531 show_case_command ((char *) 0, 1);
535 /* Return the result of a binary operation. */
537 #if 0 /* Currently unused */
540 binop_result_type (struct value *v1, struct value *v2)
543 struct type *t1 = check_typedef (VALUE_TYPE (v1));
544 struct type *t2 = check_typedef (VALUE_TYPE (v2));
546 int l1 = TYPE_LENGTH (t1);
547 int l2 = TYPE_LENGTH (t2);
549 switch (current_language->la_language)
553 if (TYPE_CODE (t1) == TYPE_CODE_FLT)
554 return TYPE_CODE (t2) == TYPE_CODE_FLT && l2 > l1 ?
555 VALUE_TYPE (v2) : VALUE_TYPE (v1);
556 else if (TYPE_CODE (t2) == TYPE_CODE_FLT)
557 return TYPE_CODE (t1) == TYPE_CODE_FLT && l1 > l2 ?
558 VALUE_TYPE (v1) : VALUE_TYPE (v2);
559 else if (TYPE_UNSIGNED (t1) && l1 > l2)
560 return VALUE_TYPE (v1);
561 else if (TYPE_UNSIGNED (t2) && l2 > l1)
562 return VALUE_TYPE (v2);
563 else /* Both are signed. Result is the longer type */
564 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
567 /* If we are doing type-checking, l1 should equal l2, so this is
569 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
572 error ("Missing Chill support in function binop_result_check."); /*FIXME */
574 internal_error (__FILE__, __LINE__, "failed internal consistency check");
575 return (struct type *) 0; /* For lint */
581 /* This page contains functions that return format strings for
582 printf for printing out numbers in different formats */
584 /* Returns the appropriate printf format for hexadecimal
587 local_hex_format_custom (char *pre)
589 static char form[50];
591 strcpy (form, local_hex_format_prefix ());
594 strcat (form, local_hex_format_specifier ());
595 strcat (form, local_hex_format_suffix ());
599 /* Converts a number to hexadecimal and stores it in a static
600 string. Returns a pointer to this string. */
602 local_hex_string (unsigned long num)
606 sprintf (res, local_hex_format (), num);
610 /* Converts a LONGEST number to hexadecimal and stores it in a static
611 string. Returns a pointer to this string. */
613 longest_local_hex_string (LONGEST num)
615 return longest_local_hex_string_custom (num, "l");
618 /* Converts a number to custom hexadecimal and stores it in a static
619 string. Returns a pointer to this string. */
621 local_hex_string_custom (unsigned long num, char *pre)
625 sprintf (res, local_hex_format_custom (pre), num);
629 /* Converts a LONGEST number to custom hexadecimal and stores it in a static
630 string. Returns a pointer to this string. Note that the width parameter
631 should end with "l", e.g. "08l" as with calls to local_hex_string_custom */
634 longest_local_hex_string_custom (LONGEST num, char *width)
636 #define RESULT_BUF_LEN 50
637 static char res2[RESULT_BUF_LEN];
638 char format[RESULT_BUF_LEN];
639 #if !defined (PRINTF_HAS_LONG_LONG)
643 char *pad_char; /* string with one character */
646 char temp_nbr_buf[RESULT_BUF_LEN];
649 #ifndef CC_HAS_LONG_LONG
650 /* If there is no long long, then LONGEST should be just long and we
651 can use local_hex_string_custom
653 return local_hex_string_custom ((unsigned long) num, width);
654 #elif defined (PRINTF_HAS_LONG_LONG)
655 /* Just use printf. */
656 strcpy (format, local_hex_format_prefix ()); /* 0x */
657 strcat (format, "%");
658 strcat (format, width); /* e.g. "08l" */
659 strcat (format, "l"); /* need "ll" for long long */
660 strcat (format, local_hex_format_specifier ()); /* "x" */
661 strcat (format, local_hex_format_suffix ()); /* "" */
662 sprintf (res2, format, num);
664 #else /* !defined (PRINTF_HAS_LONG_LONG) */
665 /* Use phex_nz to print the number into a string, then
666 build the result string from local_hex_format_prefix, padding and
667 the hex representation as indicated by "width". */
668 strcpy (temp_nbr_buf, phex_nz (num, sizeof (num)));
673 if (*parse_ptr == '-')
678 if (*parse_ptr == '0')
682 pad_char = "0"; /* If padding is on the right, it is blank */
684 field_width = atoi (parse_ptr);
685 num_len = strlen (temp_nbr_buf);
686 num_pad_chars = field_width - strlen (temp_nbr_buf); /* possibly negative */
688 if (strlen (local_hex_format_prefix ()) + num_len + num_pad_chars
689 >= RESULT_BUF_LEN) /* paranoia */
690 internal_error (__FILE__, __LINE__,
691 "longest_local_hex_string_custom: insufficient space to store result");
693 strcpy (res2, local_hex_format_prefix ());
696 while (num_pad_chars > 0)
698 strcat (res2, pad_char);
702 strcat (res2, temp_nbr_buf);
705 while (num_pad_chars > 0)
707 strcat (res2, pad_char);
714 } /* longest_local_hex_string_custom */
716 /* Returns the appropriate printf format for octal
719 local_octal_format_custom (char *pre)
721 static char form[50];
723 strcpy (form, local_octal_format_prefix ());
726 strcat (form, local_octal_format_specifier ());
727 strcat (form, local_octal_format_suffix ());
731 /* Returns the appropriate printf format for decimal numbers. */
733 local_decimal_format_custom (char *pre)
735 static char form[50];
737 strcpy (form, local_decimal_format_prefix ());
740 strcat (form, local_decimal_format_specifier ());
741 strcat (form, local_decimal_format_suffix ());
746 /* This page contains functions that are used in type/range checking.
747 They all return zero if the type/range check fails.
749 It is hoped that these will make extending GDB to parse different
750 languages a little easier. These are primarily used in eval.c when
751 evaluating expressions and making sure that their types are correct.
752 Instead of having a mess of conjucted/disjuncted expressions in an "if",
753 the ideas of type can be wrapped up in the following functions.
755 Note that some of them are not currently dependent upon which language
756 is currently being parsed. For example, floats are the same in
757 C and Modula-2 (ie. the only floating point type has TYPE_CODE of
758 TYPE_CODE_FLT), while booleans are different. */
760 /* Returns non-zero if its argument is a simple type. This is the same for
761 both Modula-2 and for C. In the C case, TYPE_CODE_CHAR will never occur,
762 and thus will never cause the failure of the test. */
764 simple_type (struct type *type)
766 CHECK_TYPEDEF (type);
767 switch (TYPE_CODE (type))
773 case TYPE_CODE_RANGE:
782 /* Returns non-zero if its argument is of an ordered type.
783 An ordered type is one in which the elements can be tested for the
784 properties of "greater than", "less than", etc, or for which the
785 operations "increment" or "decrement" make sense. */
787 ordered_type (struct type *type)
789 CHECK_TYPEDEF (type);
790 switch (TYPE_CODE (type))
796 case TYPE_CODE_RANGE:
804 /* Returns non-zero if the two types are the same */
806 same_type (struct type *arg1, struct type *arg2)
808 CHECK_TYPEDEF (type);
809 if (structured_type (arg1) ? !structured_type (arg2) : structured_type (arg2))
810 /* One is structured and one isn't */
812 else if (structured_type (arg1) && structured_type (arg2))
814 else if (numeric_type (arg1) && numeric_type (arg2))
815 return (TYPE_CODE (arg2) == TYPE_CODE (arg1)) &&
816 (TYPE_UNSIGNED (arg1) == TYPE_UNSIGNED (arg2))
822 /* Returns non-zero if the type is integral */
824 integral_type (struct type *type)
826 CHECK_TYPEDEF (type);
827 switch (current_language->la_language)
831 return (TYPE_CODE (type) != TYPE_CODE_INT) &&
832 (TYPE_CODE (type) != TYPE_CODE_ENUM) ? 0 : 1;
834 case language_pascal:
835 return TYPE_CODE (type) != TYPE_CODE_INT ? 0 : 1;
837 error ("Missing Chill support in function integral_type."); /*FIXME */
839 error ("Language not supported.");
843 /* Returns non-zero if the value is numeric */
845 numeric_type (struct type *type)
847 CHECK_TYPEDEF (type);
848 switch (TYPE_CODE (type))
859 /* Returns non-zero if the value is a character type */
861 character_type (struct type *type)
863 CHECK_TYPEDEF (type);
864 switch (current_language->la_language)
868 case language_pascal:
869 return TYPE_CODE (type) != TYPE_CODE_CHAR ? 0 : 1;
873 return (TYPE_CODE (type) == TYPE_CODE_INT) &&
874 TYPE_LENGTH (type) == sizeof (char)
881 /* Returns non-zero if the value is a string type */
883 string_type (struct type *type)
885 CHECK_TYPEDEF (type);
886 switch (current_language->la_language)
890 case language_pascal:
891 return TYPE_CODE (type) != TYPE_CODE_STRING ? 0 : 1;
895 /* C does not have distinct string type. */
902 /* Returns non-zero if the value is a boolean type */
904 boolean_type (struct type *type)
906 CHECK_TYPEDEF (type);
907 if (TYPE_CODE (type) == TYPE_CODE_BOOL)
909 switch (current_language->la_language)
913 /* Might be more cleanly handled by having a TYPE_CODE_INT_NOT_BOOL
914 for CHILL and such languages, or a TYPE_CODE_INT_OR_BOOL for C. */
915 if (TYPE_CODE (type) == TYPE_CODE_INT)
923 /* Returns non-zero if the value is a floating-point type */
925 float_type (struct type *type)
927 CHECK_TYPEDEF (type);
928 return TYPE_CODE (type) == TYPE_CODE_FLT;
931 /* Returns non-zero if the value is a pointer type */
933 pointer_type (struct type *type)
935 return TYPE_CODE (type) == TYPE_CODE_PTR ||
936 TYPE_CODE (type) == TYPE_CODE_REF;
939 /* Returns non-zero if the value is a structured type */
941 structured_type (struct type *type)
943 CHECK_TYPEDEF (type);
944 switch (current_language->la_language)
948 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
949 (TYPE_CODE (type) == TYPE_CODE_UNION) ||
950 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
951 case language_pascal:
952 return (TYPE_CODE(type) == TYPE_CODE_STRUCT) ||
953 (TYPE_CODE(type) == TYPE_CODE_UNION) ||
954 (TYPE_CODE(type) == TYPE_CODE_SET) ||
955 (TYPE_CODE(type) == TYPE_CODE_ARRAY);
957 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
958 (TYPE_CODE (type) == TYPE_CODE_SET) ||
959 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
961 error ("Missing Chill support in function structured_type."); /*FIXME */
969 lang_bool_type (void)
973 switch (current_language->la_language)
976 return builtin_type_chill_bool;
977 case language_fortran:
978 sym = lookup_symbol ("logical", NULL, VAR_NAMESPACE, NULL, NULL);
981 type = SYMBOL_TYPE (sym);
982 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
985 return builtin_type_f_logical_s2;
987 case language_pascal:
988 if (current_language->la_language==language_cplus)
989 {sym = lookup_symbol ("bool", NULL, VAR_NAMESPACE, NULL, NULL);}
991 {sym = lookup_symbol ("boolean", NULL, VAR_NAMESPACE, NULL, NULL);}
994 type = SYMBOL_TYPE (sym);
995 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
998 return builtin_type_bool;
1000 sym = lookup_symbol ("boolean", NULL, VAR_NAMESPACE, NULL, NULL);
1003 type = SYMBOL_TYPE (sym);
1004 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
1007 return java_boolean_type;
1009 return builtin_type_int;
1013 /* This page contains functions that return info about
1014 (struct value) values used in GDB. */
1016 /* Returns non-zero if the value VAL represents a true value. */
1018 value_true (struct value *val)
1020 /* It is possible that we should have some sort of error if a non-boolean
1021 value is used in this context. Possibly dependent on some kind of
1022 "boolean-checking" option like range checking. But it should probably
1023 not depend on the language except insofar as is necessary to identify
1024 a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean
1025 should be an error, probably). */
1026 return !value_logical_not (val);
1029 /* Returns non-zero if the operator OP is defined on
1030 the values ARG1 and ARG2. */
1032 #if 0 /* Currently unused */
1035 binop_type_check (struct value *arg1, struct value *arg2, int op)
1037 struct type *t1, *t2;
1039 /* If we're not checking types, always return success. */
1043 t1 = VALUE_TYPE (arg1);
1045 t2 = VALUE_TYPE (arg2);
1053 if ((numeric_type (t1) && pointer_type (t2)) ||
1054 (pointer_type (t1) && numeric_type (t2)))
1056 warning ("combining pointer and integer.\n");
1062 if (!numeric_type (t1) || !numeric_type (t2))
1063 type_op_error ("Arguments to %s must be numbers.", op);
1064 else if (!same_type (t1, t2))
1065 type_op_error ("Arguments to %s must be of the same type.", op);
1068 case BINOP_LOGICAL_AND:
1069 case BINOP_LOGICAL_OR:
1070 if (!boolean_type (t1) || !boolean_type (t2))
1071 type_op_error ("Arguments to %s must be of boolean type.", op);
1075 if ((pointer_type (t1) && !(pointer_type (t2) || integral_type (t2))) ||
1076 (pointer_type (t2) && !(pointer_type (t1) || integral_type (t1))))
1077 type_op_error ("A pointer can only be compared to an integer or pointer.", op);
1078 else if ((pointer_type (t1) && integral_type (t2)) ||
1079 (integral_type (t1) && pointer_type (t2)))
1081 warning ("combining integer and pointer.\n");
1084 else if (!simple_type (t1) || !simple_type (t2))
1085 type_op_error ("Arguments to %s must be of simple type.", op);
1086 else if (!same_type (t1, t2))
1087 type_op_error ("Arguments to %s must be of the same type.", op);
1092 if (!integral_type (t1) || !integral_type (t2))
1093 type_op_error ("Arguments to %s must be of integral type.", op);
1100 if (!ordered_type (t1) || !ordered_type (t2))
1101 type_op_error ("Arguments to %s must be of ordered type.", op);
1102 else if (!same_type (t1, t2))
1103 type_op_error ("Arguments to %s must be of the same type.", op);
1107 if (pointer_type (t1) && !integral_type (t2))
1108 type_op_error ("A pointer can only be assigned an integer.", op);
1109 else if (pointer_type (t1) && integral_type (t2))
1111 warning ("combining integer and pointer.");
1114 else if (!simple_type (t1) || !simple_type (t2))
1115 type_op_error ("Arguments to %s must be of simple type.", op);
1116 else if (!same_type (t1, t2))
1117 type_op_error ("Arguments to %s must be of the same type.", op);
1121 /* FIXME: Needs to handle bitstrings as well. */
1122 if (!(string_type (t1) || character_type (t1) || integral_type (t1))
1123 || !(string_type (t2) || character_type (t2) || integral_type (t2)))
1124 type_op_error ("Arguments to %s must be strings or characters.", op);
1127 /* Unary checks -- arg2 is null */
1129 case UNOP_LOGICAL_NOT:
1130 if (!boolean_type (t1))
1131 type_op_error ("Argument to %s must be of boolean type.", op);
1136 if (!numeric_type (t1))
1137 type_op_error ("Argument to %s must be of numeric type.", op);
1141 if (integral_type (t1))
1143 warning ("combining pointer and integer.\n");
1146 else if (!pointer_type (t1))
1147 type_op_error ("Argument to %s must be a pointer.", op);
1150 case UNOP_PREINCREMENT:
1151 case UNOP_POSTINCREMENT:
1152 case UNOP_PREDECREMENT:
1153 case UNOP_POSTDECREMENT:
1154 if (!ordered_type (t1))
1155 type_op_error ("Argument to %s must be of an ordered type.", op);
1159 /* Ok. The following operators have different meanings in
1160 different languages. */
1161 switch (current_language->la_language)
1165 case language_cplus:
1169 if (!numeric_type (t1) || !numeric_type (t2))
1170 type_op_error ("Arguments to %s must be numbers.", op);
1181 if (!float_type (t1) || !float_type (t2))
1182 type_op_error ("Arguments to %s must be floating point numbers.", op);
1185 if (!integral_type (t1) || !integral_type (t2))
1186 type_op_error ("Arguments to %s must be of integral type.", op);
1192 case language_pascal:
1196 if (!float_type(t1) && !float_type(t2))
1197 type_op_error ("Arguments to %s must be floating point numbers.",op);
1200 if (!integral_type(t1) || !integral_type(t2))
1201 type_op_error ("Arguments to %s must be of integral type.",op);
1207 case language_chill:
1208 error ("Missing Chill support in function binop_type_check."); /*FIXME */
1218 /* This page contains functions for the printing out of
1219 error messages that occur during type- and range-
1222 /* Prints the format string FMT with the operator as a string
1223 corresponding to the opcode OP. If FATAL is non-zero, then
1224 this is an error and error () is called. Otherwise, it is
1225 a warning and printf() is called. */
1227 op_error (char *fmt, enum exp_opcode op, int fatal)
1230 error (fmt, op_string (op));
1233 warning (fmt, op_string (op));
1237 /* These are called when a language fails a type- or range-check.
1238 The first argument should be a printf()-style format string, and
1239 the rest of the arguments should be its arguments. If
1240 [type|range]_check is [type|range]_check_on, then return_to_top_level()
1241 is called in the style of error (). Otherwise, the message is prefixed
1242 by the value of warning_pre_print and we do not return to the top level. */
1245 type_error (char *string,...)
1248 va_start (args, string);
1250 if (type_check == type_check_warn)
1251 fprintf_filtered (gdb_stderr, warning_pre_print);
1255 vfprintf_filtered (gdb_stderr, string, args);
1256 fprintf_filtered (gdb_stderr, "\n");
1258 if (type_check == type_check_on)
1259 return_to_top_level (RETURN_ERROR);
1263 range_error (char *string,...)
1266 va_start (args, string);
1268 if (range_check == range_check_warn)
1269 fprintf_filtered (gdb_stderr, warning_pre_print);
1273 vfprintf_filtered (gdb_stderr, string, args);
1274 fprintf_filtered (gdb_stderr, "\n");
1276 if (range_check == range_check_on)
1277 return_to_top_level (RETURN_ERROR);
1281 /* This page contains miscellaneous functions */
1283 /* Return the language enum for a given language string. */
1286 language_enum (char *str)
1290 for (i = 0; i < languages_size; i++)
1291 if (STREQ (languages[i]->la_name, str))
1292 return languages[i]->la_language;
1294 return language_unknown;
1297 /* Return the language struct for a given language enum. */
1299 const struct language_defn *
1300 language_def (enum language lang)
1304 for (i = 0; i < languages_size; i++)
1306 if (languages[i]->la_language == lang)
1308 return languages[i];
1314 /* Return the language as a string */
1316 language_str (enum language lang)
1320 for (i = 0; i < languages_size; i++)
1322 if (languages[i]->la_language == lang)
1324 return languages[i]->la_name;
1331 set_check (char *ignore, int from_tty)
1334 "\"set check\" must be followed by the name of a check subcommand.\n");
1335 help_list (setchecklist, "set check ", -1, gdb_stdout);
1339 show_check (char *ignore, int from_tty)
1341 cmd_show_list (showchecklist, from_tty, "");
1344 /* Add a language to the set of known languages. */
1347 add_language (const struct language_defn *lang)
1349 if (lang->la_magic != LANG_MAGIC)
1351 fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n",
1353 internal_error (__FILE__, __LINE__, "failed internal consistency check");
1358 languages_allocsize = DEFAULT_ALLOCSIZE;
1359 languages = (const struct language_defn **) xmalloc
1360 (languages_allocsize * sizeof (*languages));
1362 if (languages_size >= languages_allocsize)
1364 languages_allocsize *= 2;
1365 languages = (const struct language_defn **) xrealloc ((char *) languages,
1366 languages_allocsize * sizeof (*languages));
1368 languages[languages_size++] = lang;
1371 /* Define the language that is no language. */
1374 unk_lang_parser (void)
1380 unk_lang_error (char *msg)
1382 error ("Attempted to parse an expression with unknown language");
1386 unk_lang_emit_char (register int c, struct ui_file *stream, int quoter)
1388 error ("internal error - unimplemented function unk_lang_emit_char called.");
1392 unk_lang_printchar (register int c, struct ui_file *stream)
1394 error ("internal error - unimplemented function unk_lang_printchar called.");
1398 unk_lang_printstr (struct ui_file *stream, char *string, unsigned int length,
1399 int width, int force_ellipses)
1401 error ("internal error - unimplemented function unk_lang_printstr called.");
1404 static struct type *
1405 unk_lang_create_fundamental_type (struct objfile *objfile, int typeid)
1407 error ("internal error - unimplemented function unk_lang_create_fundamental_type called.");
1411 unk_lang_print_type (struct type *type, char *varstring, struct ui_file *stream,
1412 int show, int level)
1414 error ("internal error - unimplemented function unk_lang_print_type called.");
1418 unk_lang_val_print (struct type *type, char *valaddr, int embedded_offset,
1419 CORE_ADDR address, struct ui_file *stream, int format,
1420 int deref_ref, int recurse, enum val_prettyprint pretty)
1422 error ("internal error - unimplemented function unk_lang_val_print called.");
1426 unk_lang_value_print (struct value *val, struct ui_file *stream, int format,
1427 enum val_prettyprint pretty)
1429 error ("internal error - unimplemented function unk_lang_value_print called.");
1432 static struct type **CONST_PTR (unknown_builtin_types[]) =
1436 static const struct op_print unk_op_print_tab[] =
1438 {NULL, OP_NULL, PREC_NULL, 0}
1441 const struct language_defn unknown_language_defn =
1445 &unknown_builtin_types[0],
1451 evaluate_subexp_standard,
1452 unk_lang_printchar, /* Print character constant */
1455 unk_lang_create_fundamental_type,
1456 unk_lang_print_type, /* Print a type using appropriate syntax */
1457 unk_lang_val_print, /* Print a value using appropriate syntax */
1458 unk_lang_value_print, /* Print a top-level value */
1459 {"", "", "", ""}, /* Binary format info */
1460 {"0%lo", "0", "o", ""}, /* Octal format info */
1461 {"%ld", "", "d", ""}, /* Decimal format info */
1462 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1463 unk_op_print_tab, /* expression operators for printing */
1464 1, /* c-style arrays */
1465 0, /* String lower bound */
1466 &builtin_type_char, /* Type of string elements */
1470 /* These two structs define fake entries for the "local" and "auto" options. */
1471 const struct language_defn auto_language_defn =
1475 &unknown_builtin_types[0],
1481 evaluate_subexp_standard,
1482 unk_lang_printchar, /* Print character constant */
1485 unk_lang_create_fundamental_type,
1486 unk_lang_print_type, /* Print a type using appropriate syntax */
1487 unk_lang_val_print, /* Print a value using appropriate syntax */
1488 unk_lang_value_print, /* Print a top-level value */
1489 {"", "", "", ""}, /* Binary format info */
1490 {"0%lo", "0", "o", ""}, /* Octal format info */
1491 {"%ld", "", "d", ""}, /* Decimal format info */
1492 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1493 unk_op_print_tab, /* expression operators for printing */
1494 1, /* c-style arrays */
1495 0, /* String lower bound */
1496 &builtin_type_char, /* Type of string elements */
1500 const struct language_defn local_language_defn =
1504 &unknown_builtin_types[0],
1510 evaluate_subexp_standard,
1511 unk_lang_printchar, /* Print character constant */
1514 unk_lang_create_fundamental_type,
1515 unk_lang_print_type, /* Print a type using appropriate syntax */
1516 unk_lang_val_print, /* Print a value using appropriate syntax */
1517 unk_lang_value_print, /* Print a top-level value */
1518 {"", "", "", ""}, /* Binary format info */
1519 {"0%lo", "0", "o", ""}, /* Octal format info */
1520 {"%ld", "", "d", ""}, /* Decimal format info */
1521 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1522 unk_op_print_tab, /* expression operators for printing */
1523 1, /* c-style arrays */
1524 0, /* String lower bound */
1525 &builtin_type_char, /* Type of string elements */
1529 /* Initialize the language routines */
1532 _initialize_language (void)
1534 struct cmd_list_element *set, *show;
1536 /* GDB commands for language specific stuff */
1538 set = add_set_cmd ("language", class_support, var_string_noescape,
1540 "Set the current source language.",
1542 show = add_show_from_set (set, &showlist);
1543 set->function.cfunc = set_language_command;
1544 show->function.cfunc = show_language_command;
1546 add_prefix_cmd ("check", no_class, set_check,
1547 "Set the status of the type/range checker",
1548 &setchecklist, "set check ", 0, &setlist);
1549 add_alias_cmd ("c", "check", no_class, 1, &setlist);
1550 add_alias_cmd ("ch", "check", no_class, 1, &setlist);
1552 add_prefix_cmd ("check", no_class, show_check,
1553 "Show the status of the type/range checker",
1554 &showchecklist, "show check ", 0, &showlist);
1555 add_alias_cmd ("c", "check", no_class, 1, &showlist);
1556 add_alias_cmd ("ch", "check", no_class, 1, &showlist);
1558 set = add_set_cmd ("type", class_support, var_string_noescape,
1560 "Set type checking. (on/warn/off/auto)",
1562 show = add_show_from_set (set, &showchecklist);
1563 set->function.cfunc = set_type_command;
1564 show->function.cfunc = show_type_command;
1566 set = add_set_cmd ("range", class_support, var_string_noescape,
1568 "Set range checking. (on/warn/off/auto)",
1570 show = add_show_from_set (set, &showchecklist);
1571 set->function.cfunc = set_range_command;
1572 show->function.cfunc = show_range_command;
1574 set = add_set_cmd ("case-sensitive", class_support, var_string_noescape,
1575 (char *) &case_sensitive,
1576 "Set case sensitivity in name search. (on/off/auto)\n\
1577 For Fortran the default is off; for other languages the default is on.",
1579 show = add_show_from_set (set, &showlist);
1580 set->function.cfunc = set_case_command;
1581 show->function.cfunc = show_case_command;
1583 add_language (&unknown_language_defn);
1584 add_language (&local_language_defn);
1585 add_language (&auto_language_defn);
1587 language = savestring ("auto", strlen ("auto"));
1588 type = savestring ("auto", strlen ("auto"));
1589 range = savestring ("auto", strlen ("auto"));
1590 case_sensitive = savestring ("auto",strlen ("auto"));
1592 /* Have the above take effect */
1593 set_language (language_auto);