2009-02-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
[deliverable/binutils-gdb.git] / gdb / language.c
1 /* Multiple source language support for GDB.
2
3 Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
5
6 Contributed by the Department of Computer Science at the State University
7 of New York at Buffalo.
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23
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. */
27
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. */
31
32 #include "defs.h"
33 #include <ctype.h>
34 #include "gdb_string.h"
35
36 #include "symtab.h"
37 #include "gdbtypes.h"
38 #include "value.h"
39 #include "gdbcmd.h"
40 #include "expression.h"
41 #include "language.h"
42 #include "target.h"
43 #include "parser-defs.h"
44 #include "jv-lang.h"
45 #include "demangle.h"
46 #include "symfile.h"
47
48 extern void _initialize_language (void);
49
50 static void set_case_str (void);
51
52 static void set_range_str (void);
53
54 static void set_type_str (void);
55
56 static void set_lang_str (void);
57
58 static void unk_lang_error (char *);
59
60 static int unk_lang_parser (void);
61
62 static void show_check (char *, int);
63
64 static void set_check (char *, int);
65
66 static void set_type_range_case (void);
67
68 static void unk_lang_emit_char (int c, struct ui_file *stream, int quoter);
69
70 static void unk_lang_printchar (int c, struct ui_file *stream);
71
72 static void unk_lang_print_type (struct type *, char *, struct ui_file *,
73 int, int);
74
75 static int unk_lang_value_print (struct value *, struct ui_file *,
76 const struct value_print_options *);
77
78 static CORE_ADDR unk_lang_trampoline (struct frame_info *, CORE_ADDR pc);
79
80 /* Forward declaration */
81 extern const struct language_defn unknown_language_defn;
82
83 /* The current (default at startup) state of type and range checking.
84 (If the modes are set to "auto", though, these are changed based
85 on the default language at startup, and then again based on the
86 language of the first source file. */
87
88 enum range_mode range_mode = range_mode_auto;
89 enum range_check range_check = range_check_off;
90 enum type_mode type_mode = type_mode_auto;
91 enum type_check type_check = type_check_off;
92 enum case_mode case_mode = case_mode_auto;
93 enum case_sensitivity case_sensitivity = case_sensitive_on;
94
95 /* The current language and language_mode (see language.h) */
96
97 const struct language_defn *current_language = &unknown_language_defn;
98 enum language_mode language_mode = language_mode_auto;
99
100 /* The language that the user expects to be typing in (the language
101 of main(), or the last language we notified them about, or C). */
102
103 const struct language_defn *expected_language;
104
105 /* The list of supported languages. The list itself is malloc'd. */
106
107 static const struct language_defn **languages;
108 static unsigned languages_size;
109 static unsigned languages_allocsize;
110 #define DEFAULT_ALLOCSIZE 4
111
112 /* The "set language/type/range" commands all put stuff in these
113 buffers. This is to make them work as set/show commands. The
114 user's string is copied here, then the set_* commands look at
115 them and update them to something that looks nice when it is
116 printed out. */
117
118 static char *language;
119 static char *type;
120 static char *range;
121 static char *case_sensitive;
122
123 /* Warning issued when current_language and the language of the current
124 frame do not match. */
125 char lang_frame_mismatch_warn[] =
126 "Warning: the current language does not match this frame.";
127 \f
128 /* This page contains the functions corresponding to GDB commands
129 and their helpers. */
130
131 /* Show command. Display a warning if the language set
132 does not match the frame. */
133 static void
134 show_language_command (struct ui_file *file, int from_tty,
135 struct cmd_list_element *c, const char *value)
136 {
137 enum language flang; /* The language of the current frame */
138
139 deprecated_show_value_hack (file, from_tty, c, value);
140 flang = get_frame_language ();
141 if (flang != language_unknown &&
142 language_mode == language_mode_manual &&
143 current_language->la_language != flang)
144 printf_filtered ("%s\n", lang_frame_mismatch_warn);
145 }
146
147 /* Set command. Change the current working language. */
148 static void
149 set_language_command (char *ignore, int from_tty, struct cmd_list_element *c)
150 {
151 int i;
152 enum language flang;
153 char *err_lang;
154
155 if (!language || !language[0])
156 {
157 printf_unfiltered (_("\
158 The currently understood settings are:\n\n\
159 local or auto Automatic setting based on source file\n"));
160
161 for (i = 0; i < languages_size; ++i)
162 {
163 /* Already dealt with these above. */
164 if (languages[i]->la_language == language_unknown
165 || languages[i]->la_language == language_auto)
166 continue;
167
168 /* FIXME: i18n: for now assume that the human-readable name
169 is just a capitalization of the internal name. */
170 printf_unfiltered ("%-16s Use the %c%s language\n",
171 languages[i]->la_name,
172 /* Capitalize first letter of language
173 name. */
174 toupper (languages[i]->la_name[0]),
175 languages[i]->la_name + 1);
176 }
177 /* Restore the silly string. */
178 set_language (current_language->la_language);
179 return;
180 }
181
182 /* Search the list of languages for a match. */
183 for (i = 0; i < languages_size; i++)
184 {
185 if (strcmp (languages[i]->la_name, language) == 0)
186 {
187 /* Found it! Go into manual mode, and use this language. */
188 if (languages[i]->la_language == language_auto)
189 {
190 /* Enter auto mode. Set to the current frame's language, if
191 known, or fallback to the initial language. */
192 language_mode = language_mode_auto;
193 flang = get_frame_language ();
194 if (flang != language_unknown)
195 set_language (flang);
196 else
197 set_initial_language ();
198 expected_language = current_language;
199 return;
200 }
201 else
202 {
203 /* Enter manual mode. Set the specified language. */
204 language_mode = language_mode_manual;
205 current_language = languages[i];
206 set_type_range_case ();
207 set_lang_str ();
208 expected_language = current_language;
209 return;
210 }
211 }
212 }
213
214 /* Reset the language (esp. the global string "language") to the
215 correct values. */
216 err_lang = savestring (language, strlen (language));
217 make_cleanup (xfree, err_lang); /* Free it after error */
218 set_language (current_language->la_language);
219 error (_("Unknown language `%s'."), err_lang);
220 }
221
222 /* Show command. Display a warning if the type setting does
223 not match the current language. */
224 static void
225 show_type_command (struct ui_file *file, int from_tty,
226 struct cmd_list_element *c, const char *value)
227 {
228 deprecated_show_value_hack (file, from_tty, c, value);
229 if (type_check != current_language->la_type_check)
230 printf_unfiltered (
231 "Warning: the current type check setting does not match the language.\n");
232 }
233
234 /* Set command. Change the setting for type checking. */
235 static void
236 set_type_command (char *ignore, int from_tty, struct cmd_list_element *c)
237 {
238 if (strcmp (type, "on") == 0)
239 {
240 type_check = type_check_on;
241 type_mode = type_mode_manual;
242 }
243 else if (strcmp (type, "warn") == 0)
244 {
245 type_check = type_check_warn;
246 type_mode = type_mode_manual;
247 }
248 else if (strcmp (type, "off") == 0)
249 {
250 type_check = type_check_off;
251 type_mode = type_mode_manual;
252 }
253 else if (strcmp (type, "auto") == 0)
254 {
255 type_mode = type_mode_auto;
256 set_type_range_case ();
257 /* Avoid hitting the set_type_str call below. We
258 did it in set_type_range_case. */
259 return;
260 }
261 else
262 {
263 warning (_("Unrecognized type check setting: \"%s\""), type);
264 }
265 set_type_str ();
266 show_type_command (NULL, from_tty, NULL, NULL);
267 }
268
269 /* Show command. Display a warning if the range setting does
270 not match the current language. */
271 static void
272 show_range_command (struct ui_file *file, int from_tty,
273 struct cmd_list_element *c, const char *value)
274 {
275 deprecated_show_value_hack (file, from_tty, c, value);
276 if (range_check != current_language->la_range_check)
277 printf_unfiltered (
278 "Warning: the current range check setting does not match the language.\n");
279 }
280
281 /* Set command. Change the setting for range checking. */
282 static void
283 set_range_command (char *ignore, int from_tty, struct cmd_list_element *c)
284 {
285 if (strcmp (range, "on") == 0)
286 {
287 range_check = range_check_on;
288 range_mode = range_mode_manual;
289 }
290 else if (strcmp (range, "warn") == 0)
291 {
292 range_check = range_check_warn;
293 range_mode = range_mode_manual;
294 }
295 else if (strcmp (range, "off") == 0)
296 {
297 range_check = range_check_off;
298 range_mode = range_mode_manual;
299 }
300 else if (strcmp (range, "auto") == 0)
301 {
302 range_mode = range_mode_auto;
303 set_type_range_case ();
304 /* Avoid hitting the set_range_str call below. We
305 did it in set_type_range_case. */
306 return;
307 }
308 else
309 {
310 warning (_("Unrecognized range check setting: \"%s\""), range);
311 }
312 set_range_str ();
313 show_range_command (NULL, from_tty, NULL, NULL);
314 }
315
316 /* Show command. Display a warning if the case sensitivity setting does
317 not match the current language. */
318 static void
319 show_case_command (struct ui_file *file, int from_tty,
320 struct cmd_list_element *c, const char *value)
321 {
322 deprecated_show_value_hack (file, from_tty, c, value);
323 if (case_sensitivity != current_language->la_case_sensitivity)
324 printf_unfiltered(
325 "Warning: the current case sensitivity setting does not match the language.\n");
326 }
327
328 /* Set command. Change the setting for case sensitivity. */
329
330 static void
331 set_case_command (char *ignore, int from_tty, struct cmd_list_element *c)
332 {
333 if (strcmp (case_sensitive, "on") == 0)
334 {
335 case_sensitivity = case_sensitive_on;
336 case_mode = case_mode_manual;
337 }
338 else if (strcmp (case_sensitive, "off") == 0)
339 {
340 case_sensitivity = case_sensitive_off;
341 case_mode = case_mode_manual;
342 }
343 else if (strcmp (case_sensitive, "auto") == 0)
344 {
345 case_mode = case_mode_auto;
346 set_type_range_case ();
347 /* Avoid hitting the set_case_str call below. We did it in
348 set_type_range_case. */
349 return;
350 }
351 else
352 {
353 warning (_("Unrecognized case-sensitive setting: \"%s\""),
354 case_sensitive);
355 }
356 set_case_str();
357 show_case_command (NULL, from_tty, NULL, NULL);
358 }
359
360 /* Set the status of range and type checking and case sensitivity based on
361 the current modes and the current language.
362 If SHOW is non-zero, then print out the current language,
363 type and range checking status. */
364 static void
365 set_type_range_case (void)
366 {
367
368 if (range_mode == range_mode_auto)
369 range_check = current_language->la_range_check;
370
371 if (type_mode == type_mode_auto)
372 type_check = current_language->la_type_check;
373
374 if (case_mode == case_mode_auto)
375 case_sensitivity = current_language->la_case_sensitivity;
376
377 set_type_str ();
378 set_range_str ();
379 set_case_str ();
380 }
381
382 /* Set current language to (enum language) LANG. Returns previous language. */
383
384 enum language
385 set_language (enum language lang)
386 {
387 int i;
388 enum language prev_language;
389
390 prev_language = current_language->la_language;
391
392 for (i = 0; i < languages_size; i++)
393 {
394 if (languages[i]->la_language == lang)
395 {
396 current_language = languages[i];
397 set_type_range_case ();
398 set_lang_str ();
399 break;
400 }
401 }
402
403 return prev_language;
404 }
405 \f
406 /* This page contains functions that update the global vars
407 language, type and range. */
408 static void
409 set_lang_str (void)
410 {
411 char *prefix = "";
412
413 if (language)
414 xfree (language);
415 if (language_mode == language_mode_auto)
416 prefix = "auto; currently ";
417
418 language = concat (prefix, current_language->la_name, (char *)NULL);
419 }
420
421 static void
422 set_type_str (void)
423 {
424 char *tmp = NULL, *prefix = "";
425
426 if (type)
427 xfree (type);
428 if (type_mode == type_mode_auto)
429 prefix = "auto; currently ";
430
431 switch (type_check)
432 {
433 case type_check_on:
434 tmp = "on";
435 break;
436 case type_check_off:
437 tmp = "off";
438 break;
439 case type_check_warn:
440 tmp = "warn";
441 break;
442 default:
443 error (_("Unrecognized type check setting."));
444 }
445
446 type = concat (prefix, tmp, (char *)NULL);
447 }
448
449 static void
450 set_range_str (void)
451 {
452 char *tmp, *pref = "";
453
454 if (range_mode == range_mode_auto)
455 pref = "auto; currently ";
456
457 switch (range_check)
458 {
459 case range_check_on:
460 tmp = "on";
461 break;
462 case range_check_off:
463 tmp = "off";
464 break;
465 case range_check_warn:
466 tmp = "warn";
467 break;
468 default:
469 error (_("Unrecognized range check setting."));
470 }
471
472 if (range)
473 xfree (range);
474 range = concat (pref, tmp, (char *)NULL);
475 }
476
477 static void
478 set_case_str (void)
479 {
480 char *tmp = NULL, *prefix = "";
481
482 if (case_mode==case_mode_auto)
483 prefix = "auto; currently ";
484
485 switch (case_sensitivity)
486 {
487 case case_sensitive_on:
488 tmp = "on";
489 break;
490 case case_sensitive_off:
491 tmp = "off";
492 break;
493 default:
494 error (_("Unrecognized case-sensitive setting."));
495 }
496
497 xfree (case_sensitive);
498 case_sensitive = concat (prefix, tmp, (char *)NULL);
499 }
500
501 /* Print out the current language settings: language, range and
502 type checking. If QUIETLY, print only what has changed. */
503
504 void
505 language_info (int quietly)
506 {
507 if (quietly && expected_language == current_language)
508 return;
509
510 expected_language = current_language;
511 printf_unfiltered (_("Current language: %s\n"), language);
512 show_language_command (NULL, 1, NULL, NULL);
513
514 if (!quietly)
515 {
516 printf_unfiltered (_("Type checking: %s\n"), type);
517 show_type_command (NULL, 1, NULL, NULL);
518 printf_unfiltered (_("Range checking: %s\n"), range);
519 show_range_command (NULL, 1, NULL, NULL);
520 printf_unfiltered (_("Case sensitivity: %s\n"), case_sensitive);
521 show_case_command (NULL, 1, NULL, NULL);
522 }
523 }
524 \f
525 /* Return the result of a binary operation. */
526
527 #if 0 /* Currently unused */
528
529 struct type *
530 binop_result_type (struct value *v1, struct value *v2)
531 {
532 int size, uns;
533 struct type *t1 = check_typedef (VALUE_TYPE (v1));
534 struct type *t2 = check_typedef (VALUE_TYPE (v2));
535
536 int l1 = TYPE_LENGTH (t1);
537 int l2 = TYPE_LENGTH (t2);
538
539 switch (current_language->la_language)
540 {
541 case language_c:
542 case language_cplus:
543 case language_objc:
544 if (TYPE_CODE (t1) == TYPE_CODE_FLT)
545 return TYPE_CODE (t2) == TYPE_CODE_FLT && l2 > l1 ?
546 VALUE_TYPE (v2) : VALUE_TYPE (v1);
547 else if (TYPE_CODE (t2) == TYPE_CODE_FLT)
548 return TYPE_CODE (t1) == TYPE_CODE_FLT && l1 > l2 ?
549 VALUE_TYPE (v1) : VALUE_TYPE (v2);
550 else if (TYPE_UNSIGNED (t1) && l1 > l2)
551 return VALUE_TYPE (v1);
552 else if (TYPE_UNSIGNED (t2) && l2 > l1)
553 return VALUE_TYPE (v2);
554 else /* Both are signed. Result is the longer type */
555 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
556 break;
557 case language_m2:
558 /* If we are doing type-checking, l1 should equal l2, so this is
559 not needed. */
560 return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
561 break;
562 }
563 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
564 return (struct type *) 0; /* For lint */
565 }
566
567 #endif /* 0 */
568 #if 0
569 /* This page contains functions that are used in type/range checking.
570 They all return zero if the type/range check fails.
571
572 It is hoped that these will make extending GDB to parse different
573 languages a little easier. These are primarily used in eval.c when
574 evaluating expressions and making sure that their types are correct.
575 Instead of having a mess of conjucted/disjuncted expressions in an "if",
576 the ideas of type can be wrapped up in the following functions.
577
578 Note that some of them are not currently dependent upon which language
579 is currently being parsed. For example, floats are the same in
580 C and Modula-2 (ie. the only floating point type has TYPE_CODE of
581 TYPE_CODE_FLT), while booleans are different. */
582
583 /* Returns non-zero if its argument is a simple type. This is the same for
584 both Modula-2 and for C. In the C case, TYPE_CODE_CHAR will never occur,
585 and thus will never cause the failure of the test. */
586 int
587 simple_type (struct type *type)
588 {
589 CHECK_TYPEDEF (type);
590 switch (TYPE_CODE (type))
591 {
592 case TYPE_CODE_INT:
593 case TYPE_CODE_CHAR:
594 case TYPE_CODE_ENUM:
595 case TYPE_CODE_FLT:
596 case TYPE_CODE_RANGE:
597 case TYPE_CODE_BOOL:
598 return 1;
599
600 default:
601 return 0;
602 }
603 }
604
605 /* Returns non-zero if its argument is of an ordered type.
606 An ordered type is one in which the elements can be tested for the
607 properties of "greater than", "less than", etc, or for which the
608 operations "increment" or "decrement" make sense. */
609 int
610 ordered_type (struct type *type)
611 {
612 CHECK_TYPEDEF (type);
613 switch (TYPE_CODE (type))
614 {
615 case TYPE_CODE_INT:
616 case TYPE_CODE_CHAR:
617 case TYPE_CODE_ENUM:
618 case TYPE_CODE_FLT:
619 case TYPE_CODE_RANGE:
620 return 1;
621
622 default:
623 return 0;
624 }
625 }
626
627 /* Returns non-zero if the two types are the same */
628 int
629 same_type (struct type *arg1, struct type *arg2)
630 {
631 CHECK_TYPEDEF (type);
632 if (structured_type (arg1) ? !structured_type (arg2) : structured_type (arg2))
633 /* One is structured and one isn't */
634 return 0;
635 else if (structured_type (arg1) && structured_type (arg2))
636 return arg1 == arg2;
637 else if (numeric_type (arg1) && numeric_type (arg2))
638 return (TYPE_CODE (arg2) == TYPE_CODE (arg1)) &&
639 (TYPE_UNSIGNED (arg1) == TYPE_UNSIGNED (arg2))
640 ? 1 : 0;
641 else
642 return arg1 == arg2;
643 }
644
645 /* Returns non-zero if the type is integral */
646 int
647 integral_type (struct type *type)
648 {
649 CHECK_TYPEDEF (type);
650 switch (current_language->la_language)
651 {
652 case language_c:
653 case language_cplus:
654 case language_objc:
655 return (TYPE_CODE (type) != TYPE_CODE_INT) &&
656 (TYPE_CODE (type) != TYPE_CODE_ENUM) ? 0 : 1;
657 case language_m2:
658 case language_pascal:
659 return TYPE_CODE (type) != TYPE_CODE_INT ? 0 : 1;
660 default:
661 error (_("Language not supported."));
662 }
663 }
664
665 /* Returns non-zero if the value is numeric */
666 int
667 numeric_type (struct type *type)
668 {
669 CHECK_TYPEDEF (type);
670 switch (TYPE_CODE (type))
671 {
672 case TYPE_CODE_INT:
673 case TYPE_CODE_FLT:
674 return 1;
675
676 default:
677 return 0;
678 }
679 }
680
681 /* Returns non-zero if the value is a character type */
682 int
683 character_type (struct type *type)
684 {
685 CHECK_TYPEDEF (type);
686 switch (current_language->la_language)
687 {
688 case language_m2:
689 case language_pascal:
690 return TYPE_CODE (type) != TYPE_CODE_CHAR ? 0 : 1;
691
692 case language_c:
693 case language_cplus:
694 case language_objc:
695 return (TYPE_CODE (type) == TYPE_CODE_INT) &&
696 TYPE_LENGTH (type) == sizeof (char)
697 ? 1 : 0;
698 default:
699 return (0);
700 }
701 }
702
703 /* Returns non-zero if the value is a string type */
704 int
705 string_type (struct type *type)
706 {
707 CHECK_TYPEDEF (type);
708 switch (current_language->la_language)
709 {
710 case language_m2:
711 case language_pascal:
712 return TYPE_CODE (type) != TYPE_CODE_STRING ? 0 : 1;
713
714 case language_c:
715 case language_cplus:
716 case language_objc:
717 /* C does not have distinct string type. */
718 return (0);
719 default:
720 return (0);
721 }
722 }
723
724 /* Returns non-zero if the value is a boolean type */
725 int
726 boolean_type (struct type *type)
727 {
728 CHECK_TYPEDEF (type);
729 if (TYPE_CODE (type) == TYPE_CODE_BOOL)
730 return 1;
731 switch (current_language->la_language)
732 {
733 case language_c:
734 case language_cplus:
735 case language_objc:
736 /* Might be more cleanly handled by having a
737 TYPE_CODE_INT_NOT_BOOL for (the deleted) CHILL and such
738 languages, or a TYPE_CODE_INT_OR_BOOL for C. */
739 if (TYPE_CODE (type) == TYPE_CODE_INT)
740 return 1;
741 default:
742 break;
743 }
744 return 0;
745 }
746
747 /* Returns non-zero if the value is a floating-point type */
748 int
749 float_type (struct type *type)
750 {
751 CHECK_TYPEDEF (type);
752 return TYPE_CODE (type) == TYPE_CODE_FLT;
753 }
754
755 /* Returns non-zero if the value is a pointer type */
756 int
757 pointer_type (struct type *type)
758 {
759 return TYPE_CODE (type) == TYPE_CODE_PTR ||
760 TYPE_CODE (type) == TYPE_CODE_REF;
761 }
762
763 /* Returns non-zero if the value is a structured type */
764 int
765 structured_type (struct type *type)
766 {
767 CHECK_TYPEDEF (type);
768 switch (current_language->la_language)
769 {
770 case language_c:
771 case language_cplus:
772 case language_objc:
773 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
774 (TYPE_CODE (type) == TYPE_CODE_UNION) ||
775 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
776 case language_pascal:
777 return (TYPE_CODE(type) == TYPE_CODE_STRUCT) ||
778 (TYPE_CODE(type) == TYPE_CODE_UNION) ||
779 (TYPE_CODE(type) == TYPE_CODE_SET) ||
780 (TYPE_CODE(type) == TYPE_CODE_ARRAY);
781 case language_m2:
782 return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
783 (TYPE_CODE (type) == TYPE_CODE_SET) ||
784 (TYPE_CODE (type) == TYPE_CODE_ARRAY);
785 default:
786 return (0);
787 }
788 }
789 #endif
790 \f
791 /* This page contains functions that return info about
792 (struct value) values used in GDB. */
793
794 /* Returns non-zero if the value VAL represents a true value. */
795 int
796 value_true (struct value *val)
797 {
798 /* It is possible that we should have some sort of error if a non-boolean
799 value is used in this context. Possibly dependent on some kind of
800 "boolean-checking" option like range checking. But it should probably
801 not depend on the language except insofar as is necessary to identify
802 a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean
803 should be an error, probably). */
804 return !value_logical_not (val);
805 }
806 \f
807 /* This page contains functions for the printing out of
808 error messages that occur during type- and range-
809 checking. */
810
811 /* These are called when a language fails a type- or range-check. The
812 first argument should be a printf()-style format string, and the
813 rest of the arguments should be its arguments. If
814 [type|range]_check is [type|range]_check_on, an error is printed;
815 if [type|range]_check_warn, a warning; otherwise just the
816 message. */
817
818 void
819 type_error (const char *string,...)
820 {
821 va_list args;
822 va_start (args, string);
823
824 switch (type_check)
825 {
826 case type_check_warn:
827 vwarning (string, args);
828 break;
829 case type_check_on:
830 verror (string, args);
831 break;
832 case type_check_off:
833 /* FIXME: cagney/2002-01-30: Should this function print anything
834 when type error is off? */
835 vfprintf_filtered (gdb_stderr, string, args);
836 fprintf_filtered (gdb_stderr, "\n");
837 break;
838 default:
839 internal_error (__FILE__, __LINE__, _("bad switch"));
840 }
841 va_end (args);
842 }
843
844 void
845 range_error (const char *string,...)
846 {
847 va_list args;
848 va_start (args, string);
849
850 switch (range_check)
851 {
852 case range_check_warn:
853 vwarning (string, args);
854 break;
855 case range_check_on:
856 verror (string, args);
857 break;
858 case range_check_off:
859 /* FIXME: cagney/2002-01-30: Should this function print anything
860 when range error is off? */
861 vfprintf_filtered (gdb_stderr, string, args);
862 fprintf_filtered (gdb_stderr, "\n");
863 break;
864 default:
865 internal_error (__FILE__, __LINE__, _("bad switch"));
866 }
867 va_end (args);
868 }
869 \f
870
871 /* This page contains miscellaneous functions */
872
873 /* Return the language enum for a given language string. */
874
875 enum language
876 language_enum (char *str)
877 {
878 int i;
879
880 for (i = 0; i < languages_size; i++)
881 if (strcmp (languages[i]->la_name, str) == 0)
882 return languages[i]->la_language;
883
884 return language_unknown;
885 }
886
887 /* Return the language struct for a given language enum. */
888
889 const struct language_defn *
890 language_def (enum language lang)
891 {
892 int i;
893
894 for (i = 0; i < languages_size; i++)
895 {
896 if (languages[i]->la_language == lang)
897 {
898 return languages[i];
899 }
900 }
901 return NULL;
902 }
903
904 /* Return the language as a string */
905 char *
906 language_str (enum language lang)
907 {
908 int i;
909
910 for (i = 0; i < languages_size; i++)
911 {
912 if (languages[i]->la_language == lang)
913 {
914 return languages[i]->la_name;
915 }
916 }
917 return "Unknown";
918 }
919
920 static void
921 set_check (char *ignore, int from_tty)
922 {
923 printf_unfiltered (
924 "\"set check\" must be followed by the name of a check subcommand.\n");
925 help_list (setchecklist, "set check ", -1, gdb_stdout);
926 }
927
928 static void
929 show_check (char *ignore, int from_tty)
930 {
931 cmd_show_list (showchecklist, from_tty, "");
932 }
933 \f
934 /* Add a language to the set of known languages. */
935
936 void
937 add_language (const struct language_defn *lang)
938 {
939 if (lang->la_magic != LANG_MAGIC)
940 {
941 fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n",
942 lang->la_name);
943 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
944 }
945
946 if (!languages)
947 {
948 languages_allocsize = DEFAULT_ALLOCSIZE;
949 languages = (const struct language_defn **) xmalloc
950 (languages_allocsize * sizeof (*languages));
951 }
952 if (languages_size >= languages_allocsize)
953 {
954 languages_allocsize *= 2;
955 languages = (const struct language_defn **) xrealloc ((char *) languages,
956 languages_allocsize * sizeof (*languages));
957 }
958 languages[languages_size++] = lang;
959 }
960
961 /* Iterate through all registered languages looking for and calling
962 any non-NULL struct language_defn.skip_trampoline() functions.
963 Return the result from the first that returns non-zero, or 0 if all
964 `fail'. */
965 CORE_ADDR
966 skip_language_trampoline (struct frame_info *frame, CORE_ADDR pc)
967 {
968 int i;
969
970 for (i = 0; i < languages_size; i++)
971 {
972 if (languages[i]->skip_trampoline)
973 {
974 CORE_ADDR real_pc = (languages[i]->skip_trampoline) (frame, pc);
975 if (real_pc)
976 return real_pc;
977 }
978 }
979
980 return 0;
981 }
982
983 /* Return demangled language symbol, or NULL.
984 FIXME: Options are only useful for certain languages and ignored
985 by others, so it would be better to remove them here and have a
986 more flexible demangler for the languages that need it.
987 FIXME: Sometimes the demangler is invoked when we don't know the
988 language, so we can't use this everywhere. */
989 char *
990 language_demangle (const struct language_defn *current_language,
991 const char *mangled, int options)
992 {
993 if (current_language != NULL && current_language->la_demangle)
994 return current_language->la_demangle (mangled, options);
995 return NULL;
996 }
997
998 /* Return class name from physname or NULL. */
999 char *
1000 language_class_name_from_physname (const struct language_defn *current_language,
1001 const char *physname)
1002 {
1003 if (current_language != NULL && current_language->la_class_name_from_physname)
1004 return current_language->la_class_name_from_physname (physname);
1005 return NULL;
1006 }
1007
1008 /* Return non-zero if TYPE should be passed (and returned) by
1009 reference at the language level. */
1010 int
1011 language_pass_by_reference (struct type *type)
1012 {
1013 return current_language->la_pass_by_reference (type);
1014 }
1015
1016 /* Return zero; by default, types are passed by value at the language
1017 level. The target ABI may pass or return some structs by reference
1018 independent of this. */
1019 int
1020 default_pass_by_reference (struct type *type)
1021 {
1022 return 0;
1023 }
1024
1025 /* Return the default string containing the list of characters
1026 delimiting words. This is a reasonable default value that
1027 most languages should be able to use. */
1028
1029 char *
1030 default_word_break_characters (void)
1031 {
1032 return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1033 }
1034
1035 /* Print the index of array elements using the C99 syntax. */
1036
1037 void
1038 default_print_array_index (struct value *index_value, struct ui_file *stream,
1039 const struct value_print_options *options)
1040 {
1041 fprintf_filtered (stream, "[");
1042 LA_VALUE_PRINT (index_value, stream, options);
1043 fprintf_filtered (stream, "] = ");
1044 }
1045
1046 void
1047 default_get_string (struct value *value, gdb_byte **buffer, int *length,
1048 const char **charset)
1049 {
1050 error (_("Getting a string is unsupported in this language."));
1051 }
1052
1053 /* Define the language that is no language. */
1054
1055 static int
1056 unk_lang_parser (void)
1057 {
1058 return 1;
1059 }
1060
1061 static void
1062 unk_lang_error (char *msg)
1063 {
1064 error (_("Attempted to parse an expression with unknown language"));
1065 }
1066
1067 static void
1068 unk_lang_emit_char (int c, struct ui_file *stream, int quoter)
1069 {
1070 error (_("internal error - unimplemented function unk_lang_emit_char called."));
1071 }
1072
1073 static void
1074 unk_lang_printchar (int c, struct ui_file *stream)
1075 {
1076 error (_("internal error - unimplemented function unk_lang_printchar called."));
1077 }
1078
1079 static void
1080 unk_lang_printstr (struct ui_file *stream, const gdb_byte *string,
1081 unsigned int length, int width, int force_ellipses,
1082 const struct value_print_options *options)
1083 {
1084 error (_("internal error - unimplemented function unk_lang_printstr called."));
1085 }
1086
1087 static void
1088 unk_lang_print_type (struct type *type, char *varstring, struct ui_file *stream,
1089 int show, int level)
1090 {
1091 error (_("internal error - unimplemented function unk_lang_print_type called."));
1092 }
1093
1094 static int
1095 unk_lang_val_print (struct type *type, const gdb_byte *valaddr,
1096 int embedded_offset, CORE_ADDR address,
1097 struct ui_file *stream, int recurse,
1098 const struct value_print_options *options)
1099 {
1100 error (_("internal error - unimplemented function unk_lang_val_print called."));
1101 }
1102
1103 static int
1104 unk_lang_value_print (struct value *val, struct ui_file *stream,
1105 const struct value_print_options *options)
1106 {
1107 error (_("internal error - unimplemented function unk_lang_value_print called."));
1108 }
1109
1110 static CORE_ADDR unk_lang_trampoline (struct frame_info *frame, CORE_ADDR pc)
1111 {
1112 return 0;
1113 }
1114
1115 /* Unknown languages just use the cplus demangler. */
1116 static char *unk_lang_demangle (const char *mangled, int options)
1117 {
1118 return cplus_demangle (mangled, options);
1119 }
1120
1121 static char *unk_lang_class_name (const char *mangled)
1122 {
1123 return NULL;
1124 }
1125
1126 static const struct op_print unk_op_print_tab[] =
1127 {
1128 {NULL, OP_NULL, PREC_NULL, 0}
1129 };
1130
1131 static void
1132 unknown_language_arch_info (struct gdbarch *gdbarch,
1133 struct language_arch_info *lai)
1134 {
1135 lai->string_char_type = builtin_type (gdbarch)->builtin_char;
1136 lai->bool_type_default = builtin_type (gdbarch)->builtin_int;
1137 lai->primitive_type_vector = GDBARCH_OBSTACK_CALLOC (gdbarch, 1,
1138 struct type *);
1139 }
1140
1141 const struct language_defn unknown_language_defn =
1142 {
1143 "unknown",
1144 language_unknown,
1145 range_check_off,
1146 type_check_off,
1147 case_sensitive_on,
1148 array_row_major,
1149 macro_expansion_no,
1150 &exp_descriptor_standard,
1151 unk_lang_parser,
1152 unk_lang_error,
1153 null_post_parser,
1154 unk_lang_printchar, /* Print character constant */
1155 unk_lang_printstr,
1156 unk_lang_emit_char,
1157 unk_lang_print_type, /* Print a type using appropriate syntax */
1158 default_print_typedef, /* Print a typedef using appropriate syntax */
1159 unk_lang_val_print, /* Print a value using appropriate syntax */
1160 unk_lang_value_print, /* Print a top-level value */
1161 unk_lang_trampoline, /* Language specific skip_trampoline */
1162 "this", /* name_of_this */
1163 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
1164 basic_lookup_transparent_type,/* lookup_transparent_type */
1165 unk_lang_demangle, /* Language specific symbol demangler */
1166 unk_lang_class_name, /* Language specific class_name_from_physname */
1167 unk_op_print_tab, /* expression operators for printing */
1168 1, /* c-style arrays */
1169 0, /* String lower bound */
1170 default_word_break_characters,
1171 default_make_symbol_completion_list,
1172 unknown_language_arch_info, /* la_language_arch_info. */
1173 default_print_array_index,
1174 default_pass_by_reference,
1175 default_get_string,
1176 LANG_MAGIC
1177 };
1178
1179 /* These two structs define fake entries for the "local" and "auto" options. */
1180 const struct language_defn auto_language_defn =
1181 {
1182 "auto",
1183 language_auto,
1184 range_check_off,
1185 type_check_off,
1186 case_sensitive_on,
1187 array_row_major,
1188 macro_expansion_no,
1189 &exp_descriptor_standard,
1190 unk_lang_parser,
1191 unk_lang_error,
1192 null_post_parser,
1193 unk_lang_printchar, /* Print character constant */
1194 unk_lang_printstr,
1195 unk_lang_emit_char,
1196 unk_lang_print_type, /* Print a type using appropriate syntax */
1197 default_print_typedef, /* Print a typedef using appropriate syntax */
1198 unk_lang_val_print, /* Print a value using appropriate syntax */
1199 unk_lang_value_print, /* Print a top-level value */
1200 unk_lang_trampoline, /* Language specific skip_trampoline */
1201 "this", /* name_of_this */
1202 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
1203 basic_lookup_transparent_type,/* lookup_transparent_type */
1204 unk_lang_demangle, /* Language specific symbol demangler */
1205 unk_lang_class_name, /* Language specific class_name_from_physname */
1206 unk_op_print_tab, /* expression operators for printing */
1207 1, /* c-style arrays */
1208 0, /* String lower bound */
1209 default_word_break_characters,
1210 default_make_symbol_completion_list,
1211 unknown_language_arch_info, /* la_language_arch_info. */
1212 default_print_array_index,
1213 default_pass_by_reference,
1214 default_get_string,
1215 LANG_MAGIC
1216 };
1217
1218 const struct language_defn local_language_defn =
1219 {
1220 "local",
1221 language_auto,
1222 range_check_off,
1223 type_check_off,
1224 case_sensitive_on,
1225 array_row_major,
1226 macro_expansion_no,
1227 &exp_descriptor_standard,
1228 unk_lang_parser,
1229 unk_lang_error,
1230 null_post_parser,
1231 unk_lang_printchar, /* Print character constant */
1232 unk_lang_printstr,
1233 unk_lang_emit_char,
1234 unk_lang_print_type, /* Print a type using appropriate syntax */
1235 default_print_typedef, /* Print a typedef using appropriate syntax */
1236 unk_lang_val_print, /* Print a value using appropriate syntax */
1237 unk_lang_value_print, /* Print a top-level value */
1238 unk_lang_trampoline, /* Language specific skip_trampoline */
1239 "this", /* name_of_this */
1240 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
1241 basic_lookup_transparent_type,/* lookup_transparent_type */
1242 unk_lang_demangle, /* Language specific symbol demangler */
1243 unk_lang_class_name, /* Language specific class_name_from_physname */
1244 unk_op_print_tab, /* expression operators for printing */
1245 1, /* c-style arrays */
1246 0, /* String lower bound */
1247 default_word_break_characters,
1248 default_make_symbol_completion_list,
1249 unknown_language_arch_info, /* la_language_arch_info. */
1250 default_print_array_index,
1251 default_pass_by_reference,
1252 default_get_string,
1253 LANG_MAGIC
1254 };
1255 \f
1256 /* Per-architecture language information. */
1257
1258 static struct gdbarch_data *language_gdbarch_data;
1259
1260 struct language_gdbarch
1261 {
1262 /* A vector of per-language per-architecture info. Indexed by "enum
1263 language". */
1264 struct language_arch_info arch_info[nr_languages];
1265 };
1266
1267 static void *
1268 language_gdbarch_post_init (struct gdbarch *gdbarch)
1269 {
1270 struct language_gdbarch *l;
1271 int i;
1272
1273 l = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct language_gdbarch);
1274 for (i = 0; i < languages_size; i++)
1275 {
1276 if (languages[i] != NULL
1277 && languages[i]->la_language_arch_info != NULL)
1278 languages[i]->la_language_arch_info
1279 (gdbarch, l->arch_info + languages[i]->la_language);
1280 }
1281 return l;
1282 }
1283
1284 struct type *
1285 language_string_char_type (const struct language_defn *la,
1286 struct gdbarch *gdbarch)
1287 {
1288 struct language_gdbarch *ld = gdbarch_data (gdbarch,
1289 language_gdbarch_data);
1290 return ld->arch_info[la->la_language].string_char_type;
1291 }
1292
1293 struct type *
1294 language_bool_type (const struct language_defn *la,
1295 struct gdbarch *gdbarch)
1296 {
1297 struct language_gdbarch *ld = gdbarch_data (gdbarch,
1298 language_gdbarch_data);
1299
1300 if (ld->arch_info[la->la_language].bool_type_symbol)
1301 {
1302 struct symbol *sym;
1303 sym = lookup_symbol (ld->arch_info[la->la_language].bool_type_symbol,
1304 NULL, VAR_DOMAIN, NULL);
1305 if (sym)
1306 {
1307 struct type *type = SYMBOL_TYPE (sym);
1308 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
1309 return type;
1310 }
1311 }
1312
1313 return ld->arch_info[la->la_language].bool_type_default;
1314 }
1315
1316 struct type *
1317 language_lookup_primitive_type_by_name (const struct language_defn *la,
1318 struct gdbarch *gdbarch,
1319 const char *name)
1320 {
1321 struct language_gdbarch *ld = gdbarch_data (gdbarch,
1322 language_gdbarch_data);
1323 struct type *const *p;
1324 for (p = ld->arch_info[la->la_language].primitive_type_vector;
1325 (*p) != NULL;
1326 p++)
1327 {
1328 if (strcmp (TYPE_NAME (*p), name) == 0)
1329 return (*p);
1330 }
1331 return (NULL);
1332 }
1333
1334 /* Initialize the language routines */
1335
1336 void
1337 _initialize_language (void)
1338 {
1339 struct cmd_list_element *set, *show;
1340
1341 language_gdbarch_data
1342 = gdbarch_data_register_post_init (language_gdbarch_post_init);
1343
1344 /* GDB commands for language specific stuff */
1345
1346 /* FIXME: cagney/2005-02-20: This should be implemented using an
1347 enum. */
1348 add_setshow_string_noescape_cmd ("language", class_support, &language, _("\
1349 Set the current source language."), _("\
1350 Show the current source language."), NULL,
1351 set_language_command,
1352 show_language_command,
1353 &setlist, &showlist);
1354
1355 add_prefix_cmd ("check", no_class, set_check,
1356 _("Set the status of the type/range checker."),
1357 &setchecklist, "set check ", 0, &setlist);
1358 add_alias_cmd ("c", "check", no_class, 1, &setlist);
1359 add_alias_cmd ("ch", "check", no_class, 1, &setlist);
1360
1361 add_prefix_cmd ("check", no_class, show_check,
1362 _("Show the status of the type/range checker."),
1363 &showchecklist, "show check ", 0, &showlist);
1364 add_alias_cmd ("c", "check", no_class, 1, &showlist);
1365 add_alias_cmd ("ch", "check", no_class, 1, &showlist);
1366
1367 /* FIXME: cagney/2005-02-20: This should be implemented using an
1368 enum. */
1369 add_setshow_string_noescape_cmd ("type", class_support, &type, _("\
1370 Set type checking. (on/warn/off/auto)"), _("\
1371 Show type checking. (on/warn/off/auto)"), NULL,
1372 set_type_command,
1373 show_type_command,
1374 &setchecklist, &showchecklist);
1375
1376 /* FIXME: cagney/2005-02-20: This should be implemented using an
1377 enum. */
1378 add_setshow_string_noescape_cmd ("range", class_support, &range, _("\
1379 Set range checking. (on/warn/off/auto)"), _("\
1380 Show range checking. (on/warn/off/auto)"), NULL,
1381 set_range_command,
1382 show_range_command,
1383 &setchecklist, &showchecklist);
1384
1385 /* FIXME: cagney/2005-02-20: This should be implemented using an
1386 enum. */
1387 add_setshow_string_noescape_cmd ("case-sensitive", class_support,
1388 &case_sensitive, _("\
1389 Set case sensitivity in name search. (on/off/auto)"), _("\
1390 Show case sensitivity in name search. (on/off/auto)"), _("\
1391 For Fortran the default is off; for other languages the default is on."),
1392 set_case_command,
1393 show_case_command,
1394 &setlist, &showlist);
1395
1396 add_language (&unknown_language_defn);
1397 add_language (&local_language_defn);
1398 add_language (&auto_language_defn);
1399
1400 language = savestring ("auto", strlen ("auto"));
1401 type = savestring ("auto", strlen ("auto"));
1402 range = savestring ("auto", strlen ("auto"));
1403 case_sensitive = savestring ("auto",strlen ("auto"));
1404
1405 /* Have the above take effect */
1406 set_language (language_auto);
1407 }
This page took 0.101439 seconds and 5 git commands to generate.