a32796db8a57c07e20a2e59bcb1aa34fb8fbd322
[binutils-gdb.git] / gdb / language.c
1 /* Multiple source language support for GDB.
2 Copyright 1991, 1992, 2000 Free Software Foundation, Inc.
3 Contributed by the Department of Computer Science at the State University
4 of New York at Buffalo.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
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. */
26
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. */
30
31 #include "defs.h"
32 #include <ctype.h>
33 #include "gdb_string.h"
34
35 #include "symtab.h"
36 #include "gdbtypes.h"
37 #include "value.h"
38 #include "gdbcmd.h"
39 #include "frame.h"
40 #include "expression.h"
41 #include "language.h"
42 #include "target.h"
43 #include "parser-defs.h"
44
45 extern void _initialize_language PARAMS ((void));
46
47 static void
48 show_language_command PARAMS ((char *, int));
49
50 static void
51 set_language_command PARAMS ((char *, int));
52
53 static void
54 show_type_command PARAMS ((char *, int));
55
56 static void
57 set_type_command PARAMS ((char *, int));
58
59 static void
60 show_range_command PARAMS ((char *, int));
61
62 static void
63 set_range_command PARAMS ((char *, int));
64
65 static void
66 set_range_str PARAMS ((void));
67
68 static void
69 set_type_str PARAMS ((void));
70
71 static void
72 set_lang_str PARAMS ((void));
73
74 static void
75 unk_lang_error PARAMS ((char *));
76
77 static int
78 unk_lang_parser PARAMS ((void));
79
80 static void
81 show_check PARAMS ((char *, int));
82
83 static void
84 set_check PARAMS ((char *, int));
85
86 static void
87 set_type_range PARAMS ((void));
88
89 static void unk_lang_emit_char (int c, struct ui_file *stream, int quoter);
90
91 static void unk_lang_printchar (int c, struct ui_file *stream);
92
93 static void unk_lang_printstr (struct ui_file * stream, char *string,
94 unsigned int length, int width,
95 int force_ellipses);
96
97 static struct type *
98 unk_lang_create_fundamental_type PARAMS ((struct objfile *, int));
99
100 static void unk_lang_print_type (struct type *, char *, struct ui_file *,
101 int, int);
102
103 static int unk_lang_val_print (struct type *, char *, int, CORE_ADDR,
104 struct ui_file *, int, int, int,
105 enum val_prettyprint);
106
107 static int unk_lang_value_print (value_ptr, struct ui_file *, int, enum val_prettyprint);
108
109 /* Forward declaration */
110 extern const struct language_defn unknown_language_defn;
111 extern char *warning_pre_print;
112
113 /* The current (default at startup) state of type and range checking.
114 (If the modes are set to "auto", though, these are changed based
115 on the default language at startup, and then again based on the
116 language of the first source file. */
117
118 enum range_mode range_mode = range_mode_auto;
119 enum range_check range_check = range_check_off;
120 enum type_mode type_mode = type_mode_auto;
121 enum type_check type_check = type_check_off;
122
123 /* The current language and language_mode (see language.h) */
124
125 const struct language_defn *current_language = &unknown_language_defn;
126 enum language_mode language_mode = language_mode_auto;
127
128 /* The language that the user expects to be typing in (the language
129 of main(), or the last language we notified them about, or C). */
130
131 const struct language_defn *expected_language;
132
133 /* The list of supported languages. The list itself is malloc'd. */
134
135 static const struct language_defn **languages;
136 static unsigned languages_size;
137 static unsigned languages_allocsize;
138 #define DEFAULT_ALLOCSIZE 4
139
140 /* The "set language/type/range" commands all put stuff in these
141 buffers. This is to make them work as set/show commands. The
142 user's string is copied here, then the set_* commands look at
143 them and update them to something that looks nice when it is
144 printed out. */
145
146 static char *language;
147 static char *type;
148 static char *range;
149
150 /* Warning issued when current_language and the language of the current
151 frame do not match. */
152 char lang_frame_mismatch_warn[] =
153 "Warning: the current language does not match this frame.";
154 \f
155
156 /* This page contains the functions corresponding to GDB commands
157 and their helpers. */
158
159 /* Show command. Display a warning if the language set
160 does not match the frame. */
161 static void
162 show_language_command (ignore, from_tty)
163 char *ignore;
164 int from_tty;
165 {
166 enum language flang; /* The language of the current frame */
167
168 flang = get_frame_language ();
169 if (flang != language_unknown &&
170 language_mode == language_mode_manual &&
171 current_language->la_language != flang)
172 printf_filtered ("%s\n", lang_frame_mismatch_warn);
173 }
174
175 /* Set command. Change the current working language. */
176 static void
177 set_language_command (ignore, from_tty)
178 char *ignore;
179 int from_tty;
180 {
181 int i;
182 enum language flang;
183 char *err_lang;
184
185 if (!language || !language[0])
186 {
187 printf_unfiltered ("The currently understood settings are:\n\n");
188 printf_unfiltered ("local or auto Automatic setting based on source file\n");
189
190 for (i = 0; i < languages_size; ++i)
191 {
192 /* Already dealt with these above. */
193 if (languages[i]->la_language == language_unknown
194 || languages[i]->la_language == language_auto)
195 continue;
196
197 /* FIXME for now assume that the human-readable name is just
198 a capitalization of the internal name. */
199 printf_unfiltered ("%-16s Use the %c%s language\n",
200 languages[i]->la_name,
201 /* Capitalize first letter of language
202 name. */
203 toupper (languages[i]->la_name[0]),
204 languages[i]->la_name + 1);
205 }
206 /* Restore the silly string. */
207 set_language (current_language->la_language);
208 return;
209 }
210
211 /* Search the list of languages for a match. */
212 for (i = 0; i < languages_size; i++)
213 {
214 if (STREQ (languages[i]->la_name, language))
215 {
216 /* Found it! Go into manual mode, and use this language. */
217 if (languages[i]->la_language == language_auto)
218 {
219 /* Enter auto mode. Set to the current frame's language, if known. */
220 language_mode = language_mode_auto;
221 flang = get_frame_language ();
222 if (flang != language_unknown)
223 set_language (flang);
224 expected_language = current_language;
225 return;
226 }
227 else
228 {
229 /* Enter manual mode. Set the specified language. */
230 language_mode = language_mode_manual;
231 current_language = languages[i];
232 set_type_range ();
233 set_lang_str ();
234 expected_language = current_language;
235 return;
236 }
237 }
238 }
239
240 /* Reset the language (esp. the global string "language") to the
241 correct values. */
242 err_lang = savestring (language, strlen (language));
243 make_cleanup (free, err_lang); /* Free it after error */
244 set_language (current_language->la_language);
245 error ("Unknown language `%s'.", err_lang);
246 }
247
248 /* Show command. Display a warning if the type setting does
249 not match the current language. */
250 static void
251 show_type_command (ignore, from_tty)
252 char *ignore;
253 int from_tty;
254 {
255 if (type_check != current_language->la_type_check)
256 printf_unfiltered (
257 "Warning: the current type check setting does not match the language.\n");
258 }
259
260 /* Set command. Change the setting for type checking. */
261 static void
262 set_type_command (ignore, from_tty)
263 char *ignore;
264 int from_tty;
265 {
266 if (STREQ (type, "on"))
267 {
268 type_check = type_check_on;
269 type_mode = type_mode_manual;
270 }
271 else if (STREQ (type, "warn"))
272 {
273 type_check = type_check_warn;
274 type_mode = type_mode_manual;
275 }
276 else if (STREQ (type, "off"))
277 {
278 type_check = type_check_off;
279 type_mode = type_mode_manual;
280 }
281 else if (STREQ (type, "auto"))
282 {
283 type_mode = type_mode_auto;
284 set_type_range ();
285 /* Avoid hitting the set_type_str call below. We
286 did it in set_type_range. */
287 return;
288 }
289 else
290 {
291 warning ("Unrecognized type check setting: \"%s\"", type);
292 }
293 set_type_str ();
294 show_type_command ((char *) NULL, from_tty);
295 }
296
297 /* Show command. Display a warning if the range setting does
298 not match the current language. */
299 static void
300 show_range_command (ignore, from_tty)
301 char *ignore;
302 int from_tty;
303 {
304
305 if (range_check != current_language->la_range_check)
306 printf_unfiltered (
307 "Warning: the current range check setting does not match the language.\n");
308 }
309
310 /* Set command. Change the setting for range checking. */
311 static void
312 set_range_command (ignore, from_tty)
313 char *ignore;
314 int from_tty;
315 {
316 if (STREQ (range, "on"))
317 {
318 range_check = range_check_on;
319 range_mode = range_mode_manual;
320 }
321 else if (STREQ (range, "warn"))
322 {
323 range_check = range_check_warn;
324 range_mode = range_mode_manual;
325 }
326 else if (STREQ (range, "off"))
327 {
328 range_check = range_check_off;
329 range_mode = range_mode_manual;
330 }
331 else if (STREQ (range, "auto"))
332 {
333 range_mode = range_mode_auto;
334 set_type_range ();
335 /* Avoid hitting the set_range_str call below. We
336 did it in set_type_range. */
337 return;
338 }
339 else
340 {
341 warning ("Unrecognized range check setting: \"%s\"", range);
342 }
343 set_range_str ();
344 show_range_command ((char *) 0, from_tty);
345 }
346
347 /* Set the status of range and type checking based on
348 the current modes and the current language.
349 If SHOW is non-zero, then print out the current language,
350 type and range checking status. */
351 static void
352 set_type_range ()
353 {
354
355 if (range_mode == range_mode_auto)
356 range_check = current_language->la_range_check;
357
358 if (type_mode == type_mode_auto)
359 type_check = current_language->la_type_check;
360
361 set_type_str ();
362 set_range_str ();
363 }
364
365 /* Set current language to (enum language) LANG. Returns previous language. */
366
367 enum language
368 set_language (lang)
369 enum language lang;
370 {
371 int i;
372 enum language prev_language;
373
374 prev_language = current_language->la_language;
375
376 for (i = 0; i < languages_size; i++)
377 {
378 if (languages[i]->la_language == lang)
379 {
380 current_language = languages[i];
381 set_type_range ();
382 set_lang_str ();
383 break;
384 }
385 }
386
387 return prev_language;
388 }
389 \f
390 /* This page contains functions that update the global vars
391 language, type and range. */
392 static void
393 set_lang_str ()
394 {
395 char *prefix = "";
396
397 free (language);
398 if (language_mode == language_mode_auto)
399 prefix = "auto; currently ";
400
401 language = concat (prefix, current_language->la_name, NULL);
402 }
403
404 static void
405 set_type_str ()
406 {
407 char *tmp = NULL, *prefix = "";
408
409 free (type);
410 if (type_mode == type_mode_auto)
411 prefix = "auto; currently ";
412
413 switch (type_check)
414 {
415 case type_check_on:
416 tmp = "on";
417 break;
418 case type_check_off:
419 tmp = "off";
420 break;
421 case type_check_warn:
422 tmp = "warn";
423 break;
424 default:
425 error ("Unrecognized type check setting.");
426 }
427
428 type = concat (prefix, tmp, NULL);
429 }
430
431 static void
432 set_range_str ()
433 {
434 char *tmp, *pref = "";
435
436 if (range_mode == range_mode_auto)
437 pref = "auto; currently ";
438
439 switch (range_check)
440 {
441 case range_check_on:
442 tmp = "on";
443 break;
444 case range_check_off:
445 tmp = "off";
446 break;
447 case range_check_warn:
448 tmp = "warn";
449 break;
450 default:
451 error ("Unrecognized range check setting.");
452 }
453
454 free (range);
455 range = concat (pref, tmp, NULL);
456 }
457
458
459 /* Print out the current language settings: language, range and
460 type checking. If QUIETLY, print only what has changed. */
461
462 void
463 language_info (quietly)
464 int quietly;
465 {
466 if (quietly && expected_language == current_language)
467 return;
468
469 expected_language = current_language;
470 printf_unfiltered ("Current language: %s\n", language);
471 show_language_command ((char *) 0, 1);
472
473 if (!quietly)
474 {
475 printf_unfiltered ("Type checking: %s\n", type);
476 show_type_command ((char *) 0, 1);
477 printf_unfiltered ("Range checking: %s\n", range);
478 show_range_command ((char *) 0, 1);
479 }
480 }
481 \f
482 /* Return the result of a binary operation. */
483
484 #if 0 /* Currently unused */
485
486 struct type *
487 binop_result_type (v1, v2)
488 value_ptr v1, v2;
489 {
490 int size, uns;
491 struct type *t1 = check_typedef (VALUE_TYPE (v1));
492 struct type *t2 = check_typedef (VALUE_TYPE (v2));
493
494 int l1 = TYPE_LENGTH (t1);
495 int l2 = TYPE_LENGTH (t2);
496
497 switch (current_language->la_language)
498 {
499 case language_c:
500 case language_cplus:
501 if (TYPE_CODE (t1) == TYPE_CODE_FLT)
502 return TYPE_CODE (t2) == TYPE_CODE_FLT && l2 > l1 ?
503 VALUE_TYPE (v2) : VALUE_TYPE (v1);
504 else if (TYPE_CODE (t2) == TYPE_CODE_FLT)
505 return TYPE_CODE (t1) == TYPE_CODE_FLT && l1 > l2 ?
506 VALUE_TYPE (v1) : VALUE_TYPE (v2);
507 else if (TYPE_UNSIGNED (t1) && l1 > l2)
508 return VALUE_TYPE (v1);
509 else if (TYPE_UNSIGNED (t2) && l2 > l1)
510 return VALUE_TYPE (v2);
511 else /* Both are signed. Result is the longer type */
512 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
513 break;
514 case language_m2:
515 /* If we are doing type-checking, l1 should equal l2, so this is
516 not needed. */
517 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
518 break;
519 case language_chill:
520 error ("Missing Chill support in function binop_result_check."); /*FIXME */
521 }
522 abort ();
523 return (struct type *) 0; /* For lint */
524 }
525
526 #endif /* 0 */
527 \f
528
529 /* This page contains functions that return format strings for
530 printf for printing out numbers in different formats */
531
532 /* Returns the appropriate printf format for hexadecimal
533 numbers. */
534 char *
535 local_hex_format_custom (pre)
536 char *pre;
537 {
538 static char form[50];
539
540 strcpy (form, local_hex_format_prefix ());
541 strcat (form, "%");
542 strcat (form, pre);
543 strcat (form, local_hex_format_specifier ());
544 strcat (form, local_hex_format_suffix ());
545 return form;
546 }
547
548 #if 0
549 /* FIXME: cagney/2000-03-04: This function does not appear to be used.
550 It can be deleted once 5.0 has been released. */
551 /* FIXME: cagney/2000-03-04: This code assumes that the compiler
552 supports ``long long''. */
553 /* Converts a number to hexadecimal (without leading "0x") and stores it in a
554 static string. Returns a pointer to this string. */
555
556 char *
557 longest_raw_hex_string (num)
558 LONGEST num;
559 {
560 static char res_longest_raw_hex_string[50];
561 long long ll = num; /* MERGEBUG ?? see below */
562 res_longest_raw_hex_string[0] = 0;
563 /* MERGEBUG ?? As a quick fix I am replacing this with sprintf
564 strcat_address_numeric (num, 0, res_longest_raw_hex_string, 50);
565 */
566
567 sprintf (res_longest_raw_hex_string, "%llx", ll);
568 return res_longest_raw_hex_string;
569 }
570 #endif
571
572 /* Converts a number to hexadecimal and stores it in a static
573 string. Returns a pointer to this string. */
574 char *
575 local_hex_string (num)
576 unsigned long num;
577 {
578 static char res[50];
579
580 sprintf (res, local_hex_format (), num);
581 return res;
582 }
583
584 /* Converts a LONGEST number to hexadecimal and stores it in a static
585 string. Returns a pointer to this string. */
586 char *
587 longest_local_hex_string (num)
588 LONGEST num;
589 {
590 return longest_local_hex_string_custom (num, "l");
591 }
592
593 /* Converts a number to custom hexadecimal and stores it in a static
594 string. Returns a pointer to this string. */
595 char *
596 local_hex_string_custom (num, pre)
597 unsigned long num;
598 char *pre;
599 {
600 static char res[50];
601
602 sprintf (res, local_hex_format_custom (pre), num);
603 return res;
604 }
605
606 /* Converts a LONGEST number to custom hexadecimal and stores it in a static
607 string. Returns a pointer to this string. Note that the width parameter
608 should end with "l", e.g. "08l" as with calls to local_hex_string_custom */
609
610 char *
611 longest_local_hex_string_custom (num, width)
612 LONGEST num;
613 char *width;
614 {
615 #define RESULT_BUF_LEN 50
616 static char res2[RESULT_BUF_LEN];
617 char format[RESULT_BUF_LEN];
618 #if !defined (PRINTF_HAS_LONG_LONG)
619 int field_width;
620 int num_len;
621 int num_pad_chars;
622 char *pad_char; /* string with one character */
623 int pad_on_left;
624 char *parse_ptr;
625 char temp_nbr_buf[RESULT_BUF_LEN];
626 #endif
627
628 #ifndef CC_HAS_LONG_LONG
629 /* If there is no long long, then LONGEST should be just long and we
630 can use local_hex_string_custom
631 */
632 return local_hex_string_custom ((unsigned long) num, width);
633 #endif
634
635 #if defined (PRINTF_HAS_LONG_LONG)
636 /* Just use printf. */
637 strcpy (format, local_hex_format_prefix ()); /* 0x */
638 strcat (format, "%");
639 strcat (format, width); /* e.g. "08l" */
640 strcat (format, "l"); /* need "ll" for long long */
641 strcat (format, local_hex_format_specifier ()); /* "x" */
642 strcat (format, local_hex_format_suffix ()); /* "" */
643 sprintf (res2, format, num);
644 return res2;
645 #else /* !defined (PRINTF_HAS_LONG_LONG) */
646 /* Use strcat_address_numeric to print the number into a string, then
647 build the result string from local_hex_format_prefix, padding and
648 the hex representation as indicated by "width". */
649
650 temp_nbr_buf[0] = 0;
651 /* With use_local == 0, we don't get the leading "0x" prefix. */
652 /* MERGEBUG ?? As a quick fix I am replacing this call to
653 strcat_address_numeric with sprintf
654 strcat_address_numeric(num, 0, temp_nbr_buf, RESULT_BUF_LEN);
655 */
656
657 {
658 long long ll = num;
659 sprintf (temp_nbr_buf, "%llx", ll);
660 }
661 /* parse width */
662 parse_ptr = width;
663 pad_on_left = 1;
664 pad_char = " ";
665 if (*parse_ptr == '-')
666 {
667 parse_ptr++;
668 pad_on_left = 0;
669 }
670 if (*parse_ptr == '0')
671 {
672 parse_ptr++;
673 if (pad_on_left)
674 pad_char = "0"; /* If padding is on the right, it is blank */
675 }
676 field_width = atoi (parse_ptr);
677 num_len = strlen (temp_nbr_buf);
678 num_pad_chars = field_width - strlen (temp_nbr_buf); /* possibly negative */
679
680 if (strlen (local_hex_format_prefix ()) + num_len + num_pad_chars
681 < RESULT_BUF_LEN) /* paranoia */
682 internal_error ("longest_local_hex_string_custom: insufficient space to store result");
683
684 strcpy (res2, local_hex_format_prefix ());
685 if (pad_on_left)
686 {
687 while (num_pad_chars > 0)
688 {
689 strcat (res2, pad_char);
690 num_pad_chars--;
691 }
692 }
693 strcat (res2, temp_nbr_buf);
694 if (!pad_on_left)
695 {
696 while (num_pad_chars > 0)
697 {
698 strcat (res2, pad_char);
699 num_pad_chars--;
700 }
701 }
702 return res2;
703 #endif
704
705 } /* longest_local_hex_string_custom */
706
707 /* Returns the appropriate printf format for octal
708 numbers. */
709 char *
710 local_octal_format_custom (pre)
711 char *pre;
712 {
713 static char form[50];
714
715 strcpy (form, local_octal_format_prefix ());
716 strcat (form, "%");
717 strcat (form, pre);
718 strcat (form, local_octal_format_specifier ());
719 strcat (form, local_octal_format_suffix ());
720 return form;
721 }
722
723 /* Returns the appropriate printf format for decimal numbers. */
724 char *
725 local_decimal_format_custom (pre)
726 char *pre;
727 {
728 static char form[50];
729
730 strcpy (form, local_decimal_format_prefix ());
731 strcat (form, "%");
732 strcat (form, pre);
733 strcat (form, local_decimal_format_specifier ());
734 strcat (form, local_decimal_format_suffix ());
735 return form;
736 }
737 \f
738 #if 0
739 /* This page contains functions that are used in type/range checking.
740 They all return zero if the type/range check fails.
741
742 It is hoped that these will make extending GDB to parse different
743 languages a little easier. These are primarily used in eval.c when
744 evaluating expressions and making sure that their types are correct.
745 Instead of having a mess of conjucted/disjuncted expressions in an "if",
746 the ideas of type can be wrapped up in the following functions.
747
748 Note that some of them are not currently dependent upon which language
749 is currently being parsed. For example, floats are the same in
750 C and Modula-2 (ie. the only floating point type has TYPE_CODE of
751 TYPE_CODE_FLT), while booleans are different. */
752
753 /* Returns non-zero if its argument is a simple type. This is the same for
754 both Modula-2 and for C. In the C case, TYPE_CODE_CHAR will never occur,
755 and thus will never cause the failure of the test. */
756 int
757 simple_type (type)
758 struct type *type;
759 {
760 CHECK_TYPEDEF (type);
761 switch (TYPE_CODE (type))
762 {
763 case TYPE_CODE_INT:
764 case TYPE_CODE_CHAR:
765 case TYPE_CODE_ENUM:
766 case TYPE_CODE_FLT:
767 case TYPE_CODE_RANGE:
768 case TYPE_CODE_BOOL:
769 return 1;
770
771 default:
772 return 0;
773 }
774 }
775
776 /* Returns non-zero if its argument is of an ordered type.
777 An ordered type is one in which the elements can be tested for the
778 properties of "greater than", "less than", etc, or for which the
779 operations "increment" or "decrement" make sense. */
780 int
781 ordered_type (type)
782 struct type *type;
783 {
784 CHECK_TYPEDEF (type);
785 switch (TYPE_CODE (type))
786 {
787 case TYPE_CODE_INT:
788 case TYPE_CODE_CHAR:
789 case TYPE_CODE_ENUM:
790 case TYPE_CODE_FLT:
791 case TYPE_CODE_RANGE:
792 return 1;
793
794 default:
795 return 0;
796 }
797 }
798
799 /* Returns non-zero if the two types are the same */
800 int
801 same_type (arg1, arg2)
802 struct type *arg1, *arg2;
803 {
804 CHECK_TYPEDEF (type);
805 if (structured_type (arg1) ? !structured_type (arg2) : structured_type (arg2))
806 /* One is structured and one isn't */
807 return 0;
808 else if (structured_type (arg1) && structured_type (arg2))
809 return arg1 == arg2;
810 else if (numeric_type (arg1) && numeric_type (arg2))
811 return (TYPE_CODE (arg2) == TYPE_CODE (arg1)) &&
812 (TYPE_UNSIGNED (arg1) == TYPE_UNSIGNED (arg2))
813 ? 1 : 0;
814 else
815 return arg1 == arg2;
816 }
817
818 /* Returns non-zero if the type is integral */
819 int
820 integral_type (type)
821 struct type *type;
822 {
823 CHECK_TYPEDEF (type);
824 switch (current_language->la_language)
825 {
826 case language_c:
827 case language_cplus:
828 return (TYPE_CODE (type) != TYPE_CODE_INT) &&
829 (TYPE_CODE (type) != TYPE_CODE_ENUM) ? 0 : 1;
830 case language_m2:
831 return TYPE_CODE (type) != TYPE_CODE_INT ? 0 : 1;
832 case language_chill:
833 error ("Missing Chill support in function integral_type."); /*FIXME */
834 default:
835 error ("Language not supported.");
836 }
837 }
838
839 /* Returns non-zero if the value is numeric */
840 int
841 numeric_type (type)
842 struct type *type;
843 {
844 CHECK_TYPEDEF (type);
845 switch (TYPE_CODE (type))
846 {
847 case TYPE_CODE_INT:
848 case TYPE_CODE_FLT:
849 return 1;
850
851 default:
852 return 0;
853 }
854 }
855
856 /* Returns non-zero if the value is a character type */
857 int
858 character_type (type)
859 struct type *type;
860 {
861 CHECK_TYPEDEF (type);
862 switch (current_language->la_language)
863 {
864 case language_chill:
865 case language_m2:
866 return TYPE_CODE (type) != TYPE_CODE_CHAR ? 0 : 1;
867
868 case language_c:
869 case language_cplus:
870 return (TYPE_CODE (type) == TYPE_CODE_INT) &&
871 TYPE_LENGTH (type) == sizeof (char)
872 ? 1 : 0;
873 default:
874 return (0);
875 }
876 }
877
878 /* Returns non-zero if the value is a string type */
879 int
880 string_type (type)
881 struct type *type;
882 {
883 CHECK_TYPEDEF (type);
884 switch (current_language->la_language)
885 {
886 case language_chill:
887 case language_m2:
888 return TYPE_CODE (type) != TYPE_CODE_STRING ? 0 : 1;
889
890 case language_c:
891 case language_cplus:
892 /* C does not have distinct string type. */
893 return (0);
894 default:
895 return (0);
896 }
897 }
898
899 /* Returns non-zero if the value is a boolean type */
900 int
901 boolean_type (type)
902 struct type *type;
903 {
904 CHECK_TYPEDEF (type);
905 if (TYPE_CODE (type) == TYPE_CODE_BOOL)
906 return 1;
907 switch (current_language->la_language)
908 {
909 case language_c:
910 case language_cplus:
911 /* Might be more cleanly handled by having a TYPE_CODE_INT_NOT_BOOL
912 for CHILL and such languages, or a TYPE_CODE_INT_OR_BOOL for C. */
913 if (TYPE_CODE (type) == TYPE_CODE_INT)
914 return 1;
915 default:
916 break;
917 }
918 return 0;
919 }
920
921 /* Returns non-zero if the value is a floating-point type */
922 int
923 float_type (type)
924 struct type *type;
925 {
926 CHECK_TYPEDEF (type);
927 return TYPE_CODE (type) == TYPE_CODE_FLT;
928 }
929
930 /* Returns non-zero if the value is a pointer type */
931 int
932 pointer_type (type)
933 struct type *type;
934 {
935 return TYPE_CODE (type) == TYPE_CODE_PTR ||
936 TYPE_CODE (type) == TYPE_CODE_REF;
937 }
938
939 /* Returns non-zero if the value is a structured type */
940 int
941 structured_type (type)
942 struct type *type;
943 {
944 CHECK_TYPEDEF (type);
945 switch (current_language->la_language)
946 {
947 case language_c:
948 case language_cplus:
949 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
950 (TYPE_CODE (type) == TYPE_CODE_UNION) ||
951 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
952 case language_m2:
953 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
954 (TYPE_CODE (type) == TYPE_CODE_SET) ||
955 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
956 case language_chill:
957 error ("Missing Chill support in function structured_type."); /*FIXME */
958 default:
959 return (0);
960 }
961 }
962 #endif
963 \f
964 struct type *
965 lang_bool_type ()
966 {
967 struct symbol *sym;
968 struct type *type;
969 switch (current_language->la_language)
970 {
971 case language_chill:
972 return builtin_type_chill_bool;
973 case language_fortran:
974 sym = lookup_symbol ("logical", NULL, VAR_NAMESPACE, NULL, NULL);
975 if (sym)
976 {
977 type = SYMBOL_TYPE (sym);
978 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
979 return type;
980 }
981 return builtin_type_f_logical_s2;
982 case language_cplus:
983 sym = lookup_symbol ("bool", NULL, VAR_NAMESPACE, NULL, NULL);
984 if (sym)
985 {
986 type = SYMBOL_TYPE (sym);
987 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
988 return type;
989 }
990 return builtin_type_bool;
991 default:
992 return builtin_type_int;
993 }
994 }
995 \f
996 /* This page contains functions that return info about
997 (struct value) values used in GDB. */
998
999 /* Returns non-zero if the value VAL represents a true value. */
1000 int
1001 value_true (val)
1002 value_ptr val;
1003 {
1004 /* It is possible that we should have some sort of error if a non-boolean
1005 value is used in this context. Possibly dependent on some kind of
1006 "boolean-checking" option like range checking. But it should probably
1007 not depend on the language except insofar as is necessary to identify
1008 a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean
1009 should be an error, probably). */
1010 return !value_logical_not (val);
1011 }
1012 \f
1013 /* Returns non-zero if the operator OP is defined on
1014 the values ARG1 and ARG2. */
1015
1016 #if 0 /* Currently unused */
1017
1018 void
1019 binop_type_check (arg1, arg2, op)
1020 value_ptr arg1, arg2;
1021 int op;
1022 {
1023 struct type *t1, *t2;
1024
1025 /* If we're not checking types, always return success. */
1026 if (!STRICT_TYPE)
1027 return;
1028
1029 t1 = VALUE_TYPE (arg1);
1030 if (arg2 != NULL)
1031 t2 = VALUE_TYPE (arg2);
1032 else
1033 t2 = NULL;
1034
1035 switch (op)
1036 {
1037 case BINOP_ADD:
1038 case BINOP_SUB:
1039 if ((numeric_type (t1) && pointer_type (t2)) ||
1040 (pointer_type (t1) && numeric_type (t2)))
1041 {
1042 warning ("combining pointer and integer.\n");
1043 break;
1044 }
1045 case BINOP_MUL:
1046 case BINOP_LSH:
1047 case BINOP_RSH:
1048 if (!numeric_type (t1) || !numeric_type (t2))
1049 type_op_error ("Arguments to %s must be numbers.", op);
1050 else if (!same_type (t1, t2))
1051 type_op_error ("Arguments to %s must be of the same type.", op);
1052 break;
1053
1054 case BINOP_LOGICAL_AND:
1055 case BINOP_LOGICAL_OR:
1056 if (!boolean_type (t1) || !boolean_type (t2))
1057 type_op_error ("Arguments to %s must be of boolean type.", op);
1058 break;
1059
1060 case BINOP_EQUAL:
1061 if ((pointer_type (t1) && !(pointer_type (t2) || integral_type (t2))) ||
1062 (pointer_type (t2) && !(pointer_type (t1) || integral_type (t1))))
1063 type_op_error ("A pointer can only be compared to an integer or pointer.", op);
1064 else if ((pointer_type (t1) && integral_type (t2)) ||
1065 (integral_type (t1) && pointer_type (t2)))
1066 {
1067 warning ("combining integer and pointer.\n");
1068 break;
1069 }
1070 else if (!simple_type (t1) || !simple_type (t2))
1071 type_op_error ("Arguments to %s must be of simple type.", op);
1072 else if (!same_type (t1, t2))
1073 type_op_error ("Arguments to %s must be of the same type.", op);
1074 break;
1075
1076 case BINOP_REM:
1077 case BINOP_MOD:
1078 if (!integral_type (t1) || !integral_type (t2))
1079 type_op_error ("Arguments to %s must be of integral type.", op);
1080 break;
1081
1082 case BINOP_LESS:
1083 case BINOP_GTR:
1084 case BINOP_LEQ:
1085 case BINOP_GEQ:
1086 if (!ordered_type (t1) || !ordered_type (t2))
1087 type_op_error ("Arguments to %s must be of ordered type.", op);
1088 else if (!same_type (t1, t2))
1089 type_op_error ("Arguments to %s must be of the same type.", op);
1090 break;
1091
1092 case BINOP_ASSIGN:
1093 if (pointer_type (t1) && !integral_type (t2))
1094 type_op_error ("A pointer can only be assigned an integer.", op);
1095 else if (pointer_type (t1) && integral_type (t2))
1096 {
1097 warning ("combining integer and pointer.");
1098 break;
1099 }
1100 else if (!simple_type (t1) || !simple_type (t2))
1101 type_op_error ("Arguments to %s must be of simple type.", op);
1102 else if (!same_type (t1, t2))
1103 type_op_error ("Arguments to %s must be of the same type.", op);
1104 break;
1105
1106 case BINOP_CONCAT:
1107 /* FIXME: Needs to handle bitstrings as well. */
1108 if (!(string_type (t1) || character_type (t1) || integral_type (t1))
1109 || !(string_type (t2) || character_type (t2) || integral_type (t2)))
1110 type_op_error ("Arguments to %s must be strings or characters.", op);
1111 break;
1112
1113 /* Unary checks -- arg2 is null */
1114
1115 case UNOP_LOGICAL_NOT:
1116 if (!boolean_type (t1))
1117 type_op_error ("Argument to %s must be of boolean type.", op);
1118 break;
1119
1120 case UNOP_PLUS:
1121 case UNOP_NEG:
1122 if (!numeric_type (t1))
1123 type_op_error ("Argument to %s must be of numeric type.", op);
1124 break;
1125
1126 case UNOP_IND:
1127 if (integral_type (t1))
1128 {
1129 warning ("combining pointer and integer.\n");
1130 break;
1131 }
1132 else if (!pointer_type (t1))
1133 type_op_error ("Argument to %s must be a pointer.", op);
1134 break;
1135
1136 case UNOP_PREINCREMENT:
1137 case UNOP_POSTINCREMENT:
1138 case UNOP_PREDECREMENT:
1139 case UNOP_POSTDECREMENT:
1140 if (!ordered_type (t1))
1141 type_op_error ("Argument to %s must be of an ordered type.", op);
1142 break;
1143
1144 default:
1145 /* Ok. The following operators have different meanings in
1146 different languages. */
1147 switch (current_language->la_language)
1148 {
1149 #ifdef _LANG_c
1150 case language_c:
1151 case language_cplus:
1152 switch (op)
1153 {
1154 case BINOP_DIV:
1155 if (!numeric_type (t1) || !numeric_type (t2))
1156 type_op_error ("Arguments to %s must be numbers.", op);
1157 break;
1158 }
1159 break;
1160 #endif
1161
1162 #ifdef _LANG_m2
1163 case language_m2:
1164 switch (op)
1165 {
1166 case BINOP_DIV:
1167 if (!float_type (t1) || !float_type (t2))
1168 type_op_error ("Arguments to %s must be floating point numbers.", op);
1169 break;
1170 case BINOP_INTDIV:
1171 if (!integral_type (t1) || !integral_type (t2))
1172 type_op_error ("Arguments to %s must be of integral type.", op);
1173 break;
1174 }
1175 #endif
1176
1177 #ifdef _LANG_chill
1178 case language_chill:
1179 error ("Missing Chill support in function binop_type_check."); /*FIXME */
1180 #endif
1181
1182 }
1183 }
1184 }
1185
1186 #endif /* 0 */
1187 \f
1188
1189 /* This page contains functions for the printing out of
1190 error messages that occur during type- and range-
1191 checking. */
1192
1193 /* Prints the format string FMT with the operator as a string
1194 corresponding to the opcode OP. If FATAL is non-zero, then
1195 this is an error and error () is called. Otherwise, it is
1196 a warning and printf() is called. */
1197 void
1198 op_error (fmt, op, fatal)
1199 char *fmt;
1200 enum exp_opcode op;
1201 int fatal;
1202 {
1203 if (fatal)
1204 error (fmt, op_string (op));
1205 else
1206 {
1207 warning (fmt, op_string (op));
1208 }
1209 }
1210
1211 /* These are called when a language fails a type- or range-check.
1212 The first argument should be a printf()-style format string, and
1213 the rest of the arguments should be its arguments. If
1214 [type|range]_check is [type|range]_check_on, then return_to_top_level()
1215 is called in the style of error (). Otherwise, the message is prefixed
1216 by the value of warning_pre_print and we do not return to the top level. */
1217
1218 void
1219 type_error (char *string,...)
1220 {
1221 va_list args;
1222 va_start (args, string);
1223
1224 if (type_check == type_check_warn)
1225 fprintf_filtered (gdb_stderr, warning_pre_print);
1226 else
1227 error_begin ();
1228
1229 vfprintf_filtered (gdb_stderr, string, args);
1230 fprintf_filtered (gdb_stderr, "\n");
1231 va_end (args);
1232 if (type_check == type_check_on)
1233 return_to_top_level (RETURN_ERROR);
1234 }
1235
1236 void
1237 range_error (char *string,...)
1238 {
1239 va_list args;
1240 va_start (args, string);
1241
1242 if (range_check == range_check_warn)
1243 fprintf_filtered (gdb_stderr, warning_pre_print);
1244 else
1245 error_begin ();
1246
1247 vfprintf_filtered (gdb_stderr, string, args);
1248 fprintf_filtered (gdb_stderr, "\n");
1249 va_end (args);
1250 if (range_check == range_check_on)
1251 return_to_top_level (RETURN_ERROR);
1252 }
1253 \f
1254
1255 /* This page contains miscellaneous functions */
1256
1257 /* Return the language enum for a given language string. */
1258
1259 enum language
1260 language_enum (str)
1261 char *str;
1262 {
1263 int i;
1264
1265 for (i = 0; i < languages_size; i++)
1266 if (STREQ (languages[i]->la_name, str))
1267 return languages[i]->la_language;
1268
1269 return language_unknown;
1270 }
1271
1272 /* Return the language struct for a given language enum. */
1273
1274 const struct language_defn *
1275 language_def (lang)
1276 enum language lang;
1277 {
1278 int i;
1279
1280 for (i = 0; i < languages_size; i++)
1281 {
1282 if (languages[i]->la_language == lang)
1283 {
1284 return languages[i];
1285 }
1286 }
1287 return NULL;
1288 }
1289
1290 /* Return the language as a string */
1291 char *
1292 language_str (lang)
1293 enum language lang;
1294 {
1295 int i;
1296
1297 for (i = 0; i < languages_size; i++)
1298 {
1299 if (languages[i]->la_language == lang)
1300 {
1301 return languages[i]->la_name;
1302 }
1303 }
1304 return "Unknown";
1305 }
1306
1307 static void
1308 set_check (ignore, from_tty)
1309 char *ignore;
1310 int from_tty;
1311 {
1312 printf_unfiltered (
1313 "\"set check\" must be followed by the name of a check subcommand.\n");
1314 help_list (setchecklist, "set check ", -1, gdb_stdout);
1315 }
1316
1317 static void
1318 show_check (ignore, from_tty)
1319 char *ignore;
1320 int from_tty;
1321 {
1322 cmd_show_list (showchecklist, from_tty, "");
1323 }
1324 \f
1325 /* Add a language to the set of known languages. */
1326
1327 void
1328 add_language (lang)
1329 const struct language_defn *lang;
1330 {
1331 if (lang->la_magic != LANG_MAGIC)
1332 {
1333 fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n",
1334 lang->la_name);
1335 abort ();
1336 }
1337
1338 if (!languages)
1339 {
1340 languages_allocsize = DEFAULT_ALLOCSIZE;
1341 languages = (const struct language_defn **) xmalloc
1342 (languages_allocsize * sizeof (*languages));
1343 }
1344 if (languages_size >= languages_allocsize)
1345 {
1346 languages_allocsize *= 2;
1347 languages = (const struct language_defn **) xrealloc ((char *) languages,
1348 languages_allocsize * sizeof (*languages));
1349 }
1350 languages[languages_size++] = lang;
1351 }
1352
1353 /* Define the language that is no language. */
1354
1355 static int
1356 unk_lang_parser ()
1357 {
1358 return 1;
1359 }
1360
1361 static void
1362 unk_lang_error (msg)
1363 char *msg;
1364 {
1365 error ("Attempted to parse an expression with unknown language");
1366 }
1367
1368 static void
1369 unk_lang_emit_char (c, stream, quoter)
1370 register int c;
1371 struct ui_file *stream;
1372 int quoter;
1373 {
1374 error ("internal error - unimplemented function unk_lang_emit_char called.");
1375 }
1376
1377 static void
1378 unk_lang_printchar (c, stream)
1379 register int c;
1380 struct ui_file *stream;
1381 {
1382 error ("internal error - unimplemented function unk_lang_printchar called.");
1383 }
1384
1385 static void
1386 unk_lang_printstr (stream, string, length, width, force_ellipses)
1387 struct ui_file *stream;
1388 char *string;
1389 unsigned int length;
1390 int width;
1391 int force_ellipses;
1392 {
1393 error ("internal error - unimplemented function unk_lang_printstr called.");
1394 }
1395
1396 static struct type *
1397 unk_lang_create_fundamental_type (objfile, typeid)
1398 struct objfile *objfile;
1399 int typeid;
1400 {
1401 error ("internal error - unimplemented function unk_lang_create_fundamental_type called.");
1402 }
1403
1404 static void
1405 unk_lang_print_type (type, varstring, stream, show, level)
1406 struct type *type;
1407 char *varstring;
1408 struct ui_file *stream;
1409 int show;
1410 int level;
1411 {
1412 error ("internal error - unimplemented function unk_lang_print_type called.");
1413 }
1414
1415 static int
1416 unk_lang_val_print (type, valaddr, embedded_offset, address, stream, format, deref_ref,
1417 recurse, pretty)
1418 struct type *type;
1419 char *valaddr;
1420 int embedded_offset;
1421 CORE_ADDR address;
1422 struct ui_file *stream;
1423 int format;
1424 int deref_ref;
1425 int recurse;
1426 enum val_prettyprint pretty;
1427 {
1428 error ("internal error - unimplemented function unk_lang_val_print called.");
1429 }
1430
1431 static int
1432 unk_lang_value_print (val, stream, format, pretty)
1433 value_ptr val;
1434 struct ui_file *stream;
1435 int format;
1436 enum val_prettyprint pretty;
1437 {
1438 error ("internal error - unimplemented function unk_lang_value_print called.");
1439 }
1440
1441 static struct type **CONST_PTR (unknown_builtin_types[]) =
1442 {
1443 0
1444 };
1445 static const struct op_print unk_op_print_tab[] =
1446 {
1447 {NULL, OP_NULL, PREC_NULL, 0}
1448 };
1449
1450 const struct language_defn unknown_language_defn =
1451 {
1452 "unknown",
1453 language_unknown,
1454 &unknown_builtin_types[0],
1455 range_check_off,
1456 type_check_off,
1457 unk_lang_parser,
1458 unk_lang_error,
1459 evaluate_subexp_standard,
1460 unk_lang_printchar, /* Print character constant */
1461 unk_lang_printstr,
1462 unk_lang_emit_char,
1463 unk_lang_create_fundamental_type,
1464 unk_lang_print_type, /* Print a type using appropriate syntax */
1465 unk_lang_val_print, /* Print a value using appropriate syntax */
1466 unk_lang_value_print, /* Print a top-level value */
1467 {"", "", "", ""}, /* Binary format info */
1468 {"0%lo", "0", "o", ""}, /* Octal format info */
1469 {"%ld", "", "d", ""}, /* Decimal format info */
1470 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1471 unk_op_print_tab, /* expression operators for printing */
1472 1, /* c-style arrays */
1473 0, /* String lower bound */
1474 &builtin_type_char, /* Type of string elements */
1475 LANG_MAGIC
1476 };
1477
1478 /* These two structs define fake entries for the "local" and "auto" options. */
1479 const struct language_defn auto_language_defn =
1480 {
1481 "auto",
1482 language_auto,
1483 &unknown_builtin_types[0],
1484 range_check_off,
1485 type_check_off,
1486 unk_lang_parser,
1487 unk_lang_error,
1488 evaluate_subexp_standard,
1489 unk_lang_printchar, /* Print character constant */
1490 unk_lang_printstr,
1491 unk_lang_emit_char,
1492 unk_lang_create_fundamental_type,
1493 unk_lang_print_type, /* Print a type using appropriate syntax */
1494 unk_lang_val_print, /* Print a value using appropriate syntax */
1495 unk_lang_value_print, /* Print a top-level value */
1496 {"", "", "", ""}, /* Binary format info */
1497 {"0%lo", "0", "o", ""}, /* Octal format info */
1498 {"%ld", "", "d", ""}, /* Decimal format info */
1499 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1500 unk_op_print_tab, /* expression operators for printing */
1501 1, /* c-style arrays */
1502 0, /* String lower bound */
1503 &builtin_type_char, /* Type of string elements */
1504 LANG_MAGIC
1505 };
1506
1507 const struct language_defn local_language_defn =
1508 {
1509 "local",
1510 language_auto,
1511 &unknown_builtin_types[0],
1512 range_check_off,
1513 type_check_off,
1514 unk_lang_parser,
1515 unk_lang_error,
1516 evaluate_subexp_standard,
1517 unk_lang_printchar, /* Print character constant */
1518 unk_lang_printstr,
1519 unk_lang_emit_char,
1520 unk_lang_create_fundamental_type,
1521 unk_lang_print_type, /* Print a type using appropriate syntax */
1522 unk_lang_val_print, /* Print a value using appropriate syntax */
1523 unk_lang_value_print, /* Print a top-level value */
1524 {"", "", "", ""}, /* Binary format info */
1525 {"0%lo", "0", "o", ""}, /* Octal format info */
1526 {"%ld", "", "d", ""}, /* Decimal format info */
1527 {"0x%lx", "0x", "x", ""}, /* Hex format info */
1528 unk_op_print_tab, /* expression operators for printing */
1529 1, /* c-style arrays */
1530 0, /* String lower bound */
1531 &builtin_type_char, /* Type of string elements */
1532 LANG_MAGIC
1533 };
1534 \f
1535 /* Initialize the language routines */
1536
1537 void
1538 _initialize_language ()
1539 {
1540 struct cmd_list_element *set, *show;
1541
1542 /* GDB commands for language specific stuff */
1543
1544 set = add_set_cmd ("language", class_support, var_string_noescape,
1545 (char *) &language,
1546 "Set the current source language.",
1547 &setlist);
1548 show = add_show_from_set (set, &showlist);
1549 set->function.cfunc = set_language_command;
1550 show->function.cfunc = show_language_command;
1551
1552 add_prefix_cmd ("check", no_class, set_check,
1553 "Set the status of the type/range checker",
1554 &setchecklist, "set check ", 0, &setlist);
1555 add_alias_cmd ("c", "check", no_class, 1, &setlist);
1556 add_alias_cmd ("ch", "check", no_class, 1, &setlist);
1557
1558 add_prefix_cmd ("check", no_class, show_check,
1559 "Show the status of the type/range checker",
1560 &showchecklist, "show check ", 0, &showlist);
1561 add_alias_cmd ("c", "check", no_class, 1, &showlist);
1562 add_alias_cmd ("ch", "check", no_class, 1, &showlist);
1563
1564 set = add_set_cmd ("type", class_support, var_string_noescape,
1565 (char *) &type,
1566 "Set type checking. (on/warn/off/auto)",
1567 &setchecklist);
1568 show = add_show_from_set (set, &showchecklist);
1569 set->function.cfunc = set_type_command;
1570 show->function.cfunc = show_type_command;
1571
1572 set = add_set_cmd ("range", class_support, var_string_noescape,
1573 (char *) &range,
1574 "Set range checking. (on/warn/off/auto)",
1575 &setchecklist);
1576 show = add_show_from_set (set, &showchecklist);
1577 set->function.cfunc = set_range_command;
1578 show->function.cfunc = show_range_command;
1579
1580 add_language (&unknown_language_defn);
1581 add_language (&local_language_defn);
1582 add_language (&auto_language_defn);
1583
1584 language = savestring ("auto", strlen ("auto"));
1585 set_language_command (language, 0);
1586
1587 type = savestring ("auto", strlen ("auto"));
1588 set_type_command (NULL, 0);
1589
1590 range = savestring ("auto", strlen ("auto"));
1591 set_range_command (NULL, 0);
1592 }