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